From c8529f141b395cc752c4728f6e4349227cf21ccf Mon Sep 17 00:00:00 2001 From: zhaoge <> Date: Tue, 19 May 2026 14:04:06 +0800 Subject: [PATCH] feat: optimize collecting entity when match empty column in entityCollecting context --- package.json | 2 +- src/grammar/flink/FlinkSqlParser.g4 | 1 + src/grammar/hive/HiveSqlParser.g4 | 1 + src/grammar/impala/ImpalaSqlParser.g4 | 1 + src/grammar/mysql/MySqlParser.g4 | 17 +- src/grammar/postgresql/PostgreSqlParser.g4 | 14 +- src/grammar/spark/SparkSqlParser.g4 | 1 + src/lib/SQLParserBase.ts | 51 +- src/lib/flink/FlinkSqlParser.interp | 2 +- src/lib/flink/FlinkSqlParser.ts | 2702 +- src/lib/hive/HiveSqlParser.interp | 2 +- src/lib/hive/HiveSqlParser.ts | 3314 +- src/lib/impala/ImpalaSqlParser.interp | 2 +- src/lib/impala/ImpalaSqlParser.ts | 2068 +- src/lib/mysql/MySqlParser.interp | 3 +- src/lib/mysql/MySqlParser.ts | 18818 +++++----- src/lib/mysql/MySqlParserListener.ts | 62 +- src/lib/mysql/MySqlParserVisitor.ts | 38 +- src/lib/postgresql/PostgreSqlParser.interp | 3 +- src/lib/postgresql/PostgreSqlParser.ts | 31042 +++++++++------- .../postgresql/PostgreSqlParserListener.ts | 37 + src/lib/postgresql/PostgreSqlParserVisitor.ts | 23 + src/lib/spark/SparkSqlParser.interp | 2 +- src/lib/spark/SparkSqlParser.ts | 3833 +- src/parser/common/entityCollector.ts | 19 +- src/parser/mysql/mysqlEntityCollector.ts | 24 +- .../postgresql/postgreEntityCollector.ts | 28 +- .../suggestion/suggestionWithEntity.test.ts | 21 +- .../fixtures/suggestionWithEntity.sql | 6 +- .../suggestion/suggestionWithEntity.test.ts | 56 +- .../mysql/suggestion/syntaxSuggestion.test.ts | 4 +- .../fixtures/suggestionWithEntity.sql | 4 +- .../suggestion/suggestionWithEntity.test.ts | 30 + 33 files changed, 33393 insertions(+), 28838 deletions(-) diff --git a/package.json b/package.json index 7e58d8ed4..f157b7338 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "dt-sql-parser", - "version": "4.5.0-beta.0", + "version": "4.5.0-beta.1", "authors": "DTStack Corporation", "description": "SQL Parsers for BigData, built with antlr4", "keywords": [ diff --git a/src/grammar/flink/FlinkSqlParser.g4 b/src/grammar/flink/FlinkSqlParser.g4 index 8c8fad7cb..58f78ecd3 100644 --- a/src/grammar/flink/FlinkSqlParser.g4 +++ b/src/grammar/flink/FlinkSqlParser.g4 @@ -509,6 +509,7 @@ columnProjectItem | selectLiteralColumnName (columnAlias | KW_AS? expression)? | tableAllColumns columnAlias? | selectExpressionColumnName (columnAlias | KW_AS? columnName)? + | {this.shouldMatchEmpty()}? emptyColumn ; selectWindowItemColumnName diff --git a/src/grammar/hive/HiveSqlParser.g4 b/src/grammar/hive/HiveSqlParser.g4 index 84b362030..a8c684639 100644 --- a/src/grammar/hive/HiveSqlParser.g4 +++ b/src/grammar/hive/HiveSqlParser.g4 @@ -1536,6 +1536,7 @@ selectItem | KW_AS LPAREN alias=id_ (COMMA alias=id_)* RPAREN )? ) + | {this.shouldMatchEmpty()}? emptyColumn ; selectLiteralColumnName diff --git a/src/grammar/impala/ImpalaSqlParser.g4 b/src/grammar/impala/ImpalaSqlParser.g4 index ae0647e70..e57398f74 100644 --- a/src/grammar/impala/ImpalaSqlParser.g4 +++ b/src/grammar/impala/ImpalaSqlParser.g4 @@ -823,6 +823,7 @@ selectItem : selectLiteralColumnName columnAlias? | selectExpressionColumnName columnAlias? | tableAllColumns + | {this.shouldMatchEmpty()}? emptyColumn ; columnAlias diff --git a/src/grammar/mysql/MySqlParser.g4 b/src/grammar/mysql/MySqlParser.g4 index 29eea4e07..5db09dfd2 100644 --- a/src/grammar/mysql/MySqlParser.g4 +++ b/src/grammar/mysql/MySqlParser.g4 @@ -1205,9 +1205,10 @@ selectElements ; selectElement - : tableAllColumns - | selectLiteralColumnName (KW_AS? alias=uid)? - | selectExpressionColumnName (KW_AS? alias=uid)? + : tableAllColumns # selectElement_star + | selectLiteralColumnName (KW_AS? alias=uid)? # selectElement_label + | selectExpressionColumnName (KW_AS? alias=uid)? # selectElement_expr + | uid DOT {this.shouldMatchEmpty()}? emptyColumn # selectElement_dot_empty ; tableAllColumns @@ -2424,7 +2425,7 @@ emptyColumn ; columnName - : uid (dottedIdAllowEmpty dottedIdAllowEmpty?)? + : uid (dottedId dottedId?)? | .? dottedId dottedId? | {this.shouldMatchEmpty()}? emptyColumn ; @@ -2436,7 +2437,7 @@ columnNamePath columnNamePathAllowEmpty : {this.shouldMatchEmpty()}? emptyColumn - | uid (dottedIdAllowEmpty dottedIdAllowEmpty?)? + | uid (dottedId dottedId?)? ; tableSpaceNameCreate @@ -2574,12 +2575,6 @@ dottedId | '.' uid ; -dottedIdAllowEmpty - : DOT ID - | '.' uid - | {this.shouldMatchEmpty()}? DOT emptyColumn - ; - decimalLiteral : DECIMAL_LITERAL | ZERO_DECIMAL diff --git a/src/grammar/postgresql/PostgreSqlParser.g4 b/src/grammar/postgresql/PostgreSqlParser.g4 index 409cee410..148d43024 100644 --- a/src/grammar/postgresql/PostgreSqlParser.g4 +++ b/src/grammar/postgresql/PostgreSqlParser.g4 @@ -2615,7 +2615,8 @@ when_clause ; indirectionEl - : DOT (colLabel | STAR) + : DOT indirectionLabel + | DOT STAR | OPEN_BRACKET (expression | expression? COLON expression?) CLOSE_BRACKET ; @@ -2634,6 +2635,8 @@ targetList targetEl : tableAllColumns # target_star | (selectLiteralColumnName | selectExpressionColumnName) (KW_AS? alias=identifier |) # target_label + | colId DOT {this.entityCollecting}? emptyColumn # target_dot_empty + | {this.entityCollecting}? emptyColumn # target_empty ; tableAllColumns @@ -2722,18 +2725,17 @@ procedureNameCreate | colId indirection ; +// Empty column rule for entity collection emptyColumn : ; columnName : colId optIndirection - | {this.shouldMatchEmpty()}? (colId DOT emptyColumn | emptyColumn) ; columnNamePath : colId optIndirection - | {this.shouldMatchEmpty()}? (colId DOT emptyColumn | emptyColumn) ; columnNameCreate @@ -2800,6 +2802,12 @@ colLabel | reservedKeyword ; +indirectionLabel + : identifier + | colNameKeyword + | typeFuncNameKeyword + ; + identifier : Identifier (KW_UESCAPE anysconst)? | stringConst diff --git a/src/grammar/spark/SparkSqlParser.g4 b/src/grammar/spark/SparkSqlParser.g4 index 018f8a57c..426281272 100644 --- a/src/grammar/spark/SparkSqlParser.g4 +++ b/src/grammar/spark/SparkSqlParser.g4 @@ -850,6 +850,7 @@ namedExpression : (tableAllColumns | selectLiteralColumnName | selectExpressionColumnName) ( KW_AS? (alias=errorCapturingIdentifier | identifierList) )? + | {this.shouldMatchEmpty()}? emptyColumn ; namedExpressionSeq diff --git a/src/lib/SQLParserBase.ts b/src/lib/SQLParserBase.ts index 536a630d3..d35a2e3a7 100644 --- a/src/lib/SQLParserBase.ts +++ b/src/lib/SQLParserBase.ts @@ -10,9 +10,50 @@ export abstract class SQLParserBase extends antlr.P public entityCollecting = false; - public shouldMatchEmpty () { - return this.entityCollecting - && (this.tokenStream.LT(-1)?.tokenIndex ?? Infinity) <= this.caretTokenIndex - && (this.tokenStream.LT(1)?.tokenIndex ?? -Infinity) >= this.caretTokenIndex + /** + * Semantic predicate to determine whether to match empty column. + * + * Key design: + * 1. Only match empty column in entityCollecting mode + * 2. Check if caret position is at the empty column position + * 3. In validate mode (entityCollecting=false), this predicate returns false + * and reports an error to ensure incomplete SQL is caught + * + * IMPORTANT: This predicate should be used carefully to avoid affecting + * prediction in non-entity-collecting contexts. + */ + public shouldMatchEmpty (ruleName?: string) { + // Only match in entityCollecting mode or when caret position is specified (suggestion mode) + if (this.entityCollecting || this.caretTokenIndex >= 0) { + // If no caret position specified, match all empty columns + if (this.caretTokenIndex < 0) { + return true; + } + + // Check if caret is at the position where empty column would be + const prevTokenIndex = this.tokenStream.LT(-1)?.tokenIndex; + const nextTokenIndex = this.tokenStream.LT(1)?.tokenIndex; + + // Match if caret is between previous and next token + if (prevTokenIndex !== undefined && nextTokenIndex !== undefined) { + return prevTokenIndex <= this.caretTokenIndex && nextTokenIndex >= this.caretTokenIndex; + } + + // If only previous token exists, match if caret is after it + if (prevTokenIndex !== undefined) { + return prevTokenIndex <= this.caretTokenIndex; + } + + // If only next token exists, match if caret is before it + if (nextTokenIndex !== undefined) { + return nextTokenIndex >= this.caretTokenIndex; + } + + return false; + } + + // In pure validate mode, don't match empty columns + // This allows ANTLR to report errors naturally + return false; } -} \ No newline at end of file +} diff --git a/src/lib/flink/FlinkSqlParser.interp b/src/lib/flink/FlinkSqlParser.interp index 54b643a71..974430e2a 100644 --- a/src/lib/flink/FlinkSqlParser.interp +++ b/src/lib/flink/FlinkSqlParser.interp @@ -1298,4 +1298,4 @@ nonReservedKeywords atn: -[4, 1, 542, 2426, 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, 1, 0, 5, 0, 414, 8, 0, 10, 0, 12, 0, 417, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 423, 8, 1, 1, 1, 3, 1, 426, 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, 3, 2, 440, 8, 2, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 458, 8, 4, 1, 5, 1, 5, 3, 5, 462, 8, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 471, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 476, 8, 7, 1, 8, 1, 8, 1, 8, 5, 8, 481, 8, 8, 10, 8, 12, 8, 484, 9, 8, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 494, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 501, 8, 11, 10, 11, 12, 11, 504, 9, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 515, 8, 12, 1, 12, 3, 12, 518, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 525, 8, 12, 1, 12, 3, 12, 528, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 536, 8, 12, 1, 12, 1, 12, 3, 12, 540, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 545, 8, 12, 1, 12, 3, 12, 548, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 555, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 3, 15, 563, 8, 15, 1, 16, 1, 16, 3, 16, 567, 8, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 579, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 587, 8, 18, 1, 18, 1, 18, 3, 18, 591, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 623, 8, 18, 1, 19, 3, 19, 626, 8, 19, 1, 19, 4, 19, 629, 8, 19, 11, 19, 12, 19, 630, 1, 20, 1, 20, 3, 20, 635, 8, 20, 1, 21, 1, 21, 3, 21, 639, 8, 21, 1, 21, 1, 21, 3, 21, 643, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 650, 8, 21, 10, 21, 12, 21, 653, 9, 21, 1, 21, 1, 21, 3, 21, 657, 8, 21, 1, 21, 1, 21, 3, 21, 661, 8, 21, 1, 21, 1, 21, 3, 21, 665, 8, 21, 1, 21, 1, 21, 1, 21, 3, 21, 670, 8, 21, 1, 21, 3, 21, 673, 8, 21, 1, 21, 1, 21, 3, 21, 677, 8, 21, 1, 22, 1, 22, 1, 22, 3, 22, 682, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 688, 8, 22, 1, 23, 1, 23, 1, 23, 3, 23, 693, 8, 23, 1, 24, 1, 24, 1, 24, 3, 24, 698, 8, 24, 1, 24, 1, 24, 3, 24, 702, 8, 24, 1, 25, 1, 25, 3, 25, 706, 8, 25, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 3, 27, 713, 8, 27, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 3, 29, 720, 8, 29, 1, 30, 1, 30, 1, 30, 1, 30, 5, 30, 726, 8, 30, 10, 30, 12, 30, 729, 9, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 3, 31, 736, 8, 31, 1, 31, 1, 31, 3, 31, 740, 8, 31, 1, 31, 1, 31, 3, 31, 744, 8, 31, 1, 31, 1, 31, 3, 31, 748, 8, 31, 1, 31, 1, 31, 3, 31, 752, 8, 31, 1, 31, 1, 31, 3, 31, 756, 8, 31, 1, 31, 1, 31, 3, 31, 760, 8, 31, 1, 31, 1, 31, 3, 31, 764, 8, 31, 1, 31, 1, 31, 3, 31, 768, 8, 31, 3, 31, 770, 8, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 780, 8, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 788, 8, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 5, 37, 810, 8, 37, 10, 37, 12, 37, 813, 9, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 5, 37, 824, 8, 37, 10, 37, 12, 37, 827, 9, 37, 1, 37, 1, 37, 3, 37, 831, 8, 37, 1, 38, 1, 38, 3, 38, 835, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 841, 8, 38, 1, 38, 3, 38, 844, 8, 38, 1, 38, 3, 38, 847, 8, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 854, 8, 39, 1, 39, 3, 39, 857, 8, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 866, 8, 41, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 3, 44, 878, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 5, 48, 900, 8, 48, 10, 48, 12, 48, 903, 9, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 912, 8, 49, 10, 49, 12, 49, 915, 9, 49, 1, 49, 1, 49, 3, 49, 919, 8, 49, 1, 50, 1, 50, 3, 50, 923, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 5, 51, 929, 8, 51, 10, 51, 12, 51, 932, 9, 51, 1, 51, 3, 51, 935, 8, 51, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 941, 8, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 3, 54, 951, 8, 54, 1, 54, 1, 54, 1, 54, 3, 54, 956, 8, 54, 1, 54, 1, 54, 1, 55, 1, 55, 3, 55, 962, 8, 55, 1, 55, 1, 55, 3, 55, 966, 8, 55, 1, 55, 1, 55, 3, 55, 970, 8, 55, 1, 55, 1, 55, 3, 55, 974, 8, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 983, 8, 56, 1, 56, 1, 56, 3, 56, 987, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 994, 8, 56, 1, 56, 3, 56, 997, 8, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 5, 57, 1005, 8, 57, 10, 57, 12, 57, 1008, 9, 57, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 3, 59, 1015, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1023, 8, 59, 1, 60, 1, 60, 3, 60, 1027, 8, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 1042, 8, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1061, 8, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 1072, 8, 68, 1, 68, 1, 68, 3, 68, 1076, 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 1083, 8, 68, 1, 69, 1, 69, 1, 69, 3, 69, 1088, 8, 69, 1, 69, 1, 69, 1, 70, 1, 70, 3, 70, 1094, 8, 70, 1, 70, 1, 70, 3, 70, 1098, 8, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 3, 71, 1105, 8, 71, 1, 71, 1, 71, 3, 71, 1109, 8, 71, 1, 72, 1, 72, 3, 72, 1113, 8, 72, 1, 72, 1, 72, 3, 72, 1117, 8, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1125, 8, 73, 1, 73, 1, 73, 3, 73, 1129, 8, 73, 1, 73, 1, 73, 1, 74, 3, 74, 1134, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 1140, 8, 74, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 1146, 8, 75, 1, 75, 3, 75, 1149, 8, 75, 1, 75, 1, 75, 3, 75, 1153, 8, 75, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 5, 77, 1162, 8, 77, 10, 77, 12, 77, 1165, 9, 77, 1, 78, 1, 78, 1, 78, 1, 78, 5, 78, 1171, 8, 78, 10, 78, 12, 78, 1174, 9, 78, 1, 78, 1, 78, 1, 79, 1, 79, 3, 79, 1180, 8, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 4, 80, 1189, 8, 80, 11, 80, 12, 80, 1190, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 4, 81, 1201, 8, 81, 11, 81, 12, 81, 1202, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 3, 82, 1218, 8, 82, 1, 82, 3, 82, 1221, 8, 82, 1, 82, 1, 82, 3, 82, 1225, 8, 82, 1, 82, 3, 82, 1228, 8, 82, 3, 82, 1230, 8, 82, 1, 82, 1, 82, 1, 82, 3, 82, 1235, 8, 82, 1, 82, 1, 82, 3, 82, 1239, 8, 82, 1, 82, 3, 82, 1242, 8, 82, 5, 82, 1244, 8, 82, 10, 82, 12, 82, 1247, 9, 82, 1, 83, 1, 83, 1, 83, 1, 83, 5, 83, 1253, 8, 83, 10, 83, 12, 83, 1256, 9, 83, 1, 84, 1, 84, 1, 84, 1, 84, 5, 84, 1262, 8, 84, 10, 84, 12, 84, 1265, 9, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 5, 85, 1272, 8, 85, 10, 85, 12, 85, 1275, 9, 85, 1, 85, 1, 85, 3, 85, 1279, 8, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 87, 1, 87, 3, 87, 1290, 8, 87, 1, 87, 3, 87, 1293, 8, 87, 1, 87, 3, 87, 1296, 8, 87, 1, 87, 3, 87, 1299, 8, 87, 1, 87, 3, 87, 1302, 8, 87, 1, 87, 1, 87, 1, 87, 1, 87, 3, 87, 1308, 8, 87, 1, 88, 1, 88, 3, 88, 1312, 8, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 5, 89, 1319, 8, 89, 10, 89, 12, 89, 1322, 9, 89, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 1328, 8, 90, 1, 90, 3, 90, 1331, 8, 90, 1, 90, 1, 90, 3, 90, 1335, 8, 90, 1, 90, 1, 90, 1, 90, 3, 90, 1340, 8, 90, 1, 90, 3, 90, 1343, 8, 90, 3, 90, 1345, 8, 90, 1, 91, 1, 91, 1, 92, 1, 92, 1, 93, 1, 93, 1, 94, 3, 94, 1354, 8, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 3, 95, 1361, 8, 95, 1, 95, 3, 95, 1364, 8, 95, 1, 95, 1, 95, 3, 95, 1368, 8, 95, 1, 95, 3, 95, 1371, 8, 95, 3, 95, 1373, 8, 95, 1, 96, 1, 96, 1, 96, 5, 96, 1378, 8, 96, 10, 96, 12, 96, 1381, 9, 96, 1, 96, 1, 96, 3, 96, 1385, 8, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 1401, 8, 97, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 5, 99, 1410, 8, 99, 10, 99, 12, 99, 1413, 9, 99, 1, 99, 1, 99, 3, 99, 1417, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 1425, 8, 99, 1, 99, 3, 99, 1428, 8, 99, 1, 99, 3, 99, 1431, 8, 99, 1, 99, 1, 99, 1, 99, 3, 99, 1436, 8, 99, 5, 99, 1438, 8, 99, 10, 99, 12, 99, 1441, 9, 99, 1, 100, 1, 100, 3, 100, 1445, 8, 100, 1, 101, 3, 101, 1448, 8, 101, 1, 101, 1, 101, 3, 101, 1452, 8, 101, 1, 101, 1, 101, 3, 101, 1456, 8, 101, 1, 101, 1, 101, 3, 101, 1460, 8, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 103, 3, 103, 1469, 8, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 1480, 8, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 5, 108, 1505, 8, 108, 10, 108, 12, 108, 1508, 9, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 1529, 8, 110, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 1543, 8, 113, 3, 113, 1545, 8, 113, 1, 113, 1, 113, 3, 113, 1549, 8, 113, 1, 114, 1, 114, 1, 114, 3, 114, 1554, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 5, 115, 1561, 8, 115, 10, 115, 12, 115, 1564, 9, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 5, 116, 1574, 8, 116, 10, 116, 12, 116, 1577, 9, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 5, 116, 1586, 8, 116, 10, 116, 12, 116, 1589, 9, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 5, 116, 1598, 8, 116, 10, 116, 12, 116, 1601, 9, 116, 1, 116, 1, 116, 1, 116, 3, 116, 1606, 8, 116, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 5, 123, 1631, 8, 123, 10, 123, 12, 123, 1634, 9, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 125, 3, 125, 1641, 8, 125, 1, 125, 1, 125, 3, 125, 1645, 8, 125, 1, 125, 3, 125, 1648, 8, 125, 1, 125, 3, 125, 1651, 8, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 3, 126, 1658, 8, 126, 1, 126, 3, 126, 1661, 8, 126, 1, 126, 3, 126, 1664, 8, 126, 1, 126, 3, 126, 1667, 8, 126, 1, 126, 3, 126, 1670, 8, 126, 1, 126, 3, 126, 1673, 8, 126, 1, 126, 1, 126, 1, 126, 3, 126, 1678, 8, 126, 1, 126, 3, 126, 1681, 8, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 5, 127, 1688, 8, 127, 10, 127, 12, 127, 1691, 9, 127, 1, 128, 1, 128, 3, 128, 1695, 8, 128, 1, 128, 1, 128, 3, 128, 1699, 8, 128, 1, 129, 1, 129, 1, 129, 3, 129, 1704, 8, 129, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1710, 8, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1715, 8, 130, 5, 130, 1717, 8, 130, 10, 130, 12, 130, 1720, 9, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1738, 8, 131, 1, 132, 1, 132, 1, 132, 1, 132, 5, 132, 1744, 8, 132, 10, 132, 12, 132, 1747, 9, 132, 1, 133, 1, 133, 1, 133, 4, 133, 1752, 8, 133, 11, 133, 12, 133, 1753, 1, 133, 1, 133, 3, 133, 1758, 8, 133, 1, 134, 1, 134, 3, 134, 1762, 8, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 1772, 8, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 1798, 8, 136, 1, 137, 1, 137, 1, 137, 1, 137, 5, 137, 1804, 8, 137, 10, 137, 12, 137, 1807, 9, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 1818, 8, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 1840, 8, 142, 3, 142, 1842, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 1853, 8, 142, 1, 142, 5, 142, 1856, 8, 142, 10, 142, 12, 142, 1859, 9, 142, 1, 143, 3, 143, 1862, 8, 143, 1, 143, 1, 143, 3, 143, 1866, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 1873, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 5, 143, 1880, 8, 143, 10, 143, 12, 143, 1883, 9, 143, 1, 143, 1, 143, 1, 143, 3, 143, 1888, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 1901, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 1908, 8, 143, 1, 143, 1, 143, 1, 143, 3, 143, 1913, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 1919, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 1926, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 1933, 8, 143, 3, 143, 1935, 8, 143, 1, 144, 3, 144, 1938, 8, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 5, 144, 1948, 8, 144, 10, 144, 12, 144, 1951, 9, 144, 1, 144, 1, 144, 3, 144, 1955, 8, 144, 1, 144, 3, 144, 1958, 8, 144, 1, 144, 1, 144, 1, 144, 1, 144, 3, 144, 1964, 8, 144, 3, 144, 1966, 8, 144, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 1972, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 5, 145, 1993, 8, 145, 10, 145, 12, 145, 1996, 9, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 2003, 8, 146, 1, 146, 1, 146, 1, 146, 5, 146, 2008, 8, 146, 10, 146, 12, 146, 2011, 9, 146, 3, 146, 2013, 8, 146, 1, 146, 1, 146, 3, 146, 2017, 8, 146, 1, 147, 1, 147, 1, 147, 4, 147, 2022, 8, 147, 11, 147, 12, 147, 2023, 1, 147, 1, 147, 3, 147, 2028, 8, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 4, 147, 2035, 8, 147, 11, 147, 12, 147, 2036, 1, 147, 1, 147, 3, 147, 2041, 8, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 3, 147, 2057, 8, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 3, 147, 2066, 8, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 3, 147, 2094, 8, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 5, 147, 2101, 8, 147, 10, 147, 12, 147, 2104, 9, 147, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 1, 149, 3, 149, 2112, 8, 149, 1, 150, 1, 150, 1, 150, 1, 150, 3, 150, 2118, 8, 150, 1, 151, 1, 151, 3, 151, 2122, 8, 151, 1, 152, 1, 152, 1, 152, 1, 152, 3, 152, 2128, 8, 152, 1, 153, 1, 153, 1, 154, 1, 154, 1, 155, 1, 155, 3, 155, 2136, 8, 155, 1, 156, 1, 156, 1, 156, 3, 156, 2141, 8, 156, 1, 157, 1, 157, 3, 157, 2145, 8, 157, 1, 158, 1, 158, 1, 158, 4, 158, 2150, 8, 158, 11, 158, 12, 158, 2151, 1, 159, 1, 159, 1, 159, 3, 159, 2157, 8, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 161, 3, 161, 2165, 8, 161, 1, 161, 1, 161, 3, 161, 2169, 8, 161, 1, 162, 3, 162, 2172, 8, 162, 1, 162, 1, 162, 3, 162, 2176, 8, 162, 1, 163, 1, 163, 1, 163, 1, 164, 1, 164, 4, 164, 2183, 8, 164, 11, 164, 12, 164, 2184, 1, 164, 3, 164, 2188, 8, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 5, 166, 2197, 8, 166, 10, 166, 12, 166, 2200, 9, 166, 1, 167, 1, 167, 1, 167, 3, 167, 2205, 8, 167, 1, 168, 1, 168, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 3, 173, 2223, 8, 173, 1, 174, 1, 174, 1, 174, 3, 174, 2228, 8, 174, 1, 175, 1, 175, 1, 175, 3, 175, 2233, 8, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 2240, 8, 175, 3, 175, 2242, 8, 175, 1, 176, 1, 176, 1, 176, 3, 176, 2247, 8, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 2254, 8, 176, 3, 176, 2256, 8, 176, 1, 177, 1, 177, 1, 177, 3, 177, 2261, 8, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 2268, 8, 177, 3, 177, 2270, 8, 177, 1, 178, 1, 178, 1, 178, 3, 178, 2275, 8, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 3, 178, 2282, 8, 178, 3, 178, 2284, 8, 178, 1, 179, 1, 179, 1, 179, 5, 179, 2289, 8, 179, 10, 179, 12, 179, 2292, 9, 179, 1, 180, 1, 180, 1, 180, 5, 180, 2297, 8, 180, 10, 180, 12, 180, 2300, 9, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 2307, 8, 180, 1, 181, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 1, 184, 5, 184, 2323, 8, 184, 10, 184, 12, 184, 2326, 9, 184, 1, 184, 1, 184, 1, 185, 1, 185, 3, 185, 2332, 8, 185, 1, 185, 3, 185, 2335, 8, 185, 1, 186, 1, 186, 1, 186, 3, 186, 2340, 8, 186, 1, 187, 1, 187, 1, 187, 1, 187, 3, 187, 2346, 8, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 2354, 8, 188, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 3, 189, 2370, 8, 189, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 3, 190, 2379, 8, 190, 1, 191, 1, 191, 1, 192, 1, 192, 1, 193, 1, 193, 1, 193, 1, 193, 3, 193, 2389, 8, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 3, 193, 2396, 8, 193, 1, 193, 3, 193, 2399, 8, 193, 1, 194, 1, 194, 1, 194, 1, 195, 1, 195, 1, 196, 1, 196, 1, 197, 1, 197, 1, 198, 1, 198, 1, 199, 1, 199, 1, 200, 1, 200, 1, 201, 1, 201, 1, 202, 1, 202, 1, 203, 1, 203, 1, 204, 1, 204, 1, 205, 1, 205, 1, 205, 0, 5, 164, 198, 284, 290, 294, 206, 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, 0, 47, 2, 0, 109, 109, 451, 451, 3, 0, 45, 45, 128, 128, 189, 189, 4, 0, 42, 42, 90, 90, 423, 423, 465, 465, 2, 0, 442, 442, 448, 448, 2, 0, 151, 151, 170, 170, 2, 0, 438, 438, 490, 490, 2, 0, 483, 486, 488, 488, 3, 0, 32, 32, 91, 91, 245, 245, 11, 0, 28, 29, 35, 35, 46, 46, 92, 92, 178, 179, 345, 345, 361, 361, 379, 379, 382, 382, 388, 388, 417, 418, 2, 0, 434, 434, 436, 436, 4, 0, 101, 102, 115, 115, 144, 144, 247, 247, 2, 0, 13, 13, 232, 232, 2, 0, 456, 456, 463, 463, 3, 0, 5, 5, 271, 271, 445, 445, 3, 0, 267, 267, 456, 456, 463, 463, 3, 0, 426, 426, 459, 459, 478, 478, 3, 0, 331, 331, 466, 466, 482, 482, 2, 0, 441, 441, 491, 491, 2, 0, 183, 183, 266, 266, 3, 0, 130, 130, 180, 180, 403, 403, 4, 0, 152, 152, 174, 174, 202, 202, 318, 318, 3, 0, 446, 446, 460, 460, 500, 500, 4, 0, 251, 251, 447, 447, 495, 497, 499, 499, 2, 0, 74, 74, 321, 321, 3, 0, 460, 460, 493, 493, 500, 500, 2, 0, 440, 440, 451, 451, 2, 0, 458, 458, 468, 468, 4, 0, 140, 140, 245, 245, 398, 398, 405, 405, 2, 0, 19, 19, 370, 370, 2, 0, 5, 5, 11, 11, 2, 0, 510, 510, 530, 531, 4, 0, 453, 453, 528, 528, 532, 532, 535, 535, 2, 0, 530, 531, 533, 533, 1, 0, 530, 531, 1, 0, 539, 540, 2, 0, 539, 539, 542, 542, 4, 0, 453, 453, 528, 528, 530, 532, 534, 535, 3, 0, 242, 242, 509, 510, 530, 531, 2, 0, 140, 140, 398, 398, 2, 0, 5, 5, 113, 113, 10, 0, 97, 97, 165, 165, 223, 223, 230, 230, 335, 335, 437, 437, 471, 471, 473, 473, 489, 489, 503, 503, 15, 0, 97, 97, 165, 165, 223, 223, 230, 230, 335, 335, 428, 428, 437, 437, 443, 443, 449, 450, 455, 455, 461, 461, 471, 476, 489, 489, 492, 492, 503, 504, 11, 0, 5, 5, 13, 13, 33, 33, 78, 78, 84, 85, 113, 113, 201, 201, 208, 209, 390, 390, 414, 414, 528, 528, 3, 0, 78, 78, 84, 85, 208, 209, 2, 0, 91, 91, 379, 380, 53, 0, 4, 4, 13, 13, 23, 23, 38, 38, 41, 41, 43, 44, 54, 54, 56, 56, 69, 69, 75, 75, 98, 99, 107, 107, 119, 119, 134, 134, 139, 139, 143, 143, 145, 145, 160, 160, 165, 165, 167, 167, 187, 188, 190, 195, 198, 198, 200, 200, 202, 202, 206, 206, 210, 210, 215, 215, 221, 221, 223, 224, 230, 230, 244, 244, 246, 246, 265, 265, 277, 277, 282, 282, 284, 284, 294, 294, 318, 318, 322, 324, 335, 335, 358, 359, 365, 365, 368, 368, 381, 381, 396, 396, 399, 400, 409, 409, 420, 421, 437, 437, 470, 470, 489, 489, 503, 503, 1, 0, 438, 505, 2638, 0, 415, 1, 0, 0, 0, 2, 425, 1, 0, 0, 0, 4, 439, 1, 0, 0, 0, 6, 441, 1, 0, 0, 0, 8, 457, 1, 0, 0, 0, 10, 461, 1, 0, 0, 0, 12, 463, 1, 0, 0, 0, 14, 466, 1, 0, 0, 0, 16, 477, 1, 0, 0, 0, 18, 485, 1, 0, 0, 0, 20, 493, 1, 0, 0, 0, 22, 495, 1, 0, 0, 0, 24, 547, 1, 0, 0, 0, 26, 549, 1, 0, 0, 0, 28, 556, 1, 0, 0, 0, 30, 560, 1, 0, 0, 0, 32, 564, 1, 0, 0, 0, 34, 568, 1, 0, 0, 0, 36, 622, 1, 0, 0, 0, 38, 628, 1, 0, 0, 0, 40, 634, 1, 0, 0, 0, 42, 636, 1, 0, 0, 0, 44, 678, 1, 0, 0, 0, 46, 692, 1, 0, 0, 0, 48, 694, 1, 0, 0, 0, 50, 705, 1, 0, 0, 0, 52, 707, 1, 0, 0, 0, 54, 712, 1, 0, 0, 0, 56, 714, 1, 0, 0, 0, 58, 719, 1, 0, 0, 0, 60, 721, 1, 0, 0, 0, 62, 769, 1, 0, 0, 0, 64, 771, 1, 0, 0, 0, 66, 775, 1, 0, 0, 0, 68, 783, 1, 0, 0, 0, 70, 791, 1, 0, 0, 0, 72, 795, 1, 0, 0, 0, 74, 830, 1, 0, 0, 0, 76, 846, 1, 0, 0, 0, 78, 848, 1, 0, 0, 0, 80, 858, 1, 0, 0, 0, 82, 860, 1, 0, 0, 0, 84, 867, 1, 0, 0, 0, 86, 869, 1, 0, 0, 0, 88, 877, 1, 0, 0, 0, 90, 885, 1, 0, 0, 0, 92, 887, 1, 0, 0, 0, 94, 891, 1, 0, 0, 0, 96, 895, 1, 0, 0, 0, 98, 918, 1, 0, 0, 0, 100, 922, 1, 0, 0, 0, 102, 924, 1, 0, 0, 0, 104, 940, 1, 0, 0, 0, 106, 942, 1, 0, 0, 0, 108, 947, 1, 0, 0, 0, 110, 959, 1, 0, 0, 0, 112, 978, 1, 0, 0, 0, 114, 998, 1, 0, 0, 0, 116, 1009, 1, 0, 0, 0, 118, 1011, 1, 0, 0, 0, 120, 1024, 1, 0, 0, 0, 122, 1031, 1, 0, 0, 0, 124, 1034, 1, 0, 0, 0, 126, 1043, 1, 0, 0, 0, 128, 1047, 1, 0, 0, 0, 130, 1051, 1, 0, 0, 0, 132, 1054, 1, 0, 0, 0, 134, 1062, 1, 0, 0, 0, 136, 1067, 1, 0, 0, 0, 138, 1084, 1, 0, 0, 0, 140, 1091, 1, 0, 0, 0, 142, 1101, 1, 0, 0, 0, 144, 1110, 1, 0, 0, 0, 146, 1120, 1, 0, 0, 0, 148, 1139, 1, 0, 0, 0, 150, 1141, 1, 0, 0, 0, 152, 1154, 1, 0, 0, 0, 154, 1157, 1, 0, 0, 0, 156, 1166, 1, 0, 0, 0, 158, 1179, 1, 0, 0, 0, 160, 1181, 1, 0, 0, 0, 162, 1194, 1, 0, 0, 0, 164, 1229, 1, 0, 0, 0, 166, 1248, 1, 0, 0, 0, 168, 1257, 1, 0, 0, 0, 170, 1266, 1, 0, 0, 0, 172, 1285, 1, 0, 0, 0, 174, 1307, 1, 0, 0, 0, 176, 1309, 1, 0, 0, 0, 178, 1315, 1, 0, 0, 0, 180, 1344, 1, 0, 0, 0, 182, 1346, 1, 0, 0, 0, 184, 1348, 1, 0, 0, 0, 186, 1350, 1, 0, 0, 0, 188, 1353, 1, 0, 0, 0, 190, 1372, 1, 0, 0, 0, 192, 1384, 1, 0, 0, 0, 194, 1400, 1, 0, 0, 0, 196, 1402, 1, 0, 0, 0, 198, 1416, 1, 0, 0, 0, 200, 1442, 1, 0, 0, 0, 202, 1459, 1, 0, 0, 0, 204, 1461, 1, 0, 0, 0, 206, 1479, 1, 0, 0, 0, 208, 1481, 1, 0, 0, 0, 210, 1487, 1, 0, 0, 0, 212, 1489, 1, 0, 0, 0, 214, 1494, 1, 0, 0, 0, 216, 1499, 1, 0, 0, 0, 218, 1511, 1, 0, 0, 0, 220, 1528, 1, 0, 0, 0, 222, 1530, 1, 0, 0, 0, 224, 1532, 1, 0, 0, 0, 226, 1548, 1, 0, 0, 0, 228, 1550, 1, 0, 0, 0, 230, 1555, 1, 0, 0, 0, 232, 1605, 1, 0, 0, 0, 234, 1607, 1, 0, 0, 0, 236, 1610, 1, 0, 0, 0, 238, 1612, 1, 0, 0, 0, 240, 1619, 1, 0, 0, 0, 242, 1621, 1, 0, 0, 0, 244, 1623, 1, 0, 0, 0, 246, 1626, 1, 0, 0, 0, 248, 1635, 1, 0, 0, 0, 250, 1640, 1, 0, 0, 0, 252, 1654, 1, 0, 0, 0, 254, 1682, 1, 0, 0, 0, 256, 1692, 1, 0, 0, 0, 258, 1700, 1, 0, 0, 0, 260, 1705, 1, 0, 0, 0, 262, 1737, 1, 0, 0, 0, 264, 1739, 1, 0, 0, 0, 266, 1748, 1, 0, 0, 0, 268, 1759, 1, 0, 0, 0, 270, 1771, 1, 0, 0, 0, 272, 1797, 1, 0, 0, 0, 274, 1799, 1, 0, 0, 0, 276, 1817, 1, 0, 0, 0, 278, 1819, 1, 0, 0, 0, 280, 1824, 1, 0, 0, 0, 282, 1827, 1, 0, 0, 0, 284, 1841, 1, 0, 0, 0, 286, 1934, 1, 0, 0, 0, 288, 1965, 1, 0, 0, 0, 290, 1971, 1, 0, 0, 0, 292, 2016, 1, 0, 0, 0, 294, 2093, 1, 0, 0, 0, 296, 2105, 1, 0, 0, 0, 298, 2111, 1, 0, 0, 0, 300, 2117, 1, 0, 0, 0, 302, 2121, 1, 0, 0, 0, 304, 2127, 1, 0, 0, 0, 306, 2129, 1, 0, 0, 0, 308, 2131, 1, 0, 0, 0, 310, 2135, 1, 0, 0, 0, 312, 2137, 1, 0, 0, 0, 314, 2142, 1, 0, 0, 0, 316, 2149, 1, 0, 0, 0, 318, 2153, 1, 0, 0, 0, 320, 2158, 1, 0, 0, 0, 322, 2168, 1, 0, 0, 0, 324, 2171, 1, 0, 0, 0, 326, 2177, 1, 0, 0, 0, 328, 2187, 1, 0, 0, 0, 330, 2189, 1, 0, 0, 0, 332, 2193, 1, 0, 0, 0, 334, 2204, 1, 0, 0, 0, 336, 2206, 1, 0, 0, 0, 338, 2208, 1, 0, 0, 0, 340, 2210, 1, 0, 0, 0, 342, 2215, 1, 0, 0, 0, 344, 2217, 1, 0, 0, 0, 346, 2219, 1, 0, 0, 0, 348, 2224, 1, 0, 0, 0, 350, 2241, 1, 0, 0, 0, 352, 2255, 1, 0, 0, 0, 354, 2269, 1, 0, 0, 0, 356, 2283, 1, 0, 0, 0, 358, 2285, 1, 0, 0, 0, 360, 2306, 1, 0, 0, 0, 362, 2308, 1, 0, 0, 0, 364, 2311, 1, 0, 0, 0, 366, 2315, 1, 0, 0, 0, 368, 2318, 1, 0, 0, 0, 370, 2329, 1, 0, 0, 0, 372, 2339, 1, 0, 0, 0, 374, 2345, 1, 0, 0, 0, 376, 2353, 1, 0, 0, 0, 378, 2369, 1, 0, 0, 0, 380, 2378, 1, 0, 0, 0, 382, 2380, 1, 0, 0, 0, 384, 2382, 1, 0, 0, 0, 386, 2398, 1, 0, 0, 0, 388, 2400, 1, 0, 0, 0, 390, 2403, 1, 0, 0, 0, 392, 2405, 1, 0, 0, 0, 394, 2407, 1, 0, 0, 0, 396, 2409, 1, 0, 0, 0, 398, 2411, 1, 0, 0, 0, 400, 2413, 1, 0, 0, 0, 402, 2415, 1, 0, 0, 0, 404, 2417, 1, 0, 0, 0, 406, 2419, 1, 0, 0, 0, 408, 2421, 1, 0, 0, 0, 410, 2423, 1, 0, 0, 0, 412, 414, 3, 2, 1, 0, 413, 412, 1, 0, 0, 0, 414, 417, 1, 0, 0, 0, 415, 413, 1, 0, 0, 0, 415, 416, 1, 0, 0, 0, 416, 418, 1, 0, 0, 0, 417, 415, 1, 0, 0, 0, 418, 419, 5, 0, 0, 1, 419, 1, 1, 0, 0, 0, 420, 422, 3, 4, 2, 0, 421, 423, 5, 522, 0, 0, 422, 421, 1, 0, 0, 0, 422, 423, 1, 0, 0, 0, 423, 426, 1, 0, 0, 0, 424, 426, 3, 6, 3, 0, 425, 420, 1, 0, 0, 0, 425, 424, 1, 0, 0, 0, 426, 3, 1, 0, 0, 0, 427, 440, 3, 8, 4, 0, 428, 440, 3, 10, 5, 0, 429, 440, 3, 12, 6, 0, 430, 440, 3, 14, 7, 0, 431, 440, 3, 20, 10, 0, 432, 440, 3, 24, 12, 0, 433, 440, 3, 26, 13, 0, 434, 440, 3, 28, 14, 0, 435, 440, 3, 30, 15, 0, 436, 440, 3, 32, 16, 0, 437, 440, 3, 34, 17, 0, 438, 440, 3, 36, 18, 0, 439, 427, 1, 0, 0, 0, 439, 428, 1, 0, 0, 0, 439, 429, 1, 0, 0, 0, 439, 430, 1, 0, 0, 0, 439, 431, 1, 0, 0, 0, 439, 432, 1, 0, 0, 0, 439, 433, 1, 0, 0, 0, 439, 434, 1, 0, 0, 0, 439, 435, 1, 0, 0, 0, 439, 436, 1, 0, 0, 0, 439, 437, 1, 0, 0, 0, 439, 438, 1, 0, 0, 0, 440, 5, 1, 0, 0, 0, 441, 442, 5, 522, 0, 0, 442, 7, 1, 0, 0, 0, 443, 458, 3, 40, 20, 0, 444, 458, 3, 108, 54, 0, 445, 458, 3, 110, 55, 0, 446, 458, 3, 112, 56, 0, 447, 458, 3, 106, 53, 0, 448, 458, 3, 118, 59, 0, 449, 458, 3, 132, 66, 0, 450, 458, 3, 134, 67, 0, 451, 458, 3, 136, 68, 0, 452, 458, 3, 138, 69, 0, 453, 458, 3, 140, 70, 0, 454, 458, 3, 142, 71, 0, 455, 458, 3, 144, 72, 0, 456, 458, 3, 146, 73, 0, 457, 443, 1, 0, 0, 0, 457, 444, 1, 0, 0, 0, 457, 445, 1, 0, 0, 0, 457, 446, 1, 0, 0, 0, 457, 447, 1, 0, 0, 0, 457, 448, 1, 0, 0, 0, 457, 449, 1, 0, 0, 0, 457, 450, 1, 0, 0, 0, 457, 451, 1, 0, 0, 0, 457, 452, 1, 0, 0, 0, 457, 453, 1, 0, 0, 0, 457, 454, 1, 0, 0, 0, 457, 455, 1, 0, 0, 0, 457, 456, 1, 0, 0, 0, 458, 9, 1, 0, 0, 0, 459, 462, 3, 164, 82, 0, 460, 462, 3, 148, 74, 0, 461, 459, 1, 0, 0, 0, 461, 460, 1, 0, 0, 0, 462, 11, 1, 0, 0, 0, 463, 464, 7, 0, 0, 0, 464, 465, 3, 352, 176, 0, 465, 13, 1, 0, 0, 0, 466, 470, 5, 135, 0, 0, 467, 471, 3, 16, 8, 0, 468, 469, 5, 480, 0, 0, 469, 471, 5, 146, 0, 0, 470, 467, 1, 0, 0, 0, 470, 468, 1, 0, 0, 0, 470, 471, 1, 0, 0, 0, 471, 475, 1, 0, 0, 0, 472, 476, 3, 10, 5, 0, 473, 476, 3, 150, 75, 0, 474, 476, 3, 162, 81, 0, 475, 472, 1, 0, 0, 0, 475, 473, 1, 0, 0, 0, 475, 474, 1, 0, 0, 0, 476, 15, 1, 0, 0, 0, 477, 482, 3, 18, 9, 0, 478, 479, 5, 521, 0, 0, 479, 481, 3, 18, 9, 0, 480, 478, 1, 0, 0, 0, 481, 484, 1, 0, 0, 0, 482, 480, 1, 0, 0, 0, 482, 483, 1, 0, 0, 0, 483, 17, 1, 0, 0, 0, 484, 482, 1, 0, 0, 0, 485, 486, 7, 1, 0, 0, 486, 19, 1, 0, 0, 0, 487, 488, 5, 411, 0, 0, 488, 489, 5, 442, 0, 0, 489, 494, 3, 342, 171, 0, 490, 491, 5, 411, 0, 0, 491, 494, 3, 346, 173, 0, 492, 494, 3, 22, 11, 0, 493, 487, 1, 0, 0, 0, 493, 490, 1, 0, 0, 0, 493, 492, 1, 0, 0, 0, 494, 21, 1, 0, 0, 0, 495, 496, 5, 411, 0, 0, 496, 497, 5, 228, 0, 0, 497, 502, 3, 358, 179, 0, 498, 499, 5, 521, 0, 0, 499, 501, 3, 358, 179, 0, 500, 498, 1, 0, 0, 0, 501, 504, 1, 0, 0, 0, 502, 500, 1, 0, 0, 0, 502, 503, 1, 0, 0, 0, 503, 23, 1, 0, 0, 0, 504, 502, 1, 0, 0, 0, 505, 506, 5, 342, 0, 0, 506, 548, 7, 2, 0, 0, 507, 508, 5, 342, 0, 0, 508, 509, 5, 76, 0, 0, 509, 548, 7, 3, 0, 0, 510, 511, 5, 342, 0, 0, 511, 514, 5, 375, 0, 0, 512, 513, 7, 4, 0, 0, 513, 515, 3, 346, 173, 0, 514, 512, 1, 0, 0, 0, 514, 515, 1, 0, 0, 0, 515, 517, 1, 0, 0, 0, 516, 518, 3, 288, 144, 0, 517, 516, 1, 0, 0, 0, 517, 518, 1, 0, 0, 0, 518, 548, 1, 0, 0, 0, 519, 520, 5, 342, 0, 0, 520, 521, 5, 58, 0, 0, 521, 524, 7, 4, 0, 0, 522, 525, 3, 354, 177, 0, 523, 525, 3, 352, 176, 0, 524, 522, 1, 0, 0, 0, 524, 523, 1, 0, 0, 0, 525, 527, 1, 0, 0, 0, 526, 528, 3, 288, 144, 0, 527, 526, 1, 0, 0, 0, 527, 528, 1, 0, 0, 0, 528, 548, 1, 0, 0, 0, 529, 530, 5, 342, 0, 0, 530, 535, 5, 72, 0, 0, 531, 532, 5, 374, 0, 0, 532, 536, 3, 352, 176, 0, 533, 534, 5, 502, 0, 0, 534, 536, 3, 354, 177, 0, 535, 531, 1, 0, 0, 0, 535, 533, 1, 0, 0, 0, 536, 548, 1, 0, 0, 0, 537, 539, 5, 342, 0, 0, 538, 540, 5, 412, 0, 0, 539, 538, 1, 0, 0, 0, 539, 540, 1, 0, 0, 0, 540, 541, 1, 0, 0, 0, 541, 548, 5, 154, 0, 0, 542, 544, 5, 342, 0, 0, 543, 545, 5, 152, 0, 0, 544, 543, 1, 0, 0, 0, 544, 545, 1, 0, 0, 0, 545, 546, 1, 0, 0, 0, 546, 548, 5, 228, 0, 0, 547, 505, 1, 0, 0, 0, 547, 507, 1, 0, 0, 0, 547, 510, 1, 0, 0, 0, 547, 519, 1, 0, 0, 0, 547, 529, 1, 0, 0, 0, 547, 537, 1, 0, 0, 0, 547, 542, 1, 0, 0, 0, 548, 25, 1, 0, 0, 0, 549, 550, 5, 469, 0, 0, 550, 551, 5, 227, 0, 0, 551, 554, 3, 358, 179, 0, 552, 553, 5, 434, 0, 0, 553, 555, 3, 368, 184, 0, 554, 552, 1, 0, 0, 0, 554, 555, 1, 0, 0, 0, 555, 27, 1, 0, 0, 0, 556, 557, 5, 501, 0, 0, 557, 558, 5, 227, 0, 0, 558, 559, 3, 358, 179, 0, 559, 29, 1, 0, 0, 0, 560, 562, 5, 341, 0, 0, 561, 563, 3, 370, 185, 0, 562, 561, 1, 0, 0, 0, 562, 563, 1, 0, 0, 0, 563, 31, 1, 0, 0, 0, 564, 566, 5, 313, 0, 0, 565, 567, 3, 372, 186, 0, 566, 565, 1, 0, 0, 0, 566, 567, 1, 0, 0, 0, 567, 33, 1, 0, 0, 0, 568, 569, 7, 5, 0, 0, 569, 570, 5, 464, 0, 0, 570, 571, 3, 116, 58, 0, 571, 35, 1, 0, 0, 0, 572, 573, 5, 438, 0, 0, 573, 574, 5, 464, 0, 0, 574, 575, 5, 434, 0, 0, 575, 578, 3, 38, 19, 0, 576, 577, 5, 17, 0, 0, 577, 579, 3, 358, 179, 0, 578, 576, 1, 0, 0, 0, 578, 579, 1, 0, 0, 0, 579, 623, 1, 0, 0, 0, 580, 581, 5, 438, 0, 0, 581, 582, 5, 457, 0, 0, 582, 583, 5, 434, 0, 0, 583, 586, 3, 38, 19, 0, 584, 585, 5, 17, 0, 0, 585, 587, 3, 358, 179, 0, 586, 584, 1, 0, 0, 0, 586, 587, 1, 0, 0, 0, 587, 590, 1, 0, 0, 0, 588, 589, 5, 312, 0, 0, 589, 591, 3, 358, 179, 0, 590, 588, 1, 0, 0, 0, 590, 591, 1, 0, 0, 0, 591, 623, 1, 0, 0, 0, 592, 593, 5, 438, 0, 0, 593, 594, 7, 6, 0, 0, 594, 595, 5, 434, 0, 0, 595, 596, 3, 38, 19, 0, 596, 597, 5, 312, 0, 0, 597, 598, 3, 358, 179, 0, 598, 623, 1, 0, 0, 0, 599, 600, 5, 438, 0, 0, 600, 601, 5, 487, 0, 0, 601, 623, 3, 38, 19, 0, 602, 603, 5, 438, 0, 0, 603, 604, 5, 454, 0, 0, 604, 605, 5, 457, 0, 0, 605, 606, 5, 434, 0, 0, 606, 607, 3, 38, 19, 0, 607, 608, 5, 312, 0, 0, 608, 609, 3, 358, 179, 0, 609, 610, 5, 467, 0, 0, 610, 611, 3, 358, 179, 0, 611, 623, 1, 0, 0, 0, 612, 613, 5, 438, 0, 0, 613, 614, 5, 444, 0, 0, 614, 615, 5, 457, 0, 0, 615, 616, 5, 434, 0, 0, 616, 617, 3, 38, 19, 0, 617, 618, 5, 146, 0, 0, 618, 619, 3, 358, 179, 0, 619, 620, 5, 17, 0, 0, 620, 621, 3, 358, 179, 0, 621, 623, 1, 0, 0, 0, 622, 572, 1, 0, 0, 0, 622, 580, 1, 0, 0, 0, 622, 592, 1, 0, 0, 0, 622, 599, 1, 0, 0, 0, 622, 602, 1, 0, 0, 0, 622, 612, 1, 0, 0, 0, 623, 37, 1, 0, 0, 0, 624, 626, 5, 535, 0, 0, 625, 624, 1, 0, 0, 0, 625, 626, 1, 0, 0, 0, 626, 627, 1, 0, 0, 0, 627, 629, 3, 358, 179, 0, 628, 625, 1, 0, 0, 0, 629, 630, 1, 0, 0, 0, 630, 628, 1, 0, 0, 0, 630, 631, 1, 0, 0, 0, 631, 39, 1, 0, 0, 0, 632, 635, 3, 42, 21, 0, 633, 635, 3, 44, 22, 0, 634, 632, 1, 0, 0, 0, 634, 633, 1, 0, 0, 0, 635, 41, 1, 0, 0, 0, 636, 638, 5, 72, 0, 0, 637, 639, 5, 498, 0, 0, 638, 637, 1, 0, 0, 0, 638, 639, 1, 0, 0, 0, 639, 640, 1, 0, 0, 0, 640, 642, 5, 374, 0, 0, 641, 643, 3, 364, 182, 0, 642, 641, 1, 0, 0, 0, 642, 643, 1, 0, 0, 0, 643, 644, 1, 0, 0, 0, 644, 645, 3, 350, 175, 0, 645, 646, 5, 517, 0, 0, 646, 651, 3, 46, 23, 0, 647, 648, 5, 521, 0, 0, 648, 650, 3, 46, 23, 0, 649, 647, 1, 0, 0, 0, 650, 653, 1, 0, 0, 0, 651, 649, 1, 0, 0, 0, 651, 652, 1, 0, 0, 0, 652, 656, 1, 0, 0, 0, 653, 651, 1, 0, 0, 0, 654, 655, 5, 521, 0, 0, 655, 657, 3, 86, 43, 0, 656, 654, 1, 0, 0, 0, 656, 657, 1, 0, 0, 0, 657, 660, 1, 0, 0, 0, 658, 659, 5, 521, 0, 0, 659, 661, 3, 88, 44, 0, 660, 658, 1, 0, 0, 0, 660, 661, 1, 0, 0, 0, 661, 664, 1, 0, 0, 0, 662, 663, 5, 521, 0, 0, 663, 665, 3, 92, 46, 0, 664, 662, 1, 0, 0, 0, 664, 665, 1, 0, 0, 0, 665, 666, 1, 0, 0, 0, 666, 669, 5, 518, 0, 0, 667, 668, 5, 59, 0, 0, 668, 670, 5, 538, 0, 0, 669, 667, 1, 0, 0, 0, 669, 670, 1, 0, 0, 0, 670, 672, 1, 0, 0, 0, 671, 673, 3, 94, 47, 0, 672, 671, 1, 0, 0, 0, 672, 673, 1, 0, 0, 0, 673, 674, 1, 0, 0, 0, 674, 676, 3, 362, 181, 0, 675, 677, 3, 102, 51, 0, 676, 675, 1, 0, 0, 0, 676, 677, 1, 0, 0, 0, 677, 43, 1, 0, 0, 0, 678, 679, 5, 72, 0, 0, 679, 681, 5, 374, 0, 0, 680, 682, 3, 364, 182, 0, 681, 680, 1, 0, 0, 0, 681, 682, 1, 0, 0, 0, 682, 683, 1, 0, 0, 0, 683, 684, 3, 350, 175, 0, 684, 687, 3, 362, 181, 0, 685, 686, 5, 17, 0, 0, 686, 688, 3, 164, 82, 0, 687, 685, 1, 0, 0, 0, 687, 688, 1, 0, 0, 0, 688, 45, 1, 0, 0, 0, 689, 693, 3, 48, 24, 0, 690, 693, 3, 78, 39, 0, 691, 693, 3, 82, 41, 0, 692, 689, 1, 0, 0, 0, 692, 690, 1, 0, 0, 0, 692, 691, 1, 0, 0, 0, 693, 47, 1, 0, 0, 0, 694, 695, 3, 50, 25, 0, 695, 697, 3, 62, 31, 0, 696, 698, 3, 76, 38, 0, 697, 696, 1, 0, 0, 0, 697, 698, 1, 0, 0, 0, 698, 701, 1, 0, 0, 0, 699, 700, 5, 59, 0, 0, 700, 702, 5, 538, 0, 0, 701, 699, 1, 0, 0, 0, 701, 702, 1, 0, 0, 0, 702, 49, 1, 0, 0, 0, 703, 706, 3, 358, 179, 0, 704, 706, 3, 282, 141, 0, 705, 703, 1, 0, 0, 0, 705, 704, 1, 0, 0, 0, 706, 51, 1, 0, 0, 0, 707, 708, 1, 0, 0, 0, 708, 53, 1, 0, 0, 0, 709, 713, 3, 360, 180, 0, 710, 711, 4, 27, 0, 0, 711, 713, 3, 52, 26, 0, 712, 709, 1, 0, 0, 0, 712, 710, 1, 0, 0, 0, 713, 55, 1, 0, 0, 0, 714, 715, 3, 358, 179, 0, 715, 57, 1, 0, 0, 0, 716, 720, 3, 360, 180, 0, 717, 718, 4, 29, 1, 0, 718, 720, 3, 52, 26, 0, 719, 716, 1, 0, 0, 0, 719, 717, 1, 0, 0, 0, 720, 59, 1, 0, 0, 0, 721, 722, 5, 517, 0, 0, 722, 727, 3, 54, 27, 0, 723, 724, 5, 521, 0, 0, 724, 726, 3, 54, 27, 0, 725, 723, 1, 0, 0, 0, 726, 729, 1, 0, 0, 0, 727, 725, 1, 0, 0, 0, 727, 728, 1, 0, 0, 0, 728, 730, 1, 0, 0, 0, 729, 727, 1, 0, 0, 0, 730, 731, 5, 518, 0, 0, 731, 61, 1, 0, 0, 0, 732, 770, 7, 7, 0, 0, 733, 735, 7, 8, 0, 0, 734, 736, 3, 64, 32, 0, 735, 734, 1, 0, 0, 0, 735, 736, 1, 0, 0, 0, 736, 770, 1, 0, 0, 0, 737, 739, 5, 380, 0, 0, 738, 740, 3, 64, 32, 0, 739, 738, 1, 0, 0, 0, 739, 740, 1, 0, 0, 0, 740, 747, 1, 0, 0, 0, 741, 743, 7, 9, 0, 0, 742, 744, 5, 207, 0, 0, 743, 742, 1, 0, 0, 0, 743, 744, 1, 0, 0, 0, 744, 745, 1, 0, 0, 0, 745, 746, 5, 379, 0, 0, 746, 748, 5, 505, 0, 0, 747, 741, 1, 0, 0, 0, 747, 748, 1, 0, 0, 0, 748, 770, 1, 0, 0, 0, 749, 751, 7, 10, 0, 0, 750, 752, 3, 66, 33, 0, 751, 750, 1, 0, 0, 0, 751, 752, 1, 0, 0, 0, 752, 770, 1, 0, 0, 0, 753, 755, 7, 11, 0, 0, 754, 756, 3, 70, 35, 0, 755, 754, 1, 0, 0, 0, 755, 756, 1, 0, 0, 0, 756, 770, 1, 0, 0, 0, 757, 759, 5, 470, 0, 0, 758, 760, 3, 72, 36, 0, 759, 758, 1, 0, 0, 0, 759, 760, 1, 0, 0, 0, 760, 770, 1, 0, 0, 0, 761, 763, 5, 322, 0, 0, 762, 764, 3, 74, 37, 0, 763, 762, 1, 0, 0, 0, 763, 764, 1, 0, 0, 0, 764, 770, 1, 0, 0, 0, 765, 767, 5, 295, 0, 0, 766, 768, 3, 68, 34, 0, 767, 766, 1, 0, 0, 0, 767, 768, 1, 0, 0, 0, 768, 770, 1, 0, 0, 0, 769, 732, 1, 0, 0, 0, 769, 733, 1, 0, 0, 0, 769, 737, 1, 0, 0, 0, 769, 749, 1, 0, 0, 0, 769, 753, 1, 0, 0, 0, 769, 757, 1, 0, 0, 0, 769, 761, 1, 0, 0, 0, 769, 765, 1, 0, 0, 0, 770, 63, 1, 0, 0, 0, 771, 772, 5, 517, 0, 0, 772, 773, 3, 392, 196, 0, 773, 774, 5, 518, 0, 0, 774, 65, 1, 0, 0, 0, 775, 776, 5, 517, 0, 0, 776, 779, 3, 392, 196, 0, 777, 778, 5, 521, 0, 0, 778, 780, 3, 392, 196, 0, 779, 777, 1, 0, 0, 0, 779, 780, 1, 0, 0, 0, 780, 781, 1, 0, 0, 0, 781, 782, 5, 518, 0, 0, 782, 67, 1, 0, 0, 0, 783, 784, 5, 517, 0, 0, 784, 787, 3, 390, 195, 0, 785, 786, 5, 521, 0, 0, 786, 788, 3, 390, 195, 0, 787, 785, 1, 0, 0, 0, 787, 788, 1, 0, 0, 0, 788, 789, 1, 0, 0, 0, 789, 790, 5, 518, 0, 0, 790, 69, 1, 0, 0, 0, 791, 792, 5, 508, 0, 0, 792, 793, 3, 62, 31, 0, 793, 794, 5, 507, 0, 0, 794, 71, 1, 0, 0, 0, 795, 796, 5, 508, 0, 0, 796, 797, 3, 62, 31, 0, 797, 798, 5, 521, 0, 0, 798, 799, 3, 62, 31, 0, 799, 800, 1, 0, 0, 0, 800, 801, 5, 507, 0, 0, 801, 73, 1, 0, 0, 0, 802, 803, 5, 508, 0, 0, 803, 804, 3, 54, 27, 0, 804, 811, 3, 62, 31, 0, 805, 806, 5, 521, 0, 0, 806, 807, 3, 54, 27, 0, 807, 808, 3, 62, 31, 0, 808, 810, 1, 0, 0, 0, 809, 805, 1, 0, 0, 0, 810, 813, 1, 0, 0, 0, 811, 809, 1, 0, 0, 0, 811, 812, 1, 0, 0, 0, 812, 814, 1, 0, 0, 0, 813, 811, 1, 0, 0, 0, 814, 815, 5, 507, 0, 0, 815, 831, 1, 0, 0, 0, 816, 817, 5, 517, 0, 0, 817, 818, 3, 54, 27, 0, 818, 825, 3, 62, 31, 0, 819, 820, 5, 521, 0, 0, 820, 821, 3, 54, 27, 0, 821, 822, 3, 62, 31, 0, 822, 824, 1, 0, 0, 0, 823, 819, 1, 0, 0, 0, 824, 827, 1, 0, 0, 0, 825, 823, 1, 0, 0, 0, 825, 826, 1, 0, 0, 0, 826, 828, 1, 0, 0, 0, 827, 825, 1, 0, 0, 0, 828, 829, 5, 518, 0, 0, 829, 831, 1, 0, 0, 0, 830, 802, 1, 0, 0, 0, 830, 816, 1, 0, 0, 0, 831, 75, 1, 0, 0, 0, 832, 833, 5, 64, 0, 0, 833, 835, 3, 90, 45, 0, 834, 832, 1, 0, 0, 0, 834, 835, 1, 0, 0, 0, 835, 836, 1, 0, 0, 0, 836, 837, 5, 289, 0, 0, 837, 840, 5, 467, 0, 0, 838, 839, 5, 242, 0, 0, 839, 841, 5, 125, 0, 0, 840, 838, 1, 0, 0, 0, 840, 841, 1, 0, 0, 0, 841, 847, 1, 0, 0, 0, 842, 844, 5, 242, 0, 0, 843, 842, 1, 0, 0, 0, 843, 844, 1, 0, 0, 0, 844, 845, 1, 0, 0, 0, 845, 847, 5, 245, 0, 0, 846, 834, 1, 0, 0, 0, 846, 843, 1, 0, 0, 0, 847, 77, 1, 0, 0, 0, 848, 849, 3, 50, 25, 0, 849, 850, 3, 62, 31, 0, 850, 853, 5, 219, 0, 0, 851, 852, 5, 151, 0, 0, 852, 854, 3, 80, 40, 0, 853, 851, 1, 0, 0, 0, 853, 854, 1, 0, 0, 0, 854, 856, 1, 0, 0, 0, 855, 857, 5, 424, 0, 0, 856, 855, 1, 0, 0, 0, 856, 857, 1, 0, 0, 0, 857, 79, 1, 0, 0, 0, 858, 859, 5, 538, 0, 0, 859, 81, 1, 0, 0, 0, 860, 861, 3, 50, 25, 0, 861, 862, 5, 17, 0, 0, 862, 865, 3, 84, 42, 0, 863, 864, 5, 59, 0, 0, 864, 866, 5, 538, 0, 0, 865, 863, 1, 0, 0, 0, 865, 866, 1, 0, 0, 0, 866, 83, 1, 0, 0, 0, 867, 868, 3, 282, 141, 0, 868, 85, 1, 0, 0, 0, 869, 870, 5, 425, 0, 0, 870, 871, 5, 146, 0, 0, 871, 872, 3, 54, 27, 0, 872, 873, 5, 17, 0, 0, 873, 874, 3, 282, 141, 0, 874, 87, 1, 0, 0, 0, 875, 876, 5, 64, 0, 0, 876, 878, 3, 90, 45, 0, 877, 875, 1, 0, 0, 0, 877, 878, 1, 0, 0, 0, 878, 879, 1, 0, 0, 0, 879, 880, 5, 289, 0, 0, 880, 881, 5, 467, 0, 0, 881, 882, 3, 60, 30, 0, 882, 883, 5, 242, 0, 0, 883, 884, 5, 125, 0, 0, 884, 89, 1, 0, 0, 0, 885, 886, 3, 334, 167, 0, 886, 91, 1, 0, 0, 0, 887, 888, 5, 278, 0, 0, 888, 889, 5, 146, 0, 0, 889, 890, 5, 372, 0, 0, 890, 93, 1, 0, 0, 0, 891, 892, 5, 270, 0, 0, 892, 893, 5, 34, 0, 0, 893, 894, 3, 96, 48, 0, 894, 95, 1, 0, 0, 0, 895, 896, 5, 517, 0, 0, 896, 901, 3, 98, 49, 0, 897, 898, 5, 521, 0, 0, 898, 900, 3, 98, 49, 0, 899, 897, 1, 0, 0, 0, 900, 903, 1, 0, 0, 0, 901, 899, 1, 0, 0, 0, 901, 902, 1, 0, 0, 0, 902, 904, 1, 0, 0, 0, 903, 901, 1, 0, 0, 0, 904, 905, 5, 518, 0, 0, 905, 97, 1, 0, 0, 0, 906, 919, 3, 54, 27, 0, 907, 908, 5, 517, 0, 0, 908, 913, 3, 100, 50, 0, 909, 910, 5, 521, 0, 0, 910, 912, 3, 100, 50, 0, 911, 909, 1, 0, 0, 0, 912, 915, 1, 0, 0, 0, 913, 911, 1, 0, 0, 0, 913, 914, 1, 0, 0, 0, 914, 916, 1, 0, 0, 0, 915, 913, 1, 0, 0, 0, 916, 917, 5, 518, 0, 0, 917, 919, 1, 0, 0, 0, 918, 906, 1, 0, 0, 0, 918, 907, 1, 0, 0, 0, 919, 99, 1, 0, 0, 0, 920, 923, 3, 310, 155, 0, 921, 923, 3, 386, 193, 0, 922, 920, 1, 0, 0, 0, 922, 921, 1, 0, 0, 0, 923, 101, 1, 0, 0, 0, 924, 925, 5, 203, 0, 0, 925, 934, 3, 352, 176, 0, 926, 930, 5, 517, 0, 0, 927, 929, 3, 104, 52, 0, 928, 927, 1, 0, 0, 0, 929, 932, 1, 0, 0, 0, 930, 928, 1, 0, 0, 0, 930, 931, 1, 0, 0, 0, 931, 933, 1, 0, 0, 0, 932, 930, 1, 0, 0, 0, 933, 935, 5, 518, 0, 0, 934, 926, 1, 0, 0, 0, 934, 935, 1, 0, 0, 0, 935, 103, 1, 0, 0, 0, 936, 937, 7, 12, 0, 0, 937, 941, 7, 13, 0, 0, 938, 939, 7, 14, 0, 0, 939, 941, 7, 15, 0, 0, 940, 936, 1, 0, 0, 0, 940, 938, 1, 0, 0, 0, 941, 105, 1, 0, 0, 0, 942, 943, 5, 72, 0, 0, 943, 944, 5, 442, 0, 0, 944, 945, 3, 344, 172, 0, 945, 946, 3, 362, 181, 0, 946, 107, 1, 0, 0, 0, 947, 948, 5, 72, 0, 0, 948, 950, 5, 448, 0, 0, 949, 951, 3, 364, 182, 0, 950, 949, 1, 0, 0, 0, 950, 951, 1, 0, 0, 0, 951, 952, 1, 0, 0, 0, 952, 955, 3, 348, 174, 0, 953, 954, 5, 59, 0, 0, 954, 956, 5, 538, 0, 0, 955, 953, 1, 0, 0, 0, 955, 956, 1, 0, 0, 0, 956, 957, 1, 0, 0, 0, 957, 958, 3, 362, 181, 0, 958, 109, 1, 0, 0, 0, 959, 961, 5, 72, 0, 0, 960, 962, 5, 498, 0, 0, 961, 960, 1, 0, 0, 0, 961, 962, 1, 0, 0, 0, 962, 963, 1, 0, 0, 0, 963, 965, 5, 502, 0, 0, 964, 966, 3, 364, 182, 0, 965, 964, 1, 0, 0, 0, 965, 966, 1, 0, 0, 0, 966, 967, 1, 0, 0, 0, 967, 969, 3, 356, 178, 0, 968, 970, 3, 60, 30, 0, 969, 968, 1, 0, 0, 0, 969, 970, 1, 0, 0, 0, 970, 973, 1, 0, 0, 0, 971, 972, 5, 59, 0, 0, 972, 974, 5, 538, 0, 0, 973, 971, 1, 0, 0, 0, 973, 974, 1, 0, 0, 0, 974, 975, 1, 0, 0, 0, 975, 976, 5, 17, 0, 0, 976, 977, 3, 164, 82, 0, 977, 111, 1, 0, 0, 0, 978, 982, 5, 72, 0, 0, 979, 983, 5, 498, 0, 0, 980, 981, 5, 498, 0, 0, 981, 983, 5, 371, 0, 0, 982, 979, 1, 0, 0, 0, 982, 980, 1, 0, 0, 0, 982, 983, 1, 0, 0, 0, 983, 984, 1, 0, 0, 0, 984, 986, 5, 153, 0, 0, 985, 987, 3, 364, 182, 0, 986, 985, 1, 0, 0, 0, 986, 987, 1, 0, 0, 0, 987, 988, 1, 0, 0, 0, 988, 989, 3, 296, 148, 0, 989, 990, 5, 17, 0, 0, 990, 993, 3, 334, 167, 0, 991, 992, 5, 196, 0, 0, 992, 994, 7, 16, 0, 0, 993, 991, 1, 0, 0, 0, 993, 994, 1, 0, 0, 0, 994, 996, 1, 0, 0, 0, 995, 997, 3, 114, 57, 0, 996, 995, 1, 0, 0, 0, 996, 997, 1, 0, 0, 0, 997, 113, 1, 0, 0, 0, 998, 999, 5, 413, 0, 0, 999, 1000, 5, 464, 0, 0, 1000, 1006, 3, 116, 58, 0, 1001, 1002, 5, 521, 0, 0, 1002, 1003, 5, 464, 0, 0, 1003, 1005, 3, 116, 58, 0, 1004, 1001, 1, 0, 0, 0, 1005, 1008, 1, 0, 0, 0, 1006, 1004, 1, 0, 0, 0, 1006, 1007, 1, 0, 0, 0, 1007, 115, 1, 0, 0, 0, 1008, 1006, 1, 0, 0, 0, 1009, 1010, 5, 538, 0, 0, 1010, 117, 1, 0, 0, 0, 1011, 1012, 5, 8, 0, 0, 1012, 1014, 5, 374, 0, 0, 1013, 1015, 3, 366, 183, 0, 1014, 1013, 1, 0, 0, 0, 1014, 1015, 1, 0, 0, 0, 1015, 1016, 1, 0, 0, 0, 1016, 1022, 3, 352, 176, 0, 1017, 1023, 3, 120, 60, 0, 1018, 1023, 3, 122, 61, 0, 1019, 1023, 3, 124, 62, 0, 1020, 1023, 3, 126, 63, 0, 1021, 1023, 3, 128, 64, 0, 1022, 1017, 1, 0, 0, 0, 1022, 1018, 1, 0, 0, 0, 1022, 1019, 1, 0, 0, 0, 1022, 1020, 1, 0, 0, 0, 1022, 1021, 1, 0, 0, 0, 1023, 119, 1, 0, 0, 0, 1024, 1026, 5, 312, 0, 0, 1025, 1027, 3, 358, 179, 0, 1026, 1025, 1, 0, 0, 0, 1026, 1027, 1, 0, 0, 0, 1027, 1028, 1, 0, 0, 0, 1028, 1029, 5, 389, 0, 0, 1029, 1030, 3, 358, 179, 0, 1030, 121, 1, 0, 0, 0, 1031, 1032, 5, 341, 0, 0, 1032, 1033, 3, 368, 184, 0, 1033, 123, 1, 0, 0, 0, 1034, 1035, 5, 438, 0, 0, 1035, 1036, 5, 64, 0, 0, 1036, 1037, 3, 90, 45, 0, 1037, 1038, 5, 289, 0, 0, 1038, 1039, 5, 467, 0, 0, 1039, 1041, 3, 60, 30, 0, 1040, 1042, 3, 130, 65, 0, 1041, 1040, 1, 0, 0, 0, 1041, 1042, 1, 0, 0, 0, 1042, 125, 1, 0, 0, 0, 1043, 1044, 5, 116, 0, 0, 1044, 1045, 5, 64, 0, 0, 1045, 1046, 3, 90, 45, 0, 1046, 127, 1, 0, 0, 0, 1047, 1048, 5, 438, 0, 0, 1048, 1049, 5, 404, 0, 0, 1049, 1050, 3, 60, 30, 0, 1050, 129, 1, 0, 0, 0, 1051, 1052, 5, 242, 0, 0, 1052, 1053, 5, 125, 0, 0, 1053, 131, 1, 0, 0, 0, 1054, 1055, 5, 8, 0, 0, 1055, 1056, 5, 502, 0, 0, 1056, 1060, 3, 354, 177, 0, 1057, 1061, 3, 120, 60, 0, 1058, 1059, 5, 17, 0, 0, 1059, 1061, 3, 164, 82, 0, 1060, 1057, 1, 0, 0, 0, 1060, 1058, 1, 0, 0, 0, 1061, 133, 1, 0, 0, 0, 1062, 1063, 5, 8, 0, 0, 1063, 1064, 5, 448, 0, 0, 1064, 1065, 3, 346, 173, 0, 1065, 1066, 3, 122, 61, 0, 1066, 135, 1, 0, 0, 0, 1067, 1071, 5, 8, 0, 0, 1068, 1072, 5, 498, 0, 0, 1069, 1070, 5, 498, 0, 0, 1070, 1072, 5, 371, 0, 0, 1071, 1068, 1, 0, 0, 0, 1071, 1069, 1, 0, 0, 0, 1071, 1072, 1, 0, 0, 0, 1072, 1073, 1, 0, 0, 0, 1073, 1075, 5, 153, 0, 0, 1074, 1076, 3, 366, 183, 0, 1075, 1074, 1, 0, 0, 0, 1075, 1076, 1, 0, 0, 0, 1076, 1077, 1, 0, 0, 0, 1077, 1078, 3, 298, 149, 0, 1078, 1079, 5, 17, 0, 0, 1079, 1082, 3, 334, 167, 0, 1080, 1081, 5, 196, 0, 0, 1081, 1083, 7, 16, 0, 0, 1082, 1080, 1, 0, 0, 0, 1082, 1083, 1, 0, 0, 0, 1083, 137, 1, 0, 0, 0, 1084, 1085, 5, 116, 0, 0, 1085, 1087, 5, 442, 0, 0, 1086, 1088, 3, 366, 183, 0, 1087, 1086, 1, 0, 0, 0, 1087, 1088, 1, 0, 0, 0, 1088, 1089, 1, 0, 0, 0, 1089, 1090, 3, 342, 171, 0, 1090, 139, 1, 0, 0, 0, 1091, 1093, 5, 116, 0, 0, 1092, 1094, 5, 498, 0, 0, 1093, 1092, 1, 0, 0, 0, 1093, 1094, 1, 0, 0, 0, 1094, 1095, 1, 0, 0, 0, 1095, 1097, 5, 374, 0, 0, 1096, 1098, 3, 366, 183, 0, 1097, 1096, 1, 0, 0, 0, 1097, 1098, 1, 0, 0, 0, 1098, 1099, 1, 0, 0, 0, 1099, 1100, 3, 352, 176, 0, 1100, 141, 1, 0, 0, 0, 1101, 1102, 5, 116, 0, 0, 1102, 1104, 5, 448, 0, 0, 1103, 1105, 3, 366, 183, 0, 1104, 1103, 1, 0, 0, 0, 1104, 1105, 1, 0, 0, 0, 1105, 1106, 1, 0, 0, 0, 1106, 1108, 3, 346, 173, 0, 1107, 1109, 7, 17, 0, 0, 1108, 1107, 1, 0, 0, 0, 1108, 1109, 1, 0, 0, 0, 1109, 143, 1, 0, 0, 0, 1110, 1112, 5, 116, 0, 0, 1111, 1113, 5, 498, 0, 0, 1112, 1111, 1, 0, 0, 0, 1112, 1113, 1, 0, 0, 0, 1113, 1114, 1, 0, 0, 0, 1114, 1116, 5, 502, 0, 0, 1115, 1117, 3, 366, 183, 0, 1116, 1115, 1, 0, 0, 0, 1116, 1117, 1, 0, 0, 0, 1117, 1118, 1, 0, 0, 0, 1118, 1119, 3, 354, 177, 0, 1119, 145, 1, 0, 0, 0, 1120, 1124, 5, 116, 0, 0, 1121, 1125, 5, 498, 0, 0, 1122, 1123, 5, 498, 0, 0, 1123, 1125, 5, 371, 0, 0, 1124, 1121, 1, 0, 0, 0, 1124, 1122, 1, 0, 0, 0, 1124, 1125, 1, 0, 0, 0, 1125, 1126, 1, 0, 0, 0, 1126, 1128, 5, 153, 0, 0, 1127, 1129, 3, 366, 183, 0, 1128, 1127, 1, 0, 0, 0, 1128, 1129, 1, 0, 0, 0, 1129, 1130, 1, 0, 0, 0, 1130, 1131, 3, 298, 149, 0, 1131, 147, 1, 0, 0, 0, 1132, 1134, 5, 132, 0, 0, 1133, 1132, 1, 0, 0, 0, 1133, 1134, 1, 0, 0, 0, 1134, 1135, 1, 0, 0, 0, 1135, 1140, 3, 150, 75, 0, 1136, 1140, 3, 160, 80, 0, 1137, 1138, 5, 132, 0, 0, 1138, 1140, 3, 162, 81, 0, 1139, 1133, 1, 0, 0, 0, 1139, 1136, 1, 0, 0, 0, 1139, 1137, 1, 0, 0, 0, 1140, 149, 1, 0, 0, 0, 1141, 1142, 5, 177, 0, 0, 1142, 1143, 7, 18, 0, 0, 1143, 1152, 3, 352, 176, 0, 1144, 1146, 3, 152, 76, 0, 1145, 1144, 1, 0, 0, 0, 1145, 1146, 1, 0, 0, 0, 1146, 1148, 1, 0, 0, 0, 1147, 1149, 3, 60, 30, 0, 1148, 1147, 1, 0, 0, 0, 1148, 1149, 1, 0, 0, 0, 1149, 1150, 1, 0, 0, 0, 1150, 1153, 3, 164, 82, 0, 1151, 1153, 3, 154, 77, 0, 1152, 1145, 1, 0, 0, 0, 1152, 1151, 1, 0, 0, 0, 1153, 151, 1, 0, 0, 0, 1154, 1155, 5, 269, 0, 0, 1155, 1156, 3, 368, 184, 0, 1156, 153, 1, 0, 0, 0, 1157, 1158, 5, 415, 0, 0, 1158, 1163, 3, 156, 78, 0, 1159, 1160, 5, 521, 0, 0, 1160, 1162, 3, 156, 78, 0, 1161, 1159, 1, 0, 0, 0, 1162, 1165, 1, 0, 0, 0, 1163, 1161, 1, 0, 0, 0, 1163, 1164, 1, 0, 0, 0, 1164, 155, 1, 0, 0, 0, 1165, 1163, 1, 0, 0, 0, 1166, 1167, 5, 517, 0, 0, 1167, 1172, 3, 158, 79, 0, 1168, 1169, 5, 521, 0, 0, 1169, 1171, 3, 158, 79, 0, 1170, 1168, 1, 0, 0, 0, 1171, 1174, 1, 0, 0, 0, 1172, 1170, 1, 0, 0, 0, 1172, 1173, 1, 0, 0, 0, 1173, 1175, 1, 0, 0, 0, 1174, 1172, 1, 0, 0, 0, 1175, 1176, 5, 518, 0, 0, 1176, 157, 1, 0, 0, 0, 1177, 1180, 3, 386, 193, 0, 1178, 1180, 3, 292, 146, 0, 1179, 1177, 1, 0, 0, 0, 1179, 1178, 1, 0, 0, 0, 1180, 159, 1, 0, 0, 0, 1181, 1182, 5, 24, 0, 0, 1182, 1183, 5, 355, 0, 0, 1183, 1184, 5, 341, 0, 0, 1184, 1188, 5, 522, 0, 0, 1185, 1186, 3, 150, 75, 0, 1186, 1187, 5, 522, 0, 0, 1187, 1189, 1, 0, 0, 0, 1188, 1185, 1, 0, 0, 0, 1189, 1190, 1, 0, 0, 0, 1190, 1188, 1, 0, 0, 0, 1190, 1191, 1, 0, 0, 0, 1191, 1192, 1, 0, 0, 0, 1192, 1193, 5, 122, 0, 0, 1193, 161, 1, 0, 0, 0, 1194, 1195, 5, 355, 0, 0, 1195, 1196, 5, 341, 0, 0, 1196, 1200, 5, 24, 0, 0, 1197, 1198, 3, 150, 75, 0, 1198, 1199, 5, 522, 0, 0, 1199, 1201, 1, 0, 0, 0, 1200, 1197, 1, 0, 0, 0, 1201, 1202, 1, 0, 0, 0, 1202, 1200, 1, 0, 0, 0, 1202, 1203, 1, 0, 0, 0, 1203, 1204, 1, 0, 0, 0, 1204, 1205, 5, 122, 0, 0, 1205, 163, 1, 0, 0, 0, 1206, 1207, 6, 82, -1, 0, 1207, 1230, 3, 166, 83, 0, 1208, 1209, 3, 168, 84, 0, 1209, 1210, 3, 164, 82, 5, 1210, 1230, 1, 0, 0, 0, 1211, 1212, 5, 517, 0, 0, 1212, 1213, 3, 164, 82, 0, 1213, 1214, 5, 518, 0, 0, 1214, 1230, 1, 0, 0, 0, 1215, 1217, 3, 176, 88, 0, 1216, 1218, 3, 254, 127, 0, 1217, 1216, 1, 0, 0, 0, 1217, 1218, 1, 0, 0, 0, 1218, 1220, 1, 0, 0, 0, 1219, 1221, 3, 258, 129, 0, 1220, 1219, 1, 0, 0, 0, 1220, 1221, 1, 0, 0, 0, 1221, 1230, 1, 0, 0, 0, 1222, 1224, 3, 174, 87, 0, 1223, 1225, 3, 254, 127, 0, 1224, 1223, 1, 0, 0, 0, 1224, 1225, 1, 0, 0, 0, 1225, 1227, 1, 0, 0, 0, 1226, 1228, 3, 258, 129, 0, 1227, 1226, 1, 0, 0, 0, 1227, 1228, 1, 0, 0, 0, 1228, 1230, 1, 0, 0, 0, 1229, 1206, 1, 0, 0, 0, 1229, 1208, 1, 0, 0, 0, 1229, 1211, 1, 0, 0, 0, 1229, 1215, 1, 0, 0, 0, 1229, 1222, 1, 0, 0, 0, 1230, 1245, 1, 0, 0, 0, 1231, 1232, 10, 3, 0, 0, 1232, 1234, 7, 19, 0, 0, 1233, 1235, 5, 5, 0, 0, 1234, 1233, 1, 0, 0, 0, 1234, 1235, 1, 0, 0, 0, 1235, 1236, 1, 0, 0, 0, 1236, 1238, 3, 164, 82, 0, 1237, 1239, 3, 254, 127, 0, 1238, 1237, 1, 0, 0, 0, 1238, 1239, 1, 0, 0, 0, 1239, 1241, 1, 0, 0, 0, 1240, 1242, 3, 258, 129, 0, 1241, 1240, 1, 0, 0, 0, 1241, 1242, 1, 0, 0, 0, 1242, 1244, 1, 0, 0, 0, 1243, 1231, 1, 0, 0, 0, 1244, 1247, 1, 0, 0, 0, 1245, 1243, 1, 0, 0, 0, 1245, 1246, 1, 0, 0, 0, 1246, 165, 1, 0, 0, 0, 1247, 1245, 1, 0, 0, 0, 1248, 1249, 5, 415, 0, 0, 1249, 1254, 3, 282, 141, 0, 1250, 1251, 5, 521, 0, 0, 1251, 1253, 3, 282, 141, 0, 1252, 1250, 1, 0, 0, 0, 1253, 1256, 1, 0, 0, 0, 1254, 1252, 1, 0, 0, 0, 1254, 1255, 1, 0, 0, 0, 1255, 167, 1, 0, 0, 0, 1256, 1254, 1, 0, 0, 0, 1257, 1258, 5, 434, 0, 0, 1258, 1263, 3, 170, 85, 0, 1259, 1260, 5, 521, 0, 0, 1260, 1262, 3, 170, 85, 0, 1261, 1259, 1, 0, 0, 0, 1262, 1265, 1, 0, 0, 0, 1263, 1261, 1, 0, 0, 0, 1263, 1264, 1, 0, 0, 0, 1264, 169, 1, 0, 0, 0, 1265, 1263, 1, 0, 0, 0, 1266, 1278, 3, 172, 86, 0, 1267, 1268, 5, 517, 0, 0, 1268, 1273, 3, 54, 27, 0, 1269, 1270, 5, 521, 0, 0, 1270, 1272, 3, 54, 27, 0, 1271, 1269, 1, 0, 0, 0, 1272, 1275, 1, 0, 0, 0, 1273, 1271, 1, 0, 0, 0, 1273, 1274, 1, 0, 0, 0, 1274, 1276, 1, 0, 0, 0, 1275, 1273, 1, 0, 0, 0, 1276, 1277, 5, 518, 0, 0, 1277, 1279, 1, 0, 0, 0, 1278, 1267, 1, 0, 0, 0, 1278, 1279, 1, 0, 0, 0, 1279, 1280, 1, 0, 0, 0, 1280, 1281, 5, 17, 0, 0, 1281, 1282, 5, 517, 0, 0, 1282, 1283, 3, 164, 82, 0, 1283, 1284, 5, 518, 0, 0, 1284, 171, 1, 0, 0, 0, 1285, 1286, 3, 334, 167, 0, 1286, 173, 1, 0, 0, 0, 1287, 1289, 3, 176, 88, 0, 1288, 1290, 3, 196, 98, 0, 1289, 1288, 1, 0, 0, 0, 1289, 1290, 1, 0, 0, 0, 1290, 1292, 1, 0, 0, 0, 1291, 1293, 3, 228, 114, 0, 1292, 1291, 1, 0, 0, 0, 1292, 1293, 1, 0, 0, 0, 1293, 1295, 1, 0, 0, 0, 1294, 1296, 3, 230, 115, 0, 1295, 1294, 1, 0, 0, 0, 1295, 1296, 1, 0, 0, 0, 1296, 1298, 1, 0, 0, 0, 1297, 1299, 3, 244, 122, 0, 1298, 1297, 1, 0, 0, 0, 1298, 1299, 1, 0, 0, 0, 1299, 1301, 1, 0, 0, 0, 1300, 1302, 3, 246, 123, 0, 1301, 1300, 1, 0, 0, 0, 1301, 1302, 1, 0, 0, 0, 1302, 1308, 1, 0, 0, 0, 1303, 1304, 3, 176, 88, 0, 1304, 1305, 3, 196, 98, 0, 1305, 1306, 3, 252, 126, 0, 1306, 1308, 1, 0, 0, 0, 1307, 1287, 1, 0, 0, 0, 1307, 1303, 1, 0, 0, 0, 1308, 175, 1, 0, 0, 0, 1309, 1311, 5, 337, 0, 0, 1310, 1312, 3, 396, 198, 0, 1311, 1310, 1, 0, 0, 0, 1311, 1312, 1, 0, 0, 0, 1312, 1313, 1, 0, 0, 0, 1313, 1314, 3, 178, 89, 0, 1314, 177, 1, 0, 0, 0, 1315, 1320, 3, 180, 90, 0, 1316, 1317, 5, 521, 0, 0, 1317, 1319, 3, 180, 90, 0, 1318, 1316, 1, 0, 0, 0, 1319, 1322, 1, 0, 0, 0, 1320, 1318, 1, 0, 0, 0, 1320, 1321, 1, 0, 0, 0, 1321, 179, 1, 0, 0, 0, 1322, 1320, 1, 0, 0, 0, 1323, 1345, 3, 182, 91, 0, 1324, 1330, 3, 186, 93, 0, 1325, 1331, 3, 188, 94, 0, 1326, 1328, 5, 17, 0, 0, 1327, 1326, 1, 0, 0, 0, 1327, 1328, 1, 0, 0, 0, 1328, 1329, 1, 0, 0, 0, 1329, 1331, 3, 282, 141, 0, 1330, 1325, 1, 0, 0, 0, 1330, 1327, 1, 0, 0, 0, 1330, 1331, 1, 0, 0, 0, 1331, 1345, 1, 0, 0, 0, 1332, 1334, 3, 192, 96, 0, 1333, 1335, 3, 188, 94, 0, 1334, 1333, 1, 0, 0, 0, 1334, 1335, 1, 0, 0, 0, 1335, 1345, 1, 0, 0, 0, 1336, 1342, 3, 184, 92, 0, 1337, 1343, 3, 188, 94, 0, 1338, 1340, 5, 17, 0, 0, 1339, 1338, 1, 0, 0, 0, 1339, 1340, 1, 0, 0, 0, 1340, 1341, 1, 0, 0, 0, 1341, 1343, 3, 54, 27, 0, 1342, 1337, 1, 0, 0, 0, 1342, 1339, 1, 0, 0, 0, 1342, 1343, 1, 0, 0, 0, 1343, 1345, 1, 0, 0, 0, 1344, 1323, 1, 0, 0, 0, 1344, 1324, 1, 0, 0, 0, 1344, 1332, 1, 0, 0, 0, 1344, 1336, 1, 0, 0, 0, 1345, 181, 1, 0, 0, 0, 1346, 1347, 3, 194, 97, 0, 1347, 183, 1, 0, 0, 0, 1348, 1349, 3, 282, 141, 0, 1349, 185, 1, 0, 0, 0, 1350, 1351, 3, 54, 27, 0, 1351, 187, 1, 0, 0, 0, 1352, 1354, 5, 17, 0, 0, 1353, 1352, 1, 0, 0, 0, 1353, 1354, 1, 0, 0, 0, 1354, 1355, 1, 0, 0, 0, 1355, 1356, 3, 334, 167, 0, 1356, 189, 1, 0, 0, 0, 1357, 1373, 3, 194, 97, 0, 1358, 1363, 3, 282, 141, 0, 1359, 1361, 5, 17, 0, 0, 1360, 1359, 1, 0, 0, 0, 1360, 1361, 1, 0, 0, 0, 1361, 1362, 1, 0, 0, 0, 1362, 1364, 3, 54, 27, 0, 1363, 1360, 1, 0, 0, 0, 1363, 1364, 1, 0, 0, 0, 1364, 1373, 1, 0, 0, 0, 1365, 1370, 3, 54, 27, 0, 1366, 1368, 5, 17, 0, 0, 1367, 1366, 1, 0, 0, 0, 1367, 1368, 1, 0, 0, 0, 1368, 1369, 1, 0, 0, 0, 1369, 1371, 3, 282, 141, 0, 1370, 1367, 1, 0, 0, 0, 1370, 1371, 1, 0, 0, 0, 1371, 1373, 1, 0, 0, 0, 1372, 1357, 1, 0, 0, 0, 1372, 1358, 1, 0, 0, 0, 1372, 1365, 1, 0, 0, 0, 1373, 191, 1, 0, 0, 0, 1374, 1379, 3, 334, 167, 0, 1375, 1376, 5, 514, 0, 0, 1376, 1378, 3, 334, 167, 0, 1377, 1375, 1, 0, 0, 0, 1378, 1381, 1, 0, 0, 0, 1379, 1377, 1, 0, 0, 0, 1379, 1380, 1, 0, 0, 0, 1380, 1382, 1, 0, 0, 0, 1381, 1379, 1, 0, 0, 0, 1382, 1383, 5, 514, 0, 0, 1383, 1385, 1, 0, 0, 0, 1384, 1374, 1, 0, 0, 0, 1384, 1385, 1, 0, 0, 0, 1385, 1386, 1, 0, 0, 0, 1386, 1387, 5, 528, 0, 0, 1387, 193, 1, 0, 0, 0, 1388, 1389, 3, 294, 147, 0, 1389, 1390, 5, 263, 0, 0, 1390, 1391, 3, 250, 125, 0, 1391, 1392, 5, 17, 0, 0, 1392, 1393, 3, 334, 167, 0, 1393, 1401, 1, 0, 0, 0, 1394, 1395, 3, 294, 147, 0, 1395, 1396, 5, 263, 0, 0, 1396, 1397, 3, 326, 163, 0, 1397, 1398, 5, 17, 0, 0, 1398, 1399, 3, 334, 167, 0, 1399, 1401, 1, 0, 0, 0, 1400, 1388, 1, 0, 0, 0, 1400, 1394, 1, 0, 0, 0, 1401, 195, 1, 0, 0, 0, 1402, 1403, 5, 151, 0, 0, 1403, 1404, 3, 198, 99, 0, 1404, 197, 1, 0, 0, 0, 1405, 1406, 6, 99, -1, 0, 1406, 1411, 3, 200, 100, 0, 1407, 1408, 5, 521, 0, 0, 1408, 1410, 3, 200, 100, 0, 1409, 1407, 1, 0, 0, 0, 1410, 1413, 1, 0, 0, 0, 1411, 1409, 1, 0, 0, 0, 1411, 1412, 1, 0, 0, 0, 1412, 1417, 1, 0, 0, 0, 1413, 1411, 1, 0, 0, 0, 1414, 1417, 3, 212, 106, 0, 1415, 1417, 3, 214, 107, 0, 1416, 1405, 1, 0, 0, 0, 1416, 1414, 1, 0, 0, 0, 1416, 1415, 1, 0, 0, 0, 1417, 1439, 1, 0, 0, 0, 1418, 1419, 10, 3, 0, 0, 1419, 1420, 5, 73, 0, 0, 1420, 1421, 5, 185, 0, 0, 1421, 1438, 3, 198, 99, 4, 1422, 1424, 10, 4, 0, 0, 1423, 1425, 5, 234, 0, 0, 1424, 1423, 1, 0, 0, 0, 1424, 1425, 1, 0, 0, 0, 1425, 1427, 1, 0, 0, 0, 1426, 1428, 7, 20, 0, 0, 1427, 1426, 1, 0, 0, 0, 1427, 1428, 1, 0, 0, 0, 1428, 1430, 1, 0, 0, 0, 1429, 1431, 5, 262, 0, 0, 1430, 1429, 1, 0, 0, 0, 1430, 1431, 1, 0, 0, 0, 1431, 1432, 1, 0, 0, 0, 1432, 1433, 5, 185, 0, 0, 1433, 1435, 3, 198, 99, 0, 1434, 1436, 3, 226, 113, 0, 1435, 1434, 1, 0, 0, 0, 1435, 1436, 1, 0, 0, 0, 1436, 1438, 1, 0, 0, 0, 1437, 1418, 1, 0, 0, 0, 1437, 1422, 1, 0, 0, 0, 1438, 1441, 1, 0, 0, 0, 1439, 1437, 1, 0, 0, 0, 1439, 1440, 1, 0, 0, 0, 1440, 199, 1, 0, 0, 0, 1441, 1439, 1, 0, 0, 0, 1442, 1444, 3, 202, 101, 0, 1443, 1445, 3, 324, 162, 0, 1444, 1443, 1, 0, 0, 0, 1444, 1445, 1, 0, 0, 0, 1445, 201, 1, 0, 0, 0, 1446, 1448, 5, 374, 0, 0, 1447, 1446, 1, 0, 0, 0, 1447, 1448, 1, 0, 0, 0, 1448, 1449, 1, 0, 0, 0, 1449, 1451, 3, 352, 176, 0, 1450, 1452, 3, 208, 104, 0, 1451, 1450, 1, 0, 0, 0, 1451, 1452, 1, 0, 0, 0, 1452, 1460, 1, 0, 0, 0, 1453, 1455, 3, 354, 177, 0, 1454, 1456, 3, 208, 104, 0, 1455, 1454, 1, 0, 0, 0, 1455, 1456, 1, 0, 0, 0, 1456, 1460, 1, 0, 0, 0, 1457, 1460, 3, 204, 102, 0, 1458, 1460, 3, 206, 103, 0, 1459, 1447, 1, 0, 0, 0, 1459, 1453, 1, 0, 0, 0, 1459, 1457, 1, 0, 0, 0, 1459, 1458, 1, 0, 0, 0, 1460, 203, 1, 0, 0, 0, 1461, 1462, 5, 199, 0, 0, 1462, 1463, 5, 374, 0, 0, 1463, 1464, 5, 517, 0, 0, 1464, 1465, 3, 292, 146, 0, 1465, 1466, 5, 518, 0, 0, 1466, 205, 1, 0, 0, 0, 1467, 1469, 5, 199, 0, 0, 1468, 1467, 1, 0, 0, 0, 1468, 1469, 1, 0, 0, 0, 1469, 1470, 1, 0, 0, 0, 1470, 1471, 5, 517, 0, 0, 1471, 1472, 3, 164, 82, 0, 1472, 1473, 5, 518, 0, 0, 1473, 1480, 1, 0, 0, 0, 1474, 1475, 5, 406, 0, 0, 1475, 1476, 5, 517, 0, 0, 1476, 1477, 3, 282, 141, 0, 1477, 1478, 5, 518, 0, 0, 1478, 1480, 1, 0, 0, 0, 1479, 1468, 1, 0, 0, 0, 1479, 1474, 1, 0, 0, 0, 1480, 207, 1, 0, 0, 0, 1481, 1482, 5, 146, 0, 0, 1482, 1483, 5, 372, 0, 0, 1483, 1484, 5, 17, 0, 0, 1484, 1485, 5, 250, 0, 0, 1485, 1486, 3, 210, 105, 0, 1486, 209, 1, 0, 0, 0, 1487, 1488, 3, 282, 141, 0, 1488, 211, 1, 0, 0, 0, 1489, 1490, 5, 517, 0, 0, 1490, 1491, 3, 154, 77, 0, 1491, 1492, 5, 518, 0, 0, 1492, 1493, 3, 324, 162, 0, 1493, 213, 1, 0, 0, 0, 1494, 1495, 5, 374, 0, 0, 1495, 1496, 5, 517, 0, 0, 1496, 1497, 3, 216, 108, 0, 1497, 1498, 5, 518, 0, 0, 1498, 215, 1, 0, 0, 0, 1499, 1500, 3, 218, 109, 0, 1500, 1501, 5, 517, 0, 0, 1501, 1506, 3, 220, 110, 0, 1502, 1503, 5, 521, 0, 0, 1503, 1505, 3, 220, 110, 0, 1504, 1502, 1, 0, 0, 0, 1505, 1508, 1, 0, 0, 0, 1506, 1504, 1, 0, 0, 0, 1506, 1507, 1, 0, 0, 0, 1507, 1509, 1, 0, 0, 0, 1508, 1506, 1, 0, 0, 0, 1509, 1510, 5, 518, 0, 0, 1510, 217, 1, 0, 0, 0, 1511, 1512, 7, 21, 0, 0, 1512, 219, 1, 0, 0, 0, 1513, 1514, 5, 374, 0, 0, 1514, 1529, 3, 242, 121, 0, 1515, 1529, 3, 224, 112, 0, 1516, 1529, 3, 312, 156, 0, 1517, 1518, 5, 447, 0, 0, 1518, 1519, 5, 537, 0, 0, 1519, 1520, 5, 374, 0, 0, 1520, 1529, 3, 242, 121, 0, 1521, 1522, 5, 499, 0, 0, 1522, 1523, 5, 537, 0, 0, 1523, 1529, 3, 224, 112, 0, 1524, 1525, 3, 222, 111, 0, 1525, 1526, 5, 537, 0, 0, 1526, 1527, 3, 312, 156, 0, 1527, 1529, 1, 0, 0, 0, 1528, 1513, 1, 0, 0, 0, 1528, 1515, 1, 0, 0, 0, 1528, 1516, 1, 0, 0, 0, 1528, 1517, 1, 0, 0, 0, 1528, 1521, 1, 0, 0, 0, 1528, 1524, 1, 0, 0, 0, 1529, 221, 1, 0, 0, 0, 1530, 1531, 7, 22, 0, 0, 1531, 223, 1, 0, 0, 0, 1532, 1533, 5, 452, 0, 0, 1533, 1534, 5, 517, 0, 0, 1534, 1535, 3, 54, 27, 0, 1535, 1536, 5, 518, 0, 0, 1536, 225, 1, 0, 0, 0, 1537, 1544, 5, 254, 0, 0, 1538, 1545, 3, 284, 142, 0, 1539, 1542, 3, 58, 29, 0, 1540, 1541, 5, 506, 0, 0, 1541, 1543, 3, 58, 29, 0, 1542, 1540, 1, 0, 0, 0, 1542, 1543, 1, 0, 0, 0, 1543, 1545, 1, 0, 0, 0, 1544, 1538, 1, 0, 0, 0, 1544, 1539, 1, 0, 0, 0, 1545, 1549, 1, 0, 0, 0, 1546, 1547, 5, 413, 0, 0, 1547, 1549, 3, 60, 30, 0, 1548, 1537, 1, 0, 0, 0, 1548, 1546, 1, 0, 0, 0, 1549, 227, 1, 0, 0, 0, 1550, 1553, 5, 431, 0, 0, 1551, 1554, 3, 284, 142, 0, 1552, 1554, 3, 58, 29, 0, 1553, 1551, 1, 0, 0, 0, 1553, 1552, 1, 0, 0, 0, 1554, 229, 1, 0, 0, 0, 1555, 1556, 5, 159, 0, 0, 1556, 1557, 5, 34, 0, 0, 1557, 1562, 3, 232, 116, 0, 1558, 1559, 5, 521, 0, 0, 1559, 1561, 3, 232, 116, 0, 1560, 1558, 1, 0, 0, 0, 1561, 1564, 1, 0, 0, 0, 1562, 1560, 1, 0, 0, 0, 1562, 1563, 1, 0, 0, 0, 1563, 231, 1, 0, 0, 0, 1564, 1562, 1, 0, 0, 0, 1565, 1606, 3, 54, 27, 0, 1566, 1606, 3, 238, 119, 0, 1567, 1568, 5, 517, 0, 0, 1568, 1606, 5, 518, 0, 0, 1569, 1570, 5, 517, 0, 0, 1570, 1575, 3, 282, 141, 0, 1571, 1572, 5, 521, 0, 0, 1572, 1574, 3, 282, 141, 0, 1573, 1571, 1, 0, 0, 0, 1574, 1577, 1, 0, 0, 0, 1575, 1573, 1, 0, 0, 0, 1575, 1576, 1, 0, 0, 0, 1576, 1578, 1, 0, 0, 0, 1577, 1575, 1, 0, 0, 0, 1578, 1579, 5, 518, 0, 0, 1579, 1606, 1, 0, 0, 0, 1580, 1581, 3, 236, 118, 0, 1581, 1582, 5, 517, 0, 0, 1582, 1587, 3, 282, 141, 0, 1583, 1584, 5, 521, 0, 0, 1584, 1586, 3, 282, 141, 0, 1585, 1583, 1, 0, 0, 0, 1586, 1589, 1, 0, 0, 0, 1587, 1585, 1, 0, 0, 0, 1587, 1588, 1, 0, 0, 0, 1588, 1590, 1, 0, 0, 0, 1589, 1587, 1, 0, 0, 0, 1590, 1591, 5, 518, 0, 0, 1591, 1606, 1, 0, 0, 0, 1592, 1593, 3, 234, 117, 0, 1593, 1594, 5, 517, 0, 0, 1594, 1599, 3, 232, 116, 0, 1595, 1596, 5, 521, 0, 0, 1596, 1598, 3, 232, 116, 0, 1597, 1595, 1, 0, 0, 0, 1598, 1601, 1, 0, 0, 0, 1599, 1597, 1, 0, 0, 0, 1599, 1600, 1, 0, 0, 0, 1600, 1602, 1, 0, 0, 0, 1601, 1599, 1, 0, 0, 0, 1602, 1603, 5, 518, 0, 0, 1603, 1606, 1, 0, 0, 0, 1604, 1606, 3, 282, 141, 0, 1605, 1565, 1, 0, 0, 0, 1605, 1566, 1, 0, 0, 0, 1605, 1567, 1, 0, 0, 0, 1605, 1569, 1, 0, 0, 0, 1605, 1580, 1, 0, 0, 0, 1605, 1592, 1, 0, 0, 0, 1605, 1604, 1, 0, 0, 0, 1606, 233, 1, 0, 0, 0, 1607, 1608, 5, 160, 0, 0, 1608, 1609, 5, 494, 0, 0, 1609, 235, 1, 0, 0, 0, 1610, 1611, 7, 23, 0, 0, 1611, 237, 1, 0, 0, 0, 1612, 1613, 3, 240, 120, 0, 1613, 1614, 5, 517, 0, 0, 1614, 1615, 3, 242, 121, 0, 1615, 1616, 5, 521, 0, 0, 1616, 1617, 3, 312, 156, 0, 1617, 1618, 5, 518, 0, 0, 1618, 239, 1, 0, 0, 0, 1619, 1620, 7, 24, 0, 0, 1620, 241, 1, 0, 0, 0, 1621, 1622, 3, 358, 179, 0, 1622, 243, 1, 0, 0, 0, 1623, 1624, 5, 163, 0, 0, 1624, 1625, 3, 284, 142, 0, 1625, 245, 1, 0, 0, 0, 1626, 1627, 5, 433, 0, 0, 1627, 1632, 3, 248, 124, 0, 1628, 1629, 5, 521, 0, 0, 1629, 1631, 3, 248, 124, 0, 1630, 1628, 1, 0, 0, 0, 1631, 1634, 1, 0, 0, 0, 1632, 1630, 1, 0, 0, 0, 1632, 1633, 1, 0, 0, 0, 1633, 247, 1, 0, 0, 0, 1634, 1632, 1, 0, 0, 0, 1635, 1636, 3, 326, 163, 0, 1636, 1637, 5, 17, 0, 0, 1637, 1638, 3, 250, 125, 0, 1638, 249, 1, 0, 0, 0, 1639, 1641, 3, 326, 163, 0, 1640, 1639, 1, 0, 0, 0, 1640, 1641, 1, 0, 0, 0, 1641, 1642, 1, 0, 0, 0, 1642, 1644, 5, 517, 0, 0, 1643, 1645, 3, 260, 130, 0, 1644, 1643, 1, 0, 0, 0, 1644, 1645, 1, 0, 0, 0, 1645, 1647, 1, 0, 0, 0, 1646, 1648, 3, 254, 127, 0, 1647, 1646, 1, 0, 0, 0, 1647, 1648, 1, 0, 0, 0, 1648, 1650, 1, 0, 0, 0, 1649, 1651, 3, 276, 138, 0, 1650, 1649, 1, 0, 0, 0, 1650, 1651, 1, 0, 0, 0, 1651, 1652, 1, 0, 0, 0, 1652, 1653, 5, 518, 0, 0, 1653, 251, 1, 0, 0, 0, 1654, 1655, 5, 214, 0, 0, 1655, 1657, 5, 517, 0, 0, 1656, 1658, 3, 260, 130, 0, 1657, 1656, 1, 0, 0, 0, 1657, 1658, 1, 0, 0, 0, 1658, 1660, 1, 0, 0, 0, 1659, 1661, 3, 254, 127, 0, 1660, 1659, 1, 0, 0, 0, 1660, 1661, 1, 0, 0, 0, 1661, 1663, 1, 0, 0, 0, 1662, 1664, 3, 264, 132, 0, 1663, 1662, 1, 0, 0, 0, 1663, 1664, 1, 0, 0, 0, 1664, 1666, 1, 0, 0, 0, 1665, 1667, 3, 270, 135, 0, 1666, 1665, 1, 0, 0, 0, 1666, 1667, 1, 0, 0, 0, 1667, 1669, 1, 0, 0, 0, 1668, 1670, 3, 272, 136, 0, 1669, 1668, 1, 0, 0, 0, 1669, 1670, 1, 0, 0, 0, 1670, 1672, 1, 0, 0, 0, 1671, 1673, 3, 266, 133, 0, 1672, 1671, 1, 0, 0, 0, 1672, 1673, 1, 0, 0, 0, 1673, 1674, 1, 0, 0, 0, 1674, 1675, 3, 274, 137, 0, 1675, 1680, 5, 518, 0, 0, 1676, 1678, 5, 17, 0, 0, 1677, 1676, 1, 0, 0, 0, 1677, 1678, 1, 0, 0, 0, 1678, 1679, 1, 0, 0, 0, 1679, 1681, 3, 334, 167, 0, 1680, 1677, 1, 0, 0, 0, 1680, 1681, 1, 0, 0, 0, 1681, 253, 1, 0, 0, 0, 1682, 1683, 5, 259, 0, 0, 1683, 1684, 5, 34, 0, 0, 1684, 1689, 3, 256, 128, 0, 1685, 1686, 5, 521, 0, 0, 1686, 1688, 3, 256, 128, 0, 1687, 1685, 1, 0, 0, 0, 1688, 1691, 1, 0, 0, 0, 1689, 1687, 1, 0, 0, 0, 1689, 1690, 1, 0, 0, 0, 1690, 255, 1, 0, 0, 0, 1691, 1689, 1, 0, 0, 0, 1692, 1694, 3, 54, 27, 0, 1693, 1695, 7, 25, 0, 0, 1694, 1693, 1, 0, 0, 0, 1694, 1695, 1, 0, 0, 0, 1695, 1698, 1, 0, 0, 0, 1696, 1697, 5, 477, 0, 0, 1697, 1699, 7, 26, 0, 0, 1698, 1696, 1, 0, 0, 0, 1698, 1699, 1, 0, 0, 0, 1699, 257, 1, 0, 0, 0, 1700, 1703, 5, 205, 0, 0, 1701, 1704, 5, 5, 0, 0, 1702, 1704, 3, 282, 141, 0, 1703, 1701, 1, 0, 0, 0, 1703, 1702, 1, 0, 0, 0, 1704, 259, 1, 0, 0, 0, 1705, 1706, 5, 269, 0, 0, 1706, 1709, 5, 34, 0, 0, 1707, 1710, 3, 54, 27, 0, 1708, 1710, 3, 294, 147, 0, 1709, 1707, 1, 0, 0, 0, 1709, 1708, 1, 0, 0, 0, 1710, 1718, 1, 0, 0, 0, 1711, 1714, 5, 521, 0, 0, 1712, 1715, 3, 54, 27, 0, 1713, 1715, 3, 294, 147, 0, 1714, 1712, 1, 0, 0, 0, 1714, 1713, 1, 0, 0, 0, 1715, 1717, 1, 0, 0, 0, 1716, 1711, 1, 0, 0, 0, 1717, 1720, 1, 0, 0, 0, 1718, 1716, 1, 0, 0, 0, 1718, 1719, 1, 0, 0, 0, 1719, 261, 1, 0, 0, 0, 1720, 1718, 1, 0, 0, 0, 1721, 1738, 5, 528, 0, 0, 1722, 1738, 5, 531, 0, 0, 1723, 1738, 5, 536, 0, 0, 1724, 1725, 5, 519, 0, 0, 1725, 1726, 5, 539, 0, 0, 1726, 1727, 5, 521, 0, 0, 1727, 1728, 5, 539, 0, 0, 1728, 1738, 5, 520, 0, 0, 1729, 1730, 5, 519, 0, 0, 1730, 1731, 5, 539, 0, 0, 1731, 1732, 5, 521, 0, 0, 1732, 1738, 5, 520, 0, 0, 1733, 1734, 5, 519, 0, 0, 1734, 1735, 5, 521, 0, 0, 1735, 1736, 5, 539, 0, 0, 1736, 1738, 5, 520, 0, 0, 1737, 1721, 1, 0, 0, 0, 1737, 1722, 1, 0, 0, 0, 1737, 1723, 1, 0, 0, 0, 1737, 1724, 1, 0, 0, 0, 1737, 1729, 1, 0, 0, 0, 1737, 1733, 1, 0, 0, 0, 1738, 263, 1, 0, 0, 0, 1739, 1740, 5, 216, 0, 0, 1740, 1745, 3, 190, 95, 0, 1741, 1742, 5, 521, 0, 0, 1742, 1744, 3, 190, 95, 0, 1743, 1741, 1, 0, 0, 0, 1744, 1747, 1, 0, 0, 0, 1745, 1743, 1, 0, 0, 0, 1745, 1746, 1, 0, 0, 0, 1746, 265, 1, 0, 0, 0, 1747, 1745, 1, 0, 0, 0, 1748, 1749, 5, 272, 0, 0, 1749, 1751, 5, 517, 0, 0, 1750, 1752, 3, 268, 134, 0, 1751, 1750, 1, 0, 0, 0, 1752, 1753, 1, 0, 0, 0, 1753, 1751, 1, 0, 0, 0, 1753, 1754, 1, 0, 0, 0, 1754, 1755, 1, 0, 0, 0, 1755, 1757, 5, 518, 0, 0, 1756, 1758, 3, 280, 140, 0, 1757, 1756, 1, 0, 0, 0, 1757, 1758, 1, 0, 0, 0, 1758, 267, 1, 0, 0, 0, 1759, 1761, 3, 336, 168, 0, 1760, 1762, 3, 262, 131, 0, 1761, 1760, 1, 0, 0, 0, 1761, 1762, 1, 0, 0, 0, 1762, 269, 1, 0, 0, 0, 1763, 1764, 5, 5, 0, 0, 1764, 1765, 5, 323, 0, 0, 1765, 1766, 5, 273, 0, 0, 1766, 1772, 5, 211, 0, 0, 1767, 1768, 5, 255, 0, 0, 1768, 1769, 5, 322, 0, 0, 1769, 1770, 5, 273, 0, 0, 1770, 1772, 5, 211, 0, 0, 1771, 1763, 1, 0, 0, 0, 1771, 1767, 1, 0, 0, 0, 1772, 271, 1, 0, 0, 0, 1773, 1774, 5, 439, 0, 0, 1774, 1775, 5, 211, 0, 0, 1775, 1776, 5, 344, 0, 0, 1776, 1777, 5, 479, 0, 0, 1777, 1778, 5, 468, 0, 0, 1778, 1798, 5, 322, 0, 0, 1779, 1780, 5, 439, 0, 0, 1780, 1781, 5, 211, 0, 0, 1781, 1782, 5, 344, 0, 0, 1782, 1783, 5, 389, 0, 0, 1783, 1784, 5, 238, 0, 0, 1784, 1798, 5, 322, 0, 0, 1785, 1786, 5, 439, 0, 0, 1786, 1787, 5, 211, 0, 0, 1787, 1788, 5, 344, 0, 0, 1788, 1789, 5, 389, 0, 0, 1789, 1790, 5, 468, 0, 0, 1790, 1798, 3, 336, 168, 0, 1791, 1792, 5, 439, 0, 0, 1792, 1793, 5, 211, 0, 0, 1793, 1794, 5, 344, 0, 0, 1794, 1795, 5, 389, 0, 0, 1795, 1796, 5, 458, 0, 0, 1796, 1798, 3, 336, 168, 0, 1797, 1773, 1, 0, 0, 0, 1797, 1779, 1, 0, 0, 0, 1797, 1785, 1, 0, 0, 0, 1797, 1791, 1, 0, 0, 0, 1798, 273, 1, 0, 0, 0, 1799, 1800, 5, 105, 0, 0, 1800, 1805, 3, 190, 95, 0, 1801, 1802, 5, 521, 0, 0, 1802, 1804, 3, 190, 95, 0, 1803, 1801, 1, 0, 0, 0, 1804, 1807, 1, 0, 0, 0, 1805, 1803, 1, 0, 0, 0, 1805, 1806, 1, 0, 0, 0, 1806, 275, 1, 0, 0, 0, 1807, 1805, 1, 0, 0, 0, 1808, 1809, 5, 293, 0, 0, 1809, 1810, 5, 27, 0, 0, 1810, 1811, 3, 312, 156, 0, 1811, 1812, 3, 278, 139, 0, 1812, 1818, 1, 0, 0, 0, 1813, 1814, 5, 323, 0, 0, 1814, 1815, 5, 27, 0, 0, 1815, 1816, 5, 539, 0, 0, 1816, 1818, 3, 278, 139, 0, 1817, 1808, 1, 0, 0, 0, 1817, 1813, 1, 0, 0, 0, 1818, 277, 1, 0, 0, 0, 1819, 1820, 5, 481, 0, 0, 1820, 1821, 5, 10, 0, 0, 1821, 1822, 5, 76, 0, 0, 1822, 1823, 5, 322, 0, 0, 1823, 279, 1, 0, 0, 0, 1824, 1825, 5, 435, 0, 0, 1825, 1826, 3, 312, 156, 0, 1826, 281, 1, 0, 0, 0, 1827, 1828, 3, 284, 142, 0, 1828, 283, 1, 0, 0, 0, 1829, 1830, 6, 142, -1, 0, 1830, 1831, 5, 242, 0, 0, 1831, 1842, 3, 284, 142, 6, 1832, 1833, 5, 133, 0, 0, 1833, 1834, 5, 517, 0, 0, 1834, 1835, 3, 164, 82, 0, 1835, 1836, 5, 518, 0, 0, 1836, 1842, 1, 0, 0, 0, 1837, 1839, 3, 290, 145, 0, 1838, 1840, 3, 286, 143, 0, 1839, 1838, 1, 0, 0, 0, 1839, 1840, 1, 0, 0, 0, 1840, 1842, 1, 0, 0, 0, 1841, 1829, 1, 0, 0, 0, 1841, 1832, 1, 0, 0, 0, 1841, 1837, 1, 0, 0, 0, 1842, 1857, 1, 0, 0, 0, 1843, 1844, 10, 3, 0, 0, 1844, 1845, 5, 10, 0, 0, 1845, 1856, 3, 284, 142, 4, 1846, 1847, 10, 2, 0, 0, 1847, 1848, 5, 258, 0, 0, 1848, 1856, 3, 284, 142, 3, 1849, 1850, 10, 1, 0, 0, 1850, 1852, 5, 184, 0, 0, 1851, 1853, 5, 242, 0, 0, 1852, 1851, 1, 0, 0, 0, 1852, 1853, 1, 0, 0, 0, 1853, 1854, 1, 0, 0, 0, 1854, 1856, 7, 27, 0, 0, 1855, 1843, 1, 0, 0, 0, 1855, 1846, 1, 0, 0, 0, 1855, 1849, 1, 0, 0, 0, 1856, 1859, 1, 0, 0, 0, 1857, 1855, 1, 0, 0, 0, 1857, 1858, 1, 0, 0, 0, 1858, 285, 1, 0, 0, 0, 1859, 1857, 1, 0, 0, 0, 1860, 1862, 5, 242, 0, 0, 1861, 1860, 1, 0, 0, 0, 1861, 1862, 1, 0, 0, 0, 1862, 1863, 1, 0, 0, 0, 1863, 1865, 5, 27, 0, 0, 1864, 1866, 7, 28, 0, 0, 1865, 1864, 1, 0, 0, 0, 1865, 1866, 1, 0, 0, 0, 1866, 1867, 1, 0, 0, 0, 1867, 1868, 3, 290, 145, 0, 1868, 1869, 5, 10, 0, 0, 1869, 1870, 3, 290, 145, 0, 1870, 1935, 1, 0, 0, 0, 1871, 1873, 5, 242, 0, 0, 1872, 1871, 1, 0, 0, 0, 1872, 1873, 1, 0, 0, 0, 1873, 1874, 1, 0, 0, 0, 1874, 1875, 5, 170, 0, 0, 1875, 1876, 5, 517, 0, 0, 1876, 1881, 3, 282, 141, 0, 1877, 1878, 5, 521, 0, 0, 1878, 1880, 3, 282, 141, 0, 1879, 1877, 1, 0, 0, 0, 1880, 1883, 1, 0, 0, 0, 1881, 1879, 1, 0, 0, 0, 1881, 1882, 1, 0, 0, 0, 1882, 1884, 1, 0, 0, 0, 1883, 1881, 1, 0, 0, 0, 1884, 1885, 5, 518, 0, 0, 1885, 1935, 1, 0, 0, 0, 1886, 1888, 5, 242, 0, 0, 1887, 1886, 1, 0, 0, 0, 1887, 1888, 1, 0, 0, 0, 1888, 1889, 1, 0, 0, 0, 1889, 1890, 5, 170, 0, 0, 1890, 1891, 5, 517, 0, 0, 1891, 1892, 3, 164, 82, 0, 1892, 1893, 5, 518, 0, 0, 1893, 1935, 1, 0, 0, 0, 1894, 1895, 5, 133, 0, 0, 1895, 1896, 5, 517, 0, 0, 1896, 1897, 3, 164, 82, 0, 1897, 1898, 5, 518, 0, 0, 1898, 1935, 1, 0, 0, 0, 1899, 1901, 5, 242, 0, 0, 1900, 1899, 1, 0, 0, 0, 1900, 1901, 1, 0, 0, 0, 1901, 1902, 1, 0, 0, 0, 1902, 1903, 5, 319, 0, 0, 1903, 1935, 3, 290, 145, 0, 1904, 1935, 3, 288, 144, 0, 1905, 1907, 5, 184, 0, 0, 1906, 1908, 5, 242, 0, 0, 1907, 1906, 1, 0, 0, 0, 1907, 1908, 1, 0, 0, 0, 1908, 1909, 1, 0, 0, 0, 1909, 1935, 7, 27, 0, 0, 1910, 1912, 5, 184, 0, 0, 1911, 1913, 5, 242, 0, 0, 1912, 1911, 1, 0, 0, 0, 1912, 1913, 1, 0, 0, 0, 1913, 1914, 1, 0, 0, 0, 1914, 1915, 5, 113, 0, 0, 1915, 1916, 5, 151, 0, 0, 1916, 1935, 3, 290, 145, 0, 1917, 1919, 5, 242, 0, 0, 1918, 1917, 1, 0, 0, 0, 1918, 1919, 1, 0, 0, 0, 1919, 1920, 1, 0, 0, 0, 1920, 1921, 5, 343, 0, 0, 1921, 1922, 5, 389, 0, 0, 1922, 1925, 3, 290, 145, 0, 1923, 1924, 5, 127, 0, 0, 1924, 1926, 3, 390, 195, 0, 1925, 1923, 1, 0, 0, 0, 1925, 1926, 1, 0, 0, 0, 1926, 1935, 1, 0, 0, 0, 1927, 1928, 5, 184, 0, 0, 1928, 1932, 5, 186, 0, 0, 1929, 1933, 5, 414, 0, 0, 1930, 1933, 5, 13, 0, 0, 1931, 1933, 3, 334, 167, 0, 1932, 1929, 1, 0, 0, 0, 1932, 1930, 1, 0, 0, 0, 1932, 1931, 1, 0, 0, 0, 1932, 1933, 1, 0, 0, 0, 1933, 1935, 1, 0, 0, 0, 1934, 1861, 1, 0, 0, 0, 1934, 1872, 1, 0, 0, 0, 1934, 1887, 1, 0, 0, 0, 1934, 1894, 1, 0, 0, 0, 1934, 1900, 1, 0, 0, 0, 1934, 1904, 1, 0, 0, 0, 1934, 1905, 1, 0, 0, 0, 1934, 1910, 1, 0, 0, 0, 1934, 1918, 1, 0, 0, 0, 1934, 1927, 1, 0, 0, 0, 1935, 287, 1, 0, 0, 0, 1936, 1938, 5, 242, 0, 0, 1937, 1936, 1, 0, 0, 0, 1937, 1938, 1, 0, 0, 0, 1938, 1939, 1, 0, 0, 0, 1939, 1940, 5, 203, 0, 0, 1940, 1954, 7, 29, 0, 0, 1941, 1942, 5, 517, 0, 0, 1942, 1955, 5, 518, 0, 0, 1943, 1944, 5, 517, 0, 0, 1944, 1949, 3, 282, 141, 0, 1945, 1946, 5, 521, 0, 0, 1946, 1948, 3, 282, 141, 0, 1947, 1945, 1, 0, 0, 0, 1948, 1951, 1, 0, 0, 0, 1949, 1947, 1, 0, 0, 0, 1949, 1950, 1, 0, 0, 0, 1950, 1952, 1, 0, 0, 0, 1951, 1949, 1, 0, 0, 0, 1952, 1953, 5, 518, 0, 0, 1953, 1955, 1, 0, 0, 0, 1954, 1941, 1, 0, 0, 0, 1954, 1943, 1, 0, 0, 0, 1955, 1966, 1, 0, 0, 0, 1956, 1958, 5, 242, 0, 0, 1957, 1956, 1, 0, 0, 0, 1957, 1958, 1, 0, 0, 0, 1958, 1959, 1, 0, 0, 0, 1959, 1960, 5, 203, 0, 0, 1960, 1963, 3, 290, 145, 0, 1961, 1962, 5, 127, 0, 0, 1962, 1964, 3, 390, 195, 0, 1963, 1961, 1, 0, 0, 0, 1963, 1964, 1, 0, 0, 0, 1964, 1966, 1, 0, 0, 0, 1965, 1937, 1, 0, 0, 0, 1965, 1957, 1, 0, 0, 0, 1966, 289, 1, 0, 0, 0, 1967, 1968, 6, 145, -1, 0, 1968, 1972, 3, 294, 147, 0, 1969, 1970, 7, 30, 0, 0, 1970, 1972, 3, 290, 145, 7, 1971, 1967, 1, 0, 0, 0, 1971, 1969, 1, 0, 0, 0, 1972, 1994, 1, 0, 0, 0, 1973, 1974, 10, 6, 0, 0, 1974, 1975, 7, 31, 0, 0, 1975, 1993, 3, 290, 145, 7, 1976, 1977, 10, 5, 0, 0, 1977, 1978, 7, 32, 0, 0, 1978, 1993, 3, 290, 145, 6, 1979, 1980, 10, 4, 0, 0, 1980, 1981, 5, 512, 0, 0, 1981, 1993, 3, 290, 145, 5, 1982, 1983, 10, 3, 0, 0, 1983, 1984, 5, 513, 0, 0, 1984, 1993, 3, 290, 145, 4, 1985, 1986, 10, 2, 0, 0, 1986, 1987, 5, 511, 0, 0, 1987, 1993, 3, 290, 145, 3, 1988, 1989, 10, 1, 0, 0, 1989, 1990, 3, 378, 189, 0, 1990, 1991, 3, 290, 145, 2, 1991, 1993, 1, 0, 0, 0, 1992, 1973, 1, 0, 0, 0, 1992, 1976, 1, 0, 0, 0, 1992, 1979, 1, 0, 0, 0, 1992, 1982, 1, 0, 0, 0, 1992, 1985, 1, 0, 0, 0, 1992, 1988, 1, 0, 0, 0, 1993, 1996, 1, 0, 0, 0, 1994, 1992, 1, 0, 0, 0, 1994, 1995, 1, 0, 0, 0, 1995, 291, 1, 0, 0, 0, 1996, 1994, 1, 0, 0, 0, 1997, 2017, 3, 404, 202, 0, 1998, 2017, 3, 300, 150, 0, 1999, 2000, 3, 302, 151, 0, 2000, 2012, 5, 517, 0, 0, 2001, 2003, 3, 396, 198, 0, 2002, 2001, 1, 0, 0, 0, 2002, 2003, 1, 0, 0, 0, 2003, 2004, 1, 0, 0, 0, 2004, 2009, 3, 304, 152, 0, 2005, 2006, 5, 521, 0, 0, 2006, 2008, 3, 304, 152, 0, 2007, 2005, 1, 0, 0, 0, 2008, 2011, 1, 0, 0, 0, 2009, 2007, 1, 0, 0, 0, 2009, 2010, 1, 0, 0, 0, 2010, 2013, 1, 0, 0, 0, 2011, 2009, 1, 0, 0, 0, 2012, 2002, 1, 0, 0, 0, 2012, 2013, 1, 0, 0, 0, 2013, 2014, 1, 0, 0, 0, 2014, 2015, 5, 518, 0, 0, 2015, 2017, 1, 0, 0, 0, 2016, 1997, 1, 0, 0, 0, 2016, 1998, 1, 0, 0, 0, 2016, 1999, 1, 0, 0, 0, 2017, 293, 1, 0, 0, 0, 2018, 2019, 6, 147, -1, 0, 2019, 2021, 5, 40, 0, 0, 2020, 2022, 3, 340, 170, 0, 2021, 2020, 1, 0, 0, 0, 2022, 2023, 1, 0, 0, 0, 2023, 2021, 1, 0, 0, 0, 2023, 2024, 1, 0, 0, 0, 2024, 2027, 1, 0, 0, 0, 2025, 2026, 5, 120, 0, 0, 2026, 2028, 3, 282, 141, 0, 2027, 2025, 1, 0, 0, 0, 2027, 2028, 1, 0, 0, 0, 2028, 2029, 1, 0, 0, 0, 2029, 2030, 5, 122, 0, 0, 2030, 2094, 1, 0, 0, 0, 2031, 2032, 5, 40, 0, 0, 2032, 2034, 3, 282, 141, 0, 2033, 2035, 3, 340, 170, 0, 2034, 2033, 1, 0, 0, 0, 2035, 2036, 1, 0, 0, 0, 2036, 2034, 1, 0, 0, 0, 2036, 2037, 1, 0, 0, 0, 2037, 2040, 1, 0, 0, 0, 2038, 2039, 5, 120, 0, 0, 2039, 2041, 3, 282, 141, 0, 2040, 2038, 1, 0, 0, 0, 2040, 2041, 1, 0, 0, 0, 2041, 2042, 1, 0, 0, 0, 2042, 2043, 5, 122, 0, 0, 2043, 2094, 1, 0, 0, 0, 2044, 2045, 5, 41, 0, 0, 2045, 2046, 5, 517, 0, 0, 2046, 2047, 3, 282, 141, 0, 2047, 2048, 5, 17, 0, 0, 2048, 2049, 3, 62, 31, 0, 2049, 2050, 5, 518, 0, 0, 2050, 2094, 1, 0, 0, 0, 2051, 2052, 5, 458, 0, 0, 2052, 2053, 5, 517, 0, 0, 2053, 2056, 3, 282, 141, 0, 2054, 2055, 5, 462, 0, 0, 2055, 2057, 5, 477, 0, 0, 2056, 2054, 1, 0, 0, 0, 2056, 2057, 1, 0, 0, 0, 2057, 2058, 1, 0, 0, 0, 2058, 2059, 5, 518, 0, 0, 2059, 2094, 1, 0, 0, 0, 2060, 2061, 5, 468, 0, 0, 2061, 2062, 5, 517, 0, 0, 2062, 2065, 3, 282, 141, 0, 2063, 2064, 5, 462, 0, 0, 2064, 2066, 5, 477, 0, 0, 2065, 2063, 1, 0, 0, 0, 2065, 2066, 1, 0, 0, 0, 2066, 2067, 1, 0, 0, 0, 2067, 2068, 5, 518, 0, 0, 2068, 2094, 1, 0, 0, 0, 2069, 2070, 5, 282, 0, 0, 2070, 2071, 5, 517, 0, 0, 2071, 2072, 3, 290, 145, 0, 2072, 2073, 5, 170, 0, 0, 2073, 2074, 3, 290, 145, 0, 2074, 2075, 5, 518, 0, 0, 2075, 2094, 1, 0, 0, 0, 2076, 2094, 3, 386, 193, 0, 2077, 2094, 5, 528, 0, 0, 2078, 2079, 3, 358, 179, 0, 2079, 2080, 5, 514, 0, 0, 2080, 2081, 5, 528, 0, 0, 2081, 2094, 1, 0, 0, 0, 2082, 2083, 5, 517, 0, 0, 2083, 2084, 3, 164, 82, 0, 2084, 2085, 5, 518, 0, 0, 2085, 2094, 1, 0, 0, 0, 2086, 2094, 3, 292, 146, 0, 2087, 2094, 3, 56, 28, 0, 2088, 2094, 3, 306, 153, 0, 2089, 2090, 5, 517, 0, 0, 2090, 2091, 3, 282, 141, 0, 2091, 2092, 5, 518, 0, 0, 2092, 2094, 1, 0, 0, 0, 2093, 2018, 1, 0, 0, 0, 2093, 2031, 1, 0, 0, 0, 2093, 2044, 1, 0, 0, 0, 2093, 2051, 1, 0, 0, 0, 2093, 2060, 1, 0, 0, 0, 2093, 2069, 1, 0, 0, 0, 2093, 2076, 1, 0, 0, 0, 2093, 2077, 1, 0, 0, 0, 2093, 2078, 1, 0, 0, 0, 2093, 2082, 1, 0, 0, 0, 2093, 2086, 1, 0, 0, 0, 2093, 2087, 1, 0, 0, 0, 2093, 2088, 1, 0, 0, 0, 2093, 2089, 1, 0, 0, 0, 2094, 2102, 1, 0, 0, 0, 2095, 2096, 10, 4, 0, 0, 2096, 2097, 5, 515, 0, 0, 2097, 2098, 3, 290, 145, 0, 2098, 2099, 5, 516, 0, 0, 2099, 2101, 1, 0, 0, 0, 2100, 2095, 1, 0, 0, 0, 2101, 2104, 1, 0, 0, 0, 2102, 2100, 1, 0, 0, 0, 2102, 2103, 1, 0, 0, 0, 2103, 295, 1, 0, 0, 0, 2104, 2102, 1, 0, 0, 0, 2105, 2106, 3, 358, 179, 0, 2106, 297, 1, 0, 0, 0, 2107, 2112, 3, 408, 204, 0, 2108, 2112, 3, 404, 202, 0, 2109, 2112, 3, 406, 203, 0, 2110, 2112, 3, 358, 179, 0, 2111, 2107, 1, 0, 0, 0, 2111, 2108, 1, 0, 0, 0, 2111, 2109, 1, 0, 0, 0, 2111, 2110, 1, 0, 0, 0, 2112, 299, 1, 0, 0, 0, 2113, 2114, 3, 406, 203, 0, 2114, 2115, 5, 538, 0, 0, 2115, 2118, 1, 0, 0, 0, 2116, 2118, 3, 312, 156, 0, 2117, 2113, 1, 0, 0, 0, 2117, 2116, 1, 0, 0, 0, 2118, 301, 1, 0, 0, 0, 2119, 2122, 3, 408, 204, 0, 2120, 2122, 3, 358, 179, 0, 2121, 2119, 1, 0, 0, 0, 2121, 2120, 1, 0, 0, 0, 2122, 303, 1, 0, 0, 0, 2123, 2128, 3, 402, 201, 0, 2124, 2128, 3, 400, 200, 0, 2125, 2128, 3, 398, 199, 0, 2126, 2128, 3, 282, 141, 0, 2127, 2123, 1, 0, 0, 0, 2127, 2124, 1, 0, 0, 0, 2127, 2125, 1, 0, 0, 0, 2127, 2126, 1, 0, 0, 0, 2128, 305, 1, 0, 0, 0, 2129, 2130, 3, 358, 179, 0, 2130, 307, 1, 0, 0, 0, 2131, 2132, 3, 334, 167, 0, 2132, 309, 1, 0, 0, 0, 2133, 2136, 3, 334, 167, 0, 2134, 2136, 3, 306, 153, 0, 2135, 2133, 1, 0, 0, 0, 2135, 2134, 1, 0, 0, 0, 2136, 311, 1, 0, 0, 0, 2137, 2140, 5, 182, 0, 0, 2138, 2141, 3, 314, 157, 0, 2139, 2141, 3, 318, 159, 0, 2140, 2138, 1, 0, 0, 0, 2140, 2139, 1, 0, 0, 0, 2140, 2141, 1, 0, 0, 0, 2141, 313, 1, 0, 0, 0, 2142, 2144, 3, 316, 158, 0, 2143, 2145, 3, 320, 160, 0, 2144, 2143, 1, 0, 0, 0, 2144, 2145, 1, 0, 0, 0, 2145, 315, 1, 0, 0, 0, 2146, 2147, 3, 322, 161, 0, 2147, 2148, 3, 400, 200, 0, 2148, 2150, 1, 0, 0, 0, 2149, 2146, 1, 0, 0, 0, 2150, 2151, 1, 0, 0, 0, 2151, 2149, 1, 0, 0, 0, 2151, 2152, 1, 0, 0, 0, 2152, 317, 1, 0, 0, 0, 2153, 2156, 3, 320, 160, 0, 2154, 2157, 3, 316, 158, 0, 2155, 2157, 3, 320, 160, 0, 2156, 2154, 1, 0, 0, 0, 2156, 2155, 1, 0, 0, 0, 2156, 2157, 1, 0, 0, 0, 2157, 319, 1, 0, 0, 0, 2158, 2159, 3, 322, 161, 0, 2159, 2160, 3, 400, 200, 0, 2160, 2161, 5, 389, 0, 0, 2161, 2162, 3, 400, 200, 0, 2162, 321, 1, 0, 0, 0, 2163, 2165, 7, 33, 0, 0, 2164, 2163, 1, 0, 0, 0, 2164, 2165, 1, 0, 0, 0, 2165, 2166, 1, 0, 0, 0, 2166, 2169, 7, 34, 0, 0, 2167, 2169, 5, 538, 0, 0, 2168, 2164, 1, 0, 0, 0, 2168, 2167, 1, 0, 0, 0, 2169, 323, 1, 0, 0, 0, 2170, 2172, 5, 17, 0, 0, 2171, 2170, 1, 0, 0, 0, 2171, 2172, 1, 0, 0, 0, 2172, 2173, 1, 0, 0, 0, 2173, 2175, 3, 334, 167, 0, 2174, 2176, 3, 330, 165, 0, 2175, 2174, 1, 0, 0, 0, 2175, 2176, 1, 0, 0, 0, 2176, 325, 1, 0, 0, 0, 2177, 2178, 3, 334, 167, 0, 2178, 2179, 3, 328, 164, 0, 2179, 327, 1, 0, 0, 0, 2180, 2181, 5, 222, 0, 0, 2181, 2183, 3, 334, 167, 0, 2182, 2180, 1, 0, 0, 0, 2183, 2184, 1, 0, 0, 0, 2184, 2182, 1, 0, 0, 0, 2184, 2185, 1, 0, 0, 0, 2185, 2188, 1, 0, 0, 0, 2186, 2188, 1, 0, 0, 0, 2187, 2182, 1, 0, 0, 0, 2187, 2186, 1, 0, 0, 0, 2188, 329, 1, 0, 0, 0, 2189, 2190, 5, 517, 0, 0, 2190, 2191, 3, 332, 166, 0, 2191, 2192, 5, 518, 0, 0, 2192, 331, 1, 0, 0, 0, 2193, 2198, 3, 334, 167, 0, 2194, 2195, 5, 521, 0, 0, 2195, 2197, 3, 334, 167, 0, 2196, 2194, 1, 0, 0, 0, 2197, 2200, 1, 0, 0, 0, 2198, 2196, 1, 0, 0, 0, 2198, 2199, 1, 0, 0, 0, 2199, 333, 1, 0, 0, 0, 2200, 2198, 1, 0, 0, 0, 2201, 2205, 3, 336, 168, 0, 2202, 2205, 3, 338, 169, 0, 2203, 2205, 3, 410, 205, 0, 2204, 2201, 1, 0, 0, 0, 2204, 2202, 1, 0, 0, 0, 2204, 2203, 1, 0, 0, 0, 2205, 335, 1, 0, 0, 0, 2206, 2207, 7, 35, 0, 0, 2207, 337, 1, 0, 0, 0, 2208, 2209, 5, 538, 0, 0, 2209, 339, 1, 0, 0, 0, 2210, 2211, 5, 429, 0, 0, 2211, 2212, 3, 282, 141, 0, 2212, 2213, 5, 377, 0, 0, 2213, 2214, 3, 282, 141, 0, 2214, 341, 1, 0, 0, 0, 2215, 2216, 3, 334, 167, 0, 2216, 343, 1, 0, 0, 0, 2217, 2218, 3, 334, 167, 0, 2218, 345, 1, 0, 0, 0, 2219, 2222, 3, 334, 167, 0, 2220, 2221, 5, 514, 0, 0, 2221, 2223, 3, 334, 167, 0, 2222, 2220, 1, 0, 0, 0, 2222, 2223, 1, 0, 0, 0, 2223, 347, 1, 0, 0, 0, 2224, 2227, 3, 334, 167, 0, 2225, 2226, 5, 514, 0, 0, 2226, 2228, 3, 334, 167, 0, 2227, 2225, 1, 0, 0, 0, 2227, 2228, 1, 0, 0, 0, 2228, 349, 1, 0, 0, 0, 2229, 2232, 3, 334, 167, 0, 2230, 2231, 5, 514, 0, 0, 2231, 2233, 3, 334, 167, 0, 2232, 2230, 1, 0, 0, 0, 2232, 2233, 1, 0, 0, 0, 2233, 2242, 1, 0, 0, 0, 2234, 2235, 3, 334, 167, 0, 2235, 2236, 5, 514, 0, 0, 2236, 2239, 3, 334, 167, 0, 2237, 2238, 5, 514, 0, 0, 2238, 2240, 3, 334, 167, 0, 2239, 2237, 1, 0, 0, 0, 2239, 2240, 1, 0, 0, 0, 2240, 2242, 1, 0, 0, 0, 2241, 2229, 1, 0, 0, 0, 2241, 2234, 1, 0, 0, 0, 2242, 351, 1, 0, 0, 0, 2243, 2246, 3, 334, 167, 0, 2244, 2245, 5, 514, 0, 0, 2245, 2247, 3, 334, 167, 0, 2246, 2244, 1, 0, 0, 0, 2246, 2247, 1, 0, 0, 0, 2247, 2256, 1, 0, 0, 0, 2248, 2249, 3, 334, 167, 0, 2249, 2250, 5, 514, 0, 0, 2250, 2253, 3, 334, 167, 0, 2251, 2252, 5, 514, 0, 0, 2252, 2254, 3, 334, 167, 0, 2253, 2251, 1, 0, 0, 0, 2253, 2254, 1, 0, 0, 0, 2254, 2256, 1, 0, 0, 0, 2255, 2243, 1, 0, 0, 0, 2255, 2248, 1, 0, 0, 0, 2256, 353, 1, 0, 0, 0, 2257, 2260, 3, 334, 167, 0, 2258, 2259, 5, 514, 0, 0, 2259, 2261, 3, 334, 167, 0, 2260, 2258, 1, 0, 0, 0, 2260, 2261, 1, 0, 0, 0, 2261, 2270, 1, 0, 0, 0, 2262, 2263, 3, 334, 167, 0, 2263, 2264, 5, 514, 0, 0, 2264, 2267, 3, 334, 167, 0, 2265, 2266, 5, 514, 0, 0, 2266, 2268, 3, 334, 167, 0, 2267, 2265, 1, 0, 0, 0, 2267, 2268, 1, 0, 0, 0, 2268, 2270, 1, 0, 0, 0, 2269, 2257, 1, 0, 0, 0, 2269, 2262, 1, 0, 0, 0, 2270, 355, 1, 0, 0, 0, 2271, 2274, 3, 334, 167, 0, 2272, 2273, 5, 514, 0, 0, 2273, 2275, 3, 334, 167, 0, 2274, 2272, 1, 0, 0, 0, 2274, 2275, 1, 0, 0, 0, 2275, 2284, 1, 0, 0, 0, 2276, 2277, 3, 334, 167, 0, 2277, 2278, 5, 514, 0, 0, 2278, 2281, 3, 334, 167, 0, 2279, 2280, 5, 514, 0, 0, 2280, 2282, 3, 334, 167, 0, 2281, 2279, 1, 0, 0, 0, 2281, 2282, 1, 0, 0, 0, 2282, 2284, 1, 0, 0, 0, 2283, 2271, 1, 0, 0, 0, 2283, 2276, 1, 0, 0, 0, 2284, 357, 1, 0, 0, 0, 2285, 2290, 3, 334, 167, 0, 2286, 2287, 5, 514, 0, 0, 2287, 2289, 3, 334, 167, 0, 2288, 2286, 1, 0, 0, 0, 2289, 2292, 1, 0, 0, 0, 2290, 2288, 1, 0, 0, 0, 2290, 2291, 1, 0, 0, 0, 2291, 359, 1, 0, 0, 0, 2292, 2290, 1, 0, 0, 0, 2293, 2298, 3, 334, 167, 0, 2294, 2295, 5, 514, 0, 0, 2295, 2297, 3, 334, 167, 0, 2296, 2294, 1, 0, 0, 0, 2297, 2300, 1, 0, 0, 0, 2298, 2296, 1, 0, 0, 0, 2298, 2299, 1, 0, 0, 0, 2299, 2307, 1, 0, 0, 0, 2300, 2298, 1, 0, 0, 0, 2301, 2302, 4, 180, 15, 0, 2302, 2303, 3, 334, 167, 0, 2303, 2304, 5, 514, 0, 0, 2304, 2305, 3, 52, 26, 0, 2305, 2307, 1, 0, 0, 0, 2306, 2293, 1, 0, 0, 0, 2306, 2301, 1, 0, 0, 0, 2307, 361, 1, 0, 0, 0, 2308, 2309, 5, 434, 0, 0, 2309, 2310, 3, 368, 184, 0, 2310, 363, 1, 0, 0, 0, 2311, 2312, 5, 167, 0, 0, 2312, 2313, 5, 242, 0, 0, 2313, 2314, 5, 133, 0, 0, 2314, 365, 1, 0, 0, 0, 2315, 2316, 5, 167, 0, 0, 2316, 2317, 5, 133, 0, 0, 2317, 367, 1, 0, 0, 0, 2318, 2319, 5, 517, 0, 0, 2319, 2324, 3, 370, 185, 0, 2320, 2321, 5, 521, 0, 0, 2321, 2323, 3, 370, 185, 0, 2322, 2320, 1, 0, 0, 0, 2323, 2326, 1, 0, 0, 0, 2324, 2322, 1, 0, 0, 0, 2324, 2325, 1, 0, 0, 0, 2325, 2327, 1, 0, 0, 0, 2326, 2324, 1, 0, 0, 0, 2327, 2328, 5, 518, 0, 0, 2328, 369, 1, 0, 0, 0, 2329, 2334, 3, 372, 186, 0, 2330, 2332, 5, 506, 0, 0, 2331, 2330, 1, 0, 0, 0, 2331, 2332, 1, 0, 0, 0, 2332, 2333, 1, 0, 0, 0, 2333, 2335, 3, 374, 187, 0, 2334, 2331, 1, 0, 0, 0, 2334, 2335, 1, 0, 0, 0, 2335, 371, 1, 0, 0, 0, 2336, 2340, 3, 334, 167, 0, 2337, 2340, 3, 306, 153, 0, 2338, 2340, 5, 538, 0, 0, 2339, 2336, 1, 0, 0, 0, 2339, 2337, 1, 0, 0, 0, 2339, 2338, 1, 0, 0, 0, 2340, 373, 1, 0, 0, 0, 2341, 2346, 5, 539, 0, 0, 2342, 2346, 5, 540, 0, 0, 2343, 2346, 3, 394, 197, 0, 2344, 2346, 5, 538, 0, 0, 2345, 2341, 1, 0, 0, 0, 2345, 2342, 1, 0, 0, 0, 2345, 2343, 1, 0, 0, 0, 2345, 2344, 1, 0, 0, 0, 2346, 375, 1, 0, 0, 0, 2347, 2354, 5, 10, 0, 0, 2348, 2349, 5, 512, 0, 0, 2349, 2354, 5, 512, 0, 0, 2350, 2354, 5, 258, 0, 0, 2351, 2352, 5, 511, 0, 0, 2352, 2354, 5, 511, 0, 0, 2353, 2347, 1, 0, 0, 0, 2353, 2348, 1, 0, 0, 0, 2353, 2350, 1, 0, 0, 0, 2353, 2351, 1, 0, 0, 0, 2354, 377, 1, 0, 0, 0, 2355, 2370, 5, 506, 0, 0, 2356, 2370, 5, 507, 0, 0, 2357, 2370, 5, 508, 0, 0, 2358, 2359, 5, 508, 0, 0, 2359, 2370, 5, 506, 0, 0, 2360, 2361, 5, 507, 0, 0, 2361, 2370, 5, 506, 0, 0, 2362, 2363, 5, 508, 0, 0, 2363, 2370, 5, 507, 0, 0, 2364, 2365, 5, 509, 0, 0, 2365, 2370, 5, 506, 0, 0, 2366, 2367, 5, 508, 0, 0, 2367, 2368, 5, 506, 0, 0, 2368, 2370, 5, 507, 0, 0, 2369, 2355, 1, 0, 0, 0, 2369, 2356, 1, 0, 0, 0, 2369, 2357, 1, 0, 0, 0, 2369, 2358, 1, 0, 0, 0, 2369, 2360, 1, 0, 0, 0, 2369, 2362, 1, 0, 0, 0, 2369, 2364, 1, 0, 0, 0, 2369, 2366, 1, 0, 0, 0, 2370, 379, 1, 0, 0, 0, 2371, 2372, 5, 508, 0, 0, 2372, 2379, 5, 508, 0, 0, 2373, 2374, 5, 507, 0, 0, 2374, 2379, 5, 507, 0, 0, 2375, 2379, 5, 512, 0, 0, 2376, 2379, 5, 513, 0, 0, 2377, 2379, 5, 511, 0, 0, 2378, 2371, 1, 0, 0, 0, 2378, 2373, 1, 0, 0, 0, 2378, 2375, 1, 0, 0, 0, 2378, 2376, 1, 0, 0, 0, 2378, 2377, 1, 0, 0, 0, 2379, 381, 1, 0, 0, 0, 2380, 2381, 7, 36, 0, 0, 2381, 383, 1, 0, 0, 0, 2382, 2383, 7, 37, 0, 0, 2383, 385, 1, 0, 0, 0, 2384, 2399, 3, 312, 156, 0, 2385, 2399, 3, 388, 194, 0, 2386, 2399, 3, 390, 195, 0, 2387, 2389, 5, 530, 0, 0, 2388, 2387, 1, 0, 0, 0, 2388, 2389, 1, 0, 0, 0, 2389, 2390, 1, 0, 0, 0, 2390, 2399, 3, 392, 196, 0, 2391, 2399, 3, 394, 197, 0, 2392, 2399, 5, 540, 0, 0, 2393, 2399, 5, 541, 0, 0, 2394, 2396, 5, 242, 0, 0, 2395, 2394, 1, 0, 0, 0, 2395, 2396, 1, 0, 0, 0, 2396, 2397, 1, 0, 0, 0, 2397, 2399, 5, 245, 0, 0, 2398, 2384, 1, 0, 0, 0, 2398, 2385, 1, 0, 0, 0, 2398, 2386, 1, 0, 0, 0, 2398, 2388, 1, 0, 0, 0, 2398, 2391, 1, 0, 0, 0, 2398, 2392, 1, 0, 0, 0, 2398, 2393, 1, 0, 0, 0, 2398, 2395, 1, 0, 0, 0, 2399, 387, 1, 0, 0, 0, 2400, 2401, 3, 398, 199, 0, 2401, 2402, 3, 390, 195, 0, 2402, 389, 1, 0, 0, 0, 2403, 2404, 5, 538, 0, 0, 2404, 391, 1, 0, 0, 0, 2405, 2406, 5, 539, 0, 0, 2406, 393, 1, 0, 0, 0, 2407, 2408, 7, 38, 0, 0, 2408, 395, 1, 0, 0, 0, 2409, 2410, 7, 39, 0, 0, 2410, 397, 1, 0, 0, 0, 2411, 2412, 7, 40, 0, 0, 2412, 399, 1, 0, 0, 0, 2413, 2414, 7, 41, 0, 0, 2414, 401, 1, 0, 0, 0, 2415, 2416, 7, 42, 0, 0, 2416, 403, 1, 0, 0, 0, 2417, 2418, 7, 43, 0, 0, 2418, 405, 1, 0, 0, 0, 2419, 2420, 7, 44, 0, 0, 2420, 407, 1, 0, 0, 0, 2421, 2422, 7, 45, 0, 0, 2422, 409, 1, 0, 0, 0, 2423, 2424, 7, 46, 0, 0, 2424, 411, 1, 0, 0, 0, 289, 415, 422, 425, 439, 457, 461, 470, 475, 482, 493, 502, 514, 517, 524, 527, 535, 539, 544, 547, 554, 562, 566, 578, 586, 590, 622, 625, 630, 634, 638, 642, 651, 656, 660, 664, 669, 672, 676, 681, 687, 692, 697, 701, 705, 712, 719, 727, 735, 739, 743, 747, 751, 755, 759, 763, 767, 769, 779, 787, 811, 825, 830, 834, 840, 843, 846, 853, 856, 865, 877, 901, 913, 918, 922, 930, 934, 940, 950, 955, 961, 965, 969, 973, 982, 986, 993, 996, 1006, 1014, 1022, 1026, 1041, 1060, 1071, 1075, 1082, 1087, 1093, 1097, 1104, 1108, 1112, 1116, 1124, 1128, 1133, 1139, 1145, 1148, 1152, 1163, 1172, 1179, 1190, 1202, 1217, 1220, 1224, 1227, 1229, 1234, 1238, 1241, 1245, 1254, 1263, 1273, 1278, 1289, 1292, 1295, 1298, 1301, 1307, 1311, 1320, 1327, 1330, 1334, 1339, 1342, 1344, 1353, 1360, 1363, 1367, 1370, 1372, 1379, 1384, 1400, 1411, 1416, 1424, 1427, 1430, 1435, 1437, 1439, 1444, 1447, 1451, 1455, 1459, 1468, 1479, 1506, 1528, 1542, 1544, 1548, 1553, 1562, 1575, 1587, 1599, 1605, 1632, 1640, 1644, 1647, 1650, 1657, 1660, 1663, 1666, 1669, 1672, 1677, 1680, 1689, 1694, 1698, 1703, 1709, 1714, 1718, 1737, 1745, 1753, 1757, 1761, 1771, 1797, 1805, 1817, 1839, 1841, 1852, 1855, 1857, 1861, 1865, 1872, 1881, 1887, 1900, 1907, 1912, 1918, 1925, 1932, 1934, 1937, 1949, 1954, 1957, 1963, 1965, 1971, 1992, 1994, 2002, 2009, 2012, 2016, 2023, 2027, 2036, 2040, 2056, 2065, 2093, 2102, 2111, 2117, 2121, 2127, 2135, 2140, 2144, 2151, 2156, 2164, 2168, 2171, 2175, 2184, 2187, 2198, 2204, 2222, 2227, 2232, 2239, 2241, 2246, 2253, 2255, 2260, 2267, 2269, 2274, 2281, 2283, 2290, 2298, 2306, 2324, 2331, 2334, 2339, 2345, 2353, 2369, 2378, 2388, 2395, 2398] \ No newline at end of file +[4, 1, 542, 2428, 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, 1, 0, 5, 0, 414, 8, 0, 10, 0, 12, 0, 417, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 423, 8, 1, 1, 1, 3, 1, 426, 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, 3, 2, 440, 8, 2, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 458, 8, 4, 1, 5, 1, 5, 3, 5, 462, 8, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 471, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 476, 8, 7, 1, 8, 1, 8, 1, 8, 5, 8, 481, 8, 8, 10, 8, 12, 8, 484, 9, 8, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 494, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 501, 8, 11, 10, 11, 12, 11, 504, 9, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 515, 8, 12, 1, 12, 3, 12, 518, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 525, 8, 12, 1, 12, 3, 12, 528, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 536, 8, 12, 1, 12, 1, 12, 3, 12, 540, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 545, 8, 12, 1, 12, 3, 12, 548, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 555, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 3, 15, 563, 8, 15, 1, 16, 1, 16, 3, 16, 567, 8, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 579, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 587, 8, 18, 1, 18, 1, 18, 3, 18, 591, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 623, 8, 18, 1, 19, 3, 19, 626, 8, 19, 1, 19, 4, 19, 629, 8, 19, 11, 19, 12, 19, 630, 1, 20, 1, 20, 3, 20, 635, 8, 20, 1, 21, 1, 21, 3, 21, 639, 8, 21, 1, 21, 1, 21, 3, 21, 643, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 650, 8, 21, 10, 21, 12, 21, 653, 9, 21, 1, 21, 1, 21, 3, 21, 657, 8, 21, 1, 21, 1, 21, 3, 21, 661, 8, 21, 1, 21, 1, 21, 3, 21, 665, 8, 21, 1, 21, 1, 21, 1, 21, 3, 21, 670, 8, 21, 1, 21, 3, 21, 673, 8, 21, 1, 21, 1, 21, 3, 21, 677, 8, 21, 1, 22, 1, 22, 1, 22, 3, 22, 682, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 688, 8, 22, 1, 23, 1, 23, 1, 23, 3, 23, 693, 8, 23, 1, 24, 1, 24, 1, 24, 3, 24, 698, 8, 24, 1, 24, 1, 24, 3, 24, 702, 8, 24, 1, 25, 1, 25, 3, 25, 706, 8, 25, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 3, 27, 713, 8, 27, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 3, 29, 720, 8, 29, 1, 30, 1, 30, 1, 30, 1, 30, 5, 30, 726, 8, 30, 10, 30, 12, 30, 729, 9, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 3, 31, 736, 8, 31, 1, 31, 1, 31, 3, 31, 740, 8, 31, 1, 31, 1, 31, 3, 31, 744, 8, 31, 1, 31, 1, 31, 3, 31, 748, 8, 31, 1, 31, 1, 31, 3, 31, 752, 8, 31, 1, 31, 1, 31, 3, 31, 756, 8, 31, 1, 31, 1, 31, 3, 31, 760, 8, 31, 1, 31, 1, 31, 3, 31, 764, 8, 31, 1, 31, 1, 31, 3, 31, 768, 8, 31, 3, 31, 770, 8, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 780, 8, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 788, 8, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 5, 37, 810, 8, 37, 10, 37, 12, 37, 813, 9, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 5, 37, 824, 8, 37, 10, 37, 12, 37, 827, 9, 37, 1, 37, 1, 37, 3, 37, 831, 8, 37, 1, 38, 1, 38, 3, 38, 835, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 841, 8, 38, 1, 38, 3, 38, 844, 8, 38, 1, 38, 3, 38, 847, 8, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 3, 39, 854, 8, 39, 1, 39, 3, 39, 857, 8, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 866, 8, 41, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 3, 44, 878, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 5, 48, 900, 8, 48, 10, 48, 12, 48, 903, 9, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 5, 49, 912, 8, 49, 10, 49, 12, 49, 915, 9, 49, 1, 49, 1, 49, 3, 49, 919, 8, 49, 1, 50, 1, 50, 3, 50, 923, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 5, 51, 929, 8, 51, 10, 51, 12, 51, 932, 9, 51, 1, 51, 3, 51, 935, 8, 51, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 941, 8, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 3, 54, 951, 8, 54, 1, 54, 1, 54, 1, 54, 3, 54, 956, 8, 54, 1, 54, 1, 54, 1, 55, 1, 55, 3, 55, 962, 8, 55, 1, 55, 1, 55, 3, 55, 966, 8, 55, 1, 55, 1, 55, 3, 55, 970, 8, 55, 1, 55, 1, 55, 3, 55, 974, 8, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 983, 8, 56, 1, 56, 1, 56, 3, 56, 987, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 994, 8, 56, 1, 56, 3, 56, 997, 8, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 5, 57, 1005, 8, 57, 10, 57, 12, 57, 1008, 9, 57, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 3, 59, 1015, 8, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1023, 8, 59, 1, 60, 1, 60, 3, 60, 1027, 8, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 1042, 8, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 3, 66, 1061, 8, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 1072, 8, 68, 1, 68, 1, 68, 3, 68, 1076, 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 1083, 8, 68, 1, 69, 1, 69, 1, 69, 3, 69, 1088, 8, 69, 1, 69, 1, 69, 1, 70, 1, 70, 3, 70, 1094, 8, 70, 1, 70, 1, 70, 3, 70, 1098, 8, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 3, 71, 1105, 8, 71, 1, 71, 1, 71, 3, 71, 1109, 8, 71, 1, 72, 1, 72, 3, 72, 1113, 8, 72, 1, 72, 1, 72, 3, 72, 1117, 8, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1125, 8, 73, 1, 73, 1, 73, 3, 73, 1129, 8, 73, 1, 73, 1, 73, 1, 74, 3, 74, 1134, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 1140, 8, 74, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 1146, 8, 75, 1, 75, 3, 75, 1149, 8, 75, 1, 75, 1, 75, 3, 75, 1153, 8, 75, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 5, 77, 1162, 8, 77, 10, 77, 12, 77, 1165, 9, 77, 1, 78, 1, 78, 1, 78, 1, 78, 5, 78, 1171, 8, 78, 10, 78, 12, 78, 1174, 9, 78, 1, 78, 1, 78, 1, 79, 1, 79, 3, 79, 1180, 8, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 4, 80, 1189, 8, 80, 11, 80, 12, 80, 1190, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 4, 81, 1201, 8, 81, 11, 81, 12, 81, 1202, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 3, 82, 1218, 8, 82, 1, 82, 3, 82, 1221, 8, 82, 1, 82, 1, 82, 3, 82, 1225, 8, 82, 1, 82, 3, 82, 1228, 8, 82, 3, 82, 1230, 8, 82, 1, 82, 1, 82, 1, 82, 3, 82, 1235, 8, 82, 1, 82, 1, 82, 3, 82, 1239, 8, 82, 1, 82, 3, 82, 1242, 8, 82, 5, 82, 1244, 8, 82, 10, 82, 12, 82, 1247, 9, 82, 1, 83, 1, 83, 1, 83, 1, 83, 5, 83, 1253, 8, 83, 10, 83, 12, 83, 1256, 9, 83, 1, 84, 1, 84, 1, 84, 1, 84, 5, 84, 1262, 8, 84, 10, 84, 12, 84, 1265, 9, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 5, 85, 1272, 8, 85, 10, 85, 12, 85, 1275, 9, 85, 1, 85, 1, 85, 3, 85, 1279, 8, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 87, 1, 87, 3, 87, 1290, 8, 87, 1, 87, 3, 87, 1293, 8, 87, 1, 87, 3, 87, 1296, 8, 87, 1, 87, 3, 87, 1299, 8, 87, 1, 87, 3, 87, 1302, 8, 87, 1, 87, 1, 87, 1, 87, 1, 87, 3, 87, 1308, 8, 87, 1, 88, 1, 88, 3, 88, 1312, 8, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 5, 89, 1319, 8, 89, 10, 89, 12, 89, 1322, 9, 89, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 1328, 8, 90, 1, 90, 3, 90, 1331, 8, 90, 1, 90, 1, 90, 3, 90, 1335, 8, 90, 1, 90, 1, 90, 1, 90, 3, 90, 1340, 8, 90, 1, 90, 3, 90, 1343, 8, 90, 1, 90, 1, 90, 3, 90, 1347, 8, 90, 1, 91, 1, 91, 1, 92, 1, 92, 1, 93, 1, 93, 1, 94, 3, 94, 1356, 8, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 3, 95, 1363, 8, 95, 1, 95, 3, 95, 1366, 8, 95, 1, 95, 1, 95, 3, 95, 1370, 8, 95, 1, 95, 3, 95, 1373, 8, 95, 3, 95, 1375, 8, 95, 1, 96, 1, 96, 1, 96, 5, 96, 1380, 8, 96, 10, 96, 12, 96, 1383, 9, 96, 1, 96, 1, 96, 3, 96, 1387, 8, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 1403, 8, 97, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 5, 99, 1412, 8, 99, 10, 99, 12, 99, 1415, 9, 99, 1, 99, 1, 99, 3, 99, 1419, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 1427, 8, 99, 1, 99, 3, 99, 1430, 8, 99, 1, 99, 3, 99, 1433, 8, 99, 1, 99, 1, 99, 1, 99, 3, 99, 1438, 8, 99, 5, 99, 1440, 8, 99, 10, 99, 12, 99, 1443, 9, 99, 1, 100, 1, 100, 3, 100, 1447, 8, 100, 1, 101, 3, 101, 1450, 8, 101, 1, 101, 1, 101, 3, 101, 1454, 8, 101, 1, 101, 1, 101, 3, 101, 1458, 8, 101, 1, 101, 1, 101, 3, 101, 1462, 8, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 103, 3, 103, 1471, 8, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 1482, 8, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 5, 108, 1507, 8, 108, 10, 108, 12, 108, 1510, 9, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 1531, 8, 110, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 1545, 8, 113, 3, 113, 1547, 8, 113, 1, 113, 1, 113, 3, 113, 1551, 8, 113, 1, 114, 1, 114, 1, 114, 3, 114, 1556, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 5, 115, 1563, 8, 115, 10, 115, 12, 115, 1566, 9, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 5, 116, 1576, 8, 116, 10, 116, 12, 116, 1579, 9, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 5, 116, 1588, 8, 116, 10, 116, 12, 116, 1591, 9, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 5, 116, 1600, 8, 116, 10, 116, 12, 116, 1603, 9, 116, 1, 116, 1, 116, 1, 116, 3, 116, 1608, 8, 116, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 5, 123, 1633, 8, 123, 10, 123, 12, 123, 1636, 9, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 125, 3, 125, 1643, 8, 125, 1, 125, 1, 125, 3, 125, 1647, 8, 125, 1, 125, 3, 125, 1650, 8, 125, 1, 125, 3, 125, 1653, 8, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 3, 126, 1660, 8, 126, 1, 126, 3, 126, 1663, 8, 126, 1, 126, 3, 126, 1666, 8, 126, 1, 126, 3, 126, 1669, 8, 126, 1, 126, 3, 126, 1672, 8, 126, 1, 126, 3, 126, 1675, 8, 126, 1, 126, 1, 126, 1, 126, 3, 126, 1680, 8, 126, 1, 126, 3, 126, 1683, 8, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 5, 127, 1690, 8, 127, 10, 127, 12, 127, 1693, 9, 127, 1, 128, 1, 128, 3, 128, 1697, 8, 128, 1, 128, 1, 128, 3, 128, 1701, 8, 128, 1, 129, 1, 129, 1, 129, 3, 129, 1706, 8, 129, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1712, 8, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1717, 8, 130, 5, 130, 1719, 8, 130, 10, 130, 12, 130, 1722, 9, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1740, 8, 131, 1, 132, 1, 132, 1, 132, 1, 132, 5, 132, 1746, 8, 132, 10, 132, 12, 132, 1749, 9, 132, 1, 133, 1, 133, 1, 133, 4, 133, 1754, 8, 133, 11, 133, 12, 133, 1755, 1, 133, 1, 133, 3, 133, 1760, 8, 133, 1, 134, 1, 134, 3, 134, 1764, 8, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 1774, 8, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 1800, 8, 136, 1, 137, 1, 137, 1, 137, 1, 137, 5, 137, 1806, 8, 137, 10, 137, 12, 137, 1809, 9, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 1820, 8, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 1842, 8, 142, 3, 142, 1844, 8, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 3, 142, 1855, 8, 142, 1, 142, 5, 142, 1858, 8, 142, 10, 142, 12, 142, 1861, 9, 142, 1, 143, 3, 143, 1864, 8, 143, 1, 143, 1, 143, 3, 143, 1868, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 1875, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 5, 143, 1882, 8, 143, 10, 143, 12, 143, 1885, 9, 143, 1, 143, 1, 143, 1, 143, 3, 143, 1890, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 1903, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 1910, 8, 143, 1, 143, 1, 143, 1, 143, 3, 143, 1915, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 1921, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 1928, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 1935, 8, 143, 3, 143, 1937, 8, 143, 1, 144, 3, 144, 1940, 8, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 5, 144, 1950, 8, 144, 10, 144, 12, 144, 1953, 9, 144, 1, 144, 1, 144, 3, 144, 1957, 8, 144, 1, 144, 3, 144, 1960, 8, 144, 1, 144, 1, 144, 1, 144, 1, 144, 3, 144, 1966, 8, 144, 3, 144, 1968, 8, 144, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 1974, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 5, 145, 1995, 8, 145, 10, 145, 12, 145, 1998, 9, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 2005, 8, 146, 1, 146, 1, 146, 1, 146, 5, 146, 2010, 8, 146, 10, 146, 12, 146, 2013, 9, 146, 3, 146, 2015, 8, 146, 1, 146, 1, 146, 3, 146, 2019, 8, 146, 1, 147, 1, 147, 1, 147, 4, 147, 2024, 8, 147, 11, 147, 12, 147, 2025, 1, 147, 1, 147, 3, 147, 2030, 8, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 4, 147, 2037, 8, 147, 11, 147, 12, 147, 2038, 1, 147, 1, 147, 3, 147, 2043, 8, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 3, 147, 2059, 8, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 3, 147, 2068, 8, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 3, 147, 2096, 8, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 5, 147, 2103, 8, 147, 10, 147, 12, 147, 2106, 9, 147, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 1, 149, 3, 149, 2114, 8, 149, 1, 150, 1, 150, 1, 150, 1, 150, 3, 150, 2120, 8, 150, 1, 151, 1, 151, 3, 151, 2124, 8, 151, 1, 152, 1, 152, 1, 152, 1, 152, 3, 152, 2130, 8, 152, 1, 153, 1, 153, 1, 154, 1, 154, 1, 155, 1, 155, 3, 155, 2138, 8, 155, 1, 156, 1, 156, 1, 156, 3, 156, 2143, 8, 156, 1, 157, 1, 157, 3, 157, 2147, 8, 157, 1, 158, 1, 158, 1, 158, 4, 158, 2152, 8, 158, 11, 158, 12, 158, 2153, 1, 159, 1, 159, 1, 159, 3, 159, 2159, 8, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 161, 3, 161, 2167, 8, 161, 1, 161, 1, 161, 3, 161, 2171, 8, 161, 1, 162, 3, 162, 2174, 8, 162, 1, 162, 1, 162, 3, 162, 2178, 8, 162, 1, 163, 1, 163, 1, 163, 1, 164, 1, 164, 4, 164, 2185, 8, 164, 11, 164, 12, 164, 2186, 1, 164, 3, 164, 2190, 8, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 5, 166, 2199, 8, 166, 10, 166, 12, 166, 2202, 9, 166, 1, 167, 1, 167, 1, 167, 3, 167, 2207, 8, 167, 1, 168, 1, 168, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 3, 173, 2225, 8, 173, 1, 174, 1, 174, 1, 174, 3, 174, 2230, 8, 174, 1, 175, 1, 175, 1, 175, 3, 175, 2235, 8, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 2242, 8, 175, 3, 175, 2244, 8, 175, 1, 176, 1, 176, 1, 176, 3, 176, 2249, 8, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 2256, 8, 176, 3, 176, 2258, 8, 176, 1, 177, 1, 177, 1, 177, 3, 177, 2263, 8, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 2270, 8, 177, 3, 177, 2272, 8, 177, 1, 178, 1, 178, 1, 178, 3, 178, 2277, 8, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 3, 178, 2284, 8, 178, 3, 178, 2286, 8, 178, 1, 179, 1, 179, 1, 179, 5, 179, 2291, 8, 179, 10, 179, 12, 179, 2294, 9, 179, 1, 180, 1, 180, 1, 180, 5, 180, 2299, 8, 180, 10, 180, 12, 180, 2302, 9, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 2309, 8, 180, 1, 181, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 1, 184, 5, 184, 2325, 8, 184, 10, 184, 12, 184, 2328, 9, 184, 1, 184, 1, 184, 1, 185, 1, 185, 3, 185, 2334, 8, 185, 1, 185, 3, 185, 2337, 8, 185, 1, 186, 1, 186, 1, 186, 3, 186, 2342, 8, 186, 1, 187, 1, 187, 1, 187, 1, 187, 3, 187, 2348, 8, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 2356, 8, 188, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 3, 189, 2372, 8, 189, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 3, 190, 2381, 8, 190, 1, 191, 1, 191, 1, 192, 1, 192, 1, 193, 1, 193, 1, 193, 1, 193, 3, 193, 2391, 8, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 3, 193, 2398, 8, 193, 1, 193, 3, 193, 2401, 8, 193, 1, 194, 1, 194, 1, 194, 1, 195, 1, 195, 1, 196, 1, 196, 1, 197, 1, 197, 1, 198, 1, 198, 1, 199, 1, 199, 1, 200, 1, 200, 1, 201, 1, 201, 1, 202, 1, 202, 1, 203, 1, 203, 1, 204, 1, 204, 1, 205, 1, 205, 1, 205, 0, 5, 164, 198, 284, 290, 294, 206, 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, 0, 47, 2, 0, 109, 109, 451, 451, 3, 0, 45, 45, 128, 128, 189, 189, 4, 0, 42, 42, 90, 90, 423, 423, 465, 465, 2, 0, 442, 442, 448, 448, 2, 0, 151, 151, 170, 170, 2, 0, 438, 438, 490, 490, 2, 0, 483, 486, 488, 488, 3, 0, 32, 32, 91, 91, 245, 245, 11, 0, 28, 29, 35, 35, 46, 46, 92, 92, 178, 179, 345, 345, 361, 361, 379, 379, 382, 382, 388, 388, 417, 418, 2, 0, 434, 434, 436, 436, 4, 0, 101, 102, 115, 115, 144, 144, 247, 247, 2, 0, 13, 13, 232, 232, 2, 0, 456, 456, 463, 463, 3, 0, 5, 5, 271, 271, 445, 445, 3, 0, 267, 267, 456, 456, 463, 463, 3, 0, 426, 426, 459, 459, 478, 478, 3, 0, 331, 331, 466, 466, 482, 482, 2, 0, 441, 441, 491, 491, 2, 0, 183, 183, 266, 266, 3, 0, 130, 130, 180, 180, 403, 403, 4, 0, 152, 152, 174, 174, 202, 202, 318, 318, 3, 0, 446, 446, 460, 460, 500, 500, 4, 0, 251, 251, 447, 447, 495, 497, 499, 499, 2, 0, 74, 74, 321, 321, 3, 0, 460, 460, 493, 493, 500, 500, 2, 0, 440, 440, 451, 451, 2, 0, 458, 458, 468, 468, 4, 0, 140, 140, 245, 245, 398, 398, 405, 405, 2, 0, 19, 19, 370, 370, 2, 0, 5, 5, 11, 11, 2, 0, 510, 510, 530, 531, 4, 0, 453, 453, 528, 528, 532, 532, 535, 535, 2, 0, 530, 531, 533, 533, 1, 0, 530, 531, 1, 0, 539, 540, 2, 0, 539, 539, 542, 542, 4, 0, 453, 453, 528, 528, 530, 532, 534, 535, 3, 0, 242, 242, 509, 510, 530, 531, 2, 0, 140, 140, 398, 398, 2, 0, 5, 5, 113, 113, 10, 0, 97, 97, 165, 165, 223, 223, 230, 230, 335, 335, 437, 437, 471, 471, 473, 473, 489, 489, 503, 503, 15, 0, 97, 97, 165, 165, 223, 223, 230, 230, 335, 335, 428, 428, 437, 437, 443, 443, 449, 450, 455, 455, 461, 461, 471, 476, 489, 489, 492, 492, 503, 504, 11, 0, 5, 5, 13, 13, 33, 33, 78, 78, 84, 85, 113, 113, 201, 201, 208, 209, 390, 390, 414, 414, 528, 528, 3, 0, 78, 78, 84, 85, 208, 209, 2, 0, 91, 91, 379, 380, 53, 0, 4, 4, 13, 13, 23, 23, 38, 38, 41, 41, 43, 44, 54, 54, 56, 56, 69, 69, 75, 75, 98, 99, 107, 107, 119, 119, 134, 134, 139, 139, 143, 143, 145, 145, 160, 160, 165, 165, 167, 167, 187, 188, 190, 195, 198, 198, 200, 200, 202, 202, 206, 206, 210, 210, 215, 215, 221, 221, 223, 224, 230, 230, 244, 244, 246, 246, 265, 265, 277, 277, 282, 282, 284, 284, 294, 294, 318, 318, 322, 324, 335, 335, 358, 359, 365, 365, 368, 368, 381, 381, 396, 396, 399, 400, 409, 409, 420, 421, 437, 437, 470, 470, 489, 489, 503, 503, 1, 0, 438, 505, 2641, 0, 415, 1, 0, 0, 0, 2, 425, 1, 0, 0, 0, 4, 439, 1, 0, 0, 0, 6, 441, 1, 0, 0, 0, 8, 457, 1, 0, 0, 0, 10, 461, 1, 0, 0, 0, 12, 463, 1, 0, 0, 0, 14, 466, 1, 0, 0, 0, 16, 477, 1, 0, 0, 0, 18, 485, 1, 0, 0, 0, 20, 493, 1, 0, 0, 0, 22, 495, 1, 0, 0, 0, 24, 547, 1, 0, 0, 0, 26, 549, 1, 0, 0, 0, 28, 556, 1, 0, 0, 0, 30, 560, 1, 0, 0, 0, 32, 564, 1, 0, 0, 0, 34, 568, 1, 0, 0, 0, 36, 622, 1, 0, 0, 0, 38, 628, 1, 0, 0, 0, 40, 634, 1, 0, 0, 0, 42, 636, 1, 0, 0, 0, 44, 678, 1, 0, 0, 0, 46, 692, 1, 0, 0, 0, 48, 694, 1, 0, 0, 0, 50, 705, 1, 0, 0, 0, 52, 707, 1, 0, 0, 0, 54, 712, 1, 0, 0, 0, 56, 714, 1, 0, 0, 0, 58, 719, 1, 0, 0, 0, 60, 721, 1, 0, 0, 0, 62, 769, 1, 0, 0, 0, 64, 771, 1, 0, 0, 0, 66, 775, 1, 0, 0, 0, 68, 783, 1, 0, 0, 0, 70, 791, 1, 0, 0, 0, 72, 795, 1, 0, 0, 0, 74, 830, 1, 0, 0, 0, 76, 846, 1, 0, 0, 0, 78, 848, 1, 0, 0, 0, 80, 858, 1, 0, 0, 0, 82, 860, 1, 0, 0, 0, 84, 867, 1, 0, 0, 0, 86, 869, 1, 0, 0, 0, 88, 877, 1, 0, 0, 0, 90, 885, 1, 0, 0, 0, 92, 887, 1, 0, 0, 0, 94, 891, 1, 0, 0, 0, 96, 895, 1, 0, 0, 0, 98, 918, 1, 0, 0, 0, 100, 922, 1, 0, 0, 0, 102, 924, 1, 0, 0, 0, 104, 940, 1, 0, 0, 0, 106, 942, 1, 0, 0, 0, 108, 947, 1, 0, 0, 0, 110, 959, 1, 0, 0, 0, 112, 978, 1, 0, 0, 0, 114, 998, 1, 0, 0, 0, 116, 1009, 1, 0, 0, 0, 118, 1011, 1, 0, 0, 0, 120, 1024, 1, 0, 0, 0, 122, 1031, 1, 0, 0, 0, 124, 1034, 1, 0, 0, 0, 126, 1043, 1, 0, 0, 0, 128, 1047, 1, 0, 0, 0, 130, 1051, 1, 0, 0, 0, 132, 1054, 1, 0, 0, 0, 134, 1062, 1, 0, 0, 0, 136, 1067, 1, 0, 0, 0, 138, 1084, 1, 0, 0, 0, 140, 1091, 1, 0, 0, 0, 142, 1101, 1, 0, 0, 0, 144, 1110, 1, 0, 0, 0, 146, 1120, 1, 0, 0, 0, 148, 1139, 1, 0, 0, 0, 150, 1141, 1, 0, 0, 0, 152, 1154, 1, 0, 0, 0, 154, 1157, 1, 0, 0, 0, 156, 1166, 1, 0, 0, 0, 158, 1179, 1, 0, 0, 0, 160, 1181, 1, 0, 0, 0, 162, 1194, 1, 0, 0, 0, 164, 1229, 1, 0, 0, 0, 166, 1248, 1, 0, 0, 0, 168, 1257, 1, 0, 0, 0, 170, 1266, 1, 0, 0, 0, 172, 1285, 1, 0, 0, 0, 174, 1307, 1, 0, 0, 0, 176, 1309, 1, 0, 0, 0, 178, 1315, 1, 0, 0, 0, 180, 1346, 1, 0, 0, 0, 182, 1348, 1, 0, 0, 0, 184, 1350, 1, 0, 0, 0, 186, 1352, 1, 0, 0, 0, 188, 1355, 1, 0, 0, 0, 190, 1374, 1, 0, 0, 0, 192, 1386, 1, 0, 0, 0, 194, 1402, 1, 0, 0, 0, 196, 1404, 1, 0, 0, 0, 198, 1418, 1, 0, 0, 0, 200, 1444, 1, 0, 0, 0, 202, 1461, 1, 0, 0, 0, 204, 1463, 1, 0, 0, 0, 206, 1481, 1, 0, 0, 0, 208, 1483, 1, 0, 0, 0, 210, 1489, 1, 0, 0, 0, 212, 1491, 1, 0, 0, 0, 214, 1496, 1, 0, 0, 0, 216, 1501, 1, 0, 0, 0, 218, 1513, 1, 0, 0, 0, 220, 1530, 1, 0, 0, 0, 222, 1532, 1, 0, 0, 0, 224, 1534, 1, 0, 0, 0, 226, 1550, 1, 0, 0, 0, 228, 1552, 1, 0, 0, 0, 230, 1557, 1, 0, 0, 0, 232, 1607, 1, 0, 0, 0, 234, 1609, 1, 0, 0, 0, 236, 1612, 1, 0, 0, 0, 238, 1614, 1, 0, 0, 0, 240, 1621, 1, 0, 0, 0, 242, 1623, 1, 0, 0, 0, 244, 1625, 1, 0, 0, 0, 246, 1628, 1, 0, 0, 0, 248, 1637, 1, 0, 0, 0, 250, 1642, 1, 0, 0, 0, 252, 1656, 1, 0, 0, 0, 254, 1684, 1, 0, 0, 0, 256, 1694, 1, 0, 0, 0, 258, 1702, 1, 0, 0, 0, 260, 1707, 1, 0, 0, 0, 262, 1739, 1, 0, 0, 0, 264, 1741, 1, 0, 0, 0, 266, 1750, 1, 0, 0, 0, 268, 1761, 1, 0, 0, 0, 270, 1773, 1, 0, 0, 0, 272, 1799, 1, 0, 0, 0, 274, 1801, 1, 0, 0, 0, 276, 1819, 1, 0, 0, 0, 278, 1821, 1, 0, 0, 0, 280, 1826, 1, 0, 0, 0, 282, 1829, 1, 0, 0, 0, 284, 1843, 1, 0, 0, 0, 286, 1936, 1, 0, 0, 0, 288, 1967, 1, 0, 0, 0, 290, 1973, 1, 0, 0, 0, 292, 2018, 1, 0, 0, 0, 294, 2095, 1, 0, 0, 0, 296, 2107, 1, 0, 0, 0, 298, 2113, 1, 0, 0, 0, 300, 2119, 1, 0, 0, 0, 302, 2123, 1, 0, 0, 0, 304, 2129, 1, 0, 0, 0, 306, 2131, 1, 0, 0, 0, 308, 2133, 1, 0, 0, 0, 310, 2137, 1, 0, 0, 0, 312, 2139, 1, 0, 0, 0, 314, 2144, 1, 0, 0, 0, 316, 2151, 1, 0, 0, 0, 318, 2155, 1, 0, 0, 0, 320, 2160, 1, 0, 0, 0, 322, 2170, 1, 0, 0, 0, 324, 2173, 1, 0, 0, 0, 326, 2179, 1, 0, 0, 0, 328, 2189, 1, 0, 0, 0, 330, 2191, 1, 0, 0, 0, 332, 2195, 1, 0, 0, 0, 334, 2206, 1, 0, 0, 0, 336, 2208, 1, 0, 0, 0, 338, 2210, 1, 0, 0, 0, 340, 2212, 1, 0, 0, 0, 342, 2217, 1, 0, 0, 0, 344, 2219, 1, 0, 0, 0, 346, 2221, 1, 0, 0, 0, 348, 2226, 1, 0, 0, 0, 350, 2243, 1, 0, 0, 0, 352, 2257, 1, 0, 0, 0, 354, 2271, 1, 0, 0, 0, 356, 2285, 1, 0, 0, 0, 358, 2287, 1, 0, 0, 0, 360, 2308, 1, 0, 0, 0, 362, 2310, 1, 0, 0, 0, 364, 2313, 1, 0, 0, 0, 366, 2317, 1, 0, 0, 0, 368, 2320, 1, 0, 0, 0, 370, 2331, 1, 0, 0, 0, 372, 2341, 1, 0, 0, 0, 374, 2347, 1, 0, 0, 0, 376, 2355, 1, 0, 0, 0, 378, 2371, 1, 0, 0, 0, 380, 2380, 1, 0, 0, 0, 382, 2382, 1, 0, 0, 0, 384, 2384, 1, 0, 0, 0, 386, 2400, 1, 0, 0, 0, 388, 2402, 1, 0, 0, 0, 390, 2405, 1, 0, 0, 0, 392, 2407, 1, 0, 0, 0, 394, 2409, 1, 0, 0, 0, 396, 2411, 1, 0, 0, 0, 398, 2413, 1, 0, 0, 0, 400, 2415, 1, 0, 0, 0, 402, 2417, 1, 0, 0, 0, 404, 2419, 1, 0, 0, 0, 406, 2421, 1, 0, 0, 0, 408, 2423, 1, 0, 0, 0, 410, 2425, 1, 0, 0, 0, 412, 414, 3, 2, 1, 0, 413, 412, 1, 0, 0, 0, 414, 417, 1, 0, 0, 0, 415, 413, 1, 0, 0, 0, 415, 416, 1, 0, 0, 0, 416, 418, 1, 0, 0, 0, 417, 415, 1, 0, 0, 0, 418, 419, 5, 0, 0, 1, 419, 1, 1, 0, 0, 0, 420, 422, 3, 4, 2, 0, 421, 423, 5, 522, 0, 0, 422, 421, 1, 0, 0, 0, 422, 423, 1, 0, 0, 0, 423, 426, 1, 0, 0, 0, 424, 426, 3, 6, 3, 0, 425, 420, 1, 0, 0, 0, 425, 424, 1, 0, 0, 0, 426, 3, 1, 0, 0, 0, 427, 440, 3, 8, 4, 0, 428, 440, 3, 10, 5, 0, 429, 440, 3, 12, 6, 0, 430, 440, 3, 14, 7, 0, 431, 440, 3, 20, 10, 0, 432, 440, 3, 24, 12, 0, 433, 440, 3, 26, 13, 0, 434, 440, 3, 28, 14, 0, 435, 440, 3, 30, 15, 0, 436, 440, 3, 32, 16, 0, 437, 440, 3, 34, 17, 0, 438, 440, 3, 36, 18, 0, 439, 427, 1, 0, 0, 0, 439, 428, 1, 0, 0, 0, 439, 429, 1, 0, 0, 0, 439, 430, 1, 0, 0, 0, 439, 431, 1, 0, 0, 0, 439, 432, 1, 0, 0, 0, 439, 433, 1, 0, 0, 0, 439, 434, 1, 0, 0, 0, 439, 435, 1, 0, 0, 0, 439, 436, 1, 0, 0, 0, 439, 437, 1, 0, 0, 0, 439, 438, 1, 0, 0, 0, 440, 5, 1, 0, 0, 0, 441, 442, 5, 522, 0, 0, 442, 7, 1, 0, 0, 0, 443, 458, 3, 40, 20, 0, 444, 458, 3, 108, 54, 0, 445, 458, 3, 110, 55, 0, 446, 458, 3, 112, 56, 0, 447, 458, 3, 106, 53, 0, 448, 458, 3, 118, 59, 0, 449, 458, 3, 132, 66, 0, 450, 458, 3, 134, 67, 0, 451, 458, 3, 136, 68, 0, 452, 458, 3, 138, 69, 0, 453, 458, 3, 140, 70, 0, 454, 458, 3, 142, 71, 0, 455, 458, 3, 144, 72, 0, 456, 458, 3, 146, 73, 0, 457, 443, 1, 0, 0, 0, 457, 444, 1, 0, 0, 0, 457, 445, 1, 0, 0, 0, 457, 446, 1, 0, 0, 0, 457, 447, 1, 0, 0, 0, 457, 448, 1, 0, 0, 0, 457, 449, 1, 0, 0, 0, 457, 450, 1, 0, 0, 0, 457, 451, 1, 0, 0, 0, 457, 452, 1, 0, 0, 0, 457, 453, 1, 0, 0, 0, 457, 454, 1, 0, 0, 0, 457, 455, 1, 0, 0, 0, 457, 456, 1, 0, 0, 0, 458, 9, 1, 0, 0, 0, 459, 462, 3, 164, 82, 0, 460, 462, 3, 148, 74, 0, 461, 459, 1, 0, 0, 0, 461, 460, 1, 0, 0, 0, 462, 11, 1, 0, 0, 0, 463, 464, 7, 0, 0, 0, 464, 465, 3, 352, 176, 0, 465, 13, 1, 0, 0, 0, 466, 470, 5, 135, 0, 0, 467, 471, 3, 16, 8, 0, 468, 469, 5, 480, 0, 0, 469, 471, 5, 146, 0, 0, 470, 467, 1, 0, 0, 0, 470, 468, 1, 0, 0, 0, 470, 471, 1, 0, 0, 0, 471, 475, 1, 0, 0, 0, 472, 476, 3, 10, 5, 0, 473, 476, 3, 150, 75, 0, 474, 476, 3, 162, 81, 0, 475, 472, 1, 0, 0, 0, 475, 473, 1, 0, 0, 0, 475, 474, 1, 0, 0, 0, 476, 15, 1, 0, 0, 0, 477, 482, 3, 18, 9, 0, 478, 479, 5, 521, 0, 0, 479, 481, 3, 18, 9, 0, 480, 478, 1, 0, 0, 0, 481, 484, 1, 0, 0, 0, 482, 480, 1, 0, 0, 0, 482, 483, 1, 0, 0, 0, 483, 17, 1, 0, 0, 0, 484, 482, 1, 0, 0, 0, 485, 486, 7, 1, 0, 0, 486, 19, 1, 0, 0, 0, 487, 488, 5, 411, 0, 0, 488, 489, 5, 442, 0, 0, 489, 494, 3, 342, 171, 0, 490, 491, 5, 411, 0, 0, 491, 494, 3, 346, 173, 0, 492, 494, 3, 22, 11, 0, 493, 487, 1, 0, 0, 0, 493, 490, 1, 0, 0, 0, 493, 492, 1, 0, 0, 0, 494, 21, 1, 0, 0, 0, 495, 496, 5, 411, 0, 0, 496, 497, 5, 228, 0, 0, 497, 502, 3, 358, 179, 0, 498, 499, 5, 521, 0, 0, 499, 501, 3, 358, 179, 0, 500, 498, 1, 0, 0, 0, 501, 504, 1, 0, 0, 0, 502, 500, 1, 0, 0, 0, 502, 503, 1, 0, 0, 0, 503, 23, 1, 0, 0, 0, 504, 502, 1, 0, 0, 0, 505, 506, 5, 342, 0, 0, 506, 548, 7, 2, 0, 0, 507, 508, 5, 342, 0, 0, 508, 509, 5, 76, 0, 0, 509, 548, 7, 3, 0, 0, 510, 511, 5, 342, 0, 0, 511, 514, 5, 375, 0, 0, 512, 513, 7, 4, 0, 0, 513, 515, 3, 346, 173, 0, 514, 512, 1, 0, 0, 0, 514, 515, 1, 0, 0, 0, 515, 517, 1, 0, 0, 0, 516, 518, 3, 288, 144, 0, 517, 516, 1, 0, 0, 0, 517, 518, 1, 0, 0, 0, 518, 548, 1, 0, 0, 0, 519, 520, 5, 342, 0, 0, 520, 521, 5, 58, 0, 0, 521, 524, 7, 4, 0, 0, 522, 525, 3, 354, 177, 0, 523, 525, 3, 352, 176, 0, 524, 522, 1, 0, 0, 0, 524, 523, 1, 0, 0, 0, 525, 527, 1, 0, 0, 0, 526, 528, 3, 288, 144, 0, 527, 526, 1, 0, 0, 0, 527, 528, 1, 0, 0, 0, 528, 548, 1, 0, 0, 0, 529, 530, 5, 342, 0, 0, 530, 535, 5, 72, 0, 0, 531, 532, 5, 374, 0, 0, 532, 536, 3, 352, 176, 0, 533, 534, 5, 502, 0, 0, 534, 536, 3, 354, 177, 0, 535, 531, 1, 0, 0, 0, 535, 533, 1, 0, 0, 0, 536, 548, 1, 0, 0, 0, 537, 539, 5, 342, 0, 0, 538, 540, 5, 412, 0, 0, 539, 538, 1, 0, 0, 0, 539, 540, 1, 0, 0, 0, 540, 541, 1, 0, 0, 0, 541, 548, 5, 154, 0, 0, 542, 544, 5, 342, 0, 0, 543, 545, 5, 152, 0, 0, 544, 543, 1, 0, 0, 0, 544, 545, 1, 0, 0, 0, 545, 546, 1, 0, 0, 0, 546, 548, 5, 228, 0, 0, 547, 505, 1, 0, 0, 0, 547, 507, 1, 0, 0, 0, 547, 510, 1, 0, 0, 0, 547, 519, 1, 0, 0, 0, 547, 529, 1, 0, 0, 0, 547, 537, 1, 0, 0, 0, 547, 542, 1, 0, 0, 0, 548, 25, 1, 0, 0, 0, 549, 550, 5, 469, 0, 0, 550, 551, 5, 227, 0, 0, 551, 554, 3, 358, 179, 0, 552, 553, 5, 434, 0, 0, 553, 555, 3, 368, 184, 0, 554, 552, 1, 0, 0, 0, 554, 555, 1, 0, 0, 0, 555, 27, 1, 0, 0, 0, 556, 557, 5, 501, 0, 0, 557, 558, 5, 227, 0, 0, 558, 559, 3, 358, 179, 0, 559, 29, 1, 0, 0, 0, 560, 562, 5, 341, 0, 0, 561, 563, 3, 370, 185, 0, 562, 561, 1, 0, 0, 0, 562, 563, 1, 0, 0, 0, 563, 31, 1, 0, 0, 0, 564, 566, 5, 313, 0, 0, 565, 567, 3, 372, 186, 0, 566, 565, 1, 0, 0, 0, 566, 567, 1, 0, 0, 0, 567, 33, 1, 0, 0, 0, 568, 569, 7, 5, 0, 0, 569, 570, 5, 464, 0, 0, 570, 571, 3, 116, 58, 0, 571, 35, 1, 0, 0, 0, 572, 573, 5, 438, 0, 0, 573, 574, 5, 464, 0, 0, 574, 575, 5, 434, 0, 0, 575, 578, 3, 38, 19, 0, 576, 577, 5, 17, 0, 0, 577, 579, 3, 358, 179, 0, 578, 576, 1, 0, 0, 0, 578, 579, 1, 0, 0, 0, 579, 623, 1, 0, 0, 0, 580, 581, 5, 438, 0, 0, 581, 582, 5, 457, 0, 0, 582, 583, 5, 434, 0, 0, 583, 586, 3, 38, 19, 0, 584, 585, 5, 17, 0, 0, 585, 587, 3, 358, 179, 0, 586, 584, 1, 0, 0, 0, 586, 587, 1, 0, 0, 0, 587, 590, 1, 0, 0, 0, 588, 589, 5, 312, 0, 0, 589, 591, 3, 358, 179, 0, 590, 588, 1, 0, 0, 0, 590, 591, 1, 0, 0, 0, 591, 623, 1, 0, 0, 0, 592, 593, 5, 438, 0, 0, 593, 594, 7, 6, 0, 0, 594, 595, 5, 434, 0, 0, 595, 596, 3, 38, 19, 0, 596, 597, 5, 312, 0, 0, 597, 598, 3, 358, 179, 0, 598, 623, 1, 0, 0, 0, 599, 600, 5, 438, 0, 0, 600, 601, 5, 487, 0, 0, 601, 623, 3, 38, 19, 0, 602, 603, 5, 438, 0, 0, 603, 604, 5, 454, 0, 0, 604, 605, 5, 457, 0, 0, 605, 606, 5, 434, 0, 0, 606, 607, 3, 38, 19, 0, 607, 608, 5, 312, 0, 0, 608, 609, 3, 358, 179, 0, 609, 610, 5, 467, 0, 0, 610, 611, 3, 358, 179, 0, 611, 623, 1, 0, 0, 0, 612, 613, 5, 438, 0, 0, 613, 614, 5, 444, 0, 0, 614, 615, 5, 457, 0, 0, 615, 616, 5, 434, 0, 0, 616, 617, 3, 38, 19, 0, 617, 618, 5, 146, 0, 0, 618, 619, 3, 358, 179, 0, 619, 620, 5, 17, 0, 0, 620, 621, 3, 358, 179, 0, 621, 623, 1, 0, 0, 0, 622, 572, 1, 0, 0, 0, 622, 580, 1, 0, 0, 0, 622, 592, 1, 0, 0, 0, 622, 599, 1, 0, 0, 0, 622, 602, 1, 0, 0, 0, 622, 612, 1, 0, 0, 0, 623, 37, 1, 0, 0, 0, 624, 626, 5, 535, 0, 0, 625, 624, 1, 0, 0, 0, 625, 626, 1, 0, 0, 0, 626, 627, 1, 0, 0, 0, 627, 629, 3, 358, 179, 0, 628, 625, 1, 0, 0, 0, 629, 630, 1, 0, 0, 0, 630, 628, 1, 0, 0, 0, 630, 631, 1, 0, 0, 0, 631, 39, 1, 0, 0, 0, 632, 635, 3, 42, 21, 0, 633, 635, 3, 44, 22, 0, 634, 632, 1, 0, 0, 0, 634, 633, 1, 0, 0, 0, 635, 41, 1, 0, 0, 0, 636, 638, 5, 72, 0, 0, 637, 639, 5, 498, 0, 0, 638, 637, 1, 0, 0, 0, 638, 639, 1, 0, 0, 0, 639, 640, 1, 0, 0, 0, 640, 642, 5, 374, 0, 0, 641, 643, 3, 364, 182, 0, 642, 641, 1, 0, 0, 0, 642, 643, 1, 0, 0, 0, 643, 644, 1, 0, 0, 0, 644, 645, 3, 350, 175, 0, 645, 646, 5, 517, 0, 0, 646, 651, 3, 46, 23, 0, 647, 648, 5, 521, 0, 0, 648, 650, 3, 46, 23, 0, 649, 647, 1, 0, 0, 0, 650, 653, 1, 0, 0, 0, 651, 649, 1, 0, 0, 0, 651, 652, 1, 0, 0, 0, 652, 656, 1, 0, 0, 0, 653, 651, 1, 0, 0, 0, 654, 655, 5, 521, 0, 0, 655, 657, 3, 86, 43, 0, 656, 654, 1, 0, 0, 0, 656, 657, 1, 0, 0, 0, 657, 660, 1, 0, 0, 0, 658, 659, 5, 521, 0, 0, 659, 661, 3, 88, 44, 0, 660, 658, 1, 0, 0, 0, 660, 661, 1, 0, 0, 0, 661, 664, 1, 0, 0, 0, 662, 663, 5, 521, 0, 0, 663, 665, 3, 92, 46, 0, 664, 662, 1, 0, 0, 0, 664, 665, 1, 0, 0, 0, 665, 666, 1, 0, 0, 0, 666, 669, 5, 518, 0, 0, 667, 668, 5, 59, 0, 0, 668, 670, 5, 538, 0, 0, 669, 667, 1, 0, 0, 0, 669, 670, 1, 0, 0, 0, 670, 672, 1, 0, 0, 0, 671, 673, 3, 94, 47, 0, 672, 671, 1, 0, 0, 0, 672, 673, 1, 0, 0, 0, 673, 674, 1, 0, 0, 0, 674, 676, 3, 362, 181, 0, 675, 677, 3, 102, 51, 0, 676, 675, 1, 0, 0, 0, 676, 677, 1, 0, 0, 0, 677, 43, 1, 0, 0, 0, 678, 679, 5, 72, 0, 0, 679, 681, 5, 374, 0, 0, 680, 682, 3, 364, 182, 0, 681, 680, 1, 0, 0, 0, 681, 682, 1, 0, 0, 0, 682, 683, 1, 0, 0, 0, 683, 684, 3, 350, 175, 0, 684, 687, 3, 362, 181, 0, 685, 686, 5, 17, 0, 0, 686, 688, 3, 164, 82, 0, 687, 685, 1, 0, 0, 0, 687, 688, 1, 0, 0, 0, 688, 45, 1, 0, 0, 0, 689, 693, 3, 48, 24, 0, 690, 693, 3, 78, 39, 0, 691, 693, 3, 82, 41, 0, 692, 689, 1, 0, 0, 0, 692, 690, 1, 0, 0, 0, 692, 691, 1, 0, 0, 0, 693, 47, 1, 0, 0, 0, 694, 695, 3, 50, 25, 0, 695, 697, 3, 62, 31, 0, 696, 698, 3, 76, 38, 0, 697, 696, 1, 0, 0, 0, 697, 698, 1, 0, 0, 0, 698, 701, 1, 0, 0, 0, 699, 700, 5, 59, 0, 0, 700, 702, 5, 538, 0, 0, 701, 699, 1, 0, 0, 0, 701, 702, 1, 0, 0, 0, 702, 49, 1, 0, 0, 0, 703, 706, 3, 358, 179, 0, 704, 706, 3, 282, 141, 0, 705, 703, 1, 0, 0, 0, 705, 704, 1, 0, 0, 0, 706, 51, 1, 0, 0, 0, 707, 708, 1, 0, 0, 0, 708, 53, 1, 0, 0, 0, 709, 713, 3, 360, 180, 0, 710, 711, 4, 27, 0, 0, 711, 713, 3, 52, 26, 0, 712, 709, 1, 0, 0, 0, 712, 710, 1, 0, 0, 0, 713, 55, 1, 0, 0, 0, 714, 715, 3, 358, 179, 0, 715, 57, 1, 0, 0, 0, 716, 720, 3, 360, 180, 0, 717, 718, 4, 29, 1, 0, 718, 720, 3, 52, 26, 0, 719, 716, 1, 0, 0, 0, 719, 717, 1, 0, 0, 0, 720, 59, 1, 0, 0, 0, 721, 722, 5, 517, 0, 0, 722, 727, 3, 54, 27, 0, 723, 724, 5, 521, 0, 0, 724, 726, 3, 54, 27, 0, 725, 723, 1, 0, 0, 0, 726, 729, 1, 0, 0, 0, 727, 725, 1, 0, 0, 0, 727, 728, 1, 0, 0, 0, 728, 730, 1, 0, 0, 0, 729, 727, 1, 0, 0, 0, 730, 731, 5, 518, 0, 0, 731, 61, 1, 0, 0, 0, 732, 770, 7, 7, 0, 0, 733, 735, 7, 8, 0, 0, 734, 736, 3, 64, 32, 0, 735, 734, 1, 0, 0, 0, 735, 736, 1, 0, 0, 0, 736, 770, 1, 0, 0, 0, 737, 739, 5, 380, 0, 0, 738, 740, 3, 64, 32, 0, 739, 738, 1, 0, 0, 0, 739, 740, 1, 0, 0, 0, 740, 747, 1, 0, 0, 0, 741, 743, 7, 9, 0, 0, 742, 744, 5, 207, 0, 0, 743, 742, 1, 0, 0, 0, 743, 744, 1, 0, 0, 0, 744, 745, 1, 0, 0, 0, 745, 746, 5, 379, 0, 0, 746, 748, 5, 505, 0, 0, 747, 741, 1, 0, 0, 0, 747, 748, 1, 0, 0, 0, 748, 770, 1, 0, 0, 0, 749, 751, 7, 10, 0, 0, 750, 752, 3, 66, 33, 0, 751, 750, 1, 0, 0, 0, 751, 752, 1, 0, 0, 0, 752, 770, 1, 0, 0, 0, 753, 755, 7, 11, 0, 0, 754, 756, 3, 70, 35, 0, 755, 754, 1, 0, 0, 0, 755, 756, 1, 0, 0, 0, 756, 770, 1, 0, 0, 0, 757, 759, 5, 470, 0, 0, 758, 760, 3, 72, 36, 0, 759, 758, 1, 0, 0, 0, 759, 760, 1, 0, 0, 0, 760, 770, 1, 0, 0, 0, 761, 763, 5, 322, 0, 0, 762, 764, 3, 74, 37, 0, 763, 762, 1, 0, 0, 0, 763, 764, 1, 0, 0, 0, 764, 770, 1, 0, 0, 0, 765, 767, 5, 295, 0, 0, 766, 768, 3, 68, 34, 0, 767, 766, 1, 0, 0, 0, 767, 768, 1, 0, 0, 0, 768, 770, 1, 0, 0, 0, 769, 732, 1, 0, 0, 0, 769, 733, 1, 0, 0, 0, 769, 737, 1, 0, 0, 0, 769, 749, 1, 0, 0, 0, 769, 753, 1, 0, 0, 0, 769, 757, 1, 0, 0, 0, 769, 761, 1, 0, 0, 0, 769, 765, 1, 0, 0, 0, 770, 63, 1, 0, 0, 0, 771, 772, 5, 517, 0, 0, 772, 773, 3, 392, 196, 0, 773, 774, 5, 518, 0, 0, 774, 65, 1, 0, 0, 0, 775, 776, 5, 517, 0, 0, 776, 779, 3, 392, 196, 0, 777, 778, 5, 521, 0, 0, 778, 780, 3, 392, 196, 0, 779, 777, 1, 0, 0, 0, 779, 780, 1, 0, 0, 0, 780, 781, 1, 0, 0, 0, 781, 782, 5, 518, 0, 0, 782, 67, 1, 0, 0, 0, 783, 784, 5, 517, 0, 0, 784, 787, 3, 390, 195, 0, 785, 786, 5, 521, 0, 0, 786, 788, 3, 390, 195, 0, 787, 785, 1, 0, 0, 0, 787, 788, 1, 0, 0, 0, 788, 789, 1, 0, 0, 0, 789, 790, 5, 518, 0, 0, 790, 69, 1, 0, 0, 0, 791, 792, 5, 508, 0, 0, 792, 793, 3, 62, 31, 0, 793, 794, 5, 507, 0, 0, 794, 71, 1, 0, 0, 0, 795, 796, 5, 508, 0, 0, 796, 797, 3, 62, 31, 0, 797, 798, 5, 521, 0, 0, 798, 799, 3, 62, 31, 0, 799, 800, 1, 0, 0, 0, 800, 801, 5, 507, 0, 0, 801, 73, 1, 0, 0, 0, 802, 803, 5, 508, 0, 0, 803, 804, 3, 54, 27, 0, 804, 811, 3, 62, 31, 0, 805, 806, 5, 521, 0, 0, 806, 807, 3, 54, 27, 0, 807, 808, 3, 62, 31, 0, 808, 810, 1, 0, 0, 0, 809, 805, 1, 0, 0, 0, 810, 813, 1, 0, 0, 0, 811, 809, 1, 0, 0, 0, 811, 812, 1, 0, 0, 0, 812, 814, 1, 0, 0, 0, 813, 811, 1, 0, 0, 0, 814, 815, 5, 507, 0, 0, 815, 831, 1, 0, 0, 0, 816, 817, 5, 517, 0, 0, 817, 818, 3, 54, 27, 0, 818, 825, 3, 62, 31, 0, 819, 820, 5, 521, 0, 0, 820, 821, 3, 54, 27, 0, 821, 822, 3, 62, 31, 0, 822, 824, 1, 0, 0, 0, 823, 819, 1, 0, 0, 0, 824, 827, 1, 0, 0, 0, 825, 823, 1, 0, 0, 0, 825, 826, 1, 0, 0, 0, 826, 828, 1, 0, 0, 0, 827, 825, 1, 0, 0, 0, 828, 829, 5, 518, 0, 0, 829, 831, 1, 0, 0, 0, 830, 802, 1, 0, 0, 0, 830, 816, 1, 0, 0, 0, 831, 75, 1, 0, 0, 0, 832, 833, 5, 64, 0, 0, 833, 835, 3, 90, 45, 0, 834, 832, 1, 0, 0, 0, 834, 835, 1, 0, 0, 0, 835, 836, 1, 0, 0, 0, 836, 837, 5, 289, 0, 0, 837, 840, 5, 467, 0, 0, 838, 839, 5, 242, 0, 0, 839, 841, 5, 125, 0, 0, 840, 838, 1, 0, 0, 0, 840, 841, 1, 0, 0, 0, 841, 847, 1, 0, 0, 0, 842, 844, 5, 242, 0, 0, 843, 842, 1, 0, 0, 0, 843, 844, 1, 0, 0, 0, 844, 845, 1, 0, 0, 0, 845, 847, 5, 245, 0, 0, 846, 834, 1, 0, 0, 0, 846, 843, 1, 0, 0, 0, 847, 77, 1, 0, 0, 0, 848, 849, 3, 50, 25, 0, 849, 850, 3, 62, 31, 0, 850, 853, 5, 219, 0, 0, 851, 852, 5, 151, 0, 0, 852, 854, 3, 80, 40, 0, 853, 851, 1, 0, 0, 0, 853, 854, 1, 0, 0, 0, 854, 856, 1, 0, 0, 0, 855, 857, 5, 424, 0, 0, 856, 855, 1, 0, 0, 0, 856, 857, 1, 0, 0, 0, 857, 79, 1, 0, 0, 0, 858, 859, 5, 538, 0, 0, 859, 81, 1, 0, 0, 0, 860, 861, 3, 50, 25, 0, 861, 862, 5, 17, 0, 0, 862, 865, 3, 84, 42, 0, 863, 864, 5, 59, 0, 0, 864, 866, 5, 538, 0, 0, 865, 863, 1, 0, 0, 0, 865, 866, 1, 0, 0, 0, 866, 83, 1, 0, 0, 0, 867, 868, 3, 282, 141, 0, 868, 85, 1, 0, 0, 0, 869, 870, 5, 425, 0, 0, 870, 871, 5, 146, 0, 0, 871, 872, 3, 54, 27, 0, 872, 873, 5, 17, 0, 0, 873, 874, 3, 282, 141, 0, 874, 87, 1, 0, 0, 0, 875, 876, 5, 64, 0, 0, 876, 878, 3, 90, 45, 0, 877, 875, 1, 0, 0, 0, 877, 878, 1, 0, 0, 0, 878, 879, 1, 0, 0, 0, 879, 880, 5, 289, 0, 0, 880, 881, 5, 467, 0, 0, 881, 882, 3, 60, 30, 0, 882, 883, 5, 242, 0, 0, 883, 884, 5, 125, 0, 0, 884, 89, 1, 0, 0, 0, 885, 886, 3, 334, 167, 0, 886, 91, 1, 0, 0, 0, 887, 888, 5, 278, 0, 0, 888, 889, 5, 146, 0, 0, 889, 890, 5, 372, 0, 0, 890, 93, 1, 0, 0, 0, 891, 892, 5, 270, 0, 0, 892, 893, 5, 34, 0, 0, 893, 894, 3, 96, 48, 0, 894, 95, 1, 0, 0, 0, 895, 896, 5, 517, 0, 0, 896, 901, 3, 98, 49, 0, 897, 898, 5, 521, 0, 0, 898, 900, 3, 98, 49, 0, 899, 897, 1, 0, 0, 0, 900, 903, 1, 0, 0, 0, 901, 899, 1, 0, 0, 0, 901, 902, 1, 0, 0, 0, 902, 904, 1, 0, 0, 0, 903, 901, 1, 0, 0, 0, 904, 905, 5, 518, 0, 0, 905, 97, 1, 0, 0, 0, 906, 919, 3, 54, 27, 0, 907, 908, 5, 517, 0, 0, 908, 913, 3, 100, 50, 0, 909, 910, 5, 521, 0, 0, 910, 912, 3, 100, 50, 0, 911, 909, 1, 0, 0, 0, 912, 915, 1, 0, 0, 0, 913, 911, 1, 0, 0, 0, 913, 914, 1, 0, 0, 0, 914, 916, 1, 0, 0, 0, 915, 913, 1, 0, 0, 0, 916, 917, 5, 518, 0, 0, 917, 919, 1, 0, 0, 0, 918, 906, 1, 0, 0, 0, 918, 907, 1, 0, 0, 0, 919, 99, 1, 0, 0, 0, 920, 923, 3, 310, 155, 0, 921, 923, 3, 386, 193, 0, 922, 920, 1, 0, 0, 0, 922, 921, 1, 0, 0, 0, 923, 101, 1, 0, 0, 0, 924, 925, 5, 203, 0, 0, 925, 934, 3, 352, 176, 0, 926, 930, 5, 517, 0, 0, 927, 929, 3, 104, 52, 0, 928, 927, 1, 0, 0, 0, 929, 932, 1, 0, 0, 0, 930, 928, 1, 0, 0, 0, 930, 931, 1, 0, 0, 0, 931, 933, 1, 0, 0, 0, 932, 930, 1, 0, 0, 0, 933, 935, 5, 518, 0, 0, 934, 926, 1, 0, 0, 0, 934, 935, 1, 0, 0, 0, 935, 103, 1, 0, 0, 0, 936, 937, 7, 12, 0, 0, 937, 941, 7, 13, 0, 0, 938, 939, 7, 14, 0, 0, 939, 941, 7, 15, 0, 0, 940, 936, 1, 0, 0, 0, 940, 938, 1, 0, 0, 0, 941, 105, 1, 0, 0, 0, 942, 943, 5, 72, 0, 0, 943, 944, 5, 442, 0, 0, 944, 945, 3, 344, 172, 0, 945, 946, 3, 362, 181, 0, 946, 107, 1, 0, 0, 0, 947, 948, 5, 72, 0, 0, 948, 950, 5, 448, 0, 0, 949, 951, 3, 364, 182, 0, 950, 949, 1, 0, 0, 0, 950, 951, 1, 0, 0, 0, 951, 952, 1, 0, 0, 0, 952, 955, 3, 348, 174, 0, 953, 954, 5, 59, 0, 0, 954, 956, 5, 538, 0, 0, 955, 953, 1, 0, 0, 0, 955, 956, 1, 0, 0, 0, 956, 957, 1, 0, 0, 0, 957, 958, 3, 362, 181, 0, 958, 109, 1, 0, 0, 0, 959, 961, 5, 72, 0, 0, 960, 962, 5, 498, 0, 0, 961, 960, 1, 0, 0, 0, 961, 962, 1, 0, 0, 0, 962, 963, 1, 0, 0, 0, 963, 965, 5, 502, 0, 0, 964, 966, 3, 364, 182, 0, 965, 964, 1, 0, 0, 0, 965, 966, 1, 0, 0, 0, 966, 967, 1, 0, 0, 0, 967, 969, 3, 356, 178, 0, 968, 970, 3, 60, 30, 0, 969, 968, 1, 0, 0, 0, 969, 970, 1, 0, 0, 0, 970, 973, 1, 0, 0, 0, 971, 972, 5, 59, 0, 0, 972, 974, 5, 538, 0, 0, 973, 971, 1, 0, 0, 0, 973, 974, 1, 0, 0, 0, 974, 975, 1, 0, 0, 0, 975, 976, 5, 17, 0, 0, 976, 977, 3, 164, 82, 0, 977, 111, 1, 0, 0, 0, 978, 982, 5, 72, 0, 0, 979, 983, 5, 498, 0, 0, 980, 981, 5, 498, 0, 0, 981, 983, 5, 371, 0, 0, 982, 979, 1, 0, 0, 0, 982, 980, 1, 0, 0, 0, 982, 983, 1, 0, 0, 0, 983, 984, 1, 0, 0, 0, 984, 986, 5, 153, 0, 0, 985, 987, 3, 364, 182, 0, 986, 985, 1, 0, 0, 0, 986, 987, 1, 0, 0, 0, 987, 988, 1, 0, 0, 0, 988, 989, 3, 296, 148, 0, 989, 990, 5, 17, 0, 0, 990, 993, 3, 334, 167, 0, 991, 992, 5, 196, 0, 0, 992, 994, 7, 16, 0, 0, 993, 991, 1, 0, 0, 0, 993, 994, 1, 0, 0, 0, 994, 996, 1, 0, 0, 0, 995, 997, 3, 114, 57, 0, 996, 995, 1, 0, 0, 0, 996, 997, 1, 0, 0, 0, 997, 113, 1, 0, 0, 0, 998, 999, 5, 413, 0, 0, 999, 1000, 5, 464, 0, 0, 1000, 1006, 3, 116, 58, 0, 1001, 1002, 5, 521, 0, 0, 1002, 1003, 5, 464, 0, 0, 1003, 1005, 3, 116, 58, 0, 1004, 1001, 1, 0, 0, 0, 1005, 1008, 1, 0, 0, 0, 1006, 1004, 1, 0, 0, 0, 1006, 1007, 1, 0, 0, 0, 1007, 115, 1, 0, 0, 0, 1008, 1006, 1, 0, 0, 0, 1009, 1010, 5, 538, 0, 0, 1010, 117, 1, 0, 0, 0, 1011, 1012, 5, 8, 0, 0, 1012, 1014, 5, 374, 0, 0, 1013, 1015, 3, 366, 183, 0, 1014, 1013, 1, 0, 0, 0, 1014, 1015, 1, 0, 0, 0, 1015, 1016, 1, 0, 0, 0, 1016, 1022, 3, 352, 176, 0, 1017, 1023, 3, 120, 60, 0, 1018, 1023, 3, 122, 61, 0, 1019, 1023, 3, 124, 62, 0, 1020, 1023, 3, 126, 63, 0, 1021, 1023, 3, 128, 64, 0, 1022, 1017, 1, 0, 0, 0, 1022, 1018, 1, 0, 0, 0, 1022, 1019, 1, 0, 0, 0, 1022, 1020, 1, 0, 0, 0, 1022, 1021, 1, 0, 0, 0, 1023, 119, 1, 0, 0, 0, 1024, 1026, 5, 312, 0, 0, 1025, 1027, 3, 358, 179, 0, 1026, 1025, 1, 0, 0, 0, 1026, 1027, 1, 0, 0, 0, 1027, 1028, 1, 0, 0, 0, 1028, 1029, 5, 389, 0, 0, 1029, 1030, 3, 358, 179, 0, 1030, 121, 1, 0, 0, 0, 1031, 1032, 5, 341, 0, 0, 1032, 1033, 3, 368, 184, 0, 1033, 123, 1, 0, 0, 0, 1034, 1035, 5, 438, 0, 0, 1035, 1036, 5, 64, 0, 0, 1036, 1037, 3, 90, 45, 0, 1037, 1038, 5, 289, 0, 0, 1038, 1039, 5, 467, 0, 0, 1039, 1041, 3, 60, 30, 0, 1040, 1042, 3, 130, 65, 0, 1041, 1040, 1, 0, 0, 0, 1041, 1042, 1, 0, 0, 0, 1042, 125, 1, 0, 0, 0, 1043, 1044, 5, 116, 0, 0, 1044, 1045, 5, 64, 0, 0, 1045, 1046, 3, 90, 45, 0, 1046, 127, 1, 0, 0, 0, 1047, 1048, 5, 438, 0, 0, 1048, 1049, 5, 404, 0, 0, 1049, 1050, 3, 60, 30, 0, 1050, 129, 1, 0, 0, 0, 1051, 1052, 5, 242, 0, 0, 1052, 1053, 5, 125, 0, 0, 1053, 131, 1, 0, 0, 0, 1054, 1055, 5, 8, 0, 0, 1055, 1056, 5, 502, 0, 0, 1056, 1060, 3, 354, 177, 0, 1057, 1061, 3, 120, 60, 0, 1058, 1059, 5, 17, 0, 0, 1059, 1061, 3, 164, 82, 0, 1060, 1057, 1, 0, 0, 0, 1060, 1058, 1, 0, 0, 0, 1061, 133, 1, 0, 0, 0, 1062, 1063, 5, 8, 0, 0, 1063, 1064, 5, 448, 0, 0, 1064, 1065, 3, 346, 173, 0, 1065, 1066, 3, 122, 61, 0, 1066, 135, 1, 0, 0, 0, 1067, 1071, 5, 8, 0, 0, 1068, 1072, 5, 498, 0, 0, 1069, 1070, 5, 498, 0, 0, 1070, 1072, 5, 371, 0, 0, 1071, 1068, 1, 0, 0, 0, 1071, 1069, 1, 0, 0, 0, 1071, 1072, 1, 0, 0, 0, 1072, 1073, 1, 0, 0, 0, 1073, 1075, 5, 153, 0, 0, 1074, 1076, 3, 366, 183, 0, 1075, 1074, 1, 0, 0, 0, 1075, 1076, 1, 0, 0, 0, 1076, 1077, 1, 0, 0, 0, 1077, 1078, 3, 298, 149, 0, 1078, 1079, 5, 17, 0, 0, 1079, 1082, 3, 334, 167, 0, 1080, 1081, 5, 196, 0, 0, 1081, 1083, 7, 16, 0, 0, 1082, 1080, 1, 0, 0, 0, 1082, 1083, 1, 0, 0, 0, 1083, 137, 1, 0, 0, 0, 1084, 1085, 5, 116, 0, 0, 1085, 1087, 5, 442, 0, 0, 1086, 1088, 3, 366, 183, 0, 1087, 1086, 1, 0, 0, 0, 1087, 1088, 1, 0, 0, 0, 1088, 1089, 1, 0, 0, 0, 1089, 1090, 3, 342, 171, 0, 1090, 139, 1, 0, 0, 0, 1091, 1093, 5, 116, 0, 0, 1092, 1094, 5, 498, 0, 0, 1093, 1092, 1, 0, 0, 0, 1093, 1094, 1, 0, 0, 0, 1094, 1095, 1, 0, 0, 0, 1095, 1097, 5, 374, 0, 0, 1096, 1098, 3, 366, 183, 0, 1097, 1096, 1, 0, 0, 0, 1097, 1098, 1, 0, 0, 0, 1098, 1099, 1, 0, 0, 0, 1099, 1100, 3, 352, 176, 0, 1100, 141, 1, 0, 0, 0, 1101, 1102, 5, 116, 0, 0, 1102, 1104, 5, 448, 0, 0, 1103, 1105, 3, 366, 183, 0, 1104, 1103, 1, 0, 0, 0, 1104, 1105, 1, 0, 0, 0, 1105, 1106, 1, 0, 0, 0, 1106, 1108, 3, 346, 173, 0, 1107, 1109, 7, 17, 0, 0, 1108, 1107, 1, 0, 0, 0, 1108, 1109, 1, 0, 0, 0, 1109, 143, 1, 0, 0, 0, 1110, 1112, 5, 116, 0, 0, 1111, 1113, 5, 498, 0, 0, 1112, 1111, 1, 0, 0, 0, 1112, 1113, 1, 0, 0, 0, 1113, 1114, 1, 0, 0, 0, 1114, 1116, 5, 502, 0, 0, 1115, 1117, 3, 366, 183, 0, 1116, 1115, 1, 0, 0, 0, 1116, 1117, 1, 0, 0, 0, 1117, 1118, 1, 0, 0, 0, 1118, 1119, 3, 354, 177, 0, 1119, 145, 1, 0, 0, 0, 1120, 1124, 5, 116, 0, 0, 1121, 1125, 5, 498, 0, 0, 1122, 1123, 5, 498, 0, 0, 1123, 1125, 5, 371, 0, 0, 1124, 1121, 1, 0, 0, 0, 1124, 1122, 1, 0, 0, 0, 1124, 1125, 1, 0, 0, 0, 1125, 1126, 1, 0, 0, 0, 1126, 1128, 5, 153, 0, 0, 1127, 1129, 3, 366, 183, 0, 1128, 1127, 1, 0, 0, 0, 1128, 1129, 1, 0, 0, 0, 1129, 1130, 1, 0, 0, 0, 1130, 1131, 3, 298, 149, 0, 1131, 147, 1, 0, 0, 0, 1132, 1134, 5, 132, 0, 0, 1133, 1132, 1, 0, 0, 0, 1133, 1134, 1, 0, 0, 0, 1134, 1135, 1, 0, 0, 0, 1135, 1140, 3, 150, 75, 0, 1136, 1140, 3, 160, 80, 0, 1137, 1138, 5, 132, 0, 0, 1138, 1140, 3, 162, 81, 0, 1139, 1133, 1, 0, 0, 0, 1139, 1136, 1, 0, 0, 0, 1139, 1137, 1, 0, 0, 0, 1140, 149, 1, 0, 0, 0, 1141, 1142, 5, 177, 0, 0, 1142, 1143, 7, 18, 0, 0, 1143, 1152, 3, 352, 176, 0, 1144, 1146, 3, 152, 76, 0, 1145, 1144, 1, 0, 0, 0, 1145, 1146, 1, 0, 0, 0, 1146, 1148, 1, 0, 0, 0, 1147, 1149, 3, 60, 30, 0, 1148, 1147, 1, 0, 0, 0, 1148, 1149, 1, 0, 0, 0, 1149, 1150, 1, 0, 0, 0, 1150, 1153, 3, 164, 82, 0, 1151, 1153, 3, 154, 77, 0, 1152, 1145, 1, 0, 0, 0, 1152, 1151, 1, 0, 0, 0, 1153, 151, 1, 0, 0, 0, 1154, 1155, 5, 269, 0, 0, 1155, 1156, 3, 368, 184, 0, 1156, 153, 1, 0, 0, 0, 1157, 1158, 5, 415, 0, 0, 1158, 1163, 3, 156, 78, 0, 1159, 1160, 5, 521, 0, 0, 1160, 1162, 3, 156, 78, 0, 1161, 1159, 1, 0, 0, 0, 1162, 1165, 1, 0, 0, 0, 1163, 1161, 1, 0, 0, 0, 1163, 1164, 1, 0, 0, 0, 1164, 155, 1, 0, 0, 0, 1165, 1163, 1, 0, 0, 0, 1166, 1167, 5, 517, 0, 0, 1167, 1172, 3, 158, 79, 0, 1168, 1169, 5, 521, 0, 0, 1169, 1171, 3, 158, 79, 0, 1170, 1168, 1, 0, 0, 0, 1171, 1174, 1, 0, 0, 0, 1172, 1170, 1, 0, 0, 0, 1172, 1173, 1, 0, 0, 0, 1173, 1175, 1, 0, 0, 0, 1174, 1172, 1, 0, 0, 0, 1175, 1176, 5, 518, 0, 0, 1176, 157, 1, 0, 0, 0, 1177, 1180, 3, 386, 193, 0, 1178, 1180, 3, 292, 146, 0, 1179, 1177, 1, 0, 0, 0, 1179, 1178, 1, 0, 0, 0, 1180, 159, 1, 0, 0, 0, 1181, 1182, 5, 24, 0, 0, 1182, 1183, 5, 355, 0, 0, 1183, 1184, 5, 341, 0, 0, 1184, 1188, 5, 522, 0, 0, 1185, 1186, 3, 150, 75, 0, 1186, 1187, 5, 522, 0, 0, 1187, 1189, 1, 0, 0, 0, 1188, 1185, 1, 0, 0, 0, 1189, 1190, 1, 0, 0, 0, 1190, 1188, 1, 0, 0, 0, 1190, 1191, 1, 0, 0, 0, 1191, 1192, 1, 0, 0, 0, 1192, 1193, 5, 122, 0, 0, 1193, 161, 1, 0, 0, 0, 1194, 1195, 5, 355, 0, 0, 1195, 1196, 5, 341, 0, 0, 1196, 1200, 5, 24, 0, 0, 1197, 1198, 3, 150, 75, 0, 1198, 1199, 5, 522, 0, 0, 1199, 1201, 1, 0, 0, 0, 1200, 1197, 1, 0, 0, 0, 1201, 1202, 1, 0, 0, 0, 1202, 1200, 1, 0, 0, 0, 1202, 1203, 1, 0, 0, 0, 1203, 1204, 1, 0, 0, 0, 1204, 1205, 5, 122, 0, 0, 1205, 163, 1, 0, 0, 0, 1206, 1207, 6, 82, -1, 0, 1207, 1230, 3, 166, 83, 0, 1208, 1209, 3, 168, 84, 0, 1209, 1210, 3, 164, 82, 5, 1210, 1230, 1, 0, 0, 0, 1211, 1212, 5, 517, 0, 0, 1212, 1213, 3, 164, 82, 0, 1213, 1214, 5, 518, 0, 0, 1214, 1230, 1, 0, 0, 0, 1215, 1217, 3, 176, 88, 0, 1216, 1218, 3, 254, 127, 0, 1217, 1216, 1, 0, 0, 0, 1217, 1218, 1, 0, 0, 0, 1218, 1220, 1, 0, 0, 0, 1219, 1221, 3, 258, 129, 0, 1220, 1219, 1, 0, 0, 0, 1220, 1221, 1, 0, 0, 0, 1221, 1230, 1, 0, 0, 0, 1222, 1224, 3, 174, 87, 0, 1223, 1225, 3, 254, 127, 0, 1224, 1223, 1, 0, 0, 0, 1224, 1225, 1, 0, 0, 0, 1225, 1227, 1, 0, 0, 0, 1226, 1228, 3, 258, 129, 0, 1227, 1226, 1, 0, 0, 0, 1227, 1228, 1, 0, 0, 0, 1228, 1230, 1, 0, 0, 0, 1229, 1206, 1, 0, 0, 0, 1229, 1208, 1, 0, 0, 0, 1229, 1211, 1, 0, 0, 0, 1229, 1215, 1, 0, 0, 0, 1229, 1222, 1, 0, 0, 0, 1230, 1245, 1, 0, 0, 0, 1231, 1232, 10, 3, 0, 0, 1232, 1234, 7, 19, 0, 0, 1233, 1235, 5, 5, 0, 0, 1234, 1233, 1, 0, 0, 0, 1234, 1235, 1, 0, 0, 0, 1235, 1236, 1, 0, 0, 0, 1236, 1238, 3, 164, 82, 0, 1237, 1239, 3, 254, 127, 0, 1238, 1237, 1, 0, 0, 0, 1238, 1239, 1, 0, 0, 0, 1239, 1241, 1, 0, 0, 0, 1240, 1242, 3, 258, 129, 0, 1241, 1240, 1, 0, 0, 0, 1241, 1242, 1, 0, 0, 0, 1242, 1244, 1, 0, 0, 0, 1243, 1231, 1, 0, 0, 0, 1244, 1247, 1, 0, 0, 0, 1245, 1243, 1, 0, 0, 0, 1245, 1246, 1, 0, 0, 0, 1246, 165, 1, 0, 0, 0, 1247, 1245, 1, 0, 0, 0, 1248, 1249, 5, 415, 0, 0, 1249, 1254, 3, 282, 141, 0, 1250, 1251, 5, 521, 0, 0, 1251, 1253, 3, 282, 141, 0, 1252, 1250, 1, 0, 0, 0, 1253, 1256, 1, 0, 0, 0, 1254, 1252, 1, 0, 0, 0, 1254, 1255, 1, 0, 0, 0, 1255, 167, 1, 0, 0, 0, 1256, 1254, 1, 0, 0, 0, 1257, 1258, 5, 434, 0, 0, 1258, 1263, 3, 170, 85, 0, 1259, 1260, 5, 521, 0, 0, 1260, 1262, 3, 170, 85, 0, 1261, 1259, 1, 0, 0, 0, 1262, 1265, 1, 0, 0, 0, 1263, 1261, 1, 0, 0, 0, 1263, 1264, 1, 0, 0, 0, 1264, 169, 1, 0, 0, 0, 1265, 1263, 1, 0, 0, 0, 1266, 1278, 3, 172, 86, 0, 1267, 1268, 5, 517, 0, 0, 1268, 1273, 3, 54, 27, 0, 1269, 1270, 5, 521, 0, 0, 1270, 1272, 3, 54, 27, 0, 1271, 1269, 1, 0, 0, 0, 1272, 1275, 1, 0, 0, 0, 1273, 1271, 1, 0, 0, 0, 1273, 1274, 1, 0, 0, 0, 1274, 1276, 1, 0, 0, 0, 1275, 1273, 1, 0, 0, 0, 1276, 1277, 5, 518, 0, 0, 1277, 1279, 1, 0, 0, 0, 1278, 1267, 1, 0, 0, 0, 1278, 1279, 1, 0, 0, 0, 1279, 1280, 1, 0, 0, 0, 1280, 1281, 5, 17, 0, 0, 1281, 1282, 5, 517, 0, 0, 1282, 1283, 3, 164, 82, 0, 1283, 1284, 5, 518, 0, 0, 1284, 171, 1, 0, 0, 0, 1285, 1286, 3, 334, 167, 0, 1286, 173, 1, 0, 0, 0, 1287, 1289, 3, 176, 88, 0, 1288, 1290, 3, 196, 98, 0, 1289, 1288, 1, 0, 0, 0, 1289, 1290, 1, 0, 0, 0, 1290, 1292, 1, 0, 0, 0, 1291, 1293, 3, 228, 114, 0, 1292, 1291, 1, 0, 0, 0, 1292, 1293, 1, 0, 0, 0, 1293, 1295, 1, 0, 0, 0, 1294, 1296, 3, 230, 115, 0, 1295, 1294, 1, 0, 0, 0, 1295, 1296, 1, 0, 0, 0, 1296, 1298, 1, 0, 0, 0, 1297, 1299, 3, 244, 122, 0, 1298, 1297, 1, 0, 0, 0, 1298, 1299, 1, 0, 0, 0, 1299, 1301, 1, 0, 0, 0, 1300, 1302, 3, 246, 123, 0, 1301, 1300, 1, 0, 0, 0, 1301, 1302, 1, 0, 0, 0, 1302, 1308, 1, 0, 0, 0, 1303, 1304, 3, 176, 88, 0, 1304, 1305, 3, 196, 98, 0, 1305, 1306, 3, 252, 126, 0, 1306, 1308, 1, 0, 0, 0, 1307, 1287, 1, 0, 0, 0, 1307, 1303, 1, 0, 0, 0, 1308, 175, 1, 0, 0, 0, 1309, 1311, 5, 337, 0, 0, 1310, 1312, 3, 396, 198, 0, 1311, 1310, 1, 0, 0, 0, 1311, 1312, 1, 0, 0, 0, 1312, 1313, 1, 0, 0, 0, 1313, 1314, 3, 178, 89, 0, 1314, 177, 1, 0, 0, 0, 1315, 1320, 3, 180, 90, 0, 1316, 1317, 5, 521, 0, 0, 1317, 1319, 3, 180, 90, 0, 1318, 1316, 1, 0, 0, 0, 1319, 1322, 1, 0, 0, 0, 1320, 1318, 1, 0, 0, 0, 1320, 1321, 1, 0, 0, 0, 1321, 179, 1, 0, 0, 0, 1322, 1320, 1, 0, 0, 0, 1323, 1347, 3, 182, 91, 0, 1324, 1330, 3, 186, 93, 0, 1325, 1331, 3, 188, 94, 0, 1326, 1328, 5, 17, 0, 0, 1327, 1326, 1, 0, 0, 0, 1327, 1328, 1, 0, 0, 0, 1328, 1329, 1, 0, 0, 0, 1329, 1331, 3, 282, 141, 0, 1330, 1325, 1, 0, 0, 0, 1330, 1327, 1, 0, 0, 0, 1330, 1331, 1, 0, 0, 0, 1331, 1347, 1, 0, 0, 0, 1332, 1334, 3, 192, 96, 0, 1333, 1335, 3, 188, 94, 0, 1334, 1333, 1, 0, 0, 0, 1334, 1335, 1, 0, 0, 0, 1335, 1347, 1, 0, 0, 0, 1336, 1342, 3, 184, 92, 0, 1337, 1343, 3, 188, 94, 0, 1338, 1340, 5, 17, 0, 0, 1339, 1338, 1, 0, 0, 0, 1339, 1340, 1, 0, 0, 0, 1340, 1341, 1, 0, 0, 0, 1341, 1343, 3, 54, 27, 0, 1342, 1337, 1, 0, 0, 0, 1342, 1339, 1, 0, 0, 0, 1342, 1343, 1, 0, 0, 0, 1343, 1347, 1, 0, 0, 0, 1344, 1345, 4, 90, 3, 0, 1345, 1347, 3, 52, 26, 0, 1346, 1323, 1, 0, 0, 0, 1346, 1324, 1, 0, 0, 0, 1346, 1332, 1, 0, 0, 0, 1346, 1336, 1, 0, 0, 0, 1346, 1344, 1, 0, 0, 0, 1347, 181, 1, 0, 0, 0, 1348, 1349, 3, 194, 97, 0, 1349, 183, 1, 0, 0, 0, 1350, 1351, 3, 282, 141, 0, 1351, 185, 1, 0, 0, 0, 1352, 1353, 3, 54, 27, 0, 1353, 187, 1, 0, 0, 0, 1354, 1356, 5, 17, 0, 0, 1355, 1354, 1, 0, 0, 0, 1355, 1356, 1, 0, 0, 0, 1356, 1357, 1, 0, 0, 0, 1357, 1358, 3, 334, 167, 0, 1358, 189, 1, 0, 0, 0, 1359, 1375, 3, 194, 97, 0, 1360, 1365, 3, 282, 141, 0, 1361, 1363, 5, 17, 0, 0, 1362, 1361, 1, 0, 0, 0, 1362, 1363, 1, 0, 0, 0, 1363, 1364, 1, 0, 0, 0, 1364, 1366, 3, 54, 27, 0, 1365, 1362, 1, 0, 0, 0, 1365, 1366, 1, 0, 0, 0, 1366, 1375, 1, 0, 0, 0, 1367, 1372, 3, 54, 27, 0, 1368, 1370, 5, 17, 0, 0, 1369, 1368, 1, 0, 0, 0, 1369, 1370, 1, 0, 0, 0, 1370, 1371, 1, 0, 0, 0, 1371, 1373, 3, 282, 141, 0, 1372, 1369, 1, 0, 0, 0, 1372, 1373, 1, 0, 0, 0, 1373, 1375, 1, 0, 0, 0, 1374, 1359, 1, 0, 0, 0, 1374, 1360, 1, 0, 0, 0, 1374, 1367, 1, 0, 0, 0, 1375, 191, 1, 0, 0, 0, 1376, 1381, 3, 334, 167, 0, 1377, 1378, 5, 514, 0, 0, 1378, 1380, 3, 334, 167, 0, 1379, 1377, 1, 0, 0, 0, 1380, 1383, 1, 0, 0, 0, 1381, 1379, 1, 0, 0, 0, 1381, 1382, 1, 0, 0, 0, 1382, 1384, 1, 0, 0, 0, 1383, 1381, 1, 0, 0, 0, 1384, 1385, 5, 514, 0, 0, 1385, 1387, 1, 0, 0, 0, 1386, 1376, 1, 0, 0, 0, 1386, 1387, 1, 0, 0, 0, 1387, 1388, 1, 0, 0, 0, 1388, 1389, 5, 528, 0, 0, 1389, 193, 1, 0, 0, 0, 1390, 1391, 3, 294, 147, 0, 1391, 1392, 5, 263, 0, 0, 1392, 1393, 3, 250, 125, 0, 1393, 1394, 5, 17, 0, 0, 1394, 1395, 3, 334, 167, 0, 1395, 1403, 1, 0, 0, 0, 1396, 1397, 3, 294, 147, 0, 1397, 1398, 5, 263, 0, 0, 1398, 1399, 3, 326, 163, 0, 1399, 1400, 5, 17, 0, 0, 1400, 1401, 3, 334, 167, 0, 1401, 1403, 1, 0, 0, 0, 1402, 1390, 1, 0, 0, 0, 1402, 1396, 1, 0, 0, 0, 1403, 195, 1, 0, 0, 0, 1404, 1405, 5, 151, 0, 0, 1405, 1406, 3, 198, 99, 0, 1406, 197, 1, 0, 0, 0, 1407, 1408, 6, 99, -1, 0, 1408, 1413, 3, 200, 100, 0, 1409, 1410, 5, 521, 0, 0, 1410, 1412, 3, 200, 100, 0, 1411, 1409, 1, 0, 0, 0, 1412, 1415, 1, 0, 0, 0, 1413, 1411, 1, 0, 0, 0, 1413, 1414, 1, 0, 0, 0, 1414, 1419, 1, 0, 0, 0, 1415, 1413, 1, 0, 0, 0, 1416, 1419, 3, 212, 106, 0, 1417, 1419, 3, 214, 107, 0, 1418, 1407, 1, 0, 0, 0, 1418, 1416, 1, 0, 0, 0, 1418, 1417, 1, 0, 0, 0, 1419, 1441, 1, 0, 0, 0, 1420, 1421, 10, 3, 0, 0, 1421, 1422, 5, 73, 0, 0, 1422, 1423, 5, 185, 0, 0, 1423, 1440, 3, 198, 99, 4, 1424, 1426, 10, 4, 0, 0, 1425, 1427, 5, 234, 0, 0, 1426, 1425, 1, 0, 0, 0, 1426, 1427, 1, 0, 0, 0, 1427, 1429, 1, 0, 0, 0, 1428, 1430, 7, 20, 0, 0, 1429, 1428, 1, 0, 0, 0, 1429, 1430, 1, 0, 0, 0, 1430, 1432, 1, 0, 0, 0, 1431, 1433, 5, 262, 0, 0, 1432, 1431, 1, 0, 0, 0, 1432, 1433, 1, 0, 0, 0, 1433, 1434, 1, 0, 0, 0, 1434, 1435, 5, 185, 0, 0, 1435, 1437, 3, 198, 99, 0, 1436, 1438, 3, 226, 113, 0, 1437, 1436, 1, 0, 0, 0, 1437, 1438, 1, 0, 0, 0, 1438, 1440, 1, 0, 0, 0, 1439, 1420, 1, 0, 0, 0, 1439, 1424, 1, 0, 0, 0, 1440, 1443, 1, 0, 0, 0, 1441, 1439, 1, 0, 0, 0, 1441, 1442, 1, 0, 0, 0, 1442, 199, 1, 0, 0, 0, 1443, 1441, 1, 0, 0, 0, 1444, 1446, 3, 202, 101, 0, 1445, 1447, 3, 324, 162, 0, 1446, 1445, 1, 0, 0, 0, 1446, 1447, 1, 0, 0, 0, 1447, 201, 1, 0, 0, 0, 1448, 1450, 5, 374, 0, 0, 1449, 1448, 1, 0, 0, 0, 1449, 1450, 1, 0, 0, 0, 1450, 1451, 1, 0, 0, 0, 1451, 1453, 3, 352, 176, 0, 1452, 1454, 3, 208, 104, 0, 1453, 1452, 1, 0, 0, 0, 1453, 1454, 1, 0, 0, 0, 1454, 1462, 1, 0, 0, 0, 1455, 1457, 3, 354, 177, 0, 1456, 1458, 3, 208, 104, 0, 1457, 1456, 1, 0, 0, 0, 1457, 1458, 1, 0, 0, 0, 1458, 1462, 1, 0, 0, 0, 1459, 1462, 3, 204, 102, 0, 1460, 1462, 3, 206, 103, 0, 1461, 1449, 1, 0, 0, 0, 1461, 1455, 1, 0, 0, 0, 1461, 1459, 1, 0, 0, 0, 1461, 1460, 1, 0, 0, 0, 1462, 203, 1, 0, 0, 0, 1463, 1464, 5, 199, 0, 0, 1464, 1465, 5, 374, 0, 0, 1465, 1466, 5, 517, 0, 0, 1466, 1467, 3, 292, 146, 0, 1467, 1468, 5, 518, 0, 0, 1468, 205, 1, 0, 0, 0, 1469, 1471, 5, 199, 0, 0, 1470, 1469, 1, 0, 0, 0, 1470, 1471, 1, 0, 0, 0, 1471, 1472, 1, 0, 0, 0, 1472, 1473, 5, 517, 0, 0, 1473, 1474, 3, 164, 82, 0, 1474, 1475, 5, 518, 0, 0, 1475, 1482, 1, 0, 0, 0, 1476, 1477, 5, 406, 0, 0, 1477, 1478, 5, 517, 0, 0, 1478, 1479, 3, 282, 141, 0, 1479, 1480, 5, 518, 0, 0, 1480, 1482, 1, 0, 0, 0, 1481, 1470, 1, 0, 0, 0, 1481, 1476, 1, 0, 0, 0, 1482, 207, 1, 0, 0, 0, 1483, 1484, 5, 146, 0, 0, 1484, 1485, 5, 372, 0, 0, 1485, 1486, 5, 17, 0, 0, 1486, 1487, 5, 250, 0, 0, 1487, 1488, 3, 210, 105, 0, 1488, 209, 1, 0, 0, 0, 1489, 1490, 3, 282, 141, 0, 1490, 211, 1, 0, 0, 0, 1491, 1492, 5, 517, 0, 0, 1492, 1493, 3, 154, 77, 0, 1493, 1494, 5, 518, 0, 0, 1494, 1495, 3, 324, 162, 0, 1495, 213, 1, 0, 0, 0, 1496, 1497, 5, 374, 0, 0, 1497, 1498, 5, 517, 0, 0, 1498, 1499, 3, 216, 108, 0, 1499, 1500, 5, 518, 0, 0, 1500, 215, 1, 0, 0, 0, 1501, 1502, 3, 218, 109, 0, 1502, 1503, 5, 517, 0, 0, 1503, 1508, 3, 220, 110, 0, 1504, 1505, 5, 521, 0, 0, 1505, 1507, 3, 220, 110, 0, 1506, 1504, 1, 0, 0, 0, 1507, 1510, 1, 0, 0, 0, 1508, 1506, 1, 0, 0, 0, 1508, 1509, 1, 0, 0, 0, 1509, 1511, 1, 0, 0, 0, 1510, 1508, 1, 0, 0, 0, 1511, 1512, 5, 518, 0, 0, 1512, 217, 1, 0, 0, 0, 1513, 1514, 7, 21, 0, 0, 1514, 219, 1, 0, 0, 0, 1515, 1516, 5, 374, 0, 0, 1516, 1531, 3, 242, 121, 0, 1517, 1531, 3, 224, 112, 0, 1518, 1531, 3, 312, 156, 0, 1519, 1520, 5, 447, 0, 0, 1520, 1521, 5, 537, 0, 0, 1521, 1522, 5, 374, 0, 0, 1522, 1531, 3, 242, 121, 0, 1523, 1524, 5, 499, 0, 0, 1524, 1525, 5, 537, 0, 0, 1525, 1531, 3, 224, 112, 0, 1526, 1527, 3, 222, 111, 0, 1527, 1528, 5, 537, 0, 0, 1528, 1529, 3, 312, 156, 0, 1529, 1531, 1, 0, 0, 0, 1530, 1515, 1, 0, 0, 0, 1530, 1517, 1, 0, 0, 0, 1530, 1518, 1, 0, 0, 0, 1530, 1519, 1, 0, 0, 0, 1530, 1523, 1, 0, 0, 0, 1530, 1526, 1, 0, 0, 0, 1531, 221, 1, 0, 0, 0, 1532, 1533, 7, 22, 0, 0, 1533, 223, 1, 0, 0, 0, 1534, 1535, 5, 452, 0, 0, 1535, 1536, 5, 517, 0, 0, 1536, 1537, 3, 54, 27, 0, 1537, 1538, 5, 518, 0, 0, 1538, 225, 1, 0, 0, 0, 1539, 1546, 5, 254, 0, 0, 1540, 1547, 3, 284, 142, 0, 1541, 1544, 3, 58, 29, 0, 1542, 1543, 5, 506, 0, 0, 1543, 1545, 3, 58, 29, 0, 1544, 1542, 1, 0, 0, 0, 1544, 1545, 1, 0, 0, 0, 1545, 1547, 1, 0, 0, 0, 1546, 1540, 1, 0, 0, 0, 1546, 1541, 1, 0, 0, 0, 1547, 1551, 1, 0, 0, 0, 1548, 1549, 5, 413, 0, 0, 1549, 1551, 3, 60, 30, 0, 1550, 1539, 1, 0, 0, 0, 1550, 1548, 1, 0, 0, 0, 1551, 227, 1, 0, 0, 0, 1552, 1555, 5, 431, 0, 0, 1553, 1556, 3, 284, 142, 0, 1554, 1556, 3, 58, 29, 0, 1555, 1553, 1, 0, 0, 0, 1555, 1554, 1, 0, 0, 0, 1556, 229, 1, 0, 0, 0, 1557, 1558, 5, 159, 0, 0, 1558, 1559, 5, 34, 0, 0, 1559, 1564, 3, 232, 116, 0, 1560, 1561, 5, 521, 0, 0, 1561, 1563, 3, 232, 116, 0, 1562, 1560, 1, 0, 0, 0, 1563, 1566, 1, 0, 0, 0, 1564, 1562, 1, 0, 0, 0, 1564, 1565, 1, 0, 0, 0, 1565, 231, 1, 0, 0, 0, 1566, 1564, 1, 0, 0, 0, 1567, 1608, 3, 54, 27, 0, 1568, 1608, 3, 238, 119, 0, 1569, 1570, 5, 517, 0, 0, 1570, 1608, 5, 518, 0, 0, 1571, 1572, 5, 517, 0, 0, 1572, 1577, 3, 282, 141, 0, 1573, 1574, 5, 521, 0, 0, 1574, 1576, 3, 282, 141, 0, 1575, 1573, 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, 518, 0, 0, 1581, 1608, 1, 0, 0, 0, 1582, 1583, 3, 236, 118, 0, 1583, 1584, 5, 517, 0, 0, 1584, 1589, 3, 282, 141, 0, 1585, 1586, 5, 521, 0, 0, 1586, 1588, 3, 282, 141, 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, 1592, 1, 0, 0, 0, 1591, 1589, 1, 0, 0, 0, 1592, 1593, 5, 518, 0, 0, 1593, 1608, 1, 0, 0, 0, 1594, 1595, 3, 234, 117, 0, 1595, 1596, 5, 517, 0, 0, 1596, 1601, 3, 232, 116, 0, 1597, 1598, 5, 521, 0, 0, 1598, 1600, 3, 232, 116, 0, 1599, 1597, 1, 0, 0, 0, 1600, 1603, 1, 0, 0, 0, 1601, 1599, 1, 0, 0, 0, 1601, 1602, 1, 0, 0, 0, 1602, 1604, 1, 0, 0, 0, 1603, 1601, 1, 0, 0, 0, 1604, 1605, 5, 518, 0, 0, 1605, 1608, 1, 0, 0, 0, 1606, 1608, 3, 282, 141, 0, 1607, 1567, 1, 0, 0, 0, 1607, 1568, 1, 0, 0, 0, 1607, 1569, 1, 0, 0, 0, 1607, 1571, 1, 0, 0, 0, 1607, 1582, 1, 0, 0, 0, 1607, 1594, 1, 0, 0, 0, 1607, 1606, 1, 0, 0, 0, 1608, 233, 1, 0, 0, 0, 1609, 1610, 5, 160, 0, 0, 1610, 1611, 5, 494, 0, 0, 1611, 235, 1, 0, 0, 0, 1612, 1613, 7, 23, 0, 0, 1613, 237, 1, 0, 0, 0, 1614, 1615, 3, 240, 120, 0, 1615, 1616, 5, 517, 0, 0, 1616, 1617, 3, 242, 121, 0, 1617, 1618, 5, 521, 0, 0, 1618, 1619, 3, 312, 156, 0, 1619, 1620, 5, 518, 0, 0, 1620, 239, 1, 0, 0, 0, 1621, 1622, 7, 24, 0, 0, 1622, 241, 1, 0, 0, 0, 1623, 1624, 3, 358, 179, 0, 1624, 243, 1, 0, 0, 0, 1625, 1626, 5, 163, 0, 0, 1626, 1627, 3, 284, 142, 0, 1627, 245, 1, 0, 0, 0, 1628, 1629, 5, 433, 0, 0, 1629, 1634, 3, 248, 124, 0, 1630, 1631, 5, 521, 0, 0, 1631, 1633, 3, 248, 124, 0, 1632, 1630, 1, 0, 0, 0, 1633, 1636, 1, 0, 0, 0, 1634, 1632, 1, 0, 0, 0, 1634, 1635, 1, 0, 0, 0, 1635, 247, 1, 0, 0, 0, 1636, 1634, 1, 0, 0, 0, 1637, 1638, 3, 326, 163, 0, 1638, 1639, 5, 17, 0, 0, 1639, 1640, 3, 250, 125, 0, 1640, 249, 1, 0, 0, 0, 1641, 1643, 3, 326, 163, 0, 1642, 1641, 1, 0, 0, 0, 1642, 1643, 1, 0, 0, 0, 1643, 1644, 1, 0, 0, 0, 1644, 1646, 5, 517, 0, 0, 1645, 1647, 3, 260, 130, 0, 1646, 1645, 1, 0, 0, 0, 1646, 1647, 1, 0, 0, 0, 1647, 1649, 1, 0, 0, 0, 1648, 1650, 3, 254, 127, 0, 1649, 1648, 1, 0, 0, 0, 1649, 1650, 1, 0, 0, 0, 1650, 1652, 1, 0, 0, 0, 1651, 1653, 3, 276, 138, 0, 1652, 1651, 1, 0, 0, 0, 1652, 1653, 1, 0, 0, 0, 1653, 1654, 1, 0, 0, 0, 1654, 1655, 5, 518, 0, 0, 1655, 251, 1, 0, 0, 0, 1656, 1657, 5, 214, 0, 0, 1657, 1659, 5, 517, 0, 0, 1658, 1660, 3, 260, 130, 0, 1659, 1658, 1, 0, 0, 0, 1659, 1660, 1, 0, 0, 0, 1660, 1662, 1, 0, 0, 0, 1661, 1663, 3, 254, 127, 0, 1662, 1661, 1, 0, 0, 0, 1662, 1663, 1, 0, 0, 0, 1663, 1665, 1, 0, 0, 0, 1664, 1666, 3, 264, 132, 0, 1665, 1664, 1, 0, 0, 0, 1665, 1666, 1, 0, 0, 0, 1666, 1668, 1, 0, 0, 0, 1667, 1669, 3, 270, 135, 0, 1668, 1667, 1, 0, 0, 0, 1668, 1669, 1, 0, 0, 0, 1669, 1671, 1, 0, 0, 0, 1670, 1672, 3, 272, 136, 0, 1671, 1670, 1, 0, 0, 0, 1671, 1672, 1, 0, 0, 0, 1672, 1674, 1, 0, 0, 0, 1673, 1675, 3, 266, 133, 0, 1674, 1673, 1, 0, 0, 0, 1674, 1675, 1, 0, 0, 0, 1675, 1676, 1, 0, 0, 0, 1676, 1677, 3, 274, 137, 0, 1677, 1682, 5, 518, 0, 0, 1678, 1680, 5, 17, 0, 0, 1679, 1678, 1, 0, 0, 0, 1679, 1680, 1, 0, 0, 0, 1680, 1681, 1, 0, 0, 0, 1681, 1683, 3, 334, 167, 0, 1682, 1679, 1, 0, 0, 0, 1682, 1683, 1, 0, 0, 0, 1683, 253, 1, 0, 0, 0, 1684, 1685, 5, 259, 0, 0, 1685, 1686, 5, 34, 0, 0, 1686, 1691, 3, 256, 128, 0, 1687, 1688, 5, 521, 0, 0, 1688, 1690, 3, 256, 128, 0, 1689, 1687, 1, 0, 0, 0, 1690, 1693, 1, 0, 0, 0, 1691, 1689, 1, 0, 0, 0, 1691, 1692, 1, 0, 0, 0, 1692, 255, 1, 0, 0, 0, 1693, 1691, 1, 0, 0, 0, 1694, 1696, 3, 54, 27, 0, 1695, 1697, 7, 25, 0, 0, 1696, 1695, 1, 0, 0, 0, 1696, 1697, 1, 0, 0, 0, 1697, 1700, 1, 0, 0, 0, 1698, 1699, 5, 477, 0, 0, 1699, 1701, 7, 26, 0, 0, 1700, 1698, 1, 0, 0, 0, 1700, 1701, 1, 0, 0, 0, 1701, 257, 1, 0, 0, 0, 1702, 1705, 5, 205, 0, 0, 1703, 1706, 5, 5, 0, 0, 1704, 1706, 3, 282, 141, 0, 1705, 1703, 1, 0, 0, 0, 1705, 1704, 1, 0, 0, 0, 1706, 259, 1, 0, 0, 0, 1707, 1708, 5, 269, 0, 0, 1708, 1711, 5, 34, 0, 0, 1709, 1712, 3, 54, 27, 0, 1710, 1712, 3, 294, 147, 0, 1711, 1709, 1, 0, 0, 0, 1711, 1710, 1, 0, 0, 0, 1712, 1720, 1, 0, 0, 0, 1713, 1716, 5, 521, 0, 0, 1714, 1717, 3, 54, 27, 0, 1715, 1717, 3, 294, 147, 0, 1716, 1714, 1, 0, 0, 0, 1716, 1715, 1, 0, 0, 0, 1717, 1719, 1, 0, 0, 0, 1718, 1713, 1, 0, 0, 0, 1719, 1722, 1, 0, 0, 0, 1720, 1718, 1, 0, 0, 0, 1720, 1721, 1, 0, 0, 0, 1721, 261, 1, 0, 0, 0, 1722, 1720, 1, 0, 0, 0, 1723, 1740, 5, 528, 0, 0, 1724, 1740, 5, 531, 0, 0, 1725, 1740, 5, 536, 0, 0, 1726, 1727, 5, 519, 0, 0, 1727, 1728, 5, 539, 0, 0, 1728, 1729, 5, 521, 0, 0, 1729, 1730, 5, 539, 0, 0, 1730, 1740, 5, 520, 0, 0, 1731, 1732, 5, 519, 0, 0, 1732, 1733, 5, 539, 0, 0, 1733, 1734, 5, 521, 0, 0, 1734, 1740, 5, 520, 0, 0, 1735, 1736, 5, 519, 0, 0, 1736, 1737, 5, 521, 0, 0, 1737, 1738, 5, 539, 0, 0, 1738, 1740, 5, 520, 0, 0, 1739, 1723, 1, 0, 0, 0, 1739, 1724, 1, 0, 0, 0, 1739, 1725, 1, 0, 0, 0, 1739, 1726, 1, 0, 0, 0, 1739, 1731, 1, 0, 0, 0, 1739, 1735, 1, 0, 0, 0, 1740, 263, 1, 0, 0, 0, 1741, 1742, 5, 216, 0, 0, 1742, 1747, 3, 190, 95, 0, 1743, 1744, 5, 521, 0, 0, 1744, 1746, 3, 190, 95, 0, 1745, 1743, 1, 0, 0, 0, 1746, 1749, 1, 0, 0, 0, 1747, 1745, 1, 0, 0, 0, 1747, 1748, 1, 0, 0, 0, 1748, 265, 1, 0, 0, 0, 1749, 1747, 1, 0, 0, 0, 1750, 1751, 5, 272, 0, 0, 1751, 1753, 5, 517, 0, 0, 1752, 1754, 3, 268, 134, 0, 1753, 1752, 1, 0, 0, 0, 1754, 1755, 1, 0, 0, 0, 1755, 1753, 1, 0, 0, 0, 1755, 1756, 1, 0, 0, 0, 1756, 1757, 1, 0, 0, 0, 1757, 1759, 5, 518, 0, 0, 1758, 1760, 3, 280, 140, 0, 1759, 1758, 1, 0, 0, 0, 1759, 1760, 1, 0, 0, 0, 1760, 267, 1, 0, 0, 0, 1761, 1763, 3, 336, 168, 0, 1762, 1764, 3, 262, 131, 0, 1763, 1762, 1, 0, 0, 0, 1763, 1764, 1, 0, 0, 0, 1764, 269, 1, 0, 0, 0, 1765, 1766, 5, 5, 0, 0, 1766, 1767, 5, 323, 0, 0, 1767, 1768, 5, 273, 0, 0, 1768, 1774, 5, 211, 0, 0, 1769, 1770, 5, 255, 0, 0, 1770, 1771, 5, 322, 0, 0, 1771, 1772, 5, 273, 0, 0, 1772, 1774, 5, 211, 0, 0, 1773, 1765, 1, 0, 0, 0, 1773, 1769, 1, 0, 0, 0, 1774, 271, 1, 0, 0, 0, 1775, 1776, 5, 439, 0, 0, 1776, 1777, 5, 211, 0, 0, 1777, 1778, 5, 344, 0, 0, 1778, 1779, 5, 479, 0, 0, 1779, 1780, 5, 468, 0, 0, 1780, 1800, 5, 322, 0, 0, 1781, 1782, 5, 439, 0, 0, 1782, 1783, 5, 211, 0, 0, 1783, 1784, 5, 344, 0, 0, 1784, 1785, 5, 389, 0, 0, 1785, 1786, 5, 238, 0, 0, 1786, 1800, 5, 322, 0, 0, 1787, 1788, 5, 439, 0, 0, 1788, 1789, 5, 211, 0, 0, 1789, 1790, 5, 344, 0, 0, 1790, 1791, 5, 389, 0, 0, 1791, 1792, 5, 468, 0, 0, 1792, 1800, 3, 336, 168, 0, 1793, 1794, 5, 439, 0, 0, 1794, 1795, 5, 211, 0, 0, 1795, 1796, 5, 344, 0, 0, 1796, 1797, 5, 389, 0, 0, 1797, 1798, 5, 458, 0, 0, 1798, 1800, 3, 336, 168, 0, 1799, 1775, 1, 0, 0, 0, 1799, 1781, 1, 0, 0, 0, 1799, 1787, 1, 0, 0, 0, 1799, 1793, 1, 0, 0, 0, 1800, 273, 1, 0, 0, 0, 1801, 1802, 5, 105, 0, 0, 1802, 1807, 3, 190, 95, 0, 1803, 1804, 5, 521, 0, 0, 1804, 1806, 3, 190, 95, 0, 1805, 1803, 1, 0, 0, 0, 1806, 1809, 1, 0, 0, 0, 1807, 1805, 1, 0, 0, 0, 1807, 1808, 1, 0, 0, 0, 1808, 275, 1, 0, 0, 0, 1809, 1807, 1, 0, 0, 0, 1810, 1811, 5, 293, 0, 0, 1811, 1812, 5, 27, 0, 0, 1812, 1813, 3, 312, 156, 0, 1813, 1814, 3, 278, 139, 0, 1814, 1820, 1, 0, 0, 0, 1815, 1816, 5, 323, 0, 0, 1816, 1817, 5, 27, 0, 0, 1817, 1818, 5, 539, 0, 0, 1818, 1820, 3, 278, 139, 0, 1819, 1810, 1, 0, 0, 0, 1819, 1815, 1, 0, 0, 0, 1820, 277, 1, 0, 0, 0, 1821, 1822, 5, 481, 0, 0, 1822, 1823, 5, 10, 0, 0, 1823, 1824, 5, 76, 0, 0, 1824, 1825, 5, 322, 0, 0, 1825, 279, 1, 0, 0, 0, 1826, 1827, 5, 435, 0, 0, 1827, 1828, 3, 312, 156, 0, 1828, 281, 1, 0, 0, 0, 1829, 1830, 3, 284, 142, 0, 1830, 283, 1, 0, 0, 0, 1831, 1832, 6, 142, -1, 0, 1832, 1833, 5, 242, 0, 0, 1833, 1844, 3, 284, 142, 6, 1834, 1835, 5, 133, 0, 0, 1835, 1836, 5, 517, 0, 0, 1836, 1837, 3, 164, 82, 0, 1837, 1838, 5, 518, 0, 0, 1838, 1844, 1, 0, 0, 0, 1839, 1841, 3, 290, 145, 0, 1840, 1842, 3, 286, 143, 0, 1841, 1840, 1, 0, 0, 0, 1841, 1842, 1, 0, 0, 0, 1842, 1844, 1, 0, 0, 0, 1843, 1831, 1, 0, 0, 0, 1843, 1834, 1, 0, 0, 0, 1843, 1839, 1, 0, 0, 0, 1844, 1859, 1, 0, 0, 0, 1845, 1846, 10, 3, 0, 0, 1846, 1847, 5, 10, 0, 0, 1847, 1858, 3, 284, 142, 4, 1848, 1849, 10, 2, 0, 0, 1849, 1850, 5, 258, 0, 0, 1850, 1858, 3, 284, 142, 3, 1851, 1852, 10, 1, 0, 0, 1852, 1854, 5, 184, 0, 0, 1853, 1855, 5, 242, 0, 0, 1854, 1853, 1, 0, 0, 0, 1854, 1855, 1, 0, 0, 0, 1855, 1856, 1, 0, 0, 0, 1856, 1858, 7, 27, 0, 0, 1857, 1845, 1, 0, 0, 0, 1857, 1848, 1, 0, 0, 0, 1857, 1851, 1, 0, 0, 0, 1858, 1861, 1, 0, 0, 0, 1859, 1857, 1, 0, 0, 0, 1859, 1860, 1, 0, 0, 0, 1860, 285, 1, 0, 0, 0, 1861, 1859, 1, 0, 0, 0, 1862, 1864, 5, 242, 0, 0, 1863, 1862, 1, 0, 0, 0, 1863, 1864, 1, 0, 0, 0, 1864, 1865, 1, 0, 0, 0, 1865, 1867, 5, 27, 0, 0, 1866, 1868, 7, 28, 0, 0, 1867, 1866, 1, 0, 0, 0, 1867, 1868, 1, 0, 0, 0, 1868, 1869, 1, 0, 0, 0, 1869, 1870, 3, 290, 145, 0, 1870, 1871, 5, 10, 0, 0, 1871, 1872, 3, 290, 145, 0, 1872, 1937, 1, 0, 0, 0, 1873, 1875, 5, 242, 0, 0, 1874, 1873, 1, 0, 0, 0, 1874, 1875, 1, 0, 0, 0, 1875, 1876, 1, 0, 0, 0, 1876, 1877, 5, 170, 0, 0, 1877, 1878, 5, 517, 0, 0, 1878, 1883, 3, 282, 141, 0, 1879, 1880, 5, 521, 0, 0, 1880, 1882, 3, 282, 141, 0, 1881, 1879, 1, 0, 0, 0, 1882, 1885, 1, 0, 0, 0, 1883, 1881, 1, 0, 0, 0, 1883, 1884, 1, 0, 0, 0, 1884, 1886, 1, 0, 0, 0, 1885, 1883, 1, 0, 0, 0, 1886, 1887, 5, 518, 0, 0, 1887, 1937, 1, 0, 0, 0, 1888, 1890, 5, 242, 0, 0, 1889, 1888, 1, 0, 0, 0, 1889, 1890, 1, 0, 0, 0, 1890, 1891, 1, 0, 0, 0, 1891, 1892, 5, 170, 0, 0, 1892, 1893, 5, 517, 0, 0, 1893, 1894, 3, 164, 82, 0, 1894, 1895, 5, 518, 0, 0, 1895, 1937, 1, 0, 0, 0, 1896, 1897, 5, 133, 0, 0, 1897, 1898, 5, 517, 0, 0, 1898, 1899, 3, 164, 82, 0, 1899, 1900, 5, 518, 0, 0, 1900, 1937, 1, 0, 0, 0, 1901, 1903, 5, 242, 0, 0, 1902, 1901, 1, 0, 0, 0, 1902, 1903, 1, 0, 0, 0, 1903, 1904, 1, 0, 0, 0, 1904, 1905, 5, 319, 0, 0, 1905, 1937, 3, 290, 145, 0, 1906, 1937, 3, 288, 144, 0, 1907, 1909, 5, 184, 0, 0, 1908, 1910, 5, 242, 0, 0, 1909, 1908, 1, 0, 0, 0, 1909, 1910, 1, 0, 0, 0, 1910, 1911, 1, 0, 0, 0, 1911, 1937, 7, 27, 0, 0, 1912, 1914, 5, 184, 0, 0, 1913, 1915, 5, 242, 0, 0, 1914, 1913, 1, 0, 0, 0, 1914, 1915, 1, 0, 0, 0, 1915, 1916, 1, 0, 0, 0, 1916, 1917, 5, 113, 0, 0, 1917, 1918, 5, 151, 0, 0, 1918, 1937, 3, 290, 145, 0, 1919, 1921, 5, 242, 0, 0, 1920, 1919, 1, 0, 0, 0, 1920, 1921, 1, 0, 0, 0, 1921, 1922, 1, 0, 0, 0, 1922, 1923, 5, 343, 0, 0, 1923, 1924, 5, 389, 0, 0, 1924, 1927, 3, 290, 145, 0, 1925, 1926, 5, 127, 0, 0, 1926, 1928, 3, 390, 195, 0, 1927, 1925, 1, 0, 0, 0, 1927, 1928, 1, 0, 0, 0, 1928, 1937, 1, 0, 0, 0, 1929, 1930, 5, 184, 0, 0, 1930, 1934, 5, 186, 0, 0, 1931, 1935, 5, 414, 0, 0, 1932, 1935, 5, 13, 0, 0, 1933, 1935, 3, 334, 167, 0, 1934, 1931, 1, 0, 0, 0, 1934, 1932, 1, 0, 0, 0, 1934, 1933, 1, 0, 0, 0, 1934, 1935, 1, 0, 0, 0, 1935, 1937, 1, 0, 0, 0, 1936, 1863, 1, 0, 0, 0, 1936, 1874, 1, 0, 0, 0, 1936, 1889, 1, 0, 0, 0, 1936, 1896, 1, 0, 0, 0, 1936, 1902, 1, 0, 0, 0, 1936, 1906, 1, 0, 0, 0, 1936, 1907, 1, 0, 0, 0, 1936, 1912, 1, 0, 0, 0, 1936, 1920, 1, 0, 0, 0, 1936, 1929, 1, 0, 0, 0, 1937, 287, 1, 0, 0, 0, 1938, 1940, 5, 242, 0, 0, 1939, 1938, 1, 0, 0, 0, 1939, 1940, 1, 0, 0, 0, 1940, 1941, 1, 0, 0, 0, 1941, 1942, 5, 203, 0, 0, 1942, 1956, 7, 29, 0, 0, 1943, 1944, 5, 517, 0, 0, 1944, 1957, 5, 518, 0, 0, 1945, 1946, 5, 517, 0, 0, 1946, 1951, 3, 282, 141, 0, 1947, 1948, 5, 521, 0, 0, 1948, 1950, 3, 282, 141, 0, 1949, 1947, 1, 0, 0, 0, 1950, 1953, 1, 0, 0, 0, 1951, 1949, 1, 0, 0, 0, 1951, 1952, 1, 0, 0, 0, 1952, 1954, 1, 0, 0, 0, 1953, 1951, 1, 0, 0, 0, 1954, 1955, 5, 518, 0, 0, 1955, 1957, 1, 0, 0, 0, 1956, 1943, 1, 0, 0, 0, 1956, 1945, 1, 0, 0, 0, 1957, 1968, 1, 0, 0, 0, 1958, 1960, 5, 242, 0, 0, 1959, 1958, 1, 0, 0, 0, 1959, 1960, 1, 0, 0, 0, 1960, 1961, 1, 0, 0, 0, 1961, 1962, 5, 203, 0, 0, 1962, 1965, 3, 290, 145, 0, 1963, 1964, 5, 127, 0, 0, 1964, 1966, 3, 390, 195, 0, 1965, 1963, 1, 0, 0, 0, 1965, 1966, 1, 0, 0, 0, 1966, 1968, 1, 0, 0, 0, 1967, 1939, 1, 0, 0, 0, 1967, 1959, 1, 0, 0, 0, 1968, 289, 1, 0, 0, 0, 1969, 1970, 6, 145, -1, 0, 1970, 1974, 3, 294, 147, 0, 1971, 1972, 7, 30, 0, 0, 1972, 1974, 3, 290, 145, 7, 1973, 1969, 1, 0, 0, 0, 1973, 1971, 1, 0, 0, 0, 1974, 1996, 1, 0, 0, 0, 1975, 1976, 10, 6, 0, 0, 1976, 1977, 7, 31, 0, 0, 1977, 1995, 3, 290, 145, 7, 1978, 1979, 10, 5, 0, 0, 1979, 1980, 7, 32, 0, 0, 1980, 1995, 3, 290, 145, 6, 1981, 1982, 10, 4, 0, 0, 1982, 1983, 5, 512, 0, 0, 1983, 1995, 3, 290, 145, 5, 1984, 1985, 10, 3, 0, 0, 1985, 1986, 5, 513, 0, 0, 1986, 1995, 3, 290, 145, 4, 1987, 1988, 10, 2, 0, 0, 1988, 1989, 5, 511, 0, 0, 1989, 1995, 3, 290, 145, 3, 1990, 1991, 10, 1, 0, 0, 1991, 1992, 3, 378, 189, 0, 1992, 1993, 3, 290, 145, 2, 1993, 1995, 1, 0, 0, 0, 1994, 1975, 1, 0, 0, 0, 1994, 1978, 1, 0, 0, 0, 1994, 1981, 1, 0, 0, 0, 1994, 1984, 1, 0, 0, 0, 1994, 1987, 1, 0, 0, 0, 1994, 1990, 1, 0, 0, 0, 1995, 1998, 1, 0, 0, 0, 1996, 1994, 1, 0, 0, 0, 1996, 1997, 1, 0, 0, 0, 1997, 291, 1, 0, 0, 0, 1998, 1996, 1, 0, 0, 0, 1999, 2019, 3, 404, 202, 0, 2000, 2019, 3, 300, 150, 0, 2001, 2002, 3, 302, 151, 0, 2002, 2014, 5, 517, 0, 0, 2003, 2005, 3, 396, 198, 0, 2004, 2003, 1, 0, 0, 0, 2004, 2005, 1, 0, 0, 0, 2005, 2006, 1, 0, 0, 0, 2006, 2011, 3, 304, 152, 0, 2007, 2008, 5, 521, 0, 0, 2008, 2010, 3, 304, 152, 0, 2009, 2007, 1, 0, 0, 0, 2010, 2013, 1, 0, 0, 0, 2011, 2009, 1, 0, 0, 0, 2011, 2012, 1, 0, 0, 0, 2012, 2015, 1, 0, 0, 0, 2013, 2011, 1, 0, 0, 0, 2014, 2004, 1, 0, 0, 0, 2014, 2015, 1, 0, 0, 0, 2015, 2016, 1, 0, 0, 0, 2016, 2017, 5, 518, 0, 0, 2017, 2019, 1, 0, 0, 0, 2018, 1999, 1, 0, 0, 0, 2018, 2000, 1, 0, 0, 0, 2018, 2001, 1, 0, 0, 0, 2019, 293, 1, 0, 0, 0, 2020, 2021, 6, 147, -1, 0, 2021, 2023, 5, 40, 0, 0, 2022, 2024, 3, 340, 170, 0, 2023, 2022, 1, 0, 0, 0, 2024, 2025, 1, 0, 0, 0, 2025, 2023, 1, 0, 0, 0, 2025, 2026, 1, 0, 0, 0, 2026, 2029, 1, 0, 0, 0, 2027, 2028, 5, 120, 0, 0, 2028, 2030, 3, 282, 141, 0, 2029, 2027, 1, 0, 0, 0, 2029, 2030, 1, 0, 0, 0, 2030, 2031, 1, 0, 0, 0, 2031, 2032, 5, 122, 0, 0, 2032, 2096, 1, 0, 0, 0, 2033, 2034, 5, 40, 0, 0, 2034, 2036, 3, 282, 141, 0, 2035, 2037, 3, 340, 170, 0, 2036, 2035, 1, 0, 0, 0, 2037, 2038, 1, 0, 0, 0, 2038, 2036, 1, 0, 0, 0, 2038, 2039, 1, 0, 0, 0, 2039, 2042, 1, 0, 0, 0, 2040, 2041, 5, 120, 0, 0, 2041, 2043, 3, 282, 141, 0, 2042, 2040, 1, 0, 0, 0, 2042, 2043, 1, 0, 0, 0, 2043, 2044, 1, 0, 0, 0, 2044, 2045, 5, 122, 0, 0, 2045, 2096, 1, 0, 0, 0, 2046, 2047, 5, 41, 0, 0, 2047, 2048, 5, 517, 0, 0, 2048, 2049, 3, 282, 141, 0, 2049, 2050, 5, 17, 0, 0, 2050, 2051, 3, 62, 31, 0, 2051, 2052, 5, 518, 0, 0, 2052, 2096, 1, 0, 0, 0, 2053, 2054, 5, 458, 0, 0, 2054, 2055, 5, 517, 0, 0, 2055, 2058, 3, 282, 141, 0, 2056, 2057, 5, 462, 0, 0, 2057, 2059, 5, 477, 0, 0, 2058, 2056, 1, 0, 0, 0, 2058, 2059, 1, 0, 0, 0, 2059, 2060, 1, 0, 0, 0, 2060, 2061, 5, 518, 0, 0, 2061, 2096, 1, 0, 0, 0, 2062, 2063, 5, 468, 0, 0, 2063, 2064, 5, 517, 0, 0, 2064, 2067, 3, 282, 141, 0, 2065, 2066, 5, 462, 0, 0, 2066, 2068, 5, 477, 0, 0, 2067, 2065, 1, 0, 0, 0, 2067, 2068, 1, 0, 0, 0, 2068, 2069, 1, 0, 0, 0, 2069, 2070, 5, 518, 0, 0, 2070, 2096, 1, 0, 0, 0, 2071, 2072, 5, 282, 0, 0, 2072, 2073, 5, 517, 0, 0, 2073, 2074, 3, 290, 145, 0, 2074, 2075, 5, 170, 0, 0, 2075, 2076, 3, 290, 145, 0, 2076, 2077, 5, 518, 0, 0, 2077, 2096, 1, 0, 0, 0, 2078, 2096, 3, 386, 193, 0, 2079, 2096, 5, 528, 0, 0, 2080, 2081, 3, 358, 179, 0, 2081, 2082, 5, 514, 0, 0, 2082, 2083, 5, 528, 0, 0, 2083, 2096, 1, 0, 0, 0, 2084, 2085, 5, 517, 0, 0, 2085, 2086, 3, 164, 82, 0, 2086, 2087, 5, 518, 0, 0, 2087, 2096, 1, 0, 0, 0, 2088, 2096, 3, 292, 146, 0, 2089, 2096, 3, 56, 28, 0, 2090, 2096, 3, 306, 153, 0, 2091, 2092, 5, 517, 0, 0, 2092, 2093, 3, 282, 141, 0, 2093, 2094, 5, 518, 0, 0, 2094, 2096, 1, 0, 0, 0, 2095, 2020, 1, 0, 0, 0, 2095, 2033, 1, 0, 0, 0, 2095, 2046, 1, 0, 0, 0, 2095, 2053, 1, 0, 0, 0, 2095, 2062, 1, 0, 0, 0, 2095, 2071, 1, 0, 0, 0, 2095, 2078, 1, 0, 0, 0, 2095, 2079, 1, 0, 0, 0, 2095, 2080, 1, 0, 0, 0, 2095, 2084, 1, 0, 0, 0, 2095, 2088, 1, 0, 0, 0, 2095, 2089, 1, 0, 0, 0, 2095, 2090, 1, 0, 0, 0, 2095, 2091, 1, 0, 0, 0, 2096, 2104, 1, 0, 0, 0, 2097, 2098, 10, 4, 0, 0, 2098, 2099, 5, 515, 0, 0, 2099, 2100, 3, 290, 145, 0, 2100, 2101, 5, 516, 0, 0, 2101, 2103, 1, 0, 0, 0, 2102, 2097, 1, 0, 0, 0, 2103, 2106, 1, 0, 0, 0, 2104, 2102, 1, 0, 0, 0, 2104, 2105, 1, 0, 0, 0, 2105, 295, 1, 0, 0, 0, 2106, 2104, 1, 0, 0, 0, 2107, 2108, 3, 358, 179, 0, 2108, 297, 1, 0, 0, 0, 2109, 2114, 3, 408, 204, 0, 2110, 2114, 3, 404, 202, 0, 2111, 2114, 3, 406, 203, 0, 2112, 2114, 3, 358, 179, 0, 2113, 2109, 1, 0, 0, 0, 2113, 2110, 1, 0, 0, 0, 2113, 2111, 1, 0, 0, 0, 2113, 2112, 1, 0, 0, 0, 2114, 299, 1, 0, 0, 0, 2115, 2116, 3, 406, 203, 0, 2116, 2117, 5, 538, 0, 0, 2117, 2120, 1, 0, 0, 0, 2118, 2120, 3, 312, 156, 0, 2119, 2115, 1, 0, 0, 0, 2119, 2118, 1, 0, 0, 0, 2120, 301, 1, 0, 0, 0, 2121, 2124, 3, 408, 204, 0, 2122, 2124, 3, 358, 179, 0, 2123, 2121, 1, 0, 0, 0, 2123, 2122, 1, 0, 0, 0, 2124, 303, 1, 0, 0, 0, 2125, 2130, 3, 402, 201, 0, 2126, 2130, 3, 400, 200, 0, 2127, 2130, 3, 398, 199, 0, 2128, 2130, 3, 282, 141, 0, 2129, 2125, 1, 0, 0, 0, 2129, 2126, 1, 0, 0, 0, 2129, 2127, 1, 0, 0, 0, 2129, 2128, 1, 0, 0, 0, 2130, 305, 1, 0, 0, 0, 2131, 2132, 3, 358, 179, 0, 2132, 307, 1, 0, 0, 0, 2133, 2134, 3, 334, 167, 0, 2134, 309, 1, 0, 0, 0, 2135, 2138, 3, 334, 167, 0, 2136, 2138, 3, 306, 153, 0, 2137, 2135, 1, 0, 0, 0, 2137, 2136, 1, 0, 0, 0, 2138, 311, 1, 0, 0, 0, 2139, 2142, 5, 182, 0, 0, 2140, 2143, 3, 314, 157, 0, 2141, 2143, 3, 318, 159, 0, 2142, 2140, 1, 0, 0, 0, 2142, 2141, 1, 0, 0, 0, 2142, 2143, 1, 0, 0, 0, 2143, 313, 1, 0, 0, 0, 2144, 2146, 3, 316, 158, 0, 2145, 2147, 3, 320, 160, 0, 2146, 2145, 1, 0, 0, 0, 2146, 2147, 1, 0, 0, 0, 2147, 315, 1, 0, 0, 0, 2148, 2149, 3, 322, 161, 0, 2149, 2150, 3, 400, 200, 0, 2150, 2152, 1, 0, 0, 0, 2151, 2148, 1, 0, 0, 0, 2152, 2153, 1, 0, 0, 0, 2153, 2151, 1, 0, 0, 0, 2153, 2154, 1, 0, 0, 0, 2154, 317, 1, 0, 0, 0, 2155, 2158, 3, 320, 160, 0, 2156, 2159, 3, 316, 158, 0, 2157, 2159, 3, 320, 160, 0, 2158, 2156, 1, 0, 0, 0, 2158, 2157, 1, 0, 0, 0, 2158, 2159, 1, 0, 0, 0, 2159, 319, 1, 0, 0, 0, 2160, 2161, 3, 322, 161, 0, 2161, 2162, 3, 400, 200, 0, 2162, 2163, 5, 389, 0, 0, 2163, 2164, 3, 400, 200, 0, 2164, 321, 1, 0, 0, 0, 2165, 2167, 7, 33, 0, 0, 2166, 2165, 1, 0, 0, 0, 2166, 2167, 1, 0, 0, 0, 2167, 2168, 1, 0, 0, 0, 2168, 2171, 7, 34, 0, 0, 2169, 2171, 5, 538, 0, 0, 2170, 2166, 1, 0, 0, 0, 2170, 2169, 1, 0, 0, 0, 2171, 323, 1, 0, 0, 0, 2172, 2174, 5, 17, 0, 0, 2173, 2172, 1, 0, 0, 0, 2173, 2174, 1, 0, 0, 0, 2174, 2175, 1, 0, 0, 0, 2175, 2177, 3, 334, 167, 0, 2176, 2178, 3, 330, 165, 0, 2177, 2176, 1, 0, 0, 0, 2177, 2178, 1, 0, 0, 0, 2178, 325, 1, 0, 0, 0, 2179, 2180, 3, 334, 167, 0, 2180, 2181, 3, 328, 164, 0, 2181, 327, 1, 0, 0, 0, 2182, 2183, 5, 222, 0, 0, 2183, 2185, 3, 334, 167, 0, 2184, 2182, 1, 0, 0, 0, 2185, 2186, 1, 0, 0, 0, 2186, 2184, 1, 0, 0, 0, 2186, 2187, 1, 0, 0, 0, 2187, 2190, 1, 0, 0, 0, 2188, 2190, 1, 0, 0, 0, 2189, 2184, 1, 0, 0, 0, 2189, 2188, 1, 0, 0, 0, 2190, 329, 1, 0, 0, 0, 2191, 2192, 5, 517, 0, 0, 2192, 2193, 3, 332, 166, 0, 2193, 2194, 5, 518, 0, 0, 2194, 331, 1, 0, 0, 0, 2195, 2200, 3, 334, 167, 0, 2196, 2197, 5, 521, 0, 0, 2197, 2199, 3, 334, 167, 0, 2198, 2196, 1, 0, 0, 0, 2199, 2202, 1, 0, 0, 0, 2200, 2198, 1, 0, 0, 0, 2200, 2201, 1, 0, 0, 0, 2201, 333, 1, 0, 0, 0, 2202, 2200, 1, 0, 0, 0, 2203, 2207, 3, 336, 168, 0, 2204, 2207, 3, 338, 169, 0, 2205, 2207, 3, 410, 205, 0, 2206, 2203, 1, 0, 0, 0, 2206, 2204, 1, 0, 0, 0, 2206, 2205, 1, 0, 0, 0, 2207, 335, 1, 0, 0, 0, 2208, 2209, 7, 35, 0, 0, 2209, 337, 1, 0, 0, 0, 2210, 2211, 5, 538, 0, 0, 2211, 339, 1, 0, 0, 0, 2212, 2213, 5, 429, 0, 0, 2213, 2214, 3, 282, 141, 0, 2214, 2215, 5, 377, 0, 0, 2215, 2216, 3, 282, 141, 0, 2216, 341, 1, 0, 0, 0, 2217, 2218, 3, 334, 167, 0, 2218, 343, 1, 0, 0, 0, 2219, 2220, 3, 334, 167, 0, 2220, 345, 1, 0, 0, 0, 2221, 2224, 3, 334, 167, 0, 2222, 2223, 5, 514, 0, 0, 2223, 2225, 3, 334, 167, 0, 2224, 2222, 1, 0, 0, 0, 2224, 2225, 1, 0, 0, 0, 2225, 347, 1, 0, 0, 0, 2226, 2229, 3, 334, 167, 0, 2227, 2228, 5, 514, 0, 0, 2228, 2230, 3, 334, 167, 0, 2229, 2227, 1, 0, 0, 0, 2229, 2230, 1, 0, 0, 0, 2230, 349, 1, 0, 0, 0, 2231, 2234, 3, 334, 167, 0, 2232, 2233, 5, 514, 0, 0, 2233, 2235, 3, 334, 167, 0, 2234, 2232, 1, 0, 0, 0, 2234, 2235, 1, 0, 0, 0, 2235, 2244, 1, 0, 0, 0, 2236, 2237, 3, 334, 167, 0, 2237, 2238, 5, 514, 0, 0, 2238, 2241, 3, 334, 167, 0, 2239, 2240, 5, 514, 0, 0, 2240, 2242, 3, 334, 167, 0, 2241, 2239, 1, 0, 0, 0, 2241, 2242, 1, 0, 0, 0, 2242, 2244, 1, 0, 0, 0, 2243, 2231, 1, 0, 0, 0, 2243, 2236, 1, 0, 0, 0, 2244, 351, 1, 0, 0, 0, 2245, 2248, 3, 334, 167, 0, 2246, 2247, 5, 514, 0, 0, 2247, 2249, 3, 334, 167, 0, 2248, 2246, 1, 0, 0, 0, 2248, 2249, 1, 0, 0, 0, 2249, 2258, 1, 0, 0, 0, 2250, 2251, 3, 334, 167, 0, 2251, 2252, 5, 514, 0, 0, 2252, 2255, 3, 334, 167, 0, 2253, 2254, 5, 514, 0, 0, 2254, 2256, 3, 334, 167, 0, 2255, 2253, 1, 0, 0, 0, 2255, 2256, 1, 0, 0, 0, 2256, 2258, 1, 0, 0, 0, 2257, 2245, 1, 0, 0, 0, 2257, 2250, 1, 0, 0, 0, 2258, 353, 1, 0, 0, 0, 2259, 2262, 3, 334, 167, 0, 2260, 2261, 5, 514, 0, 0, 2261, 2263, 3, 334, 167, 0, 2262, 2260, 1, 0, 0, 0, 2262, 2263, 1, 0, 0, 0, 2263, 2272, 1, 0, 0, 0, 2264, 2265, 3, 334, 167, 0, 2265, 2266, 5, 514, 0, 0, 2266, 2269, 3, 334, 167, 0, 2267, 2268, 5, 514, 0, 0, 2268, 2270, 3, 334, 167, 0, 2269, 2267, 1, 0, 0, 0, 2269, 2270, 1, 0, 0, 0, 2270, 2272, 1, 0, 0, 0, 2271, 2259, 1, 0, 0, 0, 2271, 2264, 1, 0, 0, 0, 2272, 355, 1, 0, 0, 0, 2273, 2276, 3, 334, 167, 0, 2274, 2275, 5, 514, 0, 0, 2275, 2277, 3, 334, 167, 0, 2276, 2274, 1, 0, 0, 0, 2276, 2277, 1, 0, 0, 0, 2277, 2286, 1, 0, 0, 0, 2278, 2279, 3, 334, 167, 0, 2279, 2280, 5, 514, 0, 0, 2280, 2283, 3, 334, 167, 0, 2281, 2282, 5, 514, 0, 0, 2282, 2284, 3, 334, 167, 0, 2283, 2281, 1, 0, 0, 0, 2283, 2284, 1, 0, 0, 0, 2284, 2286, 1, 0, 0, 0, 2285, 2273, 1, 0, 0, 0, 2285, 2278, 1, 0, 0, 0, 2286, 357, 1, 0, 0, 0, 2287, 2292, 3, 334, 167, 0, 2288, 2289, 5, 514, 0, 0, 2289, 2291, 3, 334, 167, 0, 2290, 2288, 1, 0, 0, 0, 2291, 2294, 1, 0, 0, 0, 2292, 2290, 1, 0, 0, 0, 2292, 2293, 1, 0, 0, 0, 2293, 359, 1, 0, 0, 0, 2294, 2292, 1, 0, 0, 0, 2295, 2300, 3, 334, 167, 0, 2296, 2297, 5, 514, 0, 0, 2297, 2299, 3, 334, 167, 0, 2298, 2296, 1, 0, 0, 0, 2299, 2302, 1, 0, 0, 0, 2300, 2298, 1, 0, 0, 0, 2300, 2301, 1, 0, 0, 0, 2301, 2309, 1, 0, 0, 0, 2302, 2300, 1, 0, 0, 0, 2303, 2304, 4, 180, 16, 0, 2304, 2305, 3, 334, 167, 0, 2305, 2306, 5, 514, 0, 0, 2306, 2307, 3, 52, 26, 0, 2307, 2309, 1, 0, 0, 0, 2308, 2295, 1, 0, 0, 0, 2308, 2303, 1, 0, 0, 0, 2309, 361, 1, 0, 0, 0, 2310, 2311, 5, 434, 0, 0, 2311, 2312, 3, 368, 184, 0, 2312, 363, 1, 0, 0, 0, 2313, 2314, 5, 167, 0, 0, 2314, 2315, 5, 242, 0, 0, 2315, 2316, 5, 133, 0, 0, 2316, 365, 1, 0, 0, 0, 2317, 2318, 5, 167, 0, 0, 2318, 2319, 5, 133, 0, 0, 2319, 367, 1, 0, 0, 0, 2320, 2321, 5, 517, 0, 0, 2321, 2326, 3, 370, 185, 0, 2322, 2323, 5, 521, 0, 0, 2323, 2325, 3, 370, 185, 0, 2324, 2322, 1, 0, 0, 0, 2325, 2328, 1, 0, 0, 0, 2326, 2324, 1, 0, 0, 0, 2326, 2327, 1, 0, 0, 0, 2327, 2329, 1, 0, 0, 0, 2328, 2326, 1, 0, 0, 0, 2329, 2330, 5, 518, 0, 0, 2330, 369, 1, 0, 0, 0, 2331, 2336, 3, 372, 186, 0, 2332, 2334, 5, 506, 0, 0, 2333, 2332, 1, 0, 0, 0, 2333, 2334, 1, 0, 0, 0, 2334, 2335, 1, 0, 0, 0, 2335, 2337, 3, 374, 187, 0, 2336, 2333, 1, 0, 0, 0, 2336, 2337, 1, 0, 0, 0, 2337, 371, 1, 0, 0, 0, 2338, 2342, 3, 334, 167, 0, 2339, 2342, 3, 306, 153, 0, 2340, 2342, 5, 538, 0, 0, 2341, 2338, 1, 0, 0, 0, 2341, 2339, 1, 0, 0, 0, 2341, 2340, 1, 0, 0, 0, 2342, 373, 1, 0, 0, 0, 2343, 2348, 5, 539, 0, 0, 2344, 2348, 5, 540, 0, 0, 2345, 2348, 3, 394, 197, 0, 2346, 2348, 5, 538, 0, 0, 2347, 2343, 1, 0, 0, 0, 2347, 2344, 1, 0, 0, 0, 2347, 2345, 1, 0, 0, 0, 2347, 2346, 1, 0, 0, 0, 2348, 375, 1, 0, 0, 0, 2349, 2356, 5, 10, 0, 0, 2350, 2351, 5, 512, 0, 0, 2351, 2356, 5, 512, 0, 0, 2352, 2356, 5, 258, 0, 0, 2353, 2354, 5, 511, 0, 0, 2354, 2356, 5, 511, 0, 0, 2355, 2349, 1, 0, 0, 0, 2355, 2350, 1, 0, 0, 0, 2355, 2352, 1, 0, 0, 0, 2355, 2353, 1, 0, 0, 0, 2356, 377, 1, 0, 0, 0, 2357, 2372, 5, 506, 0, 0, 2358, 2372, 5, 507, 0, 0, 2359, 2372, 5, 508, 0, 0, 2360, 2361, 5, 508, 0, 0, 2361, 2372, 5, 506, 0, 0, 2362, 2363, 5, 507, 0, 0, 2363, 2372, 5, 506, 0, 0, 2364, 2365, 5, 508, 0, 0, 2365, 2372, 5, 507, 0, 0, 2366, 2367, 5, 509, 0, 0, 2367, 2372, 5, 506, 0, 0, 2368, 2369, 5, 508, 0, 0, 2369, 2370, 5, 506, 0, 0, 2370, 2372, 5, 507, 0, 0, 2371, 2357, 1, 0, 0, 0, 2371, 2358, 1, 0, 0, 0, 2371, 2359, 1, 0, 0, 0, 2371, 2360, 1, 0, 0, 0, 2371, 2362, 1, 0, 0, 0, 2371, 2364, 1, 0, 0, 0, 2371, 2366, 1, 0, 0, 0, 2371, 2368, 1, 0, 0, 0, 2372, 379, 1, 0, 0, 0, 2373, 2374, 5, 508, 0, 0, 2374, 2381, 5, 508, 0, 0, 2375, 2376, 5, 507, 0, 0, 2376, 2381, 5, 507, 0, 0, 2377, 2381, 5, 512, 0, 0, 2378, 2381, 5, 513, 0, 0, 2379, 2381, 5, 511, 0, 0, 2380, 2373, 1, 0, 0, 0, 2380, 2375, 1, 0, 0, 0, 2380, 2377, 1, 0, 0, 0, 2380, 2378, 1, 0, 0, 0, 2380, 2379, 1, 0, 0, 0, 2381, 381, 1, 0, 0, 0, 2382, 2383, 7, 36, 0, 0, 2383, 383, 1, 0, 0, 0, 2384, 2385, 7, 37, 0, 0, 2385, 385, 1, 0, 0, 0, 2386, 2401, 3, 312, 156, 0, 2387, 2401, 3, 388, 194, 0, 2388, 2401, 3, 390, 195, 0, 2389, 2391, 5, 530, 0, 0, 2390, 2389, 1, 0, 0, 0, 2390, 2391, 1, 0, 0, 0, 2391, 2392, 1, 0, 0, 0, 2392, 2401, 3, 392, 196, 0, 2393, 2401, 3, 394, 197, 0, 2394, 2401, 5, 540, 0, 0, 2395, 2401, 5, 541, 0, 0, 2396, 2398, 5, 242, 0, 0, 2397, 2396, 1, 0, 0, 0, 2397, 2398, 1, 0, 0, 0, 2398, 2399, 1, 0, 0, 0, 2399, 2401, 5, 245, 0, 0, 2400, 2386, 1, 0, 0, 0, 2400, 2387, 1, 0, 0, 0, 2400, 2388, 1, 0, 0, 0, 2400, 2390, 1, 0, 0, 0, 2400, 2393, 1, 0, 0, 0, 2400, 2394, 1, 0, 0, 0, 2400, 2395, 1, 0, 0, 0, 2400, 2397, 1, 0, 0, 0, 2401, 387, 1, 0, 0, 0, 2402, 2403, 3, 398, 199, 0, 2403, 2404, 3, 390, 195, 0, 2404, 389, 1, 0, 0, 0, 2405, 2406, 5, 538, 0, 0, 2406, 391, 1, 0, 0, 0, 2407, 2408, 5, 539, 0, 0, 2408, 393, 1, 0, 0, 0, 2409, 2410, 7, 38, 0, 0, 2410, 395, 1, 0, 0, 0, 2411, 2412, 7, 39, 0, 0, 2412, 397, 1, 0, 0, 0, 2413, 2414, 7, 40, 0, 0, 2414, 399, 1, 0, 0, 0, 2415, 2416, 7, 41, 0, 0, 2416, 401, 1, 0, 0, 0, 2417, 2418, 7, 42, 0, 0, 2418, 403, 1, 0, 0, 0, 2419, 2420, 7, 43, 0, 0, 2420, 405, 1, 0, 0, 0, 2421, 2422, 7, 44, 0, 0, 2422, 407, 1, 0, 0, 0, 2423, 2424, 7, 45, 0, 0, 2424, 409, 1, 0, 0, 0, 2425, 2426, 7, 46, 0, 0, 2426, 411, 1, 0, 0, 0, 289, 415, 422, 425, 439, 457, 461, 470, 475, 482, 493, 502, 514, 517, 524, 527, 535, 539, 544, 547, 554, 562, 566, 578, 586, 590, 622, 625, 630, 634, 638, 642, 651, 656, 660, 664, 669, 672, 676, 681, 687, 692, 697, 701, 705, 712, 719, 727, 735, 739, 743, 747, 751, 755, 759, 763, 767, 769, 779, 787, 811, 825, 830, 834, 840, 843, 846, 853, 856, 865, 877, 901, 913, 918, 922, 930, 934, 940, 950, 955, 961, 965, 969, 973, 982, 986, 993, 996, 1006, 1014, 1022, 1026, 1041, 1060, 1071, 1075, 1082, 1087, 1093, 1097, 1104, 1108, 1112, 1116, 1124, 1128, 1133, 1139, 1145, 1148, 1152, 1163, 1172, 1179, 1190, 1202, 1217, 1220, 1224, 1227, 1229, 1234, 1238, 1241, 1245, 1254, 1263, 1273, 1278, 1289, 1292, 1295, 1298, 1301, 1307, 1311, 1320, 1327, 1330, 1334, 1339, 1342, 1346, 1355, 1362, 1365, 1369, 1372, 1374, 1381, 1386, 1402, 1413, 1418, 1426, 1429, 1432, 1437, 1439, 1441, 1446, 1449, 1453, 1457, 1461, 1470, 1481, 1508, 1530, 1544, 1546, 1550, 1555, 1564, 1577, 1589, 1601, 1607, 1634, 1642, 1646, 1649, 1652, 1659, 1662, 1665, 1668, 1671, 1674, 1679, 1682, 1691, 1696, 1700, 1705, 1711, 1716, 1720, 1739, 1747, 1755, 1759, 1763, 1773, 1799, 1807, 1819, 1841, 1843, 1854, 1857, 1859, 1863, 1867, 1874, 1883, 1889, 1902, 1909, 1914, 1920, 1927, 1934, 1936, 1939, 1951, 1956, 1959, 1965, 1967, 1973, 1994, 1996, 2004, 2011, 2014, 2018, 2025, 2029, 2038, 2042, 2058, 2067, 2095, 2104, 2113, 2119, 2123, 2129, 2137, 2142, 2146, 2153, 2158, 2166, 2170, 2173, 2177, 2186, 2189, 2200, 2206, 2224, 2229, 2234, 2241, 2243, 2248, 2255, 2257, 2262, 2269, 2271, 2276, 2283, 2285, 2292, 2300, 2308, 2326, 2333, 2336, 2341, 2347, 2355, 2371, 2380, 2390, 2397, 2400] \ No newline at end of file diff --git a/src/lib/flink/FlinkSqlParser.ts b/src/lib/flink/FlinkSqlParser.ts index 293f1b2c7..bcbc01c73 100644 --- a/src/lib/flink/FlinkSqlParser.ts +++ b/src/lib/flink/FlinkSqlParser.ts @@ -5917,7 +5917,7 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 180, FlinkSqlParser.RULE_columnProjectItem); let _la: number; try { - this.state = 1344; + this.state = 1346; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 141, this.context) ) { case 1: @@ -6010,6 +6010,17 @@ export class FlinkSqlParser extends SQLParserBase { } } break; + case 5: + this.enterOuterAlt(localContext, 5); + { + this.state = 1344; + if (!(this.shouldMatchEmpty())) { + throw this.createFailedPredicateException("this.shouldMatchEmpty()"); + } + this.state = 1345; + this.emptyColumn(); + } + break; } } catch (re) { @@ -6032,7 +6043,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1346; + this.state = 1348; this.overWindowItem(); } } @@ -6056,7 +6067,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1348; + this.state = 1350; this.expression(); } } @@ -6080,7 +6091,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1350; + this.state = 1352; this.columnName(); } } @@ -6105,17 +6116,17 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1353; + this.state = 1355; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 1352; + this.state = 1354; this.match(FlinkSqlParser.KW_AS); } } - this.state = 1355; + this.state = 1357; localContext._alias = this.identifier(); } } @@ -6138,37 +6149,37 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 190, FlinkSqlParser.RULE_projectItemDefinition); let _la: number; try { - this.state = 1372; + this.state = 1374; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 147, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1357; + this.state = 1359; this.overWindowItem(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1358; + this.state = 1360; this.expression(); - this.state = 1363; + this.state = 1365; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 144, this.context) ) { case 1: { - this.state = 1360; + this.state = 1362; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 143, this.context) ) { case 1: { - this.state = 1359; + this.state = 1361; this.match(FlinkSqlParser.KW_AS); } break; } - this.state = 1362; + this.state = 1364; this.columnName(); } break; @@ -6178,24 +6189,24 @@ export class FlinkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1365; + this.state = 1367; this.columnName(); - this.state = 1370; + this.state = 1372; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 146, this.context) ) { case 1: { - this.state = 1367; + this.state = 1369; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 1366; + this.state = 1368; this.match(FlinkSqlParser.KW_AS); } } - this.state = 1369; + this.state = 1371; this.expression(); } break; @@ -6226,37 +6237,37 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1384; + this.state = 1386; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 438)) & ~0x1F) === 0 && ((1 << (_la - 438)) & 4294967295) !== 0) || ((((_la - 470)) & ~0x1F) === 0 && ((1 << (_la - 470)) & 4294967295) !== 0) || ((((_la - 502)) & ~0x1F) === 0 && ((1 << (_la - 502)) & 15) !== 0) || ((((_la - 538)) & ~0x1F) === 0 && ((1 << (_la - 538)) & 19) !== 0)) { { - this.state = 1374; + this.state = 1376; this.identifier(); - this.state = 1379; + this.state = 1381; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 148, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1375; + this.state = 1377; this.match(FlinkSqlParser.DOT); - this.state = 1376; + this.state = 1378; this.identifier(); } } } - this.state = 1381; + this.state = 1383; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 148, this.context); } - this.state = 1382; + this.state = 1384; this.match(FlinkSqlParser.DOT); } } - this.state = 1386; + this.state = 1388; this.match(FlinkSqlParser.ASTERISK_SIGN); } } @@ -6278,36 +6289,36 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new OverWindowItemContext(this.context, this.state); this.enterRule(localContext, 194, FlinkSqlParser.RULE_overWindowItem); try { - this.state = 1400; + this.state = 1402; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 150, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1388; + this.state = 1390; this.primaryExpression(0); - this.state = 1389; + this.state = 1391; this.match(FlinkSqlParser.KW_OVER); - this.state = 1390; + this.state = 1392; this.windowSpec(); - this.state = 1391; + this.state = 1393; this.match(FlinkSqlParser.KW_AS); - this.state = 1392; + this.state = 1394; localContext._alias = this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1394; + this.state = 1396; this.primaryExpression(0); - this.state = 1395; + this.state = 1397; this.match(FlinkSqlParser.KW_OVER); - this.state = 1396; + this.state = 1398; this.errorCapturingIdentifier(); - this.state = 1397; + this.state = 1399; this.match(FlinkSqlParser.KW_AS); - this.state = 1398; + this.state = 1400; localContext._alias = this.identifier(); } break; @@ -6333,9 +6344,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1402; + this.state = 1404; this.match(FlinkSqlParser.KW_FROM); - this.state = 1403; + this.state = 1405; this.tableExpression(0); } } @@ -6372,28 +6383,28 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1416; + this.state = 1418; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 152, this.context) ) { case 1: { - this.state = 1406; + this.state = 1408; this.tableReference(); - this.state = 1411; + this.state = 1413; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 151, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1407; + this.state = 1409; this.match(FlinkSqlParser.COMMA); - this.state = 1408; + this.state = 1410; this.tableReference(); } } } - this.state = 1413; + this.state = 1415; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 151, this.context); } @@ -6401,19 +6412,19 @@ export class FlinkSqlParser extends SQLParserBase { break; case 2: { - this.state = 1414; + this.state = 1416; this.inlineDataValueClause(); } break; case 3: { - this.state = 1415; + this.state = 1417; this.windowTVFClause(); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1439; + this.state = 1441; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 158, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -6423,22 +6434,22 @@ export class FlinkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 1437; + this.state = 1439; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 157, this.context) ) { case 1: { localContext = new TableExpressionContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_tableExpression); - this.state = 1418; + this.state = 1420; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 1419; + this.state = 1421; this.match(FlinkSqlParser.KW_CROSS); - this.state = 1420; + this.state = 1422; this.match(FlinkSqlParser.KW_JOIN); - this.state = 1421; + this.state = 1423; this.tableExpression(4); } break; @@ -6446,26 +6457,26 @@ export class FlinkSqlParser extends SQLParserBase { { localContext = new TableExpressionContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_tableExpression); - this.state = 1422; + this.state = 1424; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 1424; + this.state = 1426; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 234) { { - this.state = 1423; + this.state = 1425; this.match(FlinkSqlParser.KW_NATURAL); } } - this.state = 1427; + this.state = 1429; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 152 || _la === 174 || _la === 202 || _la === 318) { { - this.state = 1426; + this.state = 1428; _la = this.tokenStream.LA(1); if(!(_la === 152 || _la === 174 || _la === 202 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -6477,26 +6488,26 @@ export class FlinkSqlParser extends SQLParserBase { } } - this.state = 1430; + this.state = 1432; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 262) { { - this.state = 1429; + this.state = 1431; this.match(FlinkSqlParser.KW_OUTER); } } - this.state = 1432; + this.state = 1434; this.match(FlinkSqlParser.KW_JOIN); - this.state = 1433; - this.tableExpression(0); this.state = 1435; + this.tableExpression(0); + this.state = 1437; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 156, this.context) ) { case 1: { - this.state = 1434; + this.state = 1436; this.joinCondition(); } break; @@ -6506,7 +6517,7 @@ export class FlinkSqlParser extends SQLParserBase { } } } - this.state = 1441; + this.state = 1443; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 158, this.context); } @@ -6532,14 +6543,14 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1442; - this.tablePrimary(); this.state = 1444; + this.tablePrimary(); + this.state = 1446; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 159, this.context) ) { case 1: { - this.state = 1443; + this.state = 1445; this.tableAlias(); } break; @@ -6565,30 +6576,30 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 202, FlinkSqlParser.RULE_tablePrimary); let _la: number; try { - this.state = 1459; + this.state = 1461; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 163, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1447; + this.state = 1449; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 374) { { - this.state = 1446; + this.state = 1448; this.match(FlinkSqlParser.KW_TABLE); } } - this.state = 1449; - this.tablePath(); this.state = 1451; + this.tablePath(); + this.state = 1453; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 161, this.context) ) { case 1: { - this.state = 1450; + this.state = 1452; this.systemTimePeriod(); } break; @@ -6598,14 +6609,14 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1453; - this.viewPath(); this.state = 1455; + this.viewPath(); + this.state = 1457; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 162, this.context) ) { case 1: { - this.state = 1454; + this.state = 1456; this.systemTimePeriod(); } break; @@ -6615,14 +6626,14 @@ export class FlinkSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1457; + this.state = 1459; this.atomFunctionTable(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1458; + this.state = 1460; this.atomExpressionTable(); } break; @@ -6648,15 +6659,15 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1461; + this.state = 1463; this.match(FlinkSqlParser.KW_LATERAL); - this.state = 1462; + this.state = 1464; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1463; + this.state = 1465; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1464; + this.state = 1466; this.functionCallExpression(); - this.state = 1465; + this.state = 1467; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -6679,41 +6690,41 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 206, FlinkSqlParser.RULE_atomExpressionTable); let _la: number; try { - this.state = 1479; + this.state = 1481; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_LATERAL: case FlinkSqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 1); { - this.state = 1468; + this.state = 1470; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 199) { { - this.state = 1467; + this.state = 1469; this.match(FlinkSqlParser.KW_LATERAL); } } - this.state = 1470; + this.state = 1472; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1471; + this.state = 1473; this.queryStatement(0); - this.state = 1472; + this.state = 1474; this.match(FlinkSqlParser.RR_BRACKET); } break; case FlinkSqlParser.KW_UNNEST: this.enterOuterAlt(localContext, 2); { - this.state = 1474; + this.state = 1476; this.match(FlinkSqlParser.KW_UNNEST); - this.state = 1475; + this.state = 1477; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1476; + this.state = 1478; this.expression(); - this.state = 1477; + this.state = 1479; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -6741,15 +6752,15 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1481; + this.state = 1483; this.match(FlinkSqlParser.KW_FOR); - this.state = 1482; + this.state = 1484; this.match(FlinkSqlParser.KW_SYSTEM_TIME); - this.state = 1483; + this.state = 1485; this.match(FlinkSqlParser.KW_AS); - this.state = 1484; + this.state = 1486; this.match(FlinkSqlParser.KW_OF); - this.state = 1485; + this.state = 1487; this.dateTimeExpression(); } } @@ -6773,7 +6784,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1487; + this.state = 1489; this.expression(); } } @@ -6797,13 +6808,13 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1489; + this.state = 1491; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1490; + this.state = 1492; this.valuesDefinition(); - this.state = 1491; + this.state = 1493; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 1492; + this.state = 1494; this.tableAlias(); } } @@ -6827,13 +6838,13 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1494; + this.state = 1496; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1495; + this.state = 1497; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1496; + this.state = 1498; this.windowTVFExpression(); - this.state = 1497; + this.state = 1499; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -6858,29 +6869,29 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1499; + this.state = 1501; this.windowTVFName(); - this.state = 1500; + this.state = 1502; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1501; + this.state = 1503; this.windowTVFParam(); - this.state = 1506; + this.state = 1508; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1502; + this.state = 1504; this.match(FlinkSqlParser.COMMA); - this.state = 1503; + this.state = 1505; this.windowTVFParam(); } } - this.state = 1508; + this.state = 1510; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1509; + this.state = 1511; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -6905,7 +6916,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1511; + this.state = 1513; _la = this.tokenStream.LA(1); if(!(_la === 446 || _la === 460 || _la === 500)) { this.errorHandler.recoverInline(this); @@ -6934,64 +6945,64 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new WindowTVFParamContext(this.context, this.state); this.enterRule(localContext, 220, FlinkSqlParser.RULE_windowTVFParam); try { - this.state = 1528; + this.state = 1530; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 167, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1513; + this.state = 1515; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1514; + this.state = 1516; this.timeAttrColumn(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1515; + this.state = 1517; this.columnDescriptor(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1516; + this.state = 1518; this.timeIntervalExpression(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1517; + this.state = 1519; this.match(FlinkSqlParser.KW_DATA); - this.state = 1518; + this.state = 1520; this.match(FlinkSqlParser.DOUBLE_RIGHT_ARROW); - this.state = 1519; + this.state = 1521; this.match(FlinkSqlParser.KW_TABLE); - this.state = 1520; + this.state = 1522; this.timeAttrColumn(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1521; + this.state = 1523; this.match(FlinkSqlParser.KW_TIMECOL); - this.state = 1522; + this.state = 1524; this.match(FlinkSqlParser.DOUBLE_RIGHT_ARROW); - this.state = 1523; + this.state = 1525; this.columnDescriptor(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1524; + this.state = 1526; this.timeIntervalParamName(); - this.state = 1525; + this.state = 1527; this.match(FlinkSqlParser.DOUBLE_RIGHT_ARROW); - this.state = 1526; + this.state = 1528; this.timeIntervalExpression(); } break; @@ -7018,7 +7029,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1530; + this.state = 1532; _la = this.tokenStream.LA(1); if(!(_la === 251 || _la === 447 || ((((_la - 495)) & ~0x1F) === 0 && ((1 << (_la - 495)) & 23) !== 0))) { this.errorHandler.recoverInline(this); @@ -7049,13 +7060,13 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1532; + this.state = 1534; this.match(FlinkSqlParser.KW_DESCRIPTOR); - this.state = 1533; + this.state = 1535; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1534; + this.state = 1536; this.columnName(); - this.state = 1535; + this.state = 1537; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -7077,35 +7088,35 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new JoinConditionContext(this.context, this.state); this.enterRule(localContext, 226, FlinkSqlParser.RULE_joinCondition); try { - this.state = 1548; + this.state = 1550; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ON: this.enterOuterAlt(localContext, 1); { - this.state = 1537; + this.state = 1539; this.match(FlinkSqlParser.KW_ON); - this.state = 1544; + this.state = 1546; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 169, this.context) ) { case 1: { - this.state = 1538; + this.state = 1540; this.booleanExpression(0); } break; case 2: { - this.state = 1539; + this.state = 1541; this.columnNamePathAllowEmpty(); - this.state = 1542; + this.state = 1544; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 168, this.context) ) { case 1: { - this.state = 1540; + this.state = 1542; this.match(FlinkSqlParser.EQUAL_SYMBOL); - this.state = 1541; + this.state = 1543; this.columnNamePathAllowEmpty(); } break; @@ -7118,9 +7129,9 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 1546; + this.state = 1548; this.match(FlinkSqlParser.KW_USING); - this.state = 1547; + this.state = 1549; this.columnNameList(); } break; @@ -7148,20 +7159,20 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1550; + this.state = 1552; this.match(FlinkSqlParser.KW_WHERE); - this.state = 1553; + this.state = 1555; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 171, this.context) ) { case 1: { - this.state = 1551; + this.state = 1553; this.booleanExpression(0); } break; case 2: { - this.state = 1552; + this.state = 1554; this.columnNamePathAllowEmpty(); } break; @@ -7189,27 +7200,27 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1555; + this.state = 1557; this.match(FlinkSqlParser.KW_GROUP); - this.state = 1556; + this.state = 1558; this.match(FlinkSqlParser.KW_BY); - this.state = 1557; + this.state = 1559; this.groupItemDefinition(); - this.state = 1562; + this.state = 1564; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 172, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1558; + this.state = 1560; this.match(FlinkSqlParser.COMMA); - this.state = 1559; + this.state = 1561; this.groupItemDefinition(); } } } - this.state = 1564; + this.state = 1566; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 172, this.context); } @@ -7234,121 +7245,121 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 232, FlinkSqlParser.RULE_groupItemDefinition); let _la: number; try { - this.state = 1605; + this.state = 1607; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 176, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1565; + this.state = 1567; this.columnName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1566; + this.state = 1568; this.groupWindowFunction(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1567; + this.state = 1569; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1568; + this.state = 1570; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1569; + this.state = 1571; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1570; + this.state = 1572; this.expression(); - this.state = 1575; + this.state = 1577; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1571; + this.state = 1573; this.match(FlinkSqlParser.COMMA); - this.state = 1572; + this.state = 1574; this.expression(); } } - this.state = 1577; + this.state = 1579; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1578; + this.state = 1580; this.match(FlinkSqlParser.RR_BRACKET); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1580; + this.state = 1582; this.groupingSetsNotationName(); - this.state = 1581; + this.state = 1583; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1582; + this.state = 1584; this.expression(); - this.state = 1587; + this.state = 1589; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1583; + this.state = 1585; this.match(FlinkSqlParser.COMMA); - this.state = 1584; + this.state = 1586; this.expression(); } } - this.state = 1589; + this.state = 1591; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1590; + this.state = 1592; this.match(FlinkSqlParser.RR_BRACKET); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1592; + this.state = 1594; this.groupingSets(); - this.state = 1593; + this.state = 1595; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1594; + this.state = 1596; this.groupItemDefinition(); - this.state = 1599; + this.state = 1601; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1595; + this.state = 1597; this.match(FlinkSqlParser.COMMA); - this.state = 1596; + this.state = 1598; this.groupItemDefinition(); } } - this.state = 1601; + this.state = 1603; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1602; + this.state = 1604; this.match(FlinkSqlParser.RR_BRACKET); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1604; + this.state = 1606; this.expression(); } break; @@ -7374,9 +7385,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1607; + this.state = 1609; this.match(FlinkSqlParser.KW_GROUPING); - this.state = 1608; + this.state = 1610; this.match(FlinkSqlParser.KW_SETS); } } @@ -7401,7 +7412,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1610; + this.state = 1612; _la = this.tokenStream.LA(1); if(!(_la === 74 || _la === 321)) { this.errorHandler.recoverInline(this); @@ -7432,17 +7443,17 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1612; + this.state = 1614; this.groupWindowFunctionName(); - this.state = 1613; + this.state = 1615; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1614; + this.state = 1616; this.timeAttrColumn(); - this.state = 1615; + this.state = 1617; this.match(FlinkSqlParser.COMMA); - this.state = 1616; + this.state = 1618; this.timeIntervalExpression(); - this.state = 1617; + this.state = 1619; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -7467,7 +7478,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1619; + this.state = 1621; _la = this.tokenStream.LA(1); if(!(_la === 460 || _la === 493 || _la === 500)) { this.errorHandler.recoverInline(this); @@ -7498,7 +7509,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1621; + this.state = 1623; this.uid(); } } @@ -7522,9 +7533,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1623; + this.state = 1625; this.match(FlinkSqlParser.KW_HAVING); - this.state = 1624; + this.state = 1626; this.booleanExpression(0); } } @@ -7549,25 +7560,25 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1626; + this.state = 1628; this.match(FlinkSqlParser.KW_WINDOW); - this.state = 1627; + this.state = 1629; this.namedWindow(); - this.state = 1632; + this.state = 1634; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 177, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1628; + this.state = 1630; this.match(FlinkSqlParser.COMMA); - this.state = 1629; + this.state = 1631; this.namedWindow(); } } } - this.state = 1634; + this.state = 1636; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 177, this.context); } @@ -7593,11 +7604,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1635; + this.state = 1637; localContext._name = this.errorCapturingIdentifier(); - this.state = 1636; + this.state = 1638; this.match(FlinkSqlParser.KW_AS); - this.state = 1637; + this.state = 1639; this.windowSpec(); } } @@ -7622,49 +7633,49 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1640; + this.state = 1642; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 438)) & ~0x1F) === 0 && ((1 << (_la - 438)) & 4294967295) !== 0) || ((((_la - 470)) & ~0x1F) === 0 && ((1 << (_la - 470)) & 4294967295) !== 0) || ((((_la - 502)) & ~0x1F) === 0 && ((1 << (_la - 502)) & 15) !== 0) || ((((_la - 538)) & ~0x1F) === 0 && ((1 << (_la - 538)) & 19) !== 0)) { { - this.state = 1639; + this.state = 1641; localContext._name = this.errorCapturingIdentifier(); } } - this.state = 1642; - this.match(FlinkSqlParser.LR_BRACKET); this.state = 1644; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 1646; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 1643; + this.state = 1645; this.partitionByClause(); } } - this.state = 1647; + this.state = 1649; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 259) { { - this.state = 1646; + this.state = 1648; this.orderByClause(); } } - this.state = 1650; + this.state = 1652; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 293 || _la === 323) { { - this.state = 1649; + this.state = 1651; this.windowFrame(); } } - this.state = 1652; + this.state = 1654; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -7689,90 +7700,90 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1654; + this.state = 1656; this.match(FlinkSqlParser.KW_MATCH_RECOGNIZE); - this.state = 1655; - this.match(FlinkSqlParser.LR_BRACKET); this.state = 1657; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 1659; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 1656; + this.state = 1658; this.partitionByClause(); } } - this.state = 1660; + this.state = 1662; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 259) { { - this.state = 1659; + this.state = 1661; this.orderByClause(); } } - this.state = 1663; + this.state = 1665; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 216) { { - this.state = 1662; + this.state = 1664; this.measuresClause(); } } - this.state = 1666; + this.state = 1668; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 5 || _la === 255) { { - this.state = 1665; + this.state = 1667; this.outputMode(); } } - this.state = 1669; + this.state = 1671; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 439) { { - this.state = 1668; + this.state = 1670; this.afterMatchStrategy(); } } - this.state = 1672; + this.state = 1674; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 272) { { - this.state = 1671; + this.state = 1673; this.patternDefinition(); } } - this.state = 1674; + this.state = 1676; this.patternVariablesDefinition(); - this.state = 1675; + this.state = 1677; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 1680; + this.state = 1682; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 189, this.context) ) { case 1: { - this.state = 1677; + this.state = 1679; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 1676; + this.state = 1678; this.match(FlinkSqlParser.KW_AS); } } - this.state = 1679; + this.state = 1681; this.identifier(); } break; @@ -7800,27 +7811,27 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1682; + this.state = 1684; this.match(FlinkSqlParser.KW_ORDER); - this.state = 1683; + this.state = 1685; this.match(FlinkSqlParser.KW_BY); - this.state = 1684; + this.state = 1686; this.orderItemDefinition(); - this.state = 1689; + this.state = 1691; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 190, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1685; + this.state = 1687; this.match(FlinkSqlParser.COMMA); - this.state = 1686; + this.state = 1688; this.orderItemDefinition(); } } } - this.state = 1691; + this.state = 1693; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 190, this.context); } @@ -7847,14 +7858,14 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1692; - this.columnName(); this.state = 1694; + this.columnName(); + this.state = 1696; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 191, this.context) ) { case 1: { - this.state = 1693; + this.state = 1695; localContext._ordering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 440 || _la === 451)) { @@ -7867,14 +7878,14 @@ export class FlinkSqlParser extends SQLParserBase { } break; } - this.state = 1698; + this.state = 1700; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 192, this.context) ) { case 1: { - this.state = 1696; + this.state = 1698; this.match(FlinkSqlParser.KW_NULLS); - this.state = 1697; + this.state = 1699; localContext._nullOrder = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 458 || _la === 468)) { @@ -7909,14 +7920,14 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1700; + this.state = 1702; this.match(FlinkSqlParser.KW_LIMIT); - this.state = 1703; + this.state = 1705; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ALL: { - this.state = 1701; + this.state = 1703; this.match(FlinkSqlParser.KW_ALL); } break; @@ -8079,7 +8090,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.BIT_STRING: case FlinkSqlParser.ID_LITERAL: { - this.state = 1702; + this.state = 1704; localContext._limit = this.expression(); } break; @@ -8109,53 +8120,53 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1705; + this.state = 1707; this.match(FlinkSqlParser.KW_PARTITION); - this.state = 1706; + this.state = 1708; this.match(FlinkSqlParser.KW_BY); - this.state = 1709; + this.state = 1711; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 194, this.context) ) { case 1: { - this.state = 1707; + this.state = 1709; this.columnName(); } break; case 2: { - this.state = 1708; + this.state = 1710; this.primaryExpression(0); } break; } - this.state = 1718; + this.state = 1720; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1711; + this.state = 1713; this.match(FlinkSqlParser.COMMA); - this.state = 1714; + this.state = 1716; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 195, this.context) ) { case 1: { - this.state = 1712; + this.state = 1714; this.columnName(); } break; case 2: { - this.state = 1713; + this.state = 1715; this.primaryExpression(0); } break; } } } - this.state = 1720; + this.state = 1722; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8179,14 +8190,14 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new QuantifiersContext(this.context, this.state); this.enterRule(localContext, 262, FlinkSqlParser.RULE_quantifiers); try { - this.state = 1737; + this.state = 1739; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 197, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { { - this.state = 1721; + this.state = 1723; this.match(FlinkSqlParser.ASTERISK_SIGN); } } @@ -8195,7 +8206,7 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 2); { { - this.state = 1722; + this.state = 1724; this.match(FlinkSqlParser.ADD_SIGN); } } @@ -8204,7 +8215,7 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 3); { { - this.state = 1723; + this.state = 1725; this.match(FlinkSqlParser.QUESTION_MARK_SIGN); } } @@ -8213,15 +8224,15 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 4); { { - this.state = 1724; - this.match(FlinkSqlParser.LB_BRACKET); - this.state = 1725; - this.match(FlinkSqlParser.DIG_LITERAL); this.state = 1726; - this.match(FlinkSqlParser.COMMA); + this.match(FlinkSqlParser.LB_BRACKET); this.state = 1727; this.match(FlinkSqlParser.DIG_LITERAL); this.state = 1728; + this.match(FlinkSqlParser.COMMA); + this.state = 1729; + this.match(FlinkSqlParser.DIG_LITERAL); + this.state = 1730; this.match(FlinkSqlParser.RB_BRACKET); } } @@ -8230,13 +8241,13 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 5); { { - this.state = 1729; + this.state = 1731; this.match(FlinkSqlParser.LB_BRACKET); - this.state = 1730; + this.state = 1732; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1731; + this.state = 1733; this.match(FlinkSqlParser.COMMA); - this.state = 1732; + this.state = 1734; this.match(FlinkSqlParser.RB_BRACKET); } } @@ -8245,13 +8256,13 @@ export class FlinkSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 6); { { - this.state = 1733; + this.state = 1735; this.match(FlinkSqlParser.LB_BRACKET); - this.state = 1734; + this.state = 1736; this.match(FlinkSqlParser.COMMA); - this.state = 1735; + this.state = 1737; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1736; + this.state = 1738; this.match(FlinkSqlParser.RB_BRACKET); } } @@ -8279,23 +8290,23 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1739; + this.state = 1741; this.match(FlinkSqlParser.KW_MEASURES); - this.state = 1740; + this.state = 1742; this.projectItemDefinition(); - this.state = 1745; + this.state = 1747; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1741; + this.state = 1743; this.match(FlinkSqlParser.COMMA); - this.state = 1742; + this.state = 1744; this.projectItemDefinition(); } } - this.state = 1747; + this.state = 1749; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8322,32 +8333,32 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1748; + this.state = 1750; this.match(FlinkSqlParser.KW_PATTERN); - this.state = 1749; - this.match(FlinkSqlParser.LR_BRACKET); this.state = 1751; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 1753; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1750; + this.state = 1752; this.patternVariable(); } } - this.state = 1753; + this.state = 1755; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 539 || _la === 542); - this.state = 1755; - this.match(FlinkSqlParser.RR_BRACKET); this.state = 1757; + this.match(FlinkSqlParser.RR_BRACKET); + this.state = 1759; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 435) { { - this.state = 1756; + this.state = 1758; this.withinClause(); } } @@ -8375,14 +8386,14 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1759; - this.unquotedIdentifier(); this.state = 1761; + this.unquotedIdentifier(); + this.state = 1763; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 519)) & ~0x1F) === 0 && ((1 << (_la - 519)) & 135681) !== 0)) { { - this.state = 1760; + this.state = 1762; this.quantifiers(); } } @@ -8407,32 +8418,32 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new OutputModeContext(this.context, this.state); this.enterRule(localContext, 270, FlinkSqlParser.RULE_outputMode); try { - this.state = 1771; + this.state = 1773; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_ALL: this.enterOuterAlt(localContext, 1); { - this.state = 1763; + this.state = 1765; this.match(FlinkSqlParser.KW_ALL); - this.state = 1764; + this.state = 1766; this.match(FlinkSqlParser.KW_ROWS); - this.state = 1765; + this.state = 1767; this.match(FlinkSqlParser.KW_PER); - this.state = 1766; + this.state = 1768; this.match(FlinkSqlParser.KW_MATCH); } break; case FlinkSqlParser.KW_ONE: this.enterOuterAlt(localContext, 2); { - this.state = 1767; + this.state = 1769; this.match(FlinkSqlParser.KW_ONE); - this.state = 1768; + this.state = 1770; this.match(FlinkSqlParser.KW_ROW); - this.state = 1769; + this.state = 1771; this.match(FlinkSqlParser.KW_PER); - this.state = 1770; + this.state = 1772; this.match(FlinkSqlParser.KW_MATCH); } break; @@ -8458,74 +8469,74 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new AfterMatchStrategyContext(this.context, this.state); this.enterRule(localContext, 272, FlinkSqlParser.RULE_afterMatchStrategy); try { - this.state = 1797; + this.state = 1799; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 203, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1773; + this.state = 1775; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1774; + this.state = 1776; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1775; + this.state = 1777; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1776; + this.state = 1778; this.match(FlinkSqlParser.KW_PAST); - this.state = 1777; + this.state = 1779; this.match(FlinkSqlParser.KW_LAST); - this.state = 1778; + this.state = 1780; this.match(FlinkSqlParser.KW_ROW); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1779; + this.state = 1781; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1780; + this.state = 1782; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1781; + this.state = 1783; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1782; + this.state = 1784; this.match(FlinkSqlParser.KW_TO); - this.state = 1783; + this.state = 1785; this.match(FlinkSqlParser.KW_NEXT); - this.state = 1784; + this.state = 1786; this.match(FlinkSqlParser.KW_ROW); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1785; + this.state = 1787; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1786; + this.state = 1788; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1787; + this.state = 1789; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1788; + this.state = 1790; this.match(FlinkSqlParser.KW_TO); - this.state = 1789; + this.state = 1791; this.match(FlinkSqlParser.KW_LAST); - this.state = 1790; + this.state = 1792; this.unquotedIdentifier(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1791; + this.state = 1793; this.match(FlinkSqlParser.KW_AFTER); - this.state = 1792; + this.state = 1794; this.match(FlinkSqlParser.KW_MATCH); - this.state = 1793; + this.state = 1795; this.match(FlinkSqlParser.KW_SKIP); - this.state = 1794; + this.state = 1796; this.match(FlinkSqlParser.KW_TO); - this.state = 1795; + this.state = 1797; this.match(FlinkSqlParser.KW_FIRST); - this.state = 1796; + this.state = 1798; this.unquotedIdentifier(); } break; @@ -8552,23 +8563,23 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1799; + this.state = 1801; this.match(FlinkSqlParser.KW_DEFINE); - this.state = 1800; + this.state = 1802; this.projectItemDefinition(); - this.state = 1805; + this.state = 1807; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1801; + this.state = 1803; this.match(FlinkSqlParser.COMMA); - this.state = 1802; + this.state = 1804; this.projectItemDefinition(); } } - this.state = 1807; + this.state = 1809; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8592,32 +8603,32 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new WindowFrameContext(this.context, this.state); this.enterRule(localContext, 276, FlinkSqlParser.RULE_windowFrame); try { - this.state = 1817; + this.state = 1819; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_RANGE: this.enterOuterAlt(localContext, 1); { - this.state = 1808; + this.state = 1810; this.match(FlinkSqlParser.KW_RANGE); - this.state = 1809; + this.state = 1811; this.match(FlinkSqlParser.KW_BETWEEN); - this.state = 1810; + this.state = 1812; this.timeIntervalExpression(); - this.state = 1811; + this.state = 1813; this.frameBound(); } break; case FlinkSqlParser.KW_ROWS: this.enterOuterAlt(localContext, 2); { - this.state = 1813; + this.state = 1815; this.match(FlinkSqlParser.KW_ROWS); - this.state = 1814; + this.state = 1816; this.match(FlinkSqlParser.KW_BETWEEN); - this.state = 1815; + this.state = 1817; this.match(FlinkSqlParser.DIG_LITERAL); - this.state = 1816; + this.state = 1818; this.frameBound(); } break; @@ -8645,13 +8656,13 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1819; + this.state = 1821; this.match(FlinkSqlParser.KW_PRECEDING); - this.state = 1820; + this.state = 1822; this.match(FlinkSqlParser.KW_AND); - this.state = 1821; + this.state = 1823; this.match(FlinkSqlParser.KW_CURRENT); - this.state = 1822; + this.state = 1824; this.match(FlinkSqlParser.KW_ROW); } } @@ -8675,9 +8686,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1824; + this.state = 1826; this.match(FlinkSqlParser.KW_WITHIN); - this.state = 1825; + this.state = 1827; this.timeIntervalExpression(); } } @@ -8701,7 +8712,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1827; + this.state = 1829; this.booleanExpression(0); } } @@ -8738,7 +8749,7 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1841; + this.state = 1843; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 207, this.context) ) { case 1: @@ -8747,9 +8758,9 @@ export class FlinkSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 1830; + this.state = 1832; this.match(FlinkSqlParser.KW_NOT); - this.state = 1831; + this.state = 1833; this.booleanExpression(6); } break; @@ -8758,13 +8769,13 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ExistsContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1832; + this.state = 1834; this.match(FlinkSqlParser.KW_EXISTS); - this.state = 1833; + this.state = 1835; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1834; + this.state = 1836; this.queryStatement(0); - this.state = 1835; + this.state = 1837; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -8773,14 +8784,14 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new PredicatedContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1837; - this.valueExpression(0); this.state = 1839; + this.valueExpression(0); + this.state = 1841; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 206, this.context) ) { case 1: { - this.state = 1838; + this.state = 1840; this.predicate(); } break; @@ -8789,7 +8800,7 @@ export class FlinkSqlParser extends SQLParserBase { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1857; + this.state = 1859; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 210, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -8799,7 +8810,7 @@ export class FlinkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 1855; + this.state = 1857; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 209, this.context) ) { case 1: @@ -8807,13 +8818,13 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new LogicalBinaryContext(new BooleanExpressionContext(parentContext, parentState)); (localContext as LogicalBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_booleanExpression); - this.state = 1843; + this.state = 1845; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 1844; + this.state = 1846; (localContext as LogicalBinaryContext)._operator = this.match(FlinkSqlParser.KW_AND); - this.state = 1845; + this.state = 1847; (localContext as LogicalBinaryContext)._right = this.booleanExpression(4); } break; @@ -8822,13 +8833,13 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new LogicalBinaryContext(new BooleanExpressionContext(parentContext, parentState)); (localContext as LogicalBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_booleanExpression); - this.state = 1846; + this.state = 1848; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 1847; + this.state = 1849; (localContext as LogicalBinaryContext)._operator = this.match(FlinkSqlParser.KW_OR); - this.state = 1848; + this.state = 1850; (localContext as LogicalBinaryContext)._right = this.booleanExpression(3); } break; @@ -8836,23 +8847,23 @@ export class FlinkSqlParser extends SQLParserBase { { localContext = new LogicalNestedContext(new BooleanExpressionContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_booleanExpression); - this.state = 1849; + this.state = 1851; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 1850; - this.match(FlinkSqlParser.KW_IS); this.state = 1852; + this.match(FlinkSqlParser.KW_IS); + this.state = 1854; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1851; + this.state = 1853; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1854; + this.state = 1856; (localContext as LogicalNestedContext)._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 140 || _la === 245 || _la === 398 || _la === 405)) { @@ -8867,7 +8878,7 @@ export class FlinkSqlParser extends SQLParserBase { } } } - this.state = 1859; + this.state = 1861; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 210, this.context); } @@ -8892,30 +8903,30 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 286, FlinkSqlParser.RULE_predicate); let _la: number; try { - this.state = 1934; + this.state = 1936; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 222, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1861; + this.state = 1863; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1860; + this.state = 1862; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1863; - localContext._kind = this.match(FlinkSqlParser.KW_BETWEEN); this.state = 1865; + localContext._kind = this.match(FlinkSqlParser.KW_BETWEEN); + this.state = 1867; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 19 || _la === 370) { { - this.state = 1864; + this.state = 1866; _la = this.tokenStream.LA(1); if(!(_la === 19 || _la === 370)) { this.errorHandler.recoverInline(this); @@ -8927,131 +8938,131 @@ export class FlinkSqlParser extends SQLParserBase { } } - this.state = 1867; + this.state = 1869; localContext._lower = this.valueExpression(0); - this.state = 1868; + this.state = 1870; this.match(FlinkSqlParser.KW_AND); - this.state = 1869; + this.state = 1871; localContext._upper = this.valueExpression(0); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1872; + this.state = 1874; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1871; + this.state = 1873; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1874; + this.state = 1876; localContext._kind = this.match(FlinkSqlParser.KW_IN); - this.state = 1875; + this.state = 1877; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1876; + this.state = 1878; this.expression(); - this.state = 1881; + this.state = 1883; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1877; + this.state = 1879; this.match(FlinkSqlParser.COMMA); - this.state = 1878; + this.state = 1880; this.expression(); } } - this.state = 1883; + this.state = 1885; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1884; + this.state = 1886; this.match(FlinkSqlParser.RR_BRACKET); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1887; + this.state = 1889; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1886; + this.state = 1888; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1889; + this.state = 1891; localContext._kind = this.match(FlinkSqlParser.KW_IN); - this.state = 1890; + this.state = 1892; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1891; + this.state = 1893; this.queryStatement(0); - this.state = 1892; + this.state = 1894; this.match(FlinkSqlParser.RR_BRACKET); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1894; + this.state = 1896; localContext._kind = this.match(FlinkSqlParser.KW_EXISTS); - this.state = 1895; + this.state = 1897; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1896; + this.state = 1898; this.queryStatement(0); - this.state = 1897; + this.state = 1899; this.match(FlinkSqlParser.RR_BRACKET); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1900; + this.state = 1902; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1899; + this.state = 1901; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1902; + this.state = 1904; localContext._kind = this.match(FlinkSqlParser.KW_RLIKE); - this.state = 1903; + this.state = 1905; localContext._pattern = this.valueExpression(0); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1904; + this.state = 1906; this.likePredicate(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1905; - this.match(FlinkSqlParser.KW_IS); this.state = 1907; + this.match(FlinkSqlParser.KW_IS); + this.state = 1909; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1906; + this.state = 1908; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1909; + this.state = 1911; localContext._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 140 || _la === 245 || _la === 398 || _la === 405)) { @@ -9066,53 +9077,53 @@ export class FlinkSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1910; - this.match(FlinkSqlParser.KW_IS); this.state = 1912; + this.match(FlinkSqlParser.KW_IS); + this.state = 1914; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1911; + this.state = 1913; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1914; + this.state = 1916; localContext._kind = this.match(FlinkSqlParser.KW_DISTINCT); - this.state = 1915; + this.state = 1917; this.match(FlinkSqlParser.KW_FROM); - this.state = 1916; + this.state = 1918; localContext._right = this.valueExpression(0); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1918; + this.state = 1920; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1917; + this.state = 1919; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1920; + this.state = 1922; localContext._kind = this.match(FlinkSqlParser.KW_SIMILAR); - this.state = 1921; + this.state = 1923; this.match(FlinkSqlParser.KW_TO); - this.state = 1922; + this.state = 1924; localContext._right = this.valueExpression(0); - this.state = 1925; + this.state = 1927; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 220, this.context) ) { case 1: { - this.state = 1923; + this.state = 1925; this.match(FlinkSqlParser.KW_ESCAPE); - this.state = 1924; + this.state = 1926; this.stringLiteral(); } break; @@ -9122,28 +9133,28 @@ export class FlinkSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1927; + this.state = 1929; this.match(FlinkSqlParser.KW_IS); - this.state = 1928; + this.state = 1930; this.match(FlinkSqlParser.KW_JSON); - this.state = 1932; + this.state = 1934; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 221, this.context) ) { case 1: { - this.state = 1929; + this.state = 1931; this.match(FlinkSqlParser.KW_VALUE); } break; case 2: { - this.state = 1930; + this.state = 1932; this.match(FlinkSqlParser.KW_ARRAY); } break; case 3: { - this.state = 1931; + this.state = 1933; this.identifier(); } break; @@ -9171,25 +9182,25 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 288, FlinkSqlParser.RULE_likePredicate); let _la: number; try { - this.state = 1965; + this.state = 1967; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 228, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1937; + this.state = 1939; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1936; + this.state = 1938; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1939; + this.state = 1941; localContext._kind = this.match(FlinkSqlParser.KW_LIKE); - this.state = 1940; + this.state = 1942; localContext._quantifier = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 5 || _la === 11)) { @@ -9199,40 +9210,40 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1954; + this.state = 1956; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 225, this.context) ) { case 1: { - this.state = 1941; + this.state = 1943; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1942; + this.state = 1944; this.match(FlinkSqlParser.RR_BRACKET); } break; case 2: { - this.state = 1943; + this.state = 1945; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1944; + this.state = 1946; this.expression(); - this.state = 1949; + this.state = 1951; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 1945; + this.state = 1947; this.match(FlinkSqlParser.COMMA); - this.state = 1946; + this.state = 1948; this.expression(); } } - this.state = 1951; + this.state = 1953; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1952; + this.state = 1954; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9242,28 +9253,28 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1957; + this.state = 1959; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 1956; + this.state = 1958; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 1959; + this.state = 1961; localContext._kind = this.match(FlinkSqlParser.KW_LIKE); - this.state = 1960; + this.state = 1962; localContext._pattern = this.valueExpression(0); - this.state = 1963; + this.state = 1965; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 227, this.context) ) { case 1: { - this.state = 1961; + this.state = 1963; this.match(FlinkSqlParser.KW_ESCAPE); - this.state = 1962; + this.state = 1964; this.stringLiteral(); } break; @@ -9305,7 +9316,7 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1971; + this.state = 1973; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 229, this.context) ) { case 1: @@ -9314,7 +9325,7 @@ export class FlinkSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 1968; + this.state = 1970; this.primaryExpression(0); } break; @@ -9323,7 +9334,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ArithmeticUnaryContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 1969; + this.state = 1971; (localContext as ArithmeticUnaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3145729) !== 0))) { @@ -9333,13 +9344,13 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1970; + this.state = 1972; this.valueExpression(7); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1994; + this.state = 1996; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 231, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -9349,7 +9360,7 @@ export class FlinkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 1992; + this.state = 1994; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 230, this.context) ) { case 1: @@ -9357,11 +9368,11 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1973; + this.state = 1975; if (!(this.precpred(this.context, 6))) { throw this.createFailedPredicateException("this.precpred(this.context, 6)"); } - this.state = 1974; + this.state = 1976; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 453 || ((((_la - 528)) & ~0x1F) === 0 && ((1 << (_la - 528)) & 145) !== 0))) { @@ -9371,7 +9382,7 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1975; + this.state = 1977; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(7); } break; @@ -9380,11 +9391,11 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1976; + this.state = 1978; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 1977; + this.state = 1979; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 530)) & ~0x1F) === 0 && ((1 << (_la - 530)) & 11) !== 0))) { @@ -9394,7 +9405,7 @@ export class FlinkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1978; + this.state = 1980; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(6); } break; @@ -9403,13 +9414,13 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1979; + this.state = 1981; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 1980; + this.state = 1982; (localContext as ArithmeticBinaryContext)._operator = this.match(FlinkSqlParser.BIT_AND_OP); - this.state = 1981; + this.state = 1983; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(5); } break; @@ -9418,13 +9429,13 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1982; + this.state = 1984; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 1983; + this.state = 1985; (localContext as ArithmeticBinaryContext)._operator = this.match(FlinkSqlParser.BIT_XOR_OP); - this.state = 1984; + this.state = 1986; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(4); } break; @@ -9433,13 +9444,13 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1985; + this.state = 1987; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 1986; + this.state = 1988; (localContext as ArithmeticBinaryContext)._operator = this.match(FlinkSqlParser.BIT_OR_OP); - this.state = 1987; + this.state = 1989; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(3); } break; @@ -9448,20 +9459,20 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ComparisonContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ComparisonContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 1988; + this.state = 1990; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 1989; + this.state = 1991; this.comparisonOperator(); - this.state = 1990; + this.state = 1992; (localContext as ComparisonContext)._right = this.valueExpression(2); } break; } } } - this.state = 1996; + this.state = 1998; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 231, this.context); } @@ -9486,7 +9497,7 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 292, FlinkSqlParser.RULE_functionCallExpression); let _la: number; try { - this.state = 2016; + this.state = 2018; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_CURRENT_DATE: @@ -9496,7 +9507,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_LOCALTIMESTAMP: this.enterOuterAlt(localContext, 1); { - this.state = 1997; + this.state = 1999; this.reservedKeywordsNoParamsUsedAsFuncName(); } break; @@ -9506,7 +9517,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_TIMESTAMP: this.enterOuterAlt(localContext, 2); { - this.state = 1998; + this.state = 2000; this.functionNameAndParams(); } break; @@ -9647,47 +9658,47 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.ID_LITERAL: this.enterOuterAlt(localContext, 3); { - this.state = 1999; + this.state = 2001; this.functionNameWithParams(); - this.state = 2000; + this.state = 2002; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2012; + this.state = 2014; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 8396848) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 10489249) !== 0) || ((((_la - 69)) & ~0x1F) === 0 && ((1 << (_la - 69)) & 1883341377) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 201330753) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 337641555) !== 0) || ((((_la - 182)) & ~0x1F) === 0 && ((1 << (_la - 182)) & 488456033) !== 0) || ((((_la - 215)) & ~0x1F) === 0 && ((1 << (_la - 215)) & 3892347713) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 537530369) !== 0) || ((((_la - 318)) & ~0x1F) === 0 && ((1 << (_la - 318)) & 131185) !== 0) || ((((_la - 358)) & ~0x1F) === 0 && ((1 << (_la - 358)) & 14681219) !== 0) || ((((_la - 390)) & ~0x1F) === 0 && ((1 << (_la - 390)) & 3238528833) !== 0) || ((((_la - 428)) & ~0x1F) === 0 && ((1 << (_la - 428)) & 4294966785) !== 0) || ((((_la - 460)) & ~0x1F) === 0 && ((1 << (_la - 460)) & 4294967295) !== 0) || ((((_la - 492)) & ~0x1F) === 0 && ((1 << (_la - 492)) & 33832959) !== 0) || ((((_la - 528)) & ~0x1F) === 0 && ((1 << (_la - 528)) & 31757) !== 0)) { { - this.state = 2002; + this.state = 2004; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 232, this.context) ) { case 1: { - this.state = 2001; + this.state = 2003; this.setQuantifier(); } break; } - this.state = 2004; + this.state = 2006; this.functionParam(); - this.state = 2009; + this.state = 2011; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 2005; + this.state = 2007; this.match(FlinkSqlParser.COMMA); - this.state = 2006; + this.state = 2008; this.functionParam(); } } - this.state = 2011; + this.state = 2013; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2014; + this.state = 2016; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9728,7 +9739,7 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2093; + this.state = 2095; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 242, this.context) ) { case 1: @@ -9737,35 +9748,35 @@ export class FlinkSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 2019; - this.match(FlinkSqlParser.KW_CASE); this.state = 2021; + this.match(FlinkSqlParser.KW_CASE); + this.state = 2023; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2020; + this.state = 2022; this.whenClause(); } } - this.state = 2023; + this.state = 2025; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 429); - this.state = 2027; + this.state = 2029; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 120) { { - this.state = 2025; + this.state = 2027; this.match(FlinkSqlParser.KW_ELSE); - this.state = 2026; + this.state = 2028; (localContext as SearchedCaseContext)._elseExpression = this.expression(); } } - this.state = 2029; + this.state = 2031; this.match(FlinkSqlParser.KW_END); } break; @@ -9774,37 +9785,37 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new SimpleCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2031; + this.state = 2033; this.match(FlinkSqlParser.KW_CASE); - this.state = 2032; - (localContext as SimpleCaseContext)._value = this.expression(); this.state = 2034; + (localContext as SimpleCaseContext)._value = this.expression(); + this.state = 2036; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2033; + this.state = 2035; this.whenClause(); } } - this.state = 2036; + this.state = 2038; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 429); - this.state = 2040; + this.state = 2042; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 120) { { - this.state = 2038; + this.state = 2040; this.match(FlinkSqlParser.KW_ELSE); - this.state = 2039; + this.state = 2041; (localContext as SimpleCaseContext)._elseExpression = this.expression(); } } - this.state = 2042; + this.state = 2044; this.match(FlinkSqlParser.KW_END); } break; @@ -9813,17 +9824,17 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new CastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2044; + this.state = 2046; this.match(FlinkSqlParser.KW_CAST); - this.state = 2045; + this.state = 2047; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2046; + this.state = 2048; this.expression(); - this.state = 2047; + this.state = 2049; this.match(FlinkSqlParser.KW_AS); - this.state = 2048; + this.state = 2050; this.columnType(); - this.state = 2049; + this.state = 2051; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9832,25 +9843,25 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new FirstContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2051; + this.state = 2053; this.match(FlinkSqlParser.KW_FIRST); - this.state = 2052; + this.state = 2054; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2053; + this.state = 2055; this.expression(); - this.state = 2056; + this.state = 2058; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 462) { { - this.state = 2054; + this.state = 2056; this.match(FlinkSqlParser.KW_IGNORE); - this.state = 2055; + this.state = 2057; this.match(FlinkSqlParser.KW_NULLS); } } - this.state = 2058; + this.state = 2060; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9859,25 +9870,25 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new LastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2060; + this.state = 2062; this.match(FlinkSqlParser.KW_LAST); - this.state = 2061; + this.state = 2063; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2062; + this.state = 2064; this.expression(); - this.state = 2065; + this.state = 2067; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 462) { { - this.state = 2063; + this.state = 2065; this.match(FlinkSqlParser.KW_IGNORE); - this.state = 2064; + this.state = 2066; this.match(FlinkSqlParser.KW_NULLS); } } - this.state = 2067; + this.state = 2069; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9886,17 +9897,17 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new PositionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2069; + this.state = 2071; this.match(FlinkSqlParser.KW_POSITION); - this.state = 2070; + this.state = 2072; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2071; + this.state = 2073; (localContext as PositionContext)._substr = this.valueExpression(0); - this.state = 2072; + this.state = 2074; this.match(FlinkSqlParser.KW_IN); - this.state = 2073; + this.state = 2075; (localContext as PositionContext)._str = this.valueExpression(0); - this.state = 2074; + this.state = 2076; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9905,7 +9916,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ConstantDefaultContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2076; + this.state = 2078; this.constant(); } break; @@ -9914,7 +9925,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new StarContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2077; + this.state = 2079; this.match(FlinkSqlParser.ASTERISK_SIGN); } break; @@ -9923,11 +9934,11 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new StarContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2078; + this.state = 2080; this.uid(); - this.state = 2079; + this.state = 2081; this.match(FlinkSqlParser.DOT); - this.state = 2080; + this.state = 2082; this.match(FlinkSqlParser.ASTERISK_SIGN); } break; @@ -9936,11 +9947,11 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new SubqueryExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2082; + this.state = 2084; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2083; + this.state = 2085; this.queryStatement(0); - this.state = 2084; + this.state = 2086; this.match(FlinkSqlParser.RR_BRACKET); } break; @@ -9949,7 +9960,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new FunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2086; + this.state = 2088; this.functionCallExpression(); } break; @@ -9958,7 +9969,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ColumnReferenceContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2087; + this.state = 2089; this.columnNamePath(); } break; @@ -9967,7 +9978,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new DereferenceContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2088; + this.state = 2090; this.dereferenceDefinition(); } break; @@ -9976,17 +9987,17 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new ParenthesizedExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2089; + this.state = 2091; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2090; + this.state = 2092; this.expression(); - this.state = 2091; + this.state = 2093; this.match(FlinkSqlParser.RR_BRACKET); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2102; + this.state = 2104; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 243, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -10000,20 +10011,20 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new SubscriptContext(new PrimaryExpressionContext(parentContext, parentState)); (localContext as SubscriptContext)._value = previousContext; this.pushNewRecursionContext(localContext, _startState, FlinkSqlParser.RULE_primaryExpression); - this.state = 2095; + this.state = 2097; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 2096; + this.state = 2098; this.match(FlinkSqlParser.LS_BRACKET); - this.state = 2097; + this.state = 2099; (localContext as SubscriptContext)._index = this.valueExpression(0); - this.state = 2098; + this.state = 2100; this.match(FlinkSqlParser.RS_BRACKET); } } } - this.state = 2104; + this.state = 2106; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 243, this.context); } @@ -10039,7 +10050,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2105; + this.state = 2107; this.uid(); } } @@ -10061,34 +10072,34 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new FunctionNameContext(this.context, this.state); this.enterRule(localContext, 298, FlinkSqlParser.RULE_functionName); try { - this.state = 2111; + this.state = 2113; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 244, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2107; + this.state = 2109; this.reservedKeywordsUsedAsFuncName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2108; + this.state = 2110; this.reservedKeywordsNoParamsUsedAsFuncName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2109; + this.state = 2111; this.reservedKeywordsFollowParamsUsedAsFuncName(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2110; + this.state = 2112; this.uid(); } break; @@ -10112,7 +10123,7 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new FunctionNameAndParamsContext(this.context, this.state); this.enterRule(localContext, 300, FlinkSqlParser.RULE_functionNameAndParams); try { - this.state = 2117; + this.state = 2119; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_DATE: @@ -10120,16 +10131,16 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_TIMESTAMP: this.enterOuterAlt(localContext, 1); { - this.state = 2113; + this.state = 2115; this.reservedKeywordsFollowParamsUsedAsFuncName(); - this.state = 2114; + this.state = 2116; this.match(FlinkSqlParser.STRING_LITERAL); } break; case FlinkSqlParser.KW_INTERVAL: this.enterOuterAlt(localContext, 2); { - this.state = 2116; + this.state = 2118; this.timeIntervalExpression(); } break; @@ -10155,20 +10166,20 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new FunctionNameWithParamsContext(this.context, this.state); this.enterRule(localContext, 302, FlinkSqlParser.RULE_functionNameWithParams); try { - this.state = 2121; + this.state = 2123; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 246, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2119; + this.state = 2121; this.reservedKeywordsUsedAsFuncName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2120; + this.state = 2122; this.uid(); } break; @@ -10192,34 +10203,34 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new FunctionParamContext(this.context, this.state); this.enterRule(localContext, 304, FlinkSqlParser.RULE_functionParam); try { - this.state = 2127; + this.state = 2129; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 247, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2123; + this.state = 2125; this.reservedKeywordsUsedAsFuncParam(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2124; + this.state = 2126; this.timeIntervalUnit(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2125; + this.state = 2127; this.timePointUnit(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2126; + this.state = 2128; this.expression(); } break; @@ -10245,7 +10256,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2129; + this.state = 2131; this.uid(); } } @@ -10269,7 +10280,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2131; + this.state = 2133; this.identifier(); } } @@ -10291,20 +10302,20 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new QualifiedNameContext(this.context, this.state); this.enterRule(localContext, 310, FlinkSqlParser.RULE_qualifiedName); try { - this.state = 2135; + this.state = 2137; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2133; + this.state = 2135; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2134; + this.state = 2136; this.dereferenceDefinition(); } break; @@ -10330,20 +10341,20 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2137; + this.state = 2139; this.match(FlinkSqlParser.KW_INTERVAL); - this.state = 2140; + this.state = 2142; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 249, this.context) ) { case 1: { - this.state = 2138; + this.state = 2140; this.errorCapturingMultiUnitsInterval(); } break; case 2: { - this.state = 2139; + this.state = 2141; this.errorCapturingUnitToUnitInterval(); } break; @@ -10370,14 +10381,14 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2142; - this.multiUnitsInterval(); this.state = 2144; + this.multiUnitsInterval(); + this.state = 2146; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 250, this.context) ) { case 1: { - this.state = 2143; + this.state = 2145; this.unitToUnitInterval(); } break; @@ -10405,7 +10416,7 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2149; + this.state = 2151; this.errorHandler.sync(this); alternative = 1; do { @@ -10413,9 +10424,9 @@ export class FlinkSqlParser extends SQLParserBase { case 1: { { - this.state = 2146; + this.state = 2148; this.intervalValue(); - this.state = 2147; + this.state = 2149; this.timeIntervalUnit(); } } @@ -10423,7 +10434,7 @@ export class FlinkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 2151; + this.state = 2153; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 251, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -10449,20 +10460,20 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2153; + this.state = 2155; localContext._body = this.unitToUnitInterval(); - this.state = 2156; + this.state = 2158; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 252, this.context) ) { case 1: { - this.state = 2154; + this.state = 2156; localContext._error1 = this.multiUnitsInterval(); } break; case 2: { - this.state = 2155; + this.state = 2157; localContext._error2 = this.unitToUnitInterval(); } break; @@ -10489,13 +10500,13 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2158; + this.state = 2160; localContext._value = this.intervalValue(); - this.state = 2159; + this.state = 2161; localContext._from_ = this.timeIntervalUnit(); - this.state = 2160; + this.state = 2162; this.match(FlinkSqlParser.KW_TO); - this.state = 2161; + this.state = 2163; localContext._to = this.timeIntervalUnit(); } } @@ -10518,7 +10529,7 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 322, FlinkSqlParser.RULE_intervalValue); let _la: number; try { - this.state = 2168; + this.state = 2170; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.HYPHEN_SIGN: @@ -10527,12 +10538,12 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 2164; + this.state = 2166; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 530 || _la === 531) { { - this.state = 2163; + this.state = 2165; _la = this.tokenStream.LA(1); if(!(_la === 530 || _la === 531)) { this.errorHandler.recoverInline(this); @@ -10544,7 +10555,7 @@ export class FlinkSqlParser extends SQLParserBase { } } - this.state = 2166; + this.state = 2168; _la = this.tokenStream.LA(1); if(!(_la === 539 || _la === 540)) { this.errorHandler.recoverInline(this); @@ -10558,7 +10569,7 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 2); { - this.state = 2167; + this.state = 2169; this.match(FlinkSqlParser.STRING_LITERAL); } break; @@ -10587,24 +10598,24 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2171; + this.state = 2173; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 2170; + this.state = 2172; this.match(FlinkSqlParser.KW_AS); } } - this.state = 2173; - localContext._alias = this.identifier(); this.state = 2175; + localContext._alias = this.identifier(); + this.state = 2177; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 256, this.context) ) { case 1: { - this.state = 2174; + this.state = 2176; this.identifierList(); } break; @@ -10631,9 +10642,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2177; + this.state = 2179; this.identifier(); - this.state = 2178; + this.state = 2180; this.errorCapturingIdentifierExtra(); } } @@ -10656,26 +10667,26 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 328, FlinkSqlParser.RULE_errorCapturingIdentifierExtra); let _la: number; try { - this.state = 2187; + this.state = 2189; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_MINUS: localContext = new ErrorIdentContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2182; + this.state = 2184; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2180; + this.state = 2182; this.match(FlinkSqlParser.KW_MINUS); - this.state = 2181; + this.state = 2183; this.identifier(); } } - this.state = 2184; + this.state = 2186; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 222); @@ -10713,11 +10724,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2189; + this.state = 2191; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2190; + this.state = 2192; this.identifierSeq(); - this.state = 2191; + this.state = 2193; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -10742,21 +10753,21 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2193; + this.state = 2195; this.identifier(); - this.state = 2198; + this.state = 2200; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 2194; + this.state = 2196; this.match(FlinkSqlParser.COMMA); - this.state = 2195; + this.state = 2197; this.identifier(); } } - this.state = 2200; + this.state = 2202; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10780,7 +10791,7 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new IdentifierContext(this.context, this.state); this.enterRule(localContext, 334, FlinkSqlParser.RULE_identifier); try { - this.state = 2204; + this.state = 2206; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.DIG_LITERAL: @@ -10788,7 +10799,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new UnquotedIdentifierAlternativeContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2201; + this.state = 2203; this.unquotedIdentifier(); } break; @@ -10796,7 +10807,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new QuotedIdentifierAlternativeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2202; + this.state = 2204; this.quotedIdentifier(); } break; @@ -10871,7 +10882,7 @@ export class FlinkSqlParser extends SQLParserBase { localContext = new NonReservedKeywordsAlternativeContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2203; + this.state = 2205; this.nonReservedKeywords(); } break; @@ -10900,7 +10911,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2206; + this.state = 2208; _la = this.tokenStream.LA(1); if(!(_la === 539 || _la === 542)) { this.errorHandler.recoverInline(this); @@ -10931,7 +10942,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2208; + this.state = 2210; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -10955,13 +10966,13 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2210; + this.state = 2212; this.match(FlinkSqlParser.KW_WHEN); - this.state = 2211; + this.state = 2213; localContext._condition = this.expression(); - this.state = 2212; + this.state = 2214; this.match(FlinkSqlParser.KW_THEN); - this.state = 2213; + this.state = 2215; localContext._result = this.expression(); } } @@ -10985,7 +10996,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2215; + this.state = 2217; this.identifier(); } } @@ -11009,7 +11020,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2217; + this.state = 2219; this.identifier(); } } @@ -11034,16 +11045,16 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2219; + this.state = 2221; this.identifier(); - this.state = 2222; + this.state = 2224; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 514) { { - this.state = 2220; + this.state = 2222; this.match(FlinkSqlParser.DOT); - this.state = 2221; + this.state = 2223; this.identifier(); } } @@ -11071,16 +11082,16 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2224; + this.state = 2226; this.identifier(); - this.state = 2227; + this.state = 2229; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 514) { { - this.state = 2225; + this.state = 2227; this.match(FlinkSqlParser.DOT); - this.state = 2226; + this.state = 2228; this.identifier(); } } @@ -11106,22 +11117,22 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 350, FlinkSqlParser.RULE_tablePathCreate); let _la: number; try { - this.state = 2241; + this.state = 2243; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 265, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2229; + this.state = 2231; this.identifier(); - this.state = 2232; + this.state = 2234; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 514) { { - this.state = 2230; + this.state = 2232; this.match(FlinkSqlParser.DOT); - this.state = 2231; + this.state = 2233; this.identifier(); } } @@ -11131,20 +11142,20 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2234; + this.state = 2236; this.identifier(); - this.state = 2235; + this.state = 2237; this.match(FlinkSqlParser.DOT); - this.state = 2236; + this.state = 2238; this.identifier(); - this.state = 2239; + this.state = 2241; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 514) { { - this.state = 2237; + this.state = 2239; this.match(FlinkSqlParser.DOT); - this.state = 2238; + this.state = 2240; this.identifier(); } } @@ -11171,22 +11182,22 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new TablePathContext(this.context, this.state); this.enterRule(localContext, 352, FlinkSqlParser.RULE_tablePath); try { - this.state = 2255; + this.state = 2257; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 268, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2243; + this.state = 2245; this.identifier(); - this.state = 2246; + this.state = 2248; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 266, this.context) ) { case 1: { - this.state = 2244; + this.state = 2246; this.match(FlinkSqlParser.DOT); - this.state = 2245; + this.state = 2247; this.identifier(); } break; @@ -11196,20 +11207,20 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2248; + this.state = 2250; this.identifier(); - this.state = 2249; + this.state = 2251; this.match(FlinkSqlParser.DOT); - this.state = 2250; + this.state = 2252; this.identifier(); - this.state = 2253; + this.state = 2255; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 267, this.context) ) { case 1: { - this.state = 2251; + this.state = 2253; this.match(FlinkSqlParser.DOT); - this.state = 2252; + this.state = 2254; this.identifier(); } break; @@ -11236,22 +11247,22 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new ViewPathContext(this.context, this.state); this.enterRule(localContext, 354, FlinkSqlParser.RULE_viewPath); try { - this.state = 2269; + this.state = 2271; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 271, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2257; + this.state = 2259; this.identifier(); - this.state = 2260; + this.state = 2262; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 269, this.context) ) { case 1: { - this.state = 2258; + this.state = 2260; this.match(FlinkSqlParser.DOT); - this.state = 2259; + this.state = 2261; this.identifier(); } break; @@ -11261,20 +11272,20 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2262; + this.state = 2264; this.identifier(); - this.state = 2263; + this.state = 2265; this.match(FlinkSqlParser.DOT); - this.state = 2264; + this.state = 2266; this.identifier(); - this.state = 2267; + this.state = 2269; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 270, this.context) ) { case 1: { - this.state = 2265; + this.state = 2267; this.match(FlinkSqlParser.DOT); - this.state = 2266; + this.state = 2268; this.identifier(); } break; @@ -11302,22 +11313,22 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 356, FlinkSqlParser.RULE_viewPathCreate); let _la: number; try { - this.state = 2283; + this.state = 2285; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 274, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2271; + this.state = 2273; this.identifier(); - this.state = 2274; + this.state = 2276; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 514) { { - this.state = 2272; + this.state = 2274; this.match(FlinkSqlParser.DOT); - this.state = 2273; + this.state = 2275; this.identifier(); } } @@ -11327,20 +11338,20 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2276; + this.state = 2278; this.identifier(); - this.state = 2277; + this.state = 2279; this.match(FlinkSqlParser.DOT); - this.state = 2278; + this.state = 2280; this.identifier(); - this.state = 2281; + this.state = 2283; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 514) { { - this.state = 2279; + this.state = 2281; this.match(FlinkSqlParser.DOT); - this.state = 2280; + this.state = 2282; this.identifier(); } } @@ -11370,23 +11381,23 @@ export class FlinkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2285; + this.state = 2287; this.identifier(); - this.state = 2290; + this.state = 2292; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 275, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2286; + this.state = 2288; this.match(FlinkSqlParser.DOT); - this.state = 2287; + this.state = 2289; this.identifier(); } } } - this.state = 2292; + this.state = 2294; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 275, this.context); } @@ -11411,29 +11422,29 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 360, FlinkSqlParser.RULE_uidAllowEmpty); try { let alternative: number; - this.state = 2306; + this.state = 2308; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 277, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2293; + this.state = 2295; this.identifier(); - this.state = 2298; + this.state = 2300; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 276, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2294; + this.state = 2296; this.match(FlinkSqlParser.DOT); - this.state = 2295; + this.state = 2297; this.identifier(); } } } - this.state = 2300; + this.state = 2302; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 276, this.context); } @@ -11442,15 +11453,15 @@ export class FlinkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2301; + this.state = 2303; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } - this.state = 2302; + this.state = 2304; this.identifier(); - this.state = 2303; + this.state = 2305; this.match(FlinkSqlParser.DOT); - this.state = 2304; + this.state = 2306; this.emptyColumn(); } break; @@ -11476,9 +11487,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2308; + this.state = 2310; this.match(FlinkSqlParser.KW_WITH); - this.state = 2309; + this.state = 2311; this.tablePropertyList(); } } @@ -11502,11 +11513,11 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2311; + this.state = 2313; this.match(FlinkSqlParser.KW_IF); - this.state = 2312; + this.state = 2314; this.match(FlinkSqlParser.KW_NOT); - this.state = 2313; + this.state = 2315; this.match(FlinkSqlParser.KW_EXISTS); } } @@ -11530,9 +11541,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2315; + this.state = 2317; this.match(FlinkSqlParser.KW_IF); - this.state = 2316; + this.state = 2318; this.match(FlinkSqlParser.KW_EXISTS); } } @@ -11557,27 +11568,27 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2318; + this.state = 2320; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 2319; + this.state = 2321; this.tableProperty(); - this.state = 2324; + this.state = 2326; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 521) { { { - this.state = 2320; + this.state = 2322; this.match(FlinkSqlParser.COMMA); - this.state = 2321; + this.state = 2323; this.tableProperty(); } } - this.state = 2326; + this.state = 2328; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2327; + this.state = 2329; this.match(FlinkSqlParser.RR_BRACKET); } } @@ -11602,24 +11613,24 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2329; + this.state = 2331; localContext._key = this.tablePropertyKey(); - this.state = 2334; + this.state = 2336; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 140 || _la === 398 || _la === 506 || ((((_la - 538)) & ~0x1F) === 0 && ((1 << (_la - 538)) & 7) !== 0)) { { - this.state = 2331; + this.state = 2333; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 506) { { - this.state = 2330; + this.state = 2332; this.match(FlinkSqlParser.EQUAL_SYMBOL); } } - this.state = 2333; + this.state = 2335; localContext._value = this.tablePropertyValue(); } } @@ -11644,27 +11655,27 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new TablePropertyKeyContext(this.context, this.state); this.enterRule(localContext, 372, FlinkSqlParser.RULE_tablePropertyKey); try { - this.state = 2339; + this.state = 2341; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 281, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2336; + this.state = 2338; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2337; + this.state = 2339; this.dereferenceDefinition(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2338; + this.state = 2340; this.match(FlinkSqlParser.STRING_LITERAL); } break; @@ -11688,20 +11699,20 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new TablePropertyValueContext(this.context, this.state); this.enterRule(localContext, 374, FlinkSqlParser.RULE_tablePropertyValue); try { - this.state = 2345; + this.state = 2347; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.DIG_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 2341; + this.state = 2343; this.match(FlinkSqlParser.DIG_LITERAL); } break; case FlinkSqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 2); { - this.state = 2342; + this.state = 2344; this.match(FlinkSqlParser.REAL_LITERAL); } break; @@ -11709,14 +11720,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_TRUE: this.enterOuterAlt(localContext, 3); { - this.state = 2343; + this.state = 2345; this.booleanLiteral(); } break; case FlinkSqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 4); { - this.state = 2344; + this.state = 2346; this.match(FlinkSqlParser.STRING_LITERAL); } break; @@ -11742,38 +11753,38 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new LogicalOperatorContext(this.context, this.state); this.enterRule(localContext, 376, FlinkSqlParser.RULE_logicalOperator); try { - this.state = 2353; + this.state = 2355; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_AND: this.enterOuterAlt(localContext, 1); { - this.state = 2347; + this.state = 2349; this.match(FlinkSqlParser.KW_AND); } break; case FlinkSqlParser.BIT_AND_OP: this.enterOuterAlt(localContext, 2); { - this.state = 2348; + this.state = 2350; this.match(FlinkSqlParser.BIT_AND_OP); - this.state = 2349; + this.state = 2351; this.match(FlinkSqlParser.BIT_AND_OP); } break; case FlinkSqlParser.KW_OR: this.enterOuterAlt(localContext, 3); { - this.state = 2350; + this.state = 2352; this.match(FlinkSqlParser.KW_OR); } break; case FlinkSqlParser.BIT_OR_OP: this.enterOuterAlt(localContext, 4); { - this.state = 2351; + this.state = 2353; this.match(FlinkSqlParser.BIT_OR_OP); - this.state = 2352; + this.state = 2354; this.match(FlinkSqlParser.BIT_OR_OP); } break; @@ -11799,74 +11810,74 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new ComparisonOperatorContext(this.context, this.state); this.enterRule(localContext, 378, FlinkSqlParser.RULE_comparisonOperator); try { - this.state = 2369; + this.state = 2371; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 284, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2355; + this.state = 2357; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2356; + this.state = 2358; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2357; + this.state = 2359; this.match(FlinkSqlParser.LESS_SYMBOL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2358; + this.state = 2360; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2359; + this.state = 2361; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2360; + this.state = 2362; this.match(FlinkSqlParser.GREATER_SYMBOL); - this.state = 2361; + this.state = 2363; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2362; + this.state = 2364; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2363; + this.state = 2365; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2364; + this.state = 2366; this.match(FlinkSqlParser.EXCLAMATION_SYMBOL); - this.state = 2365; + this.state = 2367; this.match(FlinkSqlParser.EQUAL_SYMBOL); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2366; + this.state = 2368; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2367; + this.state = 2369; this.match(FlinkSqlParser.EQUAL_SYMBOL); - this.state = 2368; + this.state = 2370; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; @@ -11890,45 +11901,45 @@ export class FlinkSqlParser extends SQLParserBase { let localContext = new BitOperatorContext(this.context, this.state); this.enterRule(localContext, 380, FlinkSqlParser.RULE_bitOperator); try { - this.state = 2378; + this.state = 2380; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.LESS_SYMBOL: this.enterOuterAlt(localContext, 1); { - this.state = 2371; + this.state = 2373; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 2372; + this.state = 2374; this.match(FlinkSqlParser.LESS_SYMBOL); } break; case FlinkSqlParser.GREATER_SYMBOL: this.enterOuterAlt(localContext, 2); { - this.state = 2373; + this.state = 2375; this.match(FlinkSqlParser.GREATER_SYMBOL); - this.state = 2374; + this.state = 2376; this.match(FlinkSqlParser.GREATER_SYMBOL); } break; case FlinkSqlParser.BIT_AND_OP: this.enterOuterAlt(localContext, 3); { - this.state = 2375; + this.state = 2377; this.match(FlinkSqlParser.BIT_AND_OP); } break; case FlinkSqlParser.BIT_XOR_OP: this.enterOuterAlt(localContext, 4); { - this.state = 2376; + this.state = 2378; this.match(FlinkSqlParser.BIT_XOR_OP); } break; case FlinkSqlParser.BIT_OR_OP: this.enterOuterAlt(localContext, 5); { - this.state = 2377; + this.state = 2379; this.match(FlinkSqlParser.BIT_OR_OP); } break; @@ -11957,7 +11968,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2380; + this.state = 2382; _la = this.tokenStream.LA(1); if(!(_la === 453 || ((((_la - 528)) & ~0x1F) === 0 && ((1 << (_la - 528)) & 221) !== 0))) { this.errorHandler.recoverInline(this); @@ -11989,7 +12000,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2382; + this.state = 2384; _la = this.tokenStream.LA(1); if(!(_la === 242 || ((((_la - 509)) & ~0x1F) === 0 && ((1 << (_la - 509)) & 6291459) !== 0))) { this.errorHandler.recoverInline(this); @@ -12019,13 +12030,13 @@ export class FlinkSqlParser extends SQLParserBase { this.enterRule(localContext, 386, FlinkSqlParser.RULE_constant); let _la: number; try { - this.state = 2398; + this.state = 2400; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case FlinkSqlParser.KW_INTERVAL: this.enterOuterAlt(localContext, 1); { - this.state = 2384; + this.state = 2386; this.timeIntervalExpression(); } break; @@ -12041,14 +12052,14 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_WEEK: this.enterOuterAlt(localContext, 2); { - this.state = 2385; + this.state = 2387; this.timePointLiteral(); } break; case FlinkSqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 3); { - this.state = 2386; + this.state = 2388; this.stringLiteral(); } break; @@ -12056,17 +12067,17 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.DIG_LITERAL: this.enterOuterAlt(localContext, 4); { - this.state = 2388; + this.state = 2390; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 530) { { - this.state = 2387; + this.state = 2389; this.match(FlinkSqlParser.HYPHEN_SIGN); } } - this.state = 2390; + this.state = 2392; this.decimalLiteral(); } break; @@ -12074,21 +12085,21 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_TRUE: this.enterOuterAlt(localContext, 5); { - this.state = 2391; + this.state = 2393; this.booleanLiteral(); } break; case FlinkSqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 6); { - this.state = 2392; + this.state = 2394; this.match(FlinkSqlParser.REAL_LITERAL); } break; case FlinkSqlParser.BIT_STRING: this.enterOuterAlt(localContext, 7); { - this.state = 2393; + this.state = 2395; this.match(FlinkSqlParser.BIT_STRING); } break; @@ -12096,17 +12107,17 @@ export class FlinkSqlParser extends SQLParserBase { case FlinkSqlParser.KW_NULL: this.enterOuterAlt(localContext, 8); { - this.state = 2395; + this.state = 2397; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 242) { { - this.state = 2394; + this.state = 2396; this.match(FlinkSqlParser.KW_NOT); } } - this.state = 2397; + this.state = 2399; this.match(FlinkSqlParser.KW_NULL); } break; @@ -12134,9 +12145,9 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2400; + this.state = 2402; this.timePointUnit(); - this.state = 2401; + this.state = 2403; this.stringLiteral(); } } @@ -12160,7 +12171,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2403; + this.state = 2405; this.match(FlinkSqlParser.STRING_LITERAL); } } @@ -12184,7 +12195,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2405; + this.state = 2407; this.match(FlinkSqlParser.DIG_LITERAL); } } @@ -12209,7 +12220,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2407; + this.state = 2409; _la = this.tokenStream.LA(1); if(!(_la === 140 || _la === 398)) { this.errorHandler.recoverInline(this); @@ -12241,7 +12252,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2409; + this.state = 2411; _la = this.tokenStream.LA(1); if(!(_la === 5 || _la === 113)) { this.errorHandler.recoverInline(this); @@ -12273,7 +12284,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2411; + this.state = 2413; _la = this.tokenStream.LA(1); if(!(_la === 97 || _la === 165 || _la === 223 || _la === 230 || _la === 335 || _la === 437 || ((((_la - 471)) & ~0x1F) === 0 && ((1 << (_la - 471)) & 262149) !== 0) || _la === 503)) { this.errorHandler.recoverInline(this); @@ -12305,7 +12316,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2413; + this.state = 2415; _la = this.tokenStream.LA(1); if(!(_la === 97 || _la === 165 || _la === 223 || _la === 230 || _la === 335 || ((((_la - 428)) & ~0x1F) === 0 && ((1 << (_la - 428)) & 140542465) !== 0) || ((((_la - 461)) & ~0x1F) === 0 && ((1 << (_la - 461)) & 2415983617) !== 0) || _la === 503 || _la === 504)) { this.errorHandler.recoverInline(this); @@ -12337,7 +12348,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2415; + this.state = 2417; _la = this.tokenStream.LA(1); if(!(((((_la - 5)) & ~0x1F) === 0 && ((1 << (_la - 5)) & 268435713) !== 0) || ((((_la - 78)) & ~0x1F) === 0 && ((1 << (_la - 78)) & 193) !== 0) || _la === 113 || ((((_la - 201)) & ~0x1F) === 0 && ((1 << (_la - 201)) & 385) !== 0) || _la === 390 || _la === 414 || _la === 528)) { this.errorHandler.recoverInline(this); @@ -12369,7 +12380,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2417; + this.state = 2419; _la = this.tokenStream.LA(1); if(!(((((_la - 78)) & ~0x1F) === 0 && ((1 << (_la - 78)) & 193) !== 0) || _la === 208 || _la === 209)) { this.errorHandler.recoverInline(this); @@ -12401,7 +12412,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2419; + this.state = 2421; _la = this.tokenStream.LA(1); if(!(_la === 91 || _la === 379 || _la === 380)) { this.errorHandler.recoverInline(this); @@ -12433,7 +12444,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2421; + this.state = 2423; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 8396816) !== 0) || ((((_la - 38)) & ~0x1F) === 0 && ((1 << (_la - 38)) & 2147811433) !== 0) || ((((_la - 75)) & ~0x1F) === 0 && ((1 << (_la - 75)) & 25165825) !== 0) || ((((_la - 107)) & ~0x1F) === 0 && ((1 << (_la - 107)) & 134221825) !== 0) || ((((_la - 139)) & ~0x1F) === 0 && ((1 << (_la - 139)) & 337641553) !== 0) || ((((_la - 187)) & ~0x1F) === 0 && ((1 << (_la - 187)) & 277391867) !== 0) || ((((_la - 221)) & ~0x1F) === 0 && ((1 << (_la - 221)) & 41943565) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 537530369) !== 0) || ((((_la - 318)) & ~0x1F) === 0 && ((1 << (_la - 318)) & 131185) !== 0) || ((((_la - 358)) & ~0x1F) === 0 && ((1 << (_la - 358)) & 8389763) !== 0) || ((((_la - 396)) & ~0x1F) === 0 && ((1 << (_la - 396)) & 50339865) !== 0) || _la === 437 || _la === 470 || _la === 489 || _la === 503)) { this.errorHandler.recoverInline(this); @@ -12465,7 +12476,7 @@ export class FlinkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2423; + this.state = 2425; _la = this.tokenStream.LA(1); if(!(((((_la - 438)) & ~0x1F) === 0 && ((1 << (_la - 438)) & 4294967295) !== 0) || ((((_la - 470)) & ~0x1F) === 0 && ((1 << (_la - 470)) & 4294967295) !== 0) || ((((_la - 502)) & ~0x1F) === 0 && ((1 << (_la - 502)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -12499,6 +12510,8 @@ export class FlinkSqlParser extends SQLParserBase { return this.columnNamePathAllowEmpty_sempred(localContext as ColumnNamePathAllowEmptyContext, predIndex); case 82: return this.queryStatement_sempred(localContext as QueryStatementContext, predIndex); + case 90: + return this.columnProjectItem_sempred(localContext as ColumnProjectItemContext, predIndex); case 99: return this.tableExpression_sempred(localContext as TableExpressionContext, predIndex); case 142: @@ -12533,60 +12546,67 @@ export class FlinkSqlParser extends SQLParserBase { } return true; } - private tableExpression_sempred(localContext: TableExpressionContext | null, predIndex: number): boolean { + private columnProjectItem_sempred(localContext: ColumnProjectItemContext | null, predIndex: number): boolean { switch (predIndex) { case 3: - return this.precpred(this.context, 3); + return this.shouldMatchEmpty(); + } + return true; + } + private tableExpression_sempred(localContext: TableExpressionContext | null, predIndex: number): boolean { + switch (predIndex) { case 4: + return this.precpred(this.context, 3); + case 5: return this.precpred(this.context, 4); } return true; } private booleanExpression_sempred(localContext: BooleanExpressionContext | null, predIndex: number): boolean { switch (predIndex) { - case 5: - return this.precpred(this.context, 3); case 6: - return this.precpred(this.context, 2); + return this.precpred(this.context, 3); case 7: + return this.precpred(this.context, 2); + case 8: return this.precpred(this.context, 1); } return true; } private valueExpression_sempred(localContext: ValueExpressionContext | null, predIndex: number): boolean { switch (predIndex) { - case 8: - return this.precpred(this.context, 6); case 9: - return this.precpred(this.context, 5); + return this.precpred(this.context, 6); case 10: - return this.precpred(this.context, 4); + return this.precpred(this.context, 5); case 11: - return this.precpred(this.context, 3); + return this.precpred(this.context, 4); case 12: - return this.precpred(this.context, 2); + return this.precpred(this.context, 3); case 13: + return this.precpred(this.context, 2); + case 14: return this.precpred(this.context, 1); } return true; } private primaryExpression_sempred(localContext: PrimaryExpressionContext | null, predIndex: number): boolean { switch (predIndex) { - case 14: + case 15: return this.precpred(this.context, 4); } return true; } private uidAllowEmpty_sempred(localContext: UidAllowEmptyContext | null, predIndex: number): boolean { switch (predIndex) { - case 15: + case 16: return this.shouldMatchEmpty(); } return true; } public static readonly _serializedATN: number[] = [ - 4,1,542,2426,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,542,2428,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, @@ -12702,117 +12722,117 @@ export class FlinkSqlParser extends SQLParserBase { 87,1,87,1,87,1,87,3,87,1308,8,87,1,88,1,88,3,88,1312,8,88,1,88,1, 88,1,89,1,89,1,89,5,89,1319,8,89,10,89,12,89,1322,9,89,1,90,1,90, 1,90,1,90,3,90,1328,8,90,1,90,3,90,1331,8,90,1,90,1,90,3,90,1335, - 8,90,1,90,1,90,1,90,3,90,1340,8,90,1,90,3,90,1343,8,90,3,90,1345, - 8,90,1,91,1,91,1,92,1,92,1,93,1,93,1,94,3,94,1354,8,94,1,94,1,94, - 1,95,1,95,1,95,3,95,1361,8,95,1,95,3,95,1364,8,95,1,95,1,95,3,95, - 1368,8,95,1,95,3,95,1371,8,95,3,95,1373,8,95,1,96,1,96,1,96,5,96, - 1378,8,96,10,96,12,96,1381,9,96,1,96,1,96,3,96,1385,8,96,1,96,1, - 96,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,3, - 97,1401,8,97,1,98,1,98,1,98,1,99,1,99,1,99,1,99,5,99,1410,8,99,10, - 99,12,99,1413,9,99,1,99,1,99,3,99,1417,8,99,1,99,1,99,1,99,1,99, - 1,99,1,99,3,99,1425,8,99,1,99,3,99,1428,8,99,1,99,3,99,1431,8,99, - 1,99,1,99,1,99,3,99,1436,8,99,5,99,1438,8,99,10,99,12,99,1441,9, - 99,1,100,1,100,3,100,1445,8,100,1,101,3,101,1448,8,101,1,101,1,101, - 3,101,1452,8,101,1,101,1,101,3,101,1456,8,101,1,101,1,101,3,101, - 1460,8,101,1,102,1,102,1,102,1,102,1,102,1,102,1,103,3,103,1469, + 8,90,1,90,1,90,1,90,3,90,1340,8,90,1,90,3,90,1343,8,90,1,90,1,90, + 3,90,1347,8,90,1,91,1,91,1,92,1,92,1,93,1,93,1,94,3,94,1356,8,94, + 1,94,1,94,1,95,1,95,1,95,3,95,1363,8,95,1,95,3,95,1366,8,95,1,95, + 1,95,3,95,1370,8,95,1,95,3,95,1373,8,95,3,95,1375,8,95,1,96,1,96, + 1,96,5,96,1380,8,96,10,96,12,96,1383,9,96,1,96,1,96,3,96,1387,8, + 96,1,96,1,96,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1, + 97,1,97,3,97,1403,8,97,1,98,1,98,1,98,1,99,1,99,1,99,1,99,5,99,1412, + 8,99,10,99,12,99,1415,9,99,1,99,1,99,3,99,1419,8,99,1,99,1,99,1, + 99,1,99,1,99,1,99,3,99,1427,8,99,1,99,3,99,1430,8,99,1,99,3,99,1433, + 8,99,1,99,1,99,1,99,3,99,1438,8,99,5,99,1440,8,99,10,99,12,99,1443, + 9,99,1,100,1,100,3,100,1447,8,100,1,101,3,101,1450,8,101,1,101,1, + 101,3,101,1454,8,101,1,101,1,101,3,101,1458,8,101,1,101,1,101,3, + 101,1462,8,101,1,102,1,102,1,102,1,102,1,102,1,102,1,103,3,103,1471, 8,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,3,103, - 1480,8,103,1,104,1,104,1,104,1,104,1,104,1,104,1,105,1,105,1,106, + 1482,8,103,1,104,1,104,1,104,1,104,1,104,1,104,1,105,1,105,1,106, 1,106,1,106,1,106,1,106,1,107,1,107,1,107,1,107,1,107,1,108,1,108, - 1,108,1,108,1,108,5,108,1505,8,108,10,108,12,108,1508,9,108,1,108, + 1,108,1,108,1,108,5,108,1507,8,108,10,108,12,108,1510,9,108,1,108, 1,108,1,109,1,109,1,110,1,110,1,110,1,110,1,110,1,110,1,110,1,110, - 1,110,1,110,1,110,1,110,1,110,1,110,1,110,3,110,1529,8,110,1,111, + 1,110,1,110,1,110,1,110,1,110,1,110,1,110,3,110,1531,8,110,1,111, 1,111,1,112,1,112,1,112,1,112,1,112,1,113,1,113,1,113,1,113,1,113, - 3,113,1543,8,113,3,113,1545,8,113,1,113,1,113,3,113,1549,8,113,1, - 114,1,114,1,114,3,114,1554,8,114,1,115,1,115,1,115,1,115,1,115,5, - 115,1561,8,115,10,115,12,115,1564,9,115,1,116,1,116,1,116,1,116, - 1,116,1,116,1,116,1,116,5,116,1574,8,116,10,116,12,116,1577,9,116, - 1,116,1,116,1,116,1,116,1,116,1,116,1,116,5,116,1586,8,116,10,116, - 12,116,1589,9,116,1,116,1,116,1,116,1,116,1,116,1,116,1,116,5,116, - 1598,8,116,10,116,12,116,1601,9,116,1,116,1,116,1,116,3,116,1606, + 3,113,1545,8,113,3,113,1547,8,113,1,113,1,113,3,113,1551,8,113,1, + 114,1,114,1,114,3,114,1556,8,114,1,115,1,115,1,115,1,115,1,115,5, + 115,1563,8,115,10,115,12,115,1566,9,115,1,116,1,116,1,116,1,116, + 1,116,1,116,1,116,1,116,5,116,1576,8,116,10,116,12,116,1579,9,116, + 1,116,1,116,1,116,1,116,1,116,1,116,1,116,5,116,1588,8,116,10,116, + 12,116,1591,9,116,1,116,1,116,1,116,1,116,1,116,1,116,1,116,5,116, + 1600,8,116,10,116,12,116,1603,9,116,1,116,1,116,1,116,3,116,1608, 8,116,1,117,1,117,1,117,1,118,1,118,1,119,1,119,1,119,1,119,1,119, 1,119,1,119,1,120,1,120,1,121,1,121,1,122,1,122,1,122,1,123,1,123, - 1,123,1,123,5,123,1631,8,123,10,123,12,123,1634,9,123,1,124,1,124, - 1,124,1,124,1,125,3,125,1641,8,125,1,125,1,125,3,125,1645,8,125, - 1,125,3,125,1648,8,125,1,125,3,125,1651,8,125,1,125,1,125,1,126, - 1,126,1,126,3,126,1658,8,126,1,126,3,126,1661,8,126,1,126,3,126, - 1664,8,126,1,126,3,126,1667,8,126,1,126,3,126,1670,8,126,1,126,3, - 126,1673,8,126,1,126,1,126,1,126,3,126,1678,8,126,1,126,3,126,1681, - 8,126,1,127,1,127,1,127,1,127,1,127,5,127,1688,8,127,10,127,12,127, - 1691,9,127,1,128,1,128,3,128,1695,8,128,1,128,1,128,3,128,1699,8, - 128,1,129,1,129,1,129,3,129,1704,8,129,1,130,1,130,1,130,1,130,3, - 130,1710,8,130,1,130,1,130,1,130,3,130,1715,8,130,5,130,1717,8,130, - 10,130,12,130,1720,9,130,1,131,1,131,1,131,1,131,1,131,1,131,1,131, - 1,131,1,131,1,131,1,131,1,131,1,131,1,131,1,131,1,131,3,131,1738, - 8,131,1,132,1,132,1,132,1,132,5,132,1744,8,132,10,132,12,132,1747, - 9,132,1,133,1,133,1,133,4,133,1752,8,133,11,133,12,133,1753,1,133, - 1,133,3,133,1758,8,133,1,134,1,134,3,134,1762,8,134,1,135,1,135, - 1,135,1,135,1,135,1,135,1,135,1,135,3,135,1772,8,135,1,136,1,136, + 1,123,1,123,5,123,1633,8,123,10,123,12,123,1636,9,123,1,124,1,124, + 1,124,1,124,1,125,3,125,1643,8,125,1,125,1,125,3,125,1647,8,125, + 1,125,3,125,1650,8,125,1,125,3,125,1653,8,125,1,125,1,125,1,126, + 1,126,1,126,3,126,1660,8,126,1,126,3,126,1663,8,126,1,126,3,126, + 1666,8,126,1,126,3,126,1669,8,126,1,126,3,126,1672,8,126,1,126,3, + 126,1675,8,126,1,126,1,126,1,126,3,126,1680,8,126,1,126,3,126,1683, + 8,126,1,127,1,127,1,127,1,127,1,127,5,127,1690,8,127,10,127,12,127, + 1693,9,127,1,128,1,128,3,128,1697,8,128,1,128,1,128,3,128,1701,8, + 128,1,129,1,129,1,129,3,129,1706,8,129,1,130,1,130,1,130,1,130,3, + 130,1712,8,130,1,130,1,130,1,130,3,130,1717,8,130,5,130,1719,8,130, + 10,130,12,130,1722,9,130,1,131,1,131,1,131,1,131,1,131,1,131,1,131, + 1,131,1,131,1,131,1,131,1,131,1,131,1,131,1,131,1,131,3,131,1740, + 8,131,1,132,1,132,1,132,1,132,5,132,1746,8,132,10,132,12,132,1749, + 9,132,1,133,1,133,1,133,4,133,1754,8,133,11,133,12,133,1755,1,133, + 1,133,3,133,1760,8,133,1,134,1,134,3,134,1764,8,134,1,135,1,135, + 1,135,1,135,1,135,1,135,1,135,1,135,3,135,1774,8,135,1,136,1,136, 1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136, 1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136, - 3,136,1798,8,136,1,137,1,137,1,137,1,137,5,137,1804,8,137,10,137, - 12,137,1807,9,137,1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,138, - 1,138,3,138,1818,8,138,1,139,1,139,1,139,1,139,1,139,1,140,1,140, + 3,136,1800,8,136,1,137,1,137,1,137,1,137,5,137,1806,8,137,10,137, + 12,137,1809,9,137,1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,138, + 1,138,3,138,1820,8,138,1,139,1,139,1,139,1,139,1,139,1,140,1,140, 1,140,1,141,1,141,1,142,1,142,1,142,1,142,1,142,1,142,1,142,1,142, - 1,142,1,142,3,142,1840,8,142,3,142,1842,8,142,1,142,1,142,1,142, - 1,142,1,142,1,142,1,142,1,142,1,142,3,142,1853,8,142,1,142,5,142, - 1856,8,142,10,142,12,142,1859,9,142,1,143,3,143,1862,8,143,1,143, - 1,143,3,143,1866,8,143,1,143,1,143,1,143,1,143,1,143,3,143,1873, - 8,143,1,143,1,143,1,143,1,143,1,143,5,143,1880,8,143,10,143,12,143, - 1883,9,143,1,143,1,143,1,143,3,143,1888,8,143,1,143,1,143,1,143, - 1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143,3,143,1901,8,143, - 1,143,1,143,1,143,1,143,1,143,3,143,1908,8,143,1,143,1,143,1,143, - 3,143,1913,8,143,1,143,1,143,1,143,1,143,3,143,1919,8,143,1,143, - 1,143,1,143,1,143,1,143,3,143,1926,8,143,1,143,1,143,1,143,1,143, - 1,143,3,143,1933,8,143,3,143,1935,8,143,1,144,3,144,1938,8,144,1, - 144,1,144,1,144,1,144,1,144,1,144,1,144,1,144,5,144,1948,8,144,10, - 144,12,144,1951,9,144,1,144,1,144,3,144,1955,8,144,1,144,3,144,1958, - 8,144,1,144,1,144,1,144,1,144,3,144,1964,8,144,3,144,1966,8,144, - 1,145,1,145,1,145,1,145,3,145,1972,8,145,1,145,1,145,1,145,1,145, + 1,142,1,142,3,142,1842,8,142,3,142,1844,8,142,1,142,1,142,1,142, + 1,142,1,142,1,142,1,142,1,142,1,142,3,142,1855,8,142,1,142,5,142, + 1858,8,142,10,142,12,142,1861,9,142,1,143,3,143,1864,8,143,1,143, + 1,143,3,143,1868,8,143,1,143,1,143,1,143,1,143,1,143,3,143,1875, + 8,143,1,143,1,143,1,143,1,143,1,143,5,143,1882,8,143,10,143,12,143, + 1885,9,143,1,143,1,143,1,143,3,143,1890,8,143,1,143,1,143,1,143, + 1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143,3,143,1903,8,143, + 1,143,1,143,1,143,1,143,1,143,3,143,1910,8,143,1,143,1,143,1,143, + 3,143,1915,8,143,1,143,1,143,1,143,1,143,3,143,1921,8,143,1,143, + 1,143,1,143,1,143,1,143,3,143,1928,8,143,1,143,1,143,1,143,1,143, + 1,143,3,143,1935,8,143,3,143,1937,8,143,1,144,3,144,1940,8,144,1, + 144,1,144,1,144,1,144,1,144,1,144,1,144,1,144,5,144,1950,8,144,10, + 144,12,144,1953,9,144,1,144,1,144,3,144,1957,8,144,1,144,3,144,1960, + 8,144,1,144,1,144,1,144,1,144,3,144,1966,8,144,3,144,1968,8,144, + 1,145,1,145,1,145,1,145,3,145,1974,8,145,1,145,1,145,1,145,1,145, 1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,145, - 1,145,1,145,1,145,1,145,5,145,1993,8,145,10,145,12,145,1996,9,145, - 1,146,1,146,1,146,1,146,1,146,3,146,2003,8,146,1,146,1,146,1,146, - 5,146,2008,8,146,10,146,12,146,2011,9,146,3,146,2013,8,146,1,146, - 1,146,3,146,2017,8,146,1,147,1,147,1,147,4,147,2022,8,147,11,147, - 12,147,2023,1,147,1,147,3,147,2028,8,147,1,147,1,147,1,147,1,147, - 1,147,4,147,2035,8,147,11,147,12,147,2036,1,147,1,147,3,147,2041, + 1,145,1,145,1,145,1,145,5,145,1995,8,145,10,145,12,145,1998,9,145, + 1,146,1,146,1,146,1,146,1,146,3,146,2005,8,146,1,146,1,146,1,146, + 5,146,2010,8,146,10,146,12,146,2013,9,146,3,146,2015,8,146,1,146, + 1,146,3,146,2019,8,146,1,147,1,147,1,147,4,147,2024,8,147,11,147, + 12,147,2025,1,147,1,147,3,147,2030,8,147,1,147,1,147,1,147,1,147, + 1,147,4,147,2037,8,147,11,147,12,147,2038,1,147,1,147,3,147,2043, 8,147,1,147,1,147,1,147,1,147,1,147,1,147,1,147,1,147,1,147,1,147, - 1,147,1,147,1,147,1,147,3,147,2057,8,147,1,147,1,147,1,147,1,147, - 1,147,1,147,1,147,3,147,2066,8,147,1,147,1,147,1,147,1,147,1,147, + 1,147,1,147,1,147,1,147,3,147,2059,8,147,1,147,1,147,1,147,1,147, + 1,147,1,147,1,147,3,147,2068,8,147,1,147,1,147,1,147,1,147,1,147, 1,147,1,147,1,147,1,147,1,147,1,147,1,147,1,147,1,147,1,147,1,147, 1,147,1,147,1,147,1,147,1,147,1,147,1,147,1,147,1,147,1,147,3,147, - 2094,8,147,1,147,1,147,1,147,1,147,1,147,5,147,2101,8,147,10,147, - 12,147,2104,9,147,1,148,1,148,1,149,1,149,1,149,1,149,3,149,2112, - 8,149,1,150,1,150,1,150,1,150,3,150,2118,8,150,1,151,1,151,3,151, - 2122,8,151,1,152,1,152,1,152,1,152,3,152,2128,8,152,1,153,1,153, - 1,154,1,154,1,155,1,155,3,155,2136,8,155,1,156,1,156,1,156,3,156, - 2141,8,156,1,157,1,157,3,157,2145,8,157,1,158,1,158,1,158,4,158, - 2150,8,158,11,158,12,158,2151,1,159,1,159,1,159,3,159,2157,8,159, - 1,160,1,160,1,160,1,160,1,160,1,161,3,161,2165,8,161,1,161,1,161, - 3,161,2169,8,161,1,162,3,162,2172,8,162,1,162,1,162,3,162,2176,8, - 162,1,163,1,163,1,163,1,164,1,164,4,164,2183,8,164,11,164,12,164, - 2184,1,164,3,164,2188,8,164,1,165,1,165,1,165,1,165,1,166,1,166, - 1,166,5,166,2197,8,166,10,166,12,166,2200,9,166,1,167,1,167,1,167, - 3,167,2205,8,167,1,168,1,168,1,169,1,169,1,170,1,170,1,170,1,170, - 1,170,1,171,1,171,1,172,1,172,1,173,1,173,1,173,3,173,2223,8,173, - 1,174,1,174,1,174,3,174,2228,8,174,1,175,1,175,1,175,3,175,2233, - 8,175,1,175,1,175,1,175,1,175,1,175,3,175,2240,8,175,3,175,2242, - 8,175,1,176,1,176,1,176,3,176,2247,8,176,1,176,1,176,1,176,1,176, - 1,176,3,176,2254,8,176,3,176,2256,8,176,1,177,1,177,1,177,3,177, - 2261,8,177,1,177,1,177,1,177,1,177,1,177,3,177,2268,8,177,3,177, - 2270,8,177,1,178,1,178,1,178,3,178,2275,8,178,1,178,1,178,1,178, - 1,178,1,178,3,178,2282,8,178,3,178,2284,8,178,1,179,1,179,1,179, - 5,179,2289,8,179,10,179,12,179,2292,9,179,1,180,1,180,1,180,5,180, - 2297,8,180,10,180,12,180,2300,9,180,1,180,1,180,1,180,1,180,1,180, - 3,180,2307,8,180,1,181,1,181,1,181,1,182,1,182,1,182,1,182,1,183, - 1,183,1,183,1,184,1,184,1,184,1,184,5,184,2323,8,184,10,184,12,184, - 2326,9,184,1,184,1,184,1,185,1,185,3,185,2332,8,185,1,185,3,185, - 2335,8,185,1,186,1,186,1,186,3,186,2340,8,186,1,187,1,187,1,187, - 1,187,3,187,2346,8,187,1,188,1,188,1,188,1,188,1,188,1,188,3,188, - 2354,8,188,1,189,1,189,1,189,1,189,1,189,1,189,1,189,1,189,1,189, - 1,189,1,189,1,189,1,189,1,189,3,189,2370,8,189,1,190,1,190,1,190, - 1,190,1,190,1,190,1,190,3,190,2379,8,190,1,191,1,191,1,192,1,192, - 1,193,1,193,1,193,1,193,3,193,2389,8,193,1,193,1,193,1,193,1,193, - 1,193,3,193,2396,8,193,1,193,3,193,2399,8,193,1,194,1,194,1,194, + 2096,8,147,1,147,1,147,1,147,1,147,1,147,5,147,2103,8,147,10,147, + 12,147,2106,9,147,1,148,1,148,1,149,1,149,1,149,1,149,3,149,2114, + 8,149,1,150,1,150,1,150,1,150,3,150,2120,8,150,1,151,1,151,3,151, + 2124,8,151,1,152,1,152,1,152,1,152,3,152,2130,8,152,1,153,1,153, + 1,154,1,154,1,155,1,155,3,155,2138,8,155,1,156,1,156,1,156,3,156, + 2143,8,156,1,157,1,157,3,157,2147,8,157,1,158,1,158,1,158,4,158, + 2152,8,158,11,158,12,158,2153,1,159,1,159,1,159,3,159,2159,8,159, + 1,160,1,160,1,160,1,160,1,160,1,161,3,161,2167,8,161,1,161,1,161, + 3,161,2171,8,161,1,162,3,162,2174,8,162,1,162,1,162,3,162,2178,8, + 162,1,163,1,163,1,163,1,164,1,164,4,164,2185,8,164,11,164,12,164, + 2186,1,164,3,164,2190,8,164,1,165,1,165,1,165,1,165,1,166,1,166, + 1,166,5,166,2199,8,166,10,166,12,166,2202,9,166,1,167,1,167,1,167, + 3,167,2207,8,167,1,168,1,168,1,169,1,169,1,170,1,170,1,170,1,170, + 1,170,1,171,1,171,1,172,1,172,1,173,1,173,1,173,3,173,2225,8,173, + 1,174,1,174,1,174,3,174,2230,8,174,1,175,1,175,1,175,3,175,2235, + 8,175,1,175,1,175,1,175,1,175,1,175,3,175,2242,8,175,3,175,2244, + 8,175,1,176,1,176,1,176,3,176,2249,8,176,1,176,1,176,1,176,1,176, + 1,176,3,176,2256,8,176,3,176,2258,8,176,1,177,1,177,1,177,3,177, + 2263,8,177,1,177,1,177,1,177,1,177,1,177,3,177,2270,8,177,3,177, + 2272,8,177,1,178,1,178,1,178,3,178,2277,8,178,1,178,1,178,1,178, + 1,178,1,178,3,178,2284,8,178,3,178,2286,8,178,1,179,1,179,1,179, + 5,179,2291,8,179,10,179,12,179,2294,9,179,1,180,1,180,1,180,5,180, + 2299,8,180,10,180,12,180,2302,9,180,1,180,1,180,1,180,1,180,1,180, + 3,180,2309,8,180,1,181,1,181,1,181,1,182,1,182,1,182,1,182,1,183, + 1,183,1,183,1,184,1,184,1,184,1,184,5,184,2325,8,184,10,184,12,184, + 2328,9,184,1,184,1,184,1,185,1,185,3,185,2334,8,185,1,185,3,185, + 2337,8,185,1,186,1,186,1,186,3,186,2342,8,186,1,187,1,187,1,187, + 1,187,3,187,2348,8,187,1,188,1,188,1,188,1,188,1,188,1,188,3,188, + 2356,8,188,1,189,1,189,1,189,1,189,1,189,1,189,1,189,1,189,1,189, + 1,189,1,189,1,189,1,189,1,189,3,189,2372,8,189,1,190,1,190,1,190, + 1,190,1,190,1,190,1,190,3,190,2381,8,190,1,191,1,191,1,192,1,192, + 1,193,1,193,1,193,1,193,3,193,2391,8,193,1,193,1,193,1,193,1,193, + 1,193,3,193,2398,8,193,1,193,3,193,2401,8,193,1,194,1,194,1,194, 1,195,1,195,1,196,1,196,1,197,1,197,1,198,1,198,1,199,1,199,1,200, 1,200,1,201,1,201,1,202,1,202,1,203,1,203,1,204,1,204,1,205,1,205, 1,205,0,5,164,198,284,290,294,206,0,2,4,6,8,10,12,14,16,18,20,22, @@ -12854,7 +12874,7 @@ export class FlinkSqlParser extends SQLParserBase { 202,206,206,210,210,215,215,221,221,223,224,230,230,244,244,246, 246,265,265,277,277,282,282,284,284,294,294,318,318,322,324,335, 335,358,359,365,365,368,368,381,381,396,396,399,400,409,409,420, - 421,437,437,470,470,489,489,503,503,1,0,438,505,2638,0,415,1,0,0, + 421,437,437,470,470,489,489,503,503,1,0,438,505,2641,0,415,1,0,0, 0,2,425,1,0,0,0,4,439,1,0,0,0,6,441,1,0,0,0,8,457,1,0,0,0,10,461, 1,0,0,0,12,463,1,0,0,0,14,466,1,0,0,0,16,477,1,0,0,0,18,485,1,0, 0,0,20,493,1,0,0,0,22,495,1,0,0,0,24,547,1,0,0,0,26,549,1,0,0,0, @@ -12876,36 +12896,36 @@ export class FlinkSqlParser extends SQLParserBase { 1,0,0,0,154,1157,1,0,0,0,156,1166,1,0,0,0,158,1179,1,0,0,0,160,1181, 1,0,0,0,162,1194,1,0,0,0,164,1229,1,0,0,0,166,1248,1,0,0,0,168,1257, 1,0,0,0,170,1266,1,0,0,0,172,1285,1,0,0,0,174,1307,1,0,0,0,176,1309, - 1,0,0,0,178,1315,1,0,0,0,180,1344,1,0,0,0,182,1346,1,0,0,0,184,1348, - 1,0,0,0,186,1350,1,0,0,0,188,1353,1,0,0,0,190,1372,1,0,0,0,192,1384, - 1,0,0,0,194,1400,1,0,0,0,196,1402,1,0,0,0,198,1416,1,0,0,0,200,1442, - 1,0,0,0,202,1459,1,0,0,0,204,1461,1,0,0,0,206,1479,1,0,0,0,208,1481, - 1,0,0,0,210,1487,1,0,0,0,212,1489,1,0,0,0,214,1494,1,0,0,0,216,1499, - 1,0,0,0,218,1511,1,0,0,0,220,1528,1,0,0,0,222,1530,1,0,0,0,224,1532, - 1,0,0,0,226,1548,1,0,0,0,228,1550,1,0,0,0,230,1555,1,0,0,0,232,1605, - 1,0,0,0,234,1607,1,0,0,0,236,1610,1,0,0,0,238,1612,1,0,0,0,240,1619, - 1,0,0,0,242,1621,1,0,0,0,244,1623,1,0,0,0,246,1626,1,0,0,0,248,1635, - 1,0,0,0,250,1640,1,0,0,0,252,1654,1,0,0,0,254,1682,1,0,0,0,256,1692, - 1,0,0,0,258,1700,1,0,0,0,260,1705,1,0,0,0,262,1737,1,0,0,0,264,1739, - 1,0,0,0,266,1748,1,0,0,0,268,1759,1,0,0,0,270,1771,1,0,0,0,272,1797, - 1,0,0,0,274,1799,1,0,0,0,276,1817,1,0,0,0,278,1819,1,0,0,0,280,1824, - 1,0,0,0,282,1827,1,0,0,0,284,1841,1,0,0,0,286,1934,1,0,0,0,288,1965, - 1,0,0,0,290,1971,1,0,0,0,292,2016,1,0,0,0,294,2093,1,0,0,0,296,2105, - 1,0,0,0,298,2111,1,0,0,0,300,2117,1,0,0,0,302,2121,1,0,0,0,304,2127, - 1,0,0,0,306,2129,1,0,0,0,308,2131,1,0,0,0,310,2135,1,0,0,0,312,2137, - 1,0,0,0,314,2142,1,0,0,0,316,2149,1,0,0,0,318,2153,1,0,0,0,320,2158, - 1,0,0,0,322,2168,1,0,0,0,324,2171,1,0,0,0,326,2177,1,0,0,0,328,2187, - 1,0,0,0,330,2189,1,0,0,0,332,2193,1,0,0,0,334,2204,1,0,0,0,336,2206, - 1,0,0,0,338,2208,1,0,0,0,340,2210,1,0,0,0,342,2215,1,0,0,0,344,2217, - 1,0,0,0,346,2219,1,0,0,0,348,2224,1,0,0,0,350,2241,1,0,0,0,352,2255, - 1,0,0,0,354,2269,1,0,0,0,356,2283,1,0,0,0,358,2285,1,0,0,0,360,2306, - 1,0,0,0,362,2308,1,0,0,0,364,2311,1,0,0,0,366,2315,1,0,0,0,368,2318, - 1,0,0,0,370,2329,1,0,0,0,372,2339,1,0,0,0,374,2345,1,0,0,0,376,2353, - 1,0,0,0,378,2369,1,0,0,0,380,2378,1,0,0,0,382,2380,1,0,0,0,384,2382, - 1,0,0,0,386,2398,1,0,0,0,388,2400,1,0,0,0,390,2403,1,0,0,0,392,2405, - 1,0,0,0,394,2407,1,0,0,0,396,2409,1,0,0,0,398,2411,1,0,0,0,400,2413, - 1,0,0,0,402,2415,1,0,0,0,404,2417,1,0,0,0,406,2419,1,0,0,0,408,2421, - 1,0,0,0,410,2423,1,0,0,0,412,414,3,2,1,0,413,412,1,0,0,0,414,417, + 1,0,0,0,178,1315,1,0,0,0,180,1346,1,0,0,0,182,1348,1,0,0,0,184,1350, + 1,0,0,0,186,1352,1,0,0,0,188,1355,1,0,0,0,190,1374,1,0,0,0,192,1386, + 1,0,0,0,194,1402,1,0,0,0,196,1404,1,0,0,0,198,1418,1,0,0,0,200,1444, + 1,0,0,0,202,1461,1,0,0,0,204,1463,1,0,0,0,206,1481,1,0,0,0,208,1483, + 1,0,0,0,210,1489,1,0,0,0,212,1491,1,0,0,0,214,1496,1,0,0,0,216,1501, + 1,0,0,0,218,1513,1,0,0,0,220,1530,1,0,0,0,222,1532,1,0,0,0,224,1534, + 1,0,0,0,226,1550,1,0,0,0,228,1552,1,0,0,0,230,1557,1,0,0,0,232,1607, + 1,0,0,0,234,1609,1,0,0,0,236,1612,1,0,0,0,238,1614,1,0,0,0,240,1621, + 1,0,0,0,242,1623,1,0,0,0,244,1625,1,0,0,0,246,1628,1,0,0,0,248,1637, + 1,0,0,0,250,1642,1,0,0,0,252,1656,1,0,0,0,254,1684,1,0,0,0,256,1694, + 1,0,0,0,258,1702,1,0,0,0,260,1707,1,0,0,0,262,1739,1,0,0,0,264,1741, + 1,0,0,0,266,1750,1,0,0,0,268,1761,1,0,0,0,270,1773,1,0,0,0,272,1799, + 1,0,0,0,274,1801,1,0,0,0,276,1819,1,0,0,0,278,1821,1,0,0,0,280,1826, + 1,0,0,0,282,1829,1,0,0,0,284,1843,1,0,0,0,286,1936,1,0,0,0,288,1967, + 1,0,0,0,290,1973,1,0,0,0,292,2018,1,0,0,0,294,2095,1,0,0,0,296,2107, + 1,0,0,0,298,2113,1,0,0,0,300,2119,1,0,0,0,302,2123,1,0,0,0,304,2129, + 1,0,0,0,306,2131,1,0,0,0,308,2133,1,0,0,0,310,2137,1,0,0,0,312,2139, + 1,0,0,0,314,2144,1,0,0,0,316,2151,1,0,0,0,318,2155,1,0,0,0,320,2160, + 1,0,0,0,322,2170,1,0,0,0,324,2173,1,0,0,0,326,2179,1,0,0,0,328,2189, + 1,0,0,0,330,2191,1,0,0,0,332,2195,1,0,0,0,334,2206,1,0,0,0,336,2208, + 1,0,0,0,338,2210,1,0,0,0,340,2212,1,0,0,0,342,2217,1,0,0,0,344,2219, + 1,0,0,0,346,2221,1,0,0,0,348,2226,1,0,0,0,350,2243,1,0,0,0,352,2257, + 1,0,0,0,354,2271,1,0,0,0,356,2285,1,0,0,0,358,2287,1,0,0,0,360,2308, + 1,0,0,0,362,2310,1,0,0,0,364,2313,1,0,0,0,366,2317,1,0,0,0,368,2320, + 1,0,0,0,370,2331,1,0,0,0,372,2341,1,0,0,0,374,2347,1,0,0,0,376,2355, + 1,0,0,0,378,2371,1,0,0,0,380,2380,1,0,0,0,382,2382,1,0,0,0,384,2384, + 1,0,0,0,386,2400,1,0,0,0,388,2402,1,0,0,0,390,2405,1,0,0,0,392,2407, + 1,0,0,0,394,2409,1,0,0,0,396,2411,1,0,0,0,398,2413,1,0,0,0,400,2415, + 1,0,0,0,402,2417,1,0,0,0,404,2419,1,0,0,0,406,2421,1,0,0,0,408,2423, + 1,0,0,0,410,2425,1,0,0,0,412,414,3,2,1,0,413,412,1,0,0,0,414,417, 1,0,0,0,415,413,1,0,0,0,415,416,1,0,0,0,416,418,1,0,0,0,417,415, 1,0,0,0,418,419,5,0,0,1,419,1,1,0,0,0,420,422,3,4,2,0,421,423,5, 522,0,0,422,421,1,0,0,0,422,423,1,0,0,0,423,426,1,0,0,0,424,426, @@ -13204,398 +13224,399 @@ export class FlinkSqlParser extends SQLParserBase { 0,0,0,1313,1314,3,178,89,0,1314,177,1,0,0,0,1315,1320,3,180,90,0, 1316,1317,5,521,0,0,1317,1319,3,180,90,0,1318,1316,1,0,0,0,1319, 1322,1,0,0,0,1320,1318,1,0,0,0,1320,1321,1,0,0,0,1321,179,1,0,0, - 0,1322,1320,1,0,0,0,1323,1345,3,182,91,0,1324,1330,3,186,93,0,1325, + 0,1322,1320,1,0,0,0,1323,1347,3,182,91,0,1324,1330,3,186,93,0,1325, 1331,3,188,94,0,1326,1328,5,17,0,0,1327,1326,1,0,0,0,1327,1328,1, 0,0,0,1328,1329,1,0,0,0,1329,1331,3,282,141,0,1330,1325,1,0,0,0, - 1330,1327,1,0,0,0,1330,1331,1,0,0,0,1331,1345,1,0,0,0,1332,1334, + 1330,1327,1,0,0,0,1330,1331,1,0,0,0,1331,1347,1,0,0,0,1332,1334, 3,192,96,0,1333,1335,3,188,94,0,1334,1333,1,0,0,0,1334,1335,1,0, - 0,0,1335,1345,1,0,0,0,1336,1342,3,184,92,0,1337,1343,3,188,94,0, + 0,0,1335,1347,1,0,0,0,1336,1342,3,184,92,0,1337,1343,3,188,94,0, 1338,1340,5,17,0,0,1339,1338,1,0,0,0,1339,1340,1,0,0,0,1340,1341, 1,0,0,0,1341,1343,3,54,27,0,1342,1337,1,0,0,0,1342,1339,1,0,0,0, - 1342,1343,1,0,0,0,1343,1345,1,0,0,0,1344,1323,1,0,0,0,1344,1324, - 1,0,0,0,1344,1332,1,0,0,0,1344,1336,1,0,0,0,1345,181,1,0,0,0,1346, - 1347,3,194,97,0,1347,183,1,0,0,0,1348,1349,3,282,141,0,1349,185, - 1,0,0,0,1350,1351,3,54,27,0,1351,187,1,0,0,0,1352,1354,5,17,0,0, - 1353,1352,1,0,0,0,1353,1354,1,0,0,0,1354,1355,1,0,0,0,1355,1356, - 3,334,167,0,1356,189,1,0,0,0,1357,1373,3,194,97,0,1358,1363,3,282, - 141,0,1359,1361,5,17,0,0,1360,1359,1,0,0,0,1360,1361,1,0,0,0,1361, - 1362,1,0,0,0,1362,1364,3,54,27,0,1363,1360,1,0,0,0,1363,1364,1,0, - 0,0,1364,1373,1,0,0,0,1365,1370,3,54,27,0,1366,1368,5,17,0,0,1367, - 1366,1,0,0,0,1367,1368,1,0,0,0,1368,1369,1,0,0,0,1369,1371,3,282, - 141,0,1370,1367,1,0,0,0,1370,1371,1,0,0,0,1371,1373,1,0,0,0,1372, - 1357,1,0,0,0,1372,1358,1,0,0,0,1372,1365,1,0,0,0,1373,191,1,0,0, - 0,1374,1379,3,334,167,0,1375,1376,5,514,0,0,1376,1378,3,334,167, - 0,1377,1375,1,0,0,0,1378,1381,1,0,0,0,1379,1377,1,0,0,0,1379,1380, - 1,0,0,0,1380,1382,1,0,0,0,1381,1379,1,0,0,0,1382,1383,5,514,0,0, - 1383,1385,1,0,0,0,1384,1374,1,0,0,0,1384,1385,1,0,0,0,1385,1386, - 1,0,0,0,1386,1387,5,528,0,0,1387,193,1,0,0,0,1388,1389,3,294,147, - 0,1389,1390,5,263,0,0,1390,1391,3,250,125,0,1391,1392,5,17,0,0,1392, - 1393,3,334,167,0,1393,1401,1,0,0,0,1394,1395,3,294,147,0,1395,1396, - 5,263,0,0,1396,1397,3,326,163,0,1397,1398,5,17,0,0,1398,1399,3,334, - 167,0,1399,1401,1,0,0,0,1400,1388,1,0,0,0,1400,1394,1,0,0,0,1401, - 195,1,0,0,0,1402,1403,5,151,0,0,1403,1404,3,198,99,0,1404,197,1, - 0,0,0,1405,1406,6,99,-1,0,1406,1411,3,200,100,0,1407,1408,5,521, - 0,0,1408,1410,3,200,100,0,1409,1407,1,0,0,0,1410,1413,1,0,0,0,1411, - 1409,1,0,0,0,1411,1412,1,0,0,0,1412,1417,1,0,0,0,1413,1411,1,0,0, - 0,1414,1417,3,212,106,0,1415,1417,3,214,107,0,1416,1405,1,0,0,0, - 1416,1414,1,0,0,0,1416,1415,1,0,0,0,1417,1439,1,0,0,0,1418,1419, - 10,3,0,0,1419,1420,5,73,0,0,1420,1421,5,185,0,0,1421,1438,3,198, - 99,4,1422,1424,10,4,0,0,1423,1425,5,234,0,0,1424,1423,1,0,0,0,1424, - 1425,1,0,0,0,1425,1427,1,0,0,0,1426,1428,7,20,0,0,1427,1426,1,0, - 0,0,1427,1428,1,0,0,0,1428,1430,1,0,0,0,1429,1431,5,262,0,0,1430, - 1429,1,0,0,0,1430,1431,1,0,0,0,1431,1432,1,0,0,0,1432,1433,5,185, - 0,0,1433,1435,3,198,99,0,1434,1436,3,226,113,0,1435,1434,1,0,0,0, - 1435,1436,1,0,0,0,1436,1438,1,0,0,0,1437,1418,1,0,0,0,1437,1422, - 1,0,0,0,1438,1441,1,0,0,0,1439,1437,1,0,0,0,1439,1440,1,0,0,0,1440, - 199,1,0,0,0,1441,1439,1,0,0,0,1442,1444,3,202,101,0,1443,1445,3, - 324,162,0,1444,1443,1,0,0,0,1444,1445,1,0,0,0,1445,201,1,0,0,0,1446, - 1448,5,374,0,0,1447,1446,1,0,0,0,1447,1448,1,0,0,0,1448,1449,1,0, - 0,0,1449,1451,3,352,176,0,1450,1452,3,208,104,0,1451,1450,1,0,0, - 0,1451,1452,1,0,0,0,1452,1460,1,0,0,0,1453,1455,3,354,177,0,1454, - 1456,3,208,104,0,1455,1454,1,0,0,0,1455,1456,1,0,0,0,1456,1460,1, - 0,0,0,1457,1460,3,204,102,0,1458,1460,3,206,103,0,1459,1447,1,0, - 0,0,1459,1453,1,0,0,0,1459,1457,1,0,0,0,1459,1458,1,0,0,0,1460,203, - 1,0,0,0,1461,1462,5,199,0,0,1462,1463,5,374,0,0,1463,1464,5,517, - 0,0,1464,1465,3,292,146,0,1465,1466,5,518,0,0,1466,205,1,0,0,0,1467, - 1469,5,199,0,0,1468,1467,1,0,0,0,1468,1469,1,0,0,0,1469,1470,1,0, - 0,0,1470,1471,5,517,0,0,1471,1472,3,164,82,0,1472,1473,5,518,0,0, - 1473,1480,1,0,0,0,1474,1475,5,406,0,0,1475,1476,5,517,0,0,1476,1477, - 3,282,141,0,1477,1478,5,518,0,0,1478,1480,1,0,0,0,1479,1468,1,0, - 0,0,1479,1474,1,0,0,0,1480,207,1,0,0,0,1481,1482,5,146,0,0,1482, - 1483,5,372,0,0,1483,1484,5,17,0,0,1484,1485,5,250,0,0,1485,1486, - 3,210,105,0,1486,209,1,0,0,0,1487,1488,3,282,141,0,1488,211,1,0, - 0,0,1489,1490,5,517,0,0,1490,1491,3,154,77,0,1491,1492,5,518,0,0, - 1492,1493,3,324,162,0,1493,213,1,0,0,0,1494,1495,5,374,0,0,1495, - 1496,5,517,0,0,1496,1497,3,216,108,0,1497,1498,5,518,0,0,1498,215, - 1,0,0,0,1499,1500,3,218,109,0,1500,1501,5,517,0,0,1501,1506,3,220, - 110,0,1502,1503,5,521,0,0,1503,1505,3,220,110,0,1504,1502,1,0,0, - 0,1505,1508,1,0,0,0,1506,1504,1,0,0,0,1506,1507,1,0,0,0,1507,1509, - 1,0,0,0,1508,1506,1,0,0,0,1509,1510,5,518,0,0,1510,217,1,0,0,0,1511, - 1512,7,21,0,0,1512,219,1,0,0,0,1513,1514,5,374,0,0,1514,1529,3,242, - 121,0,1515,1529,3,224,112,0,1516,1529,3,312,156,0,1517,1518,5,447, - 0,0,1518,1519,5,537,0,0,1519,1520,5,374,0,0,1520,1529,3,242,121, - 0,1521,1522,5,499,0,0,1522,1523,5,537,0,0,1523,1529,3,224,112,0, - 1524,1525,3,222,111,0,1525,1526,5,537,0,0,1526,1527,3,312,156,0, - 1527,1529,1,0,0,0,1528,1513,1,0,0,0,1528,1515,1,0,0,0,1528,1516, - 1,0,0,0,1528,1517,1,0,0,0,1528,1521,1,0,0,0,1528,1524,1,0,0,0,1529, - 221,1,0,0,0,1530,1531,7,22,0,0,1531,223,1,0,0,0,1532,1533,5,452, - 0,0,1533,1534,5,517,0,0,1534,1535,3,54,27,0,1535,1536,5,518,0,0, - 1536,225,1,0,0,0,1537,1544,5,254,0,0,1538,1545,3,284,142,0,1539, - 1542,3,58,29,0,1540,1541,5,506,0,0,1541,1543,3,58,29,0,1542,1540, - 1,0,0,0,1542,1543,1,0,0,0,1543,1545,1,0,0,0,1544,1538,1,0,0,0,1544, - 1539,1,0,0,0,1545,1549,1,0,0,0,1546,1547,5,413,0,0,1547,1549,3,60, - 30,0,1548,1537,1,0,0,0,1548,1546,1,0,0,0,1549,227,1,0,0,0,1550,1553, - 5,431,0,0,1551,1554,3,284,142,0,1552,1554,3,58,29,0,1553,1551,1, - 0,0,0,1553,1552,1,0,0,0,1554,229,1,0,0,0,1555,1556,5,159,0,0,1556, - 1557,5,34,0,0,1557,1562,3,232,116,0,1558,1559,5,521,0,0,1559,1561, - 3,232,116,0,1560,1558,1,0,0,0,1561,1564,1,0,0,0,1562,1560,1,0,0, - 0,1562,1563,1,0,0,0,1563,231,1,0,0,0,1564,1562,1,0,0,0,1565,1606, - 3,54,27,0,1566,1606,3,238,119,0,1567,1568,5,517,0,0,1568,1606,5, - 518,0,0,1569,1570,5,517,0,0,1570,1575,3,282,141,0,1571,1572,5,521, - 0,0,1572,1574,3,282,141,0,1573,1571,1,0,0,0,1574,1577,1,0,0,0,1575, - 1573,1,0,0,0,1575,1576,1,0,0,0,1576,1578,1,0,0,0,1577,1575,1,0,0, - 0,1578,1579,5,518,0,0,1579,1606,1,0,0,0,1580,1581,3,236,118,0,1581, - 1582,5,517,0,0,1582,1587,3,282,141,0,1583,1584,5,521,0,0,1584,1586, - 3,282,141,0,1585,1583,1,0,0,0,1586,1589,1,0,0,0,1587,1585,1,0,0, - 0,1587,1588,1,0,0,0,1588,1590,1,0,0,0,1589,1587,1,0,0,0,1590,1591, - 5,518,0,0,1591,1606,1,0,0,0,1592,1593,3,234,117,0,1593,1594,5,517, - 0,0,1594,1599,3,232,116,0,1595,1596,5,521,0,0,1596,1598,3,232,116, - 0,1597,1595,1,0,0,0,1598,1601,1,0,0,0,1599,1597,1,0,0,0,1599,1600, - 1,0,0,0,1600,1602,1,0,0,0,1601,1599,1,0,0,0,1602,1603,5,518,0,0, - 1603,1606,1,0,0,0,1604,1606,3,282,141,0,1605,1565,1,0,0,0,1605,1566, - 1,0,0,0,1605,1567,1,0,0,0,1605,1569,1,0,0,0,1605,1580,1,0,0,0,1605, - 1592,1,0,0,0,1605,1604,1,0,0,0,1606,233,1,0,0,0,1607,1608,5,160, - 0,0,1608,1609,5,494,0,0,1609,235,1,0,0,0,1610,1611,7,23,0,0,1611, - 237,1,0,0,0,1612,1613,3,240,120,0,1613,1614,5,517,0,0,1614,1615, - 3,242,121,0,1615,1616,5,521,0,0,1616,1617,3,312,156,0,1617,1618, - 5,518,0,0,1618,239,1,0,0,0,1619,1620,7,24,0,0,1620,241,1,0,0,0,1621, - 1622,3,358,179,0,1622,243,1,0,0,0,1623,1624,5,163,0,0,1624,1625, - 3,284,142,0,1625,245,1,0,0,0,1626,1627,5,433,0,0,1627,1632,3,248, - 124,0,1628,1629,5,521,0,0,1629,1631,3,248,124,0,1630,1628,1,0,0, - 0,1631,1634,1,0,0,0,1632,1630,1,0,0,0,1632,1633,1,0,0,0,1633,247, - 1,0,0,0,1634,1632,1,0,0,0,1635,1636,3,326,163,0,1636,1637,5,17,0, - 0,1637,1638,3,250,125,0,1638,249,1,0,0,0,1639,1641,3,326,163,0,1640, - 1639,1,0,0,0,1640,1641,1,0,0,0,1641,1642,1,0,0,0,1642,1644,5,517, - 0,0,1643,1645,3,260,130,0,1644,1643,1,0,0,0,1644,1645,1,0,0,0,1645, - 1647,1,0,0,0,1646,1648,3,254,127,0,1647,1646,1,0,0,0,1647,1648,1, - 0,0,0,1648,1650,1,0,0,0,1649,1651,3,276,138,0,1650,1649,1,0,0,0, - 1650,1651,1,0,0,0,1651,1652,1,0,0,0,1652,1653,5,518,0,0,1653,251, - 1,0,0,0,1654,1655,5,214,0,0,1655,1657,5,517,0,0,1656,1658,3,260, - 130,0,1657,1656,1,0,0,0,1657,1658,1,0,0,0,1658,1660,1,0,0,0,1659, - 1661,3,254,127,0,1660,1659,1,0,0,0,1660,1661,1,0,0,0,1661,1663,1, - 0,0,0,1662,1664,3,264,132,0,1663,1662,1,0,0,0,1663,1664,1,0,0,0, - 1664,1666,1,0,0,0,1665,1667,3,270,135,0,1666,1665,1,0,0,0,1666,1667, - 1,0,0,0,1667,1669,1,0,0,0,1668,1670,3,272,136,0,1669,1668,1,0,0, - 0,1669,1670,1,0,0,0,1670,1672,1,0,0,0,1671,1673,3,266,133,0,1672, - 1671,1,0,0,0,1672,1673,1,0,0,0,1673,1674,1,0,0,0,1674,1675,3,274, - 137,0,1675,1680,5,518,0,0,1676,1678,5,17,0,0,1677,1676,1,0,0,0,1677, - 1678,1,0,0,0,1678,1679,1,0,0,0,1679,1681,3,334,167,0,1680,1677,1, - 0,0,0,1680,1681,1,0,0,0,1681,253,1,0,0,0,1682,1683,5,259,0,0,1683, - 1684,5,34,0,0,1684,1689,3,256,128,0,1685,1686,5,521,0,0,1686,1688, - 3,256,128,0,1687,1685,1,0,0,0,1688,1691,1,0,0,0,1689,1687,1,0,0, - 0,1689,1690,1,0,0,0,1690,255,1,0,0,0,1691,1689,1,0,0,0,1692,1694, - 3,54,27,0,1693,1695,7,25,0,0,1694,1693,1,0,0,0,1694,1695,1,0,0,0, - 1695,1698,1,0,0,0,1696,1697,5,477,0,0,1697,1699,7,26,0,0,1698,1696, - 1,0,0,0,1698,1699,1,0,0,0,1699,257,1,0,0,0,1700,1703,5,205,0,0,1701, - 1704,5,5,0,0,1702,1704,3,282,141,0,1703,1701,1,0,0,0,1703,1702,1, - 0,0,0,1704,259,1,0,0,0,1705,1706,5,269,0,0,1706,1709,5,34,0,0,1707, - 1710,3,54,27,0,1708,1710,3,294,147,0,1709,1707,1,0,0,0,1709,1708, - 1,0,0,0,1710,1718,1,0,0,0,1711,1714,5,521,0,0,1712,1715,3,54,27, - 0,1713,1715,3,294,147,0,1714,1712,1,0,0,0,1714,1713,1,0,0,0,1715, - 1717,1,0,0,0,1716,1711,1,0,0,0,1717,1720,1,0,0,0,1718,1716,1,0,0, - 0,1718,1719,1,0,0,0,1719,261,1,0,0,0,1720,1718,1,0,0,0,1721,1738, - 5,528,0,0,1722,1738,5,531,0,0,1723,1738,5,536,0,0,1724,1725,5,519, - 0,0,1725,1726,5,539,0,0,1726,1727,5,521,0,0,1727,1728,5,539,0,0, - 1728,1738,5,520,0,0,1729,1730,5,519,0,0,1730,1731,5,539,0,0,1731, - 1732,5,521,0,0,1732,1738,5,520,0,0,1733,1734,5,519,0,0,1734,1735, - 5,521,0,0,1735,1736,5,539,0,0,1736,1738,5,520,0,0,1737,1721,1,0, - 0,0,1737,1722,1,0,0,0,1737,1723,1,0,0,0,1737,1724,1,0,0,0,1737,1729, - 1,0,0,0,1737,1733,1,0,0,0,1738,263,1,0,0,0,1739,1740,5,216,0,0,1740, - 1745,3,190,95,0,1741,1742,5,521,0,0,1742,1744,3,190,95,0,1743,1741, - 1,0,0,0,1744,1747,1,0,0,0,1745,1743,1,0,0,0,1745,1746,1,0,0,0,1746, - 265,1,0,0,0,1747,1745,1,0,0,0,1748,1749,5,272,0,0,1749,1751,5,517, - 0,0,1750,1752,3,268,134,0,1751,1750,1,0,0,0,1752,1753,1,0,0,0,1753, - 1751,1,0,0,0,1753,1754,1,0,0,0,1754,1755,1,0,0,0,1755,1757,5,518, - 0,0,1756,1758,3,280,140,0,1757,1756,1,0,0,0,1757,1758,1,0,0,0,1758, - 267,1,0,0,0,1759,1761,3,336,168,0,1760,1762,3,262,131,0,1761,1760, - 1,0,0,0,1761,1762,1,0,0,0,1762,269,1,0,0,0,1763,1764,5,5,0,0,1764, - 1765,5,323,0,0,1765,1766,5,273,0,0,1766,1772,5,211,0,0,1767,1768, - 5,255,0,0,1768,1769,5,322,0,0,1769,1770,5,273,0,0,1770,1772,5,211, - 0,0,1771,1763,1,0,0,0,1771,1767,1,0,0,0,1772,271,1,0,0,0,1773,1774, - 5,439,0,0,1774,1775,5,211,0,0,1775,1776,5,344,0,0,1776,1777,5,479, - 0,0,1777,1778,5,468,0,0,1778,1798,5,322,0,0,1779,1780,5,439,0,0, - 1780,1781,5,211,0,0,1781,1782,5,344,0,0,1782,1783,5,389,0,0,1783, - 1784,5,238,0,0,1784,1798,5,322,0,0,1785,1786,5,439,0,0,1786,1787, - 5,211,0,0,1787,1788,5,344,0,0,1788,1789,5,389,0,0,1789,1790,5,468, - 0,0,1790,1798,3,336,168,0,1791,1792,5,439,0,0,1792,1793,5,211,0, - 0,1793,1794,5,344,0,0,1794,1795,5,389,0,0,1795,1796,5,458,0,0,1796, - 1798,3,336,168,0,1797,1773,1,0,0,0,1797,1779,1,0,0,0,1797,1785,1, - 0,0,0,1797,1791,1,0,0,0,1798,273,1,0,0,0,1799,1800,5,105,0,0,1800, - 1805,3,190,95,0,1801,1802,5,521,0,0,1802,1804,3,190,95,0,1803,1801, - 1,0,0,0,1804,1807,1,0,0,0,1805,1803,1,0,0,0,1805,1806,1,0,0,0,1806, - 275,1,0,0,0,1807,1805,1,0,0,0,1808,1809,5,293,0,0,1809,1810,5,27, - 0,0,1810,1811,3,312,156,0,1811,1812,3,278,139,0,1812,1818,1,0,0, - 0,1813,1814,5,323,0,0,1814,1815,5,27,0,0,1815,1816,5,539,0,0,1816, - 1818,3,278,139,0,1817,1808,1,0,0,0,1817,1813,1,0,0,0,1818,277,1, - 0,0,0,1819,1820,5,481,0,0,1820,1821,5,10,0,0,1821,1822,5,76,0,0, - 1822,1823,5,322,0,0,1823,279,1,0,0,0,1824,1825,5,435,0,0,1825,1826, - 3,312,156,0,1826,281,1,0,0,0,1827,1828,3,284,142,0,1828,283,1,0, - 0,0,1829,1830,6,142,-1,0,1830,1831,5,242,0,0,1831,1842,3,284,142, - 6,1832,1833,5,133,0,0,1833,1834,5,517,0,0,1834,1835,3,164,82,0,1835, - 1836,5,518,0,0,1836,1842,1,0,0,0,1837,1839,3,290,145,0,1838,1840, - 3,286,143,0,1839,1838,1,0,0,0,1839,1840,1,0,0,0,1840,1842,1,0,0, - 0,1841,1829,1,0,0,0,1841,1832,1,0,0,0,1841,1837,1,0,0,0,1842,1857, - 1,0,0,0,1843,1844,10,3,0,0,1844,1845,5,10,0,0,1845,1856,3,284,142, - 4,1846,1847,10,2,0,0,1847,1848,5,258,0,0,1848,1856,3,284,142,3,1849, - 1850,10,1,0,0,1850,1852,5,184,0,0,1851,1853,5,242,0,0,1852,1851, - 1,0,0,0,1852,1853,1,0,0,0,1853,1854,1,0,0,0,1854,1856,7,27,0,0,1855, - 1843,1,0,0,0,1855,1846,1,0,0,0,1855,1849,1,0,0,0,1856,1859,1,0,0, - 0,1857,1855,1,0,0,0,1857,1858,1,0,0,0,1858,285,1,0,0,0,1859,1857, - 1,0,0,0,1860,1862,5,242,0,0,1861,1860,1,0,0,0,1861,1862,1,0,0,0, - 1862,1863,1,0,0,0,1863,1865,5,27,0,0,1864,1866,7,28,0,0,1865,1864, - 1,0,0,0,1865,1866,1,0,0,0,1866,1867,1,0,0,0,1867,1868,3,290,145, - 0,1868,1869,5,10,0,0,1869,1870,3,290,145,0,1870,1935,1,0,0,0,1871, - 1873,5,242,0,0,1872,1871,1,0,0,0,1872,1873,1,0,0,0,1873,1874,1,0, - 0,0,1874,1875,5,170,0,0,1875,1876,5,517,0,0,1876,1881,3,282,141, - 0,1877,1878,5,521,0,0,1878,1880,3,282,141,0,1879,1877,1,0,0,0,1880, - 1883,1,0,0,0,1881,1879,1,0,0,0,1881,1882,1,0,0,0,1882,1884,1,0,0, - 0,1883,1881,1,0,0,0,1884,1885,5,518,0,0,1885,1935,1,0,0,0,1886,1888, - 5,242,0,0,1887,1886,1,0,0,0,1887,1888,1,0,0,0,1888,1889,1,0,0,0, - 1889,1890,5,170,0,0,1890,1891,5,517,0,0,1891,1892,3,164,82,0,1892, - 1893,5,518,0,0,1893,1935,1,0,0,0,1894,1895,5,133,0,0,1895,1896,5, - 517,0,0,1896,1897,3,164,82,0,1897,1898,5,518,0,0,1898,1935,1,0,0, - 0,1899,1901,5,242,0,0,1900,1899,1,0,0,0,1900,1901,1,0,0,0,1901,1902, - 1,0,0,0,1902,1903,5,319,0,0,1903,1935,3,290,145,0,1904,1935,3,288, - 144,0,1905,1907,5,184,0,0,1906,1908,5,242,0,0,1907,1906,1,0,0,0, - 1907,1908,1,0,0,0,1908,1909,1,0,0,0,1909,1935,7,27,0,0,1910,1912, - 5,184,0,0,1911,1913,5,242,0,0,1912,1911,1,0,0,0,1912,1913,1,0,0, - 0,1913,1914,1,0,0,0,1914,1915,5,113,0,0,1915,1916,5,151,0,0,1916, - 1935,3,290,145,0,1917,1919,5,242,0,0,1918,1917,1,0,0,0,1918,1919, - 1,0,0,0,1919,1920,1,0,0,0,1920,1921,5,343,0,0,1921,1922,5,389,0, - 0,1922,1925,3,290,145,0,1923,1924,5,127,0,0,1924,1926,3,390,195, - 0,1925,1923,1,0,0,0,1925,1926,1,0,0,0,1926,1935,1,0,0,0,1927,1928, - 5,184,0,0,1928,1932,5,186,0,0,1929,1933,5,414,0,0,1930,1933,5,13, - 0,0,1931,1933,3,334,167,0,1932,1929,1,0,0,0,1932,1930,1,0,0,0,1932, - 1931,1,0,0,0,1932,1933,1,0,0,0,1933,1935,1,0,0,0,1934,1861,1,0,0, - 0,1934,1872,1,0,0,0,1934,1887,1,0,0,0,1934,1894,1,0,0,0,1934,1900, - 1,0,0,0,1934,1904,1,0,0,0,1934,1905,1,0,0,0,1934,1910,1,0,0,0,1934, - 1918,1,0,0,0,1934,1927,1,0,0,0,1935,287,1,0,0,0,1936,1938,5,242, - 0,0,1937,1936,1,0,0,0,1937,1938,1,0,0,0,1938,1939,1,0,0,0,1939,1940, - 5,203,0,0,1940,1954,7,29,0,0,1941,1942,5,517,0,0,1942,1955,5,518, - 0,0,1943,1944,5,517,0,0,1944,1949,3,282,141,0,1945,1946,5,521,0, - 0,1946,1948,3,282,141,0,1947,1945,1,0,0,0,1948,1951,1,0,0,0,1949, - 1947,1,0,0,0,1949,1950,1,0,0,0,1950,1952,1,0,0,0,1951,1949,1,0,0, - 0,1952,1953,5,518,0,0,1953,1955,1,0,0,0,1954,1941,1,0,0,0,1954,1943, - 1,0,0,0,1955,1966,1,0,0,0,1956,1958,5,242,0,0,1957,1956,1,0,0,0, - 1957,1958,1,0,0,0,1958,1959,1,0,0,0,1959,1960,5,203,0,0,1960,1963, - 3,290,145,0,1961,1962,5,127,0,0,1962,1964,3,390,195,0,1963,1961, - 1,0,0,0,1963,1964,1,0,0,0,1964,1966,1,0,0,0,1965,1937,1,0,0,0,1965, - 1957,1,0,0,0,1966,289,1,0,0,0,1967,1968,6,145,-1,0,1968,1972,3,294, - 147,0,1969,1970,7,30,0,0,1970,1972,3,290,145,7,1971,1967,1,0,0,0, - 1971,1969,1,0,0,0,1972,1994,1,0,0,0,1973,1974,10,6,0,0,1974,1975, - 7,31,0,0,1975,1993,3,290,145,7,1976,1977,10,5,0,0,1977,1978,7,32, - 0,0,1978,1993,3,290,145,6,1979,1980,10,4,0,0,1980,1981,5,512,0,0, - 1981,1993,3,290,145,5,1982,1983,10,3,0,0,1983,1984,5,513,0,0,1984, - 1993,3,290,145,4,1985,1986,10,2,0,0,1986,1987,5,511,0,0,1987,1993, - 3,290,145,3,1988,1989,10,1,0,0,1989,1990,3,378,189,0,1990,1991,3, - 290,145,2,1991,1993,1,0,0,0,1992,1973,1,0,0,0,1992,1976,1,0,0,0, - 1992,1979,1,0,0,0,1992,1982,1,0,0,0,1992,1985,1,0,0,0,1992,1988, - 1,0,0,0,1993,1996,1,0,0,0,1994,1992,1,0,0,0,1994,1995,1,0,0,0,1995, - 291,1,0,0,0,1996,1994,1,0,0,0,1997,2017,3,404,202,0,1998,2017,3, - 300,150,0,1999,2000,3,302,151,0,2000,2012,5,517,0,0,2001,2003,3, - 396,198,0,2002,2001,1,0,0,0,2002,2003,1,0,0,0,2003,2004,1,0,0,0, - 2004,2009,3,304,152,0,2005,2006,5,521,0,0,2006,2008,3,304,152,0, - 2007,2005,1,0,0,0,2008,2011,1,0,0,0,2009,2007,1,0,0,0,2009,2010, - 1,0,0,0,2010,2013,1,0,0,0,2011,2009,1,0,0,0,2012,2002,1,0,0,0,2012, - 2013,1,0,0,0,2013,2014,1,0,0,0,2014,2015,5,518,0,0,2015,2017,1,0, - 0,0,2016,1997,1,0,0,0,2016,1998,1,0,0,0,2016,1999,1,0,0,0,2017,293, - 1,0,0,0,2018,2019,6,147,-1,0,2019,2021,5,40,0,0,2020,2022,3,340, - 170,0,2021,2020,1,0,0,0,2022,2023,1,0,0,0,2023,2021,1,0,0,0,2023, - 2024,1,0,0,0,2024,2027,1,0,0,0,2025,2026,5,120,0,0,2026,2028,3,282, - 141,0,2027,2025,1,0,0,0,2027,2028,1,0,0,0,2028,2029,1,0,0,0,2029, - 2030,5,122,0,0,2030,2094,1,0,0,0,2031,2032,5,40,0,0,2032,2034,3, - 282,141,0,2033,2035,3,340,170,0,2034,2033,1,0,0,0,2035,2036,1,0, - 0,0,2036,2034,1,0,0,0,2036,2037,1,0,0,0,2037,2040,1,0,0,0,2038,2039, - 5,120,0,0,2039,2041,3,282,141,0,2040,2038,1,0,0,0,2040,2041,1,0, - 0,0,2041,2042,1,0,0,0,2042,2043,5,122,0,0,2043,2094,1,0,0,0,2044, - 2045,5,41,0,0,2045,2046,5,517,0,0,2046,2047,3,282,141,0,2047,2048, - 5,17,0,0,2048,2049,3,62,31,0,2049,2050,5,518,0,0,2050,2094,1,0,0, - 0,2051,2052,5,458,0,0,2052,2053,5,517,0,0,2053,2056,3,282,141,0, - 2054,2055,5,462,0,0,2055,2057,5,477,0,0,2056,2054,1,0,0,0,2056,2057, - 1,0,0,0,2057,2058,1,0,0,0,2058,2059,5,518,0,0,2059,2094,1,0,0,0, - 2060,2061,5,468,0,0,2061,2062,5,517,0,0,2062,2065,3,282,141,0,2063, - 2064,5,462,0,0,2064,2066,5,477,0,0,2065,2063,1,0,0,0,2065,2066,1, - 0,0,0,2066,2067,1,0,0,0,2067,2068,5,518,0,0,2068,2094,1,0,0,0,2069, - 2070,5,282,0,0,2070,2071,5,517,0,0,2071,2072,3,290,145,0,2072,2073, - 5,170,0,0,2073,2074,3,290,145,0,2074,2075,5,518,0,0,2075,2094,1, - 0,0,0,2076,2094,3,386,193,0,2077,2094,5,528,0,0,2078,2079,3,358, - 179,0,2079,2080,5,514,0,0,2080,2081,5,528,0,0,2081,2094,1,0,0,0, - 2082,2083,5,517,0,0,2083,2084,3,164,82,0,2084,2085,5,518,0,0,2085, - 2094,1,0,0,0,2086,2094,3,292,146,0,2087,2094,3,56,28,0,2088,2094, - 3,306,153,0,2089,2090,5,517,0,0,2090,2091,3,282,141,0,2091,2092, - 5,518,0,0,2092,2094,1,0,0,0,2093,2018,1,0,0,0,2093,2031,1,0,0,0, - 2093,2044,1,0,0,0,2093,2051,1,0,0,0,2093,2060,1,0,0,0,2093,2069, - 1,0,0,0,2093,2076,1,0,0,0,2093,2077,1,0,0,0,2093,2078,1,0,0,0,2093, - 2082,1,0,0,0,2093,2086,1,0,0,0,2093,2087,1,0,0,0,2093,2088,1,0,0, - 0,2093,2089,1,0,0,0,2094,2102,1,0,0,0,2095,2096,10,4,0,0,2096,2097, - 5,515,0,0,2097,2098,3,290,145,0,2098,2099,5,516,0,0,2099,2101,1, - 0,0,0,2100,2095,1,0,0,0,2101,2104,1,0,0,0,2102,2100,1,0,0,0,2102, - 2103,1,0,0,0,2103,295,1,0,0,0,2104,2102,1,0,0,0,2105,2106,3,358, - 179,0,2106,297,1,0,0,0,2107,2112,3,408,204,0,2108,2112,3,404,202, - 0,2109,2112,3,406,203,0,2110,2112,3,358,179,0,2111,2107,1,0,0,0, - 2111,2108,1,0,0,0,2111,2109,1,0,0,0,2111,2110,1,0,0,0,2112,299,1, - 0,0,0,2113,2114,3,406,203,0,2114,2115,5,538,0,0,2115,2118,1,0,0, - 0,2116,2118,3,312,156,0,2117,2113,1,0,0,0,2117,2116,1,0,0,0,2118, - 301,1,0,0,0,2119,2122,3,408,204,0,2120,2122,3,358,179,0,2121,2119, - 1,0,0,0,2121,2120,1,0,0,0,2122,303,1,0,0,0,2123,2128,3,402,201,0, - 2124,2128,3,400,200,0,2125,2128,3,398,199,0,2126,2128,3,282,141, - 0,2127,2123,1,0,0,0,2127,2124,1,0,0,0,2127,2125,1,0,0,0,2127,2126, - 1,0,0,0,2128,305,1,0,0,0,2129,2130,3,358,179,0,2130,307,1,0,0,0, - 2131,2132,3,334,167,0,2132,309,1,0,0,0,2133,2136,3,334,167,0,2134, - 2136,3,306,153,0,2135,2133,1,0,0,0,2135,2134,1,0,0,0,2136,311,1, - 0,0,0,2137,2140,5,182,0,0,2138,2141,3,314,157,0,2139,2141,3,318, - 159,0,2140,2138,1,0,0,0,2140,2139,1,0,0,0,2140,2141,1,0,0,0,2141, - 313,1,0,0,0,2142,2144,3,316,158,0,2143,2145,3,320,160,0,2144,2143, - 1,0,0,0,2144,2145,1,0,0,0,2145,315,1,0,0,0,2146,2147,3,322,161,0, - 2147,2148,3,400,200,0,2148,2150,1,0,0,0,2149,2146,1,0,0,0,2150,2151, - 1,0,0,0,2151,2149,1,0,0,0,2151,2152,1,0,0,0,2152,317,1,0,0,0,2153, - 2156,3,320,160,0,2154,2157,3,316,158,0,2155,2157,3,320,160,0,2156, - 2154,1,0,0,0,2156,2155,1,0,0,0,2156,2157,1,0,0,0,2157,319,1,0,0, - 0,2158,2159,3,322,161,0,2159,2160,3,400,200,0,2160,2161,5,389,0, - 0,2161,2162,3,400,200,0,2162,321,1,0,0,0,2163,2165,7,33,0,0,2164, - 2163,1,0,0,0,2164,2165,1,0,0,0,2165,2166,1,0,0,0,2166,2169,7,34, - 0,0,2167,2169,5,538,0,0,2168,2164,1,0,0,0,2168,2167,1,0,0,0,2169, - 323,1,0,0,0,2170,2172,5,17,0,0,2171,2170,1,0,0,0,2171,2172,1,0,0, - 0,2172,2173,1,0,0,0,2173,2175,3,334,167,0,2174,2176,3,330,165,0, - 2175,2174,1,0,0,0,2175,2176,1,0,0,0,2176,325,1,0,0,0,2177,2178,3, - 334,167,0,2178,2179,3,328,164,0,2179,327,1,0,0,0,2180,2181,5,222, - 0,0,2181,2183,3,334,167,0,2182,2180,1,0,0,0,2183,2184,1,0,0,0,2184, - 2182,1,0,0,0,2184,2185,1,0,0,0,2185,2188,1,0,0,0,2186,2188,1,0,0, - 0,2187,2182,1,0,0,0,2187,2186,1,0,0,0,2188,329,1,0,0,0,2189,2190, - 5,517,0,0,2190,2191,3,332,166,0,2191,2192,5,518,0,0,2192,331,1,0, - 0,0,2193,2198,3,334,167,0,2194,2195,5,521,0,0,2195,2197,3,334,167, - 0,2196,2194,1,0,0,0,2197,2200,1,0,0,0,2198,2196,1,0,0,0,2198,2199, - 1,0,0,0,2199,333,1,0,0,0,2200,2198,1,0,0,0,2201,2205,3,336,168,0, - 2202,2205,3,338,169,0,2203,2205,3,410,205,0,2204,2201,1,0,0,0,2204, - 2202,1,0,0,0,2204,2203,1,0,0,0,2205,335,1,0,0,0,2206,2207,7,35,0, - 0,2207,337,1,0,0,0,2208,2209,5,538,0,0,2209,339,1,0,0,0,2210,2211, - 5,429,0,0,2211,2212,3,282,141,0,2212,2213,5,377,0,0,2213,2214,3, - 282,141,0,2214,341,1,0,0,0,2215,2216,3,334,167,0,2216,343,1,0,0, - 0,2217,2218,3,334,167,0,2218,345,1,0,0,0,2219,2222,3,334,167,0,2220, - 2221,5,514,0,0,2221,2223,3,334,167,0,2222,2220,1,0,0,0,2222,2223, - 1,0,0,0,2223,347,1,0,0,0,2224,2227,3,334,167,0,2225,2226,5,514,0, - 0,2226,2228,3,334,167,0,2227,2225,1,0,0,0,2227,2228,1,0,0,0,2228, - 349,1,0,0,0,2229,2232,3,334,167,0,2230,2231,5,514,0,0,2231,2233, - 3,334,167,0,2232,2230,1,0,0,0,2232,2233,1,0,0,0,2233,2242,1,0,0, - 0,2234,2235,3,334,167,0,2235,2236,5,514,0,0,2236,2239,3,334,167, - 0,2237,2238,5,514,0,0,2238,2240,3,334,167,0,2239,2237,1,0,0,0,2239, - 2240,1,0,0,0,2240,2242,1,0,0,0,2241,2229,1,0,0,0,2241,2234,1,0,0, - 0,2242,351,1,0,0,0,2243,2246,3,334,167,0,2244,2245,5,514,0,0,2245, - 2247,3,334,167,0,2246,2244,1,0,0,0,2246,2247,1,0,0,0,2247,2256,1, - 0,0,0,2248,2249,3,334,167,0,2249,2250,5,514,0,0,2250,2253,3,334, - 167,0,2251,2252,5,514,0,0,2252,2254,3,334,167,0,2253,2251,1,0,0, - 0,2253,2254,1,0,0,0,2254,2256,1,0,0,0,2255,2243,1,0,0,0,2255,2248, - 1,0,0,0,2256,353,1,0,0,0,2257,2260,3,334,167,0,2258,2259,5,514,0, - 0,2259,2261,3,334,167,0,2260,2258,1,0,0,0,2260,2261,1,0,0,0,2261, - 2270,1,0,0,0,2262,2263,3,334,167,0,2263,2264,5,514,0,0,2264,2267, - 3,334,167,0,2265,2266,5,514,0,0,2266,2268,3,334,167,0,2267,2265, - 1,0,0,0,2267,2268,1,0,0,0,2268,2270,1,0,0,0,2269,2257,1,0,0,0,2269, - 2262,1,0,0,0,2270,355,1,0,0,0,2271,2274,3,334,167,0,2272,2273,5, - 514,0,0,2273,2275,3,334,167,0,2274,2272,1,0,0,0,2274,2275,1,0,0, - 0,2275,2284,1,0,0,0,2276,2277,3,334,167,0,2277,2278,5,514,0,0,2278, - 2281,3,334,167,0,2279,2280,5,514,0,0,2280,2282,3,334,167,0,2281, - 2279,1,0,0,0,2281,2282,1,0,0,0,2282,2284,1,0,0,0,2283,2271,1,0,0, - 0,2283,2276,1,0,0,0,2284,357,1,0,0,0,2285,2290,3,334,167,0,2286, - 2287,5,514,0,0,2287,2289,3,334,167,0,2288,2286,1,0,0,0,2289,2292, - 1,0,0,0,2290,2288,1,0,0,0,2290,2291,1,0,0,0,2291,359,1,0,0,0,2292, - 2290,1,0,0,0,2293,2298,3,334,167,0,2294,2295,5,514,0,0,2295,2297, - 3,334,167,0,2296,2294,1,0,0,0,2297,2300,1,0,0,0,2298,2296,1,0,0, - 0,2298,2299,1,0,0,0,2299,2307,1,0,0,0,2300,2298,1,0,0,0,2301,2302, - 4,180,15,0,2302,2303,3,334,167,0,2303,2304,5,514,0,0,2304,2305,3, - 52,26,0,2305,2307,1,0,0,0,2306,2293,1,0,0,0,2306,2301,1,0,0,0,2307, - 361,1,0,0,0,2308,2309,5,434,0,0,2309,2310,3,368,184,0,2310,363,1, - 0,0,0,2311,2312,5,167,0,0,2312,2313,5,242,0,0,2313,2314,5,133,0, - 0,2314,365,1,0,0,0,2315,2316,5,167,0,0,2316,2317,5,133,0,0,2317, - 367,1,0,0,0,2318,2319,5,517,0,0,2319,2324,3,370,185,0,2320,2321, - 5,521,0,0,2321,2323,3,370,185,0,2322,2320,1,0,0,0,2323,2326,1,0, - 0,0,2324,2322,1,0,0,0,2324,2325,1,0,0,0,2325,2327,1,0,0,0,2326,2324, - 1,0,0,0,2327,2328,5,518,0,0,2328,369,1,0,0,0,2329,2334,3,372,186, - 0,2330,2332,5,506,0,0,2331,2330,1,0,0,0,2331,2332,1,0,0,0,2332,2333, - 1,0,0,0,2333,2335,3,374,187,0,2334,2331,1,0,0,0,2334,2335,1,0,0, - 0,2335,371,1,0,0,0,2336,2340,3,334,167,0,2337,2340,3,306,153,0,2338, - 2340,5,538,0,0,2339,2336,1,0,0,0,2339,2337,1,0,0,0,2339,2338,1,0, - 0,0,2340,373,1,0,0,0,2341,2346,5,539,0,0,2342,2346,5,540,0,0,2343, - 2346,3,394,197,0,2344,2346,5,538,0,0,2345,2341,1,0,0,0,2345,2342, - 1,0,0,0,2345,2343,1,0,0,0,2345,2344,1,0,0,0,2346,375,1,0,0,0,2347, - 2354,5,10,0,0,2348,2349,5,512,0,0,2349,2354,5,512,0,0,2350,2354, - 5,258,0,0,2351,2352,5,511,0,0,2352,2354,5,511,0,0,2353,2347,1,0, - 0,0,2353,2348,1,0,0,0,2353,2350,1,0,0,0,2353,2351,1,0,0,0,2354,377, - 1,0,0,0,2355,2370,5,506,0,0,2356,2370,5,507,0,0,2357,2370,5,508, - 0,0,2358,2359,5,508,0,0,2359,2370,5,506,0,0,2360,2361,5,507,0,0, - 2361,2370,5,506,0,0,2362,2363,5,508,0,0,2363,2370,5,507,0,0,2364, - 2365,5,509,0,0,2365,2370,5,506,0,0,2366,2367,5,508,0,0,2367,2368, - 5,506,0,0,2368,2370,5,507,0,0,2369,2355,1,0,0,0,2369,2356,1,0,0, - 0,2369,2357,1,0,0,0,2369,2358,1,0,0,0,2369,2360,1,0,0,0,2369,2362, - 1,0,0,0,2369,2364,1,0,0,0,2369,2366,1,0,0,0,2370,379,1,0,0,0,2371, - 2372,5,508,0,0,2372,2379,5,508,0,0,2373,2374,5,507,0,0,2374,2379, - 5,507,0,0,2375,2379,5,512,0,0,2376,2379,5,513,0,0,2377,2379,5,511, - 0,0,2378,2371,1,0,0,0,2378,2373,1,0,0,0,2378,2375,1,0,0,0,2378,2376, - 1,0,0,0,2378,2377,1,0,0,0,2379,381,1,0,0,0,2380,2381,7,36,0,0,2381, - 383,1,0,0,0,2382,2383,7,37,0,0,2383,385,1,0,0,0,2384,2399,3,312, - 156,0,2385,2399,3,388,194,0,2386,2399,3,390,195,0,2387,2389,5,530, - 0,0,2388,2387,1,0,0,0,2388,2389,1,0,0,0,2389,2390,1,0,0,0,2390,2399, - 3,392,196,0,2391,2399,3,394,197,0,2392,2399,5,540,0,0,2393,2399, - 5,541,0,0,2394,2396,5,242,0,0,2395,2394,1,0,0,0,2395,2396,1,0,0, - 0,2396,2397,1,0,0,0,2397,2399,5,245,0,0,2398,2384,1,0,0,0,2398,2385, - 1,0,0,0,2398,2386,1,0,0,0,2398,2388,1,0,0,0,2398,2391,1,0,0,0,2398, - 2392,1,0,0,0,2398,2393,1,0,0,0,2398,2395,1,0,0,0,2399,387,1,0,0, - 0,2400,2401,3,398,199,0,2401,2402,3,390,195,0,2402,389,1,0,0,0,2403, - 2404,5,538,0,0,2404,391,1,0,0,0,2405,2406,5,539,0,0,2406,393,1,0, - 0,0,2407,2408,7,38,0,0,2408,395,1,0,0,0,2409,2410,7,39,0,0,2410, - 397,1,0,0,0,2411,2412,7,40,0,0,2412,399,1,0,0,0,2413,2414,7,41,0, - 0,2414,401,1,0,0,0,2415,2416,7,42,0,0,2416,403,1,0,0,0,2417,2418, - 7,43,0,0,2418,405,1,0,0,0,2419,2420,7,44,0,0,2420,407,1,0,0,0,2421, - 2422,7,45,0,0,2422,409,1,0,0,0,2423,2424,7,46,0,0,2424,411,1,0,0, + 1342,1343,1,0,0,0,1343,1347,1,0,0,0,1344,1345,4,90,3,0,1345,1347, + 3,52,26,0,1346,1323,1,0,0,0,1346,1324,1,0,0,0,1346,1332,1,0,0,0, + 1346,1336,1,0,0,0,1346,1344,1,0,0,0,1347,181,1,0,0,0,1348,1349,3, + 194,97,0,1349,183,1,0,0,0,1350,1351,3,282,141,0,1351,185,1,0,0,0, + 1352,1353,3,54,27,0,1353,187,1,0,0,0,1354,1356,5,17,0,0,1355,1354, + 1,0,0,0,1355,1356,1,0,0,0,1356,1357,1,0,0,0,1357,1358,3,334,167, + 0,1358,189,1,0,0,0,1359,1375,3,194,97,0,1360,1365,3,282,141,0,1361, + 1363,5,17,0,0,1362,1361,1,0,0,0,1362,1363,1,0,0,0,1363,1364,1,0, + 0,0,1364,1366,3,54,27,0,1365,1362,1,0,0,0,1365,1366,1,0,0,0,1366, + 1375,1,0,0,0,1367,1372,3,54,27,0,1368,1370,5,17,0,0,1369,1368,1, + 0,0,0,1369,1370,1,0,0,0,1370,1371,1,0,0,0,1371,1373,3,282,141,0, + 1372,1369,1,0,0,0,1372,1373,1,0,0,0,1373,1375,1,0,0,0,1374,1359, + 1,0,0,0,1374,1360,1,0,0,0,1374,1367,1,0,0,0,1375,191,1,0,0,0,1376, + 1381,3,334,167,0,1377,1378,5,514,0,0,1378,1380,3,334,167,0,1379, + 1377,1,0,0,0,1380,1383,1,0,0,0,1381,1379,1,0,0,0,1381,1382,1,0,0, + 0,1382,1384,1,0,0,0,1383,1381,1,0,0,0,1384,1385,5,514,0,0,1385,1387, + 1,0,0,0,1386,1376,1,0,0,0,1386,1387,1,0,0,0,1387,1388,1,0,0,0,1388, + 1389,5,528,0,0,1389,193,1,0,0,0,1390,1391,3,294,147,0,1391,1392, + 5,263,0,0,1392,1393,3,250,125,0,1393,1394,5,17,0,0,1394,1395,3,334, + 167,0,1395,1403,1,0,0,0,1396,1397,3,294,147,0,1397,1398,5,263,0, + 0,1398,1399,3,326,163,0,1399,1400,5,17,0,0,1400,1401,3,334,167,0, + 1401,1403,1,0,0,0,1402,1390,1,0,0,0,1402,1396,1,0,0,0,1403,195,1, + 0,0,0,1404,1405,5,151,0,0,1405,1406,3,198,99,0,1406,197,1,0,0,0, + 1407,1408,6,99,-1,0,1408,1413,3,200,100,0,1409,1410,5,521,0,0,1410, + 1412,3,200,100,0,1411,1409,1,0,0,0,1412,1415,1,0,0,0,1413,1411,1, + 0,0,0,1413,1414,1,0,0,0,1414,1419,1,0,0,0,1415,1413,1,0,0,0,1416, + 1419,3,212,106,0,1417,1419,3,214,107,0,1418,1407,1,0,0,0,1418,1416, + 1,0,0,0,1418,1417,1,0,0,0,1419,1441,1,0,0,0,1420,1421,10,3,0,0,1421, + 1422,5,73,0,0,1422,1423,5,185,0,0,1423,1440,3,198,99,4,1424,1426, + 10,4,0,0,1425,1427,5,234,0,0,1426,1425,1,0,0,0,1426,1427,1,0,0,0, + 1427,1429,1,0,0,0,1428,1430,7,20,0,0,1429,1428,1,0,0,0,1429,1430, + 1,0,0,0,1430,1432,1,0,0,0,1431,1433,5,262,0,0,1432,1431,1,0,0,0, + 1432,1433,1,0,0,0,1433,1434,1,0,0,0,1434,1435,5,185,0,0,1435,1437, + 3,198,99,0,1436,1438,3,226,113,0,1437,1436,1,0,0,0,1437,1438,1,0, + 0,0,1438,1440,1,0,0,0,1439,1420,1,0,0,0,1439,1424,1,0,0,0,1440,1443, + 1,0,0,0,1441,1439,1,0,0,0,1441,1442,1,0,0,0,1442,199,1,0,0,0,1443, + 1441,1,0,0,0,1444,1446,3,202,101,0,1445,1447,3,324,162,0,1446,1445, + 1,0,0,0,1446,1447,1,0,0,0,1447,201,1,0,0,0,1448,1450,5,374,0,0,1449, + 1448,1,0,0,0,1449,1450,1,0,0,0,1450,1451,1,0,0,0,1451,1453,3,352, + 176,0,1452,1454,3,208,104,0,1453,1452,1,0,0,0,1453,1454,1,0,0,0, + 1454,1462,1,0,0,0,1455,1457,3,354,177,0,1456,1458,3,208,104,0,1457, + 1456,1,0,0,0,1457,1458,1,0,0,0,1458,1462,1,0,0,0,1459,1462,3,204, + 102,0,1460,1462,3,206,103,0,1461,1449,1,0,0,0,1461,1455,1,0,0,0, + 1461,1459,1,0,0,0,1461,1460,1,0,0,0,1462,203,1,0,0,0,1463,1464,5, + 199,0,0,1464,1465,5,374,0,0,1465,1466,5,517,0,0,1466,1467,3,292, + 146,0,1467,1468,5,518,0,0,1468,205,1,0,0,0,1469,1471,5,199,0,0,1470, + 1469,1,0,0,0,1470,1471,1,0,0,0,1471,1472,1,0,0,0,1472,1473,5,517, + 0,0,1473,1474,3,164,82,0,1474,1475,5,518,0,0,1475,1482,1,0,0,0,1476, + 1477,5,406,0,0,1477,1478,5,517,0,0,1478,1479,3,282,141,0,1479,1480, + 5,518,0,0,1480,1482,1,0,0,0,1481,1470,1,0,0,0,1481,1476,1,0,0,0, + 1482,207,1,0,0,0,1483,1484,5,146,0,0,1484,1485,5,372,0,0,1485,1486, + 5,17,0,0,1486,1487,5,250,0,0,1487,1488,3,210,105,0,1488,209,1,0, + 0,0,1489,1490,3,282,141,0,1490,211,1,0,0,0,1491,1492,5,517,0,0,1492, + 1493,3,154,77,0,1493,1494,5,518,0,0,1494,1495,3,324,162,0,1495,213, + 1,0,0,0,1496,1497,5,374,0,0,1497,1498,5,517,0,0,1498,1499,3,216, + 108,0,1499,1500,5,518,0,0,1500,215,1,0,0,0,1501,1502,3,218,109,0, + 1502,1503,5,517,0,0,1503,1508,3,220,110,0,1504,1505,5,521,0,0,1505, + 1507,3,220,110,0,1506,1504,1,0,0,0,1507,1510,1,0,0,0,1508,1506,1, + 0,0,0,1508,1509,1,0,0,0,1509,1511,1,0,0,0,1510,1508,1,0,0,0,1511, + 1512,5,518,0,0,1512,217,1,0,0,0,1513,1514,7,21,0,0,1514,219,1,0, + 0,0,1515,1516,5,374,0,0,1516,1531,3,242,121,0,1517,1531,3,224,112, + 0,1518,1531,3,312,156,0,1519,1520,5,447,0,0,1520,1521,5,537,0,0, + 1521,1522,5,374,0,0,1522,1531,3,242,121,0,1523,1524,5,499,0,0,1524, + 1525,5,537,0,0,1525,1531,3,224,112,0,1526,1527,3,222,111,0,1527, + 1528,5,537,0,0,1528,1529,3,312,156,0,1529,1531,1,0,0,0,1530,1515, + 1,0,0,0,1530,1517,1,0,0,0,1530,1518,1,0,0,0,1530,1519,1,0,0,0,1530, + 1523,1,0,0,0,1530,1526,1,0,0,0,1531,221,1,0,0,0,1532,1533,7,22,0, + 0,1533,223,1,0,0,0,1534,1535,5,452,0,0,1535,1536,5,517,0,0,1536, + 1537,3,54,27,0,1537,1538,5,518,0,0,1538,225,1,0,0,0,1539,1546,5, + 254,0,0,1540,1547,3,284,142,0,1541,1544,3,58,29,0,1542,1543,5,506, + 0,0,1543,1545,3,58,29,0,1544,1542,1,0,0,0,1544,1545,1,0,0,0,1545, + 1547,1,0,0,0,1546,1540,1,0,0,0,1546,1541,1,0,0,0,1547,1551,1,0,0, + 0,1548,1549,5,413,0,0,1549,1551,3,60,30,0,1550,1539,1,0,0,0,1550, + 1548,1,0,0,0,1551,227,1,0,0,0,1552,1555,5,431,0,0,1553,1556,3,284, + 142,0,1554,1556,3,58,29,0,1555,1553,1,0,0,0,1555,1554,1,0,0,0,1556, + 229,1,0,0,0,1557,1558,5,159,0,0,1558,1559,5,34,0,0,1559,1564,3,232, + 116,0,1560,1561,5,521,0,0,1561,1563,3,232,116,0,1562,1560,1,0,0, + 0,1563,1566,1,0,0,0,1564,1562,1,0,0,0,1564,1565,1,0,0,0,1565,231, + 1,0,0,0,1566,1564,1,0,0,0,1567,1608,3,54,27,0,1568,1608,3,238,119, + 0,1569,1570,5,517,0,0,1570,1608,5,518,0,0,1571,1572,5,517,0,0,1572, + 1577,3,282,141,0,1573,1574,5,521,0,0,1574,1576,3,282,141,0,1575, + 1573,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,518,0,0,1581,1608, + 1,0,0,0,1582,1583,3,236,118,0,1583,1584,5,517,0,0,1584,1589,3,282, + 141,0,1585,1586,5,521,0,0,1586,1588,3,282,141,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,1592, + 1,0,0,0,1591,1589,1,0,0,0,1592,1593,5,518,0,0,1593,1608,1,0,0,0, + 1594,1595,3,234,117,0,1595,1596,5,517,0,0,1596,1601,3,232,116,0, + 1597,1598,5,521,0,0,1598,1600,3,232,116,0,1599,1597,1,0,0,0,1600, + 1603,1,0,0,0,1601,1599,1,0,0,0,1601,1602,1,0,0,0,1602,1604,1,0,0, + 0,1603,1601,1,0,0,0,1604,1605,5,518,0,0,1605,1608,1,0,0,0,1606,1608, + 3,282,141,0,1607,1567,1,0,0,0,1607,1568,1,0,0,0,1607,1569,1,0,0, + 0,1607,1571,1,0,0,0,1607,1582,1,0,0,0,1607,1594,1,0,0,0,1607,1606, + 1,0,0,0,1608,233,1,0,0,0,1609,1610,5,160,0,0,1610,1611,5,494,0,0, + 1611,235,1,0,0,0,1612,1613,7,23,0,0,1613,237,1,0,0,0,1614,1615,3, + 240,120,0,1615,1616,5,517,0,0,1616,1617,3,242,121,0,1617,1618,5, + 521,0,0,1618,1619,3,312,156,0,1619,1620,5,518,0,0,1620,239,1,0,0, + 0,1621,1622,7,24,0,0,1622,241,1,0,0,0,1623,1624,3,358,179,0,1624, + 243,1,0,0,0,1625,1626,5,163,0,0,1626,1627,3,284,142,0,1627,245,1, + 0,0,0,1628,1629,5,433,0,0,1629,1634,3,248,124,0,1630,1631,5,521, + 0,0,1631,1633,3,248,124,0,1632,1630,1,0,0,0,1633,1636,1,0,0,0,1634, + 1632,1,0,0,0,1634,1635,1,0,0,0,1635,247,1,0,0,0,1636,1634,1,0,0, + 0,1637,1638,3,326,163,0,1638,1639,5,17,0,0,1639,1640,3,250,125,0, + 1640,249,1,0,0,0,1641,1643,3,326,163,0,1642,1641,1,0,0,0,1642,1643, + 1,0,0,0,1643,1644,1,0,0,0,1644,1646,5,517,0,0,1645,1647,3,260,130, + 0,1646,1645,1,0,0,0,1646,1647,1,0,0,0,1647,1649,1,0,0,0,1648,1650, + 3,254,127,0,1649,1648,1,0,0,0,1649,1650,1,0,0,0,1650,1652,1,0,0, + 0,1651,1653,3,276,138,0,1652,1651,1,0,0,0,1652,1653,1,0,0,0,1653, + 1654,1,0,0,0,1654,1655,5,518,0,0,1655,251,1,0,0,0,1656,1657,5,214, + 0,0,1657,1659,5,517,0,0,1658,1660,3,260,130,0,1659,1658,1,0,0,0, + 1659,1660,1,0,0,0,1660,1662,1,0,0,0,1661,1663,3,254,127,0,1662,1661, + 1,0,0,0,1662,1663,1,0,0,0,1663,1665,1,0,0,0,1664,1666,3,264,132, + 0,1665,1664,1,0,0,0,1665,1666,1,0,0,0,1666,1668,1,0,0,0,1667,1669, + 3,270,135,0,1668,1667,1,0,0,0,1668,1669,1,0,0,0,1669,1671,1,0,0, + 0,1670,1672,3,272,136,0,1671,1670,1,0,0,0,1671,1672,1,0,0,0,1672, + 1674,1,0,0,0,1673,1675,3,266,133,0,1674,1673,1,0,0,0,1674,1675,1, + 0,0,0,1675,1676,1,0,0,0,1676,1677,3,274,137,0,1677,1682,5,518,0, + 0,1678,1680,5,17,0,0,1679,1678,1,0,0,0,1679,1680,1,0,0,0,1680,1681, + 1,0,0,0,1681,1683,3,334,167,0,1682,1679,1,0,0,0,1682,1683,1,0,0, + 0,1683,253,1,0,0,0,1684,1685,5,259,0,0,1685,1686,5,34,0,0,1686,1691, + 3,256,128,0,1687,1688,5,521,0,0,1688,1690,3,256,128,0,1689,1687, + 1,0,0,0,1690,1693,1,0,0,0,1691,1689,1,0,0,0,1691,1692,1,0,0,0,1692, + 255,1,0,0,0,1693,1691,1,0,0,0,1694,1696,3,54,27,0,1695,1697,7,25, + 0,0,1696,1695,1,0,0,0,1696,1697,1,0,0,0,1697,1700,1,0,0,0,1698,1699, + 5,477,0,0,1699,1701,7,26,0,0,1700,1698,1,0,0,0,1700,1701,1,0,0,0, + 1701,257,1,0,0,0,1702,1705,5,205,0,0,1703,1706,5,5,0,0,1704,1706, + 3,282,141,0,1705,1703,1,0,0,0,1705,1704,1,0,0,0,1706,259,1,0,0,0, + 1707,1708,5,269,0,0,1708,1711,5,34,0,0,1709,1712,3,54,27,0,1710, + 1712,3,294,147,0,1711,1709,1,0,0,0,1711,1710,1,0,0,0,1712,1720,1, + 0,0,0,1713,1716,5,521,0,0,1714,1717,3,54,27,0,1715,1717,3,294,147, + 0,1716,1714,1,0,0,0,1716,1715,1,0,0,0,1717,1719,1,0,0,0,1718,1713, + 1,0,0,0,1719,1722,1,0,0,0,1720,1718,1,0,0,0,1720,1721,1,0,0,0,1721, + 261,1,0,0,0,1722,1720,1,0,0,0,1723,1740,5,528,0,0,1724,1740,5,531, + 0,0,1725,1740,5,536,0,0,1726,1727,5,519,0,0,1727,1728,5,539,0,0, + 1728,1729,5,521,0,0,1729,1730,5,539,0,0,1730,1740,5,520,0,0,1731, + 1732,5,519,0,0,1732,1733,5,539,0,0,1733,1734,5,521,0,0,1734,1740, + 5,520,0,0,1735,1736,5,519,0,0,1736,1737,5,521,0,0,1737,1738,5,539, + 0,0,1738,1740,5,520,0,0,1739,1723,1,0,0,0,1739,1724,1,0,0,0,1739, + 1725,1,0,0,0,1739,1726,1,0,0,0,1739,1731,1,0,0,0,1739,1735,1,0,0, + 0,1740,263,1,0,0,0,1741,1742,5,216,0,0,1742,1747,3,190,95,0,1743, + 1744,5,521,0,0,1744,1746,3,190,95,0,1745,1743,1,0,0,0,1746,1749, + 1,0,0,0,1747,1745,1,0,0,0,1747,1748,1,0,0,0,1748,265,1,0,0,0,1749, + 1747,1,0,0,0,1750,1751,5,272,0,0,1751,1753,5,517,0,0,1752,1754,3, + 268,134,0,1753,1752,1,0,0,0,1754,1755,1,0,0,0,1755,1753,1,0,0,0, + 1755,1756,1,0,0,0,1756,1757,1,0,0,0,1757,1759,5,518,0,0,1758,1760, + 3,280,140,0,1759,1758,1,0,0,0,1759,1760,1,0,0,0,1760,267,1,0,0,0, + 1761,1763,3,336,168,0,1762,1764,3,262,131,0,1763,1762,1,0,0,0,1763, + 1764,1,0,0,0,1764,269,1,0,0,0,1765,1766,5,5,0,0,1766,1767,5,323, + 0,0,1767,1768,5,273,0,0,1768,1774,5,211,0,0,1769,1770,5,255,0,0, + 1770,1771,5,322,0,0,1771,1772,5,273,0,0,1772,1774,5,211,0,0,1773, + 1765,1,0,0,0,1773,1769,1,0,0,0,1774,271,1,0,0,0,1775,1776,5,439, + 0,0,1776,1777,5,211,0,0,1777,1778,5,344,0,0,1778,1779,5,479,0,0, + 1779,1780,5,468,0,0,1780,1800,5,322,0,0,1781,1782,5,439,0,0,1782, + 1783,5,211,0,0,1783,1784,5,344,0,0,1784,1785,5,389,0,0,1785,1786, + 5,238,0,0,1786,1800,5,322,0,0,1787,1788,5,439,0,0,1788,1789,5,211, + 0,0,1789,1790,5,344,0,0,1790,1791,5,389,0,0,1791,1792,5,468,0,0, + 1792,1800,3,336,168,0,1793,1794,5,439,0,0,1794,1795,5,211,0,0,1795, + 1796,5,344,0,0,1796,1797,5,389,0,0,1797,1798,5,458,0,0,1798,1800, + 3,336,168,0,1799,1775,1,0,0,0,1799,1781,1,0,0,0,1799,1787,1,0,0, + 0,1799,1793,1,0,0,0,1800,273,1,0,0,0,1801,1802,5,105,0,0,1802,1807, + 3,190,95,0,1803,1804,5,521,0,0,1804,1806,3,190,95,0,1805,1803,1, + 0,0,0,1806,1809,1,0,0,0,1807,1805,1,0,0,0,1807,1808,1,0,0,0,1808, + 275,1,0,0,0,1809,1807,1,0,0,0,1810,1811,5,293,0,0,1811,1812,5,27, + 0,0,1812,1813,3,312,156,0,1813,1814,3,278,139,0,1814,1820,1,0,0, + 0,1815,1816,5,323,0,0,1816,1817,5,27,0,0,1817,1818,5,539,0,0,1818, + 1820,3,278,139,0,1819,1810,1,0,0,0,1819,1815,1,0,0,0,1820,277,1, + 0,0,0,1821,1822,5,481,0,0,1822,1823,5,10,0,0,1823,1824,5,76,0,0, + 1824,1825,5,322,0,0,1825,279,1,0,0,0,1826,1827,5,435,0,0,1827,1828, + 3,312,156,0,1828,281,1,0,0,0,1829,1830,3,284,142,0,1830,283,1,0, + 0,0,1831,1832,6,142,-1,0,1832,1833,5,242,0,0,1833,1844,3,284,142, + 6,1834,1835,5,133,0,0,1835,1836,5,517,0,0,1836,1837,3,164,82,0,1837, + 1838,5,518,0,0,1838,1844,1,0,0,0,1839,1841,3,290,145,0,1840,1842, + 3,286,143,0,1841,1840,1,0,0,0,1841,1842,1,0,0,0,1842,1844,1,0,0, + 0,1843,1831,1,0,0,0,1843,1834,1,0,0,0,1843,1839,1,0,0,0,1844,1859, + 1,0,0,0,1845,1846,10,3,0,0,1846,1847,5,10,0,0,1847,1858,3,284,142, + 4,1848,1849,10,2,0,0,1849,1850,5,258,0,0,1850,1858,3,284,142,3,1851, + 1852,10,1,0,0,1852,1854,5,184,0,0,1853,1855,5,242,0,0,1854,1853, + 1,0,0,0,1854,1855,1,0,0,0,1855,1856,1,0,0,0,1856,1858,7,27,0,0,1857, + 1845,1,0,0,0,1857,1848,1,0,0,0,1857,1851,1,0,0,0,1858,1861,1,0,0, + 0,1859,1857,1,0,0,0,1859,1860,1,0,0,0,1860,285,1,0,0,0,1861,1859, + 1,0,0,0,1862,1864,5,242,0,0,1863,1862,1,0,0,0,1863,1864,1,0,0,0, + 1864,1865,1,0,0,0,1865,1867,5,27,0,0,1866,1868,7,28,0,0,1867,1866, + 1,0,0,0,1867,1868,1,0,0,0,1868,1869,1,0,0,0,1869,1870,3,290,145, + 0,1870,1871,5,10,0,0,1871,1872,3,290,145,0,1872,1937,1,0,0,0,1873, + 1875,5,242,0,0,1874,1873,1,0,0,0,1874,1875,1,0,0,0,1875,1876,1,0, + 0,0,1876,1877,5,170,0,0,1877,1878,5,517,0,0,1878,1883,3,282,141, + 0,1879,1880,5,521,0,0,1880,1882,3,282,141,0,1881,1879,1,0,0,0,1882, + 1885,1,0,0,0,1883,1881,1,0,0,0,1883,1884,1,0,0,0,1884,1886,1,0,0, + 0,1885,1883,1,0,0,0,1886,1887,5,518,0,0,1887,1937,1,0,0,0,1888,1890, + 5,242,0,0,1889,1888,1,0,0,0,1889,1890,1,0,0,0,1890,1891,1,0,0,0, + 1891,1892,5,170,0,0,1892,1893,5,517,0,0,1893,1894,3,164,82,0,1894, + 1895,5,518,0,0,1895,1937,1,0,0,0,1896,1897,5,133,0,0,1897,1898,5, + 517,0,0,1898,1899,3,164,82,0,1899,1900,5,518,0,0,1900,1937,1,0,0, + 0,1901,1903,5,242,0,0,1902,1901,1,0,0,0,1902,1903,1,0,0,0,1903,1904, + 1,0,0,0,1904,1905,5,319,0,0,1905,1937,3,290,145,0,1906,1937,3,288, + 144,0,1907,1909,5,184,0,0,1908,1910,5,242,0,0,1909,1908,1,0,0,0, + 1909,1910,1,0,0,0,1910,1911,1,0,0,0,1911,1937,7,27,0,0,1912,1914, + 5,184,0,0,1913,1915,5,242,0,0,1914,1913,1,0,0,0,1914,1915,1,0,0, + 0,1915,1916,1,0,0,0,1916,1917,5,113,0,0,1917,1918,5,151,0,0,1918, + 1937,3,290,145,0,1919,1921,5,242,0,0,1920,1919,1,0,0,0,1920,1921, + 1,0,0,0,1921,1922,1,0,0,0,1922,1923,5,343,0,0,1923,1924,5,389,0, + 0,1924,1927,3,290,145,0,1925,1926,5,127,0,0,1926,1928,3,390,195, + 0,1927,1925,1,0,0,0,1927,1928,1,0,0,0,1928,1937,1,0,0,0,1929,1930, + 5,184,0,0,1930,1934,5,186,0,0,1931,1935,5,414,0,0,1932,1935,5,13, + 0,0,1933,1935,3,334,167,0,1934,1931,1,0,0,0,1934,1932,1,0,0,0,1934, + 1933,1,0,0,0,1934,1935,1,0,0,0,1935,1937,1,0,0,0,1936,1863,1,0,0, + 0,1936,1874,1,0,0,0,1936,1889,1,0,0,0,1936,1896,1,0,0,0,1936,1902, + 1,0,0,0,1936,1906,1,0,0,0,1936,1907,1,0,0,0,1936,1912,1,0,0,0,1936, + 1920,1,0,0,0,1936,1929,1,0,0,0,1937,287,1,0,0,0,1938,1940,5,242, + 0,0,1939,1938,1,0,0,0,1939,1940,1,0,0,0,1940,1941,1,0,0,0,1941,1942, + 5,203,0,0,1942,1956,7,29,0,0,1943,1944,5,517,0,0,1944,1957,5,518, + 0,0,1945,1946,5,517,0,0,1946,1951,3,282,141,0,1947,1948,5,521,0, + 0,1948,1950,3,282,141,0,1949,1947,1,0,0,0,1950,1953,1,0,0,0,1951, + 1949,1,0,0,0,1951,1952,1,0,0,0,1952,1954,1,0,0,0,1953,1951,1,0,0, + 0,1954,1955,5,518,0,0,1955,1957,1,0,0,0,1956,1943,1,0,0,0,1956,1945, + 1,0,0,0,1957,1968,1,0,0,0,1958,1960,5,242,0,0,1959,1958,1,0,0,0, + 1959,1960,1,0,0,0,1960,1961,1,0,0,0,1961,1962,5,203,0,0,1962,1965, + 3,290,145,0,1963,1964,5,127,0,0,1964,1966,3,390,195,0,1965,1963, + 1,0,0,0,1965,1966,1,0,0,0,1966,1968,1,0,0,0,1967,1939,1,0,0,0,1967, + 1959,1,0,0,0,1968,289,1,0,0,0,1969,1970,6,145,-1,0,1970,1974,3,294, + 147,0,1971,1972,7,30,0,0,1972,1974,3,290,145,7,1973,1969,1,0,0,0, + 1973,1971,1,0,0,0,1974,1996,1,0,0,0,1975,1976,10,6,0,0,1976,1977, + 7,31,0,0,1977,1995,3,290,145,7,1978,1979,10,5,0,0,1979,1980,7,32, + 0,0,1980,1995,3,290,145,6,1981,1982,10,4,0,0,1982,1983,5,512,0,0, + 1983,1995,3,290,145,5,1984,1985,10,3,0,0,1985,1986,5,513,0,0,1986, + 1995,3,290,145,4,1987,1988,10,2,0,0,1988,1989,5,511,0,0,1989,1995, + 3,290,145,3,1990,1991,10,1,0,0,1991,1992,3,378,189,0,1992,1993,3, + 290,145,2,1993,1995,1,0,0,0,1994,1975,1,0,0,0,1994,1978,1,0,0,0, + 1994,1981,1,0,0,0,1994,1984,1,0,0,0,1994,1987,1,0,0,0,1994,1990, + 1,0,0,0,1995,1998,1,0,0,0,1996,1994,1,0,0,0,1996,1997,1,0,0,0,1997, + 291,1,0,0,0,1998,1996,1,0,0,0,1999,2019,3,404,202,0,2000,2019,3, + 300,150,0,2001,2002,3,302,151,0,2002,2014,5,517,0,0,2003,2005,3, + 396,198,0,2004,2003,1,0,0,0,2004,2005,1,0,0,0,2005,2006,1,0,0,0, + 2006,2011,3,304,152,0,2007,2008,5,521,0,0,2008,2010,3,304,152,0, + 2009,2007,1,0,0,0,2010,2013,1,0,0,0,2011,2009,1,0,0,0,2011,2012, + 1,0,0,0,2012,2015,1,0,0,0,2013,2011,1,0,0,0,2014,2004,1,0,0,0,2014, + 2015,1,0,0,0,2015,2016,1,0,0,0,2016,2017,5,518,0,0,2017,2019,1,0, + 0,0,2018,1999,1,0,0,0,2018,2000,1,0,0,0,2018,2001,1,0,0,0,2019,293, + 1,0,0,0,2020,2021,6,147,-1,0,2021,2023,5,40,0,0,2022,2024,3,340, + 170,0,2023,2022,1,0,0,0,2024,2025,1,0,0,0,2025,2023,1,0,0,0,2025, + 2026,1,0,0,0,2026,2029,1,0,0,0,2027,2028,5,120,0,0,2028,2030,3,282, + 141,0,2029,2027,1,0,0,0,2029,2030,1,0,0,0,2030,2031,1,0,0,0,2031, + 2032,5,122,0,0,2032,2096,1,0,0,0,2033,2034,5,40,0,0,2034,2036,3, + 282,141,0,2035,2037,3,340,170,0,2036,2035,1,0,0,0,2037,2038,1,0, + 0,0,2038,2036,1,0,0,0,2038,2039,1,0,0,0,2039,2042,1,0,0,0,2040,2041, + 5,120,0,0,2041,2043,3,282,141,0,2042,2040,1,0,0,0,2042,2043,1,0, + 0,0,2043,2044,1,0,0,0,2044,2045,5,122,0,0,2045,2096,1,0,0,0,2046, + 2047,5,41,0,0,2047,2048,5,517,0,0,2048,2049,3,282,141,0,2049,2050, + 5,17,0,0,2050,2051,3,62,31,0,2051,2052,5,518,0,0,2052,2096,1,0,0, + 0,2053,2054,5,458,0,0,2054,2055,5,517,0,0,2055,2058,3,282,141,0, + 2056,2057,5,462,0,0,2057,2059,5,477,0,0,2058,2056,1,0,0,0,2058,2059, + 1,0,0,0,2059,2060,1,0,0,0,2060,2061,5,518,0,0,2061,2096,1,0,0,0, + 2062,2063,5,468,0,0,2063,2064,5,517,0,0,2064,2067,3,282,141,0,2065, + 2066,5,462,0,0,2066,2068,5,477,0,0,2067,2065,1,0,0,0,2067,2068,1, + 0,0,0,2068,2069,1,0,0,0,2069,2070,5,518,0,0,2070,2096,1,0,0,0,2071, + 2072,5,282,0,0,2072,2073,5,517,0,0,2073,2074,3,290,145,0,2074,2075, + 5,170,0,0,2075,2076,3,290,145,0,2076,2077,5,518,0,0,2077,2096,1, + 0,0,0,2078,2096,3,386,193,0,2079,2096,5,528,0,0,2080,2081,3,358, + 179,0,2081,2082,5,514,0,0,2082,2083,5,528,0,0,2083,2096,1,0,0,0, + 2084,2085,5,517,0,0,2085,2086,3,164,82,0,2086,2087,5,518,0,0,2087, + 2096,1,0,0,0,2088,2096,3,292,146,0,2089,2096,3,56,28,0,2090,2096, + 3,306,153,0,2091,2092,5,517,0,0,2092,2093,3,282,141,0,2093,2094, + 5,518,0,0,2094,2096,1,0,0,0,2095,2020,1,0,0,0,2095,2033,1,0,0,0, + 2095,2046,1,0,0,0,2095,2053,1,0,0,0,2095,2062,1,0,0,0,2095,2071, + 1,0,0,0,2095,2078,1,0,0,0,2095,2079,1,0,0,0,2095,2080,1,0,0,0,2095, + 2084,1,0,0,0,2095,2088,1,0,0,0,2095,2089,1,0,0,0,2095,2090,1,0,0, + 0,2095,2091,1,0,0,0,2096,2104,1,0,0,0,2097,2098,10,4,0,0,2098,2099, + 5,515,0,0,2099,2100,3,290,145,0,2100,2101,5,516,0,0,2101,2103,1, + 0,0,0,2102,2097,1,0,0,0,2103,2106,1,0,0,0,2104,2102,1,0,0,0,2104, + 2105,1,0,0,0,2105,295,1,0,0,0,2106,2104,1,0,0,0,2107,2108,3,358, + 179,0,2108,297,1,0,0,0,2109,2114,3,408,204,0,2110,2114,3,404,202, + 0,2111,2114,3,406,203,0,2112,2114,3,358,179,0,2113,2109,1,0,0,0, + 2113,2110,1,0,0,0,2113,2111,1,0,0,0,2113,2112,1,0,0,0,2114,299,1, + 0,0,0,2115,2116,3,406,203,0,2116,2117,5,538,0,0,2117,2120,1,0,0, + 0,2118,2120,3,312,156,0,2119,2115,1,0,0,0,2119,2118,1,0,0,0,2120, + 301,1,0,0,0,2121,2124,3,408,204,0,2122,2124,3,358,179,0,2123,2121, + 1,0,0,0,2123,2122,1,0,0,0,2124,303,1,0,0,0,2125,2130,3,402,201,0, + 2126,2130,3,400,200,0,2127,2130,3,398,199,0,2128,2130,3,282,141, + 0,2129,2125,1,0,0,0,2129,2126,1,0,0,0,2129,2127,1,0,0,0,2129,2128, + 1,0,0,0,2130,305,1,0,0,0,2131,2132,3,358,179,0,2132,307,1,0,0,0, + 2133,2134,3,334,167,0,2134,309,1,0,0,0,2135,2138,3,334,167,0,2136, + 2138,3,306,153,0,2137,2135,1,0,0,0,2137,2136,1,0,0,0,2138,311,1, + 0,0,0,2139,2142,5,182,0,0,2140,2143,3,314,157,0,2141,2143,3,318, + 159,0,2142,2140,1,0,0,0,2142,2141,1,0,0,0,2142,2143,1,0,0,0,2143, + 313,1,0,0,0,2144,2146,3,316,158,0,2145,2147,3,320,160,0,2146,2145, + 1,0,0,0,2146,2147,1,0,0,0,2147,315,1,0,0,0,2148,2149,3,322,161,0, + 2149,2150,3,400,200,0,2150,2152,1,0,0,0,2151,2148,1,0,0,0,2152,2153, + 1,0,0,0,2153,2151,1,0,0,0,2153,2154,1,0,0,0,2154,317,1,0,0,0,2155, + 2158,3,320,160,0,2156,2159,3,316,158,0,2157,2159,3,320,160,0,2158, + 2156,1,0,0,0,2158,2157,1,0,0,0,2158,2159,1,0,0,0,2159,319,1,0,0, + 0,2160,2161,3,322,161,0,2161,2162,3,400,200,0,2162,2163,5,389,0, + 0,2163,2164,3,400,200,0,2164,321,1,0,0,0,2165,2167,7,33,0,0,2166, + 2165,1,0,0,0,2166,2167,1,0,0,0,2167,2168,1,0,0,0,2168,2171,7,34, + 0,0,2169,2171,5,538,0,0,2170,2166,1,0,0,0,2170,2169,1,0,0,0,2171, + 323,1,0,0,0,2172,2174,5,17,0,0,2173,2172,1,0,0,0,2173,2174,1,0,0, + 0,2174,2175,1,0,0,0,2175,2177,3,334,167,0,2176,2178,3,330,165,0, + 2177,2176,1,0,0,0,2177,2178,1,0,0,0,2178,325,1,0,0,0,2179,2180,3, + 334,167,0,2180,2181,3,328,164,0,2181,327,1,0,0,0,2182,2183,5,222, + 0,0,2183,2185,3,334,167,0,2184,2182,1,0,0,0,2185,2186,1,0,0,0,2186, + 2184,1,0,0,0,2186,2187,1,0,0,0,2187,2190,1,0,0,0,2188,2190,1,0,0, + 0,2189,2184,1,0,0,0,2189,2188,1,0,0,0,2190,329,1,0,0,0,2191,2192, + 5,517,0,0,2192,2193,3,332,166,0,2193,2194,5,518,0,0,2194,331,1,0, + 0,0,2195,2200,3,334,167,0,2196,2197,5,521,0,0,2197,2199,3,334,167, + 0,2198,2196,1,0,0,0,2199,2202,1,0,0,0,2200,2198,1,0,0,0,2200,2201, + 1,0,0,0,2201,333,1,0,0,0,2202,2200,1,0,0,0,2203,2207,3,336,168,0, + 2204,2207,3,338,169,0,2205,2207,3,410,205,0,2206,2203,1,0,0,0,2206, + 2204,1,0,0,0,2206,2205,1,0,0,0,2207,335,1,0,0,0,2208,2209,7,35,0, + 0,2209,337,1,0,0,0,2210,2211,5,538,0,0,2211,339,1,0,0,0,2212,2213, + 5,429,0,0,2213,2214,3,282,141,0,2214,2215,5,377,0,0,2215,2216,3, + 282,141,0,2216,341,1,0,0,0,2217,2218,3,334,167,0,2218,343,1,0,0, + 0,2219,2220,3,334,167,0,2220,345,1,0,0,0,2221,2224,3,334,167,0,2222, + 2223,5,514,0,0,2223,2225,3,334,167,0,2224,2222,1,0,0,0,2224,2225, + 1,0,0,0,2225,347,1,0,0,0,2226,2229,3,334,167,0,2227,2228,5,514,0, + 0,2228,2230,3,334,167,0,2229,2227,1,0,0,0,2229,2230,1,0,0,0,2230, + 349,1,0,0,0,2231,2234,3,334,167,0,2232,2233,5,514,0,0,2233,2235, + 3,334,167,0,2234,2232,1,0,0,0,2234,2235,1,0,0,0,2235,2244,1,0,0, + 0,2236,2237,3,334,167,0,2237,2238,5,514,0,0,2238,2241,3,334,167, + 0,2239,2240,5,514,0,0,2240,2242,3,334,167,0,2241,2239,1,0,0,0,2241, + 2242,1,0,0,0,2242,2244,1,0,0,0,2243,2231,1,0,0,0,2243,2236,1,0,0, + 0,2244,351,1,0,0,0,2245,2248,3,334,167,0,2246,2247,5,514,0,0,2247, + 2249,3,334,167,0,2248,2246,1,0,0,0,2248,2249,1,0,0,0,2249,2258,1, + 0,0,0,2250,2251,3,334,167,0,2251,2252,5,514,0,0,2252,2255,3,334, + 167,0,2253,2254,5,514,0,0,2254,2256,3,334,167,0,2255,2253,1,0,0, + 0,2255,2256,1,0,0,0,2256,2258,1,0,0,0,2257,2245,1,0,0,0,2257,2250, + 1,0,0,0,2258,353,1,0,0,0,2259,2262,3,334,167,0,2260,2261,5,514,0, + 0,2261,2263,3,334,167,0,2262,2260,1,0,0,0,2262,2263,1,0,0,0,2263, + 2272,1,0,0,0,2264,2265,3,334,167,0,2265,2266,5,514,0,0,2266,2269, + 3,334,167,0,2267,2268,5,514,0,0,2268,2270,3,334,167,0,2269,2267, + 1,0,0,0,2269,2270,1,0,0,0,2270,2272,1,0,0,0,2271,2259,1,0,0,0,2271, + 2264,1,0,0,0,2272,355,1,0,0,0,2273,2276,3,334,167,0,2274,2275,5, + 514,0,0,2275,2277,3,334,167,0,2276,2274,1,0,0,0,2276,2277,1,0,0, + 0,2277,2286,1,0,0,0,2278,2279,3,334,167,0,2279,2280,5,514,0,0,2280, + 2283,3,334,167,0,2281,2282,5,514,0,0,2282,2284,3,334,167,0,2283, + 2281,1,0,0,0,2283,2284,1,0,0,0,2284,2286,1,0,0,0,2285,2273,1,0,0, + 0,2285,2278,1,0,0,0,2286,357,1,0,0,0,2287,2292,3,334,167,0,2288, + 2289,5,514,0,0,2289,2291,3,334,167,0,2290,2288,1,0,0,0,2291,2294, + 1,0,0,0,2292,2290,1,0,0,0,2292,2293,1,0,0,0,2293,359,1,0,0,0,2294, + 2292,1,0,0,0,2295,2300,3,334,167,0,2296,2297,5,514,0,0,2297,2299, + 3,334,167,0,2298,2296,1,0,0,0,2299,2302,1,0,0,0,2300,2298,1,0,0, + 0,2300,2301,1,0,0,0,2301,2309,1,0,0,0,2302,2300,1,0,0,0,2303,2304, + 4,180,16,0,2304,2305,3,334,167,0,2305,2306,5,514,0,0,2306,2307,3, + 52,26,0,2307,2309,1,0,0,0,2308,2295,1,0,0,0,2308,2303,1,0,0,0,2309, + 361,1,0,0,0,2310,2311,5,434,0,0,2311,2312,3,368,184,0,2312,363,1, + 0,0,0,2313,2314,5,167,0,0,2314,2315,5,242,0,0,2315,2316,5,133,0, + 0,2316,365,1,0,0,0,2317,2318,5,167,0,0,2318,2319,5,133,0,0,2319, + 367,1,0,0,0,2320,2321,5,517,0,0,2321,2326,3,370,185,0,2322,2323, + 5,521,0,0,2323,2325,3,370,185,0,2324,2322,1,0,0,0,2325,2328,1,0, + 0,0,2326,2324,1,0,0,0,2326,2327,1,0,0,0,2327,2329,1,0,0,0,2328,2326, + 1,0,0,0,2329,2330,5,518,0,0,2330,369,1,0,0,0,2331,2336,3,372,186, + 0,2332,2334,5,506,0,0,2333,2332,1,0,0,0,2333,2334,1,0,0,0,2334,2335, + 1,0,0,0,2335,2337,3,374,187,0,2336,2333,1,0,0,0,2336,2337,1,0,0, + 0,2337,371,1,0,0,0,2338,2342,3,334,167,0,2339,2342,3,306,153,0,2340, + 2342,5,538,0,0,2341,2338,1,0,0,0,2341,2339,1,0,0,0,2341,2340,1,0, + 0,0,2342,373,1,0,0,0,2343,2348,5,539,0,0,2344,2348,5,540,0,0,2345, + 2348,3,394,197,0,2346,2348,5,538,0,0,2347,2343,1,0,0,0,2347,2344, + 1,0,0,0,2347,2345,1,0,0,0,2347,2346,1,0,0,0,2348,375,1,0,0,0,2349, + 2356,5,10,0,0,2350,2351,5,512,0,0,2351,2356,5,512,0,0,2352,2356, + 5,258,0,0,2353,2354,5,511,0,0,2354,2356,5,511,0,0,2355,2349,1,0, + 0,0,2355,2350,1,0,0,0,2355,2352,1,0,0,0,2355,2353,1,0,0,0,2356,377, + 1,0,0,0,2357,2372,5,506,0,0,2358,2372,5,507,0,0,2359,2372,5,508, + 0,0,2360,2361,5,508,0,0,2361,2372,5,506,0,0,2362,2363,5,507,0,0, + 2363,2372,5,506,0,0,2364,2365,5,508,0,0,2365,2372,5,507,0,0,2366, + 2367,5,509,0,0,2367,2372,5,506,0,0,2368,2369,5,508,0,0,2369,2370, + 5,506,0,0,2370,2372,5,507,0,0,2371,2357,1,0,0,0,2371,2358,1,0,0, + 0,2371,2359,1,0,0,0,2371,2360,1,0,0,0,2371,2362,1,0,0,0,2371,2364, + 1,0,0,0,2371,2366,1,0,0,0,2371,2368,1,0,0,0,2372,379,1,0,0,0,2373, + 2374,5,508,0,0,2374,2381,5,508,0,0,2375,2376,5,507,0,0,2376,2381, + 5,507,0,0,2377,2381,5,512,0,0,2378,2381,5,513,0,0,2379,2381,5,511, + 0,0,2380,2373,1,0,0,0,2380,2375,1,0,0,0,2380,2377,1,0,0,0,2380,2378, + 1,0,0,0,2380,2379,1,0,0,0,2381,381,1,0,0,0,2382,2383,7,36,0,0,2383, + 383,1,0,0,0,2384,2385,7,37,0,0,2385,385,1,0,0,0,2386,2401,3,312, + 156,0,2387,2401,3,388,194,0,2388,2401,3,390,195,0,2389,2391,5,530, + 0,0,2390,2389,1,0,0,0,2390,2391,1,0,0,0,2391,2392,1,0,0,0,2392,2401, + 3,392,196,0,2393,2401,3,394,197,0,2394,2401,5,540,0,0,2395,2401, + 5,541,0,0,2396,2398,5,242,0,0,2397,2396,1,0,0,0,2397,2398,1,0,0, + 0,2398,2399,1,0,0,0,2399,2401,5,245,0,0,2400,2386,1,0,0,0,2400,2387, + 1,0,0,0,2400,2388,1,0,0,0,2400,2390,1,0,0,0,2400,2393,1,0,0,0,2400, + 2394,1,0,0,0,2400,2395,1,0,0,0,2400,2397,1,0,0,0,2401,387,1,0,0, + 0,2402,2403,3,398,199,0,2403,2404,3,390,195,0,2404,389,1,0,0,0,2405, + 2406,5,538,0,0,2406,391,1,0,0,0,2407,2408,5,539,0,0,2408,393,1,0, + 0,0,2409,2410,7,38,0,0,2410,395,1,0,0,0,2411,2412,7,39,0,0,2412, + 397,1,0,0,0,2413,2414,7,40,0,0,2414,399,1,0,0,0,2415,2416,7,41,0, + 0,2416,401,1,0,0,0,2417,2418,7,42,0,0,2418,403,1,0,0,0,2419,2420, + 7,43,0,0,2420,405,1,0,0,0,2421,2422,7,44,0,0,2422,407,1,0,0,0,2423, + 2424,7,45,0,0,2424,409,1,0,0,0,2425,2426,7,46,0,0,2426,411,1,0,0, 0,289,415,422,425,439,457,461,470,475,482,493,502,514,517,524,527, 535,539,544,547,554,562,566,578,586,590,622,625,630,634,638,642, 651,656,660,664,669,672,676,681,687,692,697,701,705,712,719,727, @@ -13605,18 +13626,18 @@ export class FlinkSqlParser extends SQLParserBase { 1075,1082,1087,1093,1097,1104,1108,1112,1116,1124,1128,1133,1139, 1145,1148,1152,1163,1172,1179,1190,1202,1217,1220,1224,1227,1229, 1234,1238,1241,1245,1254,1263,1273,1278,1289,1292,1295,1298,1301, - 1307,1311,1320,1327,1330,1334,1339,1342,1344,1353,1360,1363,1367, - 1370,1372,1379,1384,1400,1411,1416,1424,1427,1430,1435,1437,1439, - 1444,1447,1451,1455,1459,1468,1479,1506,1528,1542,1544,1548,1553, - 1562,1575,1587,1599,1605,1632,1640,1644,1647,1650,1657,1660,1663, - 1666,1669,1672,1677,1680,1689,1694,1698,1703,1709,1714,1718,1737, - 1745,1753,1757,1761,1771,1797,1805,1817,1839,1841,1852,1855,1857, - 1861,1865,1872,1881,1887,1900,1907,1912,1918,1925,1932,1934,1937, - 1949,1954,1957,1963,1965,1971,1992,1994,2002,2009,2012,2016,2023, - 2027,2036,2040,2056,2065,2093,2102,2111,2117,2121,2127,2135,2140, - 2144,2151,2156,2164,2168,2171,2175,2184,2187,2198,2204,2222,2227, - 2232,2239,2241,2246,2253,2255,2260,2267,2269,2274,2281,2283,2290, - 2298,2306,2324,2331,2334,2339,2345,2353,2369,2378,2388,2395,2398 + 1307,1311,1320,1327,1330,1334,1339,1342,1346,1355,1362,1365,1369, + 1372,1374,1381,1386,1402,1413,1418,1426,1429,1432,1437,1439,1441, + 1446,1449,1453,1457,1461,1470,1481,1508,1530,1544,1546,1550,1555, + 1564,1577,1589,1601,1607,1634,1642,1646,1649,1652,1659,1662,1665, + 1668,1671,1674,1679,1682,1691,1696,1700,1705,1711,1716,1720,1739, + 1747,1755,1759,1763,1773,1799,1807,1819,1841,1843,1854,1857,1859, + 1863,1867,1874,1883,1889,1902,1909,1914,1920,1927,1934,1936,1939, + 1951,1956,1959,1965,1967,1973,1994,1996,2004,2011,2014,2018,2025, + 2029,2038,2042,2058,2067,2095,2104,2113,2119,2123,2129,2137,2142, + 2146,2153,2158,2166,2170,2173,2177,2186,2189,2200,2206,2224,2229, + 2234,2241,2243,2248,2255,2257,2262,2269,2271,2276,2283,2285,2292, + 2300,2308,2326,2333,2336,2341,2347,2355,2371,2380,2390,2397,2400 ]; private static __ATN: antlr.ATN; @@ -17851,6 +17872,9 @@ export class ColumnProjectItemContext extends antlr.ParserRuleContext { public columnName(): ColumnNameContext | null { return this.getRuleContext(0, ColumnNameContext); } + public emptyColumn(): EmptyColumnContext | null { + return this.getRuleContext(0, EmptyColumnContext); + } public override get ruleIndex(): number { return FlinkSqlParser.RULE_columnProjectItem; } diff --git a/src/lib/hive/HiveSqlParser.interp b/src/lib/hive/HiveSqlParser.interp index ec8e32386..b75aa02eb 100644 --- a/src/lib/hive/HiveSqlParser.interp +++ b/src/lib/hive/HiveSqlParser.interp @@ -1240,4 +1240,4 @@ poolAssignList atn: -[4, 1, 438, 4872, 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, 1, 0, 5, 0, 714, 8, 0, 10, 0, 12, 0, 717, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 723, 8, 1, 1, 1, 3, 1, 726, 8, 1, 1, 2, 1, 2, 5, 2, 730, 8, 2, 10, 2, 12, 2, 733, 9, 2, 1, 2, 1, 2, 1, 2, 3, 2, 738, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 745, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 755, 8, 3, 1, 3, 3, 3, 758, 8, 3, 1, 3, 1, 3, 3, 3, 762, 8, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 777, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 784, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 790, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 795, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 800, 8, 5, 1, 5, 3, 5, 803, 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, 5, 5, 825, 8, 5, 10, 5, 12, 5, 828, 9, 5, 1, 5, 1, 5, 5, 5, 832, 8, 5, 10, 5, 12, 5, 835, 9, 5, 3, 5, 837, 8, 5, 1, 6, 1, 6, 1, 6, 3, 6, 842, 8, 6, 1, 6, 1, 6, 1, 6, 3, 6, 847, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 853, 8, 6, 1, 7, 1, 7, 3, 7, 857, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 870, 8, 8, 1, 9, 1, 9, 3, 9, 874, 8, 9, 1, 9, 1, 9, 3, 9, 878, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 883, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 890, 8, 10, 1, 10, 1, 10, 3, 10, 894, 8, 10, 1, 11, 1, 11, 1, 11, 3, 11, 899, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 906, 8, 12, 1, 12, 1, 12, 3, 12, 910, 8, 12, 1, 13, 1, 13, 1, 13, 3, 13, 915, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 4, 14, 961, 8, 14, 11, 14, 12, 14, 962, 1, 14, 1, 14, 1, 14, 4, 14, 968, 8, 14, 11, 14, 12, 14, 969, 1, 14, 1, 14, 1, 14, 3, 14, 975, 8, 14, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 3, 21, 998, 8, 21, 1, 21, 1, 21, 3, 21, 1002, 8, 21, 1, 21, 1, 21, 3, 21, 1006, 8, 21, 1, 21, 3, 21, 1009, 8, 21, 1, 21, 1, 21, 3, 21, 1013, 8, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1018, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1024, 8, 21, 1, 21, 1, 21, 3, 21, 1028, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1034, 8, 21, 3, 21, 1036, 8, 21, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 3, 24, 1047, 8, 24, 1, 24, 1, 24, 3, 24, 1051, 8, 24, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 3, 26, 1058, 8, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1066, 8, 26, 1, 26, 3, 26, 1069, 8, 26, 1, 27, 1, 27, 1, 27, 3, 27, 1074, 8, 27, 1, 27, 1, 27, 3, 27, 1078, 8, 27, 1, 27, 3, 27, 1081, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 3, 29, 1091, 8, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 1099, 8, 29, 5, 29, 1101, 8, 29, 10, 29, 12, 29, 1104, 9, 29, 3, 29, 1106, 8, 29, 1, 30, 1, 30, 3, 30, 1110, 8, 30, 1, 31, 1, 31, 3, 31, 1114, 8, 31, 1, 31, 3, 31, 1117, 8, 31, 1, 32, 1, 32, 1, 32, 3, 32, 1122, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1128, 8, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1133, 8, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1138, 8, 32, 1, 32, 1, 32, 3, 32, 1142, 8, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1153, 8, 33, 3, 33, 1155, 8, 33, 1, 33, 1, 33, 3, 33, 1159, 8, 33, 1, 34, 1, 34, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1169, 8, 36, 1, 36, 1, 36, 3, 36, 1173, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1179, 8, 36, 1, 36, 3, 36, 1182, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1189, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1194, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1202, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1207, 8, 36, 1, 36, 1, 36, 3, 36, 1211, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1219, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1224, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1230, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1236, 8, 36, 1, 36, 3, 36, 1239, 8, 36, 1, 36, 3, 36, 1242, 8, 36, 1, 36, 3, 36, 1245, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1254, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1262, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1267, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1275, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1282, 8, 36, 1, 36, 3, 36, 1285, 8, 36, 1, 36, 3, 36, 1288, 8, 36, 3, 36, 1290, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1301, 8, 36, 3, 36, 1303, 8, 36, 1, 36, 3, 36, 1306, 8, 36, 1, 36, 3, 36, 1309, 8, 36, 1, 36, 3, 36, 1312, 8, 36, 1, 36, 3, 36, 1315, 8, 36, 1, 36, 3, 36, 1318, 8, 36, 3, 36, 1320, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1332, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1338, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1346, 8, 36, 3, 36, 1348, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1358, 8, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 3, 45, 1391, 8, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1396, 8, 45, 1, 46, 1, 46, 3, 46, 1400, 8, 46, 1, 46, 1, 46, 3, 46, 1404, 8, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 3, 47, 1411, 8, 47, 1, 47, 1, 47, 1, 47, 5, 47, 1416, 8, 47, 10, 47, 12, 47, 1419, 9, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1424, 8, 47, 1, 48, 1, 48, 3, 48, 1428, 8, 48, 1, 48, 3, 48, 1431, 8, 48, 1, 48, 1, 48, 1, 48, 5, 48, 1436, 8, 48, 10, 48, 12, 48, 1439, 9, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1461, 8, 52, 1, 53, 1, 53, 1, 53, 3, 53, 1466, 8, 53, 1, 53, 1, 53, 3, 53, 1470, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 3, 55, 1478, 8, 55, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1487, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1494, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1500, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1507, 8, 58, 1, 58, 3, 58, 1510, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1516, 8, 58, 1, 59, 1, 59, 1, 59, 5, 59, 1521, 8, 59, 10, 59, 12, 59, 1524, 9, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1531, 8, 60, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 5, 62, 1538, 8, 62, 10, 62, 12, 62, 1541, 9, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 1549, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 1556, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 3, 69, 1576, 8, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 1583, 8, 69, 3, 69, 1585, 8, 69, 1, 70, 1, 70, 1, 70, 5, 70, 1590, 8, 70, 10, 70, 12, 70, 1593, 9, 70, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 73, 1, 73, 3, 73, 1602, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1610, 8, 73, 1, 74, 1, 74, 3, 74, 1614, 8, 74, 1, 74, 1, 74, 3, 74, 1618, 8, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 3, 76, 1631, 8, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 1640, 8, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1656, 8, 78, 1, 78, 1, 78, 3, 78, 1660, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1665, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1670, 8, 78, 1, 78, 3, 78, 1673, 8, 78, 1, 78, 3, 78, 1676, 8, 78, 1, 78, 3, 78, 1679, 8, 78, 1, 78, 3, 78, 1682, 8, 78, 1, 78, 3, 78, 1685, 8, 78, 1, 79, 1, 79, 1, 79, 3, 79, 1690, 8, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 3, 80, 1699, 8, 80, 1, 80, 1, 80, 3, 80, 1703, 8, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1710, 8, 80, 1, 80, 3, 80, 1713, 8, 80, 1, 80, 3, 80, 1716, 8, 80, 1, 80, 3, 80, 1719, 8, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 1731, 8, 81, 1, 81, 1, 81, 1, 82, 1, 82, 3, 82, 1737, 8, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 3, 87, 1763, 8, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 1771, 8, 88, 1, 88, 1, 88, 3, 88, 1775, 8, 88, 1, 88, 3, 88, 1778, 8, 88, 1, 88, 3, 88, 1781, 8, 88, 1, 88, 3, 88, 1784, 8, 88, 1, 88, 3, 88, 1787, 8, 88, 1, 88, 3, 88, 1790, 8, 88, 1, 88, 3, 88, 1793, 8, 88, 1, 88, 3, 88, 1796, 8, 88, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 3, 89, 1805, 8, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 1815, 8, 90, 1, 90, 3, 90, 1818, 8, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 3, 93, 1838, 8, 93, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 1844, 8, 94, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 1850, 8, 94, 1, 94, 3, 94, 1853, 8, 94, 3, 94, 1855, 8, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 3, 96, 1862, 8, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 3, 97, 1869, 8, 97, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 1882, 8, 100, 1, 100, 1, 100, 1, 100, 3, 100, 1887, 8, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 5, 101, 1894, 8, 101, 10, 101, 12, 101, 1897, 9, 101, 1, 102, 1, 102, 1, 102, 5, 102, 1902, 8, 102, 10, 102, 12, 102, 1905, 9, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 1912, 8, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 1925, 8, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 1938, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 1954, 8, 105, 1, 106, 1, 106, 3, 106, 1958, 8, 106, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 1973, 8, 109, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 1979, 8, 110, 1, 110, 3, 110, 1982, 8, 110, 1, 110, 3, 110, 1985, 8, 110, 1, 110, 3, 110, 1988, 8, 110, 1, 110, 3, 110, 1991, 8, 110, 1, 111, 1, 111, 3, 111, 1995, 8, 111, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 2008, 8, 114, 10, 114, 12, 114, 2011, 9, 114, 3, 114, 2013, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 5, 116, 2022, 8, 116, 10, 116, 12, 116, 2025, 9, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 2038, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2072, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2080, 8, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2085, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2093, 8, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2098, 8, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2103, 8, 123, 1, 124, 1, 124, 1, 124, 5, 124, 2108, 8, 124, 10, 124, 12, 124, 2111, 9, 124, 1, 125, 1, 125, 1, 125, 5, 125, 2116, 8, 125, 10, 125, 12, 125, 2119, 9, 125, 1, 126, 1, 126, 1, 126, 5, 126, 2124, 8, 126, 10, 126, 12, 126, 2127, 9, 126, 1, 127, 1, 127, 1, 127, 5, 127, 2132, 8, 127, 10, 127, 12, 127, 2135, 9, 127, 1, 128, 1, 128, 1, 128, 3, 128, 2140, 8, 128, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 3, 130, 2147, 8, 130, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 2157, 8, 132, 5, 132, 2159, 8, 132, 10, 132, 12, 132, 2162, 9, 132, 1, 133, 1, 133, 1, 133, 5, 133, 2167, 8, 133, 10, 133, 12, 133, 2170, 9, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 3, 135, 2178, 8, 135, 1, 135, 3, 135, 2181, 8, 135, 1, 136, 1, 136, 3, 136, 2185, 8, 136, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 3, 138, 2192, 8, 138, 1, 139, 1, 139, 1, 140, 1, 140, 3, 140, 2198, 8, 140, 1, 140, 1, 140, 3, 140, 2202, 8, 140, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 2208, 8, 141, 1, 142, 1, 142, 3, 142, 2212, 8, 142, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 3, 145, 2224, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 2233, 8, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 2244, 8, 146, 1, 147, 1, 147, 3, 147, 2248, 8, 147, 1, 148, 1, 148, 1, 148, 5, 148, 2253, 8, 148, 10, 148, 12, 148, 2256, 9, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 5, 150, 2265, 8, 150, 10, 150, 12, 150, 2268, 9, 150, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 3, 153, 2277, 8, 153, 1, 153, 3, 153, 2280, 8, 153, 1, 154, 1, 154, 1, 154, 5, 154, 2285, 8, 154, 10, 154, 12, 154, 2288, 9, 154, 1, 155, 1, 155, 1, 155, 3, 155, 2293, 8, 155, 1, 156, 1, 156, 3, 156, 2297, 8, 156, 1, 156, 3, 156, 2300, 8, 156, 1, 156, 3, 156, 2303, 8, 156, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 2309, 8, 157, 1, 158, 1, 158, 3, 158, 2313, 8, 158, 1, 159, 1, 159, 3, 159, 2317, 8, 159, 1, 160, 1, 160, 1, 160, 3, 160, 2322, 8, 160, 1, 160, 1, 160, 3, 160, 2326, 8, 160, 1, 161, 1, 161, 3, 161, 2330, 8, 161, 1, 162, 1, 162, 3, 162, 2334, 8, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 3, 162, 2342, 8, 162, 1, 163, 1, 163, 3, 163, 2346, 8, 163, 1, 163, 1, 163, 3, 163, 2350, 8, 163, 1, 164, 1, 164, 3, 164, 2354, 8, 164, 1, 165, 1, 165, 3, 165, 2358, 8, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 2366, 8, 165, 1, 166, 1, 166, 3, 166, 2370, 8, 166, 1, 166, 1, 166, 3, 166, 2374, 8, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 3, 167, 2382, 8, 167, 1, 168, 1, 168, 1, 168, 3, 168, 2387, 8, 168, 1, 169, 1, 169, 1, 169, 3, 169, 2392, 8, 169, 1, 170, 1, 170, 3, 170, 2396, 8, 170, 1, 171, 1, 171, 3, 171, 2400, 8, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 2407, 8, 172, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 5, 174, 2414, 8, 174, 10, 174, 12, 174, 2417, 9, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 2424, 8, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 2436, 8, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 2454, 8, 176, 1, 176, 3, 176, 2457, 8, 176, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 2463, 8, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 3, 181, 2489, 8, 181, 1, 182, 3, 182, 2492, 8, 182, 1, 182, 1, 182, 1, 183, 1, 183, 3, 183, 2498, 8, 183, 1, 184, 1, 184, 1, 184, 1, 184, 5, 184, 2504, 8, 184, 10, 184, 12, 184, 2507, 9, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 3, 185, 2514, 8, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 1, 186, 5, 186, 2525, 8, 186, 10, 186, 12, 186, 2528, 9, 186, 1, 187, 1, 187, 1, 187, 1, 187, 3, 187, 2534, 8, 187, 1, 187, 3, 187, 2537, 8, 187, 1, 187, 3, 187, 2540, 8, 187, 1, 187, 3, 187, 2543, 8, 187, 1, 187, 3, 187, 2546, 8, 187, 1, 187, 3, 187, 2549, 8, 187, 1, 187, 3, 187, 2552, 8, 187, 1, 187, 3, 187, 2555, 8, 187, 1, 187, 3, 187, 2558, 8, 187, 1, 187, 3, 187, 2561, 8, 187, 1, 187, 3, 187, 2564, 8, 187, 1, 187, 1, 187, 1, 187, 3, 187, 2569, 8, 187, 1, 187, 3, 187, 2572, 8, 187, 1, 187, 3, 187, 2575, 8, 187, 1, 187, 3, 187, 2578, 8, 187, 1, 187, 3, 187, 2581, 8, 187, 1, 187, 3, 187, 2584, 8, 187, 1, 187, 3, 187, 2587, 8, 187, 1, 187, 3, 187, 2590, 8, 187, 1, 187, 3, 187, 2593, 8, 187, 1, 187, 3, 187, 2596, 8, 187, 1, 187, 3, 187, 2599, 8, 187, 3, 187, 2601, 8, 187, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 2607, 8, 188, 1, 189, 1, 189, 3, 189, 2611, 8, 189, 1, 189, 3, 189, 2614, 8, 189, 1, 189, 3, 189, 2617, 8, 189, 1, 189, 3, 189, 2620, 8, 189, 1, 189, 3, 189, 2623, 8, 189, 1, 189, 3, 189, 2626, 8, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 3, 189, 2633, 8, 189, 1, 190, 1, 190, 3, 190, 2637, 8, 190, 1, 190, 3, 190, 2640, 8, 190, 1, 190, 3, 190, 2643, 8, 190, 1, 190, 3, 190, 2646, 8, 190, 1, 190, 3, 190, 2649, 8, 190, 1, 190, 3, 190, 2652, 8, 190, 1, 191, 1, 191, 1, 191, 4, 191, 2657, 8, 191, 11, 191, 12, 191, 2658, 1, 192, 3, 192, 2662, 8, 192, 1, 192, 1, 192, 1, 193, 1, 193, 1, 193, 1, 193, 3, 193, 2670, 8, 193, 1, 193, 1, 193, 3, 193, 2674, 8, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 3, 193, 2681, 8, 193, 3, 193, 2683, 8, 193, 1, 194, 3, 194, 2686, 8, 194, 1, 194, 1, 194, 1, 194, 3, 194, 2691, 8, 194, 1, 194, 3, 194, 2694, 8, 194, 1, 194, 1, 194, 3, 194, 2698, 8, 194, 1, 195, 1, 195, 1, 195, 3, 195, 2703, 8, 195, 1, 195, 1, 195, 1, 195, 1, 195, 3, 195, 2709, 8, 195, 1, 196, 1, 196, 1, 196, 1, 196, 1, 197, 1, 197, 3, 197, 2717, 8, 197, 1, 198, 1, 198, 1, 198, 1, 198, 5, 198, 2723, 8, 198, 10, 198, 12, 198, 2726, 9, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 5, 199, 2733, 8, 199, 10, 199, 12, 199, 2736, 9, 199, 3, 199, 2738, 8, 199, 1, 199, 1, 199, 3, 199, 2742, 8, 199, 1, 199, 1, 199, 3, 199, 2746, 8, 199, 1, 199, 1, 199, 1, 199, 3, 199, 2751, 8, 199, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 3, 200, 2758, 8, 200, 1, 201, 1, 201, 5, 201, 2762, 8, 201, 10, 201, 12, 201, 2765, 9, 201, 1, 201, 3, 201, 2768, 8, 201, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 3, 202, 2775, 8, 202, 1, 202, 1, 202, 1, 202, 3, 202, 2780, 8, 202, 1, 202, 1, 202, 1, 202, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 2793, 8, 203, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 3, 204, 2801, 8, 204, 1, 205, 1, 205, 1, 205, 1, 206, 1, 206, 1, 206, 1, 207, 1, 207, 1, 207, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2820, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2830, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2843, 8, 208, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2853, 8, 209, 1, 209, 1, 209, 3, 209, 2857, 8, 209, 4, 209, 2859, 8, 209, 11, 209, 12, 209, 2860, 1, 209, 1, 209, 5, 209, 2865, 8, 209, 10, 209, 12, 209, 2868, 9, 209, 1, 209, 1, 209, 5, 209, 2872, 8, 209, 10, 209, 12, 209, 2875, 9, 209, 1, 209, 1, 209, 5, 209, 2879, 8, 209, 10, 209, 12, 209, 2882, 9, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2890, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2897, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2917, 8, 209, 1, 209, 3, 209, 2920, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2934, 8, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 2949, 8, 210, 1, 210, 1, 210, 3, 210, 2953, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 5, 210, 2971, 8, 210, 10, 210, 12, 210, 2974, 9, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 2985, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 2991, 8, 210, 1, 210, 3, 210, 2994, 8, 210, 1, 210, 3, 210, 2997, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3003, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3009, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3016, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3024, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3030, 8, 210, 1, 210, 1, 210, 3, 210, 3034, 8, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3039, 8, 210, 1, 210, 3, 210, 3042, 8, 210, 1, 210, 1, 210, 3, 210, 3046, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3053, 8, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3058, 8, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3063, 8, 210, 1, 210, 3, 210, 3066, 8, 210, 3, 210, 3068, 8, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 3, 211, 3076, 8, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 3, 211, 3084, 8, 211, 1, 211, 1, 211, 3, 211, 3088, 8, 211, 4, 211, 3090, 8, 211, 11, 211, 12, 211, 3091, 1, 211, 1, 211, 3, 211, 3096, 8, 211, 1, 212, 1, 212, 1, 212, 1, 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, 3113, 8, 212, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 3130, 8, 213, 1, 214, 1, 214, 1, 214, 1, 215, 1, 215, 3, 215, 3137, 8, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 5, 215, 3144, 8, 215, 10, 215, 12, 215, 3147, 9, 215, 1, 215, 1, 215, 3, 215, 3151, 8, 215, 1, 215, 3, 215, 3154, 8, 215, 1, 215, 3, 215, 3157, 8, 215, 1, 216, 1, 216, 3, 216, 3161, 8, 216, 1, 216, 1, 216, 1, 216, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 3, 217, 3176, 8, 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, 3, 218, 3190, 8, 218, 1, 218, 3, 218, 3193, 8, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 3, 219, 3204, 8, 219, 1, 220, 1, 220, 3, 220, 3208, 8, 220, 1, 220, 3, 220, 3211, 8, 220, 1, 220, 3, 220, 3214, 8, 220, 1, 220, 1, 220, 3, 220, 3218, 8, 220, 1, 220, 1, 220, 1, 220, 3, 220, 3223, 8, 220, 1, 220, 3, 220, 3226, 8, 220, 1, 220, 3, 220, 3229, 8, 220, 1, 220, 3, 220, 3232, 8, 220, 1, 220, 3, 220, 3235, 8, 220, 1, 220, 3, 220, 3238, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 3244, 8, 220, 1, 220, 3, 220, 3247, 8, 220, 1, 220, 3, 220, 3250, 8, 220, 1, 220, 3, 220, 3253, 8, 220, 1, 220, 3, 220, 3256, 8, 220, 1, 220, 3, 220, 3259, 8, 220, 1, 220, 3, 220, 3262, 8, 220, 1, 220, 3, 220, 3265, 8, 220, 1, 220, 3, 220, 3268, 8, 220, 1, 220, 3, 220, 3271, 8, 220, 1, 220, 1, 220, 3, 220, 3275, 8, 220, 3, 220, 3277, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 3283, 8, 220, 1, 220, 1, 220, 1, 220, 3, 220, 3288, 8, 220, 1, 220, 3, 220, 3291, 8, 220, 1, 220, 3, 220, 3294, 8, 220, 1, 220, 3, 220, 3297, 8, 220, 1, 220, 3, 220, 3300, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 3306, 8, 220, 1, 220, 3, 220, 3309, 8, 220, 1, 220, 3, 220, 3312, 8, 220, 1, 220, 3, 220, 3315, 8, 220, 1, 220, 3, 220, 3318, 8, 220, 1, 220, 3, 220, 3321, 8, 220, 1, 220, 3, 220, 3324, 8, 220, 1, 220, 3, 220, 3327, 8, 220, 1, 220, 3, 220, 3330, 8, 220, 1, 220, 3, 220, 3333, 8, 220, 1, 220, 1, 220, 3, 220, 3337, 8, 220, 3, 220, 3339, 8, 220, 3, 220, 3341, 8, 220, 1, 221, 1, 221, 1, 221, 3, 221, 3346, 8, 221, 1, 221, 1, 221, 1, 221, 3, 221, 3351, 8, 221, 1, 221, 1, 221, 3, 221, 3355, 8, 221, 1, 221, 1, 221, 3, 221, 3359, 8, 221, 1, 221, 1, 221, 1, 221, 3, 221, 3364, 8, 221, 1, 222, 1, 222, 1, 222, 3, 222, 3369, 8, 222, 1, 222, 1, 222, 1, 223, 1, 223, 1, 223, 5, 223, 3376, 8, 223, 10, 223, 12, 223, 3379, 9, 223, 1, 223, 1, 223, 1, 224, 1, 224, 1, 224, 5, 224, 3386, 8, 224, 10, 224, 12, 224, 3389, 9, 224, 1, 225, 1, 225, 1, 225, 5, 225, 3394, 8, 225, 10, 225, 12, 225, 3397, 9, 225, 1, 226, 1, 226, 1, 226, 1, 227, 1, 227, 1, 227, 1, 227, 4, 227, 3406, 8, 227, 11, 227, 12, 227, 3407, 1, 227, 3, 227, 3411, 8, 227, 1, 228, 1, 228, 5, 228, 3415, 8, 228, 10, 228, 12, 228, 3418, 9, 228, 1, 228, 1, 228, 5, 228, 3422, 8, 228, 10, 228, 12, 228, 3425, 9, 228, 1, 228, 1, 228, 5, 228, 3429, 8, 228, 10, 228, 12, 228, 3432, 9, 228, 1, 228, 1, 228, 5, 228, 3436, 8, 228, 10, 228, 12, 228, 3439, 9, 228, 1, 228, 1, 228, 1, 228, 1, 228, 3, 228, 3445, 8, 228, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 3, 229, 3455, 8, 229, 3, 229, 3457, 8, 229, 1, 229, 1, 229, 3, 229, 3461, 8, 229, 5, 229, 3463, 8, 229, 10, 229, 12, 229, 3466, 9, 229, 1, 230, 1, 230, 1, 230, 1, 230, 3, 230, 3472, 8, 230, 1, 230, 5, 230, 3475, 8, 230, 10, 230, 12, 230, 3478, 9, 230, 1, 231, 3, 231, 3481, 8, 231, 1, 231, 1, 231, 3, 231, 3485, 8, 231, 1, 231, 3, 231, 3488, 8, 231, 1, 231, 3, 231, 3491, 8, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 3, 232, 3502, 8, 232, 1, 232, 1, 232, 3, 232, 3506, 8, 232, 3, 232, 3508, 8, 232, 1, 232, 3, 232, 3511, 8, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 5, 233, 3522, 8, 233, 10, 233, 12, 233, 3525, 9, 233, 3, 233, 3527, 8, 233, 1, 233, 3, 233, 3530, 8, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 5, 233, 3540, 8, 233, 10, 233, 12, 233, 3543, 9, 233, 3, 233, 3545, 8, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 3, 233, 3552, 8, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 5, 233, 3559, 8, 233, 10, 233, 12, 233, 3562, 9, 233, 1, 233, 1, 233, 3, 233, 3566, 8, 233, 3, 233, 3568, 8, 233, 3, 233, 3570, 8, 233, 1, 234, 1, 234, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 5, 235, 3585, 8, 235, 10, 235, 12, 235, 3588, 9, 235, 3, 235, 3590, 8, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 3, 235, 3598, 8, 235, 1, 235, 3, 235, 3601, 8, 235, 1, 236, 1, 236, 3, 236, 3605, 8, 236, 1, 236, 3, 236, 3608, 8, 236, 1, 236, 3, 236, 3611, 8, 236, 1, 236, 3, 236, 3614, 8, 236, 1, 236, 3, 236, 3617, 8, 236, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 3, 237, 3629, 8, 237, 1, 238, 1, 238, 1, 239, 1, 239, 1, 240, 1, 240, 3, 240, 3637, 8, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 3, 241, 3644, 8, 241, 1, 241, 3, 241, 3647, 8, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 3, 242, 3654, 8, 242, 1, 242, 3, 242, 3657, 8, 242, 1, 243, 1, 243, 1, 243, 3, 243, 3662, 8, 243, 1, 243, 1, 243, 1, 244, 1, 244, 1, 244, 3, 244, 3669, 8, 244, 1, 244, 1, 244, 1, 245, 1, 245, 1, 245, 1, 245, 3, 245, 3677, 8, 245, 1, 245, 1, 245, 1, 246, 1, 246, 3, 246, 3683, 8, 246, 1, 246, 1, 246, 1, 246, 3, 246, 3688, 8, 246, 1, 246, 1, 246, 3, 246, 3692, 8, 246, 1, 247, 1, 247, 1, 247, 3, 247, 3697, 8, 247, 1, 248, 1, 248, 3, 248, 3701, 8, 248, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 3, 249, 3708, 8, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 5, 249, 3720, 8, 249, 10, 249, 12, 249, 3723, 9, 249, 3, 249, 3725, 8, 249, 1, 249, 1, 249, 1, 250, 1, 250, 1, 250, 3, 250, 3732, 8, 250, 1, 251, 1, 251, 1, 251, 1, 251, 5, 251, 3738, 8, 251, 10, 251, 12, 251, 3741, 9, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 5, 251, 3748, 8, 251, 10, 251, 12, 251, 3751, 9, 251, 3, 251, 3753, 8, 251, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 253, 1, 253, 3, 253, 3762, 8, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 5, 253, 3769, 8, 253, 10, 253, 12, 253, 3772, 9, 253, 3, 253, 3774, 8, 253, 1, 253, 1, 253, 1, 254, 1, 254, 3, 254, 3780, 8, 254, 1, 254, 3, 254, 3783, 8, 254, 1, 254, 1, 254, 1, 254, 3, 254, 3788, 8, 254, 1, 254, 3, 254, 3791, 8, 254, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 3, 255, 3804, 8, 255, 1, 255, 1, 255, 1, 255, 1, 255, 3, 255, 3810, 8, 255, 3, 255, 3812, 8, 255, 1, 255, 1, 255, 1, 255, 1, 256, 1, 256, 1, 256, 5, 256, 3820, 8, 256, 10, 256, 12, 256, 3823, 9, 256, 1, 257, 1, 257, 1, 257, 3, 257, 3828, 8, 257, 1, 257, 3, 257, 3831, 8, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 5, 257, 3839, 8, 257, 10, 257, 12, 257, 3842, 9, 257, 1, 257, 1, 257, 3, 257, 3846, 8, 257, 3, 257, 3848, 8, 257, 1, 258, 1, 258, 1, 259, 1, 259, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 3864, 8, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 3870, 8, 260, 3, 260, 3872, 8, 260, 1, 260, 1, 260, 1, 260, 1, 261, 1, 261, 3, 261, 3879, 8, 261, 1, 262, 1, 262, 1, 262, 5, 262, 3884, 8, 262, 10, 262, 12, 262, 3887, 9, 262, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 5, 263, 3898, 8, 263, 10, 263, 12, 263, 3901, 9, 263, 1, 264, 1, 264, 1, 264, 3, 264, 3906, 8, 264, 1, 264, 3, 264, 3909, 8, 264, 1, 264, 3, 264, 3912, 8, 264, 1, 264, 3, 264, 3915, 8, 264, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 3, 265, 3924, 8, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 3, 265, 3931, 8, 265, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 3937, 8, 266, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 3, 267, 3946, 8, 267, 1, 268, 1, 268, 3, 268, 3950, 8, 268, 1, 268, 1, 268, 1, 268, 1, 268, 5, 268, 3956, 8, 268, 10, 268, 12, 268, 3959, 9, 268, 1, 268, 1, 268, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 3968, 8, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 5, 269, 3976, 8, 269, 10, 269, 12, 269, 3979, 9, 269, 1, 269, 1, 269, 3, 269, 3983, 8, 269, 1, 270, 1, 270, 3, 270, 3987, 8, 270, 1, 270, 1, 270, 5, 270, 3991, 8, 270, 10, 270, 12, 270, 3994, 9, 270, 1, 270, 1, 270, 3, 270, 3998, 8, 270, 1, 271, 1, 271, 1, 271, 3, 271, 4003, 8, 271, 1, 272, 1, 272, 1, 272, 1, 273, 1, 273, 3, 273, 4010, 8, 273, 1, 274, 1, 274, 3, 274, 4014, 8, 274, 1, 274, 3, 274, 4017, 8, 274, 1, 274, 1, 274, 1, 274, 3, 274, 4022, 8, 274, 1, 274, 3, 274, 4025, 8, 274, 5, 274, 4027, 8, 274, 10, 274, 12, 274, 4030, 9, 274, 1, 275, 1, 275, 3, 275, 4034, 8, 275, 1, 276, 1, 276, 1, 276, 1, 276, 1, 277, 1, 277, 1, 277, 4, 277, 4043, 8, 277, 11, 277, 12, 277, 4044, 3, 277, 4047, 8, 277, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 5, 278, 4054, 8, 278, 10, 278, 12, 278, 4057, 9, 278, 1, 279, 1, 279, 1, 279, 1, 279, 1, 280, 1, 280, 1, 280, 1, 280, 1, 281, 1, 281, 1, 281, 1, 281, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 5, 282, 4077, 8, 282, 10, 282, 12, 282, 4080, 9, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 5, 282, 4087, 8, 282, 10, 282, 12, 282, 4090, 9, 282, 3, 282, 4092, 8, 282, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4099, 8, 283, 1, 283, 3, 283, 4102, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4112, 8, 283, 1, 283, 1, 283, 1, 283, 5, 283, 4117, 8, 283, 10, 283, 12, 283, 4120, 9, 283, 3, 283, 4122, 8, 283, 3, 283, 4124, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4135, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4145, 8, 283, 3, 283, 4147, 8, 283, 1, 284, 1, 284, 1, 284, 1, 285, 1, 285, 1, 286, 1, 286, 3, 286, 4156, 8, 286, 1, 287, 1, 287, 1, 287, 3, 287, 4161, 8, 287, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 3, 288, 4170, 8, 288, 1, 288, 1, 288, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 4, 289, 4181, 8, 289, 11, 289, 12, 289, 4182, 1, 289, 1, 289, 3, 289, 4187, 8, 289, 1, 289, 1, 289, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 4, 290, 4197, 8, 290, 11, 290, 12, 290, 4198, 1, 290, 1, 290, 3, 290, 4203, 8, 290, 1, 290, 1, 290, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 3, 291, 4212, 8, 291, 1, 291, 1, 291, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 3, 293, 4231, 8, 293, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 5, 294, 4247, 8, 294, 10, 294, 12, 294, 4250, 9, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 3, 294, 4261, 8, 294, 1, 295, 1, 295, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 3, 296, 4276, 8, 296, 1, 296, 1, 296, 3, 296, 4280, 8, 296, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 3, 297, 4296, 8, 297, 1, 298, 1, 298, 1, 298, 5, 298, 4301, 8, 298, 10, 298, 12, 298, 4304, 9, 298, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 3, 299, 4317, 8, 299, 1, 300, 5, 300, 4320, 8, 300, 10, 300, 12, 300, 4323, 9, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 5, 300, 4332, 8, 300, 10, 300, 12, 300, 4335, 9, 300, 1, 301, 1, 301, 1, 301, 5, 301, 4340, 8, 301, 10, 301, 12, 301, 4343, 9, 301, 1, 302, 1, 302, 1, 302, 5, 302, 4348, 8, 302, 10, 302, 12, 302, 4351, 9, 302, 1, 303, 1, 303, 1, 303, 5, 303, 4356, 8, 303, 10, 303, 12, 303, 4359, 9, 303, 1, 304, 1, 304, 1, 304, 5, 304, 4364, 8, 304, 10, 304, 12, 304, 4367, 9, 304, 1, 305, 1, 305, 1, 305, 5, 305, 4372, 8, 305, 10, 305, 12, 305, 4375, 9, 305, 1, 306, 1, 306, 1, 306, 5, 306, 4380, 8, 306, 10, 306, 12, 306, 4383, 9, 306, 1, 307, 1, 307, 1, 308, 1, 308, 1, 308, 1, 308, 1, 309, 1, 309, 3, 309, 4393, 8, 309, 1, 309, 1, 309, 3, 309, 4397, 8, 309, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 3, 310, 4405, 8, 310, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 3, 311, 4421, 8, 311, 1, 312, 1, 312, 3, 312, 4425, 8, 312, 1, 313, 1, 313, 1, 313, 3, 313, 4430, 8, 313, 1, 314, 1, 314, 1, 314, 1, 314, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 3, 315, 4443, 8, 315, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 5, 316, 4452, 8, 316, 10, 316, 12, 316, 4455, 9, 316, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 3, 317, 4463, 8, 317, 1, 318, 5, 318, 4466, 8, 318, 10, 318, 12, 318, 4469, 9, 318, 1, 318, 1, 318, 1, 318, 3, 318, 4474, 8, 318, 1, 319, 1, 319, 1, 319, 5, 319, 4479, 8, 319, 10, 319, 12, 319, 4482, 9, 319, 1, 320, 1, 320, 3, 320, 4486, 8, 320, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 5, 321, 4493, 8, 321, 10, 321, 12, 321, 4496, 9, 321, 1, 321, 1, 321, 1, 322, 1, 322, 1, 322, 3, 322, 4503, 8, 322, 1, 323, 1, 323, 1, 323, 1, 323, 5, 323, 4509, 8, 323, 10, 323, 12, 323, 4512, 9, 323, 1, 323, 1, 323, 1, 324, 1, 324, 1, 324, 3, 324, 4519, 8, 324, 1, 324, 1, 324, 1, 325, 1, 325, 1, 326, 1, 326, 1, 327, 1, 327, 3, 327, 4529, 8, 327, 1, 328, 1, 328, 1, 328, 3, 328, 4534, 8, 328, 1, 329, 1, 329, 1, 330, 1, 330, 1, 331, 1, 331, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 3, 332, 4593, 8, 332, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4599, 8, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4608, 8, 333, 3, 333, 4610, 8, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 5, 333, 4624, 8, 333, 10, 333, 12, 333, 4627, 9, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4634, 8, 333, 1, 333, 1, 333, 3, 333, 4638, 8, 333, 3, 333, 4640, 8, 333, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4646, 8, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4651, 8, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4668, 8, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4694, 8, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4699, 8, 333, 3, 333, 4701, 8, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4729, 8, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4746, 8, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4751, 8, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4760, 8, 333, 1, 334, 1, 334, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 3, 335, 4771, 8, 335, 1, 336, 1, 336, 1, 336, 5, 336, 4776, 8, 336, 10, 336, 12, 336, 4779, 9, 336, 1, 337, 1, 337, 1, 337, 3, 337, 4784, 8, 337, 1, 338, 1, 338, 1, 338, 3, 338, 4789, 8, 338, 1, 339, 1, 339, 1, 340, 1, 340, 1, 341, 1, 341, 1, 342, 1, 342, 1, 343, 1, 343, 1, 344, 1, 344, 1, 345, 1, 345, 1, 346, 1, 346, 1, 347, 1, 347, 1, 348, 1, 348, 1, 349, 1, 349, 1, 350, 1, 350, 1, 350, 5, 350, 4816, 8, 350, 10, 350, 12, 350, 4819, 9, 350, 1, 351, 1, 351, 1, 351, 5, 351, 4824, 8, 351, 10, 351, 12, 351, 4827, 9, 351, 1, 351, 1, 351, 1, 351, 1, 351, 5, 351, 4833, 8, 351, 10, 351, 12, 351, 4836, 9, 351, 3, 351, 4838, 8, 351, 1, 352, 1, 352, 1, 352, 1, 352, 1, 353, 1, 353, 1, 353, 1, 353, 3, 353, 4848, 8, 353, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 3, 354, 4862, 8, 354, 1, 355, 1, 355, 1, 355, 5, 355, 4867, 8, 355, 10, 355, 12, 355, 4870, 9, 355, 1, 355, 1, 833, 0, 356, 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, 0, 61, 2, 0, 57, 57, 172, 172, 4, 0, 91, 91, 121, 121, 226, 226, 325, 325, 1, 0, 395, 396, 2, 0, 50, 50, 346, 346, 2, 0, 34, 34, 282, 282, 1, 0, 89, 90, 2, 0, 139, 139, 154, 154, 2, 0, 67, 67, 295, 295, 2, 0, 68, 68, 296, 296, 1, 0, 155, 156, 2, 0, 114, 114, 307, 307, 11, 0, 7, 7, 9, 9, 58, 58, 86, 86, 101, 101, 155, 155, 161, 161, 190, 190, 299, 299, 309, 309, 365, 365, 3, 0, 4, 4, 101, 101, 326, 326, 3, 0, 15, 15, 128, 128, 170, 170, 1, 0, 141, 142, 2, 0, 30, 30, 351, 351, 2, 0, 217, 217, 373, 373, 2, 0, 214, 214, 272, 272, 2, 0, 18, 18, 89, 89, 2, 0, 130, 130, 177, 177, 2, 0, 39, 39, 376, 376, 4, 0, 112, 112, 164, 164, 205, 205, 356, 356, 2, 0, 7, 7, 96, 96, 2, 0, 125, 125, 350, 350, 2, 0, 225, 225, 391, 391, 2, 0, 42, 42, 315, 315, 2, 0, 189, 189, 196, 196, 2, 0, 426, 426, 431, 431, 2, 0, 140, 140, 285, 285, 3, 0, 12, 12, 231, 231, 300, 300, 2, 0, 241, 241, 292, 292, 2, 0, 198, 198, 268, 268, 2, 0, 260, 260, 292, 292, 2, 0, 354, 354, 431, 431, 2, 0, 133, 133, 247, 247, 2, 0, 152, 152, 281, 281, 3, 0, 413, 414, 418, 418, 420, 420, 2, 0, 412, 412, 415, 417, 1, 0, 413, 414, 4, 0, 184, 184, 270, 270, 286, 286, 408, 411, 2, 0, 7, 7, 13, 13, 3, 0, 7, 7, 13, 13, 313, 313, 3, 0, 184, 184, 270, 270, 286, 286, 4, 0, 125, 125, 219, 219, 350, 350, 360, 360, 2, 0, 405, 405, 407, 411, 24, 0, 11, 11, 16, 16, 25, 28, 35, 35, 100, 100, 131, 132, 151, 151, 154, 154, 162, 163, 184, 184, 198, 198, 216, 216, 228, 228, 264, 264, 270, 270, 286, 286, 311, 311, 323, 324, 340, 340, 357, 357, 383, 383, 405, 417, 419, 421, 423, 423, 85, 0, 1, 6, 8, 8, 10, 10, 15, 15, 18, 20, 22, 24, 30, 31, 33, 34, 37, 38, 40, 44, 46, 47, 49, 50, 52, 53, 56, 57, 59, 59, 66, 66, 68, 68, 72, 77, 79, 79, 83, 85, 87, 89, 91, 95, 97, 99, 103, 104, 106, 107, 109, 111, 114, 116, 118, 121, 127, 130, 137, 138, 142, 142, 147, 150, 152, 152, 155, 156, 158, 160, 168, 170, 172, 177, 182, 183, 185, 187, 189, 193, 195, 197, 199, 202, 204, 204, 206, 209, 211, 212, 214, 215, 217, 218, 220, 220, 222, 223, 226, 227, 232, 233, 235, 236, 238, 240, 243, 246, 252, 252, 254, 255, 257, 259, 261, 262, 265, 267, 271, 282, 284, 284, 287, 288, 293, 298, 300, 303, 305, 310, 312, 312, 314, 317, 319, 325, 327, 328, 330, 330, 332, 334, 339, 340, 342, 342, 344, 346, 349, 349, 352, 353, 355, 355, 357, 357, 360, 364, 366, 368, 371, 373, 375, 375, 377, 382, 385, 385, 388, 394, 13, 0, 16, 16, 26, 28, 63, 64, 71, 71, 100, 100, 131, 131, 145, 145, 151, 151, 162, 163, 198, 198, 264, 264, 311, 311, 337, 337, 2, 0, 4, 4, 101, 101, 2, 0, 9, 9, 58, 58, 3, 0, 14, 14, 144, 144, 369, 369, 1, 0, 106, 107, 1, 0, 94, 95, 1, 0, 392, 393, 1, 0, 208, 209, 1, 0, 381, 382, 1, 0, 73, 74, 1, 0, 148, 149, 1, 0, 206, 207, 1, 0, 297, 298, 1, 0, 80, 82, 5461, 0, 715, 1, 0, 0, 0, 2, 722, 1, 0, 0, 0, 4, 727, 1, 0, 0, 0, 6, 761, 1, 0, 0, 0, 8, 763, 1, 0, 0, 0, 10, 836, 1, 0, 0, 0, 12, 838, 1, 0, 0, 0, 14, 854, 1, 0, 0, 0, 16, 863, 1, 0, 0, 0, 18, 871, 1, 0, 0, 0, 20, 884, 1, 0, 0, 0, 22, 895, 1, 0, 0, 0, 24, 900, 1, 0, 0, 0, 26, 911, 1, 0, 0, 0, 28, 974, 1, 0, 0, 0, 30, 976, 1, 0, 0, 0, 32, 979, 1, 0, 0, 0, 34, 983, 1, 0, 0, 0, 36, 985, 1, 0, 0, 0, 38, 988, 1, 0, 0, 0, 40, 991, 1, 0, 0, 0, 42, 1035, 1, 0, 0, 0, 44, 1037, 1, 0, 0, 0, 46, 1040, 1, 0, 0, 0, 48, 1043, 1, 0, 0, 0, 50, 1052, 1, 0, 0, 0, 52, 1055, 1, 0, 0, 0, 54, 1070, 1, 0, 0, 0, 56, 1082, 1, 0, 0, 0, 58, 1087, 1, 0, 0, 0, 60, 1107, 1, 0, 0, 0, 62, 1111, 1, 0, 0, 0, 64, 1118, 1, 0, 0, 0, 66, 1143, 1, 0, 0, 0, 68, 1160, 1, 0, 0, 0, 70, 1162, 1, 0, 0, 0, 72, 1347, 1, 0, 0, 0, 74, 1357, 1, 0, 0, 0, 76, 1359, 1, 0, 0, 0, 78, 1364, 1, 0, 0, 0, 80, 1369, 1, 0, 0, 0, 82, 1371, 1, 0, 0, 0, 84, 1375, 1, 0, 0, 0, 86, 1379, 1, 0, 0, 0, 88, 1383, 1, 0, 0, 0, 90, 1387, 1, 0, 0, 0, 92, 1397, 1, 0, 0, 0, 94, 1408, 1, 0, 0, 0, 96, 1425, 1, 0, 0, 0, 98, 1443, 1, 0, 0, 0, 100, 1448, 1, 0, 0, 0, 102, 1451, 1, 0, 0, 0, 104, 1455, 1, 0, 0, 0, 106, 1462, 1, 0, 0, 0, 108, 1471, 1, 0, 0, 0, 110, 1477, 1, 0, 0, 0, 112, 1479, 1, 0, 0, 0, 114, 1493, 1, 0, 0, 0, 116, 1515, 1, 0, 0, 0, 118, 1517, 1, 0, 0, 0, 120, 1525, 1, 0, 0, 0, 122, 1532, 1, 0, 0, 0, 124, 1534, 1, 0, 0, 0, 126, 1548, 1, 0, 0, 0, 128, 1555, 1, 0, 0, 0, 130, 1557, 1, 0, 0, 0, 132, 1561, 1, 0, 0, 0, 134, 1565, 1, 0, 0, 0, 136, 1569, 1, 0, 0, 0, 138, 1573, 1, 0, 0, 0, 140, 1586, 1, 0, 0, 0, 142, 1594, 1, 0, 0, 0, 144, 1597, 1, 0, 0, 0, 146, 1599, 1, 0, 0, 0, 148, 1611, 1, 0, 0, 0, 150, 1621, 1, 0, 0, 0, 152, 1624, 1, 0, 0, 0, 154, 1635, 1, 0, 0, 0, 156, 1643, 1, 0, 0, 0, 158, 1686, 1, 0, 0, 0, 160, 1695, 1, 0, 0, 0, 162, 1723, 1, 0, 0, 0, 164, 1736, 1, 0, 0, 0, 166, 1738, 1, 0, 0, 0, 168, 1744, 1, 0, 0, 0, 170, 1747, 1, 0, 0, 0, 172, 1753, 1, 0, 0, 0, 174, 1759, 1, 0, 0, 0, 176, 1766, 1, 0, 0, 0, 178, 1800, 1, 0, 0, 0, 180, 1808, 1, 0, 0, 0, 182, 1821, 1, 0, 0, 0, 184, 1826, 1, 0, 0, 0, 186, 1837, 1, 0, 0, 0, 188, 1854, 1, 0, 0, 0, 190, 1856, 1, 0, 0, 0, 192, 1861, 1, 0, 0, 0, 194, 1868, 1, 0, 0, 0, 196, 1870, 1, 0, 0, 0, 198, 1873, 1, 0, 0, 0, 200, 1876, 1, 0, 0, 0, 202, 1890, 1, 0, 0, 0, 204, 1898, 1, 0, 0, 0, 206, 1924, 1, 0, 0, 0, 208, 1926, 1, 0, 0, 0, 210, 1943, 1, 0, 0, 0, 212, 1957, 1, 0, 0, 0, 214, 1959, 1, 0, 0, 0, 216, 1962, 1, 0, 0, 0, 218, 1965, 1, 0, 0, 0, 220, 1974, 1, 0, 0, 0, 222, 1994, 1, 0, 0, 0, 224, 1996, 1, 0, 0, 0, 226, 1999, 1, 0, 0, 0, 228, 2012, 1, 0, 0, 0, 230, 2014, 1, 0, 0, 0, 232, 2018, 1, 0, 0, 0, 234, 2026, 1, 0, 0, 0, 236, 2030, 1, 0, 0, 0, 238, 2039, 1, 0, 0, 0, 240, 2045, 1, 0, 0, 0, 242, 2051, 1, 0, 0, 0, 244, 2056, 1, 0, 0, 0, 246, 2102, 1, 0, 0, 0, 248, 2104, 1, 0, 0, 0, 250, 2112, 1, 0, 0, 0, 252, 2120, 1, 0, 0, 0, 254, 2128, 1, 0, 0, 0, 256, 2139, 1, 0, 0, 0, 258, 2141, 1, 0, 0, 0, 260, 2146, 1, 0, 0, 0, 262, 2148, 1, 0, 0, 0, 264, 2150, 1, 0, 0, 0, 266, 2163, 1, 0, 0, 0, 268, 2171, 1, 0, 0, 0, 270, 2180, 1, 0, 0, 0, 272, 2184, 1, 0, 0, 0, 274, 2186, 1, 0, 0, 0, 276, 2191, 1, 0, 0, 0, 278, 2193, 1, 0, 0, 0, 280, 2197, 1, 0, 0, 0, 282, 2203, 1, 0, 0, 0, 284, 2211, 1, 0, 0, 0, 286, 2213, 1, 0, 0, 0, 288, 2216, 1, 0, 0, 0, 290, 2223, 1, 0, 0, 0, 292, 2234, 1, 0, 0, 0, 294, 2247, 1, 0, 0, 0, 296, 2249, 1, 0, 0, 0, 298, 2257, 1, 0, 0, 0, 300, 2261, 1, 0, 0, 0, 302, 2269, 1, 0, 0, 0, 304, 2271, 1, 0, 0, 0, 306, 2274, 1, 0, 0, 0, 308, 2281, 1, 0, 0, 0, 310, 2289, 1, 0, 0, 0, 312, 2296, 1, 0, 0, 0, 314, 2304, 1, 0, 0, 0, 316, 2312, 1, 0, 0, 0, 318, 2316, 1, 0, 0, 0, 320, 2318, 1, 0, 0, 0, 322, 2329, 1, 0, 0, 0, 324, 2333, 1, 0, 0, 0, 326, 2345, 1, 0, 0, 0, 328, 2353, 1, 0, 0, 0, 330, 2357, 1, 0, 0, 0, 332, 2369, 1, 0, 0, 0, 334, 2381, 1, 0, 0, 0, 336, 2386, 1, 0, 0, 0, 338, 2391, 1, 0, 0, 0, 340, 2393, 1, 0, 0, 0, 342, 2397, 1, 0, 0, 0, 344, 2401, 1, 0, 0, 0, 346, 2408, 1, 0, 0, 0, 348, 2410, 1, 0, 0, 0, 350, 2423, 1, 0, 0, 0, 352, 2462, 1, 0, 0, 0, 354, 2464, 1, 0, 0, 0, 356, 2469, 1, 0, 0, 0, 358, 2474, 1, 0, 0, 0, 360, 2481, 1, 0, 0, 0, 362, 2486, 1, 0, 0, 0, 364, 2491, 1, 0, 0, 0, 366, 2497, 1, 0, 0, 0, 368, 2499, 1, 0, 0, 0, 370, 2508, 1, 0, 0, 0, 372, 2520, 1, 0, 0, 0, 374, 2600, 1, 0, 0, 0, 376, 2606, 1, 0, 0, 0, 378, 2632, 1, 0, 0, 0, 380, 2634, 1, 0, 0, 0, 382, 2656, 1, 0, 0, 0, 384, 2661, 1, 0, 0, 0, 386, 2665, 1, 0, 0, 0, 388, 2697, 1, 0, 0, 0, 390, 2699, 1, 0, 0, 0, 392, 2710, 1, 0, 0, 0, 394, 2716, 1, 0, 0, 0, 396, 2718, 1, 0, 0, 0, 398, 2750, 1, 0, 0, 0, 400, 2757, 1, 0, 0, 0, 402, 2763, 1, 0, 0, 0, 404, 2769, 1, 0, 0, 0, 406, 2784, 1, 0, 0, 0, 408, 2794, 1, 0, 0, 0, 410, 2802, 1, 0, 0, 0, 412, 2805, 1, 0, 0, 0, 414, 2808, 1, 0, 0, 0, 416, 2811, 1, 0, 0, 0, 418, 2933, 1, 0, 0, 0, 420, 3067, 1, 0, 0, 0, 422, 3095, 1, 0, 0, 0, 424, 3112, 1, 0, 0, 0, 426, 3129, 1, 0, 0, 0, 428, 3131, 1, 0, 0, 0, 430, 3134, 1, 0, 0, 0, 432, 3160, 1, 0, 0, 0, 434, 3165, 1, 0, 0, 0, 436, 3192, 1, 0, 0, 0, 438, 3203, 1, 0, 0, 0, 440, 3340, 1, 0, 0, 0, 442, 3342, 1, 0, 0, 0, 444, 3365, 1, 0, 0, 0, 446, 3377, 1, 0, 0, 0, 448, 3382, 1, 0, 0, 0, 450, 3390, 1, 0, 0, 0, 452, 3398, 1, 0, 0, 0, 454, 3410, 1, 0, 0, 0, 456, 3444, 1, 0, 0, 0, 458, 3446, 1, 0, 0, 0, 460, 3471, 1, 0, 0, 0, 462, 3480, 1, 0, 0, 0, 464, 3510, 1, 0, 0, 0, 466, 3569, 1, 0, 0, 0, 468, 3571, 1, 0, 0, 0, 470, 3600, 1, 0, 0, 0, 472, 3602, 1, 0, 0, 0, 474, 3618, 1, 0, 0, 0, 476, 3630, 1, 0, 0, 0, 478, 3632, 1, 0, 0, 0, 480, 3636, 1, 0, 0, 0, 482, 3646, 1, 0, 0, 0, 484, 3656, 1, 0, 0, 0, 486, 3661, 1, 0, 0, 0, 488, 3668, 1, 0, 0, 0, 490, 3672, 1, 0, 0, 0, 492, 3691, 1, 0, 0, 0, 494, 3696, 1, 0, 0, 0, 496, 3698, 1, 0, 0, 0, 498, 3702, 1, 0, 0, 0, 500, 3728, 1, 0, 0, 0, 502, 3733, 1, 0, 0, 0, 504, 3754, 1, 0, 0, 0, 506, 3759, 1, 0, 0, 0, 508, 3790, 1, 0, 0, 0, 510, 3792, 1, 0, 0, 0, 512, 3816, 1, 0, 0, 0, 514, 3847, 1, 0, 0, 0, 516, 3849, 1, 0, 0, 0, 518, 3851, 1, 0, 0, 0, 520, 3853, 1, 0, 0, 0, 522, 3878, 1, 0, 0, 0, 524, 3880, 1, 0, 0, 0, 526, 3888, 1, 0, 0, 0, 528, 3914, 1, 0, 0, 0, 530, 3916, 1, 0, 0, 0, 532, 3936, 1, 0, 0, 0, 534, 3938, 1, 0, 0, 0, 536, 3949, 1, 0, 0, 0, 538, 3962, 1, 0, 0, 0, 540, 3997, 1, 0, 0, 0, 542, 3999, 1, 0, 0, 0, 544, 4004, 1, 0, 0, 0, 546, 4009, 1, 0, 0, 0, 548, 4011, 1, 0, 0, 0, 550, 4033, 1, 0, 0, 0, 552, 4035, 1, 0, 0, 0, 554, 4039, 1, 0, 0, 0, 556, 4048, 1, 0, 0, 0, 558, 4058, 1, 0, 0, 0, 560, 4062, 1, 0, 0, 0, 562, 4066, 1, 0, 0, 0, 564, 4070, 1, 0, 0, 0, 566, 4146, 1, 0, 0, 0, 568, 4148, 1, 0, 0, 0, 570, 4151, 1, 0, 0, 0, 572, 4155, 1, 0, 0, 0, 574, 4160, 1, 0, 0, 0, 576, 4162, 1, 0, 0, 0, 578, 4173, 1, 0, 0, 0, 580, 4190, 1, 0, 0, 0, 582, 4206, 1, 0, 0, 0, 584, 4215, 1, 0, 0, 0, 586, 4230, 1, 0, 0, 0, 588, 4260, 1, 0, 0, 0, 590, 4262, 1, 0, 0, 0, 592, 4279, 1, 0, 0, 0, 594, 4295, 1, 0, 0, 0, 596, 4297, 1, 0, 0, 0, 598, 4316, 1, 0, 0, 0, 600, 4321, 1, 0, 0, 0, 602, 4336, 1, 0, 0, 0, 604, 4344, 1, 0, 0, 0, 606, 4352, 1, 0, 0, 0, 608, 4360, 1, 0, 0, 0, 610, 4368, 1, 0, 0, 0, 612, 4376, 1, 0, 0, 0, 614, 4384, 1, 0, 0, 0, 616, 4386, 1, 0, 0, 0, 618, 4396, 1, 0, 0, 0, 620, 4404, 1, 0, 0, 0, 622, 4420, 1, 0, 0, 0, 624, 4424, 1, 0, 0, 0, 626, 4429, 1, 0, 0, 0, 628, 4431, 1, 0, 0, 0, 630, 4442, 1, 0, 0, 0, 632, 4444, 1, 0, 0, 0, 634, 4462, 1, 0, 0, 0, 636, 4467, 1, 0, 0, 0, 638, 4475, 1, 0, 0, 0, 640, 4483, 1, 0, 0, 0, 642, 4487, 1, 0, 0, 0, 644, 4499, 1, 0, 0, 0, 646, 4504, 1, 0, 0, 0, 648, 4515, 1, 0, 0, 0, 650, 4522, 1, 0, 0, 0, 652, 4524, 1, 0, 0, 0, 654, 4528, 1, 0, 0, 0, 656, 4530, 1, 0, 0, 0, 658, 4535, 1, 0, 0, 0, 660, 4537, 1, 0, 0, 0, 662, 4539, 1, 0, 0, 0, 664, 4592, 1, 0, 0, 0, 666, 4759, 1, 0, 0, 0, 668, 4761, 1, 0, 0, 0, 670, 4770, 1, 0, 0, 0, 672, 4772, 1, 0, 0, 0, 674, 4783, 1, 0, 0, 0, 676, 4785, 1, 0, 0, 0, 678, 4790, 1, 0, 0, 0, 680, 4792, 1, 0, 0, 0, 682, 4794, 1, 0, 0, 0, 684, 4796, 1, 0, 0, 0, 686, 4798, 1, 0, 0, 0, 688, 4800, 1, 0, 0, 0, 690, 4802, 1, 0, 0, 0, 692, 4804, 1, 0, 0, 0, 694, 4806, 1, 0, 0, 0, 696, 4808, 1, 0, 0, 0, 698, 4810, 1, 0, 0, 0, 700, 4812, 1, 0, 0, 0, 702, 4837, 1, 0, 0, 0, 704, 4839, 1, 0, 0, 0, 706, 4847, 1, 0, 0, 0, 708, 4861, 1, 0, 0, 0, 710, 4863, 1, 0, 0, 0, 712, 714, 3, 2, 1, 0, 713, 712, 1, 0, 0, 0, 714, 717, 1, 0, 0, 0, 715, 713, 1, 0, 0, 0, 715, 716, 1, 0, 0, 0, 716, 718, 1, 0, 0, 0, 717, 715, 1, 0, 0, 0, 718, 719, 5, 0, 0, 1, 719, 1, 1, 0, 0, 0, 720, 723, 3, 4, 2, 0, 721, 723, 3, 10, 5, 0, 722, 720, 1, 0, 0, 0, 722, 721, 1, 0, 0, 0, 723, 725, 1, 0, 0, 0, 724, 726, 5, 398, 0, 0, 725, 724, 1, 0, 0, 0, 725, 726, 1, 0, 0, 0, 726, 3, 1, 0, 0, 0, 727, 737, 5, 119, 0, 0, 728, 730, 3, 6, 3, 0, 729, 728, 1, 0, 0, 0, 730, 733, 1, 0, 0, 0, 731, 729, 1, 0, 0, 0, 731, 732, 1, 0, 0, 0, 732, 734, 1, 0, 0, 0, 733, 731, 1, 0, 0, 0, 734, 738, 3, 10, 5, 0, 735, 736, 5, 284, 0, 0, 736, 738, 3, 364, 182, 0, 737, 731, 1, 0, 0, 0, 737, 735, 1, 0, 0, 0, 738, 5, 1, 0, 0, 0, 739, 762, 5, 122, 0, 0, 740, 762, 5, 138, 0, 0, 741, 762, 5, 88, 0, 0, 742, 744, 5, 37, 0, 0, 743, 745, 7, 0, 0, 0, 744, 743, 1, 0, 0, 0, 744, 745, 1, 0, 0, 0, 745, 762, 1, 0, 0, 0, 746, 762, 5, 192, 0, 0, 747, 762, 5, 21, 0, 0, 748, 762, 5, 10, 0, 0, 749, 762, 5, 275, 0, 0, 750, 762, 5, 191, 0, 0, 751, 762, 5, 19, 0, 0, 752, 754, 5, 377, 0, 0, 753, 755, 5, 225, 0, 0, 754, 753, 1, 0, 0, 0, 754, 755, 1, 0, 0, 0, 755, 757, 1, 0, 0, 0, 756, 758, 3, 8, 4, 0, 757, 756, 1, 0, 0, 0, 757, 758, 1, 0, 0, 0, 758, 762, 1, 0, 0, 0, 759, 762, 5, 79, 0, 0, 760, 762, 5, 78, 0, 0, 761, 739, 1, 0, 0, 0, 761, 740, 1, 0, 0, 0, 761, 741, 1, 0, 0, 0, 761, 742, 1, 0, 0, 0, 761, 746, 1, 0, 0, 0, 761, 747, 1, 0, 0, 0, 761, 748, 1, 0, 0, 0, 761, 749, 1, 0, 0, 0, 761, 750, 1, 0, 0, 0, 761, 751, 1, 0, 0, 0, 761, 752, 1, 0, 0, 0, 761, 759, 1, 0, 0, 0, 761, 760, 1, 0, 0, 0, 762, 7, 1, 0, 0, 0, 763, 764, 7, 1, 0, 0, 764, 9, 1, 0, 0, 0, 765, 837, 3, 364, 182, 0, 766, 837, 3, 12, 6, 0, 767, 837, 3, 16, 8, 0, 768, 837, 3, 18, 9, 0, 769, 837, 3, 20, 10, 0, 770, 837, 3, 24, 12, 0, 771, 772, 5, 277, 0, 0, 772, 773, 5, 320, 0, 0, 773, 776, 3, 476, 238, 0, 774, 775, 5, 387, 0, 0, 775, 777, 3, 230, 115, 0, 776, 774, 1, 0, 0, 0, 776, 777, 1, 0, 0, 0, 777, 837, 1, 0, 0, 0, 778, 837, 3, 28, 14, 0, 779, 780, 5, 86, 0, 0, 780, 781, 5, 139, 0, 0, 781, 783, 3, 482, 241, 0, 782, 784, 3, 500, 250, 0, 783, 782, 1, 0, 0, 0, 783, 784, 1, 0, 0, 0, 784, 837, 1, 0, 0, 0, 785, 786, 5, 365, 0, 0, 786, 787, 3, 482, 241, 0, 787, 789, 3, 396, 198, 0, 788, 790, 3, 500, 250, 0, 789, 788, 1, 0, 0, 0, 789, 790, 1, 0, 0, 0, 790, 837, 1, 0, 0, 0, 791, 837, 3, 398, 199, 0, 792, 794, 5, 203, 0, 0, 793, 795, 5, 436, 0, 0, 794, 793, 1, 0, 0, 0, 794, 795, 1, 0, 0, 0, 795, 796, 1, 0, 0, 0, 796, 797, 5, 166, 0, 0, 797, 802, 3, 482, 241, 0, 798, 800, 5, 17, 0, 0, 799, 798, 1, 0, 0, 0, 799, 800, 1, 0, 0, 0, 800, 801, 1, 0, 0, 0, 801, 803, 3, 654, 327, 0, 802, 799, 1, 0, 0, 0, 802, 803, 1, 0, 0, 0, 803, 804, 1, 0, 0, 0, 804, 805, 5, 370, 0, 0, 805, 806, 3, 460, 230, 0, 806, 807, 5, 224, 0, 0, 807, 808, 3, 596, 298, 0, 808, 809, 3, 402, 201, 0, 809, 837, 1, 0, 0, 0, 810, 811, 5, 249, 0, 0, 811, 812, 3, 654, 327, 0, 812, 813, 5, 139, 0, 0, 813, 814, 3, 364, 182, 0, 814, 837, 1, 0, 0, 0, 815, 816, 5, 115, 0, 0, 816, 817, 3, 654, 327, 0, 817, 818, 5, 370, 0, 0, 818, 819, 3, 300, 150, 0, 819, 837, 1, 0, 0, 0, 820, 821, 5, 304, 0, 0, 821, 826, 3, 664, 332, 0, 822, 823, 7, 2, 0, 0, 823, 825, 3, 664, 332, 0, 824, 822, 1, 0, 0, 0, 825, 828, 1, 0, 0, 0, 826, 824, 1, 0, 0, 0, 826, 827, 1, 0, 0, 0, 827, 829, 1, 0, 0, 0, 828, 826, 1, 0, 0, 0, 829, 833, 5, 405, 0, 0, 830, 832, 9, 0, 0, 0, 831, 830, 1, 0, 0, 0, 832, 835, 1, 0, 0, 0, 833, 834, 1, 0, 0, 0, 833, 831, 1, 0, 0, 0, 834, 837, 1, 0, 0, 0, 835, 833, 1, 0, 0, 0, 836, 765, 1, 0, 0, 0, 836, 766, 1, 0, 0, 0, 836, 767, 1, 0, 0, 0, 836, 768, 1, 0, 0, 0, 836, 769, 1, 0, 0, 0, 836, 770, 1, 0, 0, 0, 836, 771, 1, 0, 0, 0, 836, 778, 1, 0, 0, 0, 836, 779, 1, 0, 0, 0, 836, 785, 1, 0, 0, 0, 836, 791, 1, 0, 0, 0, 836, 792, 1, 0, 0, 0, 836, 810, 1, 0, 0, 0, 836, 815, 1, 0, 0, 0, 836, 820, 1, 0, 0, 0, 837, 11, 1, 0, 0, 0, 838, 839, 5, 187, 0, 0, 839, 841, 5, 66, 0, 0, 840, 842, 5, 188, 0, 0, 841, 840, 1, 0, 0, 0, 841, 842, 1, 0, 0, 0, 842, 843, 1, 0, 0, 0, 843, 844, 5, 158, 0, 0, 844, 846, 5, 426, 0, 0, 845, 847, 5, 235, 0, 0, 846, 845, 1, 0, 0, 0, 846, 847, 1, 0, 0, 0, 847, 848, 1, 0, 0, 0, 848, 849, 5, 166, 0, 0, 849, 850, 5, 329, 0, 0, 850, 852, 3, 640, 320, 0, 851, 853, 3, 56, 28, 0, 852, 851, 1, 0, 0, 0, 852, 853, 1, 0, 0, 0, 853, 13, 1, 0, 0, 0, 854, 856, 5, 134, 0, 0, 855, 857, 5, 204, 0, 0, 856, 855, 1, 0, 0, 0, 856, 857, 1, 0, 0, 0, 857, 858, 1, 0, 0, 0, 858, 859, 5, 279, 0, 0, 859, 860, 5, 399, 0, 0, 860, 861, 5, 426, 0, 0, 861, 862, 5, 400, 0, 0, 862, 15, 1, 0, 0, 0, 863, 864, 5, 120, 0, 0, 864, 865, 5, 329, 0, 0, 865, 866, 3, 640, 320, 0, 866, 867, 5, 341, 0, 0, 867, 869, 5, 426, 0, 0, 868, 870, 3, 14, 7, 0, 869, 868, 1, 0, 0, 0, 869, 870, 1, 0, 0, 0, 870, 17, 1, 0, 0, 0, 871, 877, 5, 153, 0, 0, 872, 874, 5, 123, 0, 0, 873, 872, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 875, 1, 0, 0, 0, 875, 876, 5, 329, 0, 0, 876, 878, 3, 640, 320, 0, 877, 873, 1, 0, 0, 0, 877, 878, 1, 0, 0, 0, 878, 879, 1, 0, 0, 0, 879, 880, 5, 139, 0, 0, 880, 882, 5, 426, 0, 0, 881, 883, 3, 428, 214, 0, 882, 881, 1, 0, 0, 0, 882, 883, 1, 0, 0, 0, 883, 19, 1, 0, 0, 0, 884, 885, 5, 277, 0, 0, 885, 886, 5, 103, 0, 0, 886, 889, 3, 22, 11, 0, 887, 888, 5, 278, 0, 0, 888, 890, 3, 22, 11, 0, 889, 887, 1, 0, 0, 0, 889, 890, 1, 0, 0, 0, 890, 893, 1, 0, 0, 0, 891, 892, 5, 387, 0, 0, 892, 894, 3, 230, 115, 0, 893, 891, 1, 0, 0, 0, 893, 894, 1, 0, 0, 0, 894, 21, 1, 0, 0, 0, 895, 898, 3, 476, 238, 0, 896, 897, 5, 395, 0, 0, 897, 899, 3, 26, 13, 0, 898, 896, 1, 0, 0, 0, 898, 899, 1, 0, 0, 0, 899, 23, 1, 0, 0, 0, 900, 901, 5, 277, 0, 0, 901, 902, 5, 187, 0, 0, 902, 905, 3, 22, 11, 0, 903, 904, 5, 166, 0, 0, 904, 906, 3, 476, 238, 0, 905, 903, 1, 0, 0, 0, 905, 906, 1, 0, 0, 0, 906, 909, 1, 0, 0, 0, 907, 908, 5, 387, 0, 0, 908, 910, 3, 230, 115, 0, 909, 907, 1, 0, 0, 0, 909, 910, 1, 0, 0, 0, 910, 25, 1, 0, 0, 0, 911, 914, 5, 426, 0, 0, 912, 913, 5, 395, 0, 0, 913, 915, 5, 426, 0, 0, 914, 912, 1, 0, 0, 0, 914, 915, 1, 0, 0, 0, 915, 27, 1, 0, 0, 0, 916, 975, 3, 42, 21, 0, 917, 975, 3, 46, 23, 0, 918, 975, 3, 48, 24, 0, 919, 975, 3, 440, 220, 0, 920, 975, 3, 54, 27, 0, 921, 975, 3, 52, 26, 0, 922, 975, 3, 416, 208, 0, 923, 975, 3, 64, 32, 0, 924, 975, 3, 72, 36, 0, 925, 975, 3, 138, 69, 0, 926, 975, 3, 160, 80, 0, 927, 975, 3, 176, 88, 0, 928, 975, 3, 180, 90, 0, 929, 975, 3, 184, 92, 0, 930, 975, 3, 182, 91, 0, 931, 975, 3, 174, 87, 0, 932, 975, 3, 178, 89, 0, 933, 975, 3, 146, 73, 0, 934, 975, 3, 152, 76, 0, 935, 975, 3, 148, 74, 0, 936, 975, 3, 150, 75, 0, 937, 975, 3, 154, 77, 0, 938, 975, 3, 156, 78, 0, 939, 975, 3, 158, 79, 0, 940, 975, 3, 66, 33, 0, 941, 975, 3, 76, 38, 0, 942, 975, 3, 82, 41, 0, 943, 975, 3, 78, 39, 0, 944, 975, 3, 84, 42, 0, 945, 975, 3, 86, 43, 0, 946, 975, 3, 88, 44, 0, 947, 975, 3, 90, 45, 0, 948, 975, 3, 92, 46, 0, 949, 975, 3, 106, 53, 0, 950, 975, 3, 98, 49, 0, 951, 975, 3, 108, 54, 0, 952, 975, 3, 100, 50, 0, 953, 975, 3, 94, 47, 0, 954, 975, 3, 96, 48, 0, 955, 975, 3, 104, 52, 0, 956, 975, 3, 102, 51, 0, 957, 958, 5, 1, 0, 0, 958, 960, 7, 3, 0, 0, 959, 961, 5, 431, 0, 0, 960, 959, 1, 0, 0, 0, 961, 962, 1, 0, 0, 0, 962, 960, 1, 0, 0, 0, 962, 963, 1, 0, 0, 0, 963, 975, 1, 0, 0, 0, 964, 965, 5, 176, 0, 0, 965, 967, 5, 258, 0, 0, 966, 968, 5, 426, 0, 0, 967, 966, 1, 0, 0, 0, 968, 969, 1, 0, 0, 0, 969, 967, 1, 0, 0, 0, 969, 970, 1, 0, 0, 0, 970, 975, 1, 0, 0, 0, 971, 975, 3, 666, 333, 0, 972, 975, 3, 442, 221, 0, 973, 975, 3, 444, 222, 0, 974, 916, 1, 0, 0, 0, 974, 917, 1, 0, 0, 0, 974, 918, 1, 0, 0, 0, 974, 919, 1, 0, 0, 0, 974, 920, 1, 0, 0, 0, 974, 921, 1, 0, 0, 0, 974, 922, 1, 0, 0, 0, 974, 923, 1, 0, 0, 0, 974, 924, 1, 0, 0, 0, 974, 925, 1, 0, 0, 0, 974, 926, 1, 0, 0, 0, 974, 927, 1, 0, 0, 0, 974, 928, 1, 0, 0, 0, 974, 929, 1, 0, 0, 0, 974, 930, 1, 0, 0, 0, 974, 931, 1, 0, 0, 0, 974, 932, 1, 0, 0, 0, 974, 933, 1, 0, 0, 0, 974, 934, 1, 0, 0, 0, 974, 935, 1, 0, 0, 0, 974, 936, 1, 0, 0, 0, 974, 937, 1, 0, 0, 0, 974, 938, 1, 0, 0, 0, 974, 939, 1, 0, 0, 0, 974, 940, 1, 0, 0, 0, 974, 941, 1, 0, 0, 0, 974, 942, 1, 0, 0, 0, 974, 943, 1, 0, 0, 0, 974, 944, 1, 0, 0, 0, 974, 945, 1, 0, 0, 0, 974, 946, 1, 0, 0, 0, 974, 947, 1, 0, 0, 0, 974, 948, 1, 0, 0, 0, 974, 949, 1, 0, 0, 0, 974, 950, 1, 0, 0, 0, 974, 951, 1, 0, 0, 0, 974, 952, 1, 0, 0, 0, 974, 953, 1, 0, 0, 0, 974, 954, 1, 0, 0, 0, 974, 955, 1, 0, 0, 0, 974, 956, 1, 0, 0, 0, 974, 957, 1, 0, 0, 0, 974, 964, 1, 0, 0, 0, 974, 971, 1, 0, 0, 0, 974, 972, 1, 0, 0, 0, 974, 973, 1, 0, 0, 0, 975, 29, 1, 0, 0, 0, 976, 977, 5, 151, 0, 0, 977, 978, 5, 117, 0, 0, 978, 31, 1, 0, 0, 0, 979, 980, 5, 151, 0, 0, 980, 981, 5, 216, 0, 0, 981, 982, 5, 117, 0, 0, 982, 33, 1, 0, 0, 0, 983, 984, 7, 4, 0, 0, 984, 35, 1, 0, 0, 0, 985, 986, 3, 678, 339, 0, 986, 987, 5, 284, 0, 0, 987, 37, 1, 0, 0, 0, 988, 989, 3, 680, 340, 0, 989, 990, 5, 284, 0, 0, 990, 39, 1, 0, 0, 0, 991, 992, 5, 321, 0, 0, 992, 993, 5, 17, 0, 0, 993, 994, 5, 92, 0, 0, 994, 41, 1, 0, 0, 0, 995, 997, 5, 58, 0, 0, 996, 998, 5, 273, 0, 0, 997, 996, 1, 0, 0, 0, 997, 998, 1, 0, 0, 0, 998, 999, 1, 0, 0, 0, 999, 1001, 3, 70, 35, 0, 1000, 1002, 3, 32, 16, 0, 1001, 1000, 1, 0, 0, 0, 1001, 1002, 1, 0, 0, 0, 1002, 1003, 1, 0, 0, 0, 1003, 1005, 3, 478, 239, 0, 1004, 1006, 3, 50, 25, 0, 1005, 1004, 1, 0, 0, 0, 1005, 1006, 1, 0, 0, 0, 1006, 1008, 1, 0, 0, 0, 1007, 1009, 3, 428, 214, 0, 1008, 1007, 1, 0, 0, 0, 1008, 1009, 1, 0, 0, 0, 1009, 1012, 1, 0, 0, 0, 1010, 1011, 5, 196, 0, 0, 1011, 1013, 5, 426, 0, 0, 1012, 1010, 1, 0, 0, 0, 1012, 1013, 1, 0, 0, 0, 1013, 1017, 1, 0, 0, 0, 1014, 1015, 5, 387, 0, 0, 1015, 1016, 5, 76, 0, 0, 1016, 1018, 3, 230, 115, 0, 1017, 1014, 1, 0, 0, 0, 1017, 1018, 1, 0, 0, 0, 1018, 1036, 1, 0, 0, 0, 1019, 1020, 5, 58, 0, 0, 1020, 1021, 5, 273, 0, 0, 1021, 1023, 3, 70, 35, 0, 1022, 1024, 3, 32, 16, 0, 1023, 1022, 1, 0, 0, 0, 1023, 1024, 1, 0, 0, 0, 1024, 1025, 1, 0, 0, 0, 1025, 1027, 3, 478, 239, 0, 1026, 1028, 3, 50, 25, 0, 1027, 1026, 1, 0, 0, 0, 1027, 1028, 1, 0, 0, 0, 1028, 1029, 1, 0, 0, 0, 1029, 1033, 3, 44, 22, 0, 1030, 1031, 5, 387, 0, 0, 1031, 1032, 5, 76, 0, 0, 1032, 1034, 3, 230, 115, 0, 1033, 1030, 1, 0, 0, 0, 1033, 1034, 1, 0, 0, 0, 1034, 1036, 1, 0, 0, 0, 1035, 995, 1, 0, 0, 0, 1035, 1019, 1, 0, 0, 0, 1036, 43, 1, 0, 0, 0, 1037, 1038, 5, 370, 0, 0, 1038, 1039, 3, 476, 238, 0, 1039, 45, 1, 0, 0, 0, 1040, 1041, 5, 368, 0, 0, 1041, 1042, 3, 476, 238, 0, 1042, 47, 1, 0, 0, 0, 1043, 1044, 5, 101, 0, 0, 1044, 1046, 3, 70, 35, 0, 1045, 1047, 3, 30, 15, 0, 1046, 1045, 1, 0, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, 1048, 1, 0, 0, 0, 1048, 1050, 3, 476, 238, 0, 1049, 1051, 3, 34, 17, 0, 1050, 1049, 1, 0, 0, 0, 1050, 1051, 1, 0, 0, 0, 1051, 49, 1, 0, 0, 0, 1052, 1053, 5, 47, 0, 0, 1053, 1054, 5, 426, 0, 0, 1054, 51, 1, 0, 0, 0, 1055, 1057, 5, 351, 0, 0, 1056, 1058, 5, 329, 0, 0, 1057, 1056, 1, 0, 0, 0, 1057, 1058, 1, 0, 0, 0, 1058, 1059, 1, 0, 0, 0, 1059, 1065, 3, 640, 320, 0, 1060, 1061, 5, 46, 0, 0, 1061, 1062, 5, 399, 0, 0, 1062, 1063, 3, 254, 127, 0, 1063, 1064, 5, 400, 0, 0, 1064, 1066, 1, 0, 0, 0, 1065, 1060, 1, 0, 0, 0, 1065, 1066, 1, 0, 0, 0, 1066, 1068, 1, 0, 0, 0, 1067, 1069, 5, 135, 0, 0, 1068, 1067, 1, 0, 0, 0, 1068, 1069, 1, 0, 0, 0, 1069, 53, 1, 0, 0, 0, 1070, 1071, 5, 101, 0, 0, 1071, 1073, 5, 329, 0, 0, 1072, 1074, 3, 30, 15, 0, 1073, 1072, 1, 0, 0, 0, 1073, 1074, 1, 0, 0, 0, 1074, 1075, 1, 0, 0, 0, 1075, 1077, 3, 482, 241, 0, 1076, 1078, 5, 255, 0, 0, 1077, 1076, 1, 0, 0, 0, 1077, 1078, 1, 0, 0, 0, 1078, 1080, 1, 0, 0, 0, 1079, 1081, 3, 14, 7, 0, 1080, 1079, 1, 0, 0, 0, 1080, 1081, 1, 0, 0, 0, 1081, 55, 1, 0, 0, 0, 1082, 1083, 5, 160, 0, 0, 1083, 1084, 5, 426, 0, 0, 1084, 1085, 5, 301, 0, 0, 1085, 1086, 5, 426, 0, 0, 1086, 57, 1, 0, 0, 0, 1087, 1090, 3, 654, 327, 0, 1088, 1089, 5, 395, 0, 0, 1089, 1091, 3, 654, 327, 0, 1090, 1088, 1, 0, 0, 0, 1090, 1091, 1, 0, 0, 0, 1091, 1105, 1, 0, 0, 0, 1092, 1102, 3, 654, 327, 0, 1093, 1098, 5, 395, 0, 0, 1094, 1099, 5, 104, 0, 0, 1095, 1099, 5, 175, 0, 0, 1096, 1099, 5, 375, 0, 0, 1097, 1099, 3, 654, 327, 0, 1098, 1094, 1, 0, 0, 0, 1098, 1095, 1, 0, 0, 0, 1098, 1096, 1, 0, 0, 0, 1098, 1097, 1, 0, 0, 0, 1099, 1101, 1, 0, 0, 0, 1100, 1093, 1, 0, 0, 0, 1101, 1104, 1, 0, 0, 0, 1102, 1100, 1, 0, 0, 0, 1102, 1103, 1, 0, 0, 0, 1103, 1106, 1, 0, 0, 0, 1104, 1102, 1, 0, 0, 0, 1105, 1092, 1, 0, 0, 0, 1105, 1106, 1, 0, 0, 0, 1106, 59, 1, 0, 0, 0, 1107, 1109, 3, 58, 29, 0, 1108, 1110, 3, 642, 321, 0, 1109, 1108, 1, 0, 0, 0, 1109, 1110, 1, 0, 0, 0, 1110, 61, 1, 0, 0, 0, 1111, 1113, 3, 480, 240, 0, 1112, 1114, 3, 642, 321, 0, 1113, 1112, 1, 0, 0, 0, 1113, 1114, 1, 0, 0, 0, 1114, 1116, 1, 0, 0, 0, 1115, 1117, 3, 264, 132, 0, 1116, 1115, 1, 0, 0, 0, 1116, 1117, 1, 0, 0, 0, 1117, 63, 1, 0, 0, 0, 1118, 1141, 7, 5, 0, 0, 1119, 1121, 3, 70, 35, 0, 1120, 1122, 5, 122, 0, 0, 1121, 1120, 1, 0, 0, 0, 1121, 1122, 1, 0, 0, 0, 1122, 1123, 1, 0, 0, 0, 1123, 1124, 3, 476, 238, 0, 1124, 1142, 1, 0, 0, 0, 1125, 1127, 5, 69, 0, 0, 1126, 1128, 5, 122, 0, 0, 1127, 1126, 1, 0, 0, 0, 1127, 1128, 1, 0, 0, 0, 1128, 1129, 1, 0, 0, 0, 1129, 1142, 3, 476, 238, 0, 1130, 1132, 5, 141, 0, 0, 1131, 1133, 5, 122, 0, 0, 1132, 1131, 1, 0, 0, 0, 1132, 1133, 1, 0, 0, 0, 1133, 1134, 1, 0, 0, 0, 1134, 1142, 3, 572, 286, 0, 1135, 1138, 5, 138, 0, 0, 1136, 1138, 5, 122, 0, 0, 1137, 1135, 1, 0, 0, 0, 1137, 1136, 1, 0, 0, 0, 1138, 1139, 1, 0, 0, 0, 1139, 1142, 3, 62, 31, 0, 1140, 1142, 3, 62, 31, 0, 1141, 1119, 1, 0, 0, 0, 1141, 1125, 1, 0, 0, 0, 1141, 1130, 1, 0, 0, 0, 1141, 1137, 1, 0, 0, 0, 1141, 1140, 1, 0, 0, 0, 1142, 65, 1, 0, 0, 0, 1143, 1144, 5, 10, 0, 0, 1144, 1145, 5, 329, 0, 0, 1145, 1158, 3, 640, 320, 0, 1146, 1147, 5, 52, 0, 0, 1147, 1154, 5, 319, 0, 0, 1148, 1155, 5, 215, 0, 0, 1149, 1150, 5, 134, 0, 0, 1150, 1152, 5, 46, 0, 0, 1151, 1153, 3, 254, 127, 0, 1152, 1151, 1, 0, 0, 0, 1152, 1153, 1, 0, 0, 0, 1153, 1155, 1, 0, 0, 0, 1154, 1148, 1, 0, 0, 0, 1154, 1149, 1, 0, 0, 0, 1154, 1155, 1, 0, 0, 0, 1155, 1159, 1, 0, 0, 0, 1156, 1157, 5, 33, 0, 0, 1157, 1159, 5, 204, 0, 0, 1158, 1146, 1, 0, 0, 0, 1158, 1156, 1, 0, 0, 0, 1159, 67, 1, 0, 0, 0, 1160, 1161, 7, 6, 0, 0, 1161, 69, 1, 0, 0, 0, 1162, 1163, 7, 7, 0, 0, 1163, 71, 1, 0, 0, 0, 1164, 1165, 5, 308, 0, 0, 1165, 1168, 7, 8, 0, 0, 1166, 1167, 5, 184, 0, 0, 1167, 1169, 3, 194, 97, 0, 1168, 1166, 1, 0, 0, 0, 1168, 1169, 1, 0, 0, 0, 1169, 1348, 1, 0, 0, 0, 1170, 1172, 5, 308, 0, 0, 1171, 1173, 5, 122, 0, 0, 1172, 1171, 1, 0, 0, 0, 1172, 1173, 1, 0, 0, 0, 1173, 1174, 1, 0, 0, 0, 1174, 1178, 5, 330, 0, 0, 1175, 1176, 3, 68, 34, 0, 1176, 1177, 3, 476, 238, 0, 1177, 1179, 1, 0, 0, 0, 1178, 1175, 1, 0, 0, 0, 1178, 1179, 1, 0, 0, 0, 1179, 1181, 1, 0, 0, 0, 1180, 1182, 3, 74, 37, 0, 1181, 1180, 1, 0, 0, 0, 1181, 1182, 1, 0, 0, 0, 1182, 1348, 1, 0, 0, 0, 1183, 1184, 5, 308, 0, 0, 1184, 1188, 5, 379, 0, 0, 1185, 1186, 3, 68, 34, 0, 1186, 1187, 3, 476, 238, 0, 1187, 1189, 1, 0, 0, 0, 1188, 1185, 1, 0, 0, 0, 1188, 1189, 1, 0, 0, 0, 1189, 1193, 1, 0, 0, 0, 1190, 1191, 5, 184, 0, 0, 1191, 1194, 3, 194, 97, 0, 1192, 1194, 3, 194, 97, 0, 1193, 1190, 1, 0, 0, 0, 1193, 1192, 1, 0, 0, 0, 1193, 1194, 1, 0, 0, 0, 1194, 1348, 1, 0, 0, 0, 1195, 1196, 5, 308, 0, 0, 1196, 1197, 5, 202, 0, 0, 1197, 1201, 5, 379, 0, 0, 1198, 1199, 3, 68, 34, 0, 1199, 1200, 3, 476, 238, 0, 1200, 1202, 1, 0, 0, 0, 1201, 1198, 1, 0, 0, 0, 1201, 1202, 1, 0, 0, 0, 1202, 1206, 1, 0, 0, 0, 1203, 1204, 5, 184, 0, 0, 1204, 1207, 3, 194, 97, 0, 1205, 1207, 3, 194, 97, 0, 1206, 1203, 1, 0, 0, 0, 1206, 1205, 1, 0, 0, 0, 1206, 1207, 1, 0, 0, 0, 1207, 1348, 1, 0, 0, 0, 1208, 1210, 5, 308, 0, 0, 1209, 1211, 5, 315, 0, 0, 1210, 1209, 1, 0, 0, 0, 1210, 1211, 1, 0, 0, 0, 1211, 1212, 1, 0, 0, 0, 1212, 1213, 5, 46, 0, 0, 1213, 1214, 3, 68, 34, 0, 1214, 1218, 3, 480, 240, 0, 1215, 1216, 3, 68, 34, 0, 1216, 1217, 3, 476, 238, 0, 1217, 1219, 1, 0, 0, 0, 1218, 1215, 1, 0, 0, 0, 1218, 1219, 1, 0, 0, 0, 1219, 1223, 1, 0, 0, 0, 1220, 1221, 5, 184, 0, 0, 1221, 1224, 3, 194, 97, 0, 1222, 1224, 3, 194, 97, 0, 1223, 1220, 1, 0, 0, 0, 1223, 1222, 1, 0, 0, 0, 1223, 1224, 1, 0, 0, 0, 1224, 1348, 1, 0, 0, 0, 1225, 1226, 5, 308, 0, 0, 1226, 1229, 5, 142, 0, 0, 1227, 1228, 5, 184, 0, 0, 1228, 1230, 3, 572, 286, 0, 1229, 1227, 1, 0, 0, 0, 1229, 1230, 1, 0, 0, 0, 1230, 1348, 1, 0, 0, 0, 1231, 1232, 5, 308, 0, 0, 1232, 1233, 5, 239, 0, 0, 1233, 1235, 3, 480, 240, 0, 1234, 1236, 3, 642, 321, 0, 1235, 1234, 1, 0, 0, 0, 1235, 1236, 1, 0, 0, 0, 1236, 1238, 1, 0, 0, 0, 1237, 1239, 3, 500, 250, 0, 1238, 1237, 1, 0, 0, 0, 1238, 1239, 1, 0, 0, 0, 1239, 1241, 1, 0, 0, 0, 1240, 1242, 3, 556, 278, 0, 1241, 1240, 1, 0, 0, 0, 1241, 1242, 1, 0, 0, 0, 1242, 1244, 1, 0, 0, 0, 1243, 1245, 3, 390, 195, 0, 1244, 1243, 1, 0, 0, 0, 1244, 1245, 1, 0, 0, 0, 1245, 1348, 1, 0, 0, 0, 1246, 1247, 5, 308, 0, 0, 1247, 1253, 5, 58, 0, 0, 1248, 1249, 3, 70, 35, 0, 1249, 1250, 3, 476, 238, 0, 1250, 1254, 1, 0, 0, 0, 1251, 1252, 5, 329, 0, 0, 1252, 1254, 3, 482, 241, 0, 1253, 1248, 1, 0, 0, 0, 1253, 1251, 1, 0, 0, 0, 1254, 1348, 1, 0, 0, 0, 1255, 1256, 5, 308, 0, 0, 1256, 1257, 5, 329, 0, 0, 1257, 1261, 5, 122, 0, 0, 1258, 1259, 3, 68, 34, 0, 1259, 1260, 3, 476, 238, 0, 1260, 1262, 1, 0, 0, 0, 1261, 1258, 1, 0, 0, 0, 1261, 1262, 1, 0, 0, 0, 1262, 1263, 1, 0, 0, 0, 1263, 1264, 5, 184, 0, 0, 1264, 1266, 3, 194, 97, 0, 1265, 1267, 3, 642, 321, 0, 1266, 1265, 1, 0, 0, 0, 1266, 1267, 1, 0, 0, 0, 1267, 1348, 1, 0, 0, 0, 1268, 1269, 5, 308, 0, 0, 1269, 1270, 5, 332, 0, 0, 1270, 1274, 3, 482, 241, 0, 1271, 1272, 5, 399, 0, 0, 1272, 1273, 5, 426, 0, 0, 1273, 1275, 5, 400, 0, 0, 1274, 1271, 1, 0, 0, 0, 1274, 1275, 1, 0, 0, 0, 1275, 1348, 1, 0, 0, 0, 1276, 1277, 5, 308, 0, 0, 1277, 1289, 5, 191, 0, 0, 1278, 1279, 3, 70, 35, 0, 1279, 1281, 3, 476, 238, 0, 1280, 1282, 5, 122, 0, 0, 1281, 1280, 1, 0, 0, 0, 1281, 1282, 1, 0, 0, 0, 1282, 1290, 1, 0, 0, 0, 1283, 1285, 3, 60, 30, 0, 1284, 1283, 1, 0, 0, 0, 1284, 1285, 1, 0, 0, 0, 1285, 1287, 1, 0, 0, 0, 1286, 1288, 5, 122, 0, 0, 1287, 1286, 1, 0, 0, 0, 1287, 1288, 1, 0, 0, 0, 1288, 1290, 1, 0, 0, 0, 1289, 1278, 1, 0, 0, 0, 1289, 1284, 1, 0, 0, 0, 1290, 1348, 1, 0, 0, 0, 1291, 1292, 5, 308, 0, 0, 1292, 1319, 5, 50, 0, 0, 1293, 1294, 5, 51, 0, 0, 1294, 1295, 5, 405, 0, 0, 1295, 1320, 5, 431, 0, 0, 1296, 1297, 3, 70, 35, 0, 1297, 1298, 3, 476, 238, 0, 1298, 1303, 1, 0, 0, 0, 1299, 1301, 3, 60, 30, 0, 1300, 1299, 1, 0, 0, 0, 1300, 1301, 1, 0, 0, 0, 1301, 1303, 1, 0, 0, 0, 1302, 1296, 1, 0, 0, 0, 1302, 1300, 1, 0, 0, 0, 1303, 1305, 1, 0, 0, 0, 1304, 1306, 3, 410, 205, 0, 1305, 1304, 1, 0, 0, 0, 1305, 1306, 1, 0, 0, 0, 1306, 1308, 1, 0, 0, 0, 1307, 1309, 3, 412, 206, 0, 1308, 1307, 1, 0, 0, 0, 1308, 1309, 1, 0, 0, 0, 1309, 1311, 1, 0, 0, 0, 1310, 1312, 3, 414, 207, 0, 1311, 1310, 1, 0, 0, 0, 1311, 1312, 1, 0, 0, 0, 1312, 1314, 1, 0, 0, 0, 1313, 1315, 3, 556, 278, 0, 1314, 1313, 1, 0, 0, 0, 1314, 1315, 1, 0, 0, 0, 1315, 1317, 1, 0, 0, 0, 1316, 1318, 3, 390, 195, 0, 1317, 1316, 1, 0, 0, 0, 1317, 1318, 1, 0, 0, 0, 1318, 1320, 1, 0, 0, 0, 1319, 1293, 1, 0, 0, 0, 1319, 1302, 1, 0, 0, 0, 1320, 1348, 1, 0, 0, 0, 1321, 1322, 5, 308, 0, 0, 1322, 1348, 5, 346, 0, 0, 1323, 1324, 5, 308, 0, 0, 1324, 1325, 5, 54, 0, 0, 1325, 1348, 5, 426, 0, 0, 1326, 1327, 5, 308, 0, 0, 1327, 1331, 5, 280, 0, 0, 1328, 1329, 5, 243, 0, 0, 1329, 1332, 3, 654, 327, 0, 1330, 1332, 5, 244, 0, 0, 1331, 1328, 1, 0, 0, 0, 1331, 1330, 1, 0, 0, 0, 1332, 1348, 1, 0, 0, 0, 1333, 1334, 5, 308, 0, 0, 1334, 1348, 5, 70, 0, 0, 1335, 1337, 5, 308, 0, 0, 1336, 1338, 5, 138, 0, 0, 1337, 1336, 1, 0, 0, 0, 1337, 1338, 1, 0, 0, 0, 1338, 1339, 1, 0, 0, 0, 1339, 1340, 7, 9, 0, 0, 1340, 1341, 5, 224, 0, 0, 1341, 1345, 3, 482, 241, 0, 1342, 1343, 3, 68, 34, 0, 1343, 1344, 3, 476, 238, 0, 1344, 1346, 1, 0, 0, 0, 1345, 1342, 1, 0, 0, 0, 1345, 1346, 1, 0, 0, 0, 1346, 1348, 1, 0, 0, 0, 1347, 1164, 1, 0, 0, 0, 1347, 1170, 1, 0, 0, 0, 1347, 1183, 1, 0, 0, 0, 1347, 1195, 1, 0, 0, 0, 1347, 1208, 1, 0, 0, 0, 1347, 1225, 1, 0, 0, 0, 1347, 1231, 1, 0, 0, 0, 1347, 1246, 1, 0, 0, 0, 1347, 1255, 1, 0, 0, 0, 1347, 1268, 1, 0, 0, 0, 1347, 1276, 1, 0, 0, 0, 1347, 1291, 1, 0, 0, 0, 1347, 1321, 1, 0, 0, 0, 1347, 1323, 1, 0, 0, 0, 1347, 1326, 1, 0, 0, 0, 1347, 1333, 1, 0, 0, 0, 1347, 1335, 1, 0, 0, 0, 1348, 73, 1, 0, 0, 0, 1349, 1350, 5, 384, 0, 0, 1350, 1351, 3, 654, 327, 0, 1351, 1352, 5, 405, 0, 0, 1352, 1353, 5, 426, 0, 0, 1353, 1358, 1, 0, 0, 0, 1354, 1355, 5, 184, 0, 0, 1355, 1358, 3, 194, 97, 0, 1356, 1358, 3, 194, 97, 0, 1357, 1349, 1, 0, 0, 0, 1357, 1354, 1, 0, 0, 0, 1357, 1356, 1, 0, 0, 0, 1358, 75, 1, 0, 0, 0, 1359, 1360, 5, 190, 0, 0, 1360, 1361, 5, 329, 0, 0, 1361, 1362, 3, 640, 320, 0, 1362, 1363, 3, 80, 40, 0, 1363, 77, 1, 0, 0, 0, 1364, 1365, 5, 190, 0, 0, 1365, 1366, 3, 70, 35, 0, 1366, 1367, 3, 476, 238, 0, 1367, 1368, 3, 80, 40, 0, 1368, 79, 1, 0, 0, 0, 1369, 1370, 7, 10, 0, 0, 1370, 81, 1, 0, 0, 0, 1371, 1372, 5, 361, 0, 0, 1372, 1373, 5, 329, 0, 0, 1373, 1374, 3, 640, 320, 0, 1374, 83, 1, 0, 0, 0, 1375, 1376, 5, 361, 0, 0, 1376, 1377, 3, 70, 35, 0, 1377, 1378, 3, 476, 238, 0, 1378, 85, 1, 0, 0, 0, 1379, 1380, 5, 58, 0, 0, 1380, 1381, 5, 287, 0, 0, 1381, 1382, 3, 654, 327, 0, 1382, 87, 1, 0, 0, 0, 1383, 1384, 5, 101, 0, 0, 1384, 1385, 5, 287, 0, 0, 1385, 1386, 3, 654, 327, 0, 1386, 89, 1, 0, 0, 0, 1387, 1388, 5, 143, 0, 0, 1388, 1390, 3, 118, 59, 0, 1389, 1391, 3, 112, 56, 0, 1390, 1389, 1, 0, 0, 0, 1390, 1391, 1, 0, 0, 0, 1391, 1392, 1, 0, 0, 0, 1392, 1393, 5, 341, 0, 0, 1393, 1395, 3, 124, 62, 0, 1394, 1396, 3, 130, 65, 0, 1395, 1394, 1, 0, 0, 0, 1395, 1396, 1, 0, 0, 0, 1396, 91, 1, 0, 0, 0, 1397, 1399, 5, 283, 0, 0, 1398, 1400, 3, 132, 66, 0, 1399, 1398, 1, 0, 0, 0, 1399, 1400, 1, 0, 0, 0, 1400, 1401, 1, 0, 0, 0, 1401, 1403, 3, 118, 59, 0, 1402, 1404, 3, 112, 56, 0, 1403, 1402, 1, 0, 0, 0, 1403, 1404, 1, 0, 0, 0, 1404, 1405, 1, 0, 0, 0, 1405, 1406, 5, 139, 0, 0, 1406, 1407, 3, 124, 62, 0, 1407, 93, 1, 0, 0, 0, 1408, 1410, 5, 143, 0, 0, 1409, 1411, 5, 287, 0, 0, 1410, 1409, 1, 0, 0, 0, 1410, 1411, 1, 0, 0, 0, 1411, 1412, 1, 0, 0, 0, 1412, 1417, 3, 654, 327, 0, 1413, 1414, 5, 397, 0, 0, 1414, 1416, 3, 654, 327, 0, 1415, 1413, 1, 0, 0, 0, 1416, 1419, 1, 0, 0, 0, 1417, 1415, 1, 0, 0, 0, 1417, 1418, 1, 0, 0, 0, 1418, 1420, 1, 0, 0, 0, 1419, 1417, 1, 0, 0, 0, 1420, 1421, 5, 341, 0, 0, 1421, 1423, 3, 124, 62, 0, 1422, 1424, 3, 136, 68, 0, 1423, 1422, 1, 0, 0, 0, 1423, 1424, 1, 0, 0, 0, 1424, 95, 1, 0, 0, 0, 1425, 1427, 5, 283, 0, 0, 1426, 1428, 3, 134, 67, 0, 1427, 1426, 1, 0, 0, 0, 1427, 1428, 1, 0, 0, 0, 1428, 1430, 1, 0, 0, 0, 1429, 1431, 5, 287, 0, 0, 1430, 1429, 1, 0, 0, 0, 1430, 1431, 1, 0, 0, 0, 1431, 1432, 1, 0, 0, 0, 1432, 1437, 3, 654, 327, 0, 1433, 1434, 5, 397, 0, 0, 1434, 1436, 3, 654, 327, 0, 1435, 1433, 1, 0, 0, 0, 1436, 1439, 1, 0, 0, 0, 1437, 1435, 1, 0, 0, 0, 1437, 1438, 1, 0, 0, 0, 1438, 1440, 1, 0, 0, 0, 1439, 1437, 1, 0, 0, 0, 1440, 1441, 5, 139, 0, 0, 1441, 1442, 3, 124, 62, 0, 1442, 97, 1, 0, 0, 0, 1443, 1444, 5, 308, 0, 0, 1444, 1445, 5, 287, 0, 0, 1445, 1446, 5, 143, 0, 0, 1446, 1447, 3, 126, 63, 0, 1447, 99, 1, 0, 0, 0, 1448, 1449, 5, 308, 0, 0, 1449, 1450, 5, 288, 0, 0, 1450, 101, 1, 0, 0, 0, 1451, 1452, 5, 308, 0, 0, 1452, 1453, 5, 62, 0, 0, 1453, 1454, 5, 288, 0, 0, 1454, 103, 1, 0, 0, 0, 1455, 1456, 5, 304, 0, 0, 1456, 1460, 5, 287, 0, 0, 1457, 1461, 5, 7, 0, 0, 1458, 1461, 5, 213, 0, 0, 1459, 1461, 3, 654, 327, 0, 1460, 1457, 1, 0, 0, 0, 1460, 1458, 1, 0, 0, 0, 1460, 1459, 1, 0, 0, 0, 1461, 105, 1, 0, 0, 0, 1462, 1463, 5, 308, 0, 0, 1463, 1465, 5, 143, 0, 0, 1464, 1466, 3, 126, 63, 0, 1465, 1464, 1, 0, 0, 0, 1465, 1466, 1, 0, 0, 0, 1466, 1469, 1, 0, 0, 0, 1467, 1468, 5, 224, 0, 0, 1468, 1470, 3, 110, 55, 0, 1469, 1467, 1, 0, 0, 0, 1469, 1470, 1, 0, 0, 0, 1470, 107, 1, 0, 0, 0, 1471, 1472, 5, 308, 0, 0, 1472, 1473, 5, 252, 0, 0, 1473, 1474, 3, 654, 327, 0, 1474, 109, 1, 0, 0, 0, 1475, 1478, 5, 7, 0, 0, 1476, 1478, 3, 116, 58, 0, 1477, 1475, 1, 0, 0, 0, 1477, 1476, 1, 0, 0, 0, 1478, 111, 1, 0, 0, 0, 1479, 1480, 5, 224, 0, 0, 1480, 1481, 3, 114, 57, 0, 1481, 113, 1, 0, 0, 0, 1482, 1483, 3, 70, 35, 0, 1483, 1484, 3, 476, 238, 0, 1484, 1494, 1, 0, 0, 0, 1485, 1487, 5, 329, 0, 0, 1486, 1485, 1, 0, 0, 0, 1486, 1487, 1, 0, 0, 0, 1487, 1488, 1, 0, 0, 0, 1488, 1494, 3, 640, 320, 0, 1489, 1490, 5, 366, 0, 0, 1490, 1494, 5, 426, 0, 0, 1491, 1492, 5, 303, 0, 0, 1492, 1494, 3, 654, 327, 0, 1493, 1482, 1, 0, 0, 0, 1493, 1486, 1, 0, 0, 0, 1493, 1489, 1, 0, 0, 0, 1493, 1491, 1, 0, 0, 0, 1494, 115, 1, 0, 0, 0, 1495, 1496, 3, 70, 35, 0, 1496, 1497, 3, 476, 238, 0, 1497, 1516, 1, 0, 0, 0, 1498, 1500, 5, 329, 0, 0, 1499, 1498, 1, 0, 0, 0, 1499, 1500, 1, 0, 0, 0, 1500, 1501, 1, 0, 0, 0, 1501, 1506, 3, 482, 241, 0, 1502, 1503, 5, 399, 0, 0, 1503, 1504, 3, 254, 127, 0, 1504, 1505, 5, 400, 0, 0, 1505, 1507, 1, 0, 0, 0, 1506, 1502, 1, 0, 0, 0, 1506, 1507, 1, 0, 0, 0, 1507, 1509, 1, 0, 0, 0, 1508, 1510, 3, 642, 321, 0, 1509, 1508, 1, 0, 0, 0, 1509, 1510, 1, 0, 0, 0, 1510, 1516, 1, 0, 0, 0, 1511, 1512, 5, 366, 0, 0, 1512, 1516, 5, 426, 0, 0, 1513, 1514, 5, 303, 0, 0, 1514, 1516, 3, 654, 327, 0, 1515, 1495, 1, 0, 0, 0, 1515, 1499, 1, 0, 0, 0, 1515, 1511, 1, 0, 0, 0, 1515, 1513, 1, 0, 0, 0, 1516, 117, 1, 0, 0, 0, 1517, 1522, 3, 120, 60, 0, 1518, 1519, 5, 397, 0, 0, 1519, 1521, 3, 120, 60, 0, 1520, 1518, 1, 0, 0, 0, 1521, 1524, 1, 0, 0, 0, 1522, 1520, 1, 0, 0, 0, 1522, 1523, 1, 0, 0, 0, 1523, 119, 1, 0, 0, 0, 1524, 1522, 1, 0, 0, 0, 1525, 1530, 3, 122, 61, 0, 1526, 1527, 5, 399, 0, 0, 1527, 1528, 3, 254, 127, 0, 1528, 1529, 5, 400, 0, 0, 1529, 1531, 1, 0, 0, 0, 1530, 1526, 1, 0, 0, 0, 1530, 1531, 1, 0, 0, 0, 1531, 121, 1, 0, 0, 0, 1532, 1533, 7, 11, 0, 0, 1533, 123, 1, 0, 0, 0, 1534, 1539, 3, 126, 63, 0, 1535, 1536, 5, 397, 0, 0, 1536, 1538, 3, 126, 63, 0, 1537, 1535, 1, 0, 0, 0, 1538, 1541, 1, 0, 0, 0, 1539, 1537, 1, 0, 0, 0, 1539, 1540, 1, 0, 0, 0, 1540, 125, 1, 0, 0, 0, 1541, 1539, 1, 0, 0, 0, 1542, 1543, 5, 369, 0, 0, 1543, 1549, 3, 658, 329, 0, 1544, 1545, 5, 144, 0, 0, 1545, 1549, 3, 658, 329, 0, 1546, 1547, 5, 287, 0, 0, 1547, 1549, 3, 654, 327, 0, 1548, 1542, 1, 0, 0, 0, 1548, 1544, 1, 0, 0, 0, 1548, 1546, 1, 0, 0, 0, 1549, 127, 1, 0, 0, 0, 1550, 1551, 5, 369, 0, 0, 1551, 1556, 3, 658, 329, 0, 1552, 1553, 5, 287, 0, 0, 1553, 1556, 3, 654, 327, 0, 1554, 1556, 3, 654, 327, 0, 1555, 1550, 1, 0, 0, 0, 1555, 1552, 1, 0, 0, 0, 1555, 1554, 1, 0, 0, 0, 1556, 129, 1, 0, 0, 0, 1557, 1558, 5, 387, 0, 0, 1558, 1559, 5, 143, 0, 0, 1559, 1560, 5, 227, 0, 0, 1560, 131, 1, 0, 0, 0, 1561, 1562, 5, 143, 0, 0, 1562, 1563, 5, 227, 0, 0, 1563, 1564, 5, 134, 0, 0, 1564, 133, 1, 0, 0, 0, 1565, 1566, 5, 5, 0, 0, 1566, 1567, 5, 227, 0, 0, 1567, 1568, 5, 134, 0, 0, 1568, 135, 1, 0, 0, 0, 1569, 1570, 5, 387, 0, 0, 1570, 1571, 5, 5, 0, 0, 1571, 1572, 5, 227, 0, 0, 1572, 137, 1, 0, 0, 0, 1573, 1575, 5, 212, 0, 0, 1574, 1576, 5, 276, 0, 0, 1575, 1574, 1, 0, 0, 0, 1575, 1576, 1, 0, 0, 0, 1576, 1577, 1, 0, 0, 0, 1577, 1578, 5, 329, 0, 0, 1578, 1584, 3, 482, 241, 0, 1579, 1580, 7, 12, 0, 0, 1580, 1582, 5, 239, 0, 0, 1581, 1583, 3, 646, 323, 0, 1582, 1581, 1, 0, 0, 0, 1582, 1583, 1, 0, 0, 0, 1583, 1585, 1, 0, 0, 0, 1584, 1579, 1, 0, 0, 0, 1584, 1585, 1, 0, 0, 0, 1585, 139, 1, 0, 0, 0, 1586, 1591, 3, 142, 71, 0, 1587, 1588, 5, 397, 0, 0, 1588, 1590, 3, 142, 71, 0, 1589, 1587, 1, 0, 0, 0, 1590, 1593, 1, 0, 0, 0, 1591, 1589, 1, 0, 0, 0, 1591, 1592, 1, 0, 0, 0, 1592, 141, 1, 0, 0, 0, 1593, 1591, 1, 0, 0, 0, 1594, 1595, 3, 144, 72, 0, 1595, 1596, 5, 426, 0, 0, 1596, 143, 1, 0, 0, 0, 1597, 1598, 7, 13, 0, 0, 1598, 145, 1, 0, 0, 0, 1599, 1601, 5, 58, 0, 0, 1600, 1602, 5, 333, 0, 0, 1601, 1600, 1, 0, 0, 0, 1601, 1602, 1, 0, 0, 0, 1602, 1603, 1, 0, 0, 0, 1603, 1604, 5, 141, 0, 0, 1604, 1605, 3, 570, 285, 0, 1605, 1606, 5, 17, 0, 0, 1606, 1609, 5, 426, 0, 0, 1607, 1608, 5, 370, 0, 0, 1608, 1610, 3, 140, 70, 0, 1609, 1607, 1, 0, 0, 0, 1609, 1610, 1, 0, 0, 0, 1610, 147, 1, 0, 0, 0, 1611, 1613, 5, 101, 0, 0, 1612, 1614, 5, 333, 0, 0, 1613, 1612, 1, 0, 0, 0, 1613, 1614, 1, 0, 0, 0, 1614, 1615, 1, 0, 0, 0, 1615, 1617, 5, 141, 0, 0, 1616, 1618, 3, 30, 15, 0, 1617, 1616, 1, 0, 0, 0, 1617, 1618, 1, 0, 0, 0, 1618, 1619, 1, 0, 0, 0, 1619, 1620, 3, 572, 286, 0, 1620, 149, 1, 0, 0, 0, 1621, 1622, 5, 271, 0, 0, 1622, 1623, 7, 14, 0, 0, 1623, 151, 1, 0, 0, 0, 1624, 1625, 5, 58, 0, 0, 1625, 1626, 5, 333, 0, 0, 1626, 1627, 5, 194, 0, 0, 1627, 1628, 5, 432, 0, 0, 1628, 1630, 5, 399, 0, 0, 1629, 1631, 3, 248, 124, 0, 1630, 1629, 1, 0, 0, 0, 1630, 1631, 1, 0, 0, 0, 1631, 1632, 1, 0, 0, 0, 1632, 1633, 5, 400, 0, 0, 1633, 1634, 3, 596, 298, 0, 1634, 153, 1, 0, 0, 0, 1635, 1636, 5, 101, 0, 0, 1636, 1637, 5, 333, 0, 0, 1637, 1639, 5, 194, 0, 0, 1638, 1640, 3, 30, 15, 0, 1639, 1638, 1, 0, 0, 0, 1639, 1640, 1, 0, 0, 0, 1640, 1641, 1, 0, 0, 0, 1641, 1642, 5, 432, 0, 0, 1642, 155, 1, 0, 0, 0, 1643, 1644, 5, 58, 0, 0, 1644, 1645, 5, 155, 0, 0, 1645, 1646, 3, 654, 327, 0, 1646, 1647, 5, 224, 0, 0, 1647, 1648, 5, 329, 0, 0, 1648, 1649, 3, 482, 241, 0, 1649, 1650, 3, 268, 134, 0, 1650, 1651, 5, 17, 0, 0, 1651, 1655, 5, 426, 0, 0, 1652, 1653, 5, 387, 0, 0, 1653, 1654, 5, 84, 0, 0, 1654, 1656, 5, 265, 0, 0, 1655, 1652, 1, 0, 0, 0, 1655, 1656, 1, 0, 0, 0, 1656, 1659, 1, 0, 0, 0, 1657, 1658, 5, 150, 0, 0, 1658, 1660, 3, 226, 113, 0, 1659, 1657, 1, 0, 0, 0, 1659, 1660, 1, 0, 0, 0, 1660, 1664, 1, 0, 0, 0, 1661, 1662, 5, 154, 0, 0, 1662, 1663, 5, 329, 0, 0, 1663, 1665, 3, 482, 241, 0, 1664, 1661, 1, 0, 0, 0, 1664, 1665, 1, 0, 0, 0, 1665, 1669, 1, 0, 0, 0, 1666, 1667, 5, 238, 0, 0, 1667, 1668, 5, 32, 0, 0, 1668, 1670, 3, 268, 134, 0, 1669, 1666, 1, 0, 0, 0, 1669, 1670, 1, 0, 0, 0, 1670, 1675, 1, 0, 0, 0, 1671, 1673, 3, 222, 111, 0, 1672, 1671, 1, 0, 0, 0, 1672, 1673, 1, 0, 0, 0, 1673, 1674, 1, 0, 0, 0, 1674, 1676, 3, 246, 123, 0, 1675, 1672, 1, 0, 0, 0, 1675, 1676, 1, 0, 0, 0, 1676, 1678, 1, 0, 0, 0, 1677, 1679, 3, 428, 214, 0, 1678, 1677, 1, 0, 0, 0, 1678, 1679, 1, 0, 0, 0, 1679, 1681, 1, 0, 0, 0, 1680, 1682, 3, 224, 112, 0, 1681, 1680, 1, 0, 0, 0, 1681, 1682, 1, 0, 0, 0, 1682, 1684, 1, 0, 0, 0, 1683, 1685, 3, 196, 98, 0, 1684, 1683, 1, 0, 0, 0, 1684, 1685, 1, 0, 0, 0, 1685, 157, 1, 0, 0, 0, 1686, 1687, 5, 101, 0, 0, 1687, 1689, 5, 155, 0, 0, 1688, 1690, 3, 30, 15, 0, 1689, 1688, 1, 0, 0, 0, 1689, 1690, 1, 0, 0, 0, 1690, 1691, 1, 0, 0, 0, 1691, 1692, 3, 654, 327, 0, 1692, 1693, 5, 224, 0, 0, 1693, 1694, 3, 482, 241, 0, 1694, 159, 1, 0, 0, 0, 1695, 1698, 5, 58, 0, 0, 1696, 1697, 5, 228, 0, 0, 1697, 1699, 5, 278, 0, 0, 1698, 1696, 1, 0, 0, 0, 1698, 1699, 1, 0, 0, 0, 1699, 1700, 1, 0, 0, 0, 1700, 1702, 5, 378, 0, 0, 1701, 1703, 3, 32, 16, 0, 1702, 1701, 1, 0, 0, 0, 1702, 1703, 1, 0, 0, 0, 1703, 1704, 1, 0, 0, 0, 1704, 1709, 3, 488, 244, 0, 1705, 1706, 5, 399, 0, 0, 1706, 1707, 3, 308, 154, 0, 1707, 1708, 5, 400, 0, 0, 1708, 1710, 1, 0, 0, 0, 1709, 1705, 1, 0, 0, 0, 1709, 1710, 1, 0, 0, 0, 1710, 1712, 1, 0, 0, 0, 1711, 1713, 3, 196, 98, 0, 1712, 1711, 1, 0, 0, 0, 1712, 1713, 1, 0, 0, 0, 1713, 1715, 1, 0, 0, 0, 1714, 1716, 3, 162, 81, 0, 1715, 1714, 1, 0, 0, 0, 1715, 1716, 1, 0, 0, 0, 1716, 1718, 1, 0, 0, 0, 1717, 1719, 3, 224, 112, 0, 1718, 1717, 1, 0, 0, 0, 1718, 1719, 1, 0, 0, 0, 1719, 1720, 1, 0, 0, 0, 1720, 1721, 5, 17, 0, 0, 1721, 1722, 3, 384, 192, 0, 1722, 161, 1, 0, 0, 0, 1723, 1724, 5, 238, 0, 0, 1724, 1730, 5, 224, 0, 0, 1725, 1726, 5, 399, 0, 0, 1726, 1731, 3, 254, 127, 0, 1727, 1728, 5, 316, 0, 0, 1728, 1729, 5, 399, 0, 0, 1729, 1731, 3, 204, 102, 0, 1730, 1725, 1, 0, 0, 0, 1730, 1727, 1, 0, 0, 0, 1731, 1732, 1, 0, 0, 0, 1732, 1733, 5, 400, 0, 0, 1733, 163, 1, 0, 0, 0, 1734, 1737, 3, 166, 83, 0, 1735, 1737, 3, 168, 84, 0, 1736, 1734, 1, 0, 0, 0, 1736, 1735, 1, 0, 0, 0, 1737, 165, 1, 0, 0, 0, 1738, 1739, 5, 42, 0, 0, 1739, 1740, 5, 224, 0, 0, 1740, 1741, 5, 399, 0, 0, 1741, 1742, 3, 254, 127, 0, 1742, 1743, 5, 400, 0, 0, 1743, 167, 1, 0, 0, 0, 1744, 1745, 3, 170, 85, 0, 1745, 1746, 3, 172, 86, 0, 1746, 169, 1, 0, 0, 0, 1747, 1748, 5, 98, 0, 0, 1748, 1749, 5, 224, 0, 0, 1749, 1750, 5, 399, 0, 0, 1750, 1751, 3, 254, 127, 0, 1751, 1752, 5, 400, 0, 0, 1752, 171, 1, 0, 0, 0, 1753, 1754, 5, 315, 0, 0, 1754, 1755, 5, 224, 0, 0, 1755, 1756, 5, 399, 0, 0, 1756, 1757, 3, 254, 127, 0, 1757, 1758, 5, 400, 0, 0, 1758, 173, 1, 0, 0, 0, 1759, 1760, 5, 101, 0, 0, 1760, 1762, 5, 378, 0, 0, 1761, 1763, 3, 30, 15, 0, 1762, 1761, 1, 0, 0, 0, 1762, 1763, 1, 0, 0, 0, 1763, 1764, 1, 0, 0, 0, 1764, 1765, 3, 486, 243, 0, 1765, 175, 1, 0, 0, 0, 1766, 1767, 5, 58, 0, 0, 1767, 1768, 5, 202, 0, 0, 1768, 1770, 5, 378, 0, 0, 1769, 1771, 3, 32, 16, 0, 1770, 1769, 1, 0, 0, 0, 1770, 1771, 1, 0, 0, 0, 1771, 1772, 1, 0, 0, 0, 1772, 1774, 3, 488, 244, 0, 1773, 1775, 3, 38, 19, 0, 1774, 1773, 1, 0, 0, 0, 1774, 1775, 1, 0, 0, 0, 1775, 1777, 1, 0, 0, 0, 1776, 1778, 3, 196, 98, 0, 1777, 1776, 1, 0, 0, 0, 1777, 1778, 1, 0, 0, 0, 1778, 1780, 1, 0, 0, 0, 1779, 1781, 3, 162, 81, 0, 1780, 1779, 1, 0, 0, 0, 1780, 1781, 1, 0, 0, 0, 1781, 1783, 1, 0, 0, 0, 1782, 1784, 3, 164, 82, 0, 1783, 1782, 1, 0, 0, 0, 1783, 1784, 1, 0, 0, 0, 1784, 1786, 1, 0, 0, 0, 1785, 1787, 3, 222, 111, 0, 1786, 1785, 1, 0, 0, 0, 1786, 1787, 1, 0, 0, 0, 1787, 1789, 1, 0, 0, 0, 1788, 1790, 3, 246, 123, 0, 1789, 1788, 1, 0, 0, 0, 1789, 1790, 1, 0, 0, 0, 1790, 1792, 1, 0, 0, 0, 1791, 1793, 3, 428, 214, 0, 1792, 1791, 1, 0, 0, 0, 1792, 1793, 1, 0, 0, 0, 1793, 1795, 1, 0, 0, 0, 1794, 1796, 3, 224, 112, 0, 1795, 1794, 1, 0, 0, 0, 1795, 1796, 1, 0, 0, 0, 1796, 1797, 1, 0, 0, 0, 1797, 1798, 5, 17, 0, 0, 1798, 1799, 3, 384, 192, 0, 1799, 177, 1, 0, 0, 0, 1800, 1801, 5, 101, 0, 0, 1801, 1802, 5, 202, 0, 0, 1802, 1804, 5, 378, 0, 0, 1803, 1805, 3, 30, 15, 0, 1804, 1803, 1, 0, 0, 0, 1804, 1805, 1, 0, 0, 0, 1805, 1806, 1, 0, 0, 0, 1806, 1807, 3, 486, 243, 0, 1807, 179, 1, 0, 0, 0, 1808, 1809, 5, 58, 0, 0, 1809, 1810, 5, 293, 0, 0, 1810, 1811, 5, 258, 0, 0, 1811, 1812, 3, 654, 327, 0, 1812, 1814, 3, 188, 94, 0, 1813, 1815, 3, 190, 95, 0, 1814, 1813, 1, 0, 0, 0, 1814, 1815, 1, 0, 0, 0, 1815, 1817, 1, 0, 0, 0, 1816, 1818, 3, 272, 136, 0, 1817, 1816, 1, 0, 0, 0, 1817, 1818, 1, 0, 0, 0, 1818, 1819, 1, 0, 0, 0, 1819, 1820, 3, 192, 96, 0, 1820, 181, 1, 0, 0, 0, 1821, 1822, 5, 101, 0, 0, 1822, 1823, 5, 293, 0, 0, 1823, 1824, 5, 258, 0, 0, 1824, 1825, 3, 654, 327, 0, 1825, 183, 1, 0, 0, 0, 1826, 1827, 5, 9, 0, 0, 1827, 1828, 5, 293, 0, 0, 1828, 1829, 5, 258, 0, 0, 1829, 1830, 3, 654, 327, 0, 1830, 1831, 3, 186, 93, 0, 1831, 185, 1, 0, 0, 0, 1832, 1838, 3, 188, 94, 0, 1833, 1838, 3, 190, 95, 0, 1834, 1838, 3, 272, 136, 0, 1835, 1838, 3, 192, 96, 0, 1836, 1838, 5, 115, 0, 0, 1837, 1832, 1, 0, 0, 0, 1837, 1833, 1, 0, 0, 0, 1837, 1834, 1, 0, 0, 0, 1837, 1835, 1, 0, 0, 0, 1837, 1836, 1, 0, 0, 0, 1838, 187, 1, 0, 0, 0, 1839, 1840, 5, 59, 0, 0, 1840, 1855, 5, 426, 0, 0, 1841, 1843, 5, 111, 0, 0, 1842, 1844, 5, 431, 0, 0, 1843, 1842, 1, 0, 0, 0, 1843, 1844, 1, 0, 0, 0, 1844, 1845, 1, 0, 0, 0, 1845, 1852, 3, 594, 297, 0, 1846, 1850, 5, 20, 0, 0, 1847, 1848, 5, 223, 0, 0, 1848, 1850, 5, 32, 0, 0, 1849, 1846, 1, 0, 0, 0, 1849, 1847, 1, 0, 0, 0, 1850, 1851, 1, 0, 0, 0, 1851, 1853, 5, 426, 0, 0, 1852, 1849, 1, 0, 0, 0, 1852, 1853, 1, 0, 0, 0, 1853, 1855, 1, 0, 0, 0, 1854, 1839, 1, 0, 0, 0, 1854, 1841, 1, 0, 0, 0, 1855, 189, 1, 0, 0, 0, 1856, 1857, 5, 116, 0, 0, 1857, 1858, 5, 17, 0, 0, 1858, 1859, 5, 426, 0, 0, 1859, 191, 1, 0, 0, 0, 1860, 1862, 5, 85, 0, 0, 1861, 1860, 1, 0, 0, 0, 1861, 1862, 1, 0, 0, 0, 1862, 1863, 1, 0, 0, 0, 1863, 1864, 5, 17, 0, 0, 1864, 1865, 3, 2, 1, 0, 1865, 193, 1, 0, 0, 0, 1866, 1869, 3, 654, 327, 0, 1867, 1869, 5, 426, 0, 0, 1868, 1866, 1, 0, 0, 0, 1868, 1867, 1, 0, 0, 0, 1869, 195, 1, 0, 0, 0, 1870, 1871, 5, 47, 0, 0, 1871, 1872, 5, 426, 0, 0, 1872, 197, 1, 0, 0, 0, 1873, 1874, 5, 183, 0, 0, 1874, 1875, 5, 431, 0, 0, 1875, 199, 1, 0, 0, 0, 1876, 1877, 5, 238, 0, 0, 1877, 1886, 5, 32, 0, 0, 1878, 1881, 5, 399, 0, 0, 1879, 1882, 3, 202, 101, 0, 1880, 1882, 3, 254, 127, 0, 1881, 1879, 1, 0, 0, 0, 1881, 1880, 1, 0, 0, 0, 1882, 1887, 1, 0, 0, 0, 1883, 1884, 5, 316, 0, 0, 1884, 1885, 5, 399, 0, 0, 1885, 1887, 3, 204, 102, 0, 1886, 1878, 1, 0, 0, 0, 1886, 1883, 1, 0, 0, 0, 1887, 1888, 1, 0, 0, 0, 1888, 1889, 5, 400, 0, 0, 1889, 201, 1, 0, 0, 0, 1890, 1895, 3, 320, 160, 0, 1891, 1892, 5, 397, 0, 0, 1892, 1894, 3, 320, 160, 0, 1893, 1891, 1, 0, 0, 0, 1894, 1897, 1, 0, 0, 0, 1895, 1893, 1, 0, 0, 0, 1895, 1896, 1, 0, 0, 0, 1896, 203, 1, 0, 0, 0, 1897, 1895, 1, 0, 0, 0, 1898, 1903, 3, 206, 103, 0, 1899, 1900, 5, 397, 0, 0, 1900, 1902, 3, 206, 103, 0, 1901, 1899, 1, 0, 0, 0, 1902, 1905, 1, 0, 0, 0, 1903, 1901, 1, 0, 0, 0, 1903, 1904, 1, 0, 0, 0, 1904, 205, 1, 0, 0, 0, 1905, 1903, 1, 0, 0, 0, 1906, 1925, 3, 256, 128, 0, 1907, 1912, 3, 682, 341, 0, 1908, 1912, 3, 684, 342, 0, 1909, 1912, 3, 688, 344, 0, 1910, 1912, 3, 690, 345, 0, 1911, 1907, 1, 0, 0, 0, 1911, 1908, 1, 0, 0, 0, 1911, 1909, 1, 0, 0, 0, 1911, 1910, 1, 0, 0, 0, 1912, 1913, 1, 0, 0, 0, 1913, 1914, 5, 399, 0, 0, 1914, 1915, 3, 256, 128, 0, 1915, 1916, 5, 400, 0, 0, 1916, 1925, 1, 0, 0, 0, 1917, 1918, 7, 15, 0, 0, 1918, 1919, 5, 399, 0, 0, 1919, 1920, 5, 431, 0, 0, 1920, 1921, 5, 397, 0, 0, 1921, 1922, 3, 256, 128, 0, 1922, 1923, 5, 400, 0, 0, 1923, 1925, 1, 0, 0, 0, 1924, 1906, 1, 0, 0, 0, 1924, 1911, 1, 0, 0, 0, 1924, 1917, 1, 0, 0, 0, 1925, 207, 1, 0, 0, 0, 1926, 1927, 5, 42, 0, 0, 1927, 1928, 5, 32, 0, 0, 1928, 1929, 5, 399, 0, 0, 1929, 1930, 3, 254, 127, 0, 1930, 1937, 5, 400, 0, 0, 1931, 1932, 5, 315, 0, 0, 1932, 1933, 5, 32, 0, 0, 1933, 1934, 5, 399, 0, 0, 1934, 1935, 3, 266, 133, 0, 1935, 1936, 5, 400, 0, 0, 1936, 1938, 1, 0, 0, 0, 1937, 1931, 1, 0, 0, 0, 1937, 1938, 1, 0, 0, 0, 1938, 1939, 1, 0, 0, 0, 1939, 1940, 5, 166, 0, 0, 1940, 1941, 5, 431, 0, 0, 1941, 1942, 5, 31, 0, 0, 1942, 209, 1, 0, 0, 0, 1943, 1944, 5, 310, 0, 0, 1944, 1945, 5, 32, 0, 0, 1945, 1946, 5, 399, 0, 0, 1946, 1947, 3, 254, 127, 0, 1947, 1948, 5, 400, 0, 0, 1948, 1949, 5, 224, 0, 0, 1949, 1950, 5, 399, 0, 0, 1950, 1951, 3, 294, 147, 0, 1951, 1953, 5, 400, 0, 0, 1952, 1954, 3, 40, 20, 0, 1953, 1952, 1, 0, 0, 0, 1953, 1954, 1, 0, 0, 0, 1954, 211, 1, 0, 0, 0, 1955, 1958, 3, 218, 109, 0, 1956, 1958, 3, 220, 110, 0, 1957, 1955, 1, 0, 0, 0, 1957, 1956, 1, 0, 0, 0, 1958, 213, 1, 0, 0, 0, 1959, 1960, 5, 266, 0, 0, 1960, 1961, 5, 426, 0, 0, 1961, 215, 1, 0, 0, 0, 1962, 1963, 5, 267, 0, 0, 1963, 1964, 5, 426, 0, 0, 1964, 217, 1, 0, 0, 0, 1965, 1966, 5, 291, 0, 0, 1966, 1967, 5, 137, 0, 0, 1967, 1968, 5, 301, 0, 0, 1968, 1972, 5, 426, 0, 0, 1969, 1970, 5, 387, 0, 0, 1970, 1971, 5, 302, 0, 0, 1971, 1973, 3, 226, 113, 0, 1972, 1969, 1, 0, 0, 0, 1972, 1973, 1, 0, 0, 0, 1973, 219, 1, 0, 0, 0, 1974, 1975, 5, 291, 0, 0, 1975, 1976, 5, 137, 0, 0, 1976, 1978, 5, 87, 0, 0, 1977, 1979, 3, 236, 118, 0, 1978, 1977, 1, 0, 0, 0, 1978, 1979, 1, 0, 0, 0, 1979, 1981, 1, 0, 0, 0, 1980, 1982, 3, 238, 119, 0, 1981, 1980, 1, 0, 0, 0, 1981, 1982, 1, 0, 0, 0, 1982, 1984, 1, 0, 0, 0, 1983, 1985, 3, 240, 120, 0, 1984, 1983, 1, 0, 0, 0, 1984, 1985, 1, 0, 0, 0, 1985, 1987, 1, 0, 0, 0, 1986, 1988, 3, 242, 121, 0, 1987, 1986, 1, 0, 0, 0, 1987, 1988, 1, 0, 0, 0, 1988, 1990, 1, 0, 0, 0, 1989, 1991, 3, 244, 122, 0, 1990, 1989, 1, 0, 0, 0, 1990, 1991, 1, 0, 0, 0, 1991, 221, 1, 0, 0, 0, 1992, 1995, 3, 220, 110, 0, 1993, 1995, 3, 218, 109, 0, 1994, 1992, 1, 0, 0, 0, 1994, 1993, 1, 0, 0, 0, 1995, 223, 1, 0, 0, 0, 1996, 1997, 5, 332, 0, 0, 1997, 1998, 3, 226, 113, 0, 1998, 225, 1, 0, 0, 0, 1999, 2000, 5, 399, 0, 0, 2000, 2001, 3, 228, 114, 0, 2001, 2002, 5, 400, 0, 0, 2002, 227, 1, 0, 0, 0, 2003, 2013, 3, 232, 116, 0, 2004, 2009, 5, 426, 0, 0, 2005, 2006, 5, 397, 0, 0, 2006, 2008, 5, 426, 0, 0, 2007, 2005, 1, 0, 0, 0, 2008, 2011, 1, 0, 0, 0, 2009, 2007, 1, 0, 0, 0, 2009, 2010, 1, 0, 0, 0, 2010, 2013, 1, 0, 0, 0, 2011, 2009, 1, 0, 0, 0, 2012, 2003, 1, 0, 0, 0, 2012, 2004, 1, 0, 0, 0, 2013, 229, 1, 0, 0, 0, 2014, 2015, 5, 399, 0, 0, 2015, 2016, 3, 232, 116, 0, 2016, 2017, 5, 400, 0, 0, 2017, 231, 1, 0, 0, 0, 2018, 2023, 3, 234, 117, 0, 2019, 2020, 5, 397, 0, 0, 2020, 2022, 3, 234, 117, 0, 2021, 2019, 1, 0, 0, 0, 2022, 2025, 1, 0, 0, 0, 2023, 2021, 1, 0, 0, 0, 2023, 2024, 1, 0, 0, 0, 2024, 233, 1, 0, 0, 0, 2025, 2023, 1, 0, 0, 0, 2026, 2027, 5, 426, 0, 0, 2027, 2028, 5, 405, 0, 0, 2028, 2029, 5, 426, 0, 0, 2029, 235, 1, 0, 0, 0, 2030, 2031, 5, 127, 0, 0, 2031, 2032, 5, 334, 0, 0, 2032, 2033, 5, 32, 0, 0, 2033, 2037, 5, 426, 0, 0, 2034, 2035, 5, 110, 0, 0, 2035, 2036, 5, 32, 0, 0, 2036, 2038, 5, 426, 0, 0, 2037, 2034, 1, 0, 0, 0, 2037, 2038, 1, 0, 0, 0, 2038, 237, 1, 0, 0, 0, 2039, 2040, 5, 44, 0, 0, 2040, 2041, 5, 169, 0, 0, 2041, 2042, 5, 334, 0, 0, 2042, 2043, 5, 32, 0, 0, 2043, 2044, 5, 426, 0, 0, 2044, 239, 1, 0, 0, 0, 2045, 2046, 5, 198, 0, 0, 2046, 2047, 5, 174, 0, 0, 2047, 2048, 5, 334, 0, 0, 2048, 2049, 5, 32, 0, 0, 2049, 2050, 5, 426, 0, 0, 2050, 241, 1, 0, 0, 0, 2051, 2052, 5, 186, 0, 0, 2052, 2053, 5, 334, 0, 0, 2053, 2054, 5, 32, 0, 0, 2054, 2055, 5, 426, 0, 0, 2055, 243, 1, 0, 0, 0, 2056, 2057, 5, 219, 0, 0, 2057, 2058, 5, 85, 0, 0, 2058, 2059, 5, 17, 0, 0, 2059, 2060, 5, 426, 0, 0, 2060, 245, 1, 0, 0, 0, 2061, 2062, 5, 321, 0, 0, 2062, 2063, 5, 17, 0, 0, 2063, 2064, 5, 160, 0, 0, 2064, 2065, 5, 426, 0, 0, 2065, 2066, 5, 233, 0, 0, 2066, 2071, 5, 426, 0, 0, 2067, 2068, 5, 159, 0, 0, 2068, 2069, 5, 426, 0, 0, 2069, 2070, 5, 232, 0, 0, 2070, 2072, 5, 426, 0, 0, 2071, 2067, 1, 0, 0, 0, 2071, 2072, 1, 0, 0, 0, 2072, 2103, 1, 0, 0, 0, 2073, 2074, 5, 321, 0, 0, 2074, 2075, 5, 32, 0, 0, 2075, 2079, 5, 426, 0, 0, 2076, 2077, 5, 387, 0, 0, 2077, 2078, 5, 302, 0, 0, 2078, 2080, 3, 226, 113, 0, 2079, 2076, 1, 0, 0, 0, 2079, 2080, 1, 0, 0, 0, 2080, 2084, 1, 0, 0, 0, 2081, 2082, 5, 321, 0, 0, 2082, 2083, 5, 17, 0, 0, 2083, 2085, 3, 654, 327, 0, 2084, 2081, 1, 0, 0, 0, 2084, 2085, 1, 0, 0, 0, 2085, 2103, 1, 0, 0, 0, 2086, 2087, 5, 321, 0, 0, 2087, 2088, 5, 32, 0, 0, 2088, 2092, 3, 654, 327, 0, 2089, 2090, 5, 387, 0, 0, 2090, 2091, 5, 302, 0, 0, 2091, 2093, 3, 226, 113, 0, 2092, 2089, 1, 0, 0, 0, 2092, 2093, 1, 0, 0, 0, 2093, 2097, 1, 0, 0, 0, 2094, 2095, 5, 321, 0, 0, 2095, 2096, 5, 17, 0, 0, 2096, 2098, 3, 654, 327, 0, 2097, 2094, 1, 0, 0, 0, 2097, 2098, 1, 0, 0, 0, 2098, 2103, 1, 0, 0, 0, 2099, 2100, 5, 321, 0, 0, 2100, 2101, 5, 17, 0, 0, 2101, 2103, 3, 654, 327, 0, 2102, 2061, 1, 0, 0, 0, 2102, 2073, 1, 0, 0, 0, 2102, 2086, 1, 0, 0, 0, 2102, 2099, 1, 0, 0, 0, 2103, 247, 1, 0, 0, 0, 2104, 2109, 3, 314, 157, 0, 2105, 2106, 5, 397, 0, 0, 2106, 2108, 3, 314, 157, 0, 2107, 2105, 1, 0, 0, 0, 2108, 2111, 1, 0, 0, 0, 2109, 2107, 1, 0, 0, 0, 2109, 2110, 1, 0, 0, 0, 2110, 249, 1, 0, 0, 0, 2111, 2109, 1, 0, 0, 0, 2112, 2117, 3, 316, 158, 0, 2113, 2114, 5, 397, 0, 0, 2114, 2116, 3, 316, 158, 0, 2115, 2113, 1, 0, 0, 0, 2116, 2119, 1, 0, 0, 0, 2117, 2115, 1, 0, 0, 0, 2117, 2118, 1, 0, 0, 0, 2118, 251, 1, 0, 0, 0, 2119, 2117, 1, 0, 0, 0, 2120, 2125, 3, 344, 172, 0, 2121, 2122, 5, 397, 0, 0, 2122, 2124, 3, 344, 172, 0, 2123, 2121, 1, 0, 0, 0, 2124, 2127, 1, 0, 0, 0, 2125, 2123, 1, 0, 0, 0, 2125, 2126, 1, 0, 0, 0, 2126, 253, 1, 0, 0, 0, 2127, 2125, 1, 0, 0, 0, 2128, 2133, 3, 256, 128, 0, 2129, 2130, 5, 397, 0, 0, 2130, 2132, 3, 256, 128, 0, 2131, 2129, 1, 0, 0, 0, 2132, 2135, 1, 0, 0, 0, 2133, 2131, 1, 0, 0, 0, 2133, 2134, 1, 0, 0, 0, 2134, 255, 1, 0, 0, 0, 2135, 2133, 1, 0, 0, 0, 2136, 2140, 3, 702, 351, 0, 2137, 2138, 4, 128, 0, 0, 2138, 2140, 3, 698, 349, 0, 2139, 2136, 1, 0, 0, 0, 2139, 2137, 1, 0, 0, 0, 2140, 257, 1, 0, 0, 0, 2141, 2142, 3, 700, 350, 0, 2142, 259, 1, 0, 0, 0, 2143, 2147, 3, 702, 351, 0, 2144, 2145, 4, 130, 1, 0, 2145, 2147, 3, 698, 349, 0, 2146, 2143, 1, 0, 0, 0, 2146, 2144, 1, 0, 0, 0, 2147, 261, 1, 0, 0, 0, 2148, 2149, 3, 654, 327, 0, 2149, 263, 1, 0, 0, 0, 2150, 2160, 3, 256, 128, 0, 2151, 2156, 5, 395, 0, 0, 2152, 2157, 5, 104, 0, 0, 2153, 2157, 5, 175, 0, 0, 2154, 2157, 5, 375, 0, 0, 2155, 2157, 3, 654, 327, 0, 2156, 2152, 1, 0, 0, 0, 2156, 2153, 1, 0, 0, 0, 2156, 2154, 1, 0, 0, 0, 2156, 2155, 1, 0, 0, 0, 2157, 2159, 1, 0, 0, 0, 2158, 2151, 1, 0, 0, 0, 2159, 2162, 1, 0, 0, 0, 2160, 2158, 1, 0, 0, 0, 2160, 2161, 1, 0, 0, 0, 2161, 265, 1, 0, 0, 0, 2162, 2160, 1, 0, 0, 0, 2163, 2168, 3, 306, 153, 0, 2164, 2165, 5, 397, 0, 0, 2165, 2167, 3, 306, 153, 0, 2166, 2164, 1, 0, 0, 0, 2167, 2170, 1, 0, 0, 0, 2168, 2166, 1, 0, 0, 0, 2168, 2169, 1, 0, 0, 0, 2169, 267, 1, 0, 0, 0, 2170, 2168, 1, 0, 0, 0, 2171, 2172, 5, 399, 0, 0, 2172, 2173, 3, 254, 127, 0, 2173, 2174, 5, 400, 0, 0, 2174, 269, 1, 0, 0, 0, 2175, 2177, 3, 272, 136, 0, 2176, 2178, 3, 274, 137, 0, 2177, 2176, 1, 0, 0, 0, 2177, 2178, 1, 0, 0, 0, 2178, 2181, 1, 0, 0, 0, 2179, 2181, 3, 276, 138, 0, 2180, 2175, 1, 0, 0, 0, 2180, 2179, 1, 0, 0, 0, 2181, 271, 1, 0, 0, 0, 2182, 2185, 3, 678, 339, 0, 2183, 2185, 3, 680, 340, 0, 2184, 2182, 1, 0, 0, 0, 2184, 2183, 1, 0, 0, 0, 2185, 273, 1, 0, 0, 0, 2186, 2187, 7, 16, 0, 0, 2187, 275, 1, 0, 0, 0, 2188, 2192, 5, 109, 0, 0, 2189, 2190, 5, 216, 0, 0, 2190, 2192, 5, 109, 0, 0, 2191, 2188, 1, 0, 0, 0, 2191, 2189, 1, 0, 0, 0, 2192, 277, 1, 0, 0, 0, 2193, 2194, 7, 17, 0, 0, 2194, 279, 1, 0, 0, 0, 2195, 2196, 5, 55, 0, 0, 2196, 2198, 3, 654, 327, 0, 2197, 2195, 1, 0, 0, 0, 2197, 2198, 1, 0, 0, 0, 2198, 2199, 1, 0, 0, 0, 2199, 2201, 3, 284, 142, 0, 2200, 2202, 3, 340, 170, 0, 2201, 2200, 1, 0, 0, 0, 2201, 2202, 1, 0, 0, 0, 2202, 281, 1, 0, 0, 0, 2203, 2204, 5, 55, 0, 0, 2204, 2205, 3, 654, 327, 0, 2205, 2207, 3, 284, 142, 0, 2206, 2208, 3, 342, 171, 0, 2207, 2206, 1, 0, 0, 0, 2207, 2208, 1, 0, 0, 0, 2208, 283, 1, 0, 0, 0, 2209, 2212, 3, 286, 143, 0, 2210, 2212, 3, 288, 144, 0, 2211, 2209, 1, 0, 0, 0, 2211, 2210, 1, 0, 0, 0, 2212, 285, 1, 0, 0, 0, 2213, 2214, 3, 338, 169, 0, 2214, 2215, 3, 268, 134, 0, 2215, 287, 1, 0, 0, 0, 2216, 2217, 5, 40, 0, 0, 2217, 2218, 5, 399, 0, 0, 2218, 2219, 3, 596, 298, 0, 2219, 2220, 5, 400, 0, 0, 2220, 289, 1, 0, 0, 0, 2221, 2222, 5, 55, 0, 0, 2222, 2224, 3, 654, 327, 0, 2223, 2221, 1, 0, 0, 0, 2223, 2224, 1, 0, 0, 0, 2224, 2225, 1, 0, 0, 0, 2225, 2226, 5, 136, 0, 0, 2226, 2227, 5, 173, 0, 0, 2227, 2228, 3, 268, 134, 0, 2228, 2229, 5, 269, 0, 0, 2229, 2230, 3, 482, 241, 0, 2230, 2232, 3, 268, 134, 0, 2231, 2233, 3, 340, 170, 0, 2232, 2231, 1, 0, 0, 0, 2232, 2233, 1, 0, 0, 0, 2233, 291, 1, 0, 0, 0, 2234, 2235, 5, 55, 0, 0, 2235, 2236, 3, 654, 327, 0, 2236, 2237, 5, 136, 0, 0, 2237, 2238, 5, 173, 0, 0, 2238, 2239, 3, 268, 134, 0, 2239, 2240, 5, 269, 0, 0, 2240, 2241, 3, 482, 241, 0, 2241, 2243, 3, 268, 134, 0, 2242, 2244, 3, 342, 171, 0, 2243, 2242, 1, 0, 0, 0, 2243, 2244, 1, 0, 0, 0, 2244, 293, 1, 0, 0, 0, 2245, 2248, 3, 300, 150, 0, 2246, 2248, 3, 296, 148, 0, 2247, 2245, 1, 0, 0, 0, 2247, 2246, 1, 0, 0, 0, 2248, 295, 1, 0, 0, 0, 2249, 2254, 3, 298, 149, 0, 2250, 2251, 5, 397, 0, 0, 2251, 2253, 3, 298, 149, 0, 2252, 2250, 1, 0, 0, 0, 2253, 2256, 1, 0, 0, 0, 2254, 2252, 1, 0, 0, 0, 2254, 2255, 1, 0, 0, 0, 2255, 297, 1, 0, 0, 0, 2256, 2254, 1, 0, 0, 0, 2257, 2258, 5, 399, 0, 0, 2258, 2259, 3, 300, 150, 0, 2259, 2260, 5, 400, 0, 0, 2260, 299, 1, 0, 0, 0, 2261, 2266, 3, 588, 294, 0, 2262, 2263, 5, 397, 0, 0, 2263, 2265, 3, 588, 294, 0, 2264, 2262, 1, 0, 0, 0, 2265, 2268, 1, 0, 0, 0, 2266, 2264, 1, 0, 0, 0, 2266, 2267, 1, 0, 0, 0, 2267, 301, 1, 0, 0, 0, 2268, 2266, 1, 0, 0, 0, 2269, 2270, 7, 18, 0, 0, 2270, 303, 1, 0, 0, 0, 2271, 2272, 5, 220, 0, 0, 2272, 2273, 7, 19, 0, 0, 2273, 305, 1, 0, 0, 0, 2274, 2276, 3, 256, 128, 0, 2275, 2277, 3, 302, 151, 0, 2276, 2275, 1, 0, 0, 0, 2276, 2277, 1, 0, 0, 0, 2277, 2279, 1, 0, 0, 0, 2278, 2280, 3, 304, 152, 0, 2279, 2278, 1, 0, 0, 0, 2279, 2280, 1, 0, 0, 0, 2280, 307, 1, 0, 0, 0, 2281, 2286, 3, 310, 155, 0, 2282, 2283, 5, 397, 0, 0, 2283, 2285, 3, 310, 155, 0, 2284, 2282, 1, 0, 0, 0, 2285, 2288, 1, 0, 0, 0, 2286, 2284, 1, 0, 0, 0, 2286, 2287, 1, 0, 0, 0, 2287, 309, 1, 0, 0, 0, 2288, 2286, 1, 0, 0, 0, 2289, 2292, 3, 262, 131, 0, 2290, 2291, 5, 47, 0, 0, 2291, 2293, 5, 426, 0, 0, 2292, 2290, 1, 0, 0, 0, 2292, 2293, 1, 0, 0, 0, 2293, 311, 1, 0, 0, 0, 2294, 2297, 3, 256, 128, 0, 2295, 2297, 3, 596, 298, 0, 2296, 2294, 1, 0, 0, 0, 2296, 2295, 1, 0, 0, 0, 2297, 2299, 1, 0, 0, 0, 2298, 2300, 3, 302, 151, 0, 2299, 2298, 1, 0, 0, 0, 2299, 2300, 1, 0, 0, 0, 2300, 2302, 1, 0, 0, 0, 2301, 2303, 3, 304, 152, 0, 2302, 2301, 1, 0, 0, 0, 2302, 2303, 1, 0, 0, 0, 2303, 313, 1, 0, 0, 0, 2304, 2305, 3, 262, 131, 0, 2305, 2308, 3, 346, 173, 0, 2306, 2307, 5, 47, 0, 0, 2307, 2309, 5, 426, 0, 0, 2308, 2306, 1, 0, 0, 0, 2308, 2309, 1, 0, 0, 0, 2309, 315, 1, 0, 0, 0, 2310, 2313, 3, 318, 159, 0, 2311, 2313, 3, 320, 160, 0, 2312, 2310, 1, 0, 0, 0, 2312, 2311, 1, 0, 0, 0, 2313, 317, 1, 0, 0, 0, 2314, 2317, 3, 290, 145, 0, 2315, 2317, 3, 280, 140, 0, 2316, 2314, 1, 0, 0, 0, 2316, 2315, 1, 0, 0, 0, 2317, 319, 1, 0, 0, 0, 2318, 2319, 3, 262, 131, 0, 2319, 2321, 3, 346, 173, 0, 2320, 2322, 3, 322, 161, 0, 2321, 2320, 1, 0, 0, 0, 2321, 2322, 1, 0, 0, 0, 2322, 2325, 1, 0, 0, 0, 2323, 2324, 5, 47, 0, 0, 2324, 2326, 5, 426, 0, 0, 2325, 2323, 1, 0, 0, 0, 2325, 2326, 1, 0, 0, 0, 2326, 321, 1, 0, 0, 0, 2327, 2330, 3, 324, 162, 0, 2328, 2330, 3, 326, 163, 0, 2329, 2327, 1, 0, 0, 0, 2329, 2328, 1, 0, 0, 0, 2330, 323, 1, 0, 0, 0, 2331, 2332, 5, 55, 0, 0, 2332, 2334, 3, 654, 327, 0, 2333, 2331, 1, 0, 0, 0, 2333, 2334, 1, 0, 0, 0, 2334, 2335, 1, 0, 0, 0, 2335, 2336, 5, 269, 0, 0, 2336, 2337, 3, 482, 241, 0, 2337, 2338, 5, 399, 0, 0, 2338, 2339, 3, 256, 128, 0, 2339, 2341, 5, 400, 0, 0, 2340, 2342, 3, 340, 170, 0, 2341, 2340, 1, 0, 0, 0, 2341, 2342, 1, 0, 0, 0, 2342, 325, 1, 0, 0, 0, 2343, 2344, 5, 55, 0, 0, 2344, 2346, 3, 654, 327, 0, 2345, 2343, 1, 0, 0, 0, 2345, 2346, 1, 0, 0, 0, 2346, 2347, 1, 0, 0, 0, 2347, 2349, 3, 334, 167, 0, 2348, 2350, 3, 340, 170, 0, 2349, 2348, 1, 0, 0, 0, 2349, 2350, 1, 0, 0, 0, 2350, 327, 1, 0, 0, 0, 2351, 2354, 3, 330, 165, 0, 2352, 2354, 3, 332, 166, 0, 2353, 2351, 1, 0, 0, 0, 2353, 2352, 1, 0, 0, 0, 2354, 329, 1, 0, 0, 0, 2355, 2356, 5, 55, 0, 0, 2356, 2358, 3, 654, 327, 0, 2357, 2355, 1, 0, 0, 0, 2357, 2358, 1, 0, 0, 0, 2358, 2359, 1, 0, 0, 0, 2359, 2360, 5, 269, 0, 0, 2360, 2361, 3, 482, 241, 0, 2361, 2362, 5, 399, 0, 0, 2362, 2363, 3, 256, 128, 0, 2363, 2365, 5, 400, 0, 0, 2364, 2366, 3, 342, 171, 0, 2365, 2364, 1, 0, 0, 0, 2365, 2366, 1, 0, 0, 0, 2366, 331, 1, 0, 0, 0, 2367, 2368, 5, 55, 0, 0, 2368, 2370, 3, 654, 327, 0, 2369, 2367, 1, 0, 0, 0, 2369, 2370, 1, 0, 0, 0, 2370, 2371, 1, 0, 0, 0, 2371, 2373, 3, 334, 167, 0, 2372, 2374, 3, 342, 171, 0, 2373, 2372, 1, 0, 0, 0, 2373, 2374, 1, 0, 0, 0, 2374, 333, 1, 0, 0, 0, 2375, 2376, 5, 216, 0, 0, 2376, 2382, 5, 219, 0, 0, 2377, 2378, 5, 83, 0, 0, 2378, 2382, 3, 336, 168, 0, 2379, 2382, 3, 288, 144, 0, 2380, 2382, 3, 338, 169, 0, 2381, 2375, 1, 0, 0, 0, 2381, 2377, 1, 0, 0, 0, 2381, 2379, 1, 0, 0, 0, 2381, 2380, 1, 0, 0, 0, 2382, 335, 1, 0, 0, 0, 2383, 2387, 3, 588, 294, 0, 2384, 2387, 3, 566, 283, 0, 2385, 2387, 3, 576, 288, 0, 2386, 2383, 1, 0, 0, 0, 2386, 2384, 1, 0, 0, 0, 2386, 2385, 1, 0, 0, 0, 2387, 337, 1, 0, 0, 0, 2388, 2389, 5, 251, 0, 0, 2389, 2392, 5, 173, 0, 0, 2390, 2392, 5, 358, 0, 0, 2391, 2388, 1, 0, 0, 0, 2391, 2390, 1, 0, 0, 0, 2392, 339, 1, 0, 0, 0, 2393, 2395, 3, 270, 135, 0, 2394, 2396, 3, 278, 139, 0, 2395, 2394, 1, 0, 0, 0, 2395, 2396, 1, 0, 0, 0, 2396, 341, 1, 0, 0, 0, 2397, 2399, 3, 270, 135, 0, 2398, 2400, 3, 278, 139, 0, 2399, 2398, 1, 0, 0, 0, 2399, 2400, 1, 0, 0, 0, 2400, 343, 1, 0, 0, 0, 2401, 2402, 3, 262, 131, 0, 2402, 2403, 5, 396, 0, 0, 2403, 2406, 3, 346, 173, 0, 2404, 2405, 5, 47, 0, 0, 2405, 2407, 5, 426, 0, 0, 2406, 2404, 1, 0, 0, 0, 2406, 2407, 1, 0, 0, 0, 2407, 345, 1, 0, 0, 0, 2408, 2409, 3, 350, 175, 0, 2409, 347, 1, 0, 0, 0, 2410, 2415, 3, 346, 173, 0, 2411, 2412, 5, 397, 0, 0, 2412, 2414, 3, 346, 173, 0, 2413, 2411, 1, 0, 0, 0, 2414, 2417, 1, 0, 0, 0, 2415, 2413, 1, 0, 0, 0, 2415, 2416, 1, 0, 0, 0, 2416, 349, 1, 0, 0, 0, 2417, 2415, 1, 0, 0, 0, 2418, 2424, 3, 352, 176, 0, 2419, 2424, 3, 354, 177, 0, 2420, 2424, 3, 356, 178, 0, 2421, 2424, 3, 358, 179, 0, 2422, 2424, 3, 360, 180, 0, 2423, 2418, 1, 0, 0, 0, 2423, 2419, 1, 0, 0, 0, 2423, 2420, 1, 0, 0, 0, 2423, 2421, 1, 0, 0, 0, 2423, 2422, 1, 0, 0, 0, 2424, 351, 1, 0, 0, 0, 2425, 2463, 5, 340, 0, 0, 2426, 2463, 5, 311, 0, 0, 2427, 2463, 5, 162, 0, 0, 2428, 2463, 5, 163, 0, 0, 2429, 2463, 5, 26, 0, 0, 2430, 2463, 5, 28, 0, 0, 2431, 2463, 5, 131, 0, 0, 2432, 2463, 5, 264, 0, 0, 2433, 2435, 5, 100, 0, 0, 2434, 2436, 5, 248, 0, 0, 2435, 2434, 1, 0, 0, 0, 2435, 2436, 1, 0, 0, 0, 2436, 2463, 1, 0, 0, 0, 2437, 2463, 5, 71, 0, 0, 2438, 2463, 5, 72, 0, 0, 2439, 2463, 5, 337, 0, 0, 2440, 2463, 5, 338, 0, 0, 2441, 2442, 5, 337, 0, 0, 2442, 2443, 5, 387, 0, 0, 2443, 2444, 5, 188, 0, 0, 2444, 2445, 5, 336, 0, 0, 2445, 2463, 5, 394, 0, 0, 2446, 2463, 5, 323, 0, 0, 2447, 2463, 5, 27, 0, 0, 2448, 2456, 3, 696, 348, 0, 2449, 2450, 5, 399, 0, 0, 2450, 2453, 5, 431, 0, 0, 2451, 2452, 5, 397, 0, 0, 2452, 2454, 5, 431, 0, 0, 2453, 2451, 1, 0, 0, 0, 2453, 2454, 1, 0, 0, 0, 2454, 2455, 1, 0, 0, 0, 2455, 2457, 5, 400, 0, 0, 2456, 2449, 1, 0, 0, 0, 2456, 2457, 1, 0, 0, 0, 2457, 2463, 1, 0, 0, 0, 2458, 2459, 7, 20, 0, 0, 2459, 2460, 5, 399, 0, 0, 2460, 2461, 5, 431, 0, 0, 2461, 2463, 5, 400, 0, 0, 2462, 2425, 1, 0, 0, 0, 2462, 2426, 1, 0, 0, 0, 2462, 2427, 1, 0, 0, 0, 2462, 2428, 1, 0, 0, 0, 2462, 2429, 1, 0, 0, 0, 2462, 2430, 1, 0, 0, 0, 2462, 2431, 1, 0, 0, 0, 2462, 2432, 1, 0, 0, 0, 2462, 2433, 1, 0, 0, 0, 2462, 2437, 1, 0, 0, 0, 2462, 2438, 1, 0, 0, 0, 2462, 2439, 1, 0, 0, 0, 2462, 2440, 1, 0, 0, 0, 2462, 2441, 1, 0, 0, 0, 2462, 2446, 1, 0, 0, 0, 2462, 2447, 1, 0, 0, 0, 2462, 2448, 1, 0, 0, 0, 2462, 2458, 1, 0, 0, 0, 2463, 353, 1, 0, 0, 0, 2464, 2465, 5, 16, 0, 0, 2465, 2466, 5, 409, 0, 0, 2466, 2467, 3, 350, 175, 0, 2467, 2468, 5, 411, 0, 0, 2468, 355, 1, 0, 0, 0, 2469, 2470, 5, 324, 0, 0, 2470, 2471, 5, 409, 0, 0, 2471, 2472, 3, 252, 126, 0, 2472, 2473, 5, 411, 0, 0, 2473, 357, 1, 0, 0, 0, 2474, 2475, 5, 198, 0, 0, 2475, 2476, 5, 409, 0, 0, 2476, 2477, 3, 352, 176, 0, 2477, 2478, 5, 397, 0, 0, 2478, 2479, 3, 350, 175, 0, 2479, 2480, 5, 411, 0, 0, 2480, 359, 1, 0, 0, 0, 2481, 2482, 5, 357, 0, 0, 2482, 2483, 5, 409, 0, 0, 2483, 2484, 3, 348, 174, 0, 2484, 2485, 5, 411, 0, 0, 2485, 361, 1, 0, 0, 0, 2486, 2488, 7, 21, 0, 0, 2487, 2489, 7, 22, 0, 0, 2488, 2487, 1, 0, 0, 0, 2488, 2489, 1, 0, 0, 0, 2489, 363, 1, 0, 0, 0, 2490, 2492, 3, 368, 184, 0, 2491, 2490, 1, 0, 0, 0, 2491, 2492, 1, 0, 0, 0, 2492, 2493, 1, 0, 0, 0, 2493, 2494, 3, 366, 183, 0, 2494, 365, 1, 0, 0, 0, 2495, 2498, 3, 372, 186, 0, 2496, 2498, 3, 376, 188, 0, 2497, 2495, 1, 0, 0, 0, 2497, 2496, 1, 0, 0, 0, 2498, 367, 1, 0, 0, 0, 2499, 2500, 5, 387, 0, 0, 2500, 2505, 3, 370, 185, 0, 2501, 2502, 5, 397, 0, 0, 2502, 2504, 3, 370, 185, 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, 369, 1, 0, 0, 0, 2507, 2505, 1, 0, 0, 0, 2508, 2513, 3, 654, 327, 0, 2509, 2510, 5, 399, 0, 0, 2510, 2511, 3, 254, 127, 0, 2511, 2512, 5, 400, 0, 0, 2512, 2514, 1, 0, 0, 0, 2513, 2509, 1, 0, 0, 0, 2513, 2514, 1, 0, 0, 0, 2514, 2515, 1, 0, 0, 0, 2515, 2516, 5, 17, 0, 0, 2516, 2517, 5, 399, 0, 0, 2517, 2518, 3, 364, 182, 0, 2518, 2519, 5, 400, 0, 0, 2519, 371, 1, 0, 0, 0, 2520, 2526, 3, 374, 187, 0, 2521, 2522, 3, 362, 181, 0, 2522, 2523, 3, 374, 187, 0, 2523, 2525, 1, 0, 0, 0, 2524, 2521, 1, 0, 0, 0, 2525, 2528, 1, 0, 0, 0, 2526, 2524, 1, 0, 0, 0, 2526, 2527, 1, 0, 0, 0, 2527, 373, 1, 0, 0, 0, 2528, 2526, 1, 0, 0, 0, 2529, 2530, 3, 452, 226, 0, 2530, 2531, 3, 386, 193, 0, 2531, 2533, 3, 508, 254, 0, 2532, 2534, 3, 466, 233, 0, 2533, 2532, 1, 0, 0, 0, 2533, 2534, 1, 0, 0, 0, 2534, 2536, 1, 0, 0, 0, 2535, 2537, 3, 500, 250, 0, 2536, 2535, 1, 0, 0, 0, 2536, 2537, 1, 0, 0, 0, 2537, 2539, 1, 0, 0, 0, 2538, 2540, 3, 534, 267, 0, 2539, 2538, 1, 0, 0, 0, 2539, 2540, 1, 0, 0, 0, 2540, 2542, 1, 0, 0, 0, 2541, 2543, 3, 542, 271, 0, 2542, 2541, 1, 0, 0, 0, 2542, 2543, 1, 0, 0, 0, 2543, 2545, 1, 0, 0, 0, 2544, 2546, 3, 526, 263, 0, 2545, 2544, 1, 0, 0, 0, 2545, 2546, 1, 0, 0, 0, 2546, 2548, 1, 0, 0, 0, 2547, 2549, 3, 544, 272, 0, 2548, 2547, 1, 0, 0, 0, 2548, 2549, 1, 0, 0, 0, 2549, 2551, 1, 0, 0, 0, 2550, 2552, 3, 556, 278, 0, 2551, 2550, 1, 0, 0, 0, 2551, 2552, 1, 0, 0, 0, 2552, 2554, 1, 0, 0, 0, 2553, 2555, 3, 560, 280, 0, 2554, 2553, 1, 0, 0, 0, 2554, 2555, 1, 0, 0, 0, 2555, 2557, 1, 0, 0, 0, 2556, 2558, 3, 562, 281, 0, 2557, 2556, 1, 0, 0, 0, 2557, 2558, 1, 0, 0, 0, 2558, 2560, 1, 0, 0, 0, 2559, 2561, 3, 564, 282, 0, 2560, 2559, 1, 0, 0, 0, 2560, 2561, 1, 0, 0, 0, 2561, 2563, 1, 0, 0, 0, 2562, 2564, 3, 390, 195, 0, 2563, 2562, 1, 0, 0, 0, 2563, 2564, 1, 0, 0, 0, 2564, 2601, 1, 0, 0, 0, 2565, 2566, 3, 452, 226, 0, 2566, 2568, 3, 508, 254, 0, 2567, 2569, 3, 466, 233, 0, 2568, 2567, 1, 0, 0, 0, 2568, 2569, 1, 0, 0, 0, 2569, 2571, 1, 0, 0, 0, 2570, 2572, 3, 500, 250, 0, 2571, 2570, 1, 0, 0, 0, 2571, 2572, 1, 0, 0, 0, 2572, 2574, 1, 0, 0, 0, 2573, 2575, 3, 534, 267, 0, 2574, 2573, 1, 0, 0, 0, 2574, 2575, 1, 0, 0, 0, 2575, 2577, 1, 0, 0, 0, 2576, 2578, 3, 542, 271, 0, 2577, 2576, 1, 0, 0, 0, 2577, 2578, 1, 0, 0, 0, 2578, 2580, 1, 0, 0, 0, 2579, 2581, 3, 526, 263, 0, 2580, 2579, 1, 0, 0, 0, 2580, 2581, 1, 0, 0, 0, 2581, 2583, 1, 0, 0, 0, 2582, 2584, 3, 544, 272, 0, 2583, 2582, 1, 0, 0, 0, 2583, 2584, 1, 0, 0, 0, 2584, 2586, 1, 0, 0, 0, 2585, 2587, 3, 556, 278, 0, 2586, 2585, 1, 0, 0, 0, 2586, 2587, 1, 0, 0, 0, 2587, 2589, 1, 0, 0, 0, 2588, 2590, 3, 560, 280, 0, 2589, 2588, 1, 0, 0, 0, 2589, 2590, 1, 0, 0, 0, 2590, 2592, 1, 0, 0, 0, 2591, 2593, 3, 562, 281, 0, 2592, 2591, 1, 0, 0, 0, 2592, 2593, 1, 0, 0, 0, 2593, 2595, 1, 0, 0, 0, 2594, 2596, 3, 564, 282, 0, 2595, 2594, 1, 0, 0, 0, 2595, 2596, 1, 0, 0, 0, 2596, 2598, 1, 0, 0, 0, 2597, 2599, 3, 390, 195, 0, 2598, 2597, 1, 0, 0, 0, 2598, 2599, 1, 0, 0, 0, 2599, 2601, 1, 0, 0, 0, 2600, 2529, 1, 0, 0, 0, 2600, 2565, 1, 0, 0, 0, 2601, 375, 1, 0, 0, 0, 2602, 2603, 3, 386, 193, 0, 2603, 2604, 3, 380, 190, 0, 2604, 2607, 1, 0, 0, 0, 2605, 2607, 3, 380, 190, 0, 2606, 2602, 1, 0, 0, 0, 2606, 2605, 1, 0, 0, 0, 2607, 377, 1, 0, 0, 0, 2608, 2610, 3, 508, 254, 0, 2609, 2611, 3, 452, 226, 0, 2610, 2609, 1, 0, 0, 0, 2610, 2611, 1, 0, 0, 0, 2611, 2613, 1, 0, 0, 0, 2612, 2614, 3, 500, 250, 0, 2613, 2612, 1, 0, 0, 0, 2613, 2614, 1, 0, 0, 0, 2614, 2616, 1, 0, 0, 0, 2615, 2617, 3, 534, 267, 0, 2616, 2615, 1, 0, 0, 0, 2616, 2617, 1, 0, 0, 0, 2617, 2619, 1, 0, 0, 0, 2618, 2620, 3, 542, 271, 0, 2619, 2618, 1, 0, 0, 0, 2619, 2620, 1, 0, 0, 0, 2620, 2622, 1, 0, 0, 0, 2621, 2623, 3, 526, 263, 0, 2622, 2621, 1, 0, 0, 0, 2622, 2623, 1, 0, 0, 0, 2623, 2625, 1, 0, 0, 0, 2624, 2626, 3, 544, 272, 0, 2625, 2624, 1, 0, 0, 0, 2625, 2626, 1, 0, 0, 0, 2626, 2633, 1, 0, 0, 0, 2627, 2628, 5, 399, 0, 0, 2628, 2629, 3, 380, 190, 0, 2629, 2630, 5, 400, 0, 0, 2630, 2633, 1, 0, 0, 0, 2631, 2633, 3, 502, 251, 0, 2632, 2608, 1, 0, 0, 0, 2632, 2627, 1, 0, 0, 0, 2632, 2631, 1, 0, 0, 0, 2633, 379, 1, 0, 0, 0, 2634, 2636, 3, 378, 189, 0, 2635, 2637, 3, 382, 191, 0, 2636, 2635, 1, 0, 0, 0, 2636, 2637, 1, 0, 0, 0, 2637, 2639, 1, 0, 0, 0, 2638, 2640, 3, 556, 278, 0, 2639, 2638, 1, 0, 0, 0, 2639, 2640, 1, 0, 0, 0, 2640, 2642, 1, 0, 0, 0, 2641, 2643, 3, 560, 280, 0, 2642, 2641, 1, 0, 0, 0, 2642, 2643, 1, 0, 0, 0, 2643, 2645, 1, 0, 0, 0, 2644, 2646, 3, 562, 281, 0, 2645, 2644, 1, 0, 0, 0, 2645, 2646, 1, 0, 0, 0, 2646, 2648, 1, 0, 0, 0, 2647, 2649, 3, 564, 282, 0, 2648, 2647, 1, 0, 0, 0, 2648, 2649, 1, 0, 0, 0, 2649, 2651, 1, 0, 0, 0, 2650, 2652, 3, 390, 195, 0, 2651, 2650, 1, 0, 0, 0, 2651, 2652, 1, 0, 0, 0, 2652, 381, 1, 0, 0, 0, 2653, 2654, 3, 362, 181, 0, 2654, 2655, 3, 378, 189, 0, 2655, 2657, 1, 0, 0, 0, 2656, 2653, 1, 0, 0, 0, 2657, 2658, 1, 0, 0, 0, 2658, 2656, 1, 0, 0, 0, 2658, 2659, 1, 0, 0, 0, 2659, 383, 1, 0, 0, 0, 2660, 2662, 3, 368, 184, 0, 2661, 2660, 1, 0, 0, 0, 2661, 2662, 1, 0, 0, 0, 2662, 2663, 1, 0, 0, 0, 2663, 2664, 3, 380, 190, 0, 2664, 385, 1, 0, 0, 0, 2665, 2682, 5, 161, 0, 0, 2666, 2667, 5, 235, 0, 0, 2667, 2669, 3, 388, 194, 0, 2668, 2670, 3, 32, 16, 0, 2669, 2668, 1, 0, 0, 0, 2669, 2670, 1, 0, 0, 0, 2670, 2683, 1, 0, 0, 0, 2671, 2673, 5, 166, 0, 0, 2672, 2674, 5, 329, 0, 0, 2673, 2672, 1, 0, 0, 0, 2673, 2674, 1, 0, 0, 0, 2674, 2675, 1, 0, 0, 0, 2675, 2680, 3, 640, 320, 0, 2676, 2677, 5, 399, 0, 0, 2677, 2678, 3, 254, 127, 0, 2678, 2679, 5, 400, 0, 0, 2679, 2681, 1, 0, 0, 0, 2680, 2676, 1, 0, 0, 0, 2680, 2681, 1, 0, 0, 0, 2681, 2683, 1, 0, 0, 0, 2682, 2666, 1, 0, 0, 0, 2682, 2671, 1, 0, 0, 0, 2683, 387, 1, 0, 0, 0, 2684, 2686, 5, 188, 0, 0, 2685, 2684, 1, 0, 0, 0, 2685, 2686, 1, 0, 0, 0, 2686, 2687, 1, 0, 0, 0, 2687, 2688, 5, 93, 0, 0, 2688, 2690, 5, 426, 0, 0, 2689, 2691, 3, 222, 111, 0, 2690, 2689, 1, 0, 0, 0, 2690, 2691, 1, 0, 0, 0, 2691, 2693, 1, 0, 0, 0, 2692, 2694, 3, 246, 123, 0, 2693, 2692, 1, 0, 0, 0, 2693, 2694, 1, 0, 0, 0, 2694, 2698, 1, 0, 0, 0, 2695, 2696, 5, 329, 0, 0, 2696, 2698, 3, 640, 320, 0, 2697, 2685, 1, 0, 0, 0, 2697, 2695, 1, 0, 0, 0, 2698, 389, 1, 0, 0, 0, 2699, 2708, 5, 185, 0, 0, 2700, 2701, 5, 431, 0, 0, 2701, 2703, 5, 397, 0, 0, 2702, 2700, 1, 0, 0, 0, 2702, 2703, 1, 0, 0, 0, 2703, 2704, 1, 0, 0, 0, 2704, 2709, 5, 431, 0, 0, 2705, 2706, 5, 431, 0, 0, 2706, 2707, 5, 223, 0, 0, 2707, 2709, 5, 431, 0, 0, 2708, 2702, 1, 0, 0, 0, 2708, 2705, 1, 0, 0, 0, 2709, 391, 1, 0, 0, 0, 2710, 2711, 3, 256, 128, 0, 2711, 2712, 5, 405, 0, 0, 2712, 2713, 3, 394, 197, 0, 2713, 393, 1, 0, 0, 0, 2714, 2717, 5, 83, 0, 0, 2715, 2717, 3, 606, 303, 0, 2716, 2714, 1, 0, 0, 0, 2716, 2715, 1, 0, 0, 0, 2717, 395, 1, 0, 0, 0, 2718, 2719, 5, 304, 0, 0, 2719, 2724, 3, 392, 196, 0, 2720, 2721, 5, 397, 0, 0, 2721, 2723, 3, 392, 196, 0, 2722, 2720, 1, 0, 0, 0, 2723, 2726, 1, 0, 0, 0, 2724, 2722, 1, 0, 0, 0, 2724, 2725, 1, 0, 0, 0, 2725, 397, 1, 0, 0, 0, 2726, 2724, 1, 0, 0, 0, 2727, 2728, 5, 318, 0, 0, 2728, 2737, 5, 344, 0, 0, 2729, 2734, 3, 400, 200, 0, 2730, 2731, 5, 397, 0, 0, 2731, 2733, 3, 400, 200, 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, 2738, 1, 0, 0, 0, 2736, 2734, 1, 0, 0, 0, 2737, 2729, 1, 0, 0, 0, 2737, 2738, 1, 0, 0, 0, 2738, 2751, 1, 0, 0, 0, 2739, 2741, 5, 48, 0, 0, 2740, 2742, 5, 389, 0, 0, 2741, 2740, 1, 0, 0, 0, 2741, 2742, 1, 0, 0, 0, 2742, 2751, 1, 0, 0, 0, 2743, 2745, 5, 289, 0, 0, 2744, 2746, 5, 389, 0, 0, 2745, 2744, 1, 0, 0, 0, 2745, 2746, 1, 0, 0, 0, 2746, 2751, 1, 0, 0, 0, 2747, 2748, 5, 304, 0, 0, 2748, 2749, 5, 22, 0, 0, 2749, 2751, 7, 23, 0, 0, 2750, 2727, 1, 0, 0, 0, 2750, 2739, 1, 0, 0, 0, 2750, 2743, 1, 0, 0, 0, 2750, 2747, 1, 0, 0, 0, 2751, 399, 1, 0, 0, 0, 2752, 2753, 5, 168, 0, 0, 2753, 2754, 5, 182, 0, 0, 2754, 2758, 5, 312, 0, 0, 2755, 2756, 5, 261, 0, 0, 2756, 2758, 7, 24, 0, 0, 2757, 2752, 1, 0, 0, 0, 2757, 2755, 1, 0, 0, 0, 2758, 401, 1, 0, 0, 0, 2759, 2762, 3, 406, 203, 0, 2760, 2762, 3, 408, 204, 0, 2761, 2759, 1, 0, 0, 0, 2761, 2760, 1, 0, 0, 0, 2762, 2765, 1, 0, 0, 0, 2763, 2761, 1, 0, 0, 0, 2763, 2764, 1, 0, 0, 0, 2764, 2767, 1, 0, 0, 0, 2765, 2763, 1, 0, 0, 0, 2766, 2768, 3, 404, 202, 0, 2767, 2766, 1, 0, 0, 0, 2767, 2768, 1, 0, 0, 0, 2768, 403, 1, 0, 0, 0, 2769, 2770, 5, 383, 0, 0, 2770, 2771, 5, 216, 0, 0, 2771, 2774, 5, 201, 0, 0, 2772, 2773, 5, 11, 0, 0, 2773, 2775, 3, 596, 298, 0, 2774, 2772, 1, 0, 0, 0, 2774, 2775, 1, 0, 0, 0, 2775, 2776, 1, 0, 0, 0, 2776, 2777, 5, 335, 0, 0, 2777, 2779, 5, 161, 0, 0, 2778, 2780, 3, 268, 134, 0, 2779, 2778, 1, 0, 0, 0, 2779, 2780, 1, 0, 0, 0, 2780, 2781, 1, 0, 0, 0, 2781, 2782, 5, 374, 0, 0, 2782, 2783, 3, 552, 276, 0, 2783, 405, 1, 0, 0, 0, 2784, 2785, 5, 383, 0, 0, 2785, 2786, 5, 201, 0, 0, 2786, 2787, 5, 11, 0, 0, 2787, 2788, 3, 596, 298, 0, 2788, 2792, 5, 335, 0, 0, 2789, 2790, 5, 365, 0, 0, 2790, 2793, 3, 396, 198, 0, 2791, 2793, 5, 86, 0, 0, 2792, 2789, 1, 0, 0, 0, 2792, 2791, 1, 0, 0, 0, 2793, 407, 1, 0, 0, 0, 2794, 2795, 5, 383, 0, 0, 2795, 2796, 5, 201, 0, 0, 2796, 2800, 5, 335, 0, 0, 2797, 2798, 5, 365, 0, 0, 2798, 2801, 3, 396, 198, 0, 2799, 2801, 5, 86, 0, 0, 2800, 2797, 1, 0, 0, 0, 2800, 2799, 1, 0, 0, 0, 2801, 409, 1, 0, 0, 0, 2802, 2803, 5, 246, 0, 0, 2803, 2804, 5, 426, 0, 0, 2804, 411, 1, 0, 0, 0, 2805, 2806, 5, 352, 0, 0, 2806, 2807, 5, 426, 0, 0, 2807, 413, 1, 0, 0, 0, 2808, 2809, 5, 320, 0, 0, 2809, 2810, 5, 426, 0, 0, 2810, 415, 1, 0, 0, 0, 2811, 2842, 5, 9, 0, 0, 2812, 2813, 5, 329, 0, 0, 2813, 2814, 3, 482, 241, 0, 2814, 2815, 3, 418, 209, 0, 2815, 2843, 1, 0, 0, 0, 2816, 2817, 5, 378, 0, 0, 2817, 2819, 3, 486, 243, 0, 2818, 2820, 5, 17, 0, 0, 2819, 2818, 1, 0, 0, 0, 2819, 2820, 1, 0, 0, 0, 2820, 2821, 1, 0, 0, 0, 2821, 2822, 3, 422, 211, 0, 2822, 2843, 1, 0, 0, 0, 2823, 2824, 5, 202, 0, 0, 2824, 2825, 5, 378, 0, 0, 2825, 2829, 3, 486, 243, 0, 2826, 2830, 3, 36, 18, 0, 2827, 2830, 3, 38, 19, 0, 2828, 2830, 5, 265, 0, 0, 2829, 2826, 1, 0, 0, 0, 2829, 2827, 1, 0, 0, 0, 2829, 2828, 1, 0, 0, 0, 2830, 2843, 1, 0, 0, 0, 2831, 2832, 3, 70, 35, 0, 2832, 2833, 3, 424, 212, 0, 2833, 2843, 1, 0, 0, 0, 2834, 2835, 5, 69, 0, 0, 2835, 2843, 3, 426, 213, 0, 2836, 2837, 5, 155, 0, 0, 2837, 2838, 3, 654, 327, 0, 2838, 2839, 5, 224, 0, 0, 2839, 2840, 3, 640, 320, 0, 2840, 2841, 5, 265, 0, 0, 2841, 2843, 1, 0, 0, 0, 2842, 2812, 1, 0, 0, 0, 2842, 2816, 1, 0, 0, 0, 2842, 2823, 1, 0, 0, 0, 2842, 2831, 1, 0, 0, 0, 2842, 2834, 1, 0, 0, 0, 2842, 2836, 1, 0, 0, 0, 2843, 417, 1, 0, 0, 0, 2844, 2845, 5, 274, 0, 0, 2845, 2846, 5, 341, 0, 0, 2846, 2934, 3, 484, 242, 0, 2847, 2848, 5, 102, 0, 0, 2848, 2934, 5, 239, 0, 0, 2849, 2934, 3, 430, 215, 0, 2850, 2852, 5, 4, 0, 0, 2851, 2853, 3, 32, 16, 0, 2852, 2851, 1, 0, 0, 0, 2852, 2853, 1, 0, 0, 0, 2853, 2858, 1, 0, 0, 0, 2854, 2856, 3, 642, 321, 0, 2855, 2857, 3, 428, 214, 0, 2856, 2855, 1, 0, 0, 0, 2856, 2857, 1, 0, 0, 0, 2857, 2859, 1, 0, 0, 0, 2858, 2854, 1, 0, 0, 0, 2859, 2860, 1, 0, 0, 0, 2860, 2858, 1, 0, 0, 0, 2860, 2861, 1, 0, 0, 0, 2861, 2934, 1, 0, 0, 0, 2862, 2866, 5, 342, 0, 0, 2863, 2865, 3, 642, 321, 0, 2864, 2863, 1, 0, 0, 0, 2865, 2868, 1, 0, 0, 0, 2866, 2864, 1, 0, 0, 0, 2866, 2867, 1, 0, 0, 0, 2867, 2934, 1, 0, 0, 0, 2868, 2866, 1, 0, 0, 0, 2869, 2873, 5, 15, 0, 0, 2870, 2872, 3, 642, 321, 0, 2871, 2870, 1, 0, 0, 0, 2872, 2875, 1, 0, 0, 0, 2873, 2871, 1, 0, 0, 0, 2873, 2874, 1, 0, 0, 0, 2874, 2934, 1, 0, 0, 0, 2875, 2873, 1, 0, 0, 0, 2876, 2880, 5, 353, 0, 0, 2877, 2879, 3, 642, 321, 0, 2878, 2877, 1, 0, 0, 0, 2879, 2882, 1, 0, 0, 0, 2880, 2878, 1, 0, 0, 0, 2880, 2881, 1, 0, 0, 0, 2881, 2934, 1, 0, 0, 0, 2882, 2880, 1, 0, 0, 0, 2883, 2884, 5, 304, 0, 0, 2884, 2885, 5, 332, 0, 0, 2885, 2934, 3, 226, 113, 0, 2886, 2887, 5, 363, 0, 0, 2887, 2889, 5, 332, 0, 0, 2888, 2890, 3, 30, 15, 0, 2889, 2888, 1, 0, 0, 0, 2889, 2890, 1, 0, 0, 0, 2890, 2891, 1, 0, 0, 0, 2891, 2934, 3, 226, 113, 0, 2892, 2934, 3, 210, 105, 0, 2893, 2896, 5, 216, 0, 0, 2894, 2897, 5, 310, 0, 0, 2895, 2897, 3, 40, 20, 0, 2896, 2894, 1, 0, 0, 0, 2896, 2895, 1, 0, 0, 0, 2897, 2934, 1, 0, 0, 0, 2898, 2899, 5, 113, 0, 0, 2899, 2900, 3, 642, 321, 0, 2900, 2901, 5, 387, 0, 0, 2901, 2902, 5, 329, 0, 0, 2902, 2903, 3, 482, 241, 0, 2903, 2934, 1, 0, 0, 0, 2904, 2905, 5, 237, 0, 0, 2905, 2906, 5, 45, 0, 0, 2906, 2907, 5, 399, 0, 0, 2907, 2908, 3, 314, 157, 0, 2908, 2909, 5, 400, 0, 0, 2909, 2934, 1, 0, 0, 0, 2910, 2911, 5, 101, 0, 0, 2911, 2912, 5, 55, 0, 0, 2912, 2934, 3, 654, 327, 0, 2913, 2916, 5, 4, 0, 0, 2914, 2917, 3, 292, 146, 0, 2915, 2917, 3, 282, 141, 0, 2916, 2914, 1, 0, 0, 0, 2916, 2915, 1, 0, 0, 0, 2917, 2934, 1, 0, 0, 0, 2918, 2920, 3, 642, 321, 0, 2919, 2918, 1, 0, 0, 0, 2919, 2920, 1, 0, 0, 0, 2920, 2921, 1, 0, 0, 0, 2921, 2934, 3, 420, 210, 0, 2922, 2923, 5, 304, 0, 0, 2923, 2924, 5, 236, 0, 0, 2924, 2934, 3, 126, 63, 0, 2925, 2926, 5, 304, 0, 0, 2926, 2927, 5, 237, 0, 0, 2927, 2928, 5, 316, 0, 0, 2928, 2929, 5, 399, 0, 0, 2929, 2930, 3, 204, 102, 0, 2930, 2931, 5, 400, 0, 0, 2931, 2934, 1, 0, 0, 0, 2932, 2934, 3, 434, 217, 0, 2933, 2844, 1, 0, 0, 0, 2933, 2847, 1, 0, 0, 0, 2933, 2849, 1, 0, 0, 0, 2933, 2850, 1, 0, 0, 0, 2933, 2862, 1, 0, 0, 0, 2933, 2869, 1, 0, 0, 0, 2933, 2876, 1, 0, 0, 0, 2933, 2883, 1, 0, 0, 0, 2933, 2886, 1, 0, 0, 0, 2933, 2892, 1, 0, 0, 0, 2933, 2893, 1, 0, 0, 0, 2933, 2898, 1, 0, 0, 0, 2933, 2904, 1, 0, 0, 0, 2933, 2910, 1, 0, 0, 0, 2933, 2913, 1, 0, 0, 0, 2933, 2919, 1, 0, 0, 0, 2933, 2922, 1, 0, 0, 0, 2933, 2925, 1, 0, 0, 0, 2933, 2932, 1, 0, 0, 0, 2934, 419, 1, 0, 0, 0, 2935, 2936, 5, 304, 0, 0, 2936, 2937, 5, 129, 0, 0, 2937, 3068, 3, 436, 218, 0, 2938, 2939, 5, 304, 0, 0, 2939, 2940, 5, 189, 0, 0, 2940, 3068, 5, 426, 0, 0, 2941, 3068, 5, 53, 0, 0, 2942, 2952, 5, 304, 0, 0, 2943, 2944, 5, 301, 0, 0, 2944, 2948, 5, 426, 0, 0, 2945, 2946, 5, 387, 0, 0, 2946, 2947, 5, 302, 0, 0, 2947, 2949, 3, 226, 113, 0, 2948, 2945, 1, 0, 0, 0, 2948, 2949, 1, 0, 0, 0, 2949, 2953, 1, 0, 0, 0, 2950, 2951, 5, 302, 0, 0, 2951, 2953, 3, 226, 113, 0, 2952, 2943, 1, 0, 0, 0, 2952, 2950, 1, 0, 0, 0, 2953, 3068, 1, 0, 0, 0, 2954, 2955, 5, 363, 0, 0, 2955, 2956, 5, 302, 0, 0, 2956, 3068, 3, 226, 113, 0, 2957, 2958, 5, 274, 0, 0, 2958, 2959, 5, 341, 0, 0, 2959, 3068, 3, 642, 321, 0, 2960, 2961, 5, 166, 0, 0, 2961, 2962, 5, 431, 0, 0, 2962, 3068, 5, 31, 0, 0, 2963, 2964, 5, 304, 0, 0, 2964, 2965, 5, 310, 0, 0, 2965, 2966, 5, 189, 0, 0, 2966, 2967, 5, 399, 0, 0, 2967, 2972, 3, 432, 216, 0, 2968, 2969, 5, 397, 0, 0, 2969, 2971, 3, 432, 216, 0, 2970, 2968, 1, 0, 0, 0, 2971, 2974, 1, 0, 0, 0, 2972, 2970, 1, 0, 0, 0, 2972, 2973, 1, 0, 0, 0, 2973, 2975, 1, 0, 0, 0, 2974, 2972, 1, 0, 0, 0, 2975, 2976, 5, 400, 0, 0, 2976, 3068, 1, 0, 0, 0, 2977, 2978, 5, 216, 0, 0, 2978, 3068, 7, 25, 0, 0, 2979, 3068, 3, 208, 104, 0, 2980, 2981, 5, 49, 0, 0, 2981, 2984, 5, 426, 0, 0, 2982, 2983, 5, 11, 0, 0, 2983, 2985, 5, 380, 0, 0, 2984, 2982, 1, 0, 0, 0, 2984, 2985, 1, 0, 0, 0, 2985, 2990, 1, 0, 0, 0, 2986, 2987, 5, 42, 0, 0, 2987, 2988, 5, 166, 0, 0, 2988, 2989, 5, 431, 0, 0, 2989, 2991, 5, 31, 0, 0, 2990, 2986, 1, 0, 0, 0, 2990, 2991, 1, 0, 0, 0, 2991, 2993, 1, 0, 0, 0, 2992, 2994, 3, 556, 278, 0, 2993, 2992, 1, 0, 0, 0, 2993, 2994, 1, 0, 0, 0, 2994, 2996, 1, 0, 0, 0, 2995, 2997, 3, 410, 205, 0, 2996, 2995, 1, 0, 0, 0, 2996, 2997, 1, 0, 0, 0, 2997, 3002, 1, 0, 0, 0, 2998, 2999, 5, 387, 0, 0, 2999, 3000, 5, 235, 0, 0, 3000, 3001, 5, 332, 0, 0, 3001, 3003, 3, 226, 113, 0, 3002, 2998, 1, 0, 0, 0, 3002, 3003, 1, 0, 0, 0, 3003, 3068, 1, 0, 0, 0, 3004, 3005, 5, 365, 0, 0, 3005, 3006, 5, 319, 0, 0, 3006, 3008, 5, 134, 0, 0, 3007, 3009, 5, 45, 0, 0, 3008, 3007, 1, 0, 0, 0, 3008, 3009, 1, 0, 0, 0, 3009, 3010, 1, 0, 0, 0, 3010, 3011, 3, 256, 128, 0, 3011, 3012, 5, 304, 0, 0, 3012, 3015, 3, 226, 113, 0, 3013, 3014, 5, 47, 0, 0, 3014, 3016, 5, 426, 0, 0, 3015, 3013, 1, 0, 0, 0, 3015, 3016, 1, 0, 0, 0, 3016, 3068, 1, 0, 0, 0, 3017, 3018, 5, 365, 0, 0, 3018, 3019, 5, 319, 0, 0, 3019, 3020, 5, 304, 0, 0, 3020, 3068, 3, 226, 113, 0, 3021, 3023, 5, 38, 0, 0, 3022, 3024, 5, 45, 0, 0, 3023, 3022, 1, 0, 0, 0, 3023, 3024, 1, 0, 0, 0, 3024, 3025, 1, 0, 0, 0, 3025, 3026, 3, 256, 128, 0, 3026, 3027, 3, 262, 131, 0, 3027, 3029, 3, 346, 173, 0, 3028, 3030, 3, 328, 164, 0, 3029, 3028, 1, 0, 0, 0, 3029, 3030, 1, 0, 0, 0, 3030, 3033, 1, 0, 0, 0, 3031, 3032, 5, 47, 0, 0, 3032, 3034, 5, 426, 0, 0, 3033, 3031, 1, 0, 0, 0, 3033, 3034, 1, 0, 0, 0, 3034, 3038, 1, 0, 0, 0, 3035, 3039, 5, 130, 0, 0, 3036, 3037, 5, 6, 0, 0, 3037, 3039, 3, 654, 327, 0, 3038, 3035, 1, 0, 0, 0, 3038, 3036, 1, 0, 0, 0, 3038, 3039, 1, 0, 0, 0, 3039, 3041, 1, 0, 0, 0, 3040, 3042, 3, 34, 17, 0, 3041, 3040, 1, 0, 0, 0, 3041, 3042, 1, 0, 0, 0, 3042, 3068, 1, 0, 0, 0, 3043, 3046, 5, 4, 0, 0, 3044, 3046, 5, 278, 0, 0, 3045, 3043, 1, 0, 0, 0, 3045, 3044, 1, 0, 0, 0, 3046, 3047, 1, 0, 0, 0, 3047, 3048, 5, 46, 0, 0, 3048, 3049, 5, 399, 0, 0, 3049, 3050, 3, 248, 124, 0, 3050, 3052, 5, 400, 0, 0, 3051, 3053, 3, 34, 17, 0, 3052, 3051, 1, 0, 0, 0, 3052, 3053, 1, 0, 0, 0, 3053, 3068, 1, 0, 0, 0, 3054, 3055, 5, 365, 0, 0, 3055, 3057, 5, 46, 0, 0, 3056, 3058, 3, 34, 17, 0, 3057, 3056, 1, 0, 0, 0, 3057, 3058, 1, 0, 0, 0, 3058, 3068, 1, 0, 0, 0, 3059, 3065, 3, 272, 136, 0, 3060, 3062, 5, 218, 0, 0, 3061, 3063, 5, 34, 0, 0, 3062, 3061, 1, 0, 0, 0, 3062, 3063, 1, 0, 0, 0, 3063, 3066, 1, 0, 0, 0, 3064, 3066, 5, 222, 0, 0, 3065, 3060, 1, 0, 0, 0, 3065, 3064, 1, 0, 0, 0, 3066, 3068, 1, 0, 0, 0, 3067, 2935, 1, 0, 0, 0, 3067, 2938, 1, 0, 0, 0, 3067, 2941, 1, 0, 0, 0, 3067, 2942, 1, 0, 0, 0, 3067, 2954, 1, 0, 0, 0, 3067, 2957, 1, 0, 0, 0, 3067, 2960, 1, 0, 0, 0, 3067, 2963, 1, 0, 0, 0, 3067, 2977, 1, 0, 0, 0, 3067, 2979, 1, 0, 0, 0, 3067, 2980, 1, 0, 0, 0, 3067, 3004, 1, 0, 0, 0, 3067, 3017, 1, 0, 0, 0, 3067, 3021, 1, 0, 0, 0, 3067, 3045, 1, 0, 0, 0, 3067, 3054, 1, 0, 0, 0, 3067, 3059, 1, 0, 0, 0, 3068, 421, 1, 0, 0, 0, 3069, 3070, 5, 304, 0, 0, 3070, 3071, 5, 332, 0, 0, 3071, 3096, 3, 226, 113, 0, 3072, 3073, 5, 363, 0, 0, 3073, 3075, 5, 332, 0, 0, 3074, 3076, 3, 30, 15, 0, 3075, 3074, 1, 0, 0, 0, 3075, 3076, 1, 0, 0, 0, 3076, 3077, 1, 0, 0, 0, 3077, 3096, 3, 226, 113, 0, 3078, 3079, 5, 274, 0, 0, 3079, 3080, 5, 341, 0, 0, 3080, 3096, 3, 484, 242, 0, 3081, 3083, 5, 4, 0, 0, 3082, 3084, 3, 32, 16, 0, 3083, 3082, 1, 0, 0, 0, 3083, 3084, 1, 0, 0, 0, 3084, 3089, 1, 0, 0, 0, 3085, 3087, 3, 642, 321, 0, 3086, 3088, 3, 428, 214, 0, 3087, 3086, 1, 0, 0, 0, 3087, 3088, 1, 0, 0, 0, 3088, 3090, 1, 0, 0, 0, 3089, 3085, 1, 0, 0, 0, 3090, 3091, 1, 0, 0, 0, 3091, 3089, 1, 0, 0, 0, 3091, 3092, 1, 0, 0, 0, 3092, 3096, 1, 0, 0, 0, 3093, 3096, 3, 430, 215, 0, 3094, 3096, 3, 384, 192, 0, 3095, 3069, 1, 0, 0, 0, 3095, 3072, 1, 0, 0, 0, 3095, 3078, 1, 0, 0, 0, 3095, 3081, 1, 0, 0, 0, 3095, 3093, 1, 0, 0, 0, 3095, 3094, 1, 0, 0, 0, 3096, 423, 1, 0, 0, 0, 3097, 3098, 3, 476, 238, 0, 3098, 3099, 5, 304, 0, 0, 3099, 3100, 5, 76, 0, 0, 3100, 3101, 3, 230, 115, 0, 3101, 3113, 1, 0, 0, 0, 3102, 3103, 3, 476, 238, 0, 3103, 3104, 5, 304, 0, 0, 3104, 3105, 5, 236, 0, 0, 3105, 3106, 3, 128, 64, 0, 3106, 3113, 1, 0, 0, 0, 3107, 3108, 3, 476, 238, 0, 3108, 3109, 5, 304, 0, 0, 3109, 3110, 7, 26, 0, 0, 3110, 3111, 5, 426, 0, 0, 3111, 3113, 1, 0, 0, 0, 3112, 3097, 1, 0, 0, 0, 3112, 3102, 1, 0, 0, 0, 3112, 3107, 1, 0, 0, 0, 3113, 425, 1, 0, 0, 0, 3114, 3115, 3, 476, 238, 0, 3115, 3116, 5, 304, 0, 0, 3116, 3117, 5, 77, 0, 0, 3117, 3118, 3, 230, 115, 0, 3118, 3130, 1, 0, 0, 0, 3119, 3120, 3, 476, 238, 0, 3120, 3121, 5, 304, 0, 0, 3121, 3122, 5, 236, 0, 0, 3122, 3123, 3, 128, 64, 0, 3123, 3130, 1, 0, 0, 0, 3124, 3125, 3, 476, 238, 0, 3125, 3126, 5, 304, 0, 0, 3126, 3127, 5, 367, 0, 0, 3127, 3128, 5, 426, 0, 0, 3128, 3130, 1, 0, 0, 0, 3129, 3114, 1, 0, 0, 0, 3129, 3119, 1, 0, 0, 0, 3129, 3124, 1, 0, 0, 0, 3130, 427, 1, 0, 0, 0, 3131, 3132, 5, 189, 0, 0, 3132, 3133, 5, 426, 0, 0, 3133, 429, 1, 0, 0, 0, 3134, 3136, 5, 101, 0, 0, 3135, 3137, 3, 30, 15, 0, 3136, 3135, 1, 0, 0, 0, 3136, 3137, 1, 0, 0, 0, 3137, 3138, 1, 0, 0, 0, 3138, 3139, 5, 237, 0, 0, 3139, 3145, 3, 646, 323, 0, 3140, 3141, 5, 397, 0, 0, 3141, 3142, 5, 237, 0, 0, 3142, 3144, 3, 646, 323, 0, 3143, 3140, 1, 0, 0, 0, 3144, 3147, 1, 0, 0, 0, 3145, 3143, 1, 0, 0, 0, 3145, 3146, 1, 0, 0, 0, 3146, 3150, 1, 0, 0, 0, 3147, 3145, 1, 0, 0, 0, 3148, 3149, 5, 152, 0, 0, 3149, 3151, 5, 254, 0, 0, 3150, 3148, 1, 0, 0, 0, 3150, 3151, 1, 0, 0, 0, 3151, 3153, 1, 0, 0, 0, 3152, 3154, 5, 255, 0, 0, 3153, 3152, 1, 0, 0, 0, 3153, 3154, 1, 0, 0, 0, 3154, 3156, 1, 0, 0, 0, 3155, 3157, 3, 14, 7, 0, 3156, 3155, 1, 0, 0, 0, 3156, 3157, 1, 0, 0, 0, 3157, 431, 1, 0, 0, 0, 3158, 3161, 3, 588, 294, 0, 3159, 3161, 3, 298, 149, 0, 3160, 3158, 1, 0, 0, 0, 3160, 3159, 1, 0, 0, 0, 3161, 3162, 1, 0, 0, 0, 3162, 3163, 5, 405, 0, 0, 3163, 3164, 5, 426, 0, 0, 3164, 433, 1, 0, 0, 0, 3165, 3175, 5, 115, 0, 0, 3166, 3167, 5, 289, 0, 0, 3167, 3168, 5, 399, 0, 0, 3168, 3176, 7, 27, 0, 0, 3169, 3170, 5, 118, 0, 0, 3170, 3171, 5, 399, 0, 0, 3171, 3176, 5, 426, 0, 0, 3172, 3173, 5, 306, 0, 0, 3173, 3174, 5, 399, 0, 0, 3174, 3176, 5, 431, 0, 0, 3175, 3166, 1, 0, 0, 0, 3175, 3169, 1, 0, 0, 0, 3175, 3172, 1, 0, 0, 0, 3176, 3177, 1, 0, 0, 0, 3177, 3178, 5, 400, 0, 0, 3178, 435, 1, 0, 0, 0, 3179, 3180, 5, 160, 0, 0, 3180, 3181, 5, 426, 0, 0, 3181, 3182, 5, 233, 0, 0, 3182, 3183, 5, 426, 0, 0, 3183, 3184, 5, 301, 0, 0, 3184, 3189, 5, 426, 0, 0, 3185, 3186, 5, 159, 0, 0, 3186, 3187, 5, 426, 0, 0, 3187, 3188, 5, 232, 0, 0, 3188, 3190, 5, 426, 0, 0, 3189, 3185, 1, 0, 0, 0, 3189, 3190, 1, 0, 0, 0, 3190, 3193, 1, 0, 0, 0, 3191, 3193, 3, 654, 327, 0, 3192, 3179, 1, 0, 0, 0, 3192, 3191, 1, 0, 0, 0, 3193, 437, 1, 0, 0, 0, 3194, 3195, 5, 184, 0, 0, 3195, 3204, 5, 128, 0, 0, 3196, 3197, 5, 184, 0, 0, 3197, 3198, 5, 128, 0, 0, 3198, 3199, 3, 654, 327, 0, 3199, 3200, 5, 426, 0, 0, 3200, 3204, 1, 0, 0, 0, 3201, 3202, 5, 184, 0, 0, 3202, 3204, 3, 482, 241, 0, 3203, 3194, 1, 0, 0, 0, 3203, 3196, 1, 0, 0, 0, 3203, 3201, 1, 0, 0, 0, 3204, 439, 1, 0, 0, 0, 3205, 3207, 5, 58, 0, 0, 3206, 3208, 5, 333, 0, 0, 3207, 3206, 1, 0, 0, 0, 3207, 3208, 1, 0, 0, 0, 3208, 3210, 1, 0, 0, 0, 3209, 3211, 5, 345, 0, 0, 3210, 3209, 1, 0, 0, 0, 3210, 3211, 1, 0, 0, 0, 3211, 3213, 1, 0, 0, 0, 3212, 3214, 5, 123, 0, 0, 3213, 3212, 1, 0, 0, 0, 3213, 3214, 1, 0, 0, 0, 3214, 3215, 1, 0, 0, 0, 3215, 3217, 5, 329, 0, 0, 3216, 3218, 3, 32, 16, 0, 3217, 3216, 1, 0, 0, 0, 3217, 3218, 1, 0, 0, 0, 3218, 3219, 1, 0, 0, 0, 3219, 3276, 3, 484, 242, 0, 3220, 3222, 3, 438, 219, 0, 3221, 3223, 3, 200, 100, 0, 3222, 3221, 1, 0, 0, 0, 3222, 3223, 1, 0, 0, 0, 3223, 3225, 1, 0, 0, 0, 3224, 3226, 3, 222, 111, 0, 3225, 3224, 1, 0, 0, 0, 3225, 3226, 1, 0, 0, 0, 3226, 3228, 1, 0, 0, 0, 3227, 3229, 3, 246, 123, 0, 3228, 3227, 1, 0, 0, 0, 3228, 3229, 1, 0, 0, 0, 3229, 3231, 1, 0, 0, 0, 3230, 3232, 3, 428, 214, 0, 3231, 3230, 1, 0, 0, 0, 3231, 3232, 1, 0, 0, 0, 3232, 3234, 1, 0, 0, 0, 3233, 3235, 3, 224, 112, 0, 3234, 3233, 1, 0, 0, 0, 3234, 3235, 1, 0, 0, 0, 3235, 3237, 1, 0, 0, 0, 3236, 3238, 3, 198, 99, 0, 3237, 3236, 1, 0, 0, 0, 3237, 3238, 1, 0, 0, 0, 3238, 3277, 1, 0, 0, 0, 3239, 3240, 5, 399, 0, 0, 3240, 3241, 3, 250, 125, 0, 3241, 3242, 5, 400, 0, 0, 3242, 3244, 1, 0, 0, 0, 3243, 3239, 1, 0, 0, 0, 3243, 3244, 1, 0, 0, 0, 3244, 3246, 1, 0, 0, 0, 3245, 3247, 3, 196, 98, 0, 3246, 3245, 1, 0, 0, 0, 3246, 3247, 1, 0, 0, 0, 3247, 3249, 1, 0, 0, 0, 3248, 3250, 3, 200, 100, 0, 3249, 3248, 1, 0, 0, 0, 3249, 3250, 1, 0, 0, 0, 3250, 3252, 1, 0, 0, 0, 3251, 3253, 3, 208, 104, 0, 3252, 3251, 1, 0, 0, 0, 3252, 3253, 1, 0, 0, 0, 3253, 3255, 1, 0, 0, 0, 3254, 3256, 3, 210, 105, 0, 3255, 3254, 1, 0, 0, 0, 3255, 3256, 1, 0, 0, 0, 3256, 3258, 1, 0, 0, 0, 3257, 3259, 3, 222, 111, 0, 3258, 3257, 1, 0, 0, 0, 3258, 3259, 1, 0, 0, 0, 3259, 3261, 1, 0, 0, 0, 3260, 3262, 3, 246, 123, 0, 3261, 3260, 1, 0, 0, 0, 3261, 3262, 1, 0, 0, 0, 3262, 3264, 1, 0, 0, 0, 3263, 3265, 3, 428, 214, 0, 3264, 3263, 1, 0, 0, 0, 3264, 3265, 1, 0, 0, 0, 3265, 3267, 1, 0, 0, 0, 3266, 3268, 3, 224, 112, 0, 3267, 3266, 1, 0, 0, 0, 3267, 3268, 1, 0, 0, 0, 3268, 3270, 1, 0, 0, 0, 3269, 3271, 3, 198, 99, 0, 3270, 3269, 1, 0, 0, 0, 3270, 3271, 1, 0, 0, 0, 3271, 3274, 1, 0, 0, 0, 3272, 3273, 5, 17, 0, 0, 3273, 3275, 3, 384, 192, 0, 3274, 3272, 1, 0, 0, 0, 3274, 3275, 1, 0, 0, 0, 3275, 3277, 1, 0, 0, 0, 3276, 3220, 1, 0, 0, 0, 3276, 3243, 1, 0, 0, 0, 3277, 3341, 1, 0, 0, 0, 3278, 3279, 5, 58, 0, 0, 3279, 3280, 5, 195, 0, 0, 3280, 3282, 5, 329, 0, 0, 3281, 3283, 3, 32, 16, 0, 3282, 3281, 1, 0, 0, 0, 3282, 3283, 1, 0, 0, 0, 3283, 3284, 1, 0, 0, 0, 3284, 3338, 3, 484, 242, 0, 3285, 3287, 3, 438, 219, 0, 3286, 3288, 3, 222, 111, 0, 3287, 3286, 1, 0, 0, 0, 3287, 3288, 1, 0, 0, 0, 3288, 3290, 1, 0, 0, 0, 3289, 3291, 3, 246, 123, 0, 3290, 3289, 1, 0, 0, 0, 3290, 3291, 1, 0, 0, 0, 3291, 3293, 1, 0, 0, 0, 3292, 3294, 3, 428, 214, 0, 3293, 3292, 1, 0, 0, 0, 3293, 3294, 1, 0, 0, 0, 3294, 3296, 1, 0, 0, 0, 3295, 3297, 3, 224, 112, 0, 3296, 3295, 1, 0, 0, 0, 3296, 3297, 1, 0, 0, 0, 3297, 3299, 1, 0, 0, 0, 3298, 3300, 3, 198, 99, 0, 3299, 3298, 1, 0, 0, 0, 3299, 3300, 1, 0, 0, 0, 3300, 3339, 1, 0, 0, 0, 3301, 3302, 5, 399, 0, 0, 3302, 3303, 3, 250, 125, 0, 3303, 3304, 5, 400, 0, 0, 3304, 3306, 1, 0, 0, 0, 3305, 3301, 1, 0, 0, 0, 3305, 3306, 1, 0, 0, 0, 3306, 3308, 1, 0, 0, 0, 3307, 3309, 3, 196, 98, 0, 3308, 3307, 1, 0, 0, 0, 3308, 3309, 1, 0, 0, 0, 3309, 3311, 1, 0, 0, 0, 3310, 3312, 3, 200, 100, 0, 3311, 3310, 1, 0, 0, 0, 3311, 3312, 1, 0, 0, 0, 3312, 3314, 1, 0, 0, 0, 3313, 3315, 3, 208, 104, 0, 3314, 3313, 1, 0, 0, 0, 3314, 3315, 1, 0, 0, 0, 3315, 3317, 1, 0, 0, 0, 3316, 3318, 3, 210, 105, 0, 3317, 3316, 1, 0, 0, 0, 3317, 3318, 1, 0, 0, 0, 3318, 3320, 1, 0, 0, 0, 3319, 3321, 3, 222, 111, 0, 3320, 3319, 1, 0, 0, 0, 3320, 3321, 1, 0, 0, 0, 3321, 3323, 1, 0, 0, 0, 3322, 3324, 3, 246, 123, 0, 3323, 3322, 1, 0, 0, 0, 3323, 3324, 1, 0, 0, 0, 3324, 3326, 1, 0, 0, 0, 3325, 3327, 3, 428, 214, 0, 3326, 3325, 1, 0, 0, 0, 3326, 3327, 1, 0, 0, 0, 3327, 3329, 1, 0, 0, 0, 3328, 3330, 3, 224, 112, 0, 3329, 3328, 1, 0, 0, 0, 3329, 3330, 1, 0, 0, 0, 3330, 3332, 1, 0, 0, 0, 3331, 3333, 3, 198, 99, 0, 3332, 3331, 1, 0, 0, 0, 3332, 3333, 1, 0, 0, 0, 3333, 3336, 1, 0, 0, 0, 3334, 3335, 5, 17, 0, 0, 3335, 3337, 3, 384, 192, 0, 3336, 3334, 1, 0, 0, 0, 3336, 3337, 1, 0, 0, 0, 3337, 3339, 1, 0, 0, 0, 3338, 3285, 1, 0, 0, 0, 3338, 3305, 1, 0, 0, 0, 3339, 3341, 1, 0, 0, 0, 3340, 3205, 1, 0, 0, 0, 3340, 3278, 1, 0, 0, 0, 3341, 441, 1, 0, 0, 0, 3342, 3343, 5, 58, 0, 0, 3343, 3345, 5, 69, 0, 0, 3344, 3346, 3, 32, 16, 0, 3345, 3344, 1, 0, 0, 0, 3345, 3346, 1, 0, 0, 0, 3346, 3347, 1, 0, 0, 0, 3347, 3350, 3, 654, 327, 0, 3348, 3349, 5, 352, 0, 0, 3349, 3351, 5, 426, 0, 0, 3350, 3348, 1, 0, 0, 0, 3350, 3351, 1, 0, 0, 0, 3351, 3354, 1, 0, 0, 0, 3352, 3353, 5, 367, 0, 0, 3353, 3355, 5, 426, 0, 0, 3354, 3352, 1, 0, 0, 0, 3354, 3355, 1, 0, 0, 0, 3355, 3358, 1, 0, 0, 0, 3356, 3357, 5, 47, 0, 0, 3357, 3359, 5, 426, 0, 0, 3358, 3356, 1, 0, 0, 0, 3358, 3359, 1, 0, 0, 0, 3359, 3363, 1, 0, 0, 0, 3360, 3361, 5, 387, 0, 0, 3361, 3362, 5, 77, 0, 0, 3362, 3364, 3, 230, 115, 0, 3363, 3360, 1, 0, 0, 0, 3363, 3364, 1, 0, 0, 0, 3364, 443, 1, 0, 0, 0, 3365, 3366, 5, 101, 0, 0, 3366, 3368, 5, 69, 0, 0, 3367, 3369, 3, 30, 15, 0, 3368, 3367, 1, 0, 0, 0, 3368, 3369, 1, 0, 0, 0, 3369, 3370, 1, 0, 0, 0, 3370, 3371, 3, 654, 327, 0, 3371, 445, 1, 0, 0, 0, 3372, 3373, 3, 654, 327, 0, 3373, 3374, 5, 395, 0, 0, 3374, 3376, 1, 0, 0, 0, 3375, 3372, 1, 0, 0, 0, 3376, 3379, 1, 0, 0, 0, 3377, 3375, 1, 0, 0, 0, 3377, 3378, 1, 0, 0, 0, 3378, 3380, 1, 0, 0, 0, 3379, 3377, 1, 0, 0, 0, 3380, 3381, 5, 415, 0, 0, 3381, 447, 1, 0, 0, 0, 3382, 3387, 3, 596, 298, 0, 3383, 3384, 5, 397, 0, 0, 3384, 3386, 3, 596, 298, 0, 3385, 3383, 1, 0, 0, 0, 3386, 3389, 1, 0, 0, 0, 3387, 3385, 1, 0, 0, 0, 3387, 3388, 1, 0, 0, 0, 3388, 449, 1, 0, 0, 0, 3389, 3387, 1, 0, 0, 0, 3390, 3395, 3, 654, 327, 0, 3391, 3392, 5, 397, 0, 0, 3392, 3394, 3, 654, 327, 0, 3393, 3391, 1, 0, 0, 0, 3394, 3397, 1, 0, 0, 0, 3395, 3393, 1, 0, 0, 0, 3395, 3396, 1, 0, 0, 0, 3396, 451, 1, 0, 0, 0, 3397, 3395, 1, 0, 0, 0, 3398, 3399, 5, 139, 0, 0, 3399, 3400, 3, 454, 227, 0, 3400, 453, 1, 0, 0, 0, 3401, 3402, 5, 359, 0, 0, 3402, 3405, 3, 462, 231, 0, 3403, 3404, 5, 397, 0, 0, 3404, 3406, 3, 462, 231, 0, 3405, 3403, 1, 0, 0, 0, 3406, 3407, 1, 0, 0, 0, 3407, 3405, 1, 0, 0, 0, 3407, 3408, 1, 0, 0, 0, 3408, 3411, 1, 0, 0, 0, 3409, 3411, 3, 458, 229, 0, 3410, 3401, 1, 0, 0, 0, 3410, 3409, 1, 0, 0, 0, 3411, 455, 1, 0, 0, 0, 3412, 3416, 3, 472, 236, 0, 3413, 3415, 3, 466, 233, 0, 3414, 3413, 1, 0, 0, 0, 3415, 3418, 1, 0, 0, 0, 3416, 3414, 1, 0, 0, 0, 3416, 3417, 1, 0, 0, 0, 3417, 3445, 1, 0, 0, 0, 3418, 3416, 1, 0, 0, 0, 3419, 3423, 3, 506, 253, 0, 3420, 3422, 3, 466, 233, 0, 3421, 3420, 1, 0, 0, 0, 3422, 3425, 1, 0, 0, 0, 3423, 3421, 1, 0, 0, 0, 3423, 3424, 1, 0, 0, 0, 3424, 3445, 1, 0, 0, 0, 3425, 3423, 1, 0, 0, 0, 3426, 3430, 3, 490, 245, 0, 3427, 3429, 3, 466, 233, 0, 3428, 3427, 1, 0, 0, 0, 3429, 3432, 1, 0, 0, 0, 3430, 3428, 1, 0, 0, 0, 3430, 3431, 1, 0, 0, 0, 3431, 3445, 1, 0, 0, 0, 3432, 3430, 1, 0, 0, 0, 3433, 3437, 3, 496, 248, 0, 3434, 3436, 3, 466, 233, 0, 3435, 3434, 1, 0, 0, 0, 3436, 3439, 1, 0, 0, 0, 3437, 3435, 1, 0, 0, 0, 3437, 3438, 1, 0, 0, 0, 3438, 3445, 1, 0, 0, 0, 3439, 3437, 1, 0, 0, 0, 3440, 3441, 5, 399, 0, 0, 3441, 3442, 3, 458, 229, 0, 3442, 3443, 5, 400, 0, 0, 3443, 3445, 1, 0, 0, 0, 3444, 3412, 1, 0, 0, 0, 3444, 3419, 1, 0, 0, 0, 3444, 3426, 1, 0, 0, 0, 3444, 3433, 1, 0, 0, 0, 3444, 3440, 1, 0, 0, 0, 3445, 457, 1, 0, 0, 0, 3446, 3464, 3, 456, 228, 0, 3447, 3448, 3, 464, 232, 0, 3448, 3460, 3, 460, 230, 0, 3449, 3456, 5, 224, 0, 0, 3450, 3457, 3, 596, 298, 0, 3451, 3454, 3, 260, 130, 0, 3452, 3453, 5, 405, 0, 0, 3453, 3455, 3, 260, 130, 0, 3454, 3452, 1, 0, 0, 0, 3454, 3455, 1, 0, 0, 0, 3455, 3457, 1, 0, 0, 0, 3456, 3450, 1, 0, 0, 0, 3456, 3451, 1, 0, 0, 0, 3457, 3461, 1, 0, 0, 0, 3458, 3459, 5, 370, 0, 0, 3459, 3461, 3, 268, 134, 0, 3460, 3449, 1, 0, 0, 0, 3460, 3458, 1, 0, 0, 0, 3460, 3461, 1, 0, 0, 0, 3461, 3463, 1, 0, 0, 0, 3462, 3447, 1, 0, 0, 0, 3463, 3466, 1, 0, 0, 0, 3464, 3462, 1, 0, 0, 0, 3464, 3465, 1, 0, 0, 0, 3465, 459, 1, 0, 0, 0, 3466, 3464, 1, 0, 0, 0, 3467, 3472, 3, 472, 236, 0, 3468, 3472, 3, 506, 253, 0, 3469, 3472, 3, 490, 245, 0, 3470, 3472, 3, 496, 248, 0, 3471, 3467, 1, 0, 0, 0, 3471, 3468, 1, 0, 0, 0, 3471, 3469, 1, 0, 0, 0, 3471, 3470, 1, 0, 0, 0, 3472, 3476, 1, 0, 0, 0, 3473, 3475, 3, 466, 233, 0, 3474, 3473, 1, 0, 0, 0, 3475, 3478, 1, 0, 0, 0, 3476, 3474, 1, 0, 0, 0, 3476, 3477, 1, 0, 0, 0, 3477, 461, 1, 0, 0, 0, 3478, 3476, 1, 0, 0, 0, 3479, 3481, 5, 250, 0, 0, 3480, 3479, 1, 0, 0, 0, 3480, 3481, 1, 0, 0, 0, 3481, 3482, 1, 0, 0, 0, 3482, 3484, 3, 480, 240, 0, 3483, 3485, 3, 470, 235, 0, 3484, 3483, 1, 0, 0, 0, 3484, 3485, 1, 0, 0, 0, 3485, 3490, 1, 0, 0, 0, 3486, 3488, 5, 17, 0, 0, 3487, 3486, 1, 0, 0, 0, 3487, 3488, 1, 0, 0, 0, 3488, 3489, 1, 0, 0, 0, 3489, 3491, 3, 654, 327, 0, 3490, 3487, 1, 0, 0, 0, 3490, 3491, 1, 0, 0, 0, 3491, 3492, 1, 0, 0, 0, 3492, 3493, 5, 399, 0, 0, 3493, 3494, 3, 448, 224, 0, 3494, 3495, 5, 400, 0, 0, 3495, 463, 1, 0, 0, 0, 3496, 3511, 5, 397, 0, 0, 3497, 3508, 5, 157, 0, 0, 3498, 3508, 5, 60, 0, 0, 3499, 3501, 7, 28, 0, 0, 3500, 3502, 5, 231, 0, 0, 3501, 3500, 1, 0, 0, 0, 3501, 3502, 1, 0, 0, 0, 3502, 3508, 1, 0, 0, 0, 3503, 3505, 5, 180, 0, 0, 3504, 3506, 7, 29, 0, 0, 3505, 3504, 1, 0, 0, 0, 3505, 3506, 1, 0, 0, 0, 3506, 3508, 1, 0, 0, 0, 3507, 3497, 1, 0, 0, 0, 3507, 3498, 1, 0, 0, 0, 3507, 3499, 1, 0, 0, 0, 3507, 3503, 1, 0, 0, 0, 3507, 3508, 1, 0, 0, 0, 3508, 3509, 1, 0, 0, 0, 3509, 3511, 5, 171, 0, 0, 3510, 3496, 1, 0, 0, 0, 3510, 3507, 1, 0, 0, 0, 3511, 465, 1, 0, 0, 0, 3512, 3513, 5, 178, 0, 0, 3513, 3514, 5, 378, 0, 0, 3514, 3515, 5, 231, 0, 0, 3515, 3516, 3, 566, 283, 0, 3516, 3526, 3, 468, 234, 0, 3517, 3518, 5, 17, 0, 0, 3518, 3523, 3, 654, 327, 0, 3519, 3520, 5, 397, 0, 0, 3520, 3522, 3, 654, 327, 0, 3521, 3519, 1, 0, 0, 0, 3522, 3525, 1, 0, 0, 0, 3523, 3521, 1, 0, 0, 0, 3523, 3524, 1, 0, 0, 0, 3524, 3527, 1, 0, 0, 0, 3525, 3523, 1, 0, 0, 0, 3526, 3517, 1, 0, 0, 0, 3526, 3527, 1, 0, 0, 0, 3527, 3570, 1, 0, 0, 0, 3528, 3530, 5, 397, 0, 0, 3529, 3528, 1, 0, 0, 0, 3529, 3530, 1, 0, 0, 0, 3530, 3531, 1, 0, 0, 0, 3531, 3567, 5, 178, 0, 0, 3532, 3533, 5, 378, 0, 0, 3533, 3534, 3, 566, 283, 0, 3534, 3544, 3, 468, 234, 0, 3535, 3536, 5, 17, 0, 0, 3536, 3541, 3, 654, 327, 0, 3537, 3538, 5, 397, 0, 0, 3538, 3540, 3, 654, 327, 0, 3539, 3537, 1, 0, 0, 0, 3540, 3543, 1, 0, 0, 0, 3541, 3539, 1, 0, 0, 0, 3541, 3542, 1, 0, 0, 0, 3542, 3545, 1, 0, 0, 0, 3543, 3541, 1, 0, 0, 0, 3544, 3535, 1, 0, 0, 0, 3544, 3545, 1, 0, 0, 0, 3545, 3568, 1, 0, 0, 0, 3546, 3547, 5, 329, 0, 0, 3547, 3548, 5, 399, 0, 0, 3548, 3549, 3, 502, 251, 0, 3549, 3551, 5, 400, 0, 0, 3550, 3552, 5, 17, 0, 0, 3551, 3550, 1, 0, 0, 0, 3551, 3552, 1, 0, 0, 0, 3552, 3553, 1, 0, 0, 0, 3553, 3565, 3, 468, 234, 0, 3554, 3555, 5, 399, 0, 0, 3555, 3560, 3, 654, 327, 0, 3556, 3557, 5, 397, 0, 0, 3557, 3559, 3, 654, 327, 0, 3558, 3556, 1, 0, 0, 0, 3559, 3562, 1, 0, 0, 0, 3560, 3558, 1, 0, 0, 0, 3560, 3561, 1, 0, 0, 0, 3561, 3563, 1, 0, 0, 0, 3562, 3560, 1, 0, 0, 0, 3563, 3564, 5, 400, 0, 0, 3564, 3566, 1, 0, 0, 0, 3565, 3554, 1, 0, 0, 0, 3565, 3566, 1, 0, 0, 0, 3566, 3568, 1, 0, 0, 0, 3567, 3532, 1, 0, 0, 0, 3567, 3546, 1, 0, 0, 0, 3568, 3570, 1, 0, 0, 0, 3569, 3512, 1, 0, 0, 0, 3569, 3529, 1, 0, 0, 0, 3570, 467, 1, 0, 0, 0, 3571, 3572, 3, 654, 327, 0, 3572, 469, 1, 0, 0, 0, 3573, 3574, 5, 331, 0, 0, 3574, 3575, 5, 399, 0, 0, 3575, 3576, 5, 30, 0, 0, 3576, 3577, 5, 431, 0, 0, 3577, 3578, 5, 230, 0, 0, 3578, 3579, 5, 221, 0, 0, 3579, 3589, 5, 431, 0, 0, 3580, 3581, 5, 224, 0, 0, 3581, 3586, 3, 596, 298, 0, 3582, 3583, 5, 397, 0, 0, 3583, 3585, 3, 596, 298, 0, 3584, 3582, 1, 0, 0, 0, 3585, 3588, 1, 0, 0, 0, 3586, 3584, 1, 0, 0, 0, 3586, 3587, 1, 0, 0, 0, 3587, 3590, 1, 0, 0, 0, 3588, 3586, 1, 0, 0, 0, 3589, 3580, 1, 0, 0, 0, 3589, 3590, 1, 0, 0, 0, 3590, 3591, 1, 0, 0, 0, 3591, 3601, 5, 400, 0, 0, 3592, 3593, 5, 331, 0, 0, 3593, 3597, 5, 399, 0, 0, 3594, 3595, 5, 431, 0, 0, 3595, 3598, 7, 30, 0, 0, 3596, 3598, 5, 430, 0, 0, 3597, 3594, 1, 0, 0, 0, 3597, 3596, 1, 0, 0, 0, 3598, 3599, 1, 0, 0, 0, 3599, 3601, 5, 400, 0, 0, 3600, 3573, 1, 0, 0, 0, 3600, 3592, 1, 0, 0, 0, 3601, 471, 1, 0, 0, 0, 3602, 3604, 3, 480, 240, 0, 3603, 3605, 3, 226, 113, 0, 3604, 3603, 1, 0, 0, 0, 3604, 3605, 1, 0, 0, 0, 3605, 3607, 1, 0, 0, 0, 3606, 3608, 3, 470, 235, 0, 3607, 3606, 1, 0, 0, 0, 3607, 3608, 1, 0, 0, 0, 3608, 3610, 1, 0, 0, 0, 3609, 3611, 3, 474, 237, 0, 3610, 3609, 1, 0, 0, 0, 3610, 3611, 1, 0, 0, 0, 3611, 3616, 1, 0, 0, 0, 3612, 3614, 5, 17, 0, 0, 3613, 3612, 1, 0, 0, 0, 3613, 3614, 1, 0, 0, 0, 3614, 3615, 1, 0, 0, 0, 3615, 3617, 3, 654, 327, 0, 3616, 3613, 1, 0, 0, 0, 3616, 3617, 1, 0, 0, 0, 3617, 473, 1, 0, 0, 0, 3618, 3628, 5, 134, 0, 0, 3619, 3620, 5, 327, 0, 0, 3620, 3621, 5, 17, 0, 0, 3621, 3622, 5, 221, 0, 0, 3622, 3629, 3, 596, 298, 0, 3623, 3624, 5, 134, 0, 0, 3624, 3625, 5, 328, 0, 0, 3625, 3626, 5, 17, 0, 0, 3626, 3627, 5, 221, 0, 0, 3627, 3629, 5, 431, 0, 0, 3628, 3619, 1, 0, 0, 0, 3628, 3623, 1, 0, 0, 0, 3629, 475, 1, 0, 0, 0, 3630, 3631, 3, 654, 327, 0, 3631, 477, 1, 0, 0, 0, 3632, 3633, 3, 654, 327, 0, 3633, 479, 1, 0, 0, 0, 3634, 3637, 3, 482, 241, 0, 3635, 3637, 3, 486, 243, 0, 3636, 3634, 1, 0, 0, 0, 3636, 3635, 1, 0, 0, 0, 3637, 481, 1, 0, 0, 0, 3638, 3639, 3, 654, 327, 0, 3639, 3640, 5, 395, 0, 0, 3640, 3643, 3, 654, 327, 0, 3641, 3642, 5, 395, 0, 0, 3642, 3644, 3, 654, 327, 0, 3643, 3641, 1, 0, 0, 0, 3643, 3644, 1, 0, 0, 0, 3644, 3647, 1, 0, 0, 0, 3645, 3647, 3, 654, 327, 0, 3646, 3638, 1, 0, 0, 0, 3646, 3645, 1, 0, 0, 0, 3647, 483, 1, 0, 0, 0, 3648, 3649, 3, 654, 327, 0, 3649, 3650, 5, 395, 0, 0, 3650, 3653, 3, 654, 327, 0, 3651, 3652, 5, 395, 0, 0, 3652, 3654, 3, 654, 327, 0, 3653, 3651, 1, 0, 0, 0, 3653, 3654, 1, 0, 0, 0, 3654, 3657, 1, 0, 0, 0, 3655, 3657, 3, 654, 327, 0, 3656, 3648, 1, 0, 0, 0, 3656, 3655, 1, 0, 0, 0, 3657, 485, 1, 0, 0, 0, 3658, 3659, 3, 654, 327, 0, 3659, 3660, 5, 395, 0, 0, 3660, 3662, 1, 0, 0, 0, 3661, 3658, 1, 0, 0, 0, 3661, 3662, 1, 0, 0, 0, 3662, 3663, 1, 0, 0, 0, 3663, 3664, 3, 654, 327, 0, 3664, 487, 1, 0, 0, 0, 3665, 3666, 3, 654, 327, 0, 3666, 3667, 5, 395, 0, 0, 3667, 3669, 1, 0, 0, 0, 3668, 3665, 1, 0, 0, 0, 3668, 3669, 1, 0, 0, 0, 3669, 3670, 1, 0, 0, 0, 3670, 3671, 3, 654, 327, 0, 3671, 489, 1, 0, 0, 0, 3672, 3673, 5, 399, 0, 0, 3673, 3674, 3, 364, 182, 0, 3674, 3676, 5, 400, 0, 0, 3675, 3677, 5, 17, 0, 0, 3676, 3675, 1, 0, 0, 0, 3676, 3677, 1, 0, 0, 0, 3677, 3678, 1, 0, 0, 0, 3678, 3679, 3, 654, 327, 0, 3679, 491, 1, 0, 0, 0, 3680, 3682, 3, 558, 279, 0, 3681, 3683, 3, 556, 278, 0, 3682, 3681, 1, 0, 0, 0, 3682, 3683, 1, 0, 0, 0, 3683, 3692, 1, 0, 0, 0, 3684, 3692, 3, 556, 278, 0, 3685, 3687, 3, 562, 281, 0, 3686, 3688, 3, 564, 282, 0, 3687, 3686, 1, 0, 0, 0, 3687, 3688, 1, 0, 0, 0, 3688, 3692, 1, 0, 0, 0, 3689, 3692, 3, 564, 282, 0, 3690, 3692, 3, 560, 280, 0, 3691, 3680, 1, 0, 0, 0, 3691, 3684, 1, 0, 0, 0, 3691, 3685, 1, 0, 0, 0, 3691, 3689, 1, 0, 0, 0, 3691, 3690, 1, 0, 0, 0, 3692, 493, 1, 0, 0, 0, 3693, 3697, 3, 490, 245, 0, 3694, 3697, 3, 472, 236, 0, 3695, 3697, 3, 496, 248, 0, 3696, 3693, 1, 0, 0, 0, 3696, 3694, 1, 0, 0, 0, 3696, 3695, 1, 0, 0, 0, 3697, 495, 1, 0, 0, 0, 3698, 3700, 3, 498, 249, 0, 3699, 3701, 3, 654, 327, 0, 3700, 3699, 1, 0, 0, 0, 3700, 3701, 1, 0, 0, 0, 3701, 497, 1, 0, 0, 0, 3702, 3703, 3, 654, 327, 0, 3703, 3704, 5, 399, 0, 0, 3704, 3705, 5, 224, 0, 0, 3705, 3707, 3, 494, 247, 0, 3706, 3708, 3, 492, 246, 0, 3707, 3706, 1, 0, 0, 0, 3707, 3708, 1, 0, 0, 0, 3708, 3724, 1, 0, 0, 0, 3709, 3710, 5, 432, 0, 0, 3710, 3711, 5, 399, 0, 0, 3711, 3712, 3, 596, 298, 0, 3712, 3721, 5, 400, 0, 0, 3713, 3714, 5, 397, 0, 0, 3714, 3715, 5, 432, 0, 0, 3715, 3716, 5, 399, 0, 0, 3716, 3717, 3, 596, 298, 0, 3717, 3718, 5, 400, 0, 0, 3718, 3720, 1, 0, 0, 0, 3719, 3713, 1, 0, 0, 0, 3720, 3723, 1, 0, 0, 0, 3721, 3719, 1, 0, 0, 0, 3721, 3722, 1, 0, 0, 0, 3722, 3725, 1, 0, 0, 0, 3723, 3721, 1, 0, 0, 0, 3724, 3709, 1, 0, 0, 0, 3724, 3725, 1, 0, 0, 0, 3725, 3726, 1, 0, 0, 0, 3726, 3727, 5, 400, 0, 0, 3727, 499, 1, 0, 0, 0, 3728, 3731, 5, 384, 0, 0, 3729, 3732, 3, 596, 298, 0, 3730, 3732, 3, 260, 130, 0, 3731, 3729, 1, 0, 0, 0, 3731, 3730, 1, 0, 0, 0, 3732, 501, 1, 0, 0, 0, 3733, 3752, 5, 374, 0, 0, 3734, 3739, 3, 552, 276, 0, 3735, 3736, 5, 397, 0, 0, 3736, 3738, 3, 552, 276, 0, 3737, 3735, 1, 0, 0, 0, 3738, 3741, 1, 0, 0, 0, 3739, 3737, 1, 0, 0, 0, 3739, 3740, 1, 0, 0, 0, 3740, 3753, 1, 0, 0, 0, 3741, 3739, 1, 0, 0, 0, 3742, 3743, 5, 399, 0, 0, 3743, 3744, 3, 548, 274, 0, 3744, 3749, 5, 400, 0, 0, 3745, 3746, 5, 397, 0, 0, 3746, 3748, 3, 552, 276, 0, 3747, 3745, 1, 0, 0, 0, 3748, 3751, 1, 0, 0, 0, 3749, 3747, 1, 0, 0, 0, 3749, 3750, 1, 0, 0, 0, 3750, 3753, 1, 0, 0, 0, 3751, 3749, 1, 0, 0, 0, 3752, 3734, 1, 0, 0, 0, 3752, 3742, 1, 0, 0, 0, 3753, 503, 1, 0, 0, 0, 3754, 3755, 5, 329, 0, 0, 3755, 3756, 5, 399, 0, 0, 3756, 3757, 3, 502, 251, 0, 3757, 3758, 5, 400, 0, 0, 3758, 505, 1, 0, 0, 0, 3759, 3761, 3, 504, 252, 0, 3760, 3762, 5, 17, 0, 0, 3761, 3760, 1, 0, 0, 0, 3761, 3762, 1, 0, 0, 0, 3762, 3763, 1, 0, 0, 0, 3763, 3773, 3, 468, 234, 0, 3764, 3765, 5, 399, 0, 0, 3765, 3770, 3, 654, 327, 0, 3766, 3767, 5, 397, 0, 0, 3767, 3769, 3, 654, 327, 0, 3768, 3766, 1, 0, 0, 0, 3769, 3772, 1, 0, 0, 0, 3770, 3768, 1, 0, 0, 0, 3770, 3771, 1, 0, 0, 0, 3771, 3774, 1, 0, 0, 0, 3772, 3770, 1, 0, 0, 0, 3773, 3764, 1, 0, 0, 0, 3773, 3774, 1, 0, 0, 0, 3774, 3775, 1, 0, 0, 0, 3775, 3776, 5, 400, 0, 0, 3776, 507, 1, 0, 0, 0, 3777, 3779, 5, 299, 0, 0, 3778, 3780, 5, 436, 0, 0, 3779, 3778, 1, 0, 0, 0, 3779, 3780, 1, 0, 0, 0, 3780, 3787, 1, 0, 0, 0, 3781, 3783, 7, 22, 0, 0, 3782, 3781, 1, 0, 0, 0, 3782, 3783, 1, 0, 0, 0, 3783, 3784, 1, 0, 0, 0, 3784, 3788, 3, 512, 256, 0, 3785, 3786, 5, 347, 0, 0, 3786, 3788, 3, 510, 255, 0, 3787, 3782, 1, 0, 0, 0, 3787, 3785, 1, 0, 0, 0, 3788, 3791, 1, 0, 0, 0, 3789, 3791, 3, 520, 260, 0, 3790, 3777, 1, 0, 0, 0, 3790, 3789, 1, 0, 0, 0, 3791, 509, 1, 0, 0, 0, 3792, 3793, 5, 399, 0, 0, 3793, 3794, 3, 524, 262, 0, 3794, 3795, 5, 400, 0, 0, 3795, 3796, 3, 212, 106, 0, 3796, 3797, 3, 216, 108, 0, 3797, 3798, 5, 370, 0, 0, 3798, 3811, 5, 426, 0, 0, 3799, 3809, 5, 17, 0, 0, 3800, 3803, 5, 399, 0, 0, 3801, 3804, 3, 450, 225, 0, 3802, 3804, 3, 248, 124, 0, 3803, 3801, 1, 0, 0, 0, 3803, 3802, 1, 0, 0, 0, 3804, 3805, 1, 0, 0, 0, 3805, 3806, 5, 400, 0, 0, 3806, 3810, 1, 0, 0, 0, 3807, 3810, 3, 450, 225, 0, 3808, 3810, 3, 248, 124, 0, 3809, 3800, 1, 0, 0, 0, 3809, 3807, 1, 0, 0, 0, 3809, 3808, 1, 0, 0, 0, 3810, 3812, 1, 0, 0, 0, 3811, 3799, 1, 0, 0, 0, 3811, 3812, 1, 0, 0, 0, 3812, 3813, 1, 0, 0, 0, 3813, 3814, 3, 212, 106, 0, 3814, 3815, 3, 214, 107, 0, 3815, 511, 1, 0, 0, 0, 3816, 3821, 3, 514, 257, 0, 3817, 3818, 5, 397, 0, 0, 3818, 3820, 3, 514, 257, 0, 3819, 3817, 1, 0, 0, 0, 3820, 3823, 1, 0, 0, 0, 3821, 3819, 1, 0, 0, 0, 3821, 3822, 1, 0, 0, 0, 3822, 513, 1, 0, 0, 0, 3823, 3821, 1, 0, 0, 0, 3824, 3848, 3, 446, 223, 0, 3825, 3828, 3, 516, 258, 0, 3826, 3828, 3, 518, 259, 0, 3827, 3825, 1, 0, 0, 0, 3827, 3826, 1, 0, 0, 0, 3828, 3845, 1, 0, 0, 0, 3829, 3831, 5, 17, 0, 0, 3830, 3829, 1, 0, 0, 0, 3830, 3831, 1, 0, 0, 0, 3831, 3832, 1, 0, 0, 0, 3832, 3846, 3, 654, 327, 0, 3833, 3834, 5, 17, 0, 0, 3834, 3835, 5, 399, 0, 0, 3835, 3840, 3, 654, 327, 0, 3836, 3837, 5, 397, 0, 0, 3837, 3839, 3, 654, 327, 0, 3838, 3836, 1, 0, 0, 0, 3839, 3842, 1, 0, 0, 0, 3840, 3838, 1, 0, 0, 0, 3840, 3841, 1, 0, 0, 0, 3841, 3843, 1, 0, 0, 0, 3842, 3840, 1, 0, 0, 0, 3843, 3844, 5, 400, 0, 0, 3844, 3846, 1, 0, 0, 0, 3845, 3830, 1, 0, 0, 0, 3845, 3833, 1, 0, 0, 0, 3845, 3846, 1, 0, 0, 0, 3846, 3848, 1, 0, 0, 0, 3847, 3824, 1, 0, 0, 0, 3847, 3827, 1, 0, 0, 0, 3848, 515, 1, 0, 0, 0, 3849, 3850, 3, 256, 128, 0, 3850, 517, 1, 0, 0, 0, 3851, 3852, 3, 596, 298, 0, 3852, 519, 1, 0, 0, 0, 3853, 3854, 7, 31, 0, 0, 3854, 3855, 3, 524, 262, 0, 3855, 3856, 3, 212, 106, 0, 3856, 3857, 3, 216, 108, 0, 3857, 3858, 5, 370, 0, 0, 3858, 3871, 5, 426, 0, 0, 3859, 3869, 5, 17, 0, 0, 3860, 3863, 5, 399, 0, 0, 3861, 3864, 3, 450, 225, 0, 3862, 3864, 3, 248, 124, 0, 3863, 3861, 1, 0, 0, 0, 3863, 3862, 1, 0, 0, 0, 3864, 3865, 1, 0, 0, 0, 3865, 3866, 5, 400, 0, 0, 3866, 3870, 1, 0, 0, 0, 3867, 3870, 3, 450, 225, 0, 3868, 3870, 3, 248, 124, 0, 3869, 3860, 1, 0, 0, 0, 3869, 3867, 1, 0, 0, 0, 3869, 3868, 1, 0, 0, 0, 3870, 3872, 1, 0, 0, 0, 3871, 3859, 1, 0, 0, 0, 3871, 3872, 1, 0, 0, 0, 3872, 3873, 1, 0, 0, 0, 3873, 3874, 3, 212, 106, 0, 3874, 3875, 3, 214, 107, 0, 3875, 521, 1, 0, 0, 0, 3876, 3879, 3, 446, 223, 0, 3877, 3879, 3, 596, 298, 0, 3878, 3876, 1, 0, 0, 0, 3878, 3877, 1, 0, 0, 0, 3879, 523, 1, 0, 0, 0, 3880, 3885, 3, 522, 261, 0, 3881, 3882, 5, 397, 0, 0, 3882, 3884, 3, 522, 261, 0, 3883, 3881, 1, 0, 0, 0, 3884, 3887, 1, 0, 0, 0, 3885, 3883, 1, 0, 0, 0, 3885, 3886, 1, 0, 0, 0, 3886, 525, 1, 0, 0, 0, 3887, 3885, 1, 0, 0, 0, 3888, 3889, 5, 386, 0, 0, 3889, 3890, 3, 654, 327, 0, 3890, 3891, 5, 17, 0, 0, 3891, 3899, 3, 528, 264, 0, 3892, 3893, 5, 397, 0, 0, 3893, 3894, 3, 654, 327, 0, 3894, 3895, 5, 17, 0, 0, 3895, 3896, 3, 528, 264, 0, 3896, 3898, 1, 0, 0, 0, 3897, 3892, 1, 0, 0, 0, 3898, 3901, 1, 0, 0, 0, 3899, 3897, 1, 0, 0, 0, 3899, 3900, 1, 0, 0, 0, 3900, 527, 1, 0, 0, 0, 3901, 3899, 1, 0, 0, 0, 3902, 3915, 3, 654, 327, 0, 3903, 3905, 5, 399, 0, 0, 3904, 3906, 3, 654, 327, 0, 3905, 3904, 1, 0, 0, 0, 3905, 3906, 1, 0, 0, 0, 3906, 3908, 1, 0, 0, 0, 3907, 3909, 3, 492, 246, 0, 3908, 3907, 1, 0, 0, 0, 3908, 3909, 1, 0, 0, 0, 3909, 3911, 1, 0, 0, 0, 3910, 3912, 3, 530, 265, 0, 3911, 3910, 1, 0, 0, 0, 3911, 3912, 1, 0, 0, 0, 3912, 3913, 1, 0, 0, 0, 3913, 3915, 5, 400, 0, 0, 3914, 3902, 1, 0, 0, 0, 3914, 3903, 1, 0, 0, 0, 3915, 529, 1, 0, 0, 0, 3916, 3930, 7, 32, 0, 0, 3917, 3918, 5, 354, 0, 0, 3918, 3924, 5, 247, 0, 0, 3919, 3920, 5, 62, 0, 0, 3920, 3924, 5, 291, 0, 0, 3921, 3922, 5, 431, 0, 0, 3922, 3924, 5, 247, 0, 0, 3923, 3917, 1, 0, 0, 0, 3923, 3919, 1, 0, 0, 0, 3923, 3921, 1, 0, 0, 0, 3924, 3931, 1, 0, 0, 0, 3925, 3926, 5, 25, 0, 0, 3926, 3927, 3, 532, 266, 0, 3927, 3928, 5, 11, 0, 0, 3928, 3929, 3, 532, 266, 0, 3929, 3931, 1, 0, 0, 0, 3930, 3923, 1, 0, 0, 0, 3930, 3925, 1, 0, 0, 0, 3931, 531, 1, 0, 0, 0, 3932, 3933, 7, 33, 0, 0, 3933, 3937, 7, 34, 0, 0, 3934, 3935, 5, 62, 0, 0, 3935, 3937, 5, 291, 0, 0, 3936, 3932, 1, 0, 0, 0, 3936, 3934, 1, 0, 0, 0, 3937, 533, 1, 0, 0, 0, 3938, 3939, 5, 144, 0, 0, 3939, 3945, 5, 32, 0, 0, 3940, 3946, 3, 256, 128, 0, 3941, 3946, 3, 536, 268, 0, 3942, 3946, 3, 538, 269, 0, 3943, 3944, 5, 399, 0, 0, 3944, 3946, 5, 400, 0, 0, 3945, 3940, 1, 0, 0, 0, 3945, 3941, 1, 0, 0, 0, 3945, 3942, 1, 0, 0, 0, 3945, 3943, 1, 0, 0, 0, 3946, 535, 1, 0, 0, 0, 3947, 3950, 5, 290, 0, 0, 3948, 3950, 5, 61, 0, 0, 3949, 3947, 1, 0, 0, 0, 3949, 3948, 1, 0, 0, 0, 3950, 3951, 1, 0, 0, 0, 3951, 3952, 5, 399, 0, 0, 3952, 3957, 3, 596, 298, 0, 3953, 3954, 5, 397, 0, 0, 3954, 3956, 3, 596, 298, 0, 3955, 3953, 1, 0, 0, 0, 3956, 3959, 1, 0, 0, 0, 3957, 3955, 1, 0, 0, 0, 3957, 3958, 1, 0, 0, 0, 3958, 3960, 1, 0, 0, 0, 3959, 3957, 1, 0, 0, 0, 3960, 3961, 5, 400, 0, 0, 3961, 537, 1, 0, 0, 0, 3962, 3967, 3, 554, 277, 0, 3963, 3964, 5, 387, 0, 0, 3964, 3968, 5, 290, 0, 0, 3965, 3966, 5, 387, 0, 0, 3966, 3968, 5, 61, 0, 0, 3967, 3963, 1, 0, 0, 0, 3967, 3965, 1, 0, 0, 0, 3967, 3968, 1, 0, 0, 0, 3968, 3982, 1, 0, 0, 0, 3969, 3970, 5, 145, 0, 0, 3970, 3971, 5, 305, 0, 0, 3971, 3972, 5, 399, 0, 0, 3972, 3977, 3, 540, 270, 0, 3973, 3974, 5, 397, 0, 0, 3974, 3976, 3, 540, 270, 0, 3975, 3973, 1, 0, 0, 0, 3976, 3979, 1, 0, 0, 0, 3977, 3975, 1, 0, 0, 0, 3977, 3978, 1, 0, 0, 0, 3978, 3980, 1, 0, 0, 0, 3979, 3977, 1, 0, 0, 0, 3980, 3981, 5, 400, 0, 0, 3981, 3983, 1, 0, 0, 0, 3982, 3969, 1, 0, 0, 0, 3982, 3983, 1, 0, 0, 0, 3983, 539, 1, 0, 0, 0, 3984, 3986, 5, 399, 0, 0, 3985, 3987, 3, 596, 298, 0, 3986, 3985, 1, 0, 0, 0, 3986, 3987, 1, 0, 0, 0, 3987, 3992, 1, 0, 0, 0, 3988, 3989, 5, 397, 0, 0, 3989, 3991, 3, 596, 298, 0, 3990, 3988, 1, 0, 0, 0, 3991, 3994, 1, 0, 0, 0, 3992, 3990, 1, 0, 0, 0, 3992, 3993, 1, 0, 0, 0, 3993, 3995, 1, 0, 0, 0, 3994, 3992, 1, 0, 0, 0, 3995, 3998, 5, 400, 0, 0, 3996, 3998, 3, 596, 298, 0, 3997, 3984, 1, 0, 0, 0, 3997, 3996, 1, 0, 0, 0, 3998, 541, 1, 0, 0, 0, 3999, 4002, 5, 146, 0, 0, 4000, 4003, 3, 596, 298, 0, 4001, 4003, 3, 260, 130, 0, 4002, 4000, 1, 0, 0, 0, 4002, 4001, 1, 0, 0, 0, 4003, 543, 1, 0, 0, 0, 4004, 4005, 5, 256, 0, 0, 4005, 4006, 3, 596, 298, 0, 4006, 545, 1, 0, 0, 0, 4007, 4010, 5, 83, 0, 0, 4008, 4010, 3, 596, 298, 0, 4009, 4007, 1, 0, 0, 0, 4009, 4008, 1, 0, 0, 0, 4010, 547, 1, 0, 0, 0, 4011, 4013, 3, 596, 298, 0, 4012, 4014, 5, 17, 0, 0, 4013, 4012, 1, 0, 0, 0, 4013, 4014, 1, 0, 0, 0, 4014, 4016, 1, 0, 0, 0, 4015, 4017, 3, 654, 327, 0, 4016, 4015, 1, 0, 0, 0, 4016, 4017, 1, 0, 0, 0, 4017, 4028, 1, 0, 0, 0, 4018, 4019, 5, 397, 0, 0, 4019, 4021, 3, 596, 298, 0, 4020, 4022, 5, 17, 0, 0, 4021, 4020, 1, 0, 0, 0, 4021, 4022, 1, 0, 0, 0, 4022, 4024, 1, 0, 0, 0, 4023, 4025, 3, 654, 327, 0, 4024, 4023, 1, 0, 0, 0, 4024, 4025, 1, 0, 0, 0, 4025, 4027, 1, 0, 0, 0, 4026, 4018, 1, 0, 0, 0, 4027, 4030, 1, 0, 0, 0, 4028, 4026, 1, 0, 0, 0, 4028, 4029, 1, 0, 0, 0, 4029, 549, 1, 0, 0, 0, 4030, 4028, 1, 0, 0, 0, 4031, 4034, 3, 552, 276, 0, 4032, 4034, 3, 554, 277, 0, 4033, 4031, 1, 0, 0, 0, 4033, 4032, 1, 0, 0, 0, 4034, 551, 1, 0, 0, 0, 4035, 4036, 5, 399, 0, 0, 4036, 4037, 3, 554, 277, 0, 4037, 4038, 5, 400, 0, 0, 4038, 553, 1, 0, 0, 0, 4039, 4046, 3, 546, 273, 0, 4040, 4041, 5, 397, 0, 0, 4041, 4043, 3, 546, 273, 0, 4042, 4040, 1, 0, 0, 0, 4043, 4044, 1, 0, 0, 0, 4044, 4042, 1, 0, 0, 0, 4044, 4045, 1, 0, 0, 0, 4045, 4047, 1, 0, 0, 0, 4046, 4042, 1, 0, 0, 0, 4046, 4047, 1, 0, 0, 0, 4047, 555, 1, 0, 0, 0, 4048, 4049, 5, 229, 0, 0, 4049, 4050, 5, 32, 0, 0, 4050, 4055, 3, 312, 156, 0, 4051, 4052, 5, 397, 0, 0, 4052, 4054, 3, 312, 156, 0, 4053, 4051, 1, 0, 0, 0, 4054, 4057, 1, 0, 0, 0, 4055, 4053, 1, 0, 0, 0, 4055, 4056, 1, 0, 0, 0, 4056, 557, 1, 0, 0, 0, 4057, 4055, 1, 0, 0, 0, 4058, 4059, 5, 237, 0, 0, 4059, 4060, 5, 32, 0, 0, 4060, 4061, 3, 550, 275, 0, 4061, 559, 1, 0, 0, 0, 4062, 4063, 5, 41, 0, 0, 4063, 4064, 5, 32, 0, 0, 4064, 4065, 3, 550, 275, 0, 4065, 561, 1, 0, 0, 0, 4066, 4067, 5, 97, 0, 0, 4067, 4068, 5, 32, 0, 0, 4068, 4069, 3, 550, 275, 0, 4069, 563, 1, 0, 0, 0, 4070, 4071, 5, 314, 0, 0, 4071, 4091, 5, 32, 0, 0, 4072, 4073, 5, 399, 0, 0, 4073, 4078, 3, 312, 156, 0, 4074, 4075, 5, 397, 0, 0, 4075, 4077, 3, 312, 156, 0, 4076, 4074, 1, 0, 0, 0, 4077, 4080, 1, 0, 0, 0, 4078, 4076, 1, 0, 0, 0, 4078, 4079, 1, 0, 0, 0, 4079, 4081, 1, 0, 0, 0, 4080, 4078, 1, 0, 0, 0, 4081, 4082, 5, 400, 0, 0, 4082, 4092, 1, 0, 0, 0, 4083, 4088, 3, 312, 156, 0, 4084, 4085, 5, 397, 0, 0, 4085, 4087, 3, 312, 156, 0, 4086, 4084, 1, 0, 0, 0, 4087, 4090, 1, 0, 0, 0, 4088, 4086, 1, 0, 0, 0, 4088, 4089, 1, 0, 0, 0, 4089, 4092, 1, 0, 0, 0, 4090, 4088, 1, 0, 0, 0, 4091, 4072, 1, 0, 0, 0, 4091, 4083, 1, 0, 0, 0, 4092, 565, 1, 0, 0, 0, 4093, 4094, 5, 349, 0, 0, 4094, 4098, 5, 399, 0, 0, 4095, 4099, 5, 179, 0, 0, 4096, 4099, 5, 343, 0, 0, 4097, 4099, 5, 29, 0, 0, 4098, 4095, 1, 0, 0, 0, 4098, 4096, 1, 0, 0, 0, 4098, 4097, 1, 0, 0, 0, 4098, 4099, 1, 0, 0, 0, 4099, 4101, 1, 0, 0, 0, 4100, 4102, 3, 522, 261, 0, 4101, 4100, 1, 0, 0, 0, 4101, 4102, 1, 0, 0, 0, 4102, 4103, 1, 0, 0, 0, 4103, 4104, 5, 139, 0, 0, 4104, 4105, 3, 522, 261, 0, 4105, 4106, 5, 400, 0, 0, 4106, 4147, 1, 0, 0, 0, 4107, 4108, 3, 574, 287, 0, 4108, 4123, 5, 399, 0, 0, 4109, 4124, 5, 415, 0, 0, 4110, 4112, 7, 22, 0, 0, 4111, 4110, 1, 0, 0, 0, 4111, 4112, 1, 0, 0, 0, 4112, 4121, 1, 0, 0, 0, 4113, 4118, 3, 522, 261, 0, 4114, 4115, 5, 397, 0, 0, 4115, 4117, 3, 522, 261, 0, 4116, 4114, 1, 0, 0, 0, 4117, 4120, 1, 0, 0, 0, 4118, 4116, 1, 0, 0, 0, 4118, 4119, 1, 0, 0, 0, 4119, 4122, 1, 0, 0, 0, 4120, 4118, 1, 0, 0, 0, 4121, 4113, 1, 0, 0, 0, 4121, 4122, 1, 0, 0, 0, 4122, 4124, 1, 0, 0, 0, 4123, 4109, 1, 0, 0, 0, 4123, 4111, 1, 0, 0, 0, 4124, 4144, 1, 0, 0, 0, 4125, 4126, 5, 400, 0, 0, 4126, 4127, 5, 388, 0, 0, 4127, 4128, 5, 144, 0, 0, 4128, 4129, 5, 399, 0, 0, 4129, 4130, 3, 556, 278, 0, 4130, 4131, 5, 400, 0, 0, 4131, 4145, 1, 0, 0, 0, 4132, 4134, 5, 400, 0, 0, 4133, 4135, 3, 568, 284, 0, 4134, 4133, 1, 0, 0, 0, 4134, 4135, 1, 0, 0, 0, 4135, 4136, 1, 0, 0, 0, 4136, 4137, 5, 234, 0, 0, 4137, 4145, 3, 528, 264, 0, 4138, 4139, 3, 568, 284, 0, 4139, 4140, 5, 400, 0, 0, 4140, 4141, 5, 234, 0, 0, 4141, 4142, 3, 528, 264, 0, 4142, 4145, 1, 0, 0, 0, 4143, 4145, 5, 400, 0, 0, 4144, 4125, 1, 0, 0, 0, 4144, 4132, 1, 0, 0, 0, 4144, 4138, 1, 0, 0, 0, 4144, 4143, 1, 0, 0, 0, 4145, 4147, 1, 0, 0, 0, 4146, 4093, 1, 0, 0, 0, 4146, 4107, 1, 0, 0, 0, 4147, 567, 1, 0, 0, 0, 4148, 4149, 7, 35, 0, 0, 4149, 4150, 5, 220, 0, 0, 4150, 569, 1, 0, 0, 0, 4151, 4152, 3, 656, 328, 0, 4152, 571, 1, 0, 0, 0, 4153, 4156, 3, 656, 328, 0, 4154, 4156, 5, 426, 0, 0, 4155, 4153, 1, 0, 0, 0, 4155, 4154, 1, 0, 0, 0, 4156, 573, 1, 0, 0, 0, 4157, 4161, 3, 656, 328, 0, 4158, 4161, 3, 662, 331, 0, 4159, 4161, 3, 652, 326, 0, 4160, 4157, 1, 0, 0, 0, 4160, 4158, 1, 0, 0, 0, 4160, 4159, 1, 0, 0, 0, 4161, 575, 1, 0, 0, 0, 4162, 4163, 5, 36, 0, 0, 4163, 4164, 5, 399, 0, 0, 4164, 4165, 3, 596, 298, 0, 4165, 4166, 5, 17, 0, 0, 4166, 4169, 3, 352, 176, 0, 4167, 4168, 5, 137, 0, 0, 4168, 4170, 5, 426, 0, 0, 4169, 4167, 1, 0, 0, 0, 4169, 4170, 1, 0, 0, 0, 4170, 4171, 1, 0, 0, 0, 4171, 4172, 5, 400, 0, 0, 4172, 577, 1, 0, 0, 0, 4173, 4174, 5, 35, 0, 0, 4174, 4180, 3, 596, 298, 0, 4175, 4176, 5, 383, 0, 0, 4176, 4177, 3, 596, 298, 0, 4177, 4178, 5, 335, 0, 0, 4178, 4179, 3, 596, 298, 0, 4179, 4181, 1, 0, 0, 0, 4180, 4175, 1, 0, 0, 0, 4181, 4182, 1, 0, 0, 0, 4182, 4180, 1, 0, 0, 0, 4182, 4183, 1, 0, 0, 0, 4183, 4186, 1, 0, 0, 0, 4184, 4185, 5, 105, 0, 0, 4185, 4187, 3, 596, 298, 0, 4186, 4184, 1, 0, 0, 0, 4186, 4187, 1, 0, 0, 0, 4187, 4188, 1, 0, 0, 0, 4188, 4189, 5, 108, 0, 0, 4189, 579, 1, 0, 0, 0, 4190, 4196, 5, 35, 0, 0, 4191, 4192, 5, 383, 0, 0, 4192, 4193, 3, 596, 298, 0, 4193, 4194, 5, 335, 0, 0, 4194, 4195, 3, 596, 298, 0, 4195, 4197, 1, 0, 0, 0, 4196, 4191, 1, 0, 0, 0, 4197, 4198, 1, 0, 0, 0, 4198, 4196, 1, 0, 0, 0, 4198, 4199, 1, 0, 0, 0, 4199, 4202, 1, 0, 0, 0, 4200, 4201, 5, 105, 0, 0, 4201, 4203, 3, 596, 298, 0, 4202, 4200, 1, 0, 0, 0, 4202, 4203, 1, 0, 0, 0, 4203, 4204, 1, 0, 0, 0, 4204, 4205, 5, 108, 0, 0, 4205, 581, 1, 0, 0, 0, 4206, 4207, 5, 132, 0, 0, 4207, 4208, 5, 399, 0, 0, 4208, 4211, 3, 596, 298, 0, 4209, 4210, 5, 341, 0, 0, 4210, 4212, 3, 586, 293, 0, 4211, 4209, 1, 0, 0, 0, 4211, 4212, 1, 0, 0, 0, 4212, 4213, 1, 0, 0, 0, 4213, 4214, 5, 400, 0, 0, 4214, 583, 1, 0, 0, 0, 4215, 4216, 5, 124, 0, 0, 4216, 4217, 5, 399, 0, 0, 4217, 4218, 3, 586, 293, 0, 4218, 4219, 5, 139, 0, 0, 4219, 4220, 3, 596, 298, 0, 4220, 4221, 5, 400, 0, 0, 4221, 585, 1, 0, 0, 0, 4222, 4231, 3, 682, 341, 0, 4223, 4231, 5, 257, 0, 0, 4224, 4231, 3, 684, 342, 0, 4225, 4231, 3, 686, 343, 0, 4226, 4231, 3, 688, 344, 0, 4227, 4231, 3, 690, 345, 0, 4228, 4231, 3, 692, 346, 0, 4229, 4231, 3, 694, 347, 0, 4230, 4222, 1, 0, 0, 0, 4230, 4223, 1, 0, 0, 0, 4230, 4224, 1, 0, 0, 0, 4230, 4225, 1, 0, 0, 0, 4230, 4226, 1, 0, 0, 0, 4230, 4227, 1, 0, 0, 0, 4230, 4228, 1, 0, 0, 0, 4230, 4229, 1, 0, 0, 0, 4231, 587, 1, 0, 0, 0, 4232, 4233, 3, 590, 295, 0, 4233, 4234, 3, 594, 297, 0, 4234, 4261, 1, 0, 0, 0, 4235, 4261, 5, 431, 0, 0, 4236, 4237, 5, 71, 0, 0, 4237, 4261, 5, 426, 0, 0, 4238, 4261, 5, 63, 0, 0, 4239, 4240, 5, 337, 0, 0, 4240, 4261, 5, 426, 0, 0, 4241, 4261, 5, 64, 0, 0, 4242, 4243, 5, 338, 0, 0, 4243, 4261, 5, 426, 0, 0, 4244, 4248, 5, 426, 0, 0, 4245, 4247, 5, 426, 0, 0, 4246, 4245, 1, 0, 0, 0, 4247, 4250, 1, 0, 0, 0, 4248, 4246, 1, 0, 0, 0, 4248, 4249, 1, 0, 0, 0, 4249, 4261, 1, 0, 0, 0, 4250, 4248, 1, 0, 0, 0, 4251, 4261, 5, 428, 0, 0, 4252, 4261, 5, 429, 0, 0, 4253, 4254, 5, 433, 0, 0, 4254, 4261, 5, 427, 0, 0, 4255, 4261, 5, 350, 0, 0, 4256, 4261, 5, 125, 0, 0, 4257, 4261, 5, 219, 0, 0, 4258, 4261, 5, 424, 0, 0, 4259, 4261, 3, 258, 129, 0, 4260, 4232, 1, 0, 0, 0, 4260, 4235, 1, 0, 0, 0, 4260, 4236, 1, 0, 0, 0, 4260, 4238, 1, 0, 0, 0, 4260, 4239, 1, 0, 0, 0, 4260, 4241, 1, 0, 0, 0, 4260, 4242, 1, 0, 0, 0, 4260, 4244, 1, 0, 0, 0, 4260, 4251, 1, 0, 0, 0, 4260, 4252, 1, 0, 0, 0, 4260, 4253, 1, 0, 0, 0, 4260, 4255, 1, 0, 0, 0, 4260, 4256, 1, 0, 0, 0, 4260, 4257, 1, 0, 0, 0, 4260, 4258, 1, 0, 0, 0, 4260, 4259, 1, 0, 0, 0, 4261, 589, 1, 0, 0, 0, 4262, 4263, 7, 27, 0, 0, 4263, 591, 1, 0, 0, 0, 4264, 4265, 5, 399, 0, 0, 4265, 4266, 3, 590, 295, 0, 4266, 4267, 5, 400, 0, 0, 4267, 4268, 3, 594, 297, 0, 4268, 4280, 1, 0, 0, 0, 4269, 4275, 5, 165, 0, 0, 4270, 4276, 3, 590, 295, 0, 4271, 4272, 5, 399, 0, 0, 4272, 4273, 3, 596, 298, 0, 4273, 4274, 5, 400, 0, 0, 4274, 4276, 1, 0, 0, 0, 4275, 4270, 1, 0, 0, 0, 4275, 4271, 1, 0, 0, 0, 4276, 4277, 1, 0, 0, 0, 4277, 4278, 3, 594, 297, 0, 4278, 4280, 1, 0, 0, 0, 4279, 4264, 1, 0, 0, 0, 4279, 4269, 1, 0, 0, 0, 4280, 593, 1, 0, 0, 0, 4281, 4282, 3, 682, 341, 0, 4282, 4283, 5, 341, 0, 0, 4283, 4284, 3, 684, 342, 0, 4284, 4296, 1, 0, 0, 0, 4285, 4286, 3, 688, 344, 0, 4286, 4287, 5, 341, 0, 0, 4287, 4288, 3, 694, 347, 0, 4288, 4296, 1, 0, 0, 0, 4289, 4296, 3, 682, 341, 0, 4290, 4296, 3, 684, 342, 0, 4291, 4296, 3, 688, 344, 0, 4292, 4296, 3, 690, 345, 0, 4293, 4296, 3, 692, 346, 0, 4294, 4296, 3, 694, 347, 0, 4295, 4281, 1, 0, 0, 0, 4295, 4285, 1, 0, 0, 0, 4295, 4289, 1, 0, 0, 0, 4295, 4290, 1, 0, 0, 0, 4295, 4291, 1, 0, 0, 0, 4295, 4292, 1, 0, 0, 0, 4295, 4293, 1, 0, 0, 0, 4295, 4294, 1, 0, 0, 0, 4296, 595, 1, 0, 0, 0, 4297, 4302, 3, 638, 319, 0, 4298, 4299, 5, 228, 0, 0, 4299, 4301, 3, 638, 319, 0, 4300, 4298, 1, 0, 0, 0, 4301, 4304, 1, 0, 0, 0, 4302, 4300, 1, 0, 0, 0, 4302, 4303, 1, 0, 0, 0, 4303, 597, 1, 0, 0, 0, 4304, 4302, 1, 0, 0, 0, 4305, 4317, 3, 588, 294, 0, 4306, 4317, 3, 592, 296, 0, 4307, 4317, 3, 576, 288, 0, 4308, 4317, 3, 584, 292, 0, 4309, 4317, 3, 582, 291, 0, 4310, 4317, 3, 578, 289, 0, 4311, 4317, 3, 580, 290, 0, 4312, 4317, 3, 616, 308, 0, 4313, 4317, 3, 566, 283, 0, 4314, 4317, 3, 552, 276, 0, 4315, 4317, 3, 654, 327, 0, 4316, 4305, 1, 0, 0, 0, 4316, 4306, 1, 0, 0, 0, 4316, 4307, 1, 0, 0, 0, 4316, 4308, 1, 0, 0, 0, 4316, 4309, 1, 0, 0, 0, 4316, 4310, 1, 0, 0, 0, 4316, 4311, 1, 0, 0, 0, 4316, 4312, 1, 0, 0, 0, 4316, 4313, 1, 0, 0, 0, 4316, 4314, 1, 0, 0, 0, 4316, 4315, 1, 0, 0, 0, 4317, 599, 1, 0, 0, 0, 4318, 4320, 7, 36, 0, 0, 4319, 4318, 1, 0, 0, 0, 4320, 4323, 1, 0, 0, 0, 4321, 4319, 1, 0, 0, 0, 4321, 4322, 1, 0, 0, 0, 4322, 4324, 1, 0, 0, 0, 4323, 4321, 1, 0, 0, 0, 4324, 4333, 3, 598, 299, 0, 4325, 4326, 5, 401, 0, 0, 4326, 4327, 3, 596, 298, 0, 4327, 4328, 5, 402, 0, 0, 4328, 4332, 1, 0, 0, 0, 4329, 4330, 5, 395, 0, 0, 4330, 4332, 3, 654, 327, 0, 4331, 4325, 1, 0, 0, 0, 4331, 4329, 1, 0, 0, 0, 4332, 4335, 1, 0, 0, 0, 4333, 4331, 1, 0, 0, 0, 4333, 4334, 1, 0, 0, 0, 4334, 601, 1, 0, 0, 0, 4335, 4333, 1, 0, 0, 0, 4336, 4341, 3, 600, 300, 0, 4337, 4338, 5, 423, 0, 0, 4338, 4340, 3, 600, 300, 0, 4339, 4337, 1, 0, 0, 0, 4340, 4343, 1, 0, 0, 0, 4341, 4339, 1, 0, 0, 0, 4341, 4342, 1, 0, 0, 0, 4342, 603, 1, 0, 0, 0, 4343, 4341, 1, 0, 0, 0, 4344, 4349, 3, 602, 301, 0, 4345, 4346, 7, 37, 0, 0, 4346, 4348, 3, 602, 301, 0, 4347, 4345, 1, 0, 0, 0, 4348, 4351, 1, 0, 0, 0, 4349, 4347, 1, 0, 0, 0, 4349, 4350, 1, 0, 0, 0, 4350, 605, 1, 0, 0, 0, 4351, 4349, 1, 0, 0, 0, 4352, 4357, 3, 604, 302, 0, 4353, 4354, 7, 38, 0, 0, 4354, 4356, 3, 604, 302, 0, 4355, 4353, 1, 0, 0, 0, 4356, 4359, 1, 0, 0, 0, 4357, 4355, 1, 0, 0, 0, 4357, 4358, 1, 0, 0, 0, 4358, 607, 1, 0, 0, 0, 4359, 4357, 1, 0, 0, 0, 4360, 4365, 3, 606, 303, 0, 4361, 4362, 5, 422, 0, 0, 4362, 4364, 3, 606, 303, 0, 4363, 4361, 1, 0, 0, 0, 4364, 4367, 1, 0, 0, 0, 4365, 4363, 1, 0, 0, 0, 4365, 4366, 1, 0, 0, 0, 4366, 609, 1, 0, 0, 0, 4367, 4365, 1, 0, 0, 0, 4368, 4373, 3, 608, 304, 0, 4369, 4370, 5, 419, 0, 0, 4370, 4372, 3, 608, 304, 0, 4371, 4369, 1, 0, 0, 0, 4372, 4375, 1, 0, 0, 0, 4373, 4371, 1, 0, 0, 0, 4373, 4374, 1, 0, 0, 0, 4374, 611, 1, 0, 0, 0, 4375, 4373, 1, 0, 0, 0, 4376, 4381, 3, 610, 305, 0, 4377, 4378, 5, 421, 0, 0, 4378, 4380, 3, 610, 305, 0, 4379, 4377, 1, 0, 0, 0, 4380, 4383, 1, 0, 0, 0, 4381, 4379, 1, 0, 0, 0, 4381, 4382, 1, 0, 0, 0, 4382, 613, 1, 0, 0, 0, 4383, 4381, 1, 0, 0, 0, 4384, 4385, 7, 39, 0, 0, 4385, 615, 1, 0, 0, 0, 4386, 4387, 5, 399, 0, 0, 4387, 4388, 3, 380, 190, 0, 4388, 4389, 5, 400, 0, 0, 4389, 617, 1, 0, 0, 0, 4390, 4392, 3, 612, 306, 0, 4391, 4393, 3, 620, 310, 0, 4392, 4391, 1, 0, 0, 0, 4392, 4393, 1, 0, 0, 0, 4393, 4397, 1, 0, 0, 0, 4394, 4395, 5, 117, 0, 0, 4395, 4397, 3, 616, 308, 0, 4396, 4390, 1, 0, 0, 0, 4396, 4394, 1, 0, 0, 0, 4397, 619, 1, 0, 0, 0, 4398, 4399, 3, 614, 307, 0, 4399, 4400, 3, 612, 306, 0, 4400, 4405, 1, 0, 0, 0, 4401, 4405, 3, 622, 311, 0, 4402, 4403, 5, 216, 0, 0, 4403, 4405, 3, 626, 313, 0, 4404, 4398, 1, 0, 0, 0, 4404, 4401, 1, 0, 0, 0, 4404, 4402, 1, 0, 0, 0, 4405, 621, 1, 0, 0, 0, 4406, 4407, 5, 154, 0, 0, 4407, 4421, 3, 624, 312, 0, 4408, 4409, 5, 25, 0, 0, 4409, 4410, 3, 612, 306, 0, 4410, 4411, 5, 11, 0, 0, 4411, 4412, 3, 612, 306, 0, 4412, 4421, 1, 0, 0, 0, 4413, 4414, 5, 184, 0, 0, 4414, 4415, 7, 40, 0, 0, 4415, 4421, 3, 552, 276, 0, 4416, 4417, 3, 650, 325, 0, 4417, 4418, 7, 41, 0, 0, 4418, 4419, 3, 616, 308, 0, 4419, 4421, 1, 0, 0, 0, 4420, 4406, 1, 0, 0, 0, 4420, 4408, 1, 0, 0, 0, 4420, 4413, 1, 0, 0, 0, 4420, 4416, 1, 0, 0, 0, 4421, 623, 1, 0, 0, 0, 4422, 4425, 3, 616, 308, 0, 4423, 4425, 3, 552, 276, 0, 4424, 4422, 1, 0, 0, 0, 4424, 4423, 1, 0, 0, 0, 4425, 625, 1, 0, 0, 0, 4426, 4427, 7, 42, 0, 0, 4427, 4430, 3, 612, 306, 0, 4428, 4430, 3, 622, 311, 0, 4429, 4426, 1, 0, 0, 0, 4429, 4428, 1, 0, 0, 0, 4430, 627, 1, 0, 0, 0, 4431, 4432, 5, 167, 0, 0, 4432, 4433, 5, 96, 0, 0, 4433, 4434, 5, 139, 0, 0, 4434, 629, 1, 0, 0, 0, 4435, 4443, 5, 405, 0, 0, 4436, 4443, 5, 406, 0, 0, 4437, 4443, 5, 407, 0, 0, 4438, 4439, 5, 167, 0, 0, 4439, 4440, 5, 216, 0, 0, 4440, 4441, 5, 96, 0, 0, 4441, 4443, 5, 139, 0, 0, 4442, 4435, 1, 0, 0, 0, 4442, 4436, 1, 0, 0, 0, 4442, 4437, 1, 0, 0, 0, 4442, 4438, 1, 0, 0, 0, 4443, 631, 1, 0, 0, 0, 4444, 4453, 3, 618, 309, 0, 4445, 4446, 3, 630, 315, 0, 4446, 4447, 3, 618, 309, 0, 4447, 4452, 1, 0, 0, 0, 4448, 4449, 3, 628, 314, 0, 4449, 4450, 3, 618, 309, 0, 4450, 4452, 1, 0, 0, 0, 4451, 4445, 1, 0, 0, 0, 4451, 4448, 1, 0, 0, 0, 4452, 4455, 1, 0, 0, 0, 4453, 4451, 1, 0, 0, 0, 4453, 4454, 1, 0, 0, 0, 4454, 633, 1, 0, 0, 0, 4455, 4453, 1, 0, 0, 0, 4456, 4463, 5, 219, 0, 0, 4457, 4463, 5, 350, 0, 0, 4458, 4463, 5, 125, 0, 0, 4459, 4463, 5, 360, 0, 0, 4460, 4461, 5, 216, 0, 0, 4461, 4463, 7, 43, 0, 0, 4462, 4456, 1, 0, 0, 0, 4462, 4457, 1, 0, 0, 0, 4462, 4458, 1, 0, 0, 0, 4462, 4459, 1, 0, 0, 0, 4462, 4460, 1, 0, 0, 0, 4463, 635, 1, 0, 0, 0, 4464, 4466, 5, 216, 0, 0, 4465, 4464, 1, 0, 0, 0, 4466, 4469, 1, 0, 0, 0, 4467, 4465, 1, 0, 0, 0, 4467, 4468, 1, 0, 0, 0, 4468, 4470, 1, 0, 0, 0, 4469, 4467, 1, 0, 0, 0, 4470, 4473, 3, 632, 316, 0, 4471, 4472, 5, 167, 0, 0, 4472, 4474, 3, 634, 317, 0, 4473, 4471, 1, 0, 0, 0, 4473, 4474, 1, 0, 0, 0, 4474, 637, 1, 0, 0, 0, 4475, 4480, 3, 636, 318, 0, 4476, 4477, 5, 11, 0, 0, 4477, 4479, 3, 636, 318, 0, 4478, 4476, 1, 0, 0, 0, 4479, 4482, 1, 0, 0, 0, 4480, 4478, 1, 0, 0, 0, 4480, 4481, 1, 0, 0, 0, 4481, 639, 1, 0, 0, 0, 4482, 4480, 1, 0, 0, 0, 4483, 4485, 3, 482, 241, 0, 4484, 4486, 3, 642, 321, 0, 4485, 4484, 1, 0, 0, 0, 4485, 4486, 1, 0, 0, 0, 4486, 641, 1, 0, 0, 0, 4487, 4488, 5, 237, 0, 0, 4488, 4489, 5, 399, 0, 0, 4489, 4494, 3, 644, 322, 0, 4490, 4491, 5, 397, 0, 0, 4491, 4493, 3, 644, 322, 0, 4492, 4490, 1, 0, 0, 0, 4493, 4496, 1, 0, 0, 0, 4494, 4492, 1, 0, 0, 0, 4494, 4495, 1, 0, 0, 0, 4495, 4497, 1, 0, 0, 0, 4496, 4494, 1, 0, 0, 0, 4497, 4498, 5, 400, 0, 0, 4498, 643, 1, 0, 0, 0, 4499, 4502, 3, 654, 327, 0, 4500, 4501, 5, 405, 0, 0, 4501, 4503, 3, 588, 294, 0, 4502, 4500, 1, 0, 0, 0, 4502, 4503, 1, 0, 0, 0, 4503, 645, 1, 0, 0, 0, 4504, 4505, 5, 399, 0, 0, 4505, 4510, 3, 648, 324, 0, 4506, 4507, 5, 397, 0, 0, 4507, 4509, 3, 648, 324, 0, 4508, 4506, 1, 0, 0, 0, 4509, 4512, 1, 0, 0, 0, 4510, 4508, 1, 0, 0, 0, 4510, 4511, 1, 0, 0, 0, 4511, 4513, 1, 0, 0, 0, 4512, 4510, 1, 0, 0, 0, 4513, 4514, 5, 400, 0, 0, 4514, 647, 1, 0, 0, 0, 4515, 4518, 3, 654, 327, 0, 4516, 4519, 5, 184, 0, 0, 4517, 4519, 3, 650, 325, 0, 4518, 4516, 1, 0, 0, 0, 4518, 4517, 1, 0, 0, 0, 4519, 4520, 1, 0, 0, 0, 4520, 4521, 3, 588, 294, 0, 4521, 649, 1, 0, 0, 0, 4522, 4523, 7, 44, 0, 0, 4523, 651, 1, 0, 0, 0, 4524, 4525, 7, 45, 0, 0, 4525, 653, 1, 0, 0, 0, 4526, 4529, 5, 432, 0, 0, 4527, 4529, 3, 660, 330, 0, 4528, 4526, 1, 0, 0, 0, 4528, 4527, 1, 0, 0, 0, 4529, 655, 1, 0, 0, 0, 4530, 4533, 3, 654, 327, 0, 4531, 4532, 5, 395, 0, 0, 4532, 4534, 3, 654, 327, 0, 4533, 4531, 1, 0, 0, 0, 4533, 4534, 1, 0, 0, 0, 4534, 657, 1, 0, 0, 0, 4535, 4536, 3, 654, 327, 0, 4536, 659, 1, 0, 0, 0, 4537, 4538, 7, 46, 0, 0, 4538, 661, 1, 0, 0, 0, 4539, 4540, 7, 47, 0, 0, 4540, 663, 1, 0, 0, 0, 4541, 4593, 3, 654, 327, 0, 4542, 4593, 5, 299, 0, 0, 4543, 4593, 5, 171, 0, 0, 4544, 4593, 5, 237, 0, 0, 4545, 4593, 5, 198, 0, 0, 4546, 4593, 5, 268, 0, 0, 4547, 4593, 5, 369, 0, 0, 4548, 4593, 5, 241, 0, 0, 4549, 4593, 5, 165, 0, 0, 4550, 4593, 5, 292, 0, 0, 4551, 4593, 5, 356, 0, 0, 4552, 4593, 5, 144, 0, 0, 4553, 4593, 5, 203, 0, 0, 4554, 4593, 5, 219, 0, 0, 4555, 4593, 5, 126, 0, 0, 4556, 4593, 5, 188, 0, 0, 4557, 4593, 5, 101, 0, 0, 4558, 4593, 5, 329, 0, 0, 4559, 4593, 5, 224, 0, 0, 4560, 4593, 5, 291, 0, 0, 4561, 4593, 5, 145, 0, 0, 4562, 4593, 5, 304, 0, 0, 4563, 4593, 5, 135, 0, 0, 4564, 4593, 5, 318, 0, 0, 4565, 4593, 5, 161, 0, 0, 4566, 4593, 5, 54, 0, 0, 4567, 4593, 5, 166, 0, 0, 4568, 4593, 5, 358, 0, 0, 4569, 4593, 5, 45, 0, 0, 4570, 4593, 5, 347, 0, 0, 4571, 4593, 5, 96, 0, 0, 4572, 4593, 5, 154, 0, 0, 4573, 4593, 5, 269, 0, 0, 4574, 4593, 5, 337, 0, 0, 4575, 4593, 5, 225, 0, 0, 4576, 4593, 5, 108, 0, 0, 4577, 4593, 5, 141, 0, 0, 4578, 4593, 5, 365, 0, 0, 4579, 4593, 5, 21, 0, 0, 4580, 4593, 5, 78, 0, 0, 4581, 4593, 5, 374, 0, 0, 4582, 4593, 5, 336, 0, 0, 4583, 4593, 5, 167, 0, 0, 4584, 4593, 5, 134, 0, 0, 4585, 4593, 5, 216, 0, 0, 4586, 4593, 5, 27, 0, 0, 4587, 4593, 5, 370, 0, 0, 4588, 4593, 5, 263, 0, 0, 4589, 4593, 5, 25, 0, 0, 4590, 4593, 5, 62, 0, 0, 4591, 4593, 5, 17, 0, 0, 4592, 4541, 1, 0, 0, 0, 4592, 4542, 1, 0, 0, 0, 4592, 4543, 1, 0, 0, 0, 4592, 4544, 1, 0, 0, 0, 4592, 4545, 1, 0, 0, 0, 4592, 4546, 1, 0, 0, 0, 4592, 4547, 1, 0, 0, 0, 4592, 4548, 1, 0, 0, 0, 4592, 4549, 1, 0, 0, 0, 4592, 4550, 1, 0, 0, 0, 4592, 4551, 1, 0, 0, 0, 4592, 4552, 1, 0, 0, 0, 4592, 4553, 1, 0, 0, 0, 4592, 4554, 1, 0, 0, 0, 4592, 4555, 1, 0, 0, 0, 4592, 4556, 1, 0, 0, 0, 4592, 4557, 1, 0, 0, 0, 4592, 4558, 1, 0, 0, 0, 4592, 4559, 1, 0, 0, 0, 4592, 4560, 1, 0, 0, 0, 4592, 4561, 1, 0, 0, 0, 4592, 4562, 1, 0, 0, 0, 4592, 4563, 1, 0, 0, 0, 4592, 4564, 1, 0, 0, 0, 4592, 4565, 1, 0, 0, 0, 4592, 4566, 1, 0, 0, 0, 4592, 4567, 1, 0, 0, 0, 4592, 4568, 1, 0, 0, 0, 4592, 4569, 1, 0, 0, 0, 4592, 4570, 1, 0, 0, 0, 4592, 4571, 1, 0, 0, 0, 4592, 4572, 1, 0, 0, 0, 4592, 4573, 1, 0, 0, 0, 4592, 4574, 1, 0, 0, 0, 4592, 4575, 1, 0, 0, 0, 4592, 4576, 1, 0, 0, 0, 4592, 4577, 1, 0, 0, 0, 4592, 4578, 1, 0, 0, 0, 4592, 4579, 1, 0, 0, 0, 4592, 4580, 1, 0, 0, 0, 4592, 4581, 1, 0, 0, 0, 4592, 4582, 1, 0, 0, 0, 4592, 4583, 1, 0, 0, 0, 4592, 4584, 1, 0, 0, 0, 4592, 4585, 1, 0, 0, 0, 4592, 4586, 1, 0, 0, 0, 4592, 4587, 1, 0, 0, 0, 4592, 4588, 1, 0, 0, 0, 4592, 4589, 1, 0, 0, 0, 4592, 4590, 1, 0, 0, 0, 4592, 4591, 1, 0, 0, 0, 4593, 665, 1, 0, 0, 0, 4594, 4595, 5, 58, 0, 0, 4595, 4596, 5, 280, 0, 0, 4596, 4598, 5, 243, 0, 0, 4597, 4599, 3, 32, 16, 0, 4598, 4597, 1, 0, 0, 0, 4598, 4599, 1, 0, 0, 0, 4599, 4609, 1, 0, 0, 0, 4600, 4601, 3, 654, 327, 0, 4601, 4602, 5, 184, 0, 0, 4602, 4603, 3, 654, 327, 0, 4603, 4610, 1, 0, 0, 0, 4604, 4607, 3, 654, 327, 0, 4605, 4606, 5, 387, 0, 0, 4606, 4608, 3, 672, 336, 0, 4607, 4605, 1, 0, 0, 0, 4607, 4608, 1, 0, 0, 0, 4608, 4610, 1, 0, 0, 0, 4609, 4600, 1, 0, 0, 0, 4609, 4604, 1, 0, 0, 0, 4610, 4760, 1, 0, 0, 0, 4611, 4612, 5, 9, 0, 0, 4612, 4613, 5, 280, 0, 0, 4613, 4614, 5, 243, 0, 0, 4614, 4639, 3, 654, 327, 0, 4615, 4640, 5, 373, 0, 0, 4616, 4640, 3, 680, 340, 0, 4617, 4618, 5, 304, 0, 0, 4618, 4640, 3, 672, 336, 0, 4619, 4620, 5, 363, 0, 0, 4620, 4625, 3, 674, 337, 0, 4621, 4622, 5, 397, 0, 0, 4622, 4624, 3, 674, 337, 0, 4623, 4621, 1, 0, 0, 0, 4624, 4627, 1, 0, 0, 0, 4625, 4623, 1, 0, 0, 0, 4625, 4626, 1, 0, 0, 0, 4626, 4640, 1, 0, 0, 0, 4627, 4625, 1, 0, 0, 0, 4628, 4629, 5, 274, 0, 0, 4629, 4630, 5, 341, 0, 0, 4630, 4640, 3, 654, 327, 0, 4631, 4633, 3, 676, 338, 0, 4632, 4634, 3, 678, 339, 0, 4633, 4632, 1, 0, 0, 0, 4633, 4634, 1, 0, 0, 0, 4634, 4640, 1, 0, 0, 0, 4635, 4637, 3, 678, 339, 0, 4636, 4638, 3, 676, 338, 0, 4637, 4636, 1, 0, 0, 0, 4637, 4638, 1, 0, 0, 0, 4638, 4640, 1, 0, 0, 0, 4639, 4615, 1, 0, 0, 0, 4639, 4616, 1, 0, 0, 0, 4639, 4617, 1, 0, 0, 0, 4639, 4619, 1, 0, 0, 0, 4639, 4628, 1, 0, 0, 0, 4639, 4631, 1, 0, 0, 0, 4639, 4635, 1, 0, 0, 0, 4640, 4760, 1, 0, 0, 0, 4641, 4642, 5, 101, 0, 0, 4642, 4643, 5, 280, 0, 0, 4643, 4645, 5, 243, 0, 0, 4644, 4646, 3, 30, 15, 0, 4645, 4644, 1, 0, 0, 0, 4645, 4646, 1, 0, 0, 0, 4646, 4647, 1, 0, 0, 0, 4647, 4760, 3, 654, 327, 0, 4648, 4651, 3, 678, 339, 0, 4649, 4651, 3, 680, 340, 0, 4650, 4648, 1, 0, 0, 0, 4650, 4649, 1, 0, 0, 0, 4651, 4652, 1, 0, 0, 0, 4652, 4653, 5, 390, 0, 0, 4653, 4654, 5, 197, 0, 0, 4654, 4760, 1, 0, 0, 0, 4655, 4667, 5, 278, 0, 0, 4656, 4657, 5, 3, 0, 0, 4657, 4658, 5, 280, 0, 0, 4658, 4659, 5, 243, 0, 0, 4659, 4660, 5, 387, 0, 0, 4660, 4668, 3, 654, 327, 0, 4661, 4662, 5, 280, 0, 0, 4662, 4663, 5, 243, 0, 0, 4663, 4664, 3, 654, 327, 0, 4664, 4665, 5, 387, 0, 0, 4665, 4666, 3, 654, 327, 0, 4666, 4668, 1, 0, 0, 0, 4667, 4656, 1, 0, 0, 0, 4667, 4661, 1, 0, 0, 0, 4668, 4760, 1, 0, 0, 0, 4669, 4670, 5, 58, 0, 0, 4670, 4671, 5, 348, 0, 0, 4671, 4672, 3, 654, 327, 0, 4672, 4673, 5, 395, 0, 0, 4673, 4674, 3, 654, 327, 0, 4674, 4675, 5, 383, 0, 0, 4675, 4676, 3, 704, 352, 0, 4676, 4677, 5, 99, 0, 0, 4677, 4678, 3, 706, 353, 0, 4678, 4760, 1, 0, 0, 0, 4679, 4680, 5, 9, 0, 0, 4680, 4681, 5, 348, 0, 0, 4681, 4682, 3, 654, 327, 0, 4682, 4683, 5, 395, 0, 0, 4683, 4700, 3, 654, 327, 0, 4684, 4685, 5, 383, 0, 0, 4685, 4686, 3, 704, 352, 0, 4686, 4687, 5, 99, 0, 0, 4687, 4688, 3, 706, 353, 0, 4688, 4701, 1, 0, 0, 0, 4689, 4690, 5, 4, 0, 0, 4690, 4694, 5, 341, 0, 0, 4691, 4692, 5, 101, 0, 0, 4692, 4694, 5, 139, 0, 0, 4693, 4689, 1, 0, 0, 0, 4693, 4691, 1, 0, 0, 0, 4694, 4698, 1, 0, 0, 0, 4695, 4696, 5, 246, 0, 0, 4696, 4699, 3, 700, 350, 0, 4697, 4699, 5, 362, 0, 0, 4698, 4695, 1, 0, 0, 0, 4698, 4697, 1, 0, 0, 0, 4699, 4701, 1, 0, 0, 0, 4700, 4684, 1, 0, 0, 0, 4700, 4693, 1, 0, 0, 0, 4701, 4760, 1, 0, 0, 0, 4702, 4703, 5, 101, 0, 0, 4703, 4704, 5, 348, 0, 0, 4704, 4705, 3, 654, 327, 0, 4705, 4706, 5, 395, 0, 0, 4706, 4707, 3, 654, 327, 0, 4707, 4760, 1, 0, 0, 0, 4708, 4709, 5, 58, 0, 0, 4709, 4710, 5, 246, 0, 0, 4710, 4711, 3, 654, 327, 0, 4711, 4712, 5, 395, 0, 0, 4712, 4713, 3, 700, 350, 0, 4713, 4714, 5, 387, 0, 0, 4714, 4715, 3, 710, 355, 0, 4715, 4760, 1, 0, 0, 0, 4716, 4717, 5, 9, 0, 0, 4717, 4718, 5, 246, 0, 0, 4718, 4719, 3, 654, 327, 0, 4719, 4720, 5, 395, 0, 0, 4720, 4728, 3, 700, 350, 0, 4721, 4722, 5, 304, 0, 0, 4722, 4729, 3, 710, 355, 0, 4723, 4724, 5, 363, 0, 0, 4724, 4729, 5, 294, 0, 0, 4725, 4726, 7, 48, 0, 0, 4726, 4727, 5, 348, 0, 0, 4727, 4729, 3, 654, 327, 0, 4728, 4721, 1, 0, 0, 0, 4728, 4723, 1, 0, 0, 0, 4728, 4725, 1, 0, 0, 0, 4729, 4760, 1, 0, 0, 0, 4730, 4731, 5, 101, 0, 0, 4731, 4732, 5, 246, 0, 0, 4732, 4733, 3, 654, 327, 0, 4733, 4734, 5, 395, 0, 0, 4734, 4735, 3, 700, 350, 0, 4735, 4760, 1, 0, 0, 0, 4736, 4737, 7, 49, 0, 0, 4737, 4738, 3, 668, 334, 0, 4738, 4739, 5, 200, 0, 0, 4739, 4740, 5, 426, 0, 0, 4740, 4741, 5, 154, 0, 0, 4741, 4745, 3, 654, 327, 0, 4742, 4743, 5, 341, 0, 0, 4743, 4746, 3, 700, 350, 0, 4744, 4746, 5, 362, 0, 0, 4745, 4742, 1, 0, 0, 0, 4745, 4744, 1, 0, 0, 0, 4746, 4750, 1, 0, 0, 0, 4747, 4748, 5, 387, 0, 0, 4748, 4749, 5, 229, 0, 0, 4749, 4751, 5, 431, 0, 0, 4750, 4747, 1, 0, 0, 0, 4750, 4751, 1, 0, 0, 0, 4751, 4760, 1, 0, 0, 0, 4752, 4753, 5, 101, 0, 0, 4753, 4754, 3, 668, 334, 0, 4754, 4755, 5, 200, 0, 0, 4755, 4756, 5, 426, 0, 0, 4756, 4757, 5, 154, 0, 0, 4757, 4758, 3, 654, 327, 0, 4758, 4760, 1, 0, 0, 0, 4759, 4594, 1, 0, 0, 0, 4759, 4611, 1, 0, 0, 0, 4759, 4641, 1, 0, 0, 0, 4759, 4650, 1, 0, 0, 0, 4759, 4655, 1, 0, 0, 0, 4759, 4669, 1, 0, 0, 0, 4759, 4679, 1, 0, 0, 0, 4759, 4702, 1, 0, 0, 0, 4759, 4708, 1, 0, 0, 0, 4759, 4716, 1, 0, 0, 0, 4759, 4730, 1, 0, 0, 0, 4759, 4736, 1, 0, 0, 0, 4759, 4752, 1, 0, 0, 0, 4760, 667, 1, 0, 0, 0, 4761, 4762, 7, 50, 0, 0, 4762, 669, 1, 0, 0, 0, 4763, 4764, 5, 259, 0, 0, 4764, 4765, 5, 405, 0, 0, 4765, 4771, 5, 431, 0, 0, 4766, 4767, 5, 83, 0, 0, 4767, 4768, 5, 246, 0, 0, 4768, 4769, 5, 405, 0, 0, 4769, 4771, 3, 700, 350, 0, 4770, 4763, 1, 0, 0, 0, 4770, 4766, 1, 0, 0, 0, 4771, 671, 1, 0, 0, 0, 4772, 4777, 3, 670, 335, 0, 4773, 4774, 5, 397, 0, 0, 4774, 4776, 3, 670, 335, 0, 4775, 4773, 1, 0, 0, 0, 4776, 4779, 1, 0, 0, 0, 4777, 4775, 1, 0, 0, 0, 4777, 4778, 1, 0, 0, 0, 4778, 673, 1, 0, 0, 0, 4779, 4777, 1, 0, 0, 0, 4780, 4784, 5, 259, 0, 0, 4781, 4782, 5, 83, 0, 0, 4782, 4784, 5, 246, 0, 0, 4783, 4780, 1, 0, 0, 0, 4783, 4781, 1, 0, 0, 0, 4784, 675, 1, 0, 0, 0, 4785, 4788, 5, 2, 0, 0, 4786, 4787, 5, 387, 0, 0, 4787, 4789, 5, 278, 0, 0, 4788, 4786, 1, 0, 0, 0, 4788, 4789, 1, 0, 0, 0, 4789, 677, 1, 0, 0, 0, 4790, 4791, 7, 51, 0, 0, 4791, 679, 1, 0, 0, 0, 4792, 4793, 7, 52, 0, 0, 4793, 681, 1, 0, 0, 0, 4794, 4795, 7, 53, 0, 0, 4795, 683, 1, 0, 0, 0, 4796, 4797, 7, 54, 0, 0, 4797, 685, 1, 0, 0, 0, 4798, 4799, 7, 55, 0, 0, 4799, 687, 1, 0, 0, 0, 4800, 4801, 7, 56, 0, 0, 4801, 689, 1, 0, 0, 0, 4802, 4803, 7, 57, 0, 0, 4803, 691, 1, 0, 0, 0, 4804, 4805, 7, 58, 0, 0, 4805, 693, 1, 0, 0, 0, 4806, 4807, 7, 59, 0, 0, 4807, 695, 1, 0, 0, 0, 4808, 4809, 7, 60, 0, 0, 4809, 697, 1, 0, 0, 0, 4810, 4811, 1, 0, 0, 0, 4811, 699, 1, 0, 0, 0, 4812, 4817, 3, 654, 327, 0, 4813, 4814, 5, 395, 0, 0, 4814, 4816, 3, 654, 327, 0, 4815, 4813, 1, 0, 0, 0, 4816, 4819, 1, 0, 0, 0, 4817, 4815, 1, 0, 0, 0, 4817, 4818, 1, 0, 0, 0, 4818, 701, 1, 0, 0, 0, 4819, 4817, 1, 0, 0, 0, 4820, 4825, 3, 654, 327, 0, 4821, 4822, 5, 395, 0, 0, 4822, 4824, 3, 654, 327, 0, 4823, 4821, 1, 0, 0, 0, 4824, 4827, 1, 0, 0, 0, 4825, 4823, 1, 0, 0, 0, 4825, 4826, 1, 0, 0, 0, 4826, 4838, 1, 0, 0, 0, 4827, 4825, 1, 0, 0, 0, 4828, 4829, 4, 351, 2, 0, 4829, 4834, 3, 654, 327, 0, 4830, 4831, 5, 395, 0, 0, 4831, 4833, 3, 698, 349, 0, 4832, 4830, 1, 0, 0, 0, 4833, 4836, 1, 0, 0, 0, 4834, 4832, 1, 0, 0, 0, 4834, 4835, 1, 0, 0, 0, 4835, 4838, 1, 0, 0, 0, 4836, 4834, 1, 0, 0, 0, 4837, 4820, 1, 0, 0, 0, 4837, 4828, 1, 0, 0, 0, 4838, 703, 1, 0, 0, 0, 4839, 4840, 3, 654, 327, 0, 4840, 4841, 5, 411, 0, 0, 4841, 4842, 7, 27, 0, 0, 4842, 705, 1, 0, 0, 0, 4843, 4848, 5, 176, 0, 0, 4844, 4845, 5, 211, 0, 0, 4845, 4846, 5, 341, 0, 0, 4846, 4848, 3, 700, 350, 0, 4847, 4843, 1, 0, 0, 0, 4847, 4844, 1, 0, 0, 0, 4848, 707, 1, 0, 0, 0, 4849, 4850, 5, 8, 0, 0, 4850, 4851, 5, 405, 0, 0, 4851, 4862, 5, 431, 0, 0, 4852, 4853, 5, 259, 0, 0, 4853, 4854, 5, 405, 0, 0, 4854, 4862, 5, 431, 0, 0, 4855, 4856, 5, 294, 0, 0, 4856, 4857, 5, 405, 0, 0, 4857, 4862, 5, 426, 0, 0, 4858, 4859, 5, 240, 0, 0, 4859, 4860, 5, 405, 0, 0, 4860, 4862, 3, 700, 350, 0, 4861, 4849, 1, 0, 0, 0, 4861, 4852, 1, 0, 0, 0, 4861, 4855, 1, 0, 0, 0, 4861, 4858, 1, 0, 0, 0, 4862, 709, 1, 0, 0, 0, 4863, 4868, 3, 708, 354, 0, 4864, 4865, 5, 397, 0, 0, 4865, 4867, 3, 708, 354, 0, 4866, 4864, 1, 0, 0, 0, 4867, 4870, 1, 0, 0, 0, 4868, 4866, 1, 0, 0, 0, 4868, 4869, 1, 0, 0, 0, 4869, 711, 1, 0, 0, 0, 4870, 4868, 1, 0, 0, 0, 629, 715, 722, 725, 731, 737, 744, 754, 757, 761, 776, 783, 789, 794, 799, 802, 826, 833, 836, 841, 846, 852, 856, 869, 873, 877, 882, 889, 893, 898, 905, 909, 914, 962, 969, 974, 997, 1001, 1005, 1008, 1012, 1017, 1023, 1027, 1033, 1035, 1046, 1050, 1057, 1065, 1068, 1073, 1077, 1080, 1090, 1098, 1102, 1105, 1109, 1113, 1116, 1121, 1127, 1132, 1137, 1141, 1152, 1154, 1158, 1168, 1172, 1178, 1181, 1188, 1193, 1201, 1206, 1210, 1218, 1223, 1229, 1235, 1238, 1241, 1244, 1253, 1261, 1266, 1274, 1281, 1284, 1287, 1289, 1300, 1302, 1305, 1308, 1311, 1314, 1317, 1319, 1331, 1337, 1345, 1347, 1357, 1390, 1395, 1399, 1403, 1410, 1417, 1423, 1427, 1430, 1437, 1460, 1465, 1469, 1477, 1486, 1493, 1499, 1506, 1509, 1515, 1522, 1530, 1539, 1548, 1555, 1575, 1582, 1584, 1591, 1601, 1609, 1613, 1617, 1630, 1639, 1655, 1659, 1664, 1669, 1672, 1675, 1678, 1681, 1684, 1689, 1698, 1702, 1709, 1712, 1715, 1718, 1730, 1736, 1762, 1770, 1774, 1777, 1780, 1783, 1786, 1789, 1792, 1795, 1804, 1814, 1817, 1837, 1843, 1849, 1852, 1854, 1861, 1868, 1881, 1886, 1895, 1903, 1911, 1924, 1937, 1953, 1957, 1972, 1978, 1981, 1984, 1987, 1990, 1994, 2009, 2012, 2023, 2037, 2071, 2079, 2084, 2092, 2097, 2102, 2109, 2117, 2125, 2133, 2139, 2146, 2156, 2160, 2168, 2177, 2180, 2184, 2191, 2197, 2201, 2207, 2211, 2223, 2232, 2243, 2247, 2254, 2266, 2276, 2279, 2286, 2292, 2296, 2299, 2302, 2308, 2312, 2316, 2321, 2325, 2329, 2333, 2341, 2345, 2349, 2353, 2357, 2365, 2369, 2373, 2381, 2386, 2391, 2395, 2399, 2406, 2415, 2423, 2435, 2453, 2456, 2462, 2488, 2491, 2497, 2505, 2513, 2526, 2533, 2536, 2539, 2542, 2545, 2548, 2551, 2554, 2557, 2560, 2563, 2568, 2571, 2574, 2577, 2580, 2583, 2586, 2589, 2592, 2595, 2598, 2600, 2606, 2610, 2613, 2616, 2619, 2622, 2625, 2632, 2636, 2639, 2642, 2645, 2648, 2651, 2658, 2661, 2669, 2673, 2680, 2682, 2685, 2690, 2693, 2697, 2702, 2708, 2716, 2724, 2734, 2737, 2741, 2745, 2750, 2757, 2761, 2763, 2767, 2774, 2779, 2792, 2800, 2819, 2829, 2842, 2852, 2856, 2860, 2866, 2873, 2880, 2889, 2896, 2916, 2919, 2933, 2948, 2952, 2972, 2984, 2990, 2993, 2996, 3002, 3008, 3015, 3023, 3029, 3033, 3038, 3041, 3045, 3052, 3057, 3062, 3065, 3067, 3075, 3083, 3087, 3091, 3095, 3112, 3129, 3136, 3145, 3150, 3153, 3156, 3160, 3175, 3189, 3192, 3203, 3207, 3210, 3213, 3217, 3222, 3225, 3228, 3231, 3234, 3237, 3243, 3246, 3249, 3252, 3255, 3258, 3261, 3264, 3267, 3270, 3274, 3276, 3282, 3287, 3290, 3293, 3296, 3299, 3305, 3308, 3311, 3314, 3317, 3320, 3323, 3326, 3329, 3332, 3336, 3338, 3340, 3345, 3350, 3354, 3358, 3363, 3368, 3377, 3387, 3395, 3407, 3410, 3416, 3423, 3430, 3437, 3444, 3454, 3456, 3460, 3464, 3471, 3476, 3480, 3484, 3487, 3490, 3501, 3505, 3507, 3510, 3523, 3526, 3529, 3541, 3544, 3551, 3560, 3565, 3567, 3569, 3586, 3589, 3597, 3600, 3604, 3607, 3610, 3613, 3616, 3628, 3636, 3643, 3646, 3653, 3656, 3661, 3668, 3676, 3682, 3687, 3691, 3696, 3700, 3707, 3721, 3724, 3731, 3739, 3749, 3752, 3761, 3770, 3773, 3779, 3782, 3787, 3790, 3803, 3809, 3811, 3821, 3827, 3830, 3840, 3845, 3847, 3863, 3869, 3871, 3878, 3885, 3899, 3905, 3908, 3911, 3914, 3923, 3930, 3936, 3945, 3949, 3957, 3967, 3977, 3982, 3986, 3992, 3997, 4002, 4009, 4013, 4016, 4021, 4024, 4028, 4033, 4044, 4046, 4055, 4078, 4088, 4091, 4098, 4101, 4111, 4118, 4121, 4123, 4134, 4144, 4146, 4155, 4160, 4169, 4182, 4186, 4198, 4202, 4211, 4230, 4248, 4260, 4275, 4279, 4295, 4302, 4316, 4321, 4331, 4333, 4341, 4349, 4357, 4365, 4373, 4381, 4392, 4396, 4404, 4420, 4424, 4429, 4442, 4451, 4453, 4462, 4467, 4473, 4480, 4485, 4494, 4502, 4510, 4518, 4528, 4533, 4592, 4598, 4607, 4609, 4625, 4633, 4637, 4639, 4645, 4650, 4667, 4693, 4698, 4700, 4728, 4745, 4750, 4759, 4770, 4777, 4783, 4788, 4817, 4825, 4834, 4837, 4847, 4861, 4868] \ No newline at end of file +[4, 1, 438, 4874, 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, 1, 0, 5, 0, 714, 8, 0, 10, 0, 12, 0, 717, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 723, 8, 1, 1, 1, 3, 1, 726, 8, 1, 1, 2, 1, 2, 5, 2, 730, 8, 2, 10, 2, 12, 2, 733, 9, 2, 1, 2, 1, 2, 1, 2, 3, 2, 738, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 745, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 755, 8, 3, 1, 3, 3, 3, 758, 8, 3, 1, 3, 1, 3, 3, 3, 762, 8, 3, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 777, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 784, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 790, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 795, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 800, 8, 5, 1, 5, 3, 5, 803, 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, 5, 5, 825, 8, 5, 10, 5, 12, 5, 828, 9, 5, 1, 5, 1, 5, 5, 5, 832, 8, 5, 10, 5, 12, 5, 835, 9, 5, 3, 5, 837, 8, 5, 1, 6, 1, 6, 1, 6, 3, 6, 842, 8, 6, 1, 6, 1, 6, 1, 6, 3, 6, 847, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 853, 8, 6, 1, 7, 1, 7, 3, 7, 857, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 870, 8, 8, 1, 9, 1, 9, 3, 9, 874, 8, 9, 1, 9, 1, 9, 3, 9, 878, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 883, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 890, 8, 10, 1, 10, 1, 10, 3, 10, 894, 8, 10, 1, 11, 1, 11, 1, 11, 3, 11, 899, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 906, 8, 12, 1, 12, 1, 12, 3, 12, 910, 8, 12, 1, 13, 1, 13, 1, 13, 3, 13, 915, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 4, 14, 961, 8, 14, 11, 14, 12, 14, 962, 1, 14, 1, 14, 1, 14, 4, 14, 968, 8, 14, 11, 14, 12, 14, 969, 1, 14, 1, 14, 1, 14, 3, 14, 975, 8, 14, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 3, 21, 998, 8, 21, 1, 21, 1, 21, 3, 21, 1002, 8, 21, 1, 21, 1, 21, 3, 21, 1006, 8, 21, 1, 21, 3, 21, 1009, 8, 21, 1, 21, 1, 21, 3, 21, 1013, 8, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1018, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1024, 8, 21, 1, 21, 1, 21, 3, 21, 1028, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1034, 8, 21, 3, 21, 1036, 8, 21, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 3, 24, 1047, 8, 24, 1, 24, 1, 24, 3, 24, 1051, 8, 24, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 3, 26, 1058, 8, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1066, 8, 26, 1, 26, 3, 26, 1069, 8, 26, 1, 27, 1, 27, 1, 27, 3, 27, 1074, 8, 27, 1, 27, 1, 27, 3, 27, 1078, 8, 27, 1, 27, 3, 27, 1081, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 3, 29, 1091, 8, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 1099, 8, 29, 5, 29, 1101, 8, 29, 10, 29, 12, 29, 1104, 9, 29, 3, 29, 1106, 8, 29, 1, 30, 1, 30, 3, 30, 1110, 8, 30, 1, 31, 1, 31, 3, 31, 1114, 8, 31, 1, 31, 3, 31, 1117, 8, 31, 1, 32, 1, 32, 1, 32, 3, 32, 1122, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1128, 8, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1133, 8, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1138, 8, 32, 1, 32, 1, 32, 3, 32, 1142, 8, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1153, 8, 33, 3, 33, 1155, 8, 33, 1, 33, 1, 33, 3, 33, 1159, 8, 33, 1, 34, 1, 34, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1169, 8, 36, 1, 36, 1, 36, 3, 36, 1173, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1179, 8, 36, 1, 36, 3, 36, 1182, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1189, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1194, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1202, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1207, 8, 36, 1, 36, 1, 36, 3, 36, 1211, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1219, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1224, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1230, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1236, 8, 36, 1, 36, 3, 36, 1239, 8, 36, 1, 36, 3, 36, 1242, 8, 36, 1, 36, 3, 36, 1245, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1254, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1262, 8, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1267, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1275, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1282, 8, 36, 1, 36, 3, 36, 1285, 8, 36, 1, 36, 3, 36, 1288, 8, 36, 3, 36, 1290, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1301, 8, 36, 3, 36, 1303, 8, 36, 1, 36, 3, 36, 1306, 8, 36, 1, 36, 3, 36, 1309, 8, 36, 1, 36, 3, 36, 1312, 8, 36, 1, 36, 3, 36, 1315, 8, 36, 1, 36, 3, 36, 1318, 8, 36, 3, 36, 1320, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1332, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1338, 8, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1346, 8, 36, 3, 36, 1348, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 1358, 8, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 3, 45, 1391, 8, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1396, 8, 45, 1, 46, 1, 46, 3, 46, 1400, 8, 46, 1, 46, 1, 46, 3, 46, 1404, 8, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 3, 47, 1411, 8, 47, 1, 47, 1, 47, 1, 47, 5, 47, 1416, 8, 47, 10, 47, 12, 47, 1419, 9, 47, 1, 47, 1, 47, 1, 47, 3, 47, 1424, 8, 47, 1, 48, 1, 48, 3, 48, 1428, 8, 48, 1, 48, 3, 48, 1431, 8, 48, 1, 48, 1, 48, 1, 48, 5, 48, 1436, 8, 48, 10, 48, 12, 48, 1439, 9, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1461, 8, 52, 1, 53, 1, 53, 1, 53, 3, 53, 1466, 8, 53, 1, 53, 1, 53, 3, 53, 1470, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 3, 55, 1478, 8, 55, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1487, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 1494, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1500, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1507, 8, 58, 1, 58, 3, 58, 1510, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1516, 8, 58, 1, 59, 1, 59, 1, 59, 5, 59, 1521, 8, 59, 10, 59, 12, 59, 1524, 9, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 1531, 8, 60, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 5, 62, 1538, 8, 62, 10, 62, 12, 62, 1541, 9, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 1549, 8, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 1556, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 3, 69, 1576, 8, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 1583, 8, 69, 3, 69, 1585, 8, 69, 1, 70, 1, 70, 1, 70, 5, 70, 1590, 8, 70, 10, 70, 12, 70, 1593, 9, 70, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 73, 1, 73, 3, 73, 1602, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1610, 8, 73, 1, 74, 1, 74, 3, 74, 1614, 8, 74, 1, 74, 1, 74, 3, 74, 1618, 8, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 3, 76, 1631, 8, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 1640, 8, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1656, 8, 78, 1, 78, 1, 78, 3, 78, 1660, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1665, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1670, 8, 78, 1, 78, 3, 78, 1673, 8, 78, 1, 78, 3, 78, 1676, 8, 78, 1, 78, 3, 78, 1679, 8, 78, 1, 78, 3, 78, 1682, 8, 78, 1, 78, 3, 78, 1685, 8, 78, 1, 79, 1, 79, 1, 79, 3, 79, 1690, 8, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 3, 80, 1699, 8, 80, 1, 80, 1, 80, 3, 80, 1703, 8, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1710, 8, 80, 1, 80, 3, 80, 1713, 8, 80, 1, 80, 3, 80, 1716, 8, 80, 1, 80, 3, 80, 1719, 8, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 1731, 8, 81, 1, 81, 1, 81, 1, 82, 1, 82, 3, 82, 1737, 8, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 3, 87, 1763, 8, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 1771, 8, 88, 1, 88, 1, 88, 3, 88, 1775, 8, 88, 1, 88, 3, 88, 1778, 8, 88, 1, 88, 3, 88, 1781, 8, 88, 1, 88, 3, 88, 1784, 8, 88, 1, 88, 3, 88, 1787, 8, 88, 1, 88, 3, 88, 1790, 8, 88, 1, 88, 3, 88, 1793, 8, 88, 1, 88, 3, 88, 1796, 8, 88, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 3, 89, 1805, 8, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 1815, 8, 90, 1, 90, 3, 90, 1818, 8, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 3, 93, 1838, 8, 93, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 1844, 8, 94, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 1850, 8, 94, 1, 94, 3, 94, 1853, 8, 94, 3, 94, 1855, 8, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 3, 96, 1862, 8, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 3, 97, 1869, 8, 97, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 1882, 8, 100, 1, 100, 1, 100, 1, 100, 3, 100, 1887, 8, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 5, 101, 1894, 8, 101, 10, 101, 12, 101, 1897, 9, 101, 1, 102, 1, 102, 1, 102, 5, 102, 1902, 8, 102, 10, 102, 12, 102, 1905, 9, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 1912, 8, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 1925, 8, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 1938, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 1954, 8, 105, 1, 106, 1, 106, 3, 106, 1958, 8, 106, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 1973, 8, 109, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 1979, 8, 110, 1, 110, 3, 110, 1982, 8, 110, 1, 110, 3, 110, 1985, 8, 110, 1, 110, 3, 110, 1988, 8, 110, 1, 110, 3, 110, 1991, 8, 110, 1, 111, 1, 111, 3, 111, 1995, 8, 111, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 5, 114, 2008, 8, 114, 10, 114, 12, 114, 2011, 9, 114, 3, 114, 2013, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 5, 116, 2022, 8, 116, 10, 116, 12, 116, 2025, 9, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 2038, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2072, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2080, 8, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2085, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2093, 8, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2098, 8, 123, 1, 123, 1, 123, 1, 123, 3, 123, 2103, 8, 123, 1, 124, 1, 124, 1, 124, 5, 124, 2108, 8, 124, 10, 124, 12, 124, 2111, 9, 124, 1, 125, 1, 125, 1, 125, 5, 125, 2116, 8, 125, 10, 125, 12, 125, 2119, 9, 125, 1, 126, 1, 126, 1, 126, 5, 126, 2124, 8, 126, 10, 126, 12, 126, 2127, 9, 126, 1, 127, 1, 127, 1, 127, 5, 127, 2132, 8, 127, 10, 127, 12, 127, 2135, 9, 127, 1, 128, 1, 128, 1, 128, 3, 128, 2140, 8, 128, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 3, 130, 2147, 8, 130, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 2157, 8, 132, 5, 132, 2159, 8, 132, 10, 132, 12, 132, 2162, 9, 132, 1, 133, 1, 133, 1, 133, 5, 133, 2167, 8, 133, 10, 133, 12, 133, 2170, 9, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 3, 135, 2178, 8, 135, 1, 135, 3, 135, 2181, 8, 135, 1, 136, 1, 136, 3, 136, 2185, 8, 136, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 3, 138, 2192, 8, 138, 1, 139, 1, 139, 1, 140, 1, 140, 3, 140, 2198, 8, 140, 1, 140, 1, 140, 3, 140, 2202, 8, 140, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 2208, 8, 141, 1, 142, 1, 142, 3, 142, 2212, 8, 142, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 3, 145, 2224, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 2233, 8, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 2244, 8, 146, 1, 147, 1, 147, 3, 147, 2248, 8, 147, 1, 148, 1, 148, 1, 148, 5, 148, 2253, 8, 148, 10, 148, 12, 148, 2256, 9, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 5, 150, 2265, 8, 150, 10, 150, 12, 150, 2268, 9, 150, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 3, 153, 2277, 8, 153, 1, 153, 3, 153, 2280, 8, 153, 1, 154, 1, 154, 1, 154, 5, 154, 2285, 8, 154, 10, 154, 12, 154, 2288, 9, 154, 1, 155, 1, 155, 1, 155, 3, 155, 2293, 8, 155, 1, 156, 1, 156, 3, 156, 2297, 8, 156, 1, 156, 3, 156, 2300, 8, 156, 1, 156, 3, 156, 2303, 8, 156, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 2309, 8, 157, 1, 158, 1, 158, 3, 158, 2313, 8, 158, 1, 159, 1, 159, 3, 159, 2317, 8, 159, 1, 160, 1, 160, 1, 160, 3, 160, 2322, 8, 160, 1, 160, 1, 160, 3, 160, 2326, 8, 160, 1, 161, 1, 161, 3, 161, 2330, 8, 161, 1, 162, 1, 162, 3, 162, 2334, 8, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 3, 162, 2342, 8, 162, 1, 163, 1, 163, 3, 163, 2346, 8, 163, 1, 163, 1, 163, 3, 163, 2350, 8, 163, 1, 164, 1, 164, 3, 164, 2354, 8, 164, 1, 165, 1, 165, 3, 165, 2358, 8, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 2366, 8, 165, 1, 166, 1, 166, 3, 166, 2370, 8, 166, 1, 166, 1, 166, 3, 166, 2374, 8, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 3, 167, 2382, 8, 167, 1, 168, 1, 168, 1, 168, 3, 168, 2387, 8, 168, 1, 169, 1, 169, 1, 169, 3, 169, 2392, 8, 169, 1, 170, 1, 170, 3, 170, 2396, 8, 170, 1, 171, 1, 171, 3, 171, 2400, 8, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 2407, 8, 172, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 5, 174, 2414, 8, 174, 10, 174, 12, 174, 2417, 9, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 2424, 8, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 2436, 8, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 2454, 8, 176, 1, 176, 3, 176, 2457, 8, 176, 1, 176, 1, 176, 1, 176, 1, 176, 3, 176, 2463, 8, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 3, 181, 2489, 8, 181, 1, 182, 3, 182, 2492, 8, 182, 1, 182, 1, 182, 1, 183, 1, 183, 3, 183, 2498, 8, 183, 1, 184, 1, 184, 1, 184, 1, 184, 5, 184, 2504, 8, 184, 10, 184, 12, 184, 2507, 9, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 3, 185, 2514, 8, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 1, 186, 5, 186, 2525, 8, 186, 10, 186, 12, 186, 2528, 9, 186, 1, 187, 1, 187, 1, 187, 1, 187, 3, 187, 2534, 8, 187, 1, 187, 3, 187, 2537, 8, 187, 1, 187, 3, 187, 2540, 8, 187, 1, 187, 3, 187, 2543, 8, 187, 1, 187, 3, 187, 2546, 8, 187, 1, 187, 3, 187, 2549, 8, 187, 1, 187, 3, 187, 2552, 8, 187, 1, 187, 3, 187, 2555, 8, 187, 1, 187, 3, 187, 2558, 8, 187, 1, 187, 3, 187, 2561, 8, 187, 1, 187, 3, 187, 2564, 8, 187, 1, 187, 1, 187, 1, 187, 3, 187, 2569, 8, 187, 1, 187, 3, 187, 2572, 8, 187, 1, 187, 3, 187, 2575, 8, 187, 1, 187, 3, 187, 2578, 8, 187, 1, 187, 3, 187, 2581, 8, 187, 1, 187, 3, 187, 2584, 8, 187, 1, 187, 3, 187, 2587, 8, 187, 1, 187, 3, 187, 2590, 8, 187, 1, 187, 3, 187, 2593, 8, 187, 1, 187, 3, 187, 2596, 8, 187, 1, 187, 3, 187, 2599, 8, 187, 3, 187, 2601, 8, 187, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 2607, 8, 188, 1, 189, 1, 189, 3, 189, 2611, 8, 189, 1, 189, 3, 189, 2614, 8, 189, 1, 189, 3, 189, 2617, 8, 189, 1, 189, 3, 189, 2620, 8, 189, 1, 189, 3, 189, 2623, 8, 189, 1, 189, 3, 189, 2626, 8, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 3, 189, 2633, 8, 189, 1, 190, 1, 190, 3, 190, 2637, 8, 190, 1, 190, 3, 190, 2640, 8, 190, 1, 190, 3, 190, 2643, 8, 190, 1, 190, 3, 190, 2646, 8, 190, 1, 190, 3, 190, 2649, 8, 190, 1, 190, 3, 190, 2652, 8, 190, 1, 191, 1, 191, 1, 191, 4, 191, 2657, 8, 191, 11, 191, 12, 191, 2658, 1, 192, 3, 192, 2662, 8, 192, 1, 192, 1, 192, 1, 193, 1, 193, 1, 193, 1, 193, 3, 193, 2670, 8, 193, 1, 193, 1, 193, 3, 193, 2674, 8, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 3, 193, 2681, 8, 193, 3, 193, 2683, 8, 193, 1, 194, 3, 194, 2686, 8, 194, 1, 194, 1, 194, 1, 194, 3, 194, 2691, 8, 194, 1, 194, 3, 194, 2694, 8, 194, 1, 194, 1, 194, 3, 194, 2698, 8, 194, 1, 195, 1, 195, 1, 195, 3, 195, 2703, 8, 195, 1, 195, 1, 195, 1, 195, 1, 195, 3, 195, 2709, 8, 195, 1, 196, 1, 196, 1, 196, 1, 196, 1, 197, 1, 197, 3, 197, 2717, 8, 197, 1, 198, 1, 198, 1, 198, 1, 198, 5, 198, 2723, 8, 198, 10, 198, 12, 198, 2726, 9, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 5, 199, 2733, 8, 199, 10, 199, 12, 199, 2736, 9, 199, 3, 199, 2738, 8, 199, 1, 199, 1, 199, 3, 199, 2742, 8, 199, 1, 199, 1, 199, 3, 199, 2746, 8, 199, 1, 199, 1, 199, 1, 199, 3, 199, 2751, 8, 199, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 3, 200, 2758, 8, 200, 1, 201, 1, 201, 5, 201, 2762, 8, 201, 10, 201, 12, 201, 2765, 9, 201, 1, 201, 3, 201, 2768, 8, 201, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 3, 202, 2775, 8, 202, 1, 202, 1, 202, 1, 202, 3, 202, 2780, 8, 202, 1, 202, 1, 202, 1, 202, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 2793, 8, 203, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 3, 204, 2801, 8, 204, 1, 205, 1, 205, 1, 205, 1, 206, 1, 206, 1, 206, 1, 207, 1, 207, 1, 207, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2820, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2830, 8, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 2843, 8, 208, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2853, 8, 209, 1, 209, 1, 209, 3, 209, 2857, 8, 209, 4, 209, 2859, 8, 209, 11, 209, 12, 209, 2860, 1, 209, 1, 209, 5, 209, 2865, 8, 209, 10, 209, 12, 209, 2868, 9, 209, 1, 209, 1, 209, 5, 209, 2872, 8, 209, 10, 209, 12, 209, 2875, 9, 209, 1, 209, 1, 209, 5, 209, 2879, 8, 209, 10, 209, 12, 209, 2882, 9, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2890, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2897, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2917, 8, 209, 1, 209, 3, 209, 2920, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 2934, 8, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 2949, 8, 210, 1, 210, 1, 210, 3, 210, 2953, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 5, 210, 2971, 8, 210, 10, 210, 12, 210, 2974, 9, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 2985, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 2991, 8, 210, 1, 210, 3, 210, 2994, 8, 210, 1, 210, 3, 210, 2997, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3003, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3009, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3016, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3024, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3030, 8, 210, 1, 210, 1, 210, 3, 210, 3034, 8, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3039, 8, 210, 1, 210, 3, 210, 3042, 8, 210, 1, 210, 1, 210, 3, 210, 3046, 8, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3053, 8, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3058, 8, 210, 1, 210, 1, 210, 1, 210, 3, 210, 3063, 8, 210, 1, 210, 3, 210, 3066, 8, 210, 3, 210, 3068, 8, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 3, 211, 3076, 8, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 3, 211, 3084, 8, 211, 1, 211, 1, 211, 3, 211, 3088, 8, 211, 4, 211, 3090, 8, 211, 11, 211, 12, 211, 3091, 1, 211, 1, 211, 3, 211, 3096, 8, 211, 1, 212, 1, 212, 1, 212, 1, 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, 3113, 8, 212, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 3130, 8, 213, 1, 214, 1, 214, 1, 214, 1, 215, 1, 215, 3, 215, 3137, 8, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 5, 215, 3144, 8, 215, 10, 215, 12, 215, 3147, 9, 215, 1, 215, 1, 215, 3, 215, 3151, 8, 215, 1, 215, 3, 215, 3154, 8, 215, 1, 215, 3, 215, 3157, 8, 215, 1, 216, 1, 216, 3, 216, 3161, 8, 216, 1, 216, 1, 216, 1, 216, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 3, 217, 3176, 8, 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, 3, 218, 3190, 8, 218, 1, 218, 3, 218, 3193, 8, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 3, 219, 3204, 8, 219, 1, 220, 1, 220, 3, 220, 3208, 8, 220, 1, 220, 3, 220, 3211, 8, 220, 1, 220, 3, 220, 3214, 8, 220, 1, 220, 1, 220, 3, 220, 3218, 8, 220, 1, 220, 1, 220, 1, 220, 3, 220, 3223, 8, 220, 1, 220, 3, 220, 3226, 8, 220, 1, 220, 3, 220, 3229, 8, 220, 1, 220, 3, 220, 3232, 8, 220, 1, 220, 3, 220, 3235, 8, 220, 1, 220, 3, 220, 3238, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 3244, 8, 220, 1, 220, 3, 220, 3247, 8, 220, 1, 220, 3, 220, 3250, 8, 220, 1, 220, 3, 220, 3253, 8, 220, 1, 220, 3, 220, 3256, 8, 220, 1, 220, 3, 220, 3259, 8, 220, 1, 220, 3, 220, 3262, 8, 220, 1, 220, 3, 220, 3265, 8, 220, 1, 220, 3, 220, 3268, 8, 220, 1, 220, 3, 220, 3271, 8, 220, 1, 220, 1, 220, 3, 220, 3275, 8, 220, 3, 220, 3277, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 3283, 8, 220, 1, 220, 1, 220, 1, 220, 3, 220, 3288, 8, 220, 1, 220, 3, 220, 3291, 8, 220, 1, 220, 3, 220, 3294, 8, 220, 1, 220, 3, 220, 3297, 8, 220, 1, 220, 3, 220, 3300, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 3306, 8, 220, 1, 220, 3, 220, 3309, 8, 220, 1, 220, 3, 220, 3312, 8, 220, 1, 220, 3, 220, 3315, 8, 220, 1, 220, 3, 220, 3318, 8, 220, 1, 220, 3, 220, 3321, 8, 220, 1, 220, 3, 220, 3324, 8, 220, 1, 220, 3, 220, 3327, 8, 220, 1, 220, 3, 220, 3330, 8, 220, 1, 220, 3, 220, 3333, 8, 220, 1, 220, 1, 220, 3, 220, 3337, 8, 220, 3, 220, 3339, 8, 220, 3, 220, 3341, 8, 220, 1, 221, 1, 221, 1, 221, 3, 221, 3346, 8, 221, 1, 221, 1, 221, 1, 221, 3, 221, 3351, 8, 221, 1, 221, 1, 221, 3, 221, 3355, 8, 221, 1, 221, 1, 221, 3, 221, 3359, 8, 221, 1, 221, 1, 221, 1, 221, 3, 221, 3364, 8, 221, 1, 222, 1, 222, 1, 222, 3, 222, 3369, 8, 222, 1, 222, 1, 222, 1, 223, 1, 223, 1, 223, 5, 223, 3376, 8, 223, 10, 223, 12, 223, 3379, 9, 223, 1, 223, 1, 223, 1, 224, 1, 224, 1, 224, 5, 224, 3386, 8, 224, 10, 224, 12, 224, 3389, 9, 224, 1, 225, 1, 225, 1, 225, 5, 225, 3394, 8, 225, 10, 225, 12, 225, 3397, 9, 225, 1, 226, 1, 226, 1, 226, 1, 227, 1, 227, 1, 227, 1, 227, 4, 227, 3406, 8, 227, 11, 227, 12, 227, 3407, 1, 227, 3, 227, 3411, 8, 227, 1, 228, 1, 228, 5, 228, 3415, 8, 228, 10, 228, 12, 228, 3418, 9, 228, 1, 228, 1, 228, 5, 228, 3422, 8, 228, 10, 228, 12, 228, 3425, 9, 228, 1, 228, 1, 228, 5, 228, 3429, 8, 228, 10, 228, 12, 228, 3432, 9, 228, 1, 228, 1, 228, 5, 228, 3436, 8, 228, 10, 228, 12, 228, 3439, 9, 228, 1, 228, 1, 228, 1, 228, 1, 228, 3, 228, 3445, 8, 228, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 3, 229, 3455, 8, 229, 3, 229, 3457, 8, 229, 1, 229, 1, 229, 3, 229, 3461, 8, 229, 5, 229, 3463, 8, 229, 10, 229, 12, 229, 3466, 9, 229, 1, 230, 1, 230, 1, 230, 1, 230, 3, 230, 3472, 8, 230, 1, 230, 5, 230, 3475, 8, 230, 10, 230, 12, 230, 3478, 9, 230, 1, 231, 3, 231, 3481, 8, 231, 1, 231, 1, 231, 3, 231, 3485, 8, 231, 1, 231, 3, 231, 3488, 8, 231, 1, 231, 3, 231, 3491, 8, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 3, 232, 3502, 8, 232, 1, 232, 1, 232, 3, 232, 3506, 8, 232, 3, 232, 3508, 8, 232, 1, 232, 3, 232, 3511, 8, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 5, 233, 3522, 8, 233, 10, 233, 12, 233, 3525, 9, 233, 3, 233, 3527, 8, 233, 1, 233, 3, 233, 3530, 8, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 5, 233, 3540, 8, 233, 10, 233, 12, 233, 3543, 9, 233, 3, 233, 3545, 8, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 3, 233, 3552, 8, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 5, 233, 3559, 8, 233, 10, 233, 12, 233, 3562, 9, 233, 1, 233, 1, 233, 3, 233, 3566, 8, 233, 3, 233, 3568, 8, 233, 3, 233, 3570, 8, 233, 1, 234, 1, 234, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 5, 235, 3585, 8, 235, 10, 235, 12, 235, 3588, 9, 235, 3, 235, 3590, 8, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 3, 235, 3598, 8, 235, 1, 235, 3, 235, 3601, 8, 235, 1, 236, 1, 236, 3, 236, 3605, 8, 236, 1, 236, 3, 236, 3608, 8, 236, 1, 236, 3, 236, 3611, 8, 236, 1, 236, 3, 236, 3614, 8, 236, 1, 236, 3, 236, 3617, 8, 236, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 3, 237, 3629, 8, 237, 1, 238, 1, 238, 1, 239, 1, 239, 1, 240, 1, 240, 3, 240, 3637, 8, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 3, 241, 3644, 8, 241, 1, 241, 3, 241, 3647, 8, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 3, 242, 3654, 8, 242, 1, 242, 3, 242, 3657, 8, 242, 1, 243, 1, 243, 1, 243, 3, 243, 3662, 8, 243, 1, 243, 1, 243, 1, 244, 1, 244, 1, 244, 3, 244, 3669, 8, 244, 1, 244, 1, 244, 1, 245, 1, 245, 1, 245, 1, 245, 3, 245, 3677, 8, 245, 1, 245, 1, 245, 1, 246, 1, 246, 3, 246, 3683, 8, 246, 1, 246, 1, 246, 1, 246, 3, 246, 3688, 8, 246, 1, 246, 1, 246, 3, 246, 3692, 8, 246, 1, 247, 1, 247, 1, 247, 3, 247, 3697, 8, 247, 1, 248, 1, 248, 3, 248, 3701, 8, 248, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 3, 249, 3708, 8, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 1, 249, 5, 249, 3720, 8, 249, 10, 249, 12, 249, 3723, 9, 249, 3, 249, 3725, 8, 249, 1, 249, 1, 249, 1, 250, 1, 250, 1, 250, 3, 250, 3732, 8, 250, 1, 251, 1, 251, 1, 251, 1, 251, 5, 251, 3738, 8, 251, 10, 251, 12, 251, 3741, 9, 251, 1, 251, 1, 251, 1, 251, 1, 251, 1, 251, 5, 251, 3748, 8, 251, 10, 251, 12, 251, 3751, 9, 251, 3, 251, 3753, 8, 251, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 253, 1, 253, 3, 253, 3762, 8, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 5, 253, 3769, 8, 253, 10, 253, 12, 253, 3772, 9, 253, 3, 253, 3774, 8, 253, 1, 253, 1, 253, 1, 254, 1, 254, 3, 254, 3780, 8, 254, 1, 254, 3, 254, 3783, 8, 254, 1, 254, 1, 254, 1, 254, 3, 254, 3788, 8, 254, 1, 254, 3, 254, 3791, 8, 254, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 3, 255, 3804, 8, 255, 1, 255, 1, 255, 1, 255, 1, 255, 3, 255, 3810, 8, 255, 3, 255, 3812, 8, 255, 1, 255, 1, 255, 1, 255, 1, 256, 1, 256, 1, 256, 5, 256, 3820, 8, 256, 10, 256, 12, 256, 3823, 9, 256, 1, 257, 1, 257, 1, 257, 3, 257, 3828, 8, 257, 1, 257, 3, 257, 3831, 8, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 5, 257, 3839, 8, 257, 10, 257, 12, 257, 3842, 9, 257, 1, 257, 1, 257, 3, 257, 3846, 8, 257, 1, 257, 1, 257, 3, 257, 3850, 8, 257, 1, 258, 1, 258, 1, 259, 1, 259, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 3866, 8, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 3872, 8, 260, 3, 260, 3874, 8, 260, 1, 260, 1, 260, 1, 260, 1, 261, 1, 261, 3, 261, 3881, 8, 261, 1, 262, 1, 262, 1, 262, 5, 262, 3886, 8, 262, 10, 262, 12, 262, 3889, 9, 262, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 5, 263, 3900, 8, 263, 10, 263, 12, 263, 3903, 9, 263, 1, 264, 1, 264, 1, 264, 3, 264, 3908, 8, 264, 1, 264, 3, 264, 3911, 8, 264, 1, 264, 3, 264, 3914, 8, 264, 1, 264, 3, 264, 3917, 8, 264, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 3, 265, 3926, 8, 265, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 3, 265, 3933, 8, 265, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 3939, 8, 266, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 3, 267, 3948, 8, 267, 1, 268, 1, 268, 3, 268, 3952, 8, 268, 1, 268, 1, 268, 1, 268, 1, 268, 5, 268, 3958, 8, 268, 10, 268, 12, 268, 3961, 9, 268, 1, 268, 1, 268, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 3970, 8, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 5, 269, 3978, 8, 269, 10, 269, 12, 269, 3981, 9, 269, 1, 269, 1, 269, 3, 269, 3985, 8, 269, 1, 270, 1, 270, 3, 270, 3989, 8, 270, 1, 270, 1, 270, 5, 270, 3993, 8, 270, 10, 270, 12, 270, 3996, 9, 270, 1, 270, 1, 270, 3, 270, 4000, 8, 270, 1, 271, 1, 271, 1, 271, 3, 271, 4005, 8, 271, 1, 272, 1, 272, 1, 272, 1, 273, 1, 273, 3, 273, 4012, 8, 273, 1, 274, 1, 274, 3, 274, 4016, 8, 274, 1, 274, 3, 274, 4019, 8, 274, 1, 274, 1, 274, 1, 274, 3, 274, 4024, 8, 274, 1, 274, 3, 274, 4027, 8, 274, 5, 274, 4029, 8, 274, 10, 274, 12, 274, 4032, 9, 274, 1, 275, 1, 275, 3, 275, 4036, 8, 275, 1, 276, 1, 276, 1, 276, 1, 276, 1, 277, 1, 277, 1, 277, 4, 277, 4045, 8, 277, 11, 277, 12, 277, 4046, 3, 277, 4049, 8, 277, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 5, 278, 4056, 8, 278, 10, 278, 12, 278, 4059, 9, 278, 1, 279, 1, 279, 1, 279, 1, 279, 1, 280, 1, 280, 1, 280, 1, 280, 1, 281, 1, 281, 1, 281, 1, 281, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 5, 282, 4079, 8, 282, 10, 282, 12, 282, 4082, 9, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 5, 282, 4089, 8, 282, 10, 282, 12, 282, 4092, 9, 282, 3, 282, 4094, 8, 282, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4101, 8, 283, 1, 283, 3, 283, 4104, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4114, 8, 283, 1, 283, 1, 283, 1, 283, 5, 283, 4119, 8, 283, 10, 283, 12, 283, 4122, 9, 283, 3, 283, 4124, 8, 283, 3, 283, 4126, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4137, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 4147, 8, 283, 3, 283, 4149, 8, 283, 1, 284, 1, 284, 1, 284, 1, 285, 1, 285, 1, 286, 1, 286, 3, 286, 4158, 8, 286, 1, 287, 1, 287, 1, 287, 3, 287, 4163, 8, 287, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 1, 288, 3, 288, 4172, 8, 288, 1, 288, 1, 288, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 4, 289, 4183, 8, 289, 11, 289, 12, 289, 4184, 1, 289, 1, 289, 3, 289, 4189, 8, 289, 1, 289, 1, 289, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 4, 290, 4199, 8, 290, 11, 290, 12, 290, 4200, 1, 290, 1, 290, 3, 290, 4205, 8, 290, 1, 290, 1, 290, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 3, 291, 4214, 8, 291, 1, 291, 1, 291, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 292, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 1, 293, 3, 293, 4233, 8, 293, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 5, 294, 4249, 8, 294, 10, 294, 12, 294, 4252, 9, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 3, 294, 4263, 8, 294, 1, 295, 1, 295, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 3, 296, 4278, 8, 296, 1, 296, 1, 296, 3, 296, 4282, 8, 296, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 1, 297, 3, 297, 4298, 8, 297, 1, 298, 1, 298, 1, 298, 5, 298, 4303, 8, 298, 10, 298, 12, 298, 4306, 9, 298, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 3, 299, 4319, 8, 299, 1, 300, 5, 300, 4322, 8, 300, 10, 300, 12, 300, 4325, 9, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 1, 300, 5, 300, 4334, 8, 300, 10, 300, 12, 300, 4337, 9, 300, 1, 301, 1, 301, 1, 301, 5, 301, 4342, 8, 301, 10, 301, 12, 301, 4345, 9, 301, 1, 302, 1, 302, 1, 302, 5, 302, 4350, 8, 302, 10, 302, 12, 302, 4353, 9, 302, 1, 303, 1, 303, 1, 303, 5, 303, 4358, 8, 303, 10, 303, 12, 303, 4361, 9, 303, 1, 304, 1, 304, 1, 304, 5, 304, 4366, 8, 304, 10, 304, 12, 304, 4369, 9, 304, 1, 305, 1, 305, 1, 305, 5, 305, 4374, 8, 305, 10, 305, 12, 305, 4377, 9, 305, 1, 306, 1, 306, 1, 306, 5, 306, 4382, 8, 306, 10, 306, 12, 306, 4385, 9, 306, 1, 307, 1, 307, 1, 308, 1, 308, 1, 308, 1, 308, 1, 309, 1, 309, 3, 309, 4395, 8, 309, 1, 309, 1, 309, 3, 309, 4399, 8, 309, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 3, 310, 4407, 8, 310, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 3, 311, 4423, 8, 311, 1, 312, 1, 312, 3, 312, 4427, 8, 312, 1, 313, 1, 313, 1, 313, 3, 313, 4432, 8, 313, 1, 314, 1, 314, 1, 314, 1, 314, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 3, 315, 4445, 8, 315, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 5, 316, 4454, 8, 316, 10, 316, 12, 316, 4457, 9, 316, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 3, 317, 4465, 8, 317, 1, 318, 5, 318, 4468, 8, 318, 10, 318, 12, 318, 4471, 9, 318, 1, 318, 1, 318, 1, 318, 3, 318, 4476, 8, 318, 1, 319, 1, 319, 1, 319, 5, 319, 4481, 8, 319, 10, 319, 12, 319, 4484, 9, 319, 1, 320, 1, 320, 3, 320, 4488, 8, 320, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 5, 321, 4495, 8, 321, 10, 321, 12, 321, 4498, 9, 321, 1, 321, 1, 321, 1, 322, 1, 322, 1, 322, 3, 322, 4505, 8, 322, 1, 323, 1, 323, 1, 323, 1, 323, 5, 323, 4511, 8, 323, 10, 323, 12, 323, 4514, 9, 323, 1, 323, 1, 323, 1, 324, 1, 324, 1, 324, 3, 324, 4521, 8, 324, 1, 324, 1, 324, 1, 325, 1, 325, 1, 326, 1, 326, 1, 327, 1, 327, 3, 327, 4531, 8, 327, 1, 328, 1, 328, 1, 328, 3, 328, 4536, 8, 328, 1, 329, 1, 329, 1, 330, 1, 330, 1, 331, 1, 331, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 3, 332, 4595, 8, 332, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4601, 8, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4610, 8, 333, 3, 333, 4612, 8, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 5, 333, 4626, 8, 333, 10, 333, 12, 333, 4629, 9, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4636, 8, 333, 1, 333, 1, 333, 3, 333, 4640, 8, 333, 3, 333, 4642, 8, 333, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4648, 8, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4653, 8, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4670, 8, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4696, 8, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4701, 8, 333, 3, 333, 4703, 8, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4731, 8, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4748, 8, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4753, 8, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 1, 333, 3, 333, 4762, 8, 333, 1, 334, 1, 334, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 1, 335, 3, 335, 4773, 8, 335, 1, 336, 1, 336, 1, 336, 5, 336, 4778, 8, 336, 10, 336, 12, 336, 4781, 9, 336, 1, 337, 1, 337, 1, 337, 3, 337, 4786, 8, 337, 1, 338, 1, 338, 1, 338, 3, 338, 4791, 8, 338, 1, 339, 1, 339, 1, 340, 1, 340, 1, 341, 1, 341, 1, 342, 1, 342, 1, 343, 1, 343, 1, 344, 1, 344, 1, 345, 1, 345, 1, 346, 1, 346, 1, 347, 1, 347, 1, 348, 1, 348, 1, 349, 1, 349, 1, 350, 1, 350, 1, 350, 5, 350, 4818, 8, 350, 10, 350, 12, 350, 4821, 9, 350, 1, 351, 1, 351, 1, 351, 5, 351, 4826, 8, 351, 10, 351, 12, 351, 4829, 9, 351, 1, 351, 1, 351, 1, 351, 1, 351, 5, 351, 4835, 8, 351, 10, 351, 12, 351, 4838, 9, 351, 3, 351, 4840, 8, 351, 1, 352, 1, 352, 1, 352, 1, 352, 1, 353, 1, 353, 1, 353, 1, 353, 3, 353, 4850, 8, 353, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 3, 354, 4864, 8, 354, 1, 355, 1, 355, 1, 355, 5, 355, 4869, 8, 355, 10, 355, 12, 355, 4872, 9, 355, 1, 355, 1, 833, 0, 356, 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, 0, 61, 2, 0, 57, 57, 172, 172, 4, 0, 91, 91, 121, 121, 226, 226, 325, 325, 1, 0, 395, 396, 2, 0, 50, 50, 346, 346, 2, 0, 34, 34, 282, 282, 1, 0, 89, 90, 2, 0, 139, 139, 154, 154, 2, 0, 67, 67, 295, 295, 2, 0, 68, 68, 296, 296, 1, 0, 155, 156, 2, 0, 114, 114, 307, 307, 11, 0, 7, 7, 9, 9, 58, 58, 86, 86, 101, 101, 155, 155, 161, 161, 190, 190, 299, 299, 309, 309, 365, 365, 3, 0, 4, 4, 101, 101, 326, 326, 3, 0, 15, 15, 128, 128, 170, 170, 1, 0, 141, 142, 2, 0, 30, 30, 351, 351, 2, 0, 217, 217, 373, 373, 2, 0, 214, 214, 272, 272, 2, 0, 18, 18, 89, 89, 2, 0, 130, 130, 177, 177, 2, 0, 39, 39, 376, 376, 4, 0, 112, 112, 164, 164, 205, 205, 356, 356, 2, 0, 7, 7, 96, 96, 2, 0, 125, 125, 350, 350, 2, 0, 225, 225, 391, 391, 2, 0, 42, 42, 315, 315, 2, 0, 189, 189, 196, 196, 2, 0, 426, 426, 431, 431, 2, 0, 140, 140, 285, 285, 3, 0, 12, 12, 231, 231, 300, 300, 2, 0, 241, 241, 292, 292, 2, 0, 198, 198, 268, 268, 2, 0, 260, 260, 292, 292, 2, 0, 354, 354, 431, 431, 2, 0, 133, 133, 247, 247, 2, 0, 152, 152, 281, 281, 3, 0, 413, 414, 418, 418, 420, 420, 2, 0, 412, 412, 415, 417, 1, 0, 413, 414, 4, 0, 184, 184, 270, 270, 286, 286, 408, 411, 2, 0, 7, 7, 13, 13, 3, 0, 7, 7, 13, 13, 313, 313, 3, 0, 184, 184, 270, 270, 286, 286, 4, 0, 125, 125, 219, 219, 350, 350, 360, 360, 2, 0, 405, 405, 407, 411, 24, 0, 11, 11, 16, 16, 25, 28, 35, 35, 100, 100, 131, 132, 151, 151, 154, 154, 162, 163, 184, 184, 198, 198, 216, 216, 228, 228, 264, 264, 270, 270, 286, 286, 311, 311, 323, 324, 340, 340, 357, 357, 383, 383, 405, 417, 419, 421, 423, 423, 85, 0, 1, 6, 8, 8, 10, 10, 15, 15, 18, 20, 22, 24, 30, 31, 33, 34, 37, 38, 40, 44, 46, 47, 49, 50, 52, 53, 56, 57, 59, 59, 66, 66, 68, 68, 72, 77, 79, 79, 83, 85, 87, 89, 91, 95, 97, 99, 103, 104, 106, 107, 109, 111, 114, 116, 118, 121, 127, 130, 137, 138, 142, 142, 147, 150, 152, 152, 155, 156, 158, 160, 168, 170, 172, 177, 182, 183, 185, 187, 189, 193, 195, 197, 199, 202, 204, 204, 206, 209, 211, 212, 214, 215, 217, 218, 220, 220, 222, 223, 226, 227, 232, 233, 235, 236, 238, 240, 243, 246, 252, 252, 254, 255, 257, 259, 261, 262, 265, 267, 271, 282, 284, 284, 287, 288, 293, 298, 300, 303, 305, 310, 312, 312, 314, 317, 319, 325, 327, 328, 330, 330, 332, 334, 339, 340, 342, 342, 344, 346, 349, 349, 352, 353, 355, 355, 357, 357, 360, 364, 366, 368, 371, 373, 375, 375, 377, 382, 385, 385, 388, 394, 13, 0, 16, 16, 26, 28, 63, 64, 71, 71, 100, 100, 131, 131, 145, 145, 151, 151, 162, 163, 198, 198, 264, 264, 311, 311, 337, 337, 2, 0, 4, 4, 101, 101, 2, 0, 9, 9, 58, 58, 3, 0, 14, 14, 144, 144, 369, 369, 1, 0, 106, 107, 1, 0, 94, 95, 1, 0, 392, 393, 1, 0, 208, 209, 1, 0, 381, 382, 1, 0, 73, 74, 1, 0, 148, 149, 1, 0, 206, 207, 1, 0, 297, 298, 1, 0, 80, 82, 5464, 0, 715, 1, 0, 0, 0, 2, 722, 1, 0, 0, 0, 4, 727, 1, 0, 0, 0, 6, 761, 1, 0, 0, 0, 8, 763, 1, 0, 0, 0, 10, 836, 1, 0, 0, 0, 12, 838, 1, 0, 0, 0, 14, 854, 1, 0, 0, 0, 16, 863, 1, 0, 0, 0, 18, 871, 1, 0, 0, 0, 20, 884, 1, 0, 0, 0, 22, 895, 1, 0, 0, 0, 24, 900, 1, 0, 0, 0, 26, 911, 1, 0, 0, 0, 28, 974, 1, 0, 0, 0, 30, 976, 1, 0, 0, 0, 32, 979, 1, 0, 0, 0, 34, 983, 1, 0, 0, 0, 36, 985, 1, 0, 0, 0, 38, 988, 1, 0, 0, 0, 40, 991, 1, 0, 0, 0, 42, 1035, 1, 0, 0, 0, 44, 1037, 1, 0, 0, 0, 46, 1040, 1, 0, 0, 0, 48, 1043, 1, 0, 0, 0, 50, 1052, 1, 0, 0, 0, 52, 1055, 1, 0, 0, 0, 54, 1070, 1, 0, 0, 0, 56, 1082, 1, 0, 0, 0, 58, 1087, 1, 0, 0, 0, 60, 1107, 1, 0, 0, 0, 62, 1111, 1, 0, 0, 0, 64, 1118, 1, 0, 0, 0, 66, 1143, 1, 0, 0, 0, 68, 1160, 1, 0, 0, 0, 70, 1162, 1, 0, 0, 0, 72, 1347, 1, 0, 0, 0, 74, 1357, 1, 0, 0, 0, 76, 1359, 1, 0, 0, 0, 78, 1364, 1, 0, 0, 0, 80, 1369, 1, 0, 0, 0, 82, 1371, 1, 0, 0, 0, 84, 1375, 1, 0, 0, 0, 86, 1379, 1, 0, 0, 0, 88, 1383, 1, 0, 0, 0, 90, 1387, 1, 0, 0, 0, 92, 1397, 1, 0, 0, 0, 94, 1408, 1, 0, 0, 0, 96, 1425, 1, 0, 0, 0, 98, 1443, 1, 0, 0, 0, 100, 1448, 1, 0, 0, 0, 102, 1451, 1, 0, 0, 0, 104, 1455, 1, 0, 0, 0, 106, 1462, 1, 0, 0, 0, 108, 1471, 1, 0, 0, 0, 110, 1477, 1, 0, 0, 0, 112, 1479, 1, 0, 0, 0, 114, 1493, 1, 0, 0, 0, 116, 1515, 1, 0, 0, 0, 118, 1517, 1, 0, 0, 0, 120, 1525, 1, 0, 0, 0, 122, 1532, 1, 0, 0, 0, 124, 1534, 1, 0, 0, 0, 126, 1548, 1, 0, 0, 0, 128, 1555, 1, 0, 0, 0, 130, 1557, 1, 0, 0, 0, 132, 1561, 1, 0, 0, 0, 134, 1565, 1, 0, 0, 0, 136, 1569, 1, 0, 0, 0, 138, 1573, 1, 0, 0, 0, 140, 1586, 1, 0, 0, 0, 142, 1594, 1, 0, 0, 0, 144, 1597, 1, 0, 0, 0, 146, 1599, 1, 0, 0, 0, 148, 1611, 1, 0, 0, 0, 150, 1621, 1, 0, 0, 0, 152, 1624, 1, 0, 0, 0, 154, 1635, 1, 0, 0, 0, 156, 1643, 1, 0, 0, 0, 158, 1686, 1, 0, 0, 0, 160, 1695, 1, 0, 0, 0, 162, 1723, 1, 0, 0, 0, 164, 1736, 1, 0, 0, 0, 166, 1738, 1, 0, 0, 0, 168, 1744, 1, 0, 0, 0, 170, 1747, 1, 0, 0, 0, 172, 1753, 1, 0, 0, 0, 174, 1759, 1, 0, 0, 0, 176, 1766, 1, 0, 0, 0, 178, 1800, 1, 0, 0, 0, 180, 1808, 1, 0, 0, 0, 182, 1821, 1, 0, 0, 0, 184, 1826, 1, 0, 0, 0, 186, 1837, 1, 0, 0, 0, 188, 1854, 1, 0, 0, 0, 190, 1856, 1, 0, 0, 0, 192, 1861, 1, 0, 0, 0, 194, 1868, 1, 0, 0, 0, 196, 1870, 1, 0, 0, 0, 198, 1873, 1, 0, 0, 0, 200, 1876, 1, 0, 0, 0, 202, 1890, 1, 0, 0, 0, 204, 1898, 1, 0, 0, 0, 206, 1924, 1, 0, 0, 0, 208, 1926, 1, 0, 0, 0, 210, 1943, 1, 0, 0, 0, 212, 1957, 1, 0, 0, 0, 214, 1959, 1, 0, 0, 0, 216, 1962, 1, 0, 0, 0, 218, 1965, 1, 0, 0, 0, 220, 1974, 1, 0, 0, 0, 222, 1994, 1, 0, 0, 0, 224, 1996, 1, 0, 0, 0, 226, 1999, 1, 0, 0, 0, 228, 2012, 1, 0, 0, 0, 230, 2014, 1, 0, 0, 0, 232, 2018, 1, 0, 0, 0, 234, 2026, 1, 0, 0, 0, 236, 2030, 1, 0, 0, 0, 238, 2039, 1, 0, 0, 0, 240, 2045, 1, 0, 0, 0, 242, 2051, 1, 0, 0, 0, 244, 2056, 1, 0, 0, 0, 246, 2102, 1, 0, 0, 0, 248, 2104, 1, 0, 0, 0, 250, 2112, 1, 0, 0, 0, 252, 2120, 1, 0, 0, 0, 254, 2128, 1, 0, 0, 0, 256, 2139, 1, 0, 0, 0, 258, 2141, 1, 0, 0, 0, 260, 2146, 1, 0, 0, 0, 262, 2148, 1, 0, 0, 0, 264, 2150, 1, 0, 0, 0, 266, 2163, 1, 0, 0, 0, 268, 2171, 1, 0, 0, 0, 270, 2180, 1, 0, 0, 0, 272, 2184, 1, 0, 0, 0, 274, 2186, 1, 0, 0, 0, 276, 2191, 1, 0, 0, 0, 278, 2193, 1, 0, 0, 0, 280, 2197, 1, 0, 0, 0, 282, 2203, 1, 0, 0, 0, 284, 2211, 1, 0, 0, 0, 286, 2213, 1, 0, 0, 0, 288, 2216, 1, 0, 0, 0, 290, 2223, 1, 0, 0, 0, 292, 2234, 1, 0, 0, 0, 294, 2247, 1, 0, 0, 0, 296, 2249, 1, 0, 0, 0, 298, 2257, 1, 0, 0, 0, 300, 2261, 1, 0, 0, 0, 302, 2269, 1, 0, 0, 0, 304, 2271, 1, 0, 0, 0, 306, 2274, 1, 0, 0, 0, 308, 2281, 1, 0, 0, 0, 310, 2289, 1, 0, 0, 0, 312, 2296, 1, 0, 0, 0, 314, 2304, 1, 0, 0, 0, 316, 2312, 1, 0, 0, 0, 318, 2316, 1, 0, 0, 0, 320, 2318, 1, 0, 0, 0, 322, 2329, 1, 0, 0, 0, 324, 2333, 1, 0, 0, 0, 326, 2345, 1, 0, 0, 0, 328, 2353, 1, 0, 0, 0, 330, 2357, 1, 0, 0, 0, 332, 2369, 1, 0, 0, 0, 334, 2381, 1, 0, 0, 0, 336, 2386, 1, 0, 0, 0, 338, 2391, 1, 0, 0, 0, 340, 2393, 1, 0, 0, 0, 342, 2397, 1, 0, 0, 0, 344, 2401, 1, 0, 0, 0, 346, 2408, 1, 0, 0, 0, 348, 2410, 1, 0, 0, 0, 350, 2423, 1, 0, 0, 0, 352, 2462, 1, 0, 0, 0, 354, 2464, 1, 0, 0, 0, 356, 2469, 1, 0, 0, 0, 358, 2474, 1, 0, 0, 0, 360, 2481, 1, 0, 0, 0, 362, 2486, 1, 0, 0, 0, 364, 2491, 1, 0, 0, 0, 366, 2497, 1, 0, 0, 0, 368, 2499, 1, 0, 0, 0, 370, 2508, 1, 0, 0, 0, 372, 2520, 1, 0, 0, 0, 374, 2600, 1, 0, 0, 0, 376, 2606, 1, 0, 0, 0, 378, 2632, 1, 0, 0, 0, 380, 2634, 1, 0, 0, 0, 382, 2656, 1, 0, 0, 0, 384, 2661, 1, 0, 0, 0, 386, 2665, 1, 0, 0, 0, 388, 2697, 1, 0, 0, 0, 390, 2699, 1, 0, 0, 0, 392, 2710, 1, 0, 0, 0, 394, 2716, 1, 0, 0, 0, 396, 2718, 1, 0, 0, 0, 398, 2750, 1, 0, 0, 0, 400, 2757, 1, 0, 0, 0, 402, 2763, 1, 0, 0, 0, 404, 2769, 1, 0, 0, 0, 406, 2784, 1, 0, 0, 0, 408, 2794, 1, 0, 0, 0, 410, 2802, 1, 0, 0, 0, 412, 2805, 1, 0, 0, 0, 414, 2808, 1, 0, 0, 0, 416, 2811, 1, 0, 0, 0, 418, 2933, 1, 0, 0, 0, 420, 3067, 1, 0, 0, 0, 422, 3095, 1, 0, 0, 0, 424, 3112, 1, 0, 0, 0, 426, 3129, 1, 0, 0, 0, 428, 3131, 1, 0, 0, 0, 430, 3134, 1, 0, 0, 0, 432, 3160, 1, 0, 0, 0, 434, 3165, 1, 0, 0, 0, 436, 3192, 1, 0, 0, 0, 438, 3203, 1, 0, 0, 0, 440, 3340, 1, 0, 0, 0, 442, 3342, 1, 0, 0, 0, 444, 3365, 1, 0, 0, 0, 446, 3377, 1, 0, 0, 0, 448, 3382, 1, 0, 0, 0, 450, 3390, 1, 0, 0, 0, 452, 3398, 1, 0, 0, 0, 454, 3410, 1, 0, 0, 0, 456, 3444, 1, 0, 0, 0, 458, 3446, 1, 0, 0, 0, 460, 3471, 1, 0, 0, 0, 462, 3480, 1, 0, 0, 0, 464, 3510, 1, 0, 0, 0, 466, 3569, 1, 0, 0, 0, 468, 3571, 1, 0, 0, 0, 470, 3600, 1, 0, 0, 0, 472, 3602, 1, 0, 0, 0, 474, 3618, 1, 0, 0, 0, 476, 3630, 1, 0, 0, 0, 478, 3632, 1, 0, 0, 0, 480, 3636, 1, 0, 0, 0, 482, 3646, 1, 0, 0, 0, 484, 3656, 1, 0, 0, 0, 486, 3661, 1, 0, 0, 0, 488, 3668, 1, 0, 0, 0, 490, 3672, 1, 0, 0, 0, 492, 3691, 1, 0, 0, 0, 494, 3696, 1, 0, 0, 0, 496, 3698, 1, 0, 0, 0, 498, 3702, 1, 0, 0, 0, 500, 3728, 1, 0, 0, 0, 502, 3733, 1, 0, 0, 0, 504, 3754, 1, 0, 0, 0, 506, 3759, 1, 0, 0, 0, 508, 3790, 1, 0, 0, 0, 510, 3792, 1, 0, 0, 0, 512, 3816, 1, 0, 0, 0, 514, 3849, 1, 0, 0, 0, 516, 3851, 1, 0, 0, 0, 518, 3853, 1, 0, 0, 0, 520, 3855, 1, 0, 0, 0, 522, 3880, 1, 0, 0, 0, 524, 3882, 1, 0, 0, 0, 526, 3890, 1, 0, 0, 0, 528, 3916, 1, 0, 0, 0, 530, 3918, 1, 0, 0, 0, 532, 3938, 1, 0, 0, 0, 534, 3940, 1, 0, 0, 0, 536, 3951, 1, 0, 0, 0, 538, 3964, 1, 0, 0, 0, 540, 3999, 1, 0, 0, 0, 542, 4001, 1, 0, 0, 0, 544, 4006, 1, 0, 0, 0, 546, 4011, 1, 0, 0, 0, 548, 4013, 1, 0, 0, 0, 550, 4035, 1, 0, 0, 0, 552, 4037, 1, 0, 0, 0, 554, 4041, 1, 0, 0, 0, 556, 4050, 1, 0, 0, 0, 558, 4060, 1, 0, 0, 0, 560, 4064, 1, 0, 0, 0, 562, 4068, 1, 0, 0, 0, 564, 4072, 1, 0, 0, 0, 566, 4148, 1, 0, 0, 0, 568, 4150, 1, 0, 0, 0, 570, 4153, 1, 0, 0, 0, 572, 4157, 1, 0, 0, 0, 574, 4162, 1, 0, 0, 0, 576, 4164, 1, 0, 0, 0, 578, 4175, 1, 0, 0, 0, 580, 4192, 1, 0, 0, 0, 582, 4208, 1, 0, 0, 0, 584, 4217, 1, 0, 0, 0, 586, 4232, 1, 0, 0, 0, 588, 4262, 1, 0, 0, 0, 590, 4264, 1, 0, 0, 0, 592, 4281, 1, 0, 0, 0, 594, 4297, 1, 0, 0, 0, 596, 4299, 1, 0, 0, 0, 598, 4318, 1, 0, 0, 0, 600, 4323, 1, 0, 0, 0, 602, 4338, 1, 0, 0, 0, 604, 4346, 1, 0, 0, 0, 606, 4354, 1, 0, 0, 0, 608, 4362, 1, 0, 0, 0, 610, 4370, 1, 0, 0, 0, 612, 4378, 1, 0, 0, 0, 614, 4386, 1, 0, 0, 0, 616, 4388, 1, 0, 0, 0, 618, 4398, 1, 0, 0, 0, 620, 4406, 1, 0, 0, 0, 622, 4422, 1, 0, 0, 0, 624, 4426, 1, 0, 0, 0, 626, 4431, 1, 0, 0, 0, 628, 4433, 1, 0, 0, 0, 630, 4444, 1, 0, 0, 0, 632, 4446, 1, 0, 0, 0, 634, 4464, 1, 0, 0, 0, 636, 4469, 1, 0, 0, 0, 638, 4477, 1, 0, 0, 0, 640, 4485, 1, 0, 0, 0, 642, 4489, 1, 0, 0, 0, 644, 4501, 1, 0, 0, 0, 646, 4506, 1, 0, 0, 0, 648, 4517, 1, 0, 0, 0, 650, 4524, 1, 0, 0, 0, 652, 4526, 1, 0, 0, 0, 654, 4530, 1, 0, 0, 0, 656, 4532, 1, 0, 0, 0, 658, 4537, 1, 0, 0, 0, 660, 4539, 1, 0, 0, 0, 662, 4541, 1, 0, 0, 0, 664, 4594, 1, 0, 0, 0, 666, 4761, 1, 0, 0, 0, 668, 4763, 1, 0, 0, 0, 670, 4772, 1, 0, 0, 0, 672, 4774, 1, 0, 0, 0, 674, 4785, 1, 0, 0, 0, 676, 4787, 1, 0, 0, 0, 678, 4792, 1, 0, 0, 0, 680, 4794, 1, 0, 0, 0, 682, 4796, 1, 0, 0, 0, 684, 4798, 1, 0, 0, 0, 686, 4800, 1, 0, 0, 0, 688, 4802, 1, 0, 0, 0, 690, 4804, 1, 0, 0, 0, 692, 4806, 1, 0, 0, 0, 694, 4808, 1, 0, 0, 0, 696, 4810, 1, 0, 0, 0, 698, 4812, 1, 0, 0, 0, 700, 4814, 1, 0, 0, 0, 702, 4839, 1, 0, 0, 0, 704, 4841, 1, 0, 0, 0, 706, 4849, 1, 0, 0, 0, 708, 4863, 1, 0, 0, 0, 710, 4865, 1, 0, 0, 0, 712, 714, 3, 2, 1, 0, 713, 712, 1, 0, 0, 0, 714, 717, 1, 0, 0, 0, 715, 713, 1, 0, 0, 0, 715, 716, 1, 0, 0, 0, 716, 718, 1, 0, 0, 0, 717, 715, 1, 0, 0, 0, 718, 719, 5, 0, 0, 1, 719, 1, 1, 0, 0, 0, 720, 723, 3, 4, 2, 0, 721, 723, 3, 10, 5, 0, 722, 720, 1, 0, 0, 0, 722, 721, 1, 0, 0, 0, 723, 725, 1, 0, 0, 0, 724, 726, 5, 398, 0, 0, 725, 724, 1, 0, 0, 0, 725, 726, 1, 0, 0, 0, 726, 3, 1, 0, 0, 0, 727, 737, 5, 119, 0, 0, 728, 730, 3, 6, 3, 0, 729, 728, 1, 0, 0, 0, 730, 733, 1, 0, 0, 0, 731, 729, 1, 0, 0, 0, 731, 732, 1, 0, 0, 0, 732, 734, 1, 0, 0, 0, 733, 731, 1, 0, 0, 0, 734, 738, 3, 10, 5, 0, 735, 736, 5, 284, 0, 0, 736, 738, 3, 364, 182, 0, 737, 731, 1, 0, 0, 0, 737, 735, 1, 0, 0, 0, 738, 5, 1, 0, 0, 0, 739, 762, 5, 122, 0, 0, 740, 762, 5, 138, 0, 0, 741, 762, 5, 88, 0, 0, 742, 744, 5, 37, 0, 0, 743, 745, 7, 0, 0, 0, 744, 743, 1, 0, 0, 0, 744, 745, 1, 0, 0, 0, 745, 762, 1, 0, 0, 0, 746, 762, 5, 192, 0, 0, 747, 762, 5, 21, 0, 0, 748, 762, 5, 10, 0, 0, 749, 762, 5, 275, 0, 0, 750, 762, 5, 191, 0, 0, 751, 762, 5, 19, 0, 0, 752, 754, 5, 377, 0, 0, 753, 755, 5, 225, 0, 0, 754, 753, 1, 0, 0, 0, 754, 755, 1, 0, 0, 0, 755, 757, 1, 0, 0, 0, 756, 758, 3, 8, 4, 0, 757, 756, 1, 0, 0, 0, 757, 758, 1, 0, 0, 0, 758, 762, 1, 0, 0, 0, 759, 762, 5, 79, 0, 0, 760, 762, 5, 78, 0, 0, 761, 739, 1, 0, 0, 0, 761, 740, 1, 0, 0, 0, 761, 741, 1, 0, 0, 0, 761, 742, 1, 0, 0, 0, 761, 746, 1, 0, 0, 0, 761, 747, 1, 0, 0, 0, 761, 748, 1, 0, 0, 0, 761, 749, 1, 0, 0, 0, 761, 750, 1, 0, 0, 0, 761, 751, 1, 0, 0, 0, 761, 752, 1, 0, 0, 0, 761, 759, 1, 0, 0, 0, 761, 760, 1, 0, 0, 0, 762, 7, 1, 0, 0, 0, 763, 764, 7, 1, 0, 0, 764, 9, 1, 0, 0, 0, 765, 837, 3, 364, 182, 0, 766, 837, 3, 12, 6, 0, 767, 837, 3, 16, 8, 0, 768, 837, 3, 18, 9, 0, 769, 837, 3, 20, 10, 0, 770, 837, 3, 24, 12, 0, 771, 772, 5, 277, 0, 0, 772, 773, 5, 320, 0, 0, 773, 776, 3, 476, 238, 0, 774, 775, 5, 387, 0, 0, 775, 777, 3, 230, 115, 0, 776, 774, 1, 0, 0, 0, 776, 777, 1, 0, 0, 0, 777, 837, 1, 0, 0, 0, 778, 837, 3, 28, 14, 0, 779, 780, 5, 86, 0, 0, 780, 781, 5, 139, 0, 0, 781, 783, 3, 482, 241, 0, 782, 784, 3, 500, 250, 0, 783, 782, 1, 0, 0, 0, 783, 784, 1, 0, 0, 0, 784, 837, 1, 0, 0, 0, 785, 786, 5, 365, 0, 0, 786, 787, 3, 482, 241, 0, 787, 789, 3, 396, 198, 0, 788, 790, 3, 500, 250, 0, 789, 788, 1, 0, 0, 0, 789, 790, 1, 0, 0, 0, 790, 837, 1, 0, 0, 0, 791, 837, 3, 398, 199, 0, 792, 794, 5, 203, 0, 0, 793, 795, 5, 436, 0, 0, 794, 793, 1, 0, 0, 0, 794, 795, 1, 0, 0, 0, 795, 796, 1, 0, 0, 0, 796, 797, 5, 166, 0, 0, 797, 802, 3, 482, 241, 0, 798, 800, 5, 17, 0, 0, 799, 798, 1, 0, 0, 0, 799, 800, 1, 0, 0, 0, 800, 801, 1, 0, 0, 0, 801, 803, 3, 654, 327, 0, 802, 799, 1, 0, 0, 0, 802, 803, 1, 0, 0, 0, 803, 804, 1, 0, 0, 0, 804, 805, 5, 370, 0, 0, 805, 806, 3, 460, 230, 0, 806, 807, 5, 224, 0, 0, 807, 808, 3, 596, 298, 0, 808, 809, 3, 402, 201, 0, 809, 837, 1, 0, 0, 0, 810, 811, 5, 249, 0, 0, 811, 812, 3, 654, 327, 0, 812, 813, 5, 139, 0, 0, 813, 814, 3, 364, 182, 0, 814, 837, 1, 0, 0, 0, 815, 816, 5, 115, 0, 0, 816, 817, 3, 654, 327, 0, 817, 818, 5, 370, 0, 0, 818, 819, 3, 300, 150, 0, 819, 837, 1, 0, 0, 0, 820, 821, 5, 304, 0, 0, 821, 826, 3, 664, 332, 0, 822, 823, 7, 2, 0, 0, 823, 825, 3, 664, 332, 0, 824, 822, 1, 0, 0, 0, 825, 828, 1, 0, 0, 0, 826, 824, 1, 0, 0, 0, 826, 827, 1, 0, 0, 0, 827, 829, 1, 0, 0, 0, 828, 826, 1, 0, 0, 0, 829, 833, 5, 405, 0, 0, 830, 832, 9, 0, 0, 0, 831, 830, 1, 0, 0, 0, 832, 835, 1, 0, 0, 0, 833, 834, 1, 0, 0, 0, 833, 831, 1, 0, 0, 0, 834, 837, 1, 0, 0, 0, 835, 833, 1, 0, 0, 0, 836, 765, 1, 0, 0, 0, 836, 766, 1, 0, 0, 0, 836, 767, 1, 0, 0, 0, 836, 768, 1, 0, 0, 0, 836, 769, 1, 0, 0, 0, 836, 770, 1, 0, 0, 0, 836, 771, 1, 0, 0, 0, 836, 778, 1, 0, 0, 0, 836, 779, 1, 0, 0, 0, 836, 785, 1, 0, 0, 0, 836, 791, 1, 0, 0, 0, 836, 792, 1, 0, 0, 0, 836, 810, 1, 0, 0, 0, 836, 815, 1, 0, 0, 0, 836, 820, 1, 0, 0, 0, 837, 11, 1, 0, 0, 0, 838, 839, 5, 187, 0, 0, 839, 841, 5, 66, 0, 0, 840, 842, 5, 188, 0, 0, 841, 840, 1, 0, 0, 0, 841, 842, 1, 0, 0, 0, 842, 843, 1, 0, 0, 0, 843, 844, 5, 158, 0, 0, 844, 846, 5, 426, 0, 0, 845, 847, 5, 235, 0, 0, 846, 845, 1, 0, 0, 0, 846, 847, 1, 0, 0, 0, 847, 848, 1, 0, 0, 0, 848, 849, 5, 166, 0, 0, 849, 850, 5, 329, 0, 0, 850, 852, 3, 640, 320, 0, 851, 853, 3, 56, 28, 0, 852, 851, 1, 0, 0, 0, 852, 853, 1, 0, 0, 0, 853, 13, 1, 0, 0, 0, 854, 856, 5, 134, 0, 0, 855, 857, 5, 204, 0, 0, 856, 855, 1, 0, 0, 0, 856, 857, 1, 0, 0, 0, 857, 858, 1, 0, 0, 0, 858, 859, 5, 279, 0, 0, 859, 860, 5, 399, 0, 0, 860, 861, 5, 426, 0, 0, 861, 862, 5, 400, 0, 0, 862, 15, 1, 0, 0, 0, 863, 864, 5, 120, 0, 0, 864, 865, 5, 329, 0, 0, 865, 866, 3, 640, 320, 0, 866, 867, 5, 341, 0, 0, 867, 869, 5, 426, 0, 0, 868, 870, 3, 14, 7, 0, 869, 868, 1, 0, 0, 0, 869, 870, 1, 0, 0, 0, 870, 17, 1, 0, 0, 0, 871, 877, 5, 153, 0, 0, 872, 874, 5, 123, 0, 0, 873, 872, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 875, 1, 0, 0, 0, 875, 876, 5, 329, 0, 0, 876, 878, 3, 640, 320, 0, 877, 873, 1, 0, 0, 0, 877, 878, 1, 0, 0, 0, 878, 879, 1, 0, 0, 0, 879, 880, 5, 139, 0, 0, 880, 882, 5, 426, 0, 0, 881, 883, 3, 428, 214, 0, 882, 881, 1, 0, 0, 0, 882, 883, 1, 0, 0, 0, 883, 19, 1, 0, 0, 0, 884, 885, 5, 277, 0, 0, 885, 886, 5, 103, 0, 0, 886, 889, 3, 22, 11, 0, 887, 888, 5, 278, 0, 0, 888, 890, 3, 22, 11, 0, 889, 887, 1, 0, 0, 0, 889, 890, 1, 0, 0, 0, 890, 893, 1, 0, 0, 0, 891, 892, 5, 387, 0, 0, 892, 894, 3, 230, 115, 0, 893, 891, 1, 0, 0, 0, 893, 894, 1, 0, 0, 0, 894, 21, 1, 0, 0, 0, 895, 898, 3, 476, 238, 0, 896, 897, 5, 395, 0, 0, 897, 899, 3, 26, 13, 0, 898, 896, 1, 0, 0, 0, 898, 899, 1, 0, 0, 0, 899, 23, 1, 0, 0, 0, 900, 901, 5, 277, 0, 0, 901, 902, 5, 187, 0, 0, 902, 905, 3, 22, 11, 0, 903, 904, 5, 166, 0, 0, 904, 906, 3, 476, 238, 0, 905, 903, 1, 0, 0, 0, 905, 906, 1, 0, 0, 0, 906, 909, 1, 0, 0, 0, 907, 908, 5, 387, 0, 0, 908, 910, 3, 230, 115, 0, 909, 907, 1, 0, 0, 0, 909, 910, 1, 0, 0, 0, 910, 25, 1, 0, 0, 0, 911, 914, 5, 426, 0, 0, 912, 913, 5, 395, 0, 0, 913, 915, 5, 426, 0, 0, 914, 912, 1, 0, 0, 0, 914, 915, 1, 0, 0, 0, 915, 27, 1, 0, 0, 0, 916, 975, 3, 42, 21, 0, 917, 975, 3, 46, 23, 0, 918, 975, 3, 48, 24, 0, 919, 975, 3, 440, 220, 0, 920, 975, 3, 54, 27, 0, 921, 975, 3, 52, 26, 0, 922, 975, 3, 416, 208, 0, 923, 975, 3, 64, 32, 0, 924, 975, 3, 72, 36, 0, 925, 975, 3, 138, 69, 0, 926, 975, 3, 160, 80, 0, 927, 975, 3, 176, 88, 0, 928, 975, 3, 180, 90, 0, 929, 975, 3, 184, 92, 0, 930, 975, 3, 182, 91, 0, 931, 975, 3, 174, 87, 0, 932, 975, 3, 178, 89, 0, 933, 975, 3, 146, 73, 0, 934, 975, 3, 152, 76, 0, 935, 975, 3, 148, 74, 0, 936, 975, 3, 150, 75, 0, 937, 975, 3, 154, 77, 0, 938, 975, 3, 156, 78, 0, 939, 975, 3, 158, 79, 0, 940, 975, 3, 66, 33, 0, 941, 975, 3, 76, 38, 0, 942, 975, 3, 82, 41, 0, 943, 975, 3, 78, 39, 0, 944, 975, 3, 84, 42, 0, 945, 975, 3, 86, 43, 0, 946, 975, 3, 88, 44, 0, 947, 975, 3, 90, 45, 0, 948, 975, 3, 92, 46, 0, 949, 975, 3, 106, 53, 0, 950, 975, 3, 98, 49, 0, 951, 975, 3, 108, 54, 0, 952, 975, 3, 100, 50, 0, 953, 975, 3, 94, 47, 0, 954, 975, 3, 96, 48, 0, 955, 975, 3, 104, 52, 0, 956, 975, 3, 102, 51, 0, 957, 958, 5, 1, 0, 0, 958, 960, 7, 3, 0, 0, 959, 961, 5, 431, 0, 0, 960, 959, 1, 0, 0, 0, 961, 962, 1, 0, 0, 0, 962, 960, 1, 0, 0, 0, 962, 963, 1, 0, 0, 0, 963, 975, 1, 0, 0, 0, 964, 965, 5, 176, 0, 0, 965, 967, 5, 258, 0, 0, 966, 968, 5, 426, 0, 0, 967, 966, 1, 0, 0, 0, 968, 969, 1, 0, 0, 0, 969, 967, 1, 0, 0, 0, 969, 970, 1, 0, 0, 0, 970, 975, 1, 0, 0, 0, 971, 975, 3, 666, 333, 0, 972, 975, 3, 442, 221, 0, 973, 975, 3, 444, 222, 0, 974, 916, 1, 0, 0, 0, 974, 917, 1, 0, 0, 0, 974, 918, 1, 0, 0, 0, 974, 919, 1, 0, 0, 0, 974, 920, 1, 0, 0, 0, 974, 921, 1, 0, 0, 0, 974, 922, 1, 0, 0, 0, 974, 923, 1, 0, 0, 0, 974, 924, 1, 0, 0, 0, 974, 925, 1, 0, 0, 0, 974, 926, 1, 0, 0, 0, 974, 927, 1, 0, 0, 0, 974, 928, 1, 0, 0, 0, 974, 929, 1, 0, 0, 0, 974, 930, 1, 0, 0, 0, 974, 931, 1, 0, 0, 0, 974, 932, 1, 0, 0, 0, 974, 933, 1, 0, 0, 0, 974, 934, 1, 0, 0, 0, 974, 935, 1, 0, 0, 0, 974, 936, 1, 0, 0, 0, 974, 937, 1, 0, 0, 0, 974, 938, 1, 0, 0, 0, 974, 939, 1, 0, 0, 0, 974, 940, 1, 0, 0, 0, 974, 941, 1, 0, 0, 0, 974, 942, 1, 0, 0, 0, 974, 943, 1, 0, 0, 0, 974, 944, 1, 0, 0, 0, 974, 945, 1, 0, 0, 0, 974, 946, 1, 0, 0, 0, 974, 947, 1, 0, 0, 0, 974, 948, 1, 0, 0, 0, 974, 949, 1, 0, 0, 0, 974, 950, 1, 0, 0, 0, 974, 951, 1, 0, 0, 0, 974, 952, 1, 0, 0, 0, 974, 953, 1, 0, 0, 0, 974, 954, 1, 0, 0, 0, 974, 955, 1, 0, 0, 0, 974, 956, 1, 0, 0, 0, 974, 957, 1, 0, 0, 0, 974, 964, 1, 0, 0, 0, 974, 971, 1, 0, 0, 0, 974, 972, 1, 0, 0, 0, 974, 973, 1, 0, 0, 0, 975, 29, 1, 0, 0, 0, 976, 977, 5, 151, 0, 0, 977, 978, 5, 117, 0, 0, 978, 31, 1, 0, 0, 0, 979, 980, 5, 151, 0, 0, 980, 981, 5, 216, 0, 0, 981, 982, 5, 117, 0, 0, 982, 33, 1, 0, 0, 0, 983, 984, 7, 4, 0, 0, 984, 35, 1, 0, 0, 0, 985, 986, 3, 678, 339, 0, 986, 987, 5, 284, 0, 0, 987, 37, 1, 0, 0, 0, 988, 989, 3, 680, 340, 0, 989, 990, 5, 284, 0, 0, 990, 39, 1, 0, 0, 0, 991, 992, 5, 321, 0, 0, 992, 993, 5, 17, 0, 0, 993, 994, 5, 92, 0, 0, 994, 41, 1, 0, 0, 0, 995, 997, 5, 58, 0, 0, 996, 998, 5, 273, 0, 0, 997, 996, 1, 0, 0, 0, 997, 998, 1, 0, 0, 0, 998, 999, 1, 0, 0, 0, 999, 1001, 3, 70, 35, 0, 1000, 1002, 3, 32, 16, 0, 1001, 1000, 1, 0, 0, 0, 1001, 1002, 1, 0, 0, 0, 1002, 1003, 1, 0, 0, 0, 1003, 1005, 3, 478, 239, 0, 1004, 1006, 3, 50, 25, 0, 1005, 1004, 1, 0, 0, 0, 1005, 1006, 1, 0, 0, 0, 1006, 1008, 1, 0, 0, 0, 1007, 1009, 3, 428, 214, 0, 1008, 1007, 1, 0, 0, 0, 1008, 1009, 1, 0, 0, 0, 1009, 1012, 1, 0, 0, 0, 1010, 1011, 5, 196, 0, 0, 1011, 1013, 5, 426, 0, 0, 1012, 1010, 1, 0, 0, 0, 1012, 1013, 1, 0, 0, 0, 1013, 1017, 1, 0, 0, 0, 1014, 1015, 5, 387, 0, 0, 1015, 1016, 5, 76, 0, 0, 1016, 1018, 3, 230, 115, 0, 1017, 1014, 1, 0, 0, 0, 1017, 1018, 1, 0, 0, 0, 1018, 1036, 1, 0, 0, 0, 1019, 1020, 5, 58, 0, 0, 1020, 1021, 5, 273, 0, 0, 1021, 1023, 3, 70, 35, 0, 1022, 1024, 3, 32, 16, 0, 1023, 1022, 1, 0, 0, 0, 1023, 1024, 1, 0, 0, 0, 1024, 1025, 1, 0, 0, 0, 1025, 1027, 3, 478, 239, 0, 1026, 1028, 3, 50, 25, 0, 1027, 1026, 1, 0, 0, 0, 1027, 1028, 1, 0, 0, 0, 1028, 1029, 1, 0, 0, 0, 1029, 1033, 3, 44, 22, 0, 1030, 1031, 5, 387, 0, 0, 1031, 1032, 5, 76, 0, 0, 1032, 1034, 3, 230, 115, 0, 1033, 1030, 1, 0, 0, 0, 1033, 1034, 1, 0, 0, 0, 1034, 1036, 1, 0, 0, 0, 1035, 995, 1, 0, 0, 0, 1035, 1019, 1, 0, 0, 0, 1036, 43, 1, 0, 0, 0, 1037, 1038, 5, 370, 0, 0, 1038, 1039, 3, 476, 238, 0, 1039, 45, 1, 0, 0, 0, 1040, 1041, 5, 368, 0, 0, 1041, 1042, 3, 476, 238, 0, 1042, 47, 1, 0, 0, 0, 1043, 1044, 5, 101, 0, 0, 1044, 1046, 3, 70, 35, 0, 1045, 1047, 3, 30, 15, 0, 1046, 1045, 1, 0, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, 1048, 1, 0, 0, 0, 1048, 1050, 3, 476, 238, 0, 1049, 1051, 3, 34, 17, 0, 1050, 1049, 1, 0, 0, 0, 1050, 1051, 1, 0, 0, 0, 1051, 49, 1, 0, 0, 0, 1052, 1053, 5, 47, 0, 0, 1053, 1054, 5, 426, 0, 0, 1054, 51, 1, 0, 0, 0, 1055, 1057, 5, 351, 0, 0, 1056, 1058, 5, 329, 0, 0, 1057, 1056, 1, 0, 0, 0, 1057, 1058, 1, 0, 0, 0, 1058, 1059, 1, 0, 0, 0, 1059, 1065, 3, 640, 320, 0, 1060, 1061, 5, 46, 0, 0, 1061, 1062, 5, 399, 0, 0, 1062, 1063, 3, 254, 127, 0, 1063, 1064, 5, 400, 0, 0, 1064, 1066, 1, 0, 0, 0, 1065, 1060, 1, 0, 0, 0, 1065, 1066, 1, 0, 0, 0, 1066, 1068, 1, 0, 0, 0, 1067, 1069, 5, 135, 0, 0, 1068, 1067, 1, 0, 0, 0, 1068, 1069, 1, 0, 0, 0, 1069, 53, 1, 0, 0, 0, 1070, 1071, 5, 101, 0, 0, 1071, 1073, 5, 329, 0, 0, 1072, 1074, 3, 30, 15, 0, 1073, 1072, 1, 0, 0, 0, 1073, 1074, 1, 0, 0, 0, 1074, 1075, 1, 0, 0, 0, 1075, 1077, 3, 482, 241, 0, 1076, 1078, 5, 255, 0, 0, 1077, 1076, 1, 0, 0, 0, 1077, 1078, 1, 0, 0, 0, 1078, 1080, 1, 0, 0, 0, 1079, 1081, 3, 14, 7, 0, 1080, 1079, 1, 0, 0, 0, 1080, 1081, 1, 0, 0, 0, 1081, 55, 1, 0, 0, 0, 1082, 1083, 5, 160, 0, 0, 1083, 1084, 5, 426, 0, 0, 1084, 1085, 5, 301, 0, 0, 1085, 1086, 5, 426, 0, 0, 1086, 57, 1, 0, 0, 0, 1087, 1090, 3, 654, 327, 0, 1088, 1089, 5, 395, 0, 0, 1089, 1091, 3, 654, 327, 0, 1090, 1088, 1, 0, 0, 0, 1090, 1091, 1, 0, 0, 0, 1091, 1105, 1, 0, 0, 0, 1092, 1102, 3, 654, 327, 0, 1093, 1098, 5, 395, 0, 0, 1094, 1099, 5, 104, 0, 0, 1095, 1099, 5, 175, 0, 0, 1096, 1099, 5, 375, 0, 0, 1097, 1099, 3, 654, 327, 0, 1098, 1094, 1, 0, 0, 0, 1098, 1095, 1, 0, 0, 0, 1098, 1096, 1, 0, 0, 0, 1098, 1097, 1, 0, 0, 0, 1099, 1101, 1, 0, 0, 0, 1100, 1093, 1, 0, 0, 0, 1101, 1104, 1, 0, 0, 0, 1102, 1100, 1, 0, 0, 0, 1102, 1103, 1, 0, 0, 0, 1103, 1106, 1, 0, 0, 0, 1104, 1102, 1, 0, 0, 0, 1105, 1092, 1, 0, 0, 0, 1105, 1106, 1, 0, 0, 0, 1106, 59, 1, 0, 0, 0, 1107, 1109, 3, 58, 29, 0, 1108, 1110, 3, 642, 321, 0, 1109, 1108, 1, 0, 0, 0, 1109, 1110, 1, 0, 0, 0, 1110, 61, 1, 0, 0, 0, 1111, 1113, 3, 480, 240, 0, 1112, 1114, 3, 642, 321, 0, 1113, 1112, 1, 0, 0, 0, 1113, 1114, 1, 0, 0, 0, 1114, 1116, 1, 0, 0, 0, 1115, 1117, 3, 264, 132, 0, 1116, 1115, 1, 0, 0, 0, 1116, 1117, 1, 0, 0, 0, 1117, 63, 1, 0, 0, 0, 1118, 1141, 7, 5, 0, 0, 1119, 1121, 3, 70, 35, 0, 1120, 1122, 5, 122, 0, 0, 1121, 1120, 1, 0, 0, 0, 1121, 1122, 1, 0, 0, 0, 1122, 1123, 1, 0, 0, 0, 1123, 1124, 3, 476, 238, 0, 1124, 1142, 1, 0, 0, 0, 1125, 1127, 5, 69, 0, 0, 1126, 1128, 5, 122, 0, 0, 1127, 1126, 1, 0, 0, 0, 1127, 1128, 1, 0, 0, 0, 1128, 1129, 1, 0, 0, 0, 1129, 1142, 3, 476, 238, 0, 1130, 1132, 5, 141, 0, 0, 1131, 1133, 5, 122, 0, 0, 1132, 1131, 1, 0, 0, 0, 1132, 1133, 1, 0, 0, 0, 1133, 1134, 1, 0, 0, 0, 1134, 1142, 3, 572, 286, 0, 1135, 1138, 5, 138, 0, 0, 1136, 1138, 5, 122, 0, 0, 1137, 1135, 1, 0, 0, 0, 1137, 1136, 1, 0, 0, 0, 1138, 1139, 1, 0, 0, 0, 1139, 1142, 3, 62, 31, 0, 1140, 1142, 3, 62, 31, 0, 1141, 1119, 1, 0, 0, 0, 1141, 1125, 1, 0, 0, 0, 1141, 1130, 1, 0, 0, 0, 1141, 1137, 1, 0, 0, 0, 1141, 1140, 1, 0, 0, 0, 1142, 65, 1, 0, 0, 0, 1143, 1144, 5, 10, 0, 0, 1144, 1145, 5, 329, 0, 0, 1145, 1158, 3, 640, 320, 0, 1146, 1147, 5, 52, 0, 0, 1147, 1154, 5, 319, 0, 0, 1148, 1155, 5, 215, 0, 0, 1149, 1150, 5, 134, 0, 0, 1150, 1152, 5, 46, 0, 0, 1151, 1153, 3, 254, 127, 0, 1152, 1151, 1, 0, 0, 0, 1152, 1153, 1, 0, 0, 0, 1153, 1155, 1, 0, 0, 0, 1154, 1148, 1, 0, 0, 0, 1154, 1149, 1, 0, 0, 0, 1154, 1155, 1, 0, 0, 0, 1155, 1159, 1, 0, 0, 0, 1156, 1157, 5, 33, 0, 0, 1157, 1159, 5, 204, 0, 0, 1158, 1146, 1, 0, 0, 0, 1158, 1156, 1, 0, 0, 0, 1159, 67, 1, 0, 0, 0, 1160, 1161, 7, 6, 0, 0, 1161, 69, 1, 0, 0, 0, 1162, 1163, 7, 7, 0, 0, 1163, 71, 1, 0, 0, 0, 1164, 1165, 5, 308, 0, 0, 1165, 1168, 7, 8, 0, 0, 1166, 1167, 5, 184, 0, 0, 1167, 1169, 3, 194, 97, 0, 1168, 1166, 1, 0, 0, 0, 1168, 1169, 1, 0, 0, 0, 1169, 1348, 1, 0, 0, 0, 1170, 1172, 5, 308, 0, 0, 1171, 1173, 5, 122, 0, 0, 1172, 1171, 1, 0, 0, 0, 1172, 1173, 1, 0, 0, 0, 1173, 1174, 1, 0, 0, 0, 1174, 1178, 5, 330, 0, 0, 1175, 1176, 3, 68, 34, 0, 1176, 1177, 3, 476, 238, 0, 1177, 1179, 1, 0, 0, 0, 1178, 1175, 1, 0, 0, 0, 1178, 1179, 1, 0, 0, 0, 1179, 1181, 1, 0, 0, 0, 1180, 1182, 3, 74, 37, 0, 1181, 1180, 1, 0, 0, 0, 1181, 1182, 1, 0, 0, 0, 1182, 1348, 1, 0, 0, 0, 1183, 1184, 5, 308, 0, 0, 1184, 1188, 5, 379, 0, 0, 1185, 1186, 3, 68, 34, 0, 1186, 1187, 3, 476, 238, 0, 1187, 1189, 1, 0, 0, 0, 1188, 1185, 1, 0, 0, 0, 1188, 1189, 1, 0, 0, 0, 1189, 1193, 1, 0, 0, 0, 1190, 1191, 5, 184, 0, 0, 1191, 1194, 3, 194, 97, 0, 1192, 1194, 3, 194, 97, 0, 1193, 1190, 1, 0, 0, 0, 1193, 1192, 1, 0, 0, 0, 1193, 1194, 1, 0, 0, 0, 1194, 1348, 1, 0, 0, 0, 1195, 1196, 5, 308, 0, 0, 1196, 1197, 5, 202, 0, 0, 1197, 1201, 5, 379, 0, 0, 1198, 1199, 3, 68, 34, 0, 1199, 1200, 3, 476, 238, 0, 1200, 1202, 1, 0, 0, 0, 1201, 1198, 1, 0, 0, 0, 1201, 1202, 1, 0, 0, 0, 1202, 1206, 1, 0, 0, 0, 1203, 1204, 5, 184, 0, 0, 1204, 1207, 3, 194, 97, 0, 1205, 1207, 3, 194, 97, 0, 1206, 1203, 1, 0, 0, 0, 1206, 1205, 1, 0, 0, 0, 1206, 1207, 1, 0, 0, 0, 1207, 1348, 1, 0, 0, 0, 1208, 1210, 5, 308, 0, 0, 1209, 1211, 5, 315, 0, 0, 1210, 1209, 1, 0, 0, 0, 1210, 1211, 1, 0, 0, 0, 1211, 1212, 1, 0, 0, 0, 1212, 1213, 5, 46, 0, 0, 1213, 1214, 3, 68, 34, 0, 1214, 1218, 3, 480, 240, 0, 1215, 1216, 3, 68, 34, 0, 1216, 1217, 3, 476, 238, 0, 1217, 1219, 1, 0, 0, 0, 1218, 1215, 1, 0, 0, 0, 1218, 1219, 1, 0, 0, 0, 1219, 1223, 1, 0, 0, 0, 1220, 1221, 5, 184, 0, 0, 1221, 1224, 3, 194, 97, 0, 1222, 1224, 3, 194, 97, 0, 1223, 1220, 1, 0, 0, 0, 1223, 1222, 1, 0, 0, 0, 1223, 1224, 1, 0, 0, 0, 1224, 1348, 1, 0, 0, 0, 1225, 1226, 5, 308, 0, 0, 1226, 1229, 5, 142, 0, 0, 1227, 1228, 5, 184, 0, 0, 1228, 1230, 3, 572, 286, 0, 1229, 1227, 1, 0, 0, 0, 1229, 1230, 1, 0, 0, 0, 1230, 1348, 1, 0, 0, 0, 1231, 1232, 5, 308, 0, 0, 1232, 1233, 5, 239, 0, 0, 1233, 1235, 3, 480, 240, 0, 1234, 1236, 3, 642, 321, 0, 1235, 1234, 1, 0, 0, 0, 1235, 1236, 1, 0, 0, 0, 1236, 1238, 1, 0, 0, 0, 1237, 1239, 3, 500, 250, 0, 1238, 1237, 1, 0, 0, 0, 1238, 1239, 1, 0, 0, 0, 1239, 1241, 1, 0, 0, 0, 1240, 1242, 3, 556, 278, 0, 1241, 1240, 1, 0, 0, 0, 1241, 1242, 1, 0, 0, 0, 1242, 1244, 1, 0, 0, 0, 1243, 1245, 3, 390, 195, 0, 1244, 1243, 1, 0, 0, 0, 1244, 1245, 1, 0, 0, 0, 1245, 1348, 1, 0, 0, 0, 1246, 1247, 5, 308, 0, 0, 1247, 1253, 5, 58, 0, 0, 1248, 1249, 3, 70, 35, 0, 1249, 1250, 3, 476, 238, 0, 1250, 1254, 1, 0, 0, 0, 1251, 1252, 5, 329, 0, 0, 1252, 1254, 3, 482, 241, 0, 1253, 1248, 1, 0, 0, 0, 1253, 1251, 1, 0, 0, 0, 1254, 1348, 1, 0, 0, 0, 1255, 1256, 5, 308, 0, 0, 1256, 1257, 5, 329, 0, 0, 1257, 1261, 5, 122, 0, 0, 1258, 1259, 3, 68, 34, 0, 1259, 1260, 3, 476, 238, 0, 1260, 1262, 1, 0, 0, 0, 1261, 1258, 1, 0, 0, 0, 1261, 1262, 1, 0, 0, 0, 1262, 1263, 1, 0, 0, 0, 1263, 1264, 5, 184, 0, 0, 1264, 1266, 3, 194, 97, 0, 1265, 1267, 3, 642, 321, 0, 1266, 1265, 1, 0, 0, 0, 1266, 1267, 1, 0, 0, 0, 1267, 1348, 1, 0, 0, 0, 1268, 1269, 5, 308, 0, 0, 1269, 1270, 5, 332, 0, 0, 1270, 1274, 3, 482, 241, 0, 1271, 1272, 5, 399, 0, 0, 1272, 1273, 5, 426, 0, 0, 1273, 1275, 5, 400, 0, 0, 1274, 1271, 1, 0, 0, 0, 1274, 1275, 1, 0, 0, 0, 1275, 1348, 1, 0, 0, 0, 1276, 1277, 5, 308, 0, 0, 1277, 1289, 5, 191, 0, 0, 1278, 1279, 3, 70, 35, 0, 1279, 1281, 3, 476, 238, 0, 1280, 1282, 5, 122, 0, 0, 1281, 1280, 1, 0, 0, 0, 1281, 1282, 1, 0, 0, 0, 1282, 1290, 1, 0, 0, 0, 1283, 1285, 3, 60, 30, 0, 1284, 1283, 1, 0, 0, 0, 1284, 1285, 1, 0, 0, 0, 1285, 1287, 1, 0, 0, 0, 1286, 1288, 5, 122, 0, 0, 1287, 1286, 1, 0, 0, 0, 1287, 1288, 1, 0, 0, 0, 1288, 1290, 1, 0, 0, 0, 1289, 1278, 1, 0, 0, 0, 1289, 1284, 1, 0, 0, 0, 1290, 1348, 1, 0, 0, 0, 1291, 1292, 5, 308, 0, 0, 1292, 1319, 5, 50, 0, 0, 1293, 1294, 5, 51, 0, 0, 1294, 1295, 5, 405, 0, 0, 1295, 1320, 5, 431, 0, 0, 1296, 1297, 3, 70, 35, 0, 1297, 1298, 3, 476, 238, 0, 1298, 1303, 1, 0, 0, 0, 1299, 1301, 3, 60, 30, 0, 1300, 1299, 1, 0, 0, 0, 1300, 1301, 1, 0, 0, 0, 1301, 1303, 1, 0, 0, 0, 1302, 1296, 1, 0, 0, 0, 1302, 1300, 1, 0, 0, 0, 1303, 1305, 1, 0, 0, 0, 1304, 1306, 3, 410, 205, 0, 1305, 1304, 1, 0, 0, 0, 1305, 1306, 1, 0, 0, 0, 1306, 1308, 1, 0, 0, 0, 1307, 1309, 3, 412, 206, 0, 1308, 1307, 1, 0, 0, 0, 1308, 1309, 1, 0, 0, 0, 1309, 1311, 1, 0, 0, 0, 1310, 1312, 3, 414, 207, 0, 1311, 1310, 1, 0, 0, 0, 1311, 1312, 1, 0, 0, 0, 1312, 1314, 1, 0, 0, 0, 1313, 1315, 3, 556, 278, 0, 1314, 1313, 1, 0, 0, 0, 1314, 1315, 1, 0, 0, 0, 1315, 1317, 1, 0, 0, 0, 1316, 1318, 3, 390, 195, 0, 1317, 1316, 1, 0, 0, 0, 1317, 1318, 1, 0, 0, 0, 1318, 1320, 1, 0, 0, 0, 1319, 1293, 1, 0, 0, 0, 1319, 1302, 1, 0, 0, 0, 1320, 1348, 1, 0, 0, 0, 1321, 1322, 5, 308, 0, 0, 1322, 1348, 5, 346, 0, 0, 1323, 1324, 5, 308, 0, 0, 1324, 1325, 5, 54, 0, 0, 1325, 1348, 5, 426, 0, 0, 1326, 1327, 5, 308, 0, 0, 1327, 1331, 5, 280, 0, 0, 1328, 1329, 5, 243, 0, 0, 1329, 1332, 3, 654, 327, 0, 1330, 1332, 5, 244, 0, 0, 1331, 1328, 1, 0, 0, 0, 1331, 1330, 1, 0, 0, 0, 1332, 1348, 1, 0, 0, 0, 1333, 1334, 5, 308, 0, 0, 1334, 1348, 5, 70, 0, 0, 1335, 1337, 5, 308, 0, 0, 1336, 1338, 5, 138, 0, 0, 1337, 1336, 1, 0, 0, 0, 1337, 1338, 1, 0, 0, 0, 1338, 1339, 1, 0, 0, 0, 1339, 1340, 7, 9, 0, 0, 1340, 1341, 5, 224, 0, 0, 1341, 1345, 3, 482, 241, 0, 1342, 1343, 3, 68, 34, 0, 1343, 1344, 3, 476, 238, 0, 1344, 1346, 1, 0, 0, 0, 1345, 1342, 1, 0, 0, 0, 1345, 1346, 1, 0, 0, 0, 1346, 1348, 1, 0, 0, 0, 1347, 1164, 1, 0, 0, 0, 1347, 1170, 1, 0, 0, 0, 1347, 1183, 1, 0, 0, 0, 1347, 1195, 1, 0, 0, 0, 1347, 1208, 1, 0, 0, 0, 1347, 1225, 1, 0, 0, 0, 1347, 1231, 1, 0, 0, 0, 1347, 1246, 1, 0, 0, 0, 1347, 1255, 1, 0, 0, 0, 1347, 1268, 1, 0, 0, 0, 1347, 1276, 1, 0, 0, 0, 1347, 1291, 1, 0, 0, 0, 1347, 1321, 1, 0, 0, 0, 1347, 1323, 1, 0, 0, 0, 1347, 1326, 1, 0, 0, 0, 1347, 1333, 1, 0, 0, 0, 1347, 1335, 1, 0, 0, 0, 1348, 73, 1, 0, 0, 0, 1349, 1350, 5, 384, 0, 0, 1350, 1351, 3, 654, 327, 0, 1351, 1352, 5, 405, 0, 0, 1352, 1353, 5, 426, 0, 0, 1353, 1358, 1, 0, 0, 0, 1354, 1355, 5, 184, 0, 0, 1355, 1358, 3, 194, 97, 0, 1356, 1358, 3, 194, 97, 0, 1357, 1349, 1, 0, 0, 0, 1357, 1354, 1, 0, 0, 0, 1357, 1356, 1, 0, 0, 0, 1358, 75, 1, 0, 0, 0, 1359, 1360, 5, 190, 0, 0, 1360, 1361, 5, 329, 0, 0, 1361, 1362, 3, 640, 320, 0, 1362, 1363, 3, 80, 40, 0, 1363, 77, 1, 0, 0, 0, 1364, 1365, 5, 190, 0, 0, 1365, 1366, 3, 70, 35, 0, 1366, 1367, 3, 476, 238, 0, 1367, 1368, 3, 80, 40, 0, 1368, 79, 1, 0, 0, 0, 1369, 1370, 7, 10, 0, 0, 1370, 81, 1, 0, 0, 0, 1371, 1372, 5, 361, 0, 0, 1372, 1373, 5, 329, 0, 0, 1373, 1374, 3, 640, 320, 0, 1374, 83, 1, 0, 0, 0, 1375, 1376, 5, 361, 0, 0, 1376, 1377, 3, 70, 35, 0, 1377, 1378, 3, 476, 238, 0, 1378, 85, 1, 0, 0, 0, 1379, 1380, 5, 58, 0, 0, 1380, 1381, 5, 287, 0, 0, 1381, 1382, 3, 654, 327, 0, 1382, 87, 1, 0, 0, 0, 1383, 1384, 5, 101, 0, 0, 1384, 1385, 5, 287, 0, 0, 1385, 1386, 3, 654, 327, 0, 1386, 89, 1, 0, 0, 0, 1387, 1388, 5, 143, 0, 0, 1388, 1390, 3, 118, 59, 0, 1389, 1391, 3, 112, 56, 0, 1390, 1389, 1, 0, 0, 0, 1390, 1391, 1, 0, 0, 0, 1391, 1392, 1, 0, 0, 0, 1392, 1393, 5, 341, 0, 0, 1393, 1395, 3, 124, 62, 0, 1394, 1396, 3, 130, 65, 0, 1395, 1394, 1, 0, 0, 0, 1395, 1396, 1, 0, 0, 0, 1396, 91, 1, 0, 0, 0, 1397, 1399, 5, 283, 0, 0, 1398, 1400, 3, 132, 66, 0, 1399, 1398, 1, 0, 0, 0, 1399, 1400, 1, 0, 0, 0, 1400, 1401, 1, 0, 0, 0, 1401, 1403, 3, 118, 59, 0, 1402, 1404, 3, 112, 56, 0, 1403, 1402, 1, 0, 0, 0, 1403, 1404, 1, 0, 0, 0, 1404, 1405, 1, 0, 0, 0, 1405, 1406, 5, 139, 0, 0, 1406, 1407, 3, 124, 62, 0, 1407, 93, 1, 0, 0, 0, 1408, 1410, 5, 143, 0, 0, 1409, 1411, 5, 287, 0, 0, 1410, 1409, 1, 0, 0, 0, 1410, 1411, 1, 0, 0, 0, 1411, 1412, 1, 0, 0, 0, 1412, 1417, 3, 654, 327, 0, 1413, 1414, 5, 397, 0, 0, 1414, 1416, 3, 654, 327, 0, 1415, 1413, 1, 0, 0, 0, 1416, 1419, 1, 0, 0, 0, 1417, 1415, 1, 0, 0, 0, 1417, 1418, 1, 0, 0, 0, 1418, 1420, 1, 0, 0, 0, 1419, 1417, 1, 0, 0, 0, 1420, 1421, 5, 341, 0, 0, 1421, 1423, 3, 124, 62, 0, 1422, 1424, 3, 136, 68, 0, 1423, 1422, 1, 0, 0, 0, 1423, 1424, 1, 0, 0, 0, 1424, 95, 1, 0, 0, 0, 1425, 1427, 5, 283, 0, 0, 1426, 1428, 3, 134, 67, 0, 1427, 1426, 1, 0, 0, 0, 1427, 1428, 1, 0, 0, 0, 1428, 1430, 1, 0, 0, 0, 1429, 1431, 5, 287, 0, 0, 1430, 1429, 1, 0, 0, 0, 1430, 1431, 1, 0, 0, 0, 1431, 1432, 1, 0, 0, 0, 1432, 1437, 3, 654, 327, 0, 1433, 1434, 5, 397, 0, 0, 1434, 1436, 3, 654, 327, 0, 1435, 1433, 1, 0, 0, 0, 1436, 1439, 1, 0, 0, 0, 1437, 1435, 1, 0, 0, 0, 1437, 1438, 1, 0, 0, 0, 1438, 1440, 1, 0, 0, 0, 1439, 1437, 1, 0, 0, 0, 1440, 1441, 5, 139, 0, 0, 1441, 1442, 3, 124, 62, 0, 1442, 97, 1, 0, 0, 0, 1443, 1444, 5, 308, 0, 0, 1444, 1445, 5, 287, 0, 0, 1445, 1446, 5, 143, 0, 0, 1446, 1447, 3, 126, 63, 0, 1447, 99, 1, 0, 0, 0, 1448, 1449, 5, 308, 0, 0, 1449, 1450, 5, 288, 0, 0, 1450, 101, 1, 0, 0, 0, 1451, 1452, 5, 308, 0, 0, 1452, 1453, 5, 62, 0, 0, 1453, 1454, 5, 288, 0, 0, 1454, 103, 1, 0, 0, 0, 1455, 1456, 5, 304, 0, 0, 1456, 1460, 5, 287, 0, 0, 1457, 1461, 5, 7, 0, 0, 1458, 1461, 5, 213, 0, 0, 1459, 1461, 3, 654, 327, 0, 1460, 1457, 1, 0, 0, 0, 1460, 1458, 1, 0, 0, 0, 1460, 1459, 1, 0, 0, 0, 1461, 105, 1, 0, 0, 0, 1462, 1463, 5, 308, 0, 0, 1463, 1465, 5, 143, 0, 0, 1464, 1466, 3, 126, 63, 0, 1465, 1464, 1, 0, 0, 0, 1465, 1466, 1, 0, 0, 0, 1466, 1469, 1, 0, 0, 0, 1467, 1468, 5, 224, 0, 0, 1468, 1470, 3, 110, 55, 0, 1469, 1467, 1, 0, 0, 0, 1469, 1470, 1, 0, 0, 0, 1470, 107, 1, 0, 0, 0, 1471, 1472, 5, 308, 0, 0, 1472, 1473, 5, 252, 0, 0, 1473, 1474, 3, 654, 327, 0, 1474, 109, 1, 0, 0, 0, 1475, 1478, 5, 7, 0, 0, 1476, 1478, 3, 116, 58, 0, 1477, 1475, 1, 0, 0, 0, 1477, 1476, 1, 0, 0, 0, 1478, 111, 1, 0, 0, 0, 1479, 1480, 5, 224, 0, 0, 1480, 1481, 3, 114, 57, 0, 1481, 113, 1, 0, 0, 0, 1482, 1483, 3, 70, 35, 0, 1483, 1484, 3, 476, 238, 0, 1484, 1494, 1, 0, 0, 0, 1485, 1487, 5, 329, 0, 0, 1486, 1485, 1, 0, 0, 0, 1486, 1487, 1, 0, 0, 0, 1487, 1488, 1, 0, 0, 0, 1488, 1494, 3, 640, 320, 0, 1489, 1490, 5, 366, 0, 0, 1490, 1494, 5, 426, 0, 0, 1491, 1492, 5, 303, 0, 0, 1492, 1494, 3, 654, 327, 0, 1493, 1482, 1, 0, 0, 0, 1493, 1486, 1, 0, 0, 0, 1493, 1489, 1, 0, 0, 0, 1493, 1491, 1, 0, 0, 0, 1494, 115, 1, 0, 0, 0, 1495, 1496, 3, 70, 35, 0, 1496, 1497, 3, 476, 238, 0, 1497, 1516, 1, 0, 0, 0, 1498, 1500, 5, 329, 0, 0, 1499, 1498, 1, 0, 0, 0, 1499, 1500, 1, 0, 0, 0, 1500, 1501, 1, 0, 0, 0, 1501, 1506, 3, 482, 241, 0, 1502, 1503, 5, 399, 0, 0, 1503, 1504, 3, 254, 127, 0, 1504, 1505, 5, 400, 0, 0, 1505, 1507, 1, 0, 0, 0, 1506, 1502, 1, 0, 0, 0, 1506, 1507, 1, 0, 0, 0, 1507, 1509, 1, 0, 0, 0, 1508, 1510, 3, 642, 321, 0, 1509, 1508, 1, 0, 0, 0, 1509, 1510, 1, 0, 0, 0, 1510, 1516, 1, 0, 0, 0, 1511, 1512, 5, 366, 0, 0, 1512, 1516, 5, 426, 0, 0, 1513, 1514, 5, 303, 0, 0, 1514, 1516, 3, 654, 327, 0, 1515, 1495, 1, 0, 0, 0, 1515, 1499, 1, 0, 0, 0, 1515, 1511, 1, 0, 0, 0, 1515, 1513, 1, 0, 0, 0, 1516, 117, 1, 0, 0, 0, 1517, 1522, 3, 120, 60, 0, 1518, 1519, 5, 397, 0, 0, 1519, 1521, 3, 120, 60, 0, 1520, 1518, 1, 0, 0, 0, 1521, 1524, 1, 0, 0, 0, 1522, 1520, 1, 0, 0, 0, 1522, 1523, 1, 0, 0, 0, 1523, 119, 1, 0, 0, 0, 1524, 1522, 1, 0, 0, 0, 1525, 1530, 3, 122, 61, 0, 1526, 1527, 5, 399, 0, 0, 1527, 1528, 3, 254, 127, 0, 1528, 1529, 5, 400, 0, 0, 1529, 1531, 1, 0, 0, 0, 1530, 1526, 1, 0, 0, 0, 1530, 1531, 1, 0, 0, 0, 1531, 121, 1, 0, 0, 0, 1532, 1533, 7, 11, 0, 0, 1533, 123, 1, 0, 0, 0, 1534, 1539, 3, 126, 63, 0, 1535, 1536, 5, 397, 0, 0, 1536, 1538, 3, 126, 63, 0, 1537, 1535, 1, 0, 0, 0, 1538, 1541, 1, 0, 0, 0, 1539, 1537, 1, 0, 0, 0, 1539, 1540, 1, 0, 0, 0, 1540, 125, 1, 0, 0, 0, 1541, 1539, 1, 0, 0, 0, 1542, 1543, 5, 369, 0, 0, 1543, 1549, 3, 658, 329, 0, 1544, 1545, 5, 144, 0, 0, 1545, 1549, 3, 658, 329, 0, 1546, 1547, 5, 287, 0, 0, 1547, 1549, 3, 654, 327, 0, 1548, 1542, 1, 0, 0, 0, 1548, 1544, 1, 0, 0, 0, 1548, 1546, 1, 0, 0, 0, 1549, 127, 1, 0, 0, 0, 1550, 1551, 5, 369, 0, 0, 1551, 1556, 3, 658, 329, 0, 1552, 1553, 5, 287, 0, 0, 1553, 1556, 3, 654, 327, 0, 1554, 1556, 3, 654, 327, 0, 1555, 1550, 1, 0, 0, 0, 1555, 1552, 1, 0, 0, 0, 1555, 1554, 1, 0, 0, 0, 1556, 129, 1, 0, 0, 0, 1557, 1558, 5, 387, 0, 0, 1558, 1559, 5, 143, 0, 0, 1559, 1560, 5, 227, 0, 0, 1560, 131, 1, 0, 0, 0, 1561, 1562, 5, 143, 0, 0, 1562, 1563, 5, 227, 0, 0, 1563, 1564, 5, 134, 0, 0, 1564, 133, 1, 0, 0, 0, 1565, 1566, 5, 5, 0, 0, 1566, 1567, 5, 227, 0, 0, 1567, 1568, 5, 134, 0, 0, 1568, 135, 1, 0, 0, 0, 1569, 1570, 5, 387, 0, 0, 1570, 1571, 5, 5, 0, 0, 1571, 1572, 5, 227, 0, 0, 1572, 137, 1, 0, 0, 0, 1573, 1575, 5, 212, 0, 0, 1574, 1576, 5, 276, 0, 0, 1575, 1574, 1, 0, 0, 0, 1575, 1576, 1, 0, 0, 0, 1576, 1577, 1, 0, 0, 0, 1577, 1578, 5, 329, 0, 0, 1578, 1584, 3, 482, 241, 0, 1579, 1580, 7, 12, 0, 0, 1580, 1582, 5, 239, 0, 0, 1581, 1583, 3, 646, 323, 0, 1582, 1581, 1, 0, 0, 0, 1582, 1583, 1, 0, 0, 0, 1583, 1585, 1, 0, 0, 0, 1584, 1579, 1, 0, 0, 0, 1584, 1585, 1, 0, 0, 0, 1585, 139, 1, 0, 0, 0, 1586, 1591, 3, 142, 71, 0, 1587, 1588, 5, 397, 0, 0, 1588, 1590, 3, 142, 71, 0, 1589, 1587, 1, 0, 0, 0, 1590, 1593, 1, 0, 0, 0, 1591, 1589, 1, 0, 0, 0, 1591, 1592, 1, 0, 0, 0, 1592, 141, 1, 0, 0, 0, 1593, 1591, 1, 0, 0, 0, 1594, 1595, 3, 144, 72, 0, 1595, 1596, 5, 426, 0, 0, 1596, 143, 1, 0, 0, 0, 1597, 1598, 7, 13, 0, 0, 1598, 145, 1, 0, 0, 0, 1599, 1601, 5, 58, 0, 0, 1600, 1602, 5, 333, 0, 0, 1601, 1600, 1, 0, 0, 0, 1601, 1602, 1, 0, 0, 0, 1602, 1603, 1, 0, 0, 0, 1603, 1604, 5, 141, 0, 0, 1604, 1605, 3, 570, 285, 0, 1605, 1606, 5, 17, 0, 0, 1606, 1609, 5, 426, 0, 0, 1607, 1608, 5, 370, 0, 0, 1608, 1610, 3, 140, 70, 0, 1609, 1607, 1, 0, 0, 0, 1609, 1610, 1, 0, 0, 0, 1610, 147, 1, 0, 0, 0, 1611, 1613, 5, 101, 0, 0, 1612, 1614, 5, 333, 0, 0, 1613, 1612, 1, 0, 0, 0, 1613, 1614, 1, 0, 0, 0, 1614, 1615, 1, 0, 0, 0, 1615, 1617, 5, 141, 0, 0, 1616, 1618, 3, 30, 15, 0, 1617, 1616, 1, 0, 0, 0, 1617, 1618, 1, 0, 0, 0, 1618, 1619, 1, 0, 0, 0, 1619, 1620, 3, 572, 286, 0, 1620, 149, 1, 0, 0, 0, 1621, 1622, 5, 271, 0, 0, 1622, 1623, 7, 14, 0, 0, 1623, 151, 1, 0, 0, 0, 1624, 1625, 5, 58, 0, 0, 1625, 1626, 5, 333, 0, 0, 1626, 1627, 5, 194, 0, 0, 1627, 1628, 5, 432, 0, 0, 1628, 1630, 5, 399, 0, 0, 1629, 1631, 3, 248, 124, 0, 1630, 1629, 1, 0, 0, 0, 1630, 1631, 1, 0, 0, 0, 1631, 1632, 1, 0, 0, 0, 1632, 1633, 5, 400, 0, 0, 1633, 1634, 3, 596, 298, 0, 1634, 153, 1, 0, 0, 0, 1635, 1636, 5, 101, 0, 0, 1636, 1637, 5, 333, 0, 0, 1637, 1639, 5, 194, 0, 0, 1638, 1640, 3, 30, 15, 0, 1639, 1638, 1, 0, 0, 0, 1639, 1640, 1, 0, 0, 0, 1640, 1641, 1, 0, 0, 0, 1641, 1642, 5, 432, 0, 0, 1642, 155, 1, 0, 0, 0, 1643, 1644, 5, 58, 0, 0, 1644, 1645, 5, 155, 0, 0, 1645, 1646, 3, 654, 327, 0, 1646, 1647, 5, 224, 0, 0, 1647, 1648, 5, 329, 0, 0, 1648, 1649, 3, 482, 241, 0, 1649, 1650, 3, 268, 134, 0, 1650, 1651, 5, 17, 0, 0, 1651, 1655, 5, 426, 0, 0, 1652, 1653, 5, 387, 0, 0, 1653, 1654, 5, 84, 0, 0, 1654, 1656, 5, 265, 0, 0, 1655, 1652, 1, 0, 0, 0, 1655, 1656, 1, 0, 0, 0, 1656, 1659, 1, 0, 0, 0, 1657, 1658, 5, 150, 0, 0, 1658, 1660, 3, 226, 113, 0, 1659, 1657, 1, 0, 0, 0, 1659, 1660, 1, 0, 0, 0, 1660, 1664, 1, 0, 0, 0, 1661, 1662, 5, 154, 0, 0, 1662, 1663, 5, 329, 0, 0, 1663, 1665, 3, 482, 241, 0, 1664, 1661, 1, 0, 0, 0, 1664, 1665, 1, 0, 0, 0, 1665, 1669, 1, 0, 0, 0, 1666, 1667, 5, 238, 0, 0, 1667, 1668, 5, 32, 0, 0, 1668, 1670, 3, 268, 134, 0, 1669, 1666, 1, 0, 0, 0, 1669, 1670, 1, 0, 0, 0, 1670, 1675, 1, 0, 0, 0, 1671, 1673, 3, 222, 111, 0, 1672, 1671, 1, 0, 0, 0, 1672, 1673, 1, 0, 0, 0, 1673, 1674, 1, 0, 0, 0, 1674, 1676, 3, 246, 123, 0, 1675, 1672, 1, 0, 0, 0, 1675, 1676, 1, 0, 0, 0, 1676, 1678, 1, 0, 0, 0, 1677, 1679, 3, 428, 214, 0, 1678, 1677, 1, 0, 0, 0, 1678, 1679, 1, 0, 0, 0, 1679, 1681, 1, 0, 0, 0, 1680, 1682, 3, 224, 112, 0, 1681, 1680, 1, 0, 0, 0, 1681, 1682, 1, 0, 0, 0, 1682, 1684, 1, 0, 0, 0, 1683, 1685, 3, 196, 98, 0, 1684, 1683, 1, 0, 0, 0, 1684, 1685, 1, 0, 0, 0, 1685, 157, 1, 0, 0, 0, 1686, 1687, 5, 101, 0, 0, 1687, 1689, 5, 155, 0, 0, 1688, 1690, 3, 30, 15, 0, 1689, 1688, 1, 0, 0, 0, 1689, 1690, 1, 0, 0, 0, 1690, 1691, 1, 0, 0, 0, 1691, 1692, 3, 654, 327, 0, 1692, 1693, 5, 224, 0, 0, 1693, 1694, 3, 482, 241, 0, 1694, 159, 1, 0, 0, 0, 1695, 1698, 5, 58, 0, 0, 1696, 1697, 5, 228, 0, 0, 1697, 1699, 5, 278, 0, 0, 1698, 1696, 1, 0, 0, 0, 1698, 1699, 1, 0, 0, 0, 1699, 1700, 1, 0, 0, 0, 1700, 1702, 5, 378, 0, 0, 1701, 1703, 3, 32, 16, 0, 1702, 1701, 1, 0, 0, 0, 1702, 1703, 1, 0, 0, 0, 1703, 1704, 1, 0, 0, 0, 1704, 1709, 3, 488, 244, 0, 1705, 1706, 5, 399, 0, 0, 1706, 1707, 3, 308, 154, 0, 1707, 1708, 5, 400, 0, 0, 1708, 1710, 1, 0, 0, 0, 1709, 1705, 1, 0, 0, 0, 1709, 1710, 1, 0, 0, 0, 1710, 1712, 1, 0, 0, 0, 1711, 1713, 3, 196, 98, 0, 1712, 1711, 1, 0, 0, 0, 1712, 1713, 1, 0, 0, 0, 1713, 1715, 1, 0, 0, 0, 1714, 1716, 3, 162, 81, 0, 1715, 1714, 1, 0, 0, 0, 1715, 1716, 1, 0, 0, 0, 1716, 1718, 1, 0, 0, 0, 1717, 1719, 3, 224, 112, 0, 1718, 1717, 1, 0, 0, 0, 1718, 1719, 1, 0, 0, 0, 1719, 1720, 1, 0, 0, 0, 1720, 1721, 5, 17, 0, 0, 1721, 1722, 3, 384, 192, 0, 1722, 161, 1, 0, 0, 0, 1723, 1724, 5, 238, 0, 0, 1724, 1730, 5, 224, 0, 0, 1725, 1726, 5, 399, 0, 0, 1726, 1731, 3, 254, 127, 0, 1727, 1728, 5, 316, 0, 0, 1728, 1729, 5, 399, 0, 0, 1729, 1731, 3, 204, 102, 0, 1730, 1725, 1, 0, 0, 0, 1730, 1727, 1, 0, 0, 0, 1731, 1732, 1, 0, 0, 0, 1732, 1733, 5, 400, 0, 0, 1733, 163, 1, 0, 0, 0, 1734, 1737, 3, 166, 83, 0, 1735, 1737, 3, 168, 84, 0, 1736, 1734, 1, 0, 0, 0, 1736, 1735, 1, 0, 0, 0, 1737, 165, 1, 0, 0, 0, 1738, 1739, 5, 42, 0, 0, 1739, 1740, 5, 224, 0, 0, 1740, 1741, 5, 399, 0, 0, 1741, 1742, 3, 254, 127, 0, 1742, 1743, 5, 400, 0, 0, 1743, 167, 1, 0, 0, 0, 1744, 1745, 3, 170, 85, 0, 1745, 1746, 3, 172, 86, 0, 1746, 169, 1, 0, 0, 0, 1747, 1748, 5, 98, 0, 0, 1748, 1749, 5, 224, 0, 0, 1749, 1750, 5, 399, 0, 0, 1750, 1751, 3, 254, 127, 0, 1751, 1752, 5, 400, 0, 0, 1752, 171, 1, 0, 0, 0, 1753, 1754, 5, 315, 0, 0, 1754, 1755, 5, 224, 0, 0, 1755, 1756, 5, 399, 0, 0, 1756, 1757, 3, 254, 127, 0, 1757, 1758, 5, 400, 0, 0, 1758, 173, 1, 0, 0, 0, 1759, 1760, 5, 101, 0, 0, 1760, 1762, 5, 378, 0, 0, 1761, 1763, 3, 30, 15, 0, 1762, 1761, 1, 0, 0, 0, 1762, 1763, 1, 0, 0, 0, 1763, 1764, 1, 0, 0, 0, 1764, 1765, 3, 486, 243, 0, 1765, 175, 1, 0, 0, 0, 1766, 1767, 5, 58, 0, 0, 1767, 1768, 5, 202, 0, 0, 1768, 1770, 5, 378, 0, 0, 1769, 1771, 3, 32, 16, 0, 1770, 1769, 1, 0, 0, 0, 1770, 1771, 1, 0, 0, 0, 1771, 1772, 1, 0, 0, 0, 1772, 1774, 3, 488, 244, 0, 1773, 1775, 3, 38, 19, 0, 1774, 1773, 1, 0, 0, 0, 1774, 1775, 1, 0, 0, 0, 1775, 1777, 1, 0, 0, 0, 1776, 1778, 3, 196, 98, 0, 1777, 1776, 1, 0, 0, 0, 1777, 1778, 1, 0, 0, 0, 1778, 1780, 1, 0, 0, 0, 1779, 1781, 3, 162, 81, 0, 1780, 1779, 1, 0, 0, 0, 1780, 1781, 1, 0, 0, 0, 1781, 1783, 1, 0, 0, 0, 1782, 1784, 3, 164, 82, 0, 1783, 1782, 1, 0, 0, 0, 1783, 1784, 1, 0, 0, 0, 1784, 1786, 1, 0, 0, 0, 1785, 1787, 3, 222, 111, 0, 1786, 1785, 1, 0, 0, 0, 1786, 1787, 1, 0, 0, 0, 1787, 1789, 1, 0, 0, 0, 1788, 1790, 3, 246, 123, 0, 1789, 1788, 1, 0, 0, 0, 1789, 1790, 1, 0, 0, 0, 1790, 1792, 1, 0, 0, 0, 1791, 1793, 3, 428, 214, 0, 1792, 1791, 1, 0, 0, 0, 1792, 1793, 1, 0, 0, 0, 1793, 1795, 1, 0, 0, 0, 1794, 1796, 3, 224, 112, 0, 1795, 1794, 1, 0, 0, 0, 1795, 1796, 1, 0, 0, 0, 1796, 1797, 1, 0, 0, 0, 1797, 1798, 5, 17, 0, 0, 1798, 1799, 3, 384, 192, 0, 1799, 177, 1, 0, 0, 0, 1800, 1801, 5, 101, 0, 0, 1801, 1802, 5, 202, 0, 0, 1802, 1804, 5, 378, 0, 0, 1803, 1805, 3, 30, 15, 0, 1804, 1803, 1, 0, 0, 0, 1804, 1805, 1, 0, 0, 0, 1805, 1806, 1, 0, 0, 0, 1806, 1807, 3, 486, 243, 0, 1807, 179, 1, 0, 0, 0, 1808, 1809, 5, 58, 0, 0, 1809, 1810, 5, 293, 0, 0, 1810, 1811, 5, 258, 0, 0, 1811, 1812, 3, 654, 327, 0, 1812, 1814, 3, 188, 94, 0, 1813, 1815, 3, 190, 95, 0, 1814, 1813, 1, 0, 0, 0, 1814, 1815, 1, 0, 0, 0, 1815, 1817, 1, 0, 0, 0, 1816, 1818, 3, 272, 136, 0, 1817, 1816, 1, 0, 0, 0, 1817, 1818, 1, 0, 0, 0, 1818, 1819, 1, 0, 0, 0, 1819, 1820, 3, 192, 96, 0, 1820, 181, 1, 0, 0, 0, 1821, 1822, 5, 101, 0, 0, 1822, 1823, 5, 293, 0, 0, 1823, 1824, 5, 258, 0, 0, 1824, 1825, 3, 654, 327, 0, 1825, 183, 1, 0, 0, 0, 1826, 1827, 5, 9, 0, 0, 1827, 1828, 5, 293, 0, 0, 1828, 1829, 5, 258, 0, 0, 1829, 1830, 3, 654, 327, 0, 1830, 1831, 3, 186, 93, 0, 1831, 185, 1, 0, 0, 0, 1832, 1838, 3, 188, 94, 0, 1833, 1838, 3, 190, 95, 0, 1834, 1838, 3, 272, 136, 0, 1835, 1838, 3, 192, 96, 0, 1836, 1838, 5, 115, 0, 0, 1837, 1832, 1, 0, 0, 0, 1837, 1833, 1, 0, 0, 0, 1837, 1834, 1, 0, 0, 0, 1837, 1835, 1, 0, 0, 0, 1837, 1836, 1, 0, 0, 0, 1838, 187, 1, 0, 0, 0, 1839, 1840, 5, 59, 0, 0, 1840, 1855, 5, 426, 0, 0, 1841, 1843, 5, 111, 0, 0, 1842, 1844, 5, 431, 0, 0, 1843, 1842, 1, 0, 0, 0, 1843, 1844, 1, 0, 0, 0, 1844, 1845, 1, 0, 0, 0, 1845, 1852, 3, 594, 297, 0, 1846, 1850, 5, 20, 0, 0, 1847, 1848, 5, 223, 0, 0, 1848, 1850, 5, 32, 0, 0, 1849, 1846, 1, 0, 0, 0, 1849, 1847, 1, 0, 0, 0, 1850, 1851, 1, 0, 0, 0, 1851, 1853, 5, 426, 0, 0, 1852, 1849, 1, 0, 0, 0, 1852, 1853, 1, 0, 0, 0, 1853, 1855, 1, 0, 0, 0, 1854, 1839, 1, 0, 0, 0, 1854, 1841, 1, 0, 0, 0, 1855, 189, 1, 0, 0, 0, 1856, 1857, 5, 116, 0, 0, 1857, 1858, 5, 17, 0, 0, 1858, 1859, 5, 426, 0, 0, 1859, 191, 1, 0, 0, 0, 1860, 1862, 5, 85, 0, 0, 1861, 1860, 1, 0, 0, 0, 1861, 1862, 1, 0, 0, 0, 1862, 1863, 1, 0, 0, 0, 1863, 1864, 5, 17, 0, 0, 1864, 1865, 3, 2, 1, 0, 1865, 193, 1, 0, 0, 0, 1866, 1869, 3, 654, 327, 0, 1867, 1869, 5, 426, 0, 0, 1868, 1866, 1, 0, 0, 0, 1868, 1867, 1, 0, 0, 0, 1869, 195, 1, 0, 0, 0, 1870, 1871, 5, 47, 0, 0, 1871, 1872, 5, 426, 0, 0, 1872, 197, 1, 0, 0, 0, 1873, 1874, 5, 183, 0, 0, 1874, 1875, 5, 431, 0, 0, 1875, 199, 1, 0, 0, 0, 1876, 1877, 5, 238, 0, 0, 1877, 1886, 5, 32, 0, 0, 1878, 1881, 5, 399, 0, 0, 1879, 1882, 3, 202, 101, 0, 1880, 1882, 3, 254, 127, 0, 1881, 1879, 1, 0, 0, 0, 1881, 1880, 1, 0, 0, 0, 1882, 1887, 1, 0, 0, 0, 1883, 1884, 5, 316, 0, 0, 1884, 1885, 5, 399, 0, 0, 1885, 1887, 3, 204, 102, 0, 1886, 1878, 1, 0, 0, 0, 1886, 1883, 1, 0, 0, 0, 1887, 1888, 1, 0, 0, 0, 1888, 1889, 5, 400, 0, 0, 1889, 201, 1, 0, 0, 0, 1890, 1895, 3, 320, 160, 0, 1891, 1892, 5, 397, 0, 0, 1892, 1894, 3, 320, 160, 0, 1893, 1891, 1, 0, 0, 0, 1894, 1897, 1, 0, 0, 0, 1895, 1893, 1, 0, 0, 0, 1895, 1896, 1, 0, 0, 0, 1896, 203, 1, 0, 0, 0, 1897, 1895, 1, 0, 0, 0, 1898, 1903, 3, 206, 103, 0, 1899, 1900, 5, 397, 0, 0, 1900, 1902, 3, 206, 103, 0, 1901, 1899, 1, 0, 0, 0, 1902, 1905, 1, 0, 0, 0, 1903, 1901, 1, 0, 0, 0, 1903, 1904, 1, 0, 0, 0, 1904, 205, 1, 0, 0, 0, 1905, 1903, 1, 0, 0, 0, 1906, 1925, 3, 256, 128, 0, 1907, 1912, 3, 682, 341, 0, 1908, 1912, 3, 684, 342, 0, 1909, 1912, 3, 688, 344, 0, 1910, 1912, 3, 690, 345, 0, 1911, 1907, 1, 0, 0, 0, 1911, 1908, 1, 0, 0, 0, 1911, 1909, 1, 0, 0, 0, 1911, 1910, 1, 0, 0, 0, 1912, 1913, 1, 0, 0, 0, 1913, 1914, 5, 399, 0, 0, 1914, 1915, 3, 256, 128, 0, 1915, 1916, 5, 400, 0, 0, 1916, 1925, 1, 0, 0, 0, 1917, 1918, 7, 15, 0, 0, 1918, 1919, 5, 399, 0, 0, 1919, 1920, 5, 431, 0, 0, 1920, 1921, 5, 397, 0, 0, 1921, 1922, 3, 256, 128, 0, 1922, 1923, 5, 400, 0, 0, 1923, 1925, 1, 0, 0, 0, 1924, 1906, 1, 0, 0, 0, 1924, 1911, 1, 0, 0, 0, 1924, 1917, 1, 0, 0, 0, 1925, 207, 1, 0, 0, 0, 1926, 1927, 5, 42, 0, 0, 1927, 1928, 5, 32, 0, 0, 1928, 1929, 5, 399, 0, 0, 1929, 1930, 3, 254, 127, 0, 1930, 1937, 5, 400, 0, 0, 1931, 1932, 5, 315, 0, 0, 1932, 1933, 5, 32, 0, 0, 1933, 1934, 5, 399, 0, 0, 1934, 1935, 3, 266, 133, 0, 1935, 1936, 5, 400, 0, 0, 1936, 1938, 1, 0, 0, 0, 1937, 1931, 1, 0, 0, 0, 1937, 1938, 1, 0, 0, 0, 1938, 1939, 1, 0, 0, 0, 1939, 1940, 5, 166, 0, 0, 1940, 1941, 5, 431, 0, 0, 1941, 1942, 5, 31, 0, 0, 1942, 209, 1, 0, 0, 0, 1943, 1944, 5, 310, 0, 0, 1944, 1945, 5, 32, 0, 0, 1945, 1946, 5, 399, 0, 0, 1946, 1947, 3, 254, 127, 0, 1947, 1948, 5, 400, 0, 0, 1948, 1949, 5, 224, 0, 0, 1949, 1950, 5, 399, 0, 0, 1950, 1951, 3, 294, 147, 0, 1951, 1953, 5, 400, 0, 0, 1952, 1954, 3, 40, 20, 0, 1953, 1952, 1, 0, 0, 0, 1953, 1954, 1, 0, 0, 0, 1954, 211, 1, 0, 0, 0, 1955, 1958, 3, 218, 109, 0, 1956, 1958, 3, 220, 110, 0, 1957, 1955, 1, 0, 0, 0, 1957, 1956, 1, 0, 0, 0, 1958, 213, 1, 0, 0, 0, 1959, 1960, 5, 266, 0, 0, 1960, 1961, 5, 426, 0, 0, 1961, 215, 1, 0, 0, 0, 1962, 1963, 5, 267, 0, 0, 1963, 1964, 5, 426, 0, 0, 1964, 217, 1, 0, 0, 0, 1965, 1966, 5, 291, 0, 0, 1966, 1967, 5, 137, 0, 0, 1967, 1968, 5, 301, 0, 0, 1968, 1972, 5, 426, 0, 0, 1969, 1970, 5, 387, 0, 0, 1970, 1971, 5, 302, 0, 0, 1971, 1973, 3, 226, 113, 0, 1972, 1969, 1, 0, 0, 0, 1972, 1973, 1, 0, 0, 0, 1973, 219, 1, 0, 0, 0, 1974, 1975, 5, 291, 0, 0, 1975, 1976, 5, 137, 0, 0, 1976, 1978, 5, 87, 0, 0, 1977, 1979, 3, 236, 118, 0, 1978, 1977, 1, 0, 0, 0, 1978, 1979, 1, 0, 0, 0, 1979, 1981, 1, 0, 0, 0, 1980, 1982, 3, 238, 119, 0, 1981, 1980, 1, 0, 0, 0, 1981, 1982, 1, 0, 0, 0, 1982, 1984, 1, 0, 0, 0, 1983, 1985, 3, 240, 120, 0, 1984, 1983, 1, 0, 0, 0, 1984, 1985, 1, 0, 0, 0, 1985, 1987, 1, 0, 0, 0, 1986, 1988, 3, 242, 121, 0, 1987, 1986, 1, 0, 0, 0, 1987, 1988, 1, 0, 0, 0, 1988, 1990, 1, 0, 0, 0, 1989, 1991, 3, 244, 122, 0, 1990, 1989, 1, 0, 0, 0, 1990, 1991, 1, 0, 0, 0, 1991, 221, 1, 0, 0, 0, 1992, 1995, 3, 220, 110, 0, 1993, 1995, 3, 218, 109, 0, 1994, 1992, 1, 0, 0, 0, 1994, 1993, 1, 0, 0, 0, 1995, 223, 1, 0, 0, 0, 1996, 1997, 5, 332, 0, 0, 1997, 1998, 3, 226, 113, 0, 1998, 225, 1, 0, 0, 0, 1999, 2000, 5, 399, 0, 0, 2000, 2001, 3, 228, 114, 0, 2001, 2002, 5, 400, 0, 0, 2002, 227, 1, 0, 0, 0, 2003, 2013, 3, 232, 116, 0, 2004, 2009, 5, 426, 0, 0, 2005, 2006, 5, 397, 0, 0, 2006, 2008, 5, 426, 0, 0, 2007, 2005, 1, 0, 0, 0, 2008, 2011, 1, 0, 0, 0, 2009, 2007, 1, 0, 0, 0, 2009, 2010, 1, 0, 0, 0, 2010, 2013, 1, 0, 0, 0, 2011, 2009, 1, 0, 0, 0, 2012, 2003, 1, 0, 0, 0, 2012, 2004, 1, 0, 0, 0, 2013, 229, 1, 0, 0, 0, 2014, 2015, 5, 399, 0, 0, 2015, 2016, 3, 232, 116, 0, 2016, 2017, 5, 400, 0, 0, 2017, 231, 1, 0, 0, 0, 2018, 2023, 3, 234, 117, 0, 2019, 2020, 5, 397, 0, 0, 2020, 2022, 3, 234, 117, 0, 2021, 2019, 1, 0, 0, 0, 2022, 2025, 1, 0, 0, 0, 2023, 2021, 1, 0, 0, 0, 2023, 2024, 1, 0, 0, 0, 2024, 233, 1, 0, 0, 0, 2025, 2023, 1, 0, 0, 0, 2026, 2027, 5, 426, 0, 0, 2027, 2028, 5, 405, 0, 0, 2028, 2029, 5, 426, 0, 0, 2029, 235, 1, 0, 0, 0, 2030, 2031, 5, 127, 0, 0, 2031, 2032, 5, 334, 0, 0, 2032, 2033, 5, 32, 0, 0, 2033, 2037, 5, 426, 0, 0, 2034, 2035, 5, 110, 0, 0, 2035, 2036, 5, 32, 0, 0, 2036, 2038, 5, 426, 0, 0, 2037, 2034, 1, 0, 0, 0, 2037, 2038, 1, 0, 0, 0, 2038, 237, 1, 0, 0, 0, 2039, 2040, 5, 44, 0, 0, 2040, 2041, 5, 169, 0, 0, 2041, 2042, 5, 334, 0, 0, 2042, 2043, 5, 32, 0, 0, 2043, 2044, 5, 426, 0, 0, 2044, 239, 1, 0, 0, 0, 2045, 2046, 5, 198, 0, 0, 2046, 2047, 5, 174, 0, 0, 2047, 2048, 5, 334, 0, 0, 2048, 2049, 5, 32, 0, 0, 2049, 2050, 5, 426, 0, 0, 2050, 241, 1, 0, 0, 0, 2051, 2052, 5, 186, 0, 0, 2052, 2053, 5, 334, 0, 0, 2053, 2054, 5, 32, 0, 0, 2054, 2055, 5, 426, 0, 0, 2055, 243, 1, 0, 0, 0, 2056, 2057, 5, 219, 0, 0, 2057, 2058, 5, 85, 0, 0, 2058, 2059, 5, 17, 0, 0, 2059, 2060, 5, 426, 0, 0, 2060, 245, 1, 0, 0, 0, 2061, 2062, 5, 321, 0, 0, 2062, 2063, 5, 17, 0, 0, 2063, 2064, 5, 160, 0, 0, 2064, 2065, 5, 426, 0, 0, 2065, 2066, 5, 233, 0, 0, 2066, 2071, 5, 426, 0, 0, 2067, 2068, 5, 159, 0, 0, 2068, 2069, 5, 426, 0, 0, 2069, 2070, 5, 232, 0, 0, 2070, 2072, 5, 426, 0, 0, 2071, 2067, 1, 0, 0, 0, 2071, 2072, 1, 0, 0, 0, 2072, 2103, 1, 0, 0, 0, 2073, 2074, 5, 321, 0, 0, 2074, 2075, 5, 32, 0, 0, 2075, 2079, 5, 426, 0, 0, 2076, 2077, 5, 387, 0, 0, 2077, 2078, 5, 302, 0, 0, 2078, 2080, 3, 226, 113, 0, 2079, 2076, 1, 0, 0, 0, 2079, 2080, 1, 0, 0, 0, 2080, 2084, 1, 0, 0, 0, 2081, 2082, 5, 321, 0, 0, 2082, 2083, 5, 17, 0, 0, 2083, 2085, 3, 654, 327, 0, 2084, 2081, 1, 0, 0, 0, 2084, 2085, 1, 0, 0, 0, 2085, 2103, 1, 0, 0, 0, 2086, 2087, 5, 321, 0, 0, 2087, 2088, 5, 32, 0, 0, 2088, 2092, 3, 654, 327, 0, 2089, 2090, 5, 387, 0, 0, 2090, 2091, 5, 302, 0, 0, 2091, 2093, 3, 226, 113, 0, 2092, 2089, 1, 0, 0, 0, 2092, 2093, 1, 0, 0, 0, 2093, 2097, 1, 0, 0, 0, 2094, 2095, 5, 321, 0, 0, 2095, 2096, 5, 17, 0, 0, 2096, 2098, 3, 654, 327, 0, 2097, 2094, 1, 0, 0, 0, 2097, 2098, 1, 0, 0, 0, 2098, 2103, 1, 0, 0, 0, 2099, 2100, 5, 321, 0, 0, 2100, 2101, 5, 17, 0, 0, 2101, 2103, 3, 654, 327, 0, 2102, 2061, 1, 0, 0, 0, 2102, 2073, 1, 0, 0, 0, 2102, 2086, 1, 0, 0, 0, 2102, 2099, 1, 0, 0, 0, 2103, 247, 1, 0, 0, 0, 2104, 2109, 3, 314, 157, 0, 2105, 2106, 5, 397, 0, 0, 2106, 2108, 3, 314, 157, 0, 2107, 2105, 1, 0, 0, 0, 2108, 2111, 1, 0, 0, 0, 2109, 2107, 1, 0, 0, 0, 2109, 2110, 1, 0, 0, 0, 2110, 249, 1, 0, 0, 0, 2111, 2109, 1, 0, 0, 0, 2112, 2117, 3, 316, 158, 0, 2113, 2114, 5, 397, 0, 0, 2114, 2116, 3, 316, 158, 0, 2115, 2113, 1, 0, 0, 0, 2116, 2119, 1, 0, 0, 0, 2117, 2115, 1, 0, 0, 0, 2117, 2118, 1, 0, 0, 0, 2118, 251, 1, 0, 0, 0, 2119, 2117, 1, 0, 0, 0, 2120, 2125, 3, 344, 172, 0, 2121, 2122, 5, 397, 0, 0, 2122, 2124, 3, 344, 172, 0, 2123, 2121, 1, 0, 0, 0, 2124, 2127, 1, 0, 0, 0, 2125, 2123, 1, 0, 0, 0, 2125, 2126, 1, 0, 0, 0, 2126, 253, 1, 0, 0, 0, 2127, 2125, 1, 0, 0, 0, 2128, 2133, 3, 256, 128, 0, 2129, 2130, 5, 397, 0, 0, 2130, 2132, 3, 256, 128, 0, 2131, 2129, 1, 0, 0, 0, 2132, 2135, 1, 0, 0, 0, 2133, 2131, 1, 0, 0, 0, 2133, 2134, 1, 0, 0, 0, 2134, 255, 1, 0, 0, 0, 2135, 2133, 1, 0, 0, 0, 2136, 2140, 3, 702, 351, 0, 2137, 2138, 4, 128, 0, 0, 2138, 2140, 3, 698, 349, 0, 2139, 2136, 1, 0, 0, 0, 2139, 2137, 1, 0, 0, 0, 2140, 257, 1, 0, 0, 0, 2141, 2142, 3, 700, 350, 0, 2142, 259, 1, 0, 0, 0, 2143, 2147, 3, 702, 351, 0, 2144, 2145, 4, 130, 1, 0, 2145, 2147, 3, 698, 349, 0, 2146, 2143, 1, 0, 0, 0, 2146, 2144, 1, 0, 0, 0, 2147, 261, 1, 0, 0, 0, 2148, 2149, 3, 654, 327, 0, 2149, 263, 1, 0, 0, 0, 2150, 2160, 3, 256, 128, 0, 2151, 2156, 5, 395, 0, 0, 2152, 2157, 5, 104, 0, 0, 2153, 2157, 5, 175, 0, 0, 2154, 2157, 5, 375, 0, 0, 2155, 2157, 3, 654, 327, 0, 2156, 2152, 1, 0, 0, 0, 2156, 2153, 1, 0, 0, 0, 2156, 2154, 1, 0, 0, 0, 2156, 2155, 1, 0, 0, 0, 2157, 2159, 1, 0, 0, 0, 2158, 2151, 1, 0, 0, 0, 2159, 2162, 1, 0, 0, 0, 2160, 2158, 1, 0, 0, 0, 2160, 2161, 1, 0, 0, 0, 2161, 265, 1, 0, 0, 0, 2162, 2160, 1, 0, 0, 0, 2163, 2168, 3, 306, 153, 0, 2164, 2165, 5, 397, 0, 0, 2165, 2167, 3, 306, 153, 0, 2166, 2164, 1, 0, 0, 0, 2167, 2170, 1, 0, 0, 0, 2168, 2166, 1, 0, 0, 0, 2168, 2169, 1, 0, 0, 0, 2169, 267, 1, 0, 0, 0, 2170, 2168, 1, 0, 0, 0, 2171, 2172, 5, 399, 0, 0, 2172, 2173, 3, 254, 127, 0, 2173, 2174, 5, 400, 0, 0, 2174, 269, 1, 0, 0, 0, 2175, 2177, 3, 272, 136, 0, 2176, 2178, 3, 274, 137, 0, 2177, 2176, 1, 0, 0, 0, 2177, 2178, 1, 0, 0, 0, 2178, 2181, 1, 0, 0, 0, 2179, 2181, 3, 276, 138, 0, 2180, 2175, 1, 0, 0, 0, 2180, 2179, 1, 0, 0, 0, 2181, 271, 1, 0, 0, 0, 2182, 2185, 3, 678, 339, 0, 2183, 2185, 3, 680, 340, 0, 2184, 2182, 1, 0, 0, 0, 2184, 2183, 1, 0, 0, 0, 2185, 273, 1, 0, 0, 0, 2186, 2187, 7, 16, 0, 0, 2187, 275, 1, 0, 0, 0, 2188, 2192, 5, 109, 0, 0, 2189, 2190, 5, 216, 0, 0, 2190, 2192, 5, 109, 0, 0, 2191, 2188, 1, 0, 0, 0, 2191, 2189, 1, 0, 0, 0, 2192, 277, 1, 0, 0, 0, 2193, 2194, 7, 17, 0, 0, 2194, 279, 1, 0, 0, 0, 2195, 2196, 5, 55, 0, 0, 2196, 2198, 3, 654, 327, 0, 2197, 2195, 1, 0, 0, 0, 2197, 2198, 1, 0, 0, 0, 2198, 2199, 1, 0, 0, 0, 2199, 2201, 3, 284, 142, 0, 2200, 2202, 3, 340, 170, 0, 2201, 2200, 1, 0, 0, 0, 2201, 2202, 1, 0, 0, 0, 2202, 281, 1, 0, 0, 0, 2203, 2204, 5, 55, 0, 0, 2204, 2205, 3, 654, 327, 0, 2205, 2207, 3, 284, 142, 0, 2206, 2208, 3, 342, 171, 0, 2207, 2206, 1, 0, 0, 0, 2207, 2208, 1, 0, 0, 0, 2208, 283, 1, 0, 0, 0, 2209, 2212, 3, 286, 143, 0, 2210, 2212, 3, 288, 144, 0, 2211, 2209, 1, 0, 0, 0, 2211, 2210, 1, 0, 0, 0, 2212, 285, 1, 0, 0, 0, 2213, 2214, 3, 338, 169, 0, 2214, 2215, 3, 268, 134, 0, 2215, 287, 1, 0, 0, 0, 2216, 2217, 5, 40, 0, 0, 2217, 2218, 5, 399, 0, 0, 2218, 2219, 3, 596, 298, 0, 2219, 2220, 5, 400, 0, 0, 2220, 289, 1, 0, 0, 0, 2221, 2222, 5, 55, 0, 0, 2222, 2224, 3, 654, 327, 0, 2223, 2221, 1, 0, 0, 0, 2223, 2224, 1, 0, 0, 0, 2224, 2225, 1, 0, 0, 0, 2225, 2226, 5, 136, 0, 0, 2226, 2227, 5, 173, 0, 0, 2227, 2228, 3, 268, 134, 0, 2228, 2229, 5, 269, 0, 0, 2229, 2230, 3, 482, 241, 0, 2230, 2232, 3, 268, 134, 0, 2231, 2233, 3, 340, 170, 0, 2232, 2231, 1, 0, 0, 0, 2232, 2233, 1, 0, 0, 0, 2233, 291, 1, 0, 0, 0, 2234, 2235, 5, 55, 0, 0, 2235, 2236, 3, 654, 327, 0, 2236, 2237, 5, 136, 0, 0, 2237, 2238, 5, 173, 0, 0, 2238, 2239, 3, 268, 134, 0, 2239, 2240, 5, 269, 0, 0, 2240, 2241, 3, 482, 241, 0, 2241, 2243, 3, 268, 134, 0, 2242, 2244, 3, 342, 171, 0, 2243, 2242, 1, 0, 0, 0, 2243, 2244, 1, 0, 0, 0, 2244, 293, 1, 0, 0, 0, 2245, 2248, 3, 300, 150, 0, 2246, 2248, 3, 296, 148, 0, 2247, 2245, 1, 0, 0, 0, 2247, 2246, 1, 0, 0, 0, 2248, 295, 1, 0, 0, 0, 2249, 2254, 3, 298, 149, 0, 2250, 2251, 5, 397, 0, 0, 2251, 2253, 3, 298, 149, 0, 2252, 2250, 1, 0, 0, 0, 2253, 2256, 1, 0, 0, 0, 2254, 2252, 1, 0, 0, 0, 2254, 2255, 1, 0, 0, 0, 2255, 297, 1, 0, 0, 0, 2256, 2254, 1, 0, 0, 0, 2257, 2258, 5, 399, 0, 0, 2258, 2259, 3, 300, 150, 0, 2259, 2260, 5, 400, 0, 0, 2260, 299, 1, 0, 0, 0, 2261, 2266, 3, 588, 294, 0, 2262, 2263, 5, 397, 0, 0, 2263, 2265, 3, 588, 294, 0, 2264, 2262, 1, 0, 0, 0, 2265, 2268, 1, 0, 0, 0, 2266, 2264, 1, 0, 0, 0, 2266, 2267, 1, 0, 0, 0, 2267, 301, 1, 0, 0, 0, 2268, 2266, 1, 0, 0, 0, 2269, 2270, 7, 18, 0, 0, 2270, 303, 1, 0, 0, 0, 2271, 2272, 5, 220, 0, 0, 2272, 2273, 7, 19, 0, 0, 2273, 305, 1, 0, 0, 0, 2274, 2276, 3, 256, 128, 0, 2275, 2277, 3, 302, 151, 0, 2276, 2275, 1, 0, 0, 0, 2276, 2277, 1, 0, 0, 0, 2277, 2279, 1, 0, 0, 0, 2278, 2280, 3, 304, 152, 0, 2279, 2278, 1, 0, 0, 0, 2279, 2280, 1, 0, 0, 0, 2280, 307, 1, 0, 0, 0, 2281, 2286, 3, 310, 155, 0, 2282, 2283, 5, 397, 0, 0, 2283, 2285, 3, 310, 155, 0, 2284, 2282, 1, 0, 0, 0, 2285, 2288, 1, 0, 0, 0, 2286, 2284, 1, 0, 0, 0, 2286, 2287, 1, 0, 0, 0, 2287, 309, 1, 0, 0, 0, 2288, 2286, 1, 0, 0, 0, 2289, 2292, 3, 262, 131, 0, 2290, 2291, 5, 47, 0, 0, 2291, 2293, 5, 426, 0, 0, 2292, 2290, 1, 0, 0, 0, 2292, 2293, 1, 0, 0, 0, 2293, 311, 1, 0, 0, 0, 2294, 2297, 3, 256, 128, 0, 2295, 2297, 3, 596, 298, 0, 2296, 2294, 1, 0, 0, 0, 2296, 2295, 1, 0, 0, 0, 2297, 2299, 1, 0, 0, 0, 2298, 2300, 3, 302, 151, 0, 2299, 2298, 1, 0, 0, 0, 2299, 2300, 1, 0, 0, 0, 2300, 2302, 1, 0, 0, 0, 2301, 2303, 3, 304, 152, 0, 2302, 2301, 1, 0, 0, 0, 2302, 2303, 1, 0, 0, 0, 2303, 313, 1, 0, 0, 0, 2304, 2305, 3, 262, 131, 0, 2305, 2308, 3, 346, 173, 0, 2306, 2307, 5, 47, 0, 0, 2307, 2309, 5, 426, 0, 0, 2308, 2306, 1, 0, 0, 0, 2308, 2309, 1, 0, 0, 0, 2309, 315, 1, 0, 0, 0, 2310, 2313, 3, 318, 159, 0, 2311, 2313, 3, 320, 160, 0, 2312, 2310, 1, 0, 0, 0, 2312, 2311, 1, 0, 0, 0, 2313, 317, 1, 0, 0, 0, 2314, 2317, 3, 290, 145, 0, 2315, 2317, 3, 280, 140, 0, 2316, 2314, 1, 0, 0, 0, 2316, 2315, 1, 0, 0, 0, 2317, 319, 1, 0, 0, 0, 2318, 2319, 3, 262, 131, 0, 2319, 2321, 3, 346, 173, 0, 2320, 2322, 3, 322, 161, 0, 2321, 2320, 1, 0, 0, 0, 2321, 2322, 1, 0, 0, 0, 2322, 2325, 1, 0, 0, 0, 2323, 2324, 5, 47, 0, 0, 2324, 2326, 5, 426, 0, 0, 2325, 2323, 1, 0, 0, 0, 2325, 2326, 1, 0, 0, 0, 2326, 321, 1, 0, 0, 0, 2327, 2330, 3, 324, 162, 0, 2328, 2330, 3, 326, 163, 0, 2329, 2327, 1, 0, 0, 0, 2329, 2328, 1, 0, 0, 0, 2330, 323, 1, 0, 0, 0, 2331, 2332, 5, 55, 0, 0, 2332, 2334, 3, 654, 327, 0, 2333, 2331, 1, 0, 0, 0, 2333, 2334, 1, 0, 0, 0, 2334, 2335, 1, 0, 0, 0, 2335, 2336, 5, 269, 0, 0, 2336, 2337, 3, 482, 241, 0, 2337, 2338, 5, 399, 0, 0, 2338, 2339, 3, 256, 128, 0, 2339, 2341, 5, 400, 0, 0, 2340, 2342, 3, 340, 170, 0, 2341, 2340, 1, 0, 0, 0, 2341, 2342, 1, 0, 0, 0, 2342, 325, 1, 0, 0, 0, 2343, 2344, 5, 55, 0, 0, 2344, 2346, 3, 654, 327, 0, 2345, 2343, 1, 0, 0, 0, 2345, 2346, 1, 0, 0, 0, 2346, 2347, 1, 0, 0, 0, 2347, 2349, 3, 334, 167, 0, 2348, 2350, 3, 340, 170, 0, 2349, 2348, 1, 0, 0, 0, 2349, 2350, 1, 0, 0, 0, 2350, 327, 1, 0, 0, 0, 2351, 2354, 3, 330, 165, 0, 2352, 2354, 3, 332, 166, 0, 2353, 2351, 1, 0, 0, 0, 2353, 2352, 1, 0, 0, 0, 2354, 329, 1, 0, 0, 0, 2355, 2356, 5, 55, 0, 0, 2356, 2358, 3, 654, 327, 0, 2357, 2355, 1, 0, 0, 0, 2357, 2358, 1, 0, 0, 0, 2358, 2359, 1, 0, 0, 0, 2359, 2360, 5, 269, 0, 0, 2360, 2361, 3, 482, 241, 0, 2361, 2362, 5, 399, 0, 0, 2362, 2363, 3, 256, 128, 0, 2363, 2365, 5, 400, 0, 0, 2364, 2366, 3, 342, 171, 0, 2365, 2364, 1, 0, 0, 0, 2365, 2366, 1, 0, 0, 0, 2366, 331, 1, 0, 0, 0, 2367, 2368, 5, 55, 0, 0, 2368, 2370, 3, 654, 327, 0, 2369, 2367, 1, 0, 0, 0, 2369, 2370, 1, 0, 0, 0, 2370, 2371, 1, 0, 0, 0, 2371, 2373, 3, 334, 167, 0, 2372, 2374, 3, 342, 171, 0, 2373, 2372, 1, 0, 0, 0, 2373, 2374, 1, 0, 0, 0, 2374, 333, 1, 0, 0, 0, 2375, 2376, 5, 216, 0, 0, 2376, 2382, 5, 219, 0, 0, 2377, 2378, 5, 83, 0, 0, 2378, 2382, 3, 336, 168, 0, 2379, 2382, 3, 288, 144, 0, 2380, 2382, 3, 338, 169, 0, 2381, 2375, 1, 0, 0, 0, 2381, 2377, 1, 0, 0, 0, 2381, 2379, 1, 0, 0, 0, 2381, 2380, 1, 0, 0, 0, 2382, 335, 1, 0, 0, 0, 2383, 2387, 3, 588, 294, 0, 2384, 2387, 3, 566, 283, 0, 2385, 2387, 3, 576, 288, 0, 2386, 2383, 1, 0, 0, 0, 2386, 2384, 1, 0, 0, 0, 2386, 2385, 1, 0, 0, 0, 2387, 337, 1, 0, 0, 0, 2388, 2389, 5, 251, 0, 0, 2389, 2392, 5, 173, 0, 0, 2390, 2392, 5, 358, 0, 0, 2391, 2388, 1, 0, 0, 0, 2391, 2390, 1, 0, 0, 0, 2392, 339, 1, 0, 0, 0, 2393, 2395, 3, 270, 135, 0, 2394, 2396, 3, 278, 139, 0, 2395, 2394, 1, 0, 0, 0, 2395, 2396, 1, 0, 0, 0, 2396, 341, 1, 0, 0, 0, 2397, 2399, 3, 270, 135, 0, 2398, 2400, 3, 278, 139, 0, 2399, 2398, 1, 0, 0, 0, 2399, 2400, 1, 0, 0, 0, 2400, 343, 1, 0, 0, 0, 2401, 2402, 3, 262, 131, 0, 2402, 2403, 5, 396, 0, 0, 2403, 2406, 3, 346, 173, 0, 2404, 2405, 5, 47, 0, 0, 2405, 2407, 5, 426, 0, 0, 2406, 2404, 1, 0, 0, 0, 2406, 2407, 1, 0, 0, 0, 2407, 345, 1, 0, 0, 0, 2408, 2409, 3, 350, 175, 0, 2409, 347, 1, 0, 0, 0, 2410, 2415, 3, 346, 173, 0, 2411, 2412, 5, 397, 0, 0, 2412, 2414, 3, 346, 173, 0, 2413, 2411, 1, 0, 0, 0, 2414, 2417, 1, 0, 0, 0, 2415, 2413, 1, 0, 0, 0, 2415, 2416, 1, 0, 0, 0, 2416, 349, 1, 0, 0, 0, 2417, 2415, 1, 0, 0, 0, 2418, 2424, 3, 352, 176, 0, 2419, 2424, 3, 354, 177, 0, 2420, 2424, 3, 356, 178, 0, 2421, 2424, 3, 358, 179, 0, 2422, 2424, 3, 360, 180, 0, 2423, 2418, 1, 0, 0, 0, 2423, 2419, 1, 0, 0, 0, 2423, 2420, 1, 0, 0, 0, 2423, 2421, 1, 0, 0, 0, 2423, 2422, 1, 0, 0, 0, 2424, 351, 1, 0, 0, 0, 2425, 2463, 5, 340, 0, 0, 2426, 2463, 5, 311, 0, 0, 2427, 2463, 5, 162, 0, 0, 2428, 2463, 5, 163, 0, 0, 2429, 2463, 5, 26, 0, 0, 2430, 2463, 5, 28, 0, 0, 2431, 2463, 5, 131, 0, 0, 2432, 2463, 5, 264, 0, 0, 2433, 2435, 5, 100, 0, 0, 2434, 2436, 5, 248, 0, 0, 2435, 2434, 1, 0, 0, 0, 2435, 2436, 1, 0, 0, 0, 2436, 2463, 1, 0, 0, 0, 2437, 2463, 5, 71, 0, 0, 2438, 2463, 5, 72, 0, 0, 2439, 2463, 5, 337, 0, 0, 2440, 2463, 5, 338, 0, 0, 2441, 2442, 5, 337, 0, 0, 2442, 2443, 5, 387, 0, 0, 2443, 2444, 5, 188, 0, 0, 2444, 2445, 5, 336, 0, 0, 2445, 2463, 5, 394, 0, 0, 2446, 2463, 5, 323, 0, 0, 2447, 2463, 5, 27, 0, 0, 2448, 2456, 3, 696, 348, 0, 2449, 2450, 5, 399, 0, 0, 2450, 2453, 5, 431, 0, 0, 2451, 2452, 5, 397, 0, 0, 2452, 2454, 5, 431, 0, 0, 2453, 2451, 1, 0, 0, 0, 2453, 2454, 1, 0, 0, 0, 2454, 2455, 1, 0, 0, 0, 2455, 2457, 5, 400, 0, 0, 2456, 2449, 1, 0, 0, 0, 2456, 2457, 1, 0, 0, 0, 2457, 2463, 1, 0, 0, 0, 2458, 2459, 7, 20, 0, 0, 2459, 2460, 5, 399, 0, 0, 2460, 2461, 5, 431, 0, 0, 2461, 2463, 5, 400, 0, 0, 2462, 2425, 1, 0, 0, 0, 2462, 2426, 1, 0, 0, 0, 2462, 2427, 1, 0, 0, 0, 2462, 2428, 1, 0, 0, 0, 2462, 2429, 1, 0, 0, 0, 2462, 2430, 1, 0, 0, 0, 2462, 2431, 1, 0, 0, 0, 2462, 2432, 1, 0, 0, 0, 2462, 2433, 1, 0, 0, 0, 2462, 2437, 1, 0, 0, 0, 2462, 2438, 1, 0, 0, 0, 2462, 2439, 1, 0, 0, 0, 2462, 2440, 1, 0, 0, 0, 2462, 2441, 1, 0, 0, 0, 2462, 2446, 1, 0, 0, 0, 2462, 2447, 1, 0, 0, 0, 2462, 2448, 1, 0, 0, 0, 2462, 2458, 1, 0, 0, 0, 2463, 353, 1, 0, 0, 0, 2464, 2465, 5, 16, 0, 0, 2465, 2466, 5, 409, 0, 0, 2466, 2467, 3, 350, 175, 0, 2467, 2468, 5, 411, 0, 0, 2468, 355, 1, 0, 0, 0, 2469, 2470, 5, 324, 0, 0, 2470, 2471, 5, 409, 0, 0, 2471, 2472, 3, 252, 126, 0, 2472, 2473, 5, 411, 0, 0, 2473, 357, 1, 0, 0, 0, 2474, 2475, 5, 198, 0, 0, 2475, 2476, 5, 409, 0, 0, 2476, 2477, 3, 352, 176, 0, 2477, 2478, 5, 397, 0, 0, 2478, 2479, 3, 350, 175, 0, 2479, 2480, 5, 411, 0, 0, 2480, 359, 1, 0, 0, 0, 2481, 2482, 5, 357, 0, 0, 2482, 2483, 5, 409, 0, 0, 2483, 2484, 3, 348, 174, 0, 2484, 2485, 5, 411, 0, 0, 2485, 361, 1, 0, 0, 0, 2486, 2488, 7, 21, 0, 0, 2487, 2489, 7, 22, 0, 0, 2488, 2487, 1, 0, 0, 0, 2488, 2489, 1, 0, 0, 0, 2489, 363, 1, 0, 0, 0, 2490, 2492, 3, 368, 184, 0, 2491, 2490, 1, 0, 0, 0, 2491, 2492, 1, 0, 0, 0, 2492, 2493, 1, 0, 0, 0, 2493, 2494, 3, 366, 183, 0, 2494, 365, 1, 0, 0, 0, 2495, 2498, 3, 372, 186, 0, 2496, 2498, 3, 376, 188, 0, 2497, 2495, 1, 0, 0, 0, 2497, 2496, 1, 0, 0, 0, 2498, 367, 1, 0, 0, 0, 2499, 2500, 5, 387, 0, 0, 2500, 2505, 3, 370, 185, 0, 2501, 2502, 5, 397, 0, 0, 2502, 2504, 3, 370, 185, 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, 369, 1, 0, 0, 0, 2507, 2505, 1, 0, 0, 0, 2508, 2513, 3, 654, 327, 0, 2509, 2510, 5, 399, 0, 0, 2510, 2511, 3, 254, 127, 0, 2511, 2512, 5, 400, 0, 0, 2512, 2514, 1, 0, 0, 0, 2513, 2509, 1, 0, 0, 0, 2513, 2514, 1, 0, 0, 0, 2514, 2515, 1, 0, 0, 0, 2515, 2516, 5, 17, 0, 0, 2516, 2517, 5, 399, 0, 0, 2517, 2518, 3, 364, 182, 0, 2518, 2519, 5, 400, 0, 0, 2519, 371, 1, 0, 0, 0, 2520, 2526, 3, 374, 187, 0, 2521, 2522, 3, 362, 181, 0, 2522, 2523, 3, 374, 187, 0, 2523, 2525, 1, 0, 0, 0, 2524, 2521, 1, 0, 0, 0, 2525, 2528, 1, 0, 0, 0, 2526, 2524, 1, 0, 0, 0, 2526, 2527, 1, 0, 0, 0, 2527, 373, 1, 0, 0, 0, 2528, 2526, 1, 0, 0, 0, 2529, 2530, 3, 452, 226, 0, 2530, 2531, 3, 386, 193, 0, 2531, 2533, 3, 508, 254, 0, 2532, 2534, 3, 466, 233, 0, 2533, 2532, 1, 0, 0, 0, 2533, 2534, 1, 0, 0, 0, 2534, 2536, 1, 0, 0, 0, 2535, 2537, 3, 500, 250, 0, 2536, 2535, 1, 0, 0, 0, 2536, 2537, 1, 0, 0, 0, 2537, 2539, 1, 0, 0, 0, 2538, 2540, 3, 534, 267, 0, 2539, 2538, 1, 0, 0, 0, 2539, 2540, 1, 0, 0, 0, 2540, 2542, 1, 0, 0, 0, 2541, 2543, 3, 542, 271, 0, 2542, 2541, 1, 0, 0, 0, 2542, 2543, 1, 0, 0, 0, 2543, 2545, 1, 0, 0, 0, 2544, 2546, 3, 526, 263, 0, 2545, 2544, 1, 0, 0, 0, 2545, 2546, 1, 0, 0, 0, 2546, 2548, 1, 0, 0, 0, 2547, 2549, 3, 544, 272, 0, 2548, 2547, 1, 0, 0, 0, 2548, 2549, 1, 0, 0, 0, 2549, 2551, 1, 0, 0, 0, 2550, 2552, 3, 556, 278, 0, 2551, 2550, 1, 0, 0, 0, 2551, 2552, 1, 0, 0, 0, 2552, 2554, 1, 0, 0, 0, 2553, 2555, 3, 560, 280, 0, 2554, 2553, 1, 0, 0, 0, 2554, 2555, 1, 0, 0, 0, 2555, 2557, 1, 0, 0, 0, 2556, 2558, 3, 562, 281, 0, 2557, 2556, 1, 0, 0, 0, 2557, 2558, 1, 0, 0, 0, 2558, 2560, 1, 0, 0, 0, 2559, 2561, 3, 564, 282, 0, 2560, 2559, 1, 0, 0, 0, 2560, 2561, 1, 0, 0, 0, 2561, 2563, 1, 0, 0, 0, 2562, 2564, 3, 390, 195, 0, 2563, 2562, 1, 0, 0, 0, 2563, 2564, 1, 0, 0, 0, 2564, 2601, 1, 0, 0, 0, 2565, 2566, 3, 452, 226, 0, 2566, 2568, 3, 508, 254, 0, 2567, 2569, 3, 466, 233, 0, 2568, 2567, 1, 0, 0, 0, 2568, 2569, 1, 0, 0, 0, 2569, 2571, 1, 0, 0, 0, 2570, 2572, 3, 500, 250, 0, 2571, 2570, 1, 0, 0, 0, 2571, 2572, 1, 0, 0, 0, 2572, 2574, 1, 0, 0, 0, 2573, 2575, 3, 534, 267, 0, 2574, 2573, 1, 0, 0, 0, 2574, 2575, 1, 0, 0, 0, 2575, 2577, 1, 0, 0, 0, 2576, 2578, 3, 542, 271, 0, 2577, 2576, 1, 0, 0, 0, 2577, 2578, 1, 0, 0, 0, 2578, 2580, 1, 0, 0, 0, 2579, 2581, 3, 526, 263, 0, 2580, 2579, 1, 0, 0, 0, 2580, 2581, 1, 0, 0, 0, 2581, 2583, 1, 0, 0, 0, 2582, 2584, 3, 544, 272, 0, 2583, 2582, 1, 0, 0, 0, 2583, 2584, 1, 0, 0, 0, 2584, 2586, 1, 0, 0, 0, 2585, 2587, 3, 556, 278, 0, 2586, 2585, 1, 0, 0, 0, 2586, 2587, 1, 0, 0, 0, 2587, 2589, 1, 0, 0, 0, 2588, 2590, 3, 560, 280, 0, 2589, 2588, 1, 0, 0, 0, 2589, 2590, 1, 0, 0, 0, 2590, 2592, 1, 0, 0, 0, 2591, 2593, 3, 562, 281, 0, 2592, 2591, 1, 0, 0, 0, 2592, 2593, 1, 0, 0, 0, 2593, 2595, 1, 0, 0, 0, 2594, 2596, 3, 564, 282, 0, 2595, 2594, 1, 0, 0, 0, 2595, 2596, 1, 0, 0, 0, 2596, 2598, 1, 0, 0, 0, 2597, 2599, 3, 390, 195, 0, 2598, 2597, 1, 0, 0, 0, 2598, 2599, 1, 0, 0, 0, 2599, 2601, 1, 0, 0, 0, 2600, 2529, 1, 0, 0, 0, 2600, 2565, 1, 0, 0, 0, 2601, 375, 1, 0, 0, 0, 2602, 2603, 3, 386, 193, 0, 2603, 2604, 3, 380, 190, 0, 2604, 2607, 1, 0, 0, 0, 2605, 2607, 3, 380, 190, 0, 2606, 2602, 1, 0, 0, 0, 2606, 2605, 1, 0, 0, 0, 2607, 377, 1, 0, 0, 0, 2608, 2610, 3, 508, 254, 0, 2609, 2611, 3, 452, 226, 0, 2610, 2609, 1, 0, 0, 0, 2610, 2611, 1, 0, 0, 0, 2611, 2613, 1, 0, 0, 0, 2612, 2614, 3, 500, 250, 0, 2613, 2612, 1, 0, 0, 0, 2613, 2614, 1, 0, 0, 0, 2614, 2616, 1, 0, 0, 0, 2615, 2617, 3, 534, 267, 0, 2616, 2615, 1, 0, 0, 0, 2616, 2617, 1, 0, 0, 0, 2617, 2619, 1, 0, 0, 0, 2618, 2620, 3, 542, 271, 0, 2619, 2618, 1, 0, 0, 0, 2619, 2620, 1, 0, 0, 0, 2620, 2622, 1, 0, 0, 0, 2621, 2623, 3, 526, 263, 0, 2622, 2621, 1, 0, 0, 0, 2622, 2623, 1, 0, 0, 0, 2623, 2625, 1, 0, 0, 0, 2624, 2626, 3, 544, 272, 0, 2625, 2624, 1, 0, 0, 0, 2625, 2626, 1, 0, 0, 0, 2626, 2633, 1, 0, 0, 0, 2627, 2628, 5, 399, 0, 0, 2628, 2629, 3, 380, 190, 0, 2629, 2630, 5, 400, 0, 0, 2630, 2633, 1, 0, 0, 0, 2631, 2633, 3, 502, 251, 0, 2632, 2608, 1, 0, 0, 0, 2632, 2627, 1, 0, 0, 0, 2632, 2631, 1, 0, 0, 0, 2633, 379, 1, 0, 0, 0, 2634, 2636, 3, 378, 189, 0, 2635, 2637, 3, 382, 191, 0, 2636, 2635, 1, 0, 0, 0, 2636, 2637, 1, 0, 0, 0, 2637, 2639, 1, 0, 0, 0, 2638, 2640, 3, 556, 278, 0, 2639, 2638, 1, 0, 0, 0, 2639, 2640, 1, 0, 0, 0, 2640, 2642, 1, 0, 0, 0, 2641, 2643, 3, 560, 280, 0, 2642, 2641, 1, 0, 0, 0, 2642, 2643, 1, 0, 0, 0, 2643, 2645, 1, 0, 0, 0, 2644, 2646, 3, 562, 281, 0, 2645, 2644, 1, 0, 0, 0, 2645, 2646, 1, 0, 0, 0, 2646, 2648, 1, 0, 0, 0, 2647, 2649, 3, 564, 282, 0, 2648, 2647, 1, 0, 0, 0, 2648, 2649, 1, 0, 0, 0, 2649, 2651, 1, 0, 0, 0, 2650, 2652, 3, 390, 195, 0, 2651, 2650, 1, 0, 0, 0, 2651, 2652, 1, 0, 0, 0, 2652, 381, 1, 0, 0, 0, 2653, 2654, 3, 362, 181, 0, 2654, 2655, 3, 378, 189, 0, 2655, 2657, 1, 0, 0, 0, 2656, 2653, 1, 0, 0, 0, 2657, 2658, 1, 0, 0, 0, 2658, 2656, 1, 0, 0, 0, 2658, 2659, 1, 0, 0, 0, 2659, 383, 1, 0, 0, 0, 2660, 2662, 3, 368, 184, 0, 2661, 2660, 1, 0, 0, 0, 2661, 2662, 1, 0, 0, 0, 2662, 2663, 1, 0, 0, 0, 2663, 2664, 3, 380, 190, 0, 2664, 385, 1, 0, 0, 0, 2665, 2682, 5, 161, 0, 0, 2666, 2667, 5, 235, 0, 0, 2667, 2669, 3, 388, 194, 0, 2668, 2670, 3, 32, 16, 0, 2669, 2668, 1, 0, 0, 0, 2669, 2670, 1, 0, 0, 0, 2670, 2683, 1, 0, 0, 0, 2671, 2673, 5, 166, 0, 0, 2672, 2674, 5, 329, 0, 0, 2673, 2672, 1, 0, 0, 0, 2673, 2674, 1, 0, 0, 0, 2674, 2675, 1, 0, 0, 0, 2675, 2680, 3, 640, 320, 0, 2676, 2677, 5, 399, 0, 0, 2677, 2678, 3, 254, 127, 0, 2678, 2679, 5, 400, 0, 0, 2679, 2681, 1, 0, 0, 0, 2680, 2676, 1, 0, 0, 0, 2680, 2681, 1, 0, 0, 0, 2681, 2683, 1, 0, 0, 0, 2682, 2666, 1, 0, 0, 0, 2682, 2671, 1, 0, 0, 0, 2683, 387, 1, 0, 0, 0, 2684, 2686, 5, 188, 0, 0, 2685, 2684, 1, 0, 0, 0, 2685, 2686, 1, 0, 0, 0, 2686, 2687, 1, 0, 0, 0, 2687, 2688, 5, 93, 0, 0, 2688, 2690, 5, 426, 0, 0, 2689, 2691, 3, 222, 111, 0, 2690, 2689, 1, 0, 0, 0, 2690, 2691, 1, 0, 0, 0, 2691, 2693, 1, 0, 0, 0, 2692, 2694, 3, 246, 123, 0, 2693, 2692, 1, 0, 0, 0, 2693, 2694, 1, 0, 0, 0, 2694, 2698, 1, 0, 0, 0, 2695, 2696, 5, 329, 0, 0, 2696, 2698, 3, 640, 320, 0, 2697, 2685, 1, 0, 0, 0, 2697, 2695, 1, 0, 0, 0, 2698, 389, 1, 0, 0, 0, 2699, 2708, 5, 185, 0, 0, 2700, 2701, 5, 431, 0, 0, 2701, 2703, 5, 397, 0, 0, 2702, 2700, 1, 0, 0, 0, 2702, 2703, 1, 0, 0, 0, 2703, 2704, 1, 0, 0, 0, 2704, 2709, 5, 431, 0, 0, 2705, 2706, 5, 431, 0, 0, 2706, 2707, 5, 223, 0, 0, 2707, 2709, 5, 431, 0, 0, 2708, 2702, 1, 0, 0, 0, 2708, 2705, 1, 0, 0, 0, 2709, 391, 1, 0, 0, 0, 2710, 2711, 3, 256, 128, 0, 2711, 2712, 5, 405, 0, 0, 2712, 2713, 3, 394, 197, 0, 2713, 393, 1, 0, 0, 0, 2714, 2717, 5, 83, 0, 0, 2715, 2717, 3, 606, 303, 0, 2716, 2714, 1, 0, 0, 0, 2716, 2715, 1, 0, 0, 0, 2717, 395, 1, 0, 0, 0, 2718, 2719, 5, 304, 0, 0, 2719, 2724, 3, 392, 196, 0, 2720, 2721, 5, 397, 0, 0, 2721, 2723, 3, 392, 196, 0, 2722, 2720, 1, 0, 0, 0, 2723, 2726, 1, 0, 0, 0, 2724, 2722, 1, 0, 0, 0, 2724, 2725, 1, 0, 0, 0, 2725, 397, 1, 0, 0, 0, 2726, 2724, 1, 0, 0, 0, 2727, 2728, 5, 318, 0, 0, 2728, 2737, 5, 344, 0, 0, 2729, 2734, 3, 400, 200, 0, 2730, 2731, 5, 397, 0, 0, 2731, 2733, 3, 400, 200, 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, 2738, 1, 0, 0, 0, 2736, 2734, 1, 0, 0, 0, 2737, 2729, 1, 0, 0, 0, 2737, 2738, 1, 0, 0, 0, 2738, 2751, 1, 0, 0, 0, 2739, 2741, 5, 48, 0, 0, 2740, 2742, 5, 389, 0, 0, 2741, 2740, 1, 0, 0, 0, 2741, 2742, 1, 0, 0, 0, 2742, 2751, 1, 0, 0, 0, 2743, 2745, 5, 289, 0, 0, 2744, 2746, 5, 389, 0, 0, 2745, 2744, 1, 0, 0, 0, 2745, 2746, 1, 0, 0, 0, 2746, 2751, 1, 0, 0, 0, 2747, 2748, 5, 304, 0, 0, 2748, 2749, 5, 22, 0, 0, 2749, 2751, 7, 23, 0, 0, 2750, 2727, 1, 0, 0, 0, 2750, 2739, 1, 0, 0, 0, 2750, 2743, 1, 0, 0, 0, 2750, 2747, 1, 0, 0, 0, 2751, 399, 1, 0, 0, 0, 2752, 2753, 5, 168, 0, 0, 2753, 2754, 5, 182, 0, 0, 2754, 2758, 5, 312, 0, 0, 2755, 2756, 5, 261, 0, 0, 2756, 2758, 7, 24, 0, 0, 2757, 2752, 1, 0, 0, 0, 2757, 2755, 1, 0, 0, 0, 2758, 401, 1, 0, 0, 0, 2759, 2762, 3, 406, 203, 0, 2760, 2762, 3, 408, 204, 0, 2761, 2759, 1, 0, 0, 0, 2761, 2760, 1, 0, 0, 0, 2762, 2765, 1, 0, 0, 0, 2763, 2761, 1, 0, 0, 0, 2763, 2764, 1, 0, 0, 0, 2764, 2767, 1, 0, 0, 0, 2765, 2763, 1, 0, 0, 0, 2766, 2768, 3, 404, 202, 0, 2767, 2766, 1, 0, 0, 0, 2767, 2768, 1, 0, 0, 0, 2768, 403, 1, 0, 0, 0, 2769, 2770, 5, 383, 0, 0, 2770, 2771, 5, 216, 0, 0, 2771, 2774, 5, 201, 0, 0, 2772, 2773, 5, 11, 0, 0, 2773, 2775, 3, 596, 298, 0, 2774, 2772, 1, 0, 0, 0, 2774, 2775, 1, 0, 0, 0, 2775, 2776, 1, 0, 0, 0, 2776, 2777, 5, 335, 0, 0, 2777, 2779, 5, 161, 0, 0, 2778, 2780, 3, 268, 134, 0, 2779, 2778, 1, 0, 0, 0, 2779, 2780, 1, 0, 0, 0, 2780, 2781, 1, 0, 0, 0, 2781, 2782, 5, 374, 0, 0, 2782, 2783, 3, 552, 276, 0, 2783, 405, 1, 0, 0, 0, 2784, 2785, 5, 383, 0, 0, 2785, 2786, 5, 201, 0, 0, 2786, 2787, 5, 11, 0, 0, 2787, 2788, 3, 596, 298, 0, 2788, 2792, 5, 335, 0, 0, 2789, 2790, 5, 365, 0, 0, 2790, 2793, 3, 396, 198, 0, 2791, 2793, 5, 86, 0, 0, 2792, 2789, 1, 0, 0, 0, 2792, 2791, 1, 0, 0, 0, 2793, 407, 1, 0, 0, 0, 2794, 2795, 5, 383, 0, 0, 2795, 2796, 5, 201, 0, 0, 2796, 2800, 5, 335, 0, 0, 2797, 2798, 5, 365, 0, 0, 2798, 2801, 3, 396, 198, 0, 2799, 2801, 5, 86, 0, 0, 2800, 2797, 1, 0, 0, 0, 2800, 2799, 1, 0, 0, 0, 2801, 409, 1, 0, 0, 0, 2802, 2803, 5, 246, 0, 0, 2803, 2804, 5, 426, 0, 0, 2804, 411, 1, 0, 0, 0, 2805, 2806, 5, 352, 0, 0, 2806, 2807, 5, 426, 0, 0, 2807, 413, 1, 0, 0, 0, 2808, 2809, 5, 320, 0, 0, 2809, 2810, 5, 426, 0, 0, 2810, 415, 1, 0, 0, 0, 2811, 2842, 5, 9, 0, 0, 2812, 2813, 5, 329, 0, 0, 2813, 2814, 3, 482, 241, 0, 2814, 2815, 3, 418, 209, 0, 2815, 2843, 1, 0, 0, 0, 2816, 2817, 5, 378, 0, 0, 2817, 2819, 3, 486, 243, 0, 2818, 2820, 5, 17, 0, 0, 2819, 2818, 1, 0, 0, 0, 2819, 2820, 1, 0, 0, 0, 2820, 2821, 1, 0, 0, 0, 2821, 2822, 3, 422, 211, 0, 2822, 2843, 1, 0, 0, 0, 2823, 2824, 5, 202, 0, 0, 2824, 2825, 5, 378, 0, 0, 2825, 2829, 3, 486, 243, 0, 2826, 2830, 3, 36, 18, 0, 2827, 2830, 3, 38, 19, 0, 2828, 2830, 5, 265, 0, 0, 2829, 2826, 1, 0, 0, 0, 2829, 2827, 1, 0, 0, 0, 2829, 2828, 1, 0, 0, 0, 2830, 2843, 1, 0, 0, 0, 2831, 2832, 3, 70, 35, 0, 2832, 2833, 3, 424, 212, 0, 2833, 2843, 1, 0, 0, 0, 2834, 2835, 5, 69, 0, 0, 2835, 2843, 3, 426, 213, 0, 2836, 2837, 5, 155, 0, 0, 2837, 2838, 3, 654, 327, 0, 2838, 2839, 5, 224, 0, 0, 2839, 2840, 3, 640, 320, 0, 2840, 2841, 5, 265, 0, 0, 2841, 2843, 1, 0, 0, 0, 2842, 2812, 1, 0, 0, 0, 2842, 2816, 1, 0, 0, 0, 2842, 2823, 1, 0, 0, 0, 2842, 2831, 1, 0, 0, 0, 2842, 2834, 1, 0, 0, 0, 2842, 2836, 1, 0, 0, 0, 2843, 417, 1, 0, 0, 0, 2844, 2845, 5, 274, 0, 0, 2845, 2846, 5, 341, 0, 0, 2846, 2934, 3, 484, 242, 0, 2847, 2848, 5, 102, 0, 0, 2848, 2934, 5, 239, 0, 0, 2849, 2934, 3, 430, 215, 0, 2850, 2852, 5, 4, 0, 0, 2851, 2853, 3, 32, 16, 0, 2852, 2851, 1, 0, 0, 0, 2852, 2853, 1, 0, 0, 0, 2853, 2858, 1, 0, 0, 0, 2854, 2856, 3, 642, 321, 0, 2855, 2857, 3, 428, 214, 0, 2856, 2855, 1, 0, 0, 0, 2856, 2857, 1, 0, 0, 0, 2857, 2859, 1, 0, 0, 0, 2858, 2854, 1, 0, 0, 0, 2859, 2860, 1, 0, 0, 0, 2860, 2858, 1, 0, 0, 0, 2860, 2861, 1, 0, 0, 0, 2861, 2934, 1, 0, 0, 0, 2862, 2866, 5, 342, 0, 0, 2863, 2865, 3, 642, 321, 0, 2864, 2863, 1, 0, 0, 0, 2865, 2868, 1, 0, 0, 0, 2866, 2864, 1, 0, 0, 0, 2866, 2867, 1, 0, 0, 0, 2867, 2934, 1, 0, 0, 0, 2868, 2866, 1, 0, 0, 0, 2869, 2873, 5, 15, 0, 0, 2870, 2872, 3, 642, 321, 0, 2871, 2870, 1, 0, 0, 0, 2872, 2875, 1, 0, 0, 0, 2873, 2871, 1, 0, 0, 0, 2873, 2874, 1, 0, 0, 0, 2874, 2934, 1, 0, 0, 0, 2875, 2873, 1, 0, 0, 0, 2876, 2880, 5, 353, 0, 0, 2877, 2879, 3, 642, 321, 0, 2878, 2877, 1, 0, 0, 0, 2879, 2882, 1, 0, 0, 0, 2880, 2878, 1, 0, 0, 0, 2880, 2881, 1, 0, 0, 0, 2881, 2934, 1, 0, 0, 0, 2882, 2880, 1, 0, 0, 0, 2883, 2884, 5, 304, 0, 0, 2884, 2885, 5, 332, 0, 0, 2885, 2934, 3, 226, 113, 0, 2886, 2887, 5, 363, 0, 0, 2887, 2889, 5, 332, 0, 0, 2888, 2890, 3, 30, 15, 0, 2889, 2888, 1, 0, 0, 0, 2889, 2890, 1, 0, 0, 0, 2890, 2891, 1, 0, 0, 0, 2891, 2934, 3, 226, 113, 0, 2892, 2934, 3, 210, 105, 0, 2893, 2896, 5, 216, 0, 0, 2894, 2897, 5, 310, 0, 0, 2895, 2897, 3, 40, 20, 0, 2896, 2894, 1, 0, 0, 0, 2896, 2895, 1, 0, 0, 0, 2897, 2934, 1, 0, 0, 0, 2898, 2899, 5, 113, 0, 0, 2899, 2900, 3, 642, 321, 0, 2900, 2901, 5, 387, 0, 0, 2901, 2902, 5, 329, 0, 0, 2902, 2903, 3, 482, 241, 0, 2903, 2934, 1, 0, 0, 0, 2904, 2905, 5, 237, 0, 0, 2905, 2906, 5, 45, 0, 0, 2906, 2907, 5, 399, 0, 0, 2907, 2908, 3, 314, 157, 0, 2908, 2909, 5, 400, 0, 0, 2909, 2934, 1, 0, 0, 0, 2910, 2911, 5, 101, 0, 0, 2911, 2912, 5, 55, 0, 0, 2912, 2934, 3, 654, 327, 0, 2913, 2916, 5, 4, 0, 0, 2914, 2917, 3, 292, 146, 0, 2915, 2917, 3, 282, 141, 0, 2916, 2914, 1, 0, 0, 0, 2916, 2915, 1, 0, 0, 0, 2917, 2934, 1, 0, 0, 0, 2918, 2920, 3, 642, 321, 0, 2919, 2918, 1, 0, 0, 0, 2919, 2920, 1, 0, 0, 0, 2920, 2921, 1, 0, 0, 0, 2921, 2934, 3, 420, 210, 0, 2922, 2923, 5, 304, 0, 0, 2923, 2924, 5, 236, 0, 0, 2924, 2934, 3, 126, 63, 0, 2925, 2926, 5, 304, 0, 0, 2926, 2927, 5, 237, 0, 0, 2927, 2928, 5, 316, 0, 0, 2928, 2929, 5, 399, 0, 0, 2929, 2930, 3, 204, 102, 0, 2930, 2931, 5, 400, 0, 0, 2931, 2934, 1, 0, 0, 0, 2932, 2934, 3, 434, 217, 0, 2933, 2844, 1, 0, 0, 0, 2933, 2847, 1, 0, 0, 0, 2933, 2849, 1, 0, 0, 0, 2933, 2850, 1, 0, 0, 0, 2933, 2862, 1, 0, 0, 0, 2933, 2869, 1, 0, 0, 0, 2933, 2876, 1, 0, 0, 0, 2933, 2883, 1, 0, 0, 0, 2933, 2886, 1, 0, 0, 0, 2933, 2892, 1, 0, 0, 0, 2933, 2893, 1, 0, 0, 0, 2933, 2898, 1, 0, 0, 0, 2933, 2904, 1, 0, 0, 0, 2933, 2910, 1, 0, 0, 0, 2933, 2913, 1, 0, 0, 0, 2933, 2919, 1, 0, 0, 0, 2933, 2922, 1, 0, 0, 0, 2933, 2925, 1, 0, 0, 0, 2933, 2932, 1, 0, 0, 0, 2934, 419, 1, 0, 0, 0, 2935, 2936, 5, 304, 0, 0, 2936, 2937, 5, 129, 0, 0, 2937, 3068, 3, 436, 218, 0, 2938, 2939, 5, 304, 0, 0, 2939, 2940, 5, 189, 0, 0, 2940, 3068, 5, 426, 0, 0, 2941, 3068, 5, 53, 0, 0, 2942, 2952, 5, 304, 0, 0, 2943, 2944, 5, 301, 0, 0, 2944, 2948, 5, 426, 0, 0, 2945, 2946, 5, 387, 0, 0, 2946, 2947, 5, 302, 0, 0, 2947, 2949, 3, 226, 113, 0, 2948, 2945, 1, 0, 0, 0, 2948, 2949, 1, 0, 0, 0, 2949, 2953, 1, 0, 0, 0, 2950, 2951, 5, 302, 0, 0, 2951, 2953, 3, 226, 113, 0, 2952, 2943, 1, 0, 0, 0, 2952, 2950, 1, 0, 0, 0, 2953, 3068, 1, 0, 0, 0, 2954, 2955, 5, 363, 0, 0, 2955, 2956, 5, 302, 0, 0, 2956, 3068, 3, 226, 113, 0, 2957, 2958, 5, 274, 0, 0, 2958, 2959, 5, 341, 0, 0, 2959, 3068, 3, 642, 321, 0, 2960, 2961, 5, 166, 0, 0, 2961, 2962, 5, 431, 0, 0, 2962, 3068, 5, 31, 0, 0, 2963, 2964, 5, 304, 0, 0, 2964, 2965, 5, 310, 0, 0, 2965, 2966, 5, 189, 0, 0, 2966, 2967, 5, 399, 0, 0, 2967, 2972, 3, 432, 216, 0, 2968, 2969, 5, 397, 0, 0, 2969, 2971, 3, 432, 216, 0, 2970, 2968, 1, 0, 0, 0, 2971, 2974, 1, 0, 0, 0, 2972, 2970, 1, 0, 0, 0, 2972, 2973, 1, 0, 0, 0, 2973, 2975, 1, 0, 0, 0, 2974, 2972, 1, 0, 0, 0, 2975, 2976, 5, 400, 0, 0, 2976, 3068, 1, 0, 0, 0, 2977, 2978, 5, 216, 0, 0, 2978, 3068, 7, 25, 0, 0, 2979, 3068, 3, 208, 104, 0, 2980, 2981, 5, 49, 0, 0, 2981, 2984, 5, 426, 0, 0, 2982, 2983, 5, 11, 0, 0, 2983, 2985, 5, 380, 0, 0, 2984, 2982, 1, 0, 0, 0, 2984, 2985, 1, 0, 0, 0, 2985, 2990, 1, 0, 0, 0, 2986, 2987, 5, 42, 0, 0, 2987, 2988, 5, 166, 0, 0, 2988, 2989, 5, 431, 0, 0, 2989, 2991, 5, 31, 0, 0, 2990, 2986, 1, 0, 0, 0, 2990, 2991, 1, 0, 0, 0, 2991, 2993, 1, 0, 0, 0, 2992, 2994, 3, 556, 278, 0, 2993, 2992, 1, 0, 0, 0, 2993, 2994, 1, 0, 0, 0, 2994, 2996, 1, 0, 0, 0, 2995, 2997, 3, 410, 205, 0, 2996, 2995, 1, 0, 0, 0, 2996, 2997, 1, 0, 0, 0, 2997, 3002, 1, 0, 0, 0, 2998, 2999, 5, 387, 0, 0, 2999, 3000, 5, 235, 0, 0, 3000, 3001, 5, 332, 0, 0, 3001, 3003, 3, 226, 113, 0, 3002, 2998, 1, 0, 0, 0, 3002, 3003, 1, 0, 0, 0, 3003, 3068, 1, 0, 0, 0, 3004, 3005, 5, 365, 0, 0, 3005, 3006, 5, 319, 0, 0, 3006, 3008, 5, 134, 0, 0, 3007, 3009, 5, 45, 0, 0, 3008, 3007, 1, 0, 0, 0, 3008, 3009, 1, 0, 0, 0, 3009, 3010, 1, 0, 0, 0, 3010, 3011, 3, 256, 128, 0, 3011, 3012, 5, 304, 0, 0, 3012, 3015, 3, 226, 113, 0, 3013, 3014, 5, 47, 0, 0, 3014, 3016, 5, 426, 0, 0, 3015, 3013, 1, 0, 0, 0, 3015, 3016, 1, 0, 0, 0, 3016, 3068, 1, 0, 0, 0, 3017, 3018, 5, 365, 0, 0, 3018, 3019, 5, 319, 0, 0, 3019, 3020, 5, 304, 0, 0, 3020, 3068, 3, 226, 113, 0, 3021, 3023, 5, 38, 0, 0, 3022, 3024, 5, 45, 0, 0, 3023, 3022, 1, 0, 0, 0, 3023, 3024, 1, 0, 0, 0, 3024, 3025, 1, 0, 0, 0, 3025, 3026, 3, 256, 128, 0, 3026, 3027, 3, 262, 131, 0, 3027, 3029, 3, 346, 173, 0, 3028, 3030, 3, 328, 164, 0, 3029, 3028, 1, 0, 0, 0, 3029, 3030, 1, 0, 0, 0, 3030, 3033, 1, 0, 0, 0, 3031, 3032, 5, 47, 0, 0, 3032, 3034, 5, 426, 0, 0, 3033, 3031, 1, 0, 0, 0, 3033, 3034, 1, 0, 0, 0, 3034, 3038, 1, 0, 0, 0, 3035, 3039, 5, 130, 0, 0, 3036, 3037, 5, 6, 0, 0, 3037, 3039, 3, 654, 327, 0, 3038, 3035, 1, 0, 0, 0, 3038, 3036, 1, 0, 0, 0, 3038, 3039, 1, 0, 0, 0, 3039, 3041, 1, 0, 0, 0, 3040, 3042, 3, 34, 17, 0, 3041, 3040, 1, 0, 0, 0, 3041, 3042, 1, 0, 0, 0, 3042, 3068, 1, 0, 0, 0, 3043, 3046, 5, 4, 0, 0, 3044, 3046, 5, 278, 0, 0, 3045, 3043, 1, 0, 0, 0, 3045, 3044, 1, 0, 0, 0, 3046, 3047, 1, 0, 0, 0, 3047, 3048, 5, 46, 0, 0, 3048, 3049, 5, 399, 0, 0, 3049, 3050, 3, 248, 124, 0, 3050, 3052, 5, 400, 0, 0, 3051, 3053, 3, 34, 17, 0, 3052, 3051, 1, 0, 0, 0, 3052, 3053, 1, 0, 0, 0, 3053, 3068, 1, 0, 0, 0, 3054, 3055, 5, 365, 0, 0, 3055, 3057, 5, 46, 0, 0, 3056, 3058, 3, 34, 17, 0, 3057, 3056, 1, 0, 0, 0, 3057, 3058, 1, 0, 0, 0, 3058, 3068, 1, 0, 0, 0, 3059, 3065, 3, 272, 136, 0, 3060, 3062, 5, 218, 0, 0, 3061, 3063, 5, 34, 0, 0, 3062, 3061, 1, 0, 0, 0, 3062, 3063, 1, 0, 0, 0, 3063, 3066, 1, 0, 0, 0, 3064, 3066, 5, 222, 0, 0, 3065, 3060, 1, 0, 0, 0, 3065, 3064, 1, 0, 0, 0, 3066, 3068, 1, 0, 0, 0, 3067, 2935, 1, 0, 0, 0, 3067, 2938, 1, 0, 0, 0, 3067, 2941, 1, 0, 0, 0, 3067, 2942, 1, 0, 0, 0, 3067, 2954, 1, 0, 0, 0, 3067, 2957, 1, 0, 0, 0, 3067, 2960, 1, 0, 0, 0, 3067, 2963, 1, 0, 0, 0, 3067, 2977, 1, 0, 0, 0, 3067, 2979, 1, 0, 0, 0, 3067, 2980, 1, 0, 0, 0, 3067, 3004, 1, 0, 0, 0, 3067, 3017, 1, 0, 0, 0, 3067, 3021, 1, 0, 0, 0, 3067, 3045, 1, 0, 0, 0, 3067, 3054, 1, 0, 0, 0, 3067, 3059, 1, 0, 0, 0, 3068, 421, 1, 0, 0, 0, 3069, 3070, 5, 304, 0, 0, 3070, 3071, 5, 332, 0, 0, 3071, 3096, 3, 226, 113, 0, 3072, 3073, 5, 363, 0, 0, 3073, 3075, 5, 332, 0, 0, 3074, 3076, 3, 30, 15, 0, 3075, 3074, 1, 0, 0, 0, 3075, 3076, 1, 0, 0, 0, 3076, 3077, 1, 0, 0, 0, 3077, 3096, 3, 226, 113, 0, 3078, 3079, 5, 274, 0, 0, 3079, 3080, 5, 341, 0, 0, 3080, 3096, 3, 484, 242, 0, 3081, 3083, 5, 4, 0, 0, 3082, 3084, 3, 32, 16, 0, 3083, 3082, 1, 0, 0, 0, 3083, 3084, 1, 0, 0, 0, 3084, 3089, 1, 0, 0, 0, 3085, 3087, 3, 642, 321, 0, 3086, 3088, 3, 428, 214, 0, 3087, 3086, 1, 0, 0, 0, 3087, 3088, 1, 0, 0, 0, 3088, 3090, 1, 0, 0, 0, 3089, 3085, 1, 0, 0, 0, 3090, 3091, 1, 0, 0, 0, 3091, 3089, 1, 0, 0, 0, 3091, 3092, 1, 0, 0, 0, 3092, 3096, 1, 0, 0, 0, 3093, 3096, 3, 430, 215, 0, 3094, 3096, 3, 384, 192, 0, 3095, 3069, 1, 0, 0, 0, 3095, 3072, 1, 0, 0, 0, 3095, 3078, 1, 0, 0, 0, 3095, 3081, 1, 0, 0, 0, 3095, 3093, 1, 0, 0, 0, 3095, 3094, 1, 0, 0, 0, 3096, 423, 1, 0, 0, 0, 3097, 3098, 3, 476, 238, 0, 3098, 3099, 5, 304, 0, 0, 3099, 3100, 5, 76, 0, 0, 3100, 3101, 3, 230, 115, 0, 3101, 3113, 1, 0, 0, 0, 3102, 3103, 3, 476, 238, 0, 3103, 3104, 5, 304, 0, 0, 3104, 3105, 5, 236, 0, 0, 3105, 3106, 3, 128, 64, 0, 3106, 3113, 1, 0, 0, 0, 3107, 3108, 3, 476, 238, 0, 3108, 3109, 5, 304, 0, 0, 3109, 3110, 7, 26, 0, 0, 3110, 3111, 5, 426, 0, 0, 3111, 3113, 1, 0, 0, 0, 3112, 3097, 1, 0, 0, 0, 3112, 3102, 1, 0, 0, 0, 3112, 3107, 1, 0, 0, 0, 3113, 425, 1, 0, 0, 0, 3114, 3115, 3, 476, 238, 0, 3115, 3116, 5, 304, 0, 0, 3116, 3117, 5, 77, 0, 0, 3117, 3118, 3, 230, 115, 0, 3118, 3130, 1, 0, 0, 0, 3119, 3120, 3, 476, 238, 0, 3120, 3121, 5, 304, 0, 0, 3121, 3122, 5, 236, 0, 0, 3122, 3123, 3, 128, 64, 0, 3123, 3130, 1, 0, 0, 0, 3124, 3125, 3, 476, 238, 0, 3125, 3126, 5, 304, 0, 0, 3126, 3127, 5, 367, 0, 0, 3127, 3128, 5, 426, 0, 0, 3128, 3130, 1, 0, 0, 0, 3129, 3114, 1, 0, 0, 0, 3129, 3119, 1, 0, 0, 0, 3129, 3124, 1, 0, 0, 0, 3130, 427, 1, 0, 0, 0, 3131, 3132, 5, 189, 0, 0, 3132, 3133, 5, 426, 0, 0, 3133, 429, 1, 0, 0, 0, 3134, 3136, 5, 101, 0, 0, 3135, 3137, 3, 30, 15, 0, 3136, 3135, 1, 0, 0, 0, 3136, 3137, 1, 0, 0, 0, 3137, 3138, 1, 0, 0, 0, 3138, 3139, 5, 237, 0, 0, 3139, 3145, 3, 646, 323, 0, 3140, 3141, 5, 397, 0, 0, 3141, 3142, 5, 237, 0, 0, 3142, 3144, 3, 646, 323, 0, 3143, 3140, 1, 0, 0, 0, 3144, 3147, 1, 0, 0, 0, 3145, 3143, 1, 0, 0, 0, 3145, 3146, 1, 0, 0, 0, 3146, 3150, 1, 0, 0, 0, 3147, 3145, 1, 0, 0, 0, 3148, 3149, 5, 152, 0, 0, 3149, 3151, 5, 254, 0, 0, 3150, 3148, 1, 0, 0, 0, 3150, 3151, 1, 0, 0, 0, 3151, 3153, 1, 0, 0, 0, 3152, 3154, 5, 255, 0, 0, 3153, 3152, 1, 0, 0, 0, 3153, 3154, 1, 0, 0, 0, 3154, 3156, 1, 0, 0, 0, 3155, 3157, 3, 14, 7, 0, 3156, 3155, 1, 0, 0, 0, 3156, 3157, 1, 0, 0, 0, 3157, 431, 1, 0, 0, 0, 3158, 3161, 3, 588, 294, 0, 3159, 3161, 3, 298, 149, 0, 3160, 3158, 1, 0, 0, 0, 3160, 3159, 1, 0, 0, 0, 3161, 3162, 1, 0, 0, 0, 3162, 3163, 5, 405, 0, 0, 3163, 3164, 5, 426, 0, 0, 3164, 433, 1, 0, 0, 0, 3165, 3175, 5, 115, 0, 0, 3166, 3167, 5, 289, 0, 0, 3167, 3168, 5, 399, 0, 0, 3168, 3176, 7, 27, 0, 0, 3169, 3170, 5, 118, 0, 0, 3170, 3171, 5, 399, 0, 0, 3171, 3176, 5, 426, 0, 0, 3172, 3173, 5, 306, 0, 0, 3173, 3174, 5, 399, 0, 0, 3174, 3176, 5, 431, 0, 0, 3175, 3166, 1, 0, 0, 0, 3175, 3169, 1, 0, 0, 0, 3175, 3172, 1, 0, 0, 0, 3176, 3177, 1, 0, 0, 0, 3177, 3178, 5, 400, 0, 0, 3178, 435, 1, 0, 0, 0, 3179, 3180, 5, 160, 0, 0, 3180, 3181, 5, 426, 0, 0, 3181, 3182, 5, 233, 0, 0, 3182, 3183, 5, 426, 0, 0, 3183, 3184, 5, 301, 0, 0, 3184, 3189, 5, 426, 0, 0, 3185, 3186, 5, 159, 0, 0, 3186, 3187, 5, 426, 0, 0, 3187, 3188, 5, 232, 0, 0, 3188, 3190, 5, 426, 0, 0, 3189, 3185, 1, 0, 0, 0, 3189, 3190, 1, 0, 0, 0, 3190, 3193, 1, 0, 0, 0, 3191, 3193, 3, 654, 327, 0, 3192, 3179, 1, 0, 0, 0, 3192, 3191, 1, 0, 0, 0, 3193, 437, 1, 0, 0, 0, 3194, 3195, 5, 184, 0, 0, 3195, 3204, 5, 128, 0, 0, 3196, 3197, 5, 184, 0, 0, 3197, 3198, 5, 128, 0, 0, 3198, 3199, 3, 654, 327, 0, 3199, 3200, 5, 426, 0, 0, 3200, 3204, 1, 0, 0, 0, 3201, 3202, 5, 184, 0, 0, 3202, 3204, 3, 482, 241, 0, 3203, 3194, 1, 0, 0, 0, 3203, 3196, 1, 0, 0, 0, 3203, 3201, 1, 0, 0, 0, 3204, 439, 1, 0, 0, 0, 3205, 3207, 5, 58, 0, 0, 3206, 3208, 5, 333, 0, 0, 3207, 3206, 1, 0, 0, 0, 3207, 3208, 1, 0, 0, 0, 3208, 3210, 1, 0, 0, 0, 3209, 3211, 5, 345, 0, 0, 3210, 3209, 1, 0, 0, 0, 3210, 3211, 1, 0, 0, 0, 3211, 3213, 1, 0, 0, 0, 3212, 3214, 5, 123, 0, 0, 3213, 3212, 1, 0, 0, 0, 3213, 3214, 1, 0, 0, 0, 3214, 3215, 1, 0, 0, 0, 3215, 3217, 5, 329, 0, 0, 3216, 3218, 3, 32, 16, 0, 3217, 3216, 1, 0, 0, 0, 3217, 3218, 1, 0, 0, 0, 3218, 3219, 1, 0, 0, 0, 3219, 3276, 3, 484, 242, 0, 3220, 3222, 3, 438, 219, 0, 3221, 3223, 3, 200, 100, 0, 3222, 3221, 1, 0, 0, 0, 3222, 3223, 1, 0, 0, 0, 3223, 3225, 1, 0, 0, 0, 3224, 3226, 3, 222, 111, 0, 3225, 3224, 1, 0, 0, 0, 3225, 3226, 1, 0, 0, 0, 3226, 3228, 1, 0, 0, 0, 3227, 3229, 3, 246, 123, 0, 3228, 3227, 1, 0, 0, 0, 3228, 3229, 1, 0, 0, 0, 3229, 3231, 1, 0, 0, 0, 3230, 3232, 3, 428, 214, 0, 3231, 3230, 1, 0, 0, 0, 3231, 3232, 1, 0, 0, 0, 3232, 3234, 1, 0, 0, 0, 3233, 3235, 3, 224, 112, 0, 3234, 3233, 1, 0, 0, 0, 3234, 3235, 1, 0, 0, 0, 3235, 3237, 1, 0, 0, 0, 3236, 3238, 3, 198, 99, 0, 3237, 3236, 1, 0, 0, 0, 3237, 3238, 1, 0, 0, 0, 3238, 3277, 1, 0, 0, 0, 3239, 3240, 5, 399, 0, 0, 3240, 3241, 3, 250, 125, 0, 3241, 3242, 5, 400, 0, 0, 3242, 3244, 1, 0, 0, 0, 3243, 3239, 1, 0, 0, 0, 3243, 3244, 1, 0, 0, 0, 3244, 3246, 1, 0, 0, 0, 3245, 3247, 3, 196, 98, 0, 3246, 3245, 1, 0, 0, 0, 3246, 3247, 1, 0, 0, 0, 3247, 3249, 1, 0, 0, 0, 3248, 3250, 3, 200, 100, 0, 3249, 3248, 1, 0, 0, 0, 3249, 3250, 1, 0, 0, 0, 3250, 3252, 1, 0, 0, 0, 3251, 3253, 3, 208, 104, 0, 3252, 3251, 1, 0, 0, 0, 3252, 3253, 1, 0, 0, 0, 3253, 3255, 1, 0, 0, 0, 3254, 3256, 3, 210, 105, 0, 3255, 3254, 1, 0, 0, 0, 3255, 3256, 1, 0, 0, 0, 3256, 3258, 1, 0, 0, 0, 3257, 3259, 3, 222, 111, 0, 3258, 3257, 1, 0, 0, 0, 3258, 3259, 1, 0, 0, 0, 3259, 3261, 1, 0, 0, 0, 3260, 3262, 3, 246, 123, 0, 3261, 3260, 1, 0, 0, 0, 3261, 3262, 1, 0, 0, 0, 3262, 3264, 1, 0, 0, 0, 3263, 3265, 3, 428, 214, 0, 3264, 3263, 1, 0, 0, 0, 3264, 3265, 1, 0, 0, 0, 3265, 3267, 1, 0, 0, 0, 3266, 3268, 3, 224, 112, 0, 3267, 3266, 1, 0, 0, 0, 3267, 3268, 1, 0, 0, 0, 3268, 3270, 1, 0, 0, 0, 3269, 3271, 3, 198, 99, 0, 3270, 3269, 1, 0, 0, 0, 3270, 3271, 1, 0, 0, 0, 3271, 3274, 1, 0, 0, 0, 3272, 3273, 5, 17, 0, 0, 3273, 3275, 3, 384, 192, 0, 3274, 3272, 1, 0, 0, 0, 3274, 3275, 1, 0, 0, 0, 3275, 3277, 1, 0, 0, 0, 3276, 3220, 1, 0, 0, 0, 3276, 3243, 1, 0, 0, 0, 3277, 3341, 1, 0, 0, 0, 3278, 3279, 5, 58, 0, 0, 3279, 3280, 5, 195, 0, 0, 3280, 3282, 5, 329, 0, 0, 3281, 3283, 3, 32, 16, 0, 3282, 3281, 1, 0, 0, 0, 3282, 3283, 1, 0, 0, 0, 3283, 3284, 1, 0, 0, 0, 3284, 3338, 3, 484, 242, 0, 3285, 3287, 3, 438, 219, 0, 3286, 3288, 3, 222, 111, 0, 3287, 3286, 1, 0, 0, 0, 3287, 3288, 1, 0, 0, 0, 3288, 3290, 1, 0, 0, 0, 3289, 3291, 3, 246, 123, 0, 3290, 3289, 1, 0, 0, 0, 3290, 3291, 1, 0, 0, 0, 3291, 3293, 1, 0, 0, 0, 3292, 3294, 3, 428, 214, 0, 3293, 3292, 1, 0, 0, 0, 3293, 3294, 1, 0, 0, 0, 3294, 3296, 1, 0, 0, 0, 3295, 3297, 3, 224, 112, 0, 3296, 3295, 1, 0, 0, 0, 3296, 3297, 1, 0, 0, 0, 3297, 3299, 1, 0, 0, 0, 3298, 3300, 3, 198, 99, 0, 3299, 3298, 1, 0, 0, 0, 3299, 3300, 1, 0, 0, 0, 3300, 3339, 1, 0, 0, 0, 3301, 3302, 5, 399, 0, 0, 3302, 3303, 3, 250, 125, 0, 3303, 3304, 5, 400, 0, 0, 3304, 3306, 1, 0, 0, 0, 3305, 3301, 1, 0, 0, 0, 3305, 3306, 1, 0, 0, 0, 3306, 3308, 1, 0, 0, 0, 3307, 3309, 3, 196, 98, 0, 3308, 3307, 1, 0, 0, 0, 3308, 3309, 1, 0, 0, 0, 3309, 3311, 1, 0, 0, 0, 3310, 3312, 3, 200, 100, 0, 3311, 3310, 1, 0, 0, 0, 3311, 3312, 1, 0, 0, 0, 3312, 3314, 1, 0, 0, 0, 3313, 3315, 3, 208, 104, 0, 3314, 3313, 1, 0, 0, 0, 3314, 3315, 1, 0, 0, 0, 3315, 3317, 1, 0, 0, 0, 3316, 3318, 3, 210, 105, 0, 3317, 3316, 1, 0, 0, 0, 3317, 3318, 1, 0, 0, 0, 3318, 3320, 1, 0, 0, 0, 3319, 3321, 3, 222, 111, 0, 3320, 3319, 1, 0, 0, 0, 3320, 3321, 1, 0, 0, 0, 3321, 3323, 1, 0, 0, 0, 3322, 3324, 3, 246, 123, 0, 3323, 3322, 1, 0, 0, 0, 3323, 3324, 1, 0, 0, 0, 3324, 3326, 1, 0, 0, 0, 3325, 3327, 3, 428, 214, 0, 3326, 3325, 1, 0, 0, 0, 3326, 3327, 1, 0, 0, 0, 3327, 3329, 1, 0, 0, 0, 3328, 3330, 3, 224, 112, 0, 3329, 3328, 1, 0, 0, 0, 3329, 3330, 1, 0, 0, 0, 3330, 3332, 1, 0, 0, 0, 3331, 3333, 3, 198, 99, 0, 3332, 3331, 1, 0, 0, 0, 3332, 3333, 1, 0, 0, 0, 3333, 3336, 1, 0, 0, 0, 3334, 3335, 5, 17, 0, 0, 3335, 3337, 3, 384, 192, 0, 3336, 3334, 1, 0, 0, 0, 3336, 3337, 1, 0, 0, 0, 3337, 3339, 1, 0, 0, 0, 3338, 3285, 1, 0, 0, 0, 3338, 3305, 1, 0, 0, 0, 3339, 3341, 1, 0, 0, 0, 3340, 3205, 1, 0, 0, 0, 3340, 3278, 1, 0, 0, 0, 3341, 441, 1, 0, 0, 0, 3342, 3343, 5, 58, 0, 0, 3343, 3345, 5, 69, 0, 0, 3344, 3346, 3, 32, 16, 0, 3345, 3344, 1, 0, 0, 0, 3345, 3346, 1, 0, 0, 0, 3346, 3347, 1, 0, 0, 0, 3347, 3350, 3, 654, 327, 0, 3348, 3349, 5, 352, 0, 0, 3349, 3351, 5, 426, 0, 0, 3350, 3348, 1, 0, 0, 0, 3350, 3351, 1, 0, 0, 0, 3351, 3354, 1, 0, 0, 0, 3352, 3353, 5, 367, 0, 0, 3353, 3355, 5, 426, 0, 0, 3354, 3352, 1, 0, 0, 0, 3354, 3355, 1, 0, 0, 0, 3355, 3358, 1, 0, 0, 0, 3356, 3357, 5, 47, 0, 0, 3357, 3359, 5, 426, 0, 0, 3358, 3356, 1, 0, 0, 0, 3358, 3359, 1, 0, 0, 0, 3359, 3363, 1, 0, 0, 0, 3360, 3361, 5, 387, 0, 0, 3361, 3362, 5, 77, 0, 0, 3362, 3364, 3, 230, 115, 0, 3363, 3360, 1, 0, 0, 0, 3363, 3364, 1, 0, 0, 0, 3364, 443, 1, 0, 0, 0, 3365, 3366, 5, 101, 0, 0, 3366, 3368, 5, 69, 0, 0, 3367, 3369, 3, 30, 15, 0, 3368, 3367, 1, 0, 0, 0, 3368, 3369, 1, 0, 0, 0, 3369, 3370, 1, 0, 0, 0, 3370, 3371, 3, 654, 327, 0, 3371, 445, 1, 0, 0, 0, 3372, 3373, 3, 654, 327, 0, 3373, 3374, 5, 395, 0, 0, 3374, 3376, 1, 0, 0, 0, 3375, 3372, 1, 0, 0, 0, 3376, 3379, 1, 0, 0, 0, 3377, 3375, 1, 0, 0, 0, 3377, 3378, 1, 0, 0, 0, 3378, 3380, 1, 0, 0, 0, 3379, 3377, 1, 0, 0, 0, 3380, 3381, 5, 415, 0, 0, 3381, 447, 1, 0, 0, 0, 3382, 3387, 3, 596, 298, 0, 3383, 3384, 5, 397, 0, 0, 3384, 3386, 3, 596, 298, 0, 3385, 3383, 1, 0, 0, 0, 3386, 3389, 1, 0, 0, 0, 3387, 3385, 1, 0, 0, 0, 3387, 3388, 1, 0, 0, 0, 3388, 449, 1, 0, 0, 0, 3389, 3387, 1, 0, 0, 0, 3390, 3395, 3, 654, 327, 0, 3391, 3392, 5, 397, 0, 0, 3392, 3394, 3, 654, 327, 0, 3393, 3391, 1, 0, 0, 0, 3394, 3397, 1, 0, 0, 0, 3395, 3393, 1, 0, 0, 0, 3395, 3396, 1, 0, 0, 0, 3396, 451, 1, 0, 0, 0, 3397, 3395, 1, 0, 0, 0, 3398, 3399, 5, 139, 0, 0, 3399, 3400, 3, 454, 227, 0, 3400, 453, 1, 0, 0, 0, 3401, 3402, 5, 359, 0, 0, 3402, 3405, 3, 462, 231, 0, 3403, 3404, 5, 397, 0, 0, 3404, 3406, 3, 462, 231, 0, 3405, 3403, 1, 0, 0, 0, 3406, 3407, 1, 0, 0, 0, 3407, 3405, 1, 0, 0, 0, 3407, 3408, 1, 0, 0, 0, 3408, 3411, 1, 0, 0, 0, 3409, 3411, 3, 458, 229, 0, 3410, 3401, 1, 0, 0, 0, 3410, 3409, 1, 0, 0, 0, 3411, 455, 1, 0, 0, 0, 3412, 3416, 3, 472, 236, 0, 3413, 3415, 3, 466, 233, 0, 3414, 3413, 1, 0, 0, 0, 3415, 3418, 1, 0, 0, 0, 3416, 3414, 1, 0, 0, 0, 3416, 3417, 1, 0, 0, 0, 3417, 3445, 1, 0, 0, 0, 3418, 3416, 1, 0, 0, 0, 3419, 3423, 3, 506, 253, 0, 3420, 3422, 3, 466, 233, 0, 3421, 3420, 1, 0, 0, 0, 3422, 3425, 1, 0, 0, 0, 3423, 3421, 1, 0, 0, 0, 3423, 3424, 1, 0, 0, 0, 3424, 3445, 1, 0, 0, 0, 3425, 3423, 1, 0, 0, 0, 3426, 3430, 3, 490, 245, 0, 3427, 3429, 3, 466, 233, 0, 3428, 3427, 1, 0, 0, 0, 3429, 3432, 1, 0, 0, 0, 3430, 3428, 1, 0, 0, 0, 3430, 3431, 1, 0, 0, 0, 3431, 3445, 1, 0, 0, 0, 3432, 3430, 1, 0, 0, 0, 3433, 3437, 3, 496, 248, 0, 3434, 3436, 3, 466, 233, 0, 3435, 3434, 1, 0, 0, 0, 3436, 3439, 1, 0, 0, 0, 3437, 3435, 1, 0, 0, 0, 3437, 3438, 1, 0, 0, 0, 3438, 3445, 1, 0, 0, 0, 3439, 3437, 1, 0, 0, 0, 3440, 3441, 5, 399, 0, 0, 3441, 3442, 3, 458, 229, 0, 3442, 3443, 5, 400, 0, 0, 3443, 3445, 1, 0, 0, 0, 3444, 3412, 1, 0, 0, 0, 3444, 3419, 1, 0, 0, 0, 3444, 3426, 1, 0, 0, 0, 3444, 3433, 1, 0, 0, 0, 3444, 3440, 1, 0, 0, 0, 3445, 457, 1, 0, 0, 0, 3446, 3464, 3, 456, 228, 0, 3447, 3448, 3, 464, 232, 0, 3448, 3460, 3, 460, 230, 0, 3449, 3456, 5, 224, 0, 0, 3450, 3457, 3, 596, 298, 0, 3451, 3454, 3, 260, 130, 0, 3452, 3453, 5, 405, 0, 0, 3453, 3455, 3, 260, 130, 0, 3454, 3452, 1, 0, 0, 0, 3454, 3455, 1, 0, 0, 0, 3455, 3457, 1, 0, 0, 0, 3456, 3450, 1, 0, 0, 0, 3456, 3451, 1, 0, 0, 0, 3457, 3461, 1, 0, 0, 0, 3458, 3459, 5, 370, 0, 0, 3459, 3461, 3, 268, 134, 0, 3460, 3449, 1, 0, 0, 0, 3460, 3458, 1, 0, 0, 0, 3460, 3461, 1, 0, 0, 0, 3461, 3463, 1, 0, 0, 0, 3462, 3447, 1, 0, 0, 0, 3463, 3466, 1, 0, 0, 0, 3464, 3462, 1, 0, 0, 0, 3464, 3465, 1, 0, 0, 0, 3465, 459, 1, 0, 0, 0, 3466, 3464, 1, 0, 0, 0, 3467, 3472, 3, 472, 236, 0, 3468, 3472, 3, 506, 253, 0, 3469, 3472, 3, 490, 245, 0, 3470, 3472, 3, 496, 248, 0, 3471, 3467, 1, 0, 0, 0, 3471, 3468, 1, 0, 0, 0, 3471, 3469, 1, 0, 0, 0, 3471, 3470, 1, 0, 0, 0, 3472, 3476, 1, 0, 0, 0, 3473, 3475, 3, 466, 233, 0, 3474, 3473, 1, 0, 0, 0, 3475, 3478, 1, 0, 0, 0, 3476, 3474, 1, 0, 0, 0, 3476, 3477, 1, 0, 0, 0, 3477, 461, 1, 0, 0, 0, 3478, 3476, 1, 0, 0, 0, 3479, 3481, 5, 250, 0, 0, 3480, 3479, 1, 0, 0, 0, 3480, 3481, 1, 0, 0, 0, 3481, 3482, 1, 0, 0, 0, 3482, 3484, 3, 480, 240, 0, 3483, 3485, 3, 470, 235, 0, 3484, 3483, 1, 0, 0, 0, 3484, 3485, 1, 0, 0, 0, 3485, 3490, 1, 0, 0, 0, 3486, 3488, 5, 17, 0, 0, 3487, 3486, 1, 0, 0, 0, 3487, 3488, 1, 0, 0, 0, 3488, 3489, 1, 0, 0, 0, 3489, 3491, 3, 654, 327, 0, 3490, 3487, 1, 0, 0, 0, 3490, 3491, 1, 0, 0, 0, 3491, 3492, 1, 0, 0, 0, 3492, 3493, 5, 399, 0, 0, 3493, 3494, 3, 448, 224, 0, 3494, 3495, 5, 400, 0, 0, 3495, 463, 1, 0, 0, 0, 3496, 3511, 5, 397, 0, 0, 3497, 3508, 5, 157, 0, 0, 3498, 3508, 5, 60, 0, 0, 3499, 3501, 7, 28, 0, 0, 3500, 3502, 5, 231, 0, 0, 3501, 3500, 1, 0, 0, 0, 3501, 3502, 1, 0, 0, 0, 3502, 3508, 1, 0, 0, 0, 3503, 3505, 5, 180, 0, 0, 3504, 3506, 7, 29, 0, 0, 3505, 3504, 1, 0, 0, 0, 3505, 3506, 1, 0, 0, 0, 3506, 3508, 1, 0, 0, 0, 3507, 3497, 1, 0, 0, 0, 3507, 3498, 1, 0, 0, 0, 3507, 3499, 1, 0, 0, 0, 3507, 3503, 1, 0, 0, 0, 3507, 3508, 1, 0, 0, 0, 3508, 3509, 1, 0, 0, 0, 3509, 3511, 5, 171, 0, 0, 3510, 3496, 1, 0, 0, 0, 3510, 3507, 1, 0, 0, 0, 3511, 465, 1, 0, 0, 0, 3512, 3513, 5, 178, 0, 0, 3513, 3514, 5, 378, 0, 0, 3514, 3515, 5, 231, 0, 0, 3515, 3516, 3, 566, 283, 0, 3516, 3526, 3, 468, 234, 0, 3517, 3518, 5, 17, 0, 0, 3518, 3523, 3, 654, 327, 0, 3519, 3520, 5, 397, 0, 0, 3520, 3522, 3, 654, 327, 0, 3521, 3519, 1, 0, 0, 0, 3522, 3525, 1, 0, 0, 0, 3523, 3521, 1, 0, 0, 0, 3523, 3524, 1, 0, 0, 0, 3524, 3527, 1, 0, 0, 0, 3525, 3523, 1, 0, 0, 0, 3526, 3517, 1, 0, 0, 0, 3526, 3527, 1, 0, 0, 0, 3527, 3570, 1, 0, 0, 0, 3528, 3530, 5, 397, 0, 0, 3529, 3528, 1, 0, 0, 0, 3529, 3530, 1, 0, 0, 0, 3530, 3531, 1, 0, 0, 0, 3531, 3567, 5, 178, 0, 0, 3532, 3533, 5, 378, 0, 0, 3533, 3534, 3, 566, 283, 0, 3534, 3544, 3, 468, 234, 0, 3535, 3536, 5, 17, 0, 0, 3536, 3541, 3, 654, 327, 0, 3537, 3538, 5, 397, 0, 0, 3538, 3540, 3, 654, 327, 0, 3539, 3537, 1, 0, 0, 0, 3540, 3543, 1, 0, 0, 0, 3541, 3539, 1, 0, 0, 0, 3541, 3542, 1, 0, 0, 0, 3542, 3545, 1, 0, 0, 0, 3543, 3541, 1, 0, 0, 0, 3544, 3535, 1, 0, 0, 0, 3544, 3545, 1, 0, 0, 0, 3545, 3568, 1, 0, 0, 0, 3546, 3547, 5, 329, 0, 0, 3547, 3548, 5, 399, 0, 0, 3548, 3549, 3, 502, 251, 0, 3549, 3551, 5, 400, 0, 0, 3550, 3552, 5, 17, 0, 0, 3551, 3550, 1, 0, 0, 0, 3551, 3552, 1, 0, 0, 0, 3552, 3553, 1, 0, 0, 0, 3553, 3565, 3, 468, 234, 0, 3554, 3555, 5, 399, 0, 0, 3555, 3560, 3, 654, 327, 0, 3556, 3557, 5, 397, 0, 0, 3557, 3559, 3, 654, 327, 0, 3558, 3556, 1, 0, 0, 0, 3559, 3562, 1, 0, 0, 0, 3560, 3558, 1, 0, 0, 0, 3560, 3561, 1, 0, 0, 0, 3561, 3563, 1, 0, 0, 0, 3562, 3560, 1, 0, 0, 0, 3563, 3564, 5, 400, 0, 0, 3564, 3566, 1, 0, 0, 0, 3565, 3554, 1, 0, 0, 0, 3565, 3566, 1, 0, 0, 0, 3566, 3568, 1, 0, 0, 0, 3567, 3532, 1, 0, 0, 0, 3567, 3546, 1, 0, 0, 0, 3568, 3570, 1, 0, 0, 0, 3569, 3512, 1, 0, 0, 0, 3569, 3529, 1, 0, 0, 0, 3570, 467, 1, 0, 0, 0, 3571, 3572, 3, 654, 327, 0, 3572, 469, 1, 0, 0, 0, 3573, 3574, 5, 331, 0, 0, 3574, 3575, 5, 399, 0, 0, 3575, 3576, 5, 30, 0, 0, 3576, 3577, 5, 431, 0, 0, 3577, 3578, 5, 230, 0, 0, 3578, 3579, 5, 221, 0, 0, 3579, 3589, 5, 431, 0, 0, 3580, 3581, 5, 224, 0, 0, 3581, 3586, 3, 596, 298, 0, 3582, 3583, 5, 397, 0, 0, 3583, 3585, 3, 596, 298, 0, 3584, 3582, 1, 0, 0, 0, 3585, 3588, 1, 0, 0, 0, 3586, 3584, 1, 0, 0, 0, 3586, 3587, 1, 0, 0, 0, 3587, 3590, 1, 0, 0, 0, 3588, 3586, 1, 0, 0, 0, 3589, 3580, 1, 0, 0, 0, 3589, 3590, 1, 0, 0, 0, 3590, 3591, 1, 0, 0, 0, 3591, 3601, 5, 400, 0, 0, 3592, 3593, 5, 331, 0, 0, 3593, 3597, 5, 399, 0, 0, 3594, 3595, 5, 431, 0, 0, 3595, 3598, 7, 30, 0, 0, 3596, 3598, 5, 430, 0, 0, 3597, 3594, 1, 0, 0, 0, 3597, 3596, 1, 0, 0, 0, 3598, 3599, 1, 0, 0, 0, 3599, 3601, 5, 400, 0, 0, 3600, 3573, 1, 0, 0, 0, 3600, 3592, 1, 0, 0, 0, 3601, 471, 1, 0, 0, 0, 3602, 3604, 3, 480, 240, 0, 3603, 3605, 3, 226, 113, 0, 3604, 3603, 1, 0, 0, 0, 3604, 3605, 1, 0, 0, 0, 3605, 3607, 1, 0, 0, 0, 3606, 3608, 3, 470, 235, 0, 3607, 3606, 1, 0, 0, 0, 3607, 3608, 1, 0, 0, 0, 3608, 3610, 1, 0, 0, 0, 3609, 3611, 3, 474, 237, 0, 3610, 3609, 1, 0, 0, 0, 3610, 3611, 1, 0, 0, 0, 3611, 3616, 1, 0, 0, 0, 3612, 3614, 5, 17, 0, 0, 3613, 3612, 1, 0, 0, 0, 3613, 3614, 1, 0, 0, 0, 3614, 3615, 1, 0, 0, 0, 3615, 3617, 3, 654, 327, 0, 3616, 3613, 1, 0, 0, 0, 3616, 3617, 1, 0, 0, 0, 3617, 473, 1, 0, 0, 0, 3618, 3628, 5, 134, 0, 0, 3619, 3620, 5, 327, 0, 0, 3620, 3621, 5, 17, 0, 0, 3621, 3622, 5, 221, 0, 0, 3622, 3629, 3, 596, 298, 0, 3623, 3624, 5, 134, 0, 0, 3624, 3625, 5, 328, 0, 0, 3625, 3626, 5, 17, 0, 0, 3626, 3627, 5, 221, 0, 0, 3627, 3629, 5, 431, 0, 0, 3628, 3619, 1, 0, 0, 0, 3628, 3623, 1, 0, 0, 0, 3629, 475, 1, 0, 0, 0, 3630, 3631, 3, 654, 327, 0, 3631, 477, 1, 0, 0, 0, 3632, 3633, 3, 654, 327, 0, 3633, 479, 1, 0, 0, 0, 3634, 3637, 3, 482, 241, 0, 3635, 3637, 3, 486, 243, 0, 3636, 3634, 1, 0, 0, 0, 3636, 3635, 1, 0, 0, 0, 3637, 481, 1, 0, 0, 0, 3638, 3639, 3, 654, 327, 0, 3639, 3640, 5, 395, 0, 0, 3640, 3643, 3, 654, 327, 0, 3641, 3642, 5, 395, 0, 0, 3642, 3644, 3, 654, 327, 0, 3643, 3641, 1, 0, 0, 0, 3643, 3644, 1, 0, 0, 0, 3644, 3647, 1, 0, 0, 0, 3645, 3647, 3, 654, 327, 0, 3646, 3638, 1, 0, 0, 0, 3646, 3645, 1, 0, 0, 0, 3647, 483, 1, 0, 0, 0, 3648, 3649, 3, 654, 327, 0, 3649, 3650, 5, 395, 0, 0, 3650, 3653, 3, 654, 327, 0, 3651, 3652, 5, 395, 0, 0, 3652, 3654, 3, 654, 327, 0, 3653, 3651, 1, 0, 0, 0, 3653, 3654, 1, 0, 0, 0, 3654, 3657, 1, 0, 0, 0, 3655, 3657, 3, 654, 327, 0, 3656, 3648, 1, 0, 0, 0, 3656, 3655, 1, 0, 0, 0, 3657, 485, 1, 0, 0, 0, 3658, 3659, 3, 654, 327, 0, 3659, 3660, 5, 395, 0, 0, 3660, 3662, 1, 0, 0, 0, 3661, 3658, 1, 0, 0, 0, 3661, 3662, 1, 0, 0, 0, 3662, 3663, 1, 0, 0, 0, 3663, 3664, 3, 654, 327, 0, 3664, 487, 1, 0, 0, 0, 3665, 3666, 3, 654, 327, 0, 3666, 3667, 5, 395, 0, 0, 3667, 3669, 1, 0, 0, 0, 3668, 3665, 1, 0, 0, 0, 3668, 3669, 1, 0, 0, 0, 3669, 3670, 1, 0, 0, 0, 3670, 3671, 3, 654, 327, 0, 3671, 489, 1, 0, 0, 0, 3672, 3673, 5, 399, 0, 0, 3673, 3674, 3, 364, 182, 0, 3674, 3676, 5, 400, 0, 0, 3675, 3677, 5, 17, 0, 0, 3676, 3675, 1, 0, 0, 0, 3676, 3677, 1, 0, 0, 0, 3677, 3678, 1, 0, 0, 0, 3678, 3679, 3, 654, 327, 0, 3679, 491, 1, 0, 0, 0, 3680, 3682, 3, 558, 279, 0, 3681, 3683, 3, 556, 278, 0, 3682, 3681, 1, 0, 0, 0, 3682, 3683, 1, 0, 0, 0, 3683, 3692, 1, 0, 0, 0, 3684, 3692, 3, 556, 278, 0, 3685, 3687, 3, 562, 281, 0, 3686, 3688, 3, 564, 282, 0, 3687, 3686, 1, 0, 0, 0, 3687, 3688, 1, 0, 0, 0, 3688, 3692, 1, 0, 0, 0, 3689, 3692, 3, 564, 282, 0, 3690, 3692, 3, 560, 280, 0, 3691, 3680, 1, 0, 0, 0, 3691, 3684, 1, 0, 0, 0, 3691, 3685, 1, 0, 0, 0, 3691, 3689, 1, 0, 0, 0, 3691, 3690, 1, 0, 0, 0, 3692, 493, 1, 0, 0, 0, 3693, 3697, 3, 490, 245, 0, 3694, 3697, 3, 472, 236, 0, 3695, 3697, 3, 496, 248, 0, 3696, 3693, 1, 0, 0, 0, 3696, 3694, 1, 0, 0, 0, 3696, 3695, 1, 0, 0, 0, 3697, 495, 1, 0, 0, 0, 3698, 3700, 3, 498, 249, 0, 3699, 3701, 3, 654, 327, 0, 3700, 3699, 1, 0, 0, 0, 3700, 3701, 1, 0, 0, 0, 3701, 497, 1, 0, 0, 0, 3702, 3703, 3, 654, 327, 0, 3703, 3704, 5, 399, 0, 0, 3704, 3705, 5, 224, 0, 0, 3705, 3707, 3, 494, 247, 0, 3706, 3708, 3, 492, 246, 0, 3707, 3706, 1, 0, 0, 0, 3707, 3708, 1, 0, 0, 0, 3708, 3724, 1, 0, 0, 0, 3709, 3710, 5, 432, 0, 0, 3710, 3711, 5, 399, 0, 0, 3711, 3712, 3, 596, 298, 0, 3712, 3721, 5, 400, 0, 0, 3713, 3714, 5, 397, 0, 0, 3714, 3715, 5, 432, 0, 0, 3715, 3716, 5, 399, 0, 0, 3716, 3717, 3, 596, 298, 0, 3717, 3718, 5, 400, 0, 0, 3718, 3720, 1, 0, 0, 0, 3719, 3713, 1, 0, 0, 0, 3720, 3723, 1, 0, 0, 0, 3721, 3719, 1, 0, 0, 0, 3721, 3722, 1, 0, 0, 0, 3722, 3725, 1, 0, 0, 0, 3723, 3721, 1, 0, 0, 0, 3724, 3709, 1, 0, 0, 0, 3724, 3725, 1, 0, 0, 0, 3725, 3726, 1, 0, 0, 0, 3726, 3727, 5, 400, 0, 0, 3727, 499, 1, 0, 0, 0, 3728, 3731, 5, 384, 0, 0, 3729, 3732, 3, 596, 298, 0, 3730, 3732, 3, 260, 130, 0, 3731, 3729, 1, 0, 0, 0, 3731, 3730, 1, 0, 0, 0, 3732, 501, 1, 0, 0, 0, 3733, 3752, 5, 374, 0, 0, 3734, 3739, 3, 552, 276, 0, 3735, 3736, 5, 397, 0, 0, 3736, 3738, 3, 552, 276, 0, 3737, 3735, 1, 0, 0, 0, 3738, 3741, 1, 0, 0, 0, 3739, 3737, 1, 0, 0, 0, 3739, 3740, 1, 0, 0, 0, 3740, 3753, 1, 0, 0, 0, 3741, 3739, 1, 0, 0, 0, 3742, 3743, 5, 399, 0, 0, 3743, 3744, 3, 548, 274, 0, 3744, 3749, 5, 400, 0, 0, 3745, 3746, 5, 397, 0, 0, 3746, 3748, 3, 552, 276, 0, 3747, 3745, 1, 0, 0, 0, 3748, 3751, 1, 0, 0, 0, 3749, 3747, 1, 0, 0, 0, 3749, 3750, 1, 0, 0, 0, 3750, 3753, 1, 0, 0, 0, 3751, 3749, 1, 0, 0, 0, 3752, 3734, 1, 0, 0, 0, 3752, 3742, 1, 0, 0, 0, 3753, 503, 1, 0, 0, 0, 3754, 3755, 5, 329, 0, 0, 3755, 3756, 5, 399, 0, 0, 3756, 3757, 3, 502, 251, 0, 3757, 3758, 5, 400, 0, 0, 3758, 505, 1, 0, 0, 0, 3759, 3761, 3, 504, 252, 0, 3760, 3762, 5, 17, 0, 0, 3761, 3760, 1, 0, 0, 0, 3761, 3762, 1, 0, 0, 0, 3762, 3763, 1, 0, 0, 0, 3763, 3773, 3, 468, 234, 0, 3764, 3765, 5, 399, 0, 0, 3765, 3770, 3, 654, 327, 0, 3766, 3767, 5, 397, 0, 0, 3767, 3769, 3, 654, 327, 0, 3768, 3766, 1, 0, 0, 0, 3769, 3772, 1, 0, 0, 0, 3770, 3768, 1, 0, 0, 0, 3770, 3771, 1, 0, 0, 0, 3771, 3774, 1, 0, 0, 0, 3772, 3770, 1, 0, 0, 0, 3773, 3764, 1, 0, 0, 0, 3773, 3774, 1, 0, 0, 0, 3774, 3775, 1, 0, 0, 0, 3775, 3776, 5, 400, 0, 0, 3776, 507, 1, 0, 0, 0, 3777, 3779, 5, 299, 0, 0, 3778, 3780, 5, 436, 0, 0, 3779, 3778, 1, 0, 0, 0, 3779, 3780, 1, 0, 0, 0, 3780, 3787, 1, 0, 0, 0, 3781, 3783, 7, 22, 0, 0, 3782, 3781, 1, 0, 0, 0, 3782, 3783, 1, 0, 0, 0, 3783, 3784, 1, 0, 0, 0, 3784, 3788, 3, 512, 256, 0, 3785, 3786, 5, 347, 0, 0, 3786, 3788, 3, 510, 255, 0, 3787, 3782, 1, 0, 0, 0, 3787, 3785, 1, 0, 0, 0, 3788, 3791, 1, 0, 0, 0, 3789, 3791, 3, 520, 260, 0, 3790, 3777, 1, 0, 0, 0, 3790, 3789, 1, 0, 0, 0, 3791, 509, 1, 0, 0, 0, 3792, 3793, 5, 399, 0, 0, 3793, 3794, 3, 524, 262, 0, 3794, 3795, 5, 400, 0, 0, 3795, 3796, 3, 212, 106, 0, 3796, 3797, 3, 216, 108, 0, 3797, 3798, 5, 370, 0, 0, 3798, 3811, 5, 426, 0, 0, 3799, 3809, 5, 17, 0, 0, 3800, 3803, 5, 399, 0, 0, 3801, 3804, 3, 450, 225, 0, 3802, 3804, 3, 248, 124, 0, 3803, 3801, 1, 0, 0, 0, 3803, 3802, 1, 0, 0, 0, 3804, 3805, 1, 0, 0, 0, 3805, 3806, 5, 400, 0, 0, 3806, 3810, 1, 0, 0, 0, 3807, 3810, 3, 450, 225, 0, 3808, 3810, 3, 248, 124, 0, 3809, 3800, 1, 0, 0, 0, 3809, 3807, 1, 0, 0, 0, 3809, 3808, 1, 0, 0, 0, 3810, 3812, 1, 0, 0, 0, 3811, 3799, 1, 0, 0, 0, 3811, 3812, 1, 0, 0, 0, 3812, 3813, 1, 0, 0, 0, 3813, 3814, 3, 212, 106, 0, 3814, 3815, 3, 214, 107, 0, 3815, 511, 1, 0, 0, 0, 3816, 3821, 3, 514, 257, 0, 3817, 3818, 5, 397, 0, 0, 3818, 3820, 3, 514, 257, 0, 3819, 3817, 1, 0, 0, 0, 3820, 3823, 1, 0, 0, 0, 3821, 3819, 1, 0, 0, 0, 3821, 3822, 1, 0, 0, 0, 3822, 513, 1, 0, 0, 0, 3823, 3821, 1, 0, 0, 0, 3824, 3850, 3, 446, 223, 0, 3825, 3828, 3, 516, 258, 0, 3826, 3828, 3, 518, 259, 0, 3827, 3825, 1, 0, 0, 0, 3827, 3826, 1, 0, 0, 0, 3828, 3845, 1, 0, 0, 0, 3829, 3831, 5, 17, 0, 0, 3830, 3829, 1, 0, 0, 0, 3830, 3831, 1, 0, 0, 0, 3831, 3832, 1, 0, 0, 0, 3832, 3846, 3, 654, 327, 0, 3833, 3834, 5, 17, 0, 0, 3834, 3835, 5, 399, 0, 0, 3835, 3840, 3, 654, 327, 0, 3836, 3837, 5, 397, 0, 0, 3837, 3839, 3, 654, 327, 0, 3838, 3836, 1, 0, 0, 0, 3839, 3842, 1, 0, 0, 0, 3840, 3838, 1, 0, 0, 0, 3840, 3841, 1, 0, 0, 0, 3841, 3843, 1, 0, 0, 0, 3842, 3840, 1, 0, 0, 0, 3843, 3844, 5, 400, 0, 0, 3844, 3846, 1, 0, 0, 0, 3845, 3830, 1, 0, 0, 0, 3845, 3833, 1, 0, 0, 0, 3845, 3846, 1, 0, 0, 0, 3846, 3850, 1, 0, 0, 0, 3847, 3848, 4, 257, 2, 0, 3848, 3850, 3, 698, 349, 0, 3849, 3824, 1, 0, 0, 0, 3849, 3827, 1, 0, 0, 0, 3849, 3847, 1, 0, 0, 0, 3850, 515, 1, 0, 0, 0, 3851, 3852, 3, 256, 128, 0, 3852, 517, 1, 0, 0, 0, 3853, 3854, 3, 596, 298, 0, 3854, 519, 1, 0, 0, 0, 3855, 3856, 7, 31, 0, 0, 3856, 3857, 3, 524, 262, 0, 3857, 3858, 3, 212, 106, 0, 3858, 3859, 3, 216, 108, 0, 3859, 3860, 5, 370, 0, 0, 3860, 3873, 5, 426, 0, 0, 3861, 3871, 5, 17, 0, 0, 3862, 3865, 5, 399, 0, 0, 3863, 3866, 3, 450, 225, 0, 3864, 3866, 3, 248, 124, 0, 3865, 3863, 1, 0, 0, 0, 3865, 3864, 1, 0, 0, 0, 3866, 3867, 1, 0, 0, 0, 3867, 3868, 5, 400, 0, 0, 3868, 3872, 1, 0, 0, 0, 3869, 3872, 3, 450, 225, 0, 3870, 3872, 3, 248, 124, 0, 3871, 3862, 1, 0, 0, 0, 3871, 3869, 1, 0, 0, 0, 3871, 3870, 1, 0, 0, 0, 3872, 3874, 1, 0, 0, 0, 3873, 3861, 1, 0, 0, 0, 3873, 3874, 1, 0, 0, 0, 3874, 3875, 1, 0, 0, 0, 3875, 3876, 3, 212, 106, 0, 3876, 3877, 3, 214, 107, 0, 3877, 521, 1, 0, 0, 0, 3878, 3881, 3, 446, 223, 0, 3879, 3881, 3, 596, 298, 0, 3880, 3878, 1, 0, 0, 0, 3880, 3879, 1, 0, 0, 0, 3881, 523, 1, 0, 0, 0, 3882, 3887, 3, 522, 261, 0, 3883, 3884, 5, 397, 0, 0, 3884, 3886, 3, 522, 261, 0, 3885, 3883, 1, 0, 0, 0, 3886, 3889, 1, 0, 0, 0, 3887, 3885, 1, 0, 0, 0, 3887, 3888, 1, 0, 0, 0, 3888, 525, 1, 0, 0, 0, 3889, 3887, 1, 0, 0, 0, 3890, 3891, 5, 386, 0, 0, 3891, 3892, 3, 654, 327, 0, 3892, 3893, 5, 17, 0, 0, 3893, 3901, 3, 528, 264, 0, 3894, 3895, 5, 397, 0, 0, 3895, 3896, 3, 654, 327, 0, 3896, 3897, 5, 17, 0, 0, 3897, 3898, 3, 528, 264, 0, 3898, 3900, 1, 0, 0, 0, 3899, 3894, 1, 0, 0, 0, 3900, 3903, 1, 0, 0, 0, 3901, 3899, 1, 0, 0, 0, 3901, 3902, 1, 0, 0, 0, 3902, 527, 1, 0, 0, 0, 3903, 3901, 1, 0, 0, 0, 3904, 3917, 3, 654, 327, 0, 3905, 3907, 5, 399, 0, 0, 3906, 3908, 3, 654, 327, 0, 3907, 3906, 1, 0, 0, 0, 3907, 3908, 1, 0, 0, 0, 3908, 3910, 1, 0, 0, 0, 3909, 3911, 3, 492, 246, 0, 3910, 3909, 1, 0, 0, 0, 3910, 3911, 1, 0, 0, 0, 3911, 3913, 1, 0, 0, 0, 3912, 3914, 3, 530, 265, 0, 3913, 3912, 1, 0, 0, 0, 3913, 3914, 1, 0, 0, 0, 3914, 3915, 1, 0, 0, 0, 3915, 3917, 5, 400, 0, 0, 3916, 3904, 1, 0, 0, 0, 3916, 3905, 1, 0, 0, 0, 3917, 529, 1, 0, 0, 0, 3918, 3932, 7, 32, 0, 0, 3919, 3920, 5, 354, 0, 0, 3920, 3926, 5, 247, 0, 0, 3921, 3922, 5, 62, 0, 0, 3922, 3926, 5, 291, 0, 0, 3923, 3924, 5, 431, 0, 0, 3924, 3926, 5, 247, 0, 0, 3925, 3919, 1, 0, 0, 0, 3925, 3921, 1, 0, 0, 0, 3925, 3923, 1, 0, 0, 0, 3926, 3933, 1, 0, 0, 0, 3927, 3928, 5, 25, 0, 0, 3928, 3929, 3, 532, 266, 0, 3929, 3930, 5, 11, 0, 0, 3930, 3931, 3, 532, 266, 0, 3931, 3933, 1, 0, 0, 0, 3932, 3925, 1, 0, 0, 0, 3932, 3927, 1, 0, 0, 0, 3933, 531, 1, 0, 0, 0, 3934, 3935, 7, 33, 0, 0, 3935, 3939, 7, 34, 0, 0, 3936, 3937, 5, 62, 0, 0, 3937, 3939, 5, 291, 0, 0, 3938, 3934, 1, 0, 0, 0, 3938, 3936, 1, 0, 0, 0, 3939, 533, 1, 0, 0, 0, 3940, 3941, 5, 144, 0, 0, 3941, 3947, 5, 32, 0, 0, 3942, 3948, 3, 256, 128, 0, 3943, 3948, 3, 536, 268, 0, 3944, 3948, 3, 538, 269, 0, 3945, 3946, 5, 399, 0, 0, 3946, 3948, 5, 400, 0, 0, 3947, 3942, 1, 0, 0, 0, 3947, 3943, 1, 0, 0, 0, 3947, 3944, 1, 0, 0, 0, 3947, 3945, 1, 0, 0, 0, 3948, 535, 1, 0, 0, 0, 3949, 3952, 5, 290, 0, 0, 3950, 3952, 5, 61, 0, 0, 3951, 3949, 1, 0, 0, 0, 3951, 3950, 1, 0, 0, 0, 3952, 3953, 1, 0, 0, 0, 3953, 3954, 5, 399, 0, 0, 3954, 3959, 3, 596, 298, 0, 3955, 3956, 5, 397, 0, 0, 3956, 3958, 3, 596, 298, 0, 3957, 3955, 1, 0, 0, 0, 3958, 3961, 1, 0, 0, 0, 3959, 3957, 1, 0, 0, 0, 3959, 3960, 1, 0, 0, 0, 3960, 3962, 1, 0, 0, 0, 3961, 3959, 1, 0, 0, 0, 3962, 3963, 5, 400, 0, 0, 3963, 537, 1, 0, 0, 0, 3964, 3969, 3, 554, 277, 0, 3965, 3966, 5, 387, 0, 0, 3966, 3970, 5, 290, 0, 0, 3967, 3968, 5, 387, 0, 0, 3968, 3970, 5, 61, 0, 0, 3969, 3965, 1, 0, 0, 0, 3969, 3967, 1, 0, 0, 0, 3969, 3970, 1, 0, 0, 0, 3970, 3984, 1, 0, 0, 0, 3971, 3972, 5, 145, 0, 0, 3972, 3973, 5, 305, 0, 0, 3973, 3974, 5, 399, 0, 0, 3974, 3979, 3, 540, 270, 0, 3975, 3976, 5, 397, 0, 0, 3976, 3978, 3, 540, 270, 0, 3977, 3975, 1, 0, 0, 0, 3978, 3981, 1, 0, 0, 0, 3979, 3977, 1, 0, 0, 0, 3979, 3980, 1, 0, 0, 0, 3980, 3982, 1, 0, 0, 0, 3981, 3979, 1, 0, 0, 0, 3982, 3983, 5, 400, 0, 0, 3983, 3985, 1, 0, 0, 0, 3984, 3971, 1, 0, 0, 0, 3984, 3985, 1, 0, 0, 0, 3985, 539, 1, 0, 0, 0, 3986, 3988, 5, 399, 0, 0, 3987, 3989, 3, 596, 298, 0, 3988, 3987, 1, 0, 0, 0, 3988, 3989, 1, 0, 0, 0, 3989, 3994, 1, 0, 0, 0, 3990, 3991, 5, 397, 0, 0, 3991, 3993, 3, 596, 298, 0, 3992, 3990, 1, 0, 0, 0, 3993, 3996, 1, 0, 0, 0, 3994, 3992, 1, 0, 0, 0, 3994, 3995, 1, 0, 0, 0, 3995, 3997, 1, 0, 0, 0, 3996, 3994, 1, 0, 0, 0, 3997, 4000, 5, 400, 0, 0, 3998, 4000, 3, 596, 298, 0, 3999, 3986, 1, 0, 0, 0, 3999, 3998, 1, 0, 0, 0, 4000, 541, 1, 0, 0, 0, 4001, 4004, 5, 146, 0, 0, 4002, 4005, 3, 596, 298, 0, 4003, 4005, 3, 260, 130, 0, 4004, 4002, 1, 0, 0, 0, 4004, 4003, 1, 0, 0, 0, 4005, 543, 1, 0, 0, 0, 4006, 4007, 5, 256, 0, 0, 4007, 4008, 3, 596, 298, 0, 4008, 545, 1, 0, 0, 0, 4009, 4012, 5, 83, 0, 0, 4010, 4012, 3, 596, 298, 0, 4011, 4009, 1, 0, 0, 0, 4011, 4010, 1, 0, 0, 0, 4012, 547, 1, 0, 0, 0, 4013, 4015, 3, 596, 298, 0, 4014, 4016, 5, 17, 0, 0, 4015, 4014, 1, 0, 0, 0, 4015, 4016, 1, 0, 0, 0, 4016, 4018, 1, 0, 0, 0, 4017, 4019, 3, 654, 327, 0, 4018, 4017, 1, 0, 0, 0, 4018, 4019, 1, 0, 0, 0, 4019, 4030, 1, 0, 0, 0, 4020, 4021, 5, 397, 0, 0, 4021, 4023, 3, 596, 298, 0, 4022, 4024, 5, 17, 0, 0, 4023, 4022, 1, 0, 0, 0, 4023, 4024, 1, 0, 0, 0, 4024, 4026, 1, 0, 0, 0, 4025, 4027, 3, 654, 327, 0, 4026, 4025, 1, 0, 0, 0, 4026, 4027, 1, 0, 0, 0, 4027, 4029, 1, 0, 0, 0, 4028, 4020, 1, 0, 0, 0, 4029, 4032, 1, 0, 0, 0, 4030, 4028, 1, 0, 0, 0, 4030, 4031, 1, 0, 0, 0, 4031, 549, 1, 0, 0, 0, 4032, 4030, 1, 0, 0, 0, 4033, 4036, 3, 552, 276, 0, 4034, 4036, 3, 554, 277, 0, 4035, 4033, 1, 0, 0, 0, 4035, 4034, 1, 0, 0, 0, 4036, 551, 1, 0, 0, 0, 4037, 4038, 5, 399, 0, 0, 4038, 4039, 3, 554, 277, 0, 4039, 4040, 5, 400, 0, 0, 4040, 553, 1, 0, 0, 0, 4041, 4048, 3, 546, 273, 0, 4042, 4043, 5, 397, 0, 0, 4043, 4045, 3, 546, 273, 0, 4044, 4042, 1, 0, 0, 0, 4045, 4046, 1, 0, 0, 0, 4046, 4044, 1, 0, 0, 0, 4046, 4047, 1, 0, 0, 0, 4047, 4049, 1, 0, 0, 0, 4048, 4044, 1, 0, 0, 0, 4048, 4049, 1, 0, 0, 0, 4049, 555, 1, 0, 0, 0, 4050, 4051, 5, 229, 0, 0, 4051, 4052, 5, 32, 0, 0, 4052, 4057, 3, 312, 156, 0, 4053, 4054, 5, 397, 0, 0, 4054, 4056, 3, 312, 156, 0, 4055, 4053, 1, 0, 0, 0, 4056, 4059, 1, 0, 0, 0, 4057, 4055, 1, 0, 0, 0, 4057, 4058, 1, 0, 0, 0, 4058, 557, 1, 0, 0, 0, 4059, 4057, 1, 0, 0, 0, 4060, 4061, 5, 237, 0, 0, 4061, 4062, 5, 32, 0, 0, 4062, 4063, 3, 550, 275, 0, 4063, 559, 1, 0, 0, 0, 4064, 4065, 5, 41, 0, 0, 4065, 4066, 5, 32, 0, 0, 4066, 4067, 3, 550, 275, 0, 4067, 561, 1, 0, 0, 0, 4068, 4069, 5, 97, 0, 0, 4069, 4070, 5, 32, 0, 0, 4070, 4071, 3, 550, 275, 0, 4071, 563, 1, 0, 0, 0, 4072, 4073, 5, 314, 0, 0, 4073, 4093, 5, 32, 0, 0, 4074, 4075, 5, 399, 0, 0, 4075, 4080, 3, 312, 156, 0, 4076, 4077, 5, 397, 0, 0, 4077, 4079, 3, 312, 156, 0, 4078, 4076, 1, 0, 0, 0, 4079, 4082, 1, 0, 0, 0, 4080, 4078, 1, 0, 0, 0, 4080, 4081, 1, 0, 0, 0, 4081, 4083, 1, 0, 0, 0, 4082, 4080, 1, 0, 0, 0, 4083, 4084, 5, 400, 0, 0, 4084, 4094, 1, 0, 0, 0, 4085, 4090, 3, 312, 156, 0, 4086, 4087, 5, 397, 0, 0, 4087, 4089, 3, 312, 156, 0, 4088, 4086, 1, 0, 0, 0, 4089, 4092, 1, 0, 0, 0, 4090, 4088, 1, 0, 0, 0, 4090, 4091, 1, 0, 0, 0, 4091, 4094, 1, 0, 0, 0, 4092, 4090, 1, 0, 0, 0, 4093, 4074, 1, 0, 0, 0, 4093, 4085, 1, 0, 0, 0, 4094, 565, 1, 0, 0, 0, 4095, 4096, 5, 349, 0, 0, 4096, 4100, 5, 399, 0, 0, 4097, 4101, 5, 179, 0, 0, 4098, 4101, 5, 343, 0, 0, 4099, 4101, 5, 29, 0, 0, 4100, 4097, 1, 0, 0, 0, 4100, 4098, 1, 0, 0, 0, 4100, 4099, 1, 0, 0, 0, 4100, 4101, 1, 0, 0, 0, 4101, 4103, 1, 0, 0, 0, 4102, 4104, 3, 522, 261, 0, 4103, 4102, 1, 0, 0, 0, 4103, 4104, 1, 0, 0, 0, 4104, 4105, 1, 0, 0, 0, 4105, 4106, 5, 139, 0, 0, 4106, 4107, 3, 522, 261, 0, 4107, 4108, 5, 400, 0, 0, 4108, 4149, 1, 0, 0, 0, 4109, 4110, 3, 574, 287, 0, 4110, 4125, 5, 399, 0, 0, 4111, 4126, 5, 415, 0, 0, 4112, 4114, 7, 22, 0, 0, 4113, 4112, 1, 0, 0, 0, 4113, 4114, 1, 0, 0, 0, 4114, 4123, 1, 0, 0, 0, 4115, 4120, 3, 522, 261, 0, 4116, 4117, 5, 397, 0, 0, 4117, 4119, 3, 522, 261, 0, 4118, 4116, 1, 0, 0, 0, 4119, 4122, 1, 0, 0, 0, 4120, 4118, 1, 0, 0, 0, 4120, 4121, 1, 0, 0, 0, 4121, 4124, 1, 0, 0, 0, 4122, 4120, 1, 0, 0, 0, 4123, 4115, 1, 0, 0, 0, 4123, 4124, 1, 0, 0, 0, 4124, 4126, 1, 0, 0, 0, 4125, 4111, 1, 0, 0, 0, 4125, 4113, 1, 0, 0, 0, 4126, 4146, 1, 0, 0, 0, 4127, 4128, 5, 400, 0, 0, 4128, 4129, 5, 388, 0, 0, 4129, 4130, 5, 144, 0, 0, 4130, 4131, 5, 399, 0, 0, 4131, 4132, 3, 556, 278, 0, 4132, 4133, 5, 400, 0, 0, 4133, 4147, 1, 0, 0, 0, 4134, 4136, 5, 400, 0, 0, 4135, 4137, 3, 568, 284, 0, 4136, 4135, 1, 0, 0, 0, 4136, 4137, 1, 0, 0, 0, 4137, 4138, 1, 0, 0, 0, 4138, 4139, 5, 234, 0, 0, 4139, 4147, 3, 528, 264, 0, 4140, 4141, 3, 568, 284, 0, 4141, 4142, 5, 400, 0, 0, 4142, 4143, 5, 234, 0, 0, 4143, 4144, 3, 528, 264, 0, 4144, 4147, 1, 0, 0, 0, 4145, 4147, 5, 400, 0, 0, 4146, 4127, 1, 0, 0, 0, 4146, 4134, 1, 0, 0, 0, 4146, 4140, 1, 0, 0, 0, 4146, 4145, 1, 0, 0, 0, 4147, 4149, 1, 0, 0, 0, 4148, 4095, 1, 0, 0, 0, 4148, 4109, 1, 0, 0, 0, 4149, 567, 1, 0, 0, 0, 4150, 4151, 7, 35, 0, 0, 4151, 4152, 5, 220, 0, 0, 4152, 569, 1, 0, 0, 0, 4153, 4154, 3, 656, 328, 0, 4154, 571, 1, 0, 0, 0, 4155, 4158, 3, 656, 328, 0, 4156, 4158, 5, 426, 0, 0, 4157, 4155, 1, 0, 0, 0, 4157, 4156, 1, 0, 0, 0, 4158, 573, 1, 0, 0, 0, 4159, 4163, 3, 656, 328, 0, 4160, 4163, 3, 662, 331, 0, 4161, 4163, 3, 652, 326, 0, 4162, 4159, 1, 0, 0, 0, 4162, 4160, 1, 0, 0, 0, 4162, 4161, 1, 0, 0, 0, 4163, 575, 1, 0, 0, 0, 4164, 4165, 5, 36, 0, 0, 4165, 4166, 5, 399, 0, 0, 4166, 4167, 3, 596, 298, 0, 4167, 4168, 5, 17, 0, 0, 4168, 4171, 3, 352, 176, 0, 4169, 4170, 5, 137, 0, 0, 4170, 4172, 5, 426, 0, 0, 4171, 4169, 1, 0, 0, 0, 4171, 4172, 1, 0, 0, 0, 4172, 4173, 1, 0, 0, 0, 4173, 4174, 5, 400, 0, 0, 4174, 577, 1, 0, 0, 0, 4175, 4176, 5, 35, 0, 0, 4176, 4182, 3, 596, 298, 0, 4177, 4178, 5, 383, 0, 0, 4178, 4179, 3, 596, 298, 0, 4179, 4180, 5, 335, 0, 0, 4180, 4181, 3, 596, 298, 0, 4181, 4183, 1, 0, 0, 0, 4182, 4177, 1, 0, 0, 0, 4183, 4184, 1, 0, 0, 0, 4184, 4182, 1, 0, 0, 0, 4184, 4185, 1, 0, 0, 0, 4185, 4188, 1, 0, 0, 0, 4186, 4187, 5, 105, 0, 0, 4187, 4189, 3, 596, 298, 0, 4188, 4186, 1, 0, 0, 0, 4188, 4189, 1, 0, 0, 0, 4189, 4190, 1, 0, 0, 0, 4190, 4191, 5, 108, 0, 0, 4191, 579, 1, 0, 0, 0, 4192, 4198, 5, 35, 0, 0, 4193, 4194, 5, 383, 0, 0, 4194, 4195, 3, 596, 298, 0, 4195, 4196, 5, 335, 0, 0, 4196, 4197, 3, 596, 298, 0, 4197, 4199, 1, 0, 0, 0, 4198, 4193, 1, 0, 0, 0, 4199, 4200, 1, 0, 0, 0, 4200, 4198, 1, 0, 0, 0, 4200, 4201, 1, 0, 0, 0, 4201, 4204, 1, 0, 0, 0, 4202, 4203, 5, 105, 0, 0, 4203, 4205, 3, 596, 298, 0, 4204, 4202, 1, 0, 0, 0, 4204, 4205, 1, 0, 0, 0, 4205, 4206, 1, 0, 0, 0, 4206, 4207, 5, 108, 0, 0, 4207, 581, 1, 0, 0, 0, 4208, 4209, 5, 132, 0, 0, 4209, 4210, 5, 399, 0, 0, 4210, 4213, 3, 596, 298, 0, 4211, 4212, 5, 341, 0, 0, 4212, 4214, 3, 586, 293, 0, 4213, 4211, 1, 0, 0, 0, 4213, 4214, 1, 0, 0, 0, 4214, 4215, 1, 0, 0, 0, 4215, 4216, 5, 400, 0, 0, 4216, 583, 1, 0, 0, 0, 4217, 4218, 5, 124, 0, 0, 4218, 4219, 5, 399, 0, 0, 4219, 4220, 3, 586, 293, 0, 4220, 4221, 5, 139, 0, 0, 4221, 4222, 3, 596, 298, 0, 4222, 4223, 5, 400, 0, 0, 4223, 585, 1, 0, 0, 0, 4224, 4233, 3, 682, 341, 0, 4225, 4233, 5, 257, 0, 0, 4226, 4233, 3, 684, 342, 0, 4227, 4233, 3, 686, 343, 0, 4228, 4233, 3, 688, 344, 0, 4229, 4233, 3, 690, 345, 0, 4230, 4233, 3, 692, 346, 0, 4231, 4233, 3, 694, 347, 0, 4232, 4224, 1, 0, 0, 0, 4232, 4225, 1, 0, 0, 0, 4232, 4226, 1, 0, 0, 0, 4232, 4227, 1, 0, 0, 0, 4232, 4228, 1, 0, 0, 0, 4232, 4229, 1, 0, 0, 0, 4232, 4230, 1, 0, 0, 0, 4232, 4231, 1, 0, 0, 0, 4233, 587, 1, 0, 0, 0, 4234, 4235, 3, 590, 295, 0, 4235, 4236, 3, 594, 297, 0, 4236, 4263, 1, 0, 0, 0, 4237, 4263, 5, 431, 0, 0, 4238, 4239, 5, 71, 0, 0, 4239, 4263, 5, 426, 0, 0, 4240, 4263, 5, 63, 0, 0, 4241, 4242, 5, 337, 0, 0, 4242, 4263, 5, 426, 0, 0, 4243, 4263, 5, 64, 0, 0, 4244, 4245, 5, 338, 0, 0, 4245, 4263, 5, 426, 0, 0, 4246, 4250, 5, 426, 0, 0, 4247, 4249, 5, 426, 0, 0, 4248, 4247, 1, 0, 0, 0, 4249, 4252, 1, 0, 0, 0, 4250, 4248, 1, 0, 0, 0, 4250, 4251, 1, 0, 0, 0, 4251, 4263, 1, 0, 0, 0, 4252, 4250, 1, 0, 0, 0, 4253, 4263, 5, 428, 0, 0, 4254, 4263, 5, 429, 0, 0, 4255, 4256, 5, 433, 0, 0, 4256, 4263, 5, 427, 0, 0, 4257, 4263, 5, 350, 0, 0, 4258, 4263, 5, 125, 0, 0, 4259, 4263, 5, 219, 0, 0, 4260, 4263, 5, 424, 0, 0, 4261, 4263, 3, 258, 129, 0, 4262, 4234, 1, 0, 0, 0, 4262, 4237, 1, 0, 0, 0, 4262, 4238, 1, 0, 0, 0, 4262, 4240, 1, 0, 0, 0, 4262, 4241, 1, 0, 0, 0, 4262, 4243, 1, 0, 0, 0, 4262, 4244, 1, 0, 0, 0, 4262, 4246, 1, 0, 0, 0, 4262, 4253, 1, 0, 0, 0, 4262, 4254, 1, 0, 0, 0, 4262, 4255, 1, 0, 0, 0, 4262, 4257, 1, 0, 0, 0, 4262, 4258, 1, 0, 0, 0, 4262, 4259, 1, 0, 0, 0, 4262, 4260, 1, 0, 0, 0, 4262, 4261, 1, 0, 0, 0, 4263, 589, 1, 0, 0, 0, 4264, 4265, 7, 27, 0, 0, 4265, 591, 1, 0, 0, 0, 4266, 4267, 5, 399, 0, 0, 4267, 4268, 3, 590, 295, 0, 4268, 4269, 5, 400, 0, 0, 4269, 4270, 3, 594, 297, 0, 4270, 4282, 1, 0, 0, 0, 4271, 4277, 5, 165, 0, 0, 4272, 4278, 3, 590, 295, 0, 4273, 4274, 5, 399, 0, 0, 4274, 4275, 3, 596, 298, 0, 4275, 4276, 5, 400, 0, 0, 4276, 4278, 1, 0, 0, 0, 4277, 4272, 1, 0, 0, 0, 4277, 4273, 1, 0, 0, 0, 4278, 4279, 1, 0, 0, 0, 4279, 4280, 3, 594, 297, 0, 4280, 4282, 1, 0, 0, 0, 4281, 4266, 1, 0, 0, 0, 4281, 4271, 1, 0, 0, 0, 4282, 593, 1, 0, 0, 0, 4283, 4284, 3, 682, 341, 0, 4284, 4285, 5, 341, 0, 0, 4285, 4286, 3, 684, 342, 0, 4286, 4298, 1, 0, 0, 0, 4287, 4288, 3, 688, 344, 0, 4288, 4289, 5, 341, 0, 0, 4289, 4290, 3, 694, 347, 0, 4290, 4298, 1, 0, 0, 0, 4291, 4298, 3, 682, 341, 0, 4292, 4298, 3, 684, 342, 0, 4293, 4298, 3, 688, 344, 0, 4294, 4298, 3, 690, 345, 0, 4295, 4298, 3, 692, 346, 0, 4296, 4298, 3, 694, 347, 0, 4297, 4283, 1, 0, 0, 0, 4297, 4287, 1, 0, 0, 0, 4297, 4291, 1, 0, 0, 0, 4297, 4292, 1, 0, 0, 0, 4297, 4293, 1, 0, 0, 0, 4297, 4294, 1, 0, 0, 0, 4297, 4295, 1, 0, 0, 0, 4297, 4296, 1, 0, 0, 0, 4298, 595, 1, 0, 0, 0, 4299, 4304, 3, 638, 319, 0, 4300, 4301, 5, 228, 0, 0, 4301, 4303, 3, 638, 319, 0, 4302, 4300, 1, 0, 0, 0, 4303, 4306, 1, 0, 0, 0, 4304, 4302, 1, 0, 0, 0, 4304, 4305, 1, 0, 0, 0, 4305, 597, 1, 0, 0, 0, 4306, 4304, 1, 0, 0, 0, 4307, 4319, 3, 588, 294, 0, 4308, 4319, 3, 592, 296, 0, 4309, 4319, 3, 576, 288, 0, 4310, 4319, 3, 584, 292, 0, 4311, 4319, 3, 582, 291, 0, 4312, 4319, 3, 578, 289, 0, 4313, 4319, 3, 580, 290, 0, 4314, 4319, 3, 616, 308, 0, 4315, 4319, 3, 566, 283, 0, 4316, 4319, 3, 552, 276, 0, 4317, 4319, 3, 654, 327, 0, 4318, 4307, 1, 0, 0, 0, 4318, 4308, 1, 0, 0, 0, 4318, 4309, 1, 0, 0, 0, 4318, 4310, 1, 0, 0, 0, 4318, 4311, 1, 0, 0, 0, 4318, 4312, 1, 0, 0, 0, 4318, 4313, 1, 0, 0, 0, 4318, 4314, 1, 0, 0, 0, 4318, 4315, 1, 0, 0, 0, 4318, 4316, 1, 0, 0, 0, 4318, 4317, 1, 0, 0, 0, 4319, 599, 1, 0, 0, 0, 4320, 4322, 7, 36, 0, 0, 4321, 4320, 1, 0, 0, 0, 4322, 4325, 1, 0, 0, 0, 4323, 4321, 1, 0, 0, 0, 4323, 4324, 1, 0, 0, 0, 4324, 4326, 1, 0, 0, 0, 4325, 4323, 1, 0, 0, 0, 4326, 4335, 3, 598, 299, 0, 4327, 4328, 5, 401, 0, 0, 4328, 4329, 3, 596, 298, 0, 4329, 4330, 5, 402, 0, 0, 4330, 4334, 1, 0, 0, 0, 4331, 4332, 5, 395, 0, 0, 4332, 4334, 3, 654, 327, 0, 4333, 4327, 1, 0, 0, 0, 4333, 4331, 1, 0, 0, 0, 4334, 4337, 1, 0, 0, 0, 4335, 4333, 1, 0, 0, 0, 4335, 4336, 1, 0, 0, 0, 4336, 601, 1, 0, 0, 0, 4337, 4335, 1, 0, 0, 0, 4338, 4343, 3, 600, 300, 0, 4339, 4340, 5, 423, 0, 0, 4340, 4342, 3, 600, 300, 0, 4341, 4339, 1, 0, 0, 0, 4342, 4345, 1, 0, 0, 0, 4343, 4341, 1, 0, 0, 0, 4343, 4344, 1, 0, 0, 0, 4344, 603, 1, 0, 0, 0, 4345, 4343, 1, 0, 0, 0, 4346, 4351, 3, 602, 301, 0, 4347, 4348, 7, 37, 0, 0, 4348, 4350, 3, 602, 301, 0, 4349, 4347, 1, 0, 0, 0, 4350, 4353, 1, 0, 0, 0, 4351, 4349, 1, 0, 0, 0, 4351, 4352, 1, 0, 0, 0, 4352, 605, 1, 0, 0, 0, 4353, 4351, 1, 0, 0, 0, 4354, 4359, 3, 604, 302, 0, 4355, 4356, 7, 38, 0, 0, 4356, 4358, 3, 604, 302, 0, 4357, 4355, 1, 0, 0, 0, 4358, 4361, 1, 0, 0, 0, 4359, 4357, 1, 0, 0, 0, 4359, 4360, 1, 0, 0, 0, 4360, 607, 1, 0, 0, 0, 4361, 4359, 1, 0, 0, 0, 4362, 4367, 3, 606, 303, 0, 4363, 4364, 5, 422, 0, 0, 4364, 4366, 3, 606, 303, 0, 4365, 4363, 1, 0, 0, 0, 4366, 4369, 1, 0, 0, 0, 4367, 4365, 1, 0, 0, 0, 4367, 4368, 1, 0, 0, 0, 4368, 609, 1, 0, 0, 0, 4369, 4367, 1, 0, 0, 0, 4370, 4375, 3, 608, 304, 0, 4371, 4372, 5, 419, 0, 0, 4372, 4374, 3, 608, 304, 0, 4373, 4371, 1, 0, 0, 0, 4374, 4377, 1, 0, 0, 0, 4375, 4373, 1, 0, 0, 0, 4375, 4376, 1, 0, 0, 0, 4376, 611, 1, 0, 0, 0, 4377, 4375, 1, 0, 0, 0, 4378, 4383, 3, 610, 305, 0, 4379, 4380, 5, 421, 0, 0, 4380, 4382, 3, 610, 305, 0, 4381, 4379, 1, 0, 0, 0, 4382, 4385, 1, 0, 0, 0, 4383, 4381, 1, 0, 0, 0, 4383, 4384, 1, 0, 0, 0, 4384, 613, 1, 0, 0, 0, 4385, 4383, 1, 0, 0, 0, 4386, 4387, 7, 39, 0, 0, 4387, 615, 1, 0, 0, 0, 4388, 4389, 5, 399, 0, 0, 4389, 4390, 3, 380, 190, 0, 4390, 4391, 5, 400, 0, 0, 4391, 617, 1, 0, 0, 0, 4392, 4394, 3, 612, 306, 0, 4393, 4395, 3, 620, 310, 0, 4394, 4393, 1, 0, 0, 0, 4394, 4395, 1, 0, 0, 0, 4395, 4399, 1, 0, 0, 0, 4396, 4397, 5, 117, 0, 0, 4397, 4399, 3, 616, 308, 0, 4398, 4392, 1, 0, 0, 0, 4398, 4396, 1, 0, 0, 0, 4399, 619, 1, 0, 0, 0, 4400, 4401, 3, 614, 307, 0, 4401, 4402, 3, 612, 306, 0, 4402, 4407, 1, 0, 0, 0, 4403, 4407, 3, 622, 311, 0, 4404, 4405, 5, 216, 0, 0, 4405, 4407, 3, 626, 313, 0, 4406, 4400, 1, 0, 0, 0, 4406, 4403, 1, 0, 0, 0, 4406, 4404, 1, 0, 0, 0, 4407, 621, 1, 0, 0, 0, 4408, 4409, 5, 154, 0, 0, 4409, 4423, 3, 624, 312, 0, 4410, 4411, 5, 25, 0, 0, 4411, 4412, 3, 612, 306, 0, 4412, 4413, 5, 11, 0, 0, 4413, 4414, 3, 612, 306, 0, 4414, 4423, 1, 0, 0, 0, 4415, 4416, 5, 184, 0, 0, 4416, 4417, 7, 40, 0, 0, 4417, 4423, 3, 552, 276, 0, 4418, 4419, 3, 650, 325, 0, 4419, 4420, 7, 41, 0, 0, 4420, 4421, 3, 616, 308, 0, 4421, 4423, 1, 0, 0, 0, 4422, 4408, 1, 0, 0, 0, 4422, 4410, 1, 0, 0, 0, 4422, 4415, 1, 0, 0, 0, 4422, 4418, 1, 0, 0, 0, 4423, 623, 1, 0, 0, 0, 4424, 4427, 3, 616, 308, 0, 4425, 4427, 3, 552, 276, 0, 4426, 4424, 1, 0, 0, 0, 4426, 4425, 1, 0, 0, 0, 4427, 625, 1, 0, 0, 0, 4428, 4429, 7, 42, 0, 0, 4429, 4432, 3, 612, 306, 0, 4430, 4432, 3, 622, 311, 0, 4431, 4428, 1, 0, 0, 0, 4431, 4430, 1, 0, 0, 0, 4432, 627, 1, 0, 0, 0, 4433, 4434, 5, 167, 0, 0, 4434, 4435, 5, 96, 0, 0, 4435, 4436, 5, 139, 0, 0, 4436, 629, 1, 0, 0, 0, 4437, 4445, 5, 405, 0, 0, 4438, 4445, 5, 406, 0, 0, 4439, 4445, 5, 407, 0, 0, 4440, 4441, 5, 167, 0, 0, 4441, 4442, 5, 216, 0, 0, 4442, 4443, 5, 96, 0, 0, 4443, 4445, 5, 139, 0, 0, 4444, 4437, 1, 0, 0, 0, 4444, 4438, 1, 0, 0, 0, 4444, 4439, 1, 0, 0, 0, 4444, 4440, 1, 0, 0, 0, 4445, 631, 1, 0, 0, 0, 4446, 4455, 3, 618, 309, 0, 4447, 4448, 3, 630, 315, 0, 4448, 4449, 3, 618, 309, 0, 4449, 4454, 1, 0, 0, 0, 4450, 4451, 3, 628, 314, 0, 4451, 4452, 3, 618, 309, 0, 4452, 4454, 1, 0, 0, 0, 4453, 4447, 1, 0, 0, 0, 4453, 4450, 1, 0, 0, 0, 4454, 4457, 1, 0, 0, 0, 4455, 4453, 1, 0, 0, 0, 4455, 4456, 1, 0, 0, 0, 4456, 633, 1, 0, 0, 0, 4457, 4455, 1, 0, 0, 0, 4458, 4465, 5, 219, 0, 0, 4459, 4465, 5, 350, 0, 0, 4460, 4465, 5, 125, 0, 0, 4461, 4465, 5, 360, 0, 0, 4462, 4463, 5, 216, 0, 0, 4463, 4465, 7, 43, 0, 0, 4464, 4458, 1, 0, 0, 0, 4464, 4459, 1, 0, 0, 0, 4464, 4460, 1, 0, 0, 0, 4464, 4461, 1, 0, 0, 0, 4464, 4462, 1, 0, 0, 0, 4465, 635, 1, 0, 0, 0, 4466, 4468, 5, 216, 0, 0, 4467, 4466, 1, 0, 0, 0, 4468, 4471, 1, 0, 0, 0, 4469, 4467, 1, 0, 0, 0, 4469, 4470, 1, 0, 0, 0, 4470, 4472, 1, 0, 0, 0, 4471, 4469, 1, 0, 0, 0, 4472, 4475, 3, 632, 316, 0, 4473, 4474, 5, 167, 0, 0, 4474, 4476, 3, 634, 317, 0, 4475, 4473, 1, 0, 0, 0, 4475, 4476, 1, 0, 0, 0, 4476, 637, 1, 0, 0, 0, 4477, 4482, 3, 636, 318, 0, 4478, 4479, 5, 11, 0, 0, 4479, 4481, 3, 636, 318, 0, 4480, 4478, 1, 0, 0, 0, 4481, 4484, 1, 0, 0, 0, 4482, 4480, 1, 0, 0, 0, 4482, 4483, 1, 0, 0, 0, 4483, 639, 1, 0, 0, 0, 4484, 4482, 1, 0, 0, 0, 4485, 4487, 3, 482, 241, 0, 4486, 4488, 3, 642, 321, 0, 4487, 4486, 1, 0, 0, 0, 4487, 4488, 1, 0, 0, 0, 4488, 641, 1, 0, 0, 0, 4489, 4490, 5, 237, 0, 0, 4490, 4491, 5, 399, 0, 0, 4491, 4496, 3, 644, 322, 0, 4492, 4493, 5, 397, 0, 0, 4493, 4495, 3, 644, 322, 0, 4494, 4492, 1, 0, 0, 0, 4495, 4498, 1, 0, 0, 0, 4496, 4494, 1, 0, 0, 0, 4496, 4497, 1, 0, 0, 0, 4497, 4499, 1, 0, 0, 0, 4498, 4496, 1, 0, 0, 0, 4499, 4500, 5, 400, 0, 0, 4500, 643, 1, 0, 0, 0, 4501, 4504, 3, 654, 327, 0, 4502, 4503, 5, 405, 0, 0, 4503, 4505, 3, 588, 294, 0, 4504, 4502, 1, 0, 0, 0, 4504, 4505, 1, 0, 0, 0, 4505, 645, 1, 0, 0, 0, 4506, 4507, 5, 399, 0, 0, 4507, 4512, 3, 648, 324, 0, 4508, 4509, 5, 397, 0, 0, 4509, 4511, 3, 648, 324, 0, 4510, 4508, 1, 0, 0, 0, 4511, 4514, 1, 0, 0, 0, 4512, 4510, 1, 0, 0, 0, 4512, 4513, 1, 0, 0, 0, 4513, 4515, 1, 0, 0, 0, 4514, 4512, 1, 0, 0, 0, 4515, 4516, 5, 400, 0, 0, 4516, 647, 1, 0, 0, 0, 4517, 4520, 3, 654, 327, 0, 4518, 4521, 5, 184, 0, 0, 4519, 4521, 3, 650, 325, 0, 4520, 4518, 1, 0, 0, 0, 4520, 4519, 1, 0, 0, 0, 4521, 4522, 1, 0, 0, 0, 4522, 4523, 3, 588, 294, 0, 4523, 649, 1, 0, 0, 0, 4524, 4525, 7, 44, 0, 0, 4525, 651, 1, 0, 0, 0, 4526, 4527, 7, 45, 0, 0, 4527, 653, 1, 0, 0, 0, 4528, 4531, 5, 432, 0, 0, 4529, 4531, 3, 660, 330, 0, 4530, 4528, 1, 0, 0, 0, 4530, 4529, 1, 0, 0, 0, 4531, 655, 1, 0, 0, 0, 4532, 4535, 3, 654, 327, 0, 4533, 4534, 5, 395, 0, 0, 4534, 4536, 3, 654, 327, 0, 4535, 4533, 1, 0, 0, 0, 4535, 4536, 1, 0, 0, 0, 4536, 657, 1, 0, 0, 0, 4537, 4538, 3, 654, 327, 0, 4538, 659, 1, 0, 0, 0, 4539, 4540, 7, 46, 0, 0, 4540, 661, 1, 0, 0, 0, 4541, 4542, 7, 47, 0, 0, 4542, 663, 1, 0, 0, 0, 4543, 4595, 3, 654, 327, 0, 4544, 4595, 5, 299, 0, 0, 4545, 4595, 5, 171, 0, 0, 4546, 4595, 5, 237, 0, 0, 4547, 4595, 5, 198, 0, 0, 4548, 4595, 5, 268, 0, 0, 4549, 4595, 5, 369, 0, 0, 4550, 4595, 5, 241, 0, 0, 4551, 4595, 5, 165, 0, 0, 4552, 4595, 5, 292, 0, 0, 4553, 4595, 5, 356, 0, 0, 4554, 4595, 5, 144, 0, 0, 4555, 4595, 5, 203, 0, 0, 4556, 4595, 5, 219, 0, 0, 4557, 4595, 5, 126, 0, 0, 4558, 4595, 5, 188, 0, 0, 4559, 4595, 5, 101, 0, 0, 4560, 4595, 5, 329, 0, 0, 4561, 4595, 5, 224, 0, 0, 4562, 4595, 5, 291, 0, 0, 4563, 4595, 5, 145, 0, 0, 4564, 4595, 5, 304, 0, 0, 4565, 4595, 5, 135, 0, 0, 4566, 4595, 5, 318, 0, 0, 4567, 4595, 5, 161, 0, 0, 4568, 4595, 5, 54, 0, 0, 4569, 4595, 5, 166, 0, 0, 4570, 4595, 5, 358, 0, 0, 4571, 4595, 5, 45, 0, 0, 4572, 4595, 5, 347, 0, 0, 4573, 4595, 5, 96, 0, 0, 4574, 4595, 5, 154, 0, 0, 4575, 4595, 5, 269, 0, 0, 4576, 4595, 5, 337, 0, 0, 4577, 4595, 5, 225, 0, 0, 4578, 4595, 5, 108, 0, 0, 4579, 4595, 5, 141, 0, 0, 4580, 4595, 5, 365, 0, 0, 4581, 4595, 5, 21, 0, 0, 4582, 4595, 5, 78, 0, 0, 4583, 4595, 5, 374, 0, 0, 4584, 4595, 5, 336, 0, 0, 4585, 4595, 5, 167, 0, 0, 4586, 4595, 5, 134, 0, 0, 4587, 4595, 5, 216, 0, 0, 4588, 4595, 5, 27, 0, 0, 4589, 4595, 5, 370, 0, 0, 4590, 4595, 5, 263, 0, 0, 4591, 4595, 5, 25, 0, 0, 4592, 4595, 5, 62, 0, 0, 4593, 4595, 5, 17, 0, 0, 4594, 4543, 1, 0, 0, 0, 4594, 4544, 1, 0, 0, 0, 4594, 4545, 1, 0, 0, 0, 4594, 4546, 1, 0, 0, 0, 4594, 4547, 1, 0, 0, 0, 4594, 4548, 1, 0, 0, 0, 4594, 4549, 1, 0, 0, 0, 4594, 4550, 1, 0, 0, 0, 4594, 4551, 1, 0, 0, 0, 4594, 4552, 1, 0, 0, 0, 4594, 4553, 1, 0, 0, 0, 4594, 4554, 1, 0, 0, 0, 4594, 4555, 1, 0, 0, 0, 4594, 4556, 1, 0, 0, 0, 4594, 4557, 1, 0, 0, 0, 4594, 4558, 1, 0, 0, 0, 4594, 4559, 1, 0, 0, 0, 4594, 4560, 1, 0, 0, 0, 4594, 4561, 1, 0, 0, 0, 4594, 4562, 1, 0, 0, 0, 4594, 4563, 1, 0, 0, 0, 4594, 4564, 1, 0, 0, 0, 4594, 4565, 1, 0, 0, 0, 4594, 4566, 1, 0, 0, 0, 4594, 4567, 1, 0, 0, 0, 4594, 4568, 1, 0, 0, 0, 4594, 4569, 1, 0, 0, 0, 4594, 4570, 1, 0, 0, 0, 4594, 4571, 1, 0, 0, 0, 4594, 4572, 1, 0, 0, 0, 4594, 4573, 1, 0, 0, 0, 4594, 4574, 1, 0, 0, 0, 4594, 4575, 1, 0, 0, 0, 4594, 4576, 1, 0, 0, 0, 4594, 4577, 1, 0, 0, 0, 4594, 4578, 1, 0, 0, 0, 4594, 4579, 1, 0, 0, 0, 4594, 4580, 1, 0, 0, 0, 4594, 4581, 1, 0, 0, 0, 4594, 4582, 1, 0, 0, 0, 4594, 4583, 1, 0, 0, 0, 4594, 4584, 1, 0, 0, 0, 4594, 4585, 1, 0, 0, 0, 4594, 4586, 1, 0, 0, 0, 4594, 4587, 1, 0, 0, 0, 4594, 4588, 1, 0, 0, 0, 4594, 4589, 1, 0, 0, 0, 4594, 4590, 1, 0, 0, 0, 4594, 4591, 1, 0, 0, 0, 4594, 4592, 1, 0, 0, 0, 4594, 4593, 1, 0, 0, 0, 4595, 665, 1, 0, 0, 0, 4596, 4597, 5, 58, 0, 0, 4597, 4598, 5, 280, 0, 0, 4598, 4600, 5, 243, 0, 0, 4599, 4601, 3, 32, 16, 0, 4600, 4599, 1, 0, 0, 0, 4600, 4601, 1, 0, 0, 0, 4601, 4611, 1, 0, 0, 0, 4602, 4603, 3, 654, 327, 0, 4603, 4604, 5, 184, 0, 0, 4604, 4605, 3, 654, 327, 0, 4605, 4612, 1, 0, 0, 0, 4606, 4609, 3, 654, 327, 0, 4607, 4608, 5, 387, 0, 0, 4608, 4610, 3, 672, 336, 0, 4609, 4607, 1, 0, 0, 0, 4609, 4610, 1, 0, 0, 0, 4610, 4612, 1, 0, 0, 0, 4611, 4602, 1, 0, 0, 0, 4611, 4606, 1, 0, 0, 0, 4612, 4762, 1, 0, 0, 0, 4613, 4614, 5, 9, 0, 0, 4614, 4615, 5, 280, 0, 0, 4615, 4616, 5, 243, 0, 0, 4616, 4641, 3, 654, 327, 0, 4617, 4642, 5, 373, 0, 0, 4618, 4642, 3, 680, 340, 0, 4619, 4620, 5, 304, 0, 0, 4620, 4642, 3, 672, 336, 0, 4621, 4622, 5, 363, 0, 0, 4622, 4627, 3, 674, 337, 0, 4623, 4624, 5, 397, 0, 0, 4624, 4626, 3, 674, 337, 0, 4625, 4623, 1, 0, 0, 0, 4626, 4629, 1, 0, 0, 0, 4627, 4625, 1, 0, 0, 0, 4627, 4628, 1, 0, 0, 0, 4628, 4642, 1, 0, 0, 0, 4629, 4627, 1, 0, 0, 0, 4630, 4631, 5, 274, 0, 0, 4631, 4632, 5, 341, 0, 0, 4632, 4642, 3, 654, 327, 0, 4633, 4635, 3, 676, 338, 0, 4634, 4636, 3, 678, 339, 0, 4635, 4634, 1, 0, 0, 0, 4635, 4636, 1, 0, 0, 0, 4636, 4642, 1, 0, 0, 0, 4637, 4639, 3, 678, 339, 0, 4638, 4640, 3, 676, 338, 0, 4639, 4638, 1, 0, 0, 0, 4639, 4640, 1, 0, 0, 0, 4640, 4642, 1, 0, 0, 0, 4641, 4617, 1, 0, 0, 0, 4641, 4618, 1, 0, 0, 0, 4641, 4619, 1, 0, 0, 0, 4641, 4621, 1, 0, 0, 0, 4641, 4630, 1, 0, 0, 0, 4641, 4633, 1, 0, 0, 0, 4641, 4637, 1, 0, 0, 0, 4642, 4762, 1, 0, 0, 0, 4643, 4644, 5, 101, 0, 0, 4644, 4645, 5, 280, 0, 0, 4645, 4647, 5, 243, 0, 0, 4646, 4648, 3, 30, 15, 0, 4647, 4646, 1, 0, 0, 0, 4647, 4648, 1, 0, 0, 0, 4648, 4649, 1, 0, 0, 0, 4649, 4762, 3, 654, 327, 0, 4650, 4653, 3, 678, 339, 0, 4651, 4653, 3, 680, 340, 0, 4652, 4650, 1, 0, 0, 0, 4652, 4651, 1, 0, 0, 0, 4653, 4654, 1, 0, 0, 0, 4654, 4655, 5, 390, 0, 0, 4655, 4656, 5, 197, 0, 0, 4656, 4762, 1, 0, 0, 0, 4657, 4669, 5, 278, 0, 0, 4658, 4659, 5, 3, 0, 0, 4659, 4660, 5, 280, 0, 0, 4660, 4661, 5, 243, 0, 0, 4661, 4662, 5, 387, 0, 0, 4662, 4670, 3, 654, 327, 0, 4663, 4664, 5, 280, 0, 0, 4664, 4665, 5, 243, 0, 0, 4665, 4666, 3, 654, 327, 0, 4666, 4667, 5, 387, 0, 0, 4667, 4668, 3, 654, 327, 0, 4668, 4670, 1, 0, 0, 0, 4669, 4658, 1, 0, 0, 0, 4669, 4663, 1, 0, 0, 0, 4670, 4762, 1, 0, 0, 0, 4671, 4672, 5, 58, 0, 0, 4672, 4673, 5, 348, 0, 0, 4673, 4674, 3, 654, 327, 0, 4674, 4675, 5, 395, 0, 0, 4675, 4676, 3, 654, 327, 0, 4676, 4677, 5, 383, 0, 0, 4677, 4678, 3, 704, 352, 0, 4678, 4679, 5, 99, 0, 0, 4679, 4680, 3, 706, 353, 0, 4680, 4762, 1, 0, 0, 0, 4681, 4682, 5, 9, 0, 0, 4682, 4683, 5, 348, 0, 0, 4683, 4684, 3, 654, 327, 0, 4684, 4685, 5, 395, 0, 0, 4685, 4702, 3, 654, 327, 0, 4686, 4687, 5, 383, 0, 0, 4687, 4688, 3, 704, 352, 0, 4688, 4689, 5, 99, 0, 0, 4689, 4690, 3, 706, 353, 0, 4690, 4703, 1, 0, 0, 0, 4691, 4692, 5, 4, 0, 0, 4692, 4696, 5, 341, 0, 0, 4693, 4694, 5, 101, 0, 0, 4694, 4696, 5, 139, 0, 0, 4695, 4691, 1, 0, 0, 0, 4695, 4693, 1, 0, 0, 0, 4696, 4700, 1, 0, 0, 0, 4697, 4698, 5, 246, 0, 0, 4698, 4701, 3, 700, 350, 0, 4699, 4701, 5, 362, 0, 0, 4700, 4697, 1, 0, 0, 0, 4700, 4699, 1, 0, 0, 0, 4701, 4703, 1, 0, 0, 0, 4702, 4686, 1, 0, 0, 0, 4702, 4695, 1, 0, 0, 0, 4703, 4762, 1, 0, 0, 0, 4704, 4705, 5, 101, 0, 0, 4705, 4706, 5, 348, 0, 0, 4706, 4707, 3, 654, 327, 0, 4707, 4708, 5, 395, 0, 0, 4708, 4709, 3, 654, 327, 0, 4709, 4762, 1, 0, 0, 0, 4710, 4711, 5, 58, 0, 0, 4711, 4712, 5, 246, 0, 0, 4712, 4713, 3, 654, 327, 0, 4713, 4714, 5, 395, 0, 0, 4714, 4715, 3, 700, 350, 0, 4715, 4716, 5, 387, 0, 0, 4716, 4717, 3, 710, 355, 0, 4717, 4762, 1, 0, 0, 0, 4718, 4719, 5, 9, 0, 0, 4719, 4720, 5, 246, 0, 0, 4720, 4721, 3, 654, 327, 0, 4721, 4722, 5, 395, 0, 0, 4722, 4730, 3, 700, 350, 0, 4723, 4724, 5, 304, 0, 0, 4724, 4731, 3, 710, 355, 0, 4725, 4726, 5, 363, 0, 0, 4726, 4731, 5, 294, 0, 0, 4727, 4728, 7, 48, 0, 0, 4728, 4729, 5, 348, 0, 0, 4729, 4731, 3, 654, 327, 0, 4730, 4723, 1, 0, 0, 0, 4730, 4725, 1, 0, 0, 0, 4730, 4727, 1, 0, 0, 0, 4731, 4762, 1, 0, 0, 0, 4732, 4733, 5, 101, 0, 0, 4733, 4734, 5, 246, 0, 0, 4734, 4735, 3, 654, 327, 0, 4735, 4736, 5, 395, 0, 0, 4736, 4737, 3, 700, 350, 0, 4737, 4762, 1, 0, 0, 0, 4738, 4739, 7, 49, 0, 0, 4739, 4740, 3, 668, 334, 0, 4740, 4741, 5, 200, 0, 0, 4741, 4742, 5, 426, 0, 0, 4742, 4743, 5, 154, 0, 0, 4743, 4747, 3, 654, 327, 0, 4744, 4745, 5, 341, 0, 0, 4745, 4748, 3, 700, 350, 0, 4746, 4748, 5, 362, 0, 0, 4747, 4744, 1, 0, 0, 0, 4747, 4746, 1, 0, 0, 0, 4748, 4752, 1, 0, 0, 0, 4749, 4750, 5, 387, 0, 0, 4750, 4751, 5, 229, 0, 0, 4751, 4753, 5, 431, 0, 0, 4752, 4749, 1, 0, 0, 0, 4752, 4753, 1, 0, 0, 0, 4753, 4762, 1, 0, 0, 0, 4754, 4755, 5, 101, 0, 0, 4755, 4756, 3, 668, 334, 0, 4756, 4757, 5, 200, 0, 0, 4757, 4758, 5, 426, 0, 0, 4758, 4759, 5, 154, 0, 0, 4759, 4760, 3, 654, 327, 0, 4760, 4762, 1, 0, 0, 0, 4761, 4596, 1, 0, 0, 0, 4761, 4613, 1, 0, 0, 0, 4761, 4643, 1, 0, 0, 0, 4761, 4652, 1, 0, 0, 0, 4761, 4657, 1, 0, 0, 0, 4761, 4671, 1, 0, 0, 0, 4761, 4681, 1, 0, 0, 0, 4761, 4704, 1, 0, 0, 0, 4761, 4710, 1, 0, 0, 0, 4761, 4718, 1, 0, 0, 0, 4761, 4732, 1, 0, 0, 0, 4761, 4738, 1, 0, 0, 0, 4761, 4754, 1, 0, 0, 0, 4762, 667, 1, 0, 0, 0, 4763, 4764, 7, 50, 0, 0, 4764, 669, 1, 0, 0, 0, 4765, 4766, 5, 259, 0, 0, 4766, 4767, 5, 405, 0, 0, 4767, 4773, 5, 431, 0, 0, 4768, 4769, 5, 83, 0, 0, 4769, 4770, 5, 246, 0, 0, 4770, 4771, 5, 405, 0, 0, 4771, 4773, 3, 700, 350, 0, 4772, 4765, 1, 0, 0, 0, 4772, 4768, 1, 0, 0, 0, 4773, 671, 1, 0, 0, 0, 4774, 4779, 3, 670, 335, 0, 4775, 4776, 5, 397, 0, 0, 4776, 4778, 3, 670, 335, 0, 4777, 4775, 1, 0, 0, 0, 4778, 4781, 1, 0, 0, 0, 4779, 4777, 1, 0, 0, 0, 4779, 4780, 1, 0, 0, 0, 4780, 673, 1, 0, 0, 0, 4781, 4779, 1, 0, 0, 0, 4782, 4786, 5, 259, 0, 0, 4783, 4784, 5, 83, 0, 0, 4784, 4786, 5, 246, 0, 0, 4785, 4782, 1, 0, 0, 0, 4785, 4783, 1, 0, 0, 0, 4786, 675, 1, 0, 0, 0, 4787, 4790, 5, 2, 0, 0, 4788, 4789, 5, 387, 0, 0, 4789, 4791, 5, 278, 0, 0, 4790, 4788, 1, 0, 0, 0, 4790, 4791, 1, 0, 0, 0, 4791, 677, 1, 0, 0, 0, 4792, 4793, 7, 51, 0, 0, 4793, 679, 1, 0, 0, 0, 4794, 4795, 7, 52, 0, 0, 4795, 681, 1, 0, 0, 0, 4796, 4797, 7, 53, 0, 0, 4797, 683, 1, 0, 0, 0, 4798, 4799, 7, 54, 0, 0, 4799, 685, 1, 0, 0, 0, 4800, 4801, 7, 55, 0, 0, 4801, 687, 1, 0, 0, 0, 4802, 4803, 7, 56, 0, 0, 4803, 689, 1, 0, 0, 0, 4804, 4805, 7, 57, 0, 0, 4805, 691, 1, 0, 0, 0, 4806, 4807, 7, 58, 0, 0, 4807, 693, 1, 0, 0, 0, 4808, 4809, 7, 59, 0, 0, 4809, 695, 1, 0, 0, 0, 4810, 4811, 7, 60, 0, 0, 4811, 697, 1, 0, 0, 0, 4812, 4813, 1, 0, 0, 0, 4813, 699, 1, 0, 0, 0, 4814, 4819, 3, 654, 327, 0, 4815, 4816, 5, 395, 0, 0, 4816, 4818, 3, 654, 327, 0, 4817, 4815, 1, 0, 0, 0, 4818, 4821, 1, 0, 0, 0, 4819, 4817, 1, 0, 0, 0, 4819, 4820, 1, 0, 0, 0, 4820, 701, 1, 0, 0, 0, 4821, 4819, 1, 0, 0, 0, 4822, 4827, 3, 654, 327, 0, 4823, 4824, 5, 395, 0, 0, 4824, 4826, 3, 654, 327, 0, 4825, 4823, 1, 0, 0, 0, 4826, 4829, 1, 0, 0, 0, 4827, 4825, 1, 0, 0, 0, 4827, 4828, 1, 0, 0, 0, 4828, 4840, 1, 0, 0, 0, 4829, 4827, 1, 0, 0, 0, 4830, 4831, 4, 351, 3, 0, 4831, 4836, 3, 654, 327, 0, 4832, 4833, 5, 395, 0, 0, 4833, 4835, 3, 698, 349, 0, 4834, 4832, 1, 0, 0, 0, 4835, 4838, 1, 0, 0, 0, 4836, 4834, 1, 0, 0, 0, 4836, 4837, 1, 0, 0, 0, 4837, 4840, 1, 0, 0, 0, 4838, 4836, 1, 0, 0, 0, 4839, 4822, 1, 0, 0, 0, 4839, 4830, 1, 0, 0, 0, 4840, 703, 1, 0, 0, 0, 4841, 4842, 3, 654, 327, 0, 4842, 4843, 5, 411, 0, 0, 4843, 4844, 7, 27, 0, 0, 4844, 705, 1, 0, 0, 0, 4845, 4850, 5, 176, 0, 0, 4846, 4847, 5, 211, 0, 0, 4847, 4848, 5, 341, 0, 0, 4848, 4850, 3, 700, 350, 0, 4849, 4845, 1, 0, 0, 0, 4849, 4846, 1, 0, 0, 0, 4850, 707, 1, 0, 0, 0, 4851, 4852, 5, 8, 0, 0, 4852, 4853, 5, 405, 0, 0, 4853, 4864, 5, 431, 0, 0, 4854, 4855, 5, 259, 0, 0, 4855, 4856, 5, 405, 0, 0, 4856, 4864, 5, 431, 0, 0, 4857, 4858, 5, 294, 0, 0, 4858, 4859, 5, 405, 0, 0, 4859, 4864, 5, 426, 0, 0, 4860, 4861, 5, 240, 0, 0, 4861, 4862, 5, 405, 0, 0, 4862, 4864, 3, 700, 350, 0, 4863, 4851, 1, 0, 0, 0, 4863, 4854, 1, 0, 0, 0, 4863, 4857, 1, 0, 0, 0, 4863, 4860, 1, 0, 0, 0, 4864, 709, 1, 0, 0, 0, 4865, 4870, 3, 708, 354, 0, 4866, 4867, 5, 397, 0, 0, 4867, 4869, 3, 708, 354, 0, 4868, 4866, 1, 0, 0, 0, 4869, 4872, 1, 0, 0, 0, 4870, 4868, 1, 0, 0, 0, 4870, 4871, 1, 0, 0, 0, 4871, 711, 1, 0, 0, 0, 4872, 4870, 1, 0, 0, 0, 629, 715, 722, 725, 731, 737, 744, 754, 757, 761, 776, 783, 789, 794, 799, 802, 826, 833, 836, 841, 846, 852, 856, 869, 873, 877, 882, 889, 893, 898, 905, 909, 914, 962, 969, 974, 997, 1001, 1005, 1008, 1012, 1017, 1023, 1027, 1033, 1035, 1046, 1050, 1057, 1065, 1068, 1073, 1077, 1080, 1090, 1098, 1102, 1105, 1109, 1113, 1116, 1121, 1127, 1132, 1137, 1141, 1152, 1154, 1158, 1168, 1172, 1178, 1181, 1188, 1193, 1201, 1206, 1210, 1218, 1223, 1229, 1235, 1238, 1241, 1244, 1253, 1261, 1266, 1274, 1281, 1284, 1287, 1289, 1300, 1302, 1305, 1308, 1311, 1314, 1317, 1319, 1331, 1337, 1345, 1347, 1357, 1390, 1395, 1399, 1403, 1410, 1417, 1423, 1427, 1430, 1437, 1460, 1465, 1469, 1477, 1486, 1493, 1499, 1506, 1509, 1515, 1522, 1530, 1539, 1548, 1555, 1575, 1582, 1584, 1591, 1601, 1609, 1613, 1617, 1630, 1639, 1655, 1659, 1664, 1669, 1672, 1675, 1678, 1681, 1684, 1689, 1698, 1702, 1709, 1712, 1715, 1718, 1730, 1736, 1762, 1770, 1774, 1777, 1780, 1783, 1786, 1789, 1792, 1795, 1804, 1814, 1817, 1837, 1843, 1849, 1852, 1854, 1861, 1868, 1881, 1886, 1895, 1903, 1911, 1924, 1937, 1953, 1957, 1972, 1978, 1981, 1984, 1987, 1990, 1994, 2009, 2012, 2023, 2037, 2071, 2079, 2084, 2092, 2097, 2102, 2109, 2117, 2125, 2133, 2139, 2146, 2156, 2160, 2168, 2177, 2180, 2184, 2191, 2197, 2201, 2207, 2211, 2223, 2232, 2243, 2247, 2254, 2266, 2276, 2279, 2286, 2292, 2296, 2299, 2302, 2308, 2312, 2316, 2321, 2325, 2329, 2333, 2341, 2345, 2349, 2353, 2357, 2365, 2369, 2373, 2381, 2386, 2391, 2395, 2399, 2406, 2415, 2423, 2435, 2453, 2456, 2462, 2488, 2491, 2497, 2505, 2513, 2526, 2533, 2536, 2539, 2542, 2545, 2548, 2551, 2554, 2557, 2560, 2563, 2568, 2571, 2574, 2577, 2580, 2583, 2586, 2589, 2592, 2595, 2598, 2600, 2606, 2610, 2613, 2616, 2619, 2622, 2625, 2632, 2636, 2639, 2642, 2645, 2648, 2651, 2658, 2661, 2669, 2673, 2680, 2682, 2685, 2690, 2693, 2697, 2702, 2708, 2716, 2724, 2734, 2737, 2741, 2745, 2750, 2757, 2761, 2763, 2767, 2774, 2779, 2792, 2800, 2819, 2829, 2842, 2852, 2856, 2860, 2866, 2873, 2880, 2889, 2896, 2916, 2919, 2933, 2948, 2952, 2972, 2984, 2990, 2993, 2996, 3002, 3008, 3015, 3023, 3029, 3033, 3038, 3041, 3045, 3052, 3057, 3062, 3065, 3067, 3075, 3083, 3087, 3091, 3095, 3112, 3129, 3136, 3145, 3150, 3153, 3156, 3160, 3175, 3189, 3192, 3203, 3207, 3210, 3213, 3217, 3222, 3225, 3228, 3231, 3234, 3237, 3243, 3246, 3249, 3252, 3255, 3258, 3261, 3264, 3267, 3270, 3274, 3276, 3282, 3287, 3290, 3293, 3296, 3299, 3305, 3308, 3311, 3314, 3317, 3320, 3323, 3326, 3329, 3332, 3336, 3338, 3340, 3345, 3350, 3354, 3358, 3363, 3368, 3377, 3387, 3395, 3407, 3410, 3416, 3423, 3430, 3437, 3444, 3454, 3456, 3460, 3464, 3471, 3476, 3480, 3484, 3487, 3490, 3501, 3505, 3507, 3510, 3523, 3526, 3529, 3541, 3544, 3551, 3560, 3565, 3567, 3569, 3586, 3589, 3597, 3600, 3604, 3607, 3610, 3613, 3616, 3628, 3636, 3643, 3646, 3653, 3656, 3661, 3668, 3676, 3682, 3687, 3691, 3696, 3700, 3707, 3721, 3724, 3731, 3739, 3749, 3752, 3761, 3770, 3773, 3779, 3782, 3787, 3790, 3803, 3809, 3811, 3821, 3827, 3830, 3840, 3845, 3849, 3865, 3871, 3873, 3880, 3887, 3901, 3907, 3910, 3913, 3916, 3925, 3932, 3938, 3947, 3951, 3959, 3969, 3979, 3984, 3988, 3994, 3999, 4004, 4011, 4015, 4018, 4023, 4026, 4030, 4035, 4046, 4048, 4057, 4080, 4090, 4093, 4100, 4103, 4113, 4120, 4123, 4125, 4136, 4146, 4148, 4157, 4162, 4171, 4184, 4188, 4200, 4204, 4213, 4232, 4250, 4262, 4277, 4281, 4297, 4304, 4318, 4323, 4333, 4335, 4343, 4351, 4359, 4367, 4375, 4383, 4394, 4398, 4406, 4422, 4426, 4431, 4444, 4453, 4455, 4464, 4469, 4475, 4482, 4487, 4496, 4504, 4512, 4520, 4530, 4535, 4594, 4600, 4609, 4611, 4627, 4635, 4639, 4641, 4647, 4652, 4669, 4695, 4700, 4702, 4730, 4747, 4752, 4761, 4772, 4779, 4785, 4790, 4819, 4827, 4836, 4839, 4849, 4863, 4870] \ No newline at end of file diff --git a/src/lib/hive/HiveSqlParser.ts b/src/lib/hive/HiveSqlParser.ts index 51ff2c869..571477e71 100644 --- a/src/lib/hive/HiveSqlParser.ts +++ b/src/lib/hive/HiveSqlParser.ts @@ -18824,7 +18824,7 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 514, HiveSqlParser.RULE_selectItem); let _la: number; try { - this.state = 3847; + this.state = 3849; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 509, this.context) ) { case 1: @@ -18905,6 +18905,17 @@ export class HiveSqlParser extends SQLParserBase { } } break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 3847; + if (!(this.shouldMatchEmpty())) { + throw this.createFailedPredicateException("this.shouldMatchEmpty()"); + } + this.state = 3848; + this.emptyColumn(); + } + break; } } catch (re) { @@ -18927,7 +18938,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3849; + this.state = 3851; this.columnName(); } } @@ -18951,7 +18962,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3851; + this.state = 3853; this.expression(); } } @@ -18976,7 +18987,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3853; + this.state = 3855; _la = this.tokenStream.LA(1); if(!(_la === 198 || _la === 268)) { this.errorHandler.recoverInline(this); @@ -18985,59 +18996,59 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3854; + this.state = 3856; this.selectExpressionList(); - this.state = 3855; + this.state = 3857; this.rowFormat(); - this.state = 3856; + this.state = 3858; this.recordWriter(); - this.state = 3857; + this.state = 3859; this.match(HiveSqlParser.KW_USING); - this.state = 3858; + this.state = 3860; this.match(HiveSqlParser.StringLiteral); - this.state = 3871; + this.state = 3873; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 3859; + this.state = 3861; this.match(HiveSqlParser.KW_AS); - this.state = 3869; + this.state = 3871; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 511, this.context) ) { case 1: { - this.state = 3860; + this.state = 3862; this.match(HiveSqlParser.LPAREN); - this.state = 3863; + this.state = 3865; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 510, this.context) ) { case 1: { - this.state = 3861; + this.state = 3863; this.aliasList(); } break; case 2: { - this.state = 3862; + this.state = 3864; this.columnNameTypeList(); } break; } - this.state = 3865; + this.state = 3867; this.match(HiveSqlParser.RPAREN); } break; case 2: { - this.state = 3867; + this.state = 3869; this.aliasList(); } break; case 3: { - this.state = 3868; + this.state = 3870; this.columnNameTypeList(); } break; @@ -19045,9 +19056,9 @@ export class HiveSqlParser extends SQLParserBase { } } - this.state = 3873; + this.state = 3875; this.rowFormat(); - this.state = 3874; + this.state = 3876; this.recordReader(); } } @@ -19069,20 +19080,20 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new SelectExpressionContext(this.context, this.state); this.enterRule(localContext, 522, HiveSqlParser.RULE_selectExpression); try { - this.state = 3878; + this.state = 3880; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 513, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3876; + this.state = 3878; this.tableAllColumns(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3877; + this.state = 3879; this.expression(); } break; @@ -19109,21 +19120,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3880; + this.state = 3882; this.selectExpression(); - this.state = 3885; + this.state = 3887; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3881; + this.state = 3883; this.match(HiveSqlParser.COMMA); - this.state = 3882; + this.state = 3884; this.selectExpression(); } } - this.state = 3887; + this.state = 3889; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -19150,31 +19161,31 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3888; + this.state = 3890; this.match(HiveSqlParser.KW_WINDOW); - this.state = 3889; + this.state = 3891; this.id_(); - this.state = 3890; + this.state = 3892; this.match(HiveSqlParser.KW_AS); - this.state = 3891; + this.state = 3893; this.window_specification(); - this.state = 3899; + this.state = 3901; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3892; + this.state = 3894; this.match(HiveSqlParser.COMMA); - this.state = 3893; + this.state = 3895; this.id_(); - this.state = 3894; + this.state = 3896; this.match(HiveSqlParser.KW_AS); - this.state = 3895; + this.state = 3897; this.window_specification(); } } - this.state = 3901; + this.state = 3903; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -19199,7 +19210,7 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 528, HiveSqlParser.RULE_window_specification); let _la: number; try { - this.state = 3914; + this.state = 3916; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -19444,46 +19455,46 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 3902; + this.state = 3904; this.id_(); } break; case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 2); { - this.state = 3903; - this.match(HiveSqlParser.LPAREN); this.state = 3905; + this.match(HiveSqlParser.LPAREN); + this.state = 3907; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 516, this.context) ) { case 1: { - this.state = 3904; + this.state = 3906; this.id_(); } break; } - this.state = 3908; + this.state = 3910; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 41 || _la === 97 || _la === 229 || _la === 237 || _la === 314) { { - this.state = 3907; + this.state = 3909; this.partitioningSpec(); } } - this.state = 3911; + this.state = 3913; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 260 || _la === 292) { { - this.state = 3910; + this.state = 3912; this.window_frame(); } } - this.state = 3913; + this.state = 3915; this.match(HiveSqlParser.RPAREN); } break; @@ -19512,7 +19523,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3916; + this.state = 3918; _la = this.tokenStream.LA(1); if(!(_la === 260 || _la === 292)) { this.errorHandler.recoverInline(this); @@ -19521,22 +19532,22 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3930; + this.state = 3932; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_CURRENT: case HiveSqlParser.KW_UNBOUNDED: case HiveSqlParser.Number: { - this.state = 3923; + this.state = 3925; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_UNBOUNDED: { { - this.state = 3917; + this.state = 3919; this.match(HiveSqlParser.KW_UNBOUNDED); - this.state = 3918; + this.state = 3920; this.match(HiveSqlParser.KW_PRECEDING); } } @@ -19544,9 +19555,9 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_CURRENT: { { - this.state = 3919; + this.state = 3921; this.match(HiveSqlParser.KW_CURRENT); - this.state = 3920; + this.state = 3922; this.match(HiveSqlParser.KW_ROW); } } @@ -19554,9 +19565,9 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Number: { { - this.state = 3921; + this.state = 3923; this.match(HiveSqlParser.Number); - this.state = 3922; + this.state = 3924; this.match(HiveSqlParser.KW_PRECEDING); } } @@ -19568,13 +19579,13 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_BETWEEN: { - this.state = 3925; + this.state = 3927; this.match(HiveSqlParser.KW_BETWEEN); - this.state = 3926; + this.state = 3928; this.window_frame_boundary(); - this.state = 3927; + this.state = 3929; this.match(HiveSqlParser.KW_AND); - this.state = 3928; + this.state = 3930; this.window_frame_boundary(); } break; @@ -19602,14 +19613,14 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 532, HiveSqlParser.RULE_window_frame_boundary); let _la: number; try { - this.state = 3936; + this.state = 3938; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_UNBOUNDED: case HiveSqlParser.Number: this.enterOuterAlt(localContext, 1); { - this.state = 3932; + this.state = 3934; _la = this.tokenStream.LA(1); if(!(_la === 354 || _la === 431)) { this.errorHandler.recoverInline(this); @@ -19618,7 +19629,7 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3933; + this.state = 3935; _la = this.tokenStream.LA(1); if(!(_la === 133 || _la === 247)) { this.errorHandler.recoverInline(this); @@ -19632,9 +19643,9 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_CURRENT: this.enterOuterAlt(localContext, 2); { - this.state = 3934; + this.state = 3936; this.match(HiveSqlParser.KW_CURRENT); - this.state = 3935; + this.state = 3937; this.match(HiveSqlParser.KW_ROW); } break; @@ -19662,37 +19673,37 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3938; + this.state = 3940; this.match(HiveSqlParser.KW_GROUP); - this.state = 3939; + this.state = 3941; this.match(HiveSqlParser.KW_BY); - this.state = 3945; + this.state = 3947; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 523, this.context) ) { case 1: { - this.state = 3940; + this.state = 3942; this.columnName(); } break; case 2: { - this.state = 3941; + this.state = 3943; this.rollupStandard(); } break; case 3: { - this.state = 3942; + this.state = 3944; this.rollupOldSyntax(); } break; case 4: { { - this.state = 3943; + this.state = 3945; this.match(HiveSqlParser.LPAREN); - this.state = 3944; + this.state = 3946; this.match(HiveSqlParser.RPAREN); } } @@ -19721,45 +19732,45 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3949; + this.state = 3951; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ROLLUP: { - this.state = 3947; + this.state = 3949; localContext._rollup = this.match(HiveSqlParser.KW_ROLLUP); } break; case HiveSqlParser.KW_CUBE: { - this.state = 3948; + this.state = 3950; localContext._cube = this.match(HiveSqlParser.KW_CUBE); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3951; + this.state = 3953; this.match(HiveSqlParser.LPAREN); - this.state = 3952; + this.state = 3954; this.expression(); - this.state = 3957; + this.state = 3959; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3953; + this.state = 3955; this.match(HiveSqlParser.COMMA); - this.state = 3954; + this.state = 3956; this.expression(); } } - this.state = 3959; + this.state = 3961; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3960; + this.state = 3962; this.match(HiveSqlParser.RPAREN); } } @@ -19784,58 +19795,58 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3962; + this.state = 3964; localContext._expr = this.expressionsNotInParenthesis(); - this.state = 3967; + this.state = 3969; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 526, this.context) ) { case 1: { - this.state = 3963; + this.state = 3965; localContext._rollup = this.match(HiveSqlParser.KW_WITH); - this.state = 3964; + this.state = 3966; this.match(HiveSqlParser.KW_ROLLUP); } break; case 2: { - this.state = 3965; + this.state = 3967; localContext._cube = this.match(HiveSqlParser.KW_WITH); - this.state = 3966; + this.state = 3968; this.match(HiveSqlParser.KW_CUBE); } break; } - this.state = 3982; + this.state = 3984; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 3969; + this.state = 3971; localContext._sets = this.match(HiveSqlParser.KW_GROUPING); - this.state = 3970; + this.state = 3972; this.match(HiveSqlParser.KW_SETS); - this.state = 3971; + this.state = 3973; this.match(HiveSqlParser.LPAREN); - this.state = 3972; + this.state = 3974; this.groupingSetExpression(); - this.state = 3977; + this.state = 3979; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3973; + this.state = 3975; this.match(HiveSqlParser.COMMA); - this.state = 3974; + this.state = 3976; this.groupingSetExpression(); } } - this.state = 3979; + this.state = 3981; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3980; + this.state = 3982; this.match(HiveSqlParser.RPAREN); } } @@ -19861,48 +19872,48 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 540, HiveSqlParser.RULE_groupingSetExpression); let _la: number; try { - this.state = 3997; + this.state = 3999; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 531, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3984; - this.match(HiveSqlParser.LPAREN); this.state = 3986; + this.match(HiveSqlParser.LPAREN); + this.state = 3988; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3755838846) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 3315298239) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280869) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3976149863) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 2004783495) !== 0) || ((((_la - 162)) & ~0x1F) === 0 && ((1 << (_la - 162)) & 4226874827) !== 0) || ((((_la - 195)) & ~0x1F) === 0 && ((1 << (_la - 195)) & 2616949503) !== 0) || ((((_la - 227)) & ~0x1F) === 0 && ((1 << (_la - 227)) & 3658431331) !== 0) || ((((_la - 259)) & ~0x1F) === 0 && ((1 << (_la - 259)) & 989854189) !== 0) || ((((_la - 293)) & ~0x1F) === 0 && ((1 << (_la - 293)) & 4260362175) !== 0) || ((((_la - 325)) & ~0x1F) === 0 && ((1 << (_la - 325)) & 1530590125) !== 0) || ((((_la - 357)) & ~0x1F) === 0 && ((1 << (_la - 357)) & 2549468921) !== 0) || ((((_la - 389)) & ~0x1F) === 0 && ((1 << (_la - 389)) & 4294902847) !== 0) || ((((_la - 421)) & ~0x1F) === 0 && ((1 << (_la - 421)) & 7597) !== 0)) { { - this.state = 3985; + this.state = 3987; this.expression(); } } - this.state = 3992; + this.state = 3994; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 3988; + this.state = 3990; this.match(HiveSqlParser.COMMA); - this.state = 3989; + this.state = 3991; this.expression(); } } - this.state = 3994; + this.state = 3996; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3995; + this.state = 3997; this.match(HiveSqlParser.RPAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3996; + this.state = 3998; this.expression(); } break; @@ -19928,20 +19939,20 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3999; + this.state = 4001; this.match(HiveSqlParser.KW_HAVING); - this.state = 4002; + this.state = 4004; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 532, this.context) ) { case 1: { - this.state = 4000; + this.state = 4002; this.expression(); } break; case 2: { - this.state = 4001; + this.state = 4003; this.columnNamePathAllowEmpty(); } break; @@ -19968,9 +19979,9 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4004; + this.state = 4006; this.match(HiveSqlParser.KW_QUALIFY); - this.state = 4005; + this.state = 4007; this.expression(); } } @@ -19992,20 +20003,20 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new ExpressionOrDefaultContext(this.context, this.state); this.enterRule(localContext, 546, HiveSqlParser.RULE_expressionOrDefault); try { - this.state = 4009; + this.state = 4011; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 533, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4007; + this.state = 4009; this.match(HiveSqlParser.KW_DEFAULT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4008; + this.state = 4010; this.expression(); } break; @@ -20032,61 +20043,61 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4011; - localContext._first = this.expression(); this.state = 4013; + localContext._first = this.expression(); + this.state = 4015; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 4012; + this.state = 4014; this.match(HiveSqlParser.KW_AS); } } - this.state = 4016; + this.state = 4018; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252454782) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394 || _la === 432) { { - this.state = 4015; + this.state = 4017; localContext._colAlias = this.id_(); } } - this.state = 4028; + this.state = 4030; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4018; + this.state = 4020; this.match(HiveSqlParser.COMMA); - this.state = 4019; - this.expression(); this.state = 4021; + this.expression(); + this.state = 4023; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 4020; + this.state = 4022; this.match(HiveSqlParser.KW_AS); } } - this.state = 4024; + this.state = 4026; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252454782) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394 || _la === 432) { { - this.state = 4023; + this.state = 4025; localContext._alias = this.id_(); } } } } - this.state = 4030; + this.state = 4032; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -20110,20 +20121,20 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new ExpressionsContext(this.context, this.state); this.enterRule(localContext, 550, HiveSqlParser.RULE_expressions); try { - this.state = 4033; + this.state = 4035; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 539, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4031; + this.state = 4033; this.expressionsInParenthesis(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4032; + this.state = 4034; this.expressionsNotInParenthesis(); } break; @@ -20149,11 +20160,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4035; + this.state = 4037; this.match(HiveSqlParser.LPAREN); - this.state = 4036; + this.state = 4038; this.expressionsNotInParenthesis(); - this.state = 4037; + this.state = 4039; this.match(HiveSqlParser.RPAREN); } } @@ -20178,26 +20189,26 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4039; + this.state = 4041; localContext._first = this.expressionOrDefault(); - this.state = 4046; + this.state = 4048; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 397) { { - this.state = 4042; + this.state = 4044; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 4040; + this.state = 4042; this.match(HiveSqlParser.COMMA); - this.state = 4041; + this.state = 4043; this.expressionOrDefault(); } } - this.state = 4044; + this.state = 4046; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 397); @@ -20227,25 +20238,25 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4048; + this.state = 4050; this.match(HiveSqlParser.KW_ORDER); - this.state = 4049; + this.state = 4051; this.match(HiveSqlParser.KW_BY); - this.state = 4050; + this.state = 4052; this.columnRefOrder(); - this.state = 4055; + this.state = 4057; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4051; + this.state = 4053; this.match(HiveSqlParser.COMMA); - this.state = 4052; + this.state = 4054; this.columnRefOrder(); } } - this.state = 4057; + this.state = 4059; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -20271,11 +20282,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4058; + this.state = 4060; this.match(HiveSqlParser.KW_PARTITION); - this.state = 4059; + this.state = 4061; this.match(HiveSqlParser.KW_BY); - this.state = 4060; + this.state = 4062; this.expressions(); } } @@ -20299,11 +20310,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4062; + this.state = 4064; this.match(HiveSqlParser.KW_CLUSTER); - this.state = 4063; + this.state = 4065; this.match(HiveSqlParser.KW_BY); - this.state = 4064; + this.state = 4066; this.expressions(); } } @@ -20327,11 +20338,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4066; + this.state = 4068; this.match(HiveSqlParser.KW_DISTRIBUTE); - this.state = 4067; + this.state = 4069; this.match(HiveSqlParser.KW_BY); - this.state = 4068; + this.state = 4070; this.expressions(); } } @@ -20356,37 +20367,37 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4070; + this.state = 4072; this.match(HiveSqlParser.KW_SORT); - this.state = 4071; + this.state = 4073; this.match(HiveSqlParser.KW_BY); - this.state = 4091; + this.state = 4093; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 545, this.context) ) { case 1: { { - this.state = 4072; + this.state = 4074; this.match(HiveSqlParser.LPAREN); - this.state = 4073; + this.state = 4075; this.columnRefOrder(); - this.state = 4078; + this.state = 4080; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4074; + this.state = 4076; this.match(HiveSqlParser.COMMA); - this.state = 4075; + this.state = 4077; this.columnRefOrder(); } } - this.state = 4080; + this.state = 4082; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4081; + this.state = 4083; this.match(HiveSqlParser.RPAREN); } } @@ -20394,21 +20405,21 @@ export class HiveSqlParser extends SQLParserBase { case 2: { { - this.state = 4083; + this.state = 4085; this.columnRefOrder(); - this.state = 4088; + this.state = 4090; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4084; + this.state = 4086; this.match(HiveSqlParser.COMMA); - this.state = 4085; + this.state = 4087; this.columnRefOrder(); } } - this.state = 4090; + this.state = 4092; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -20437,34 +20448,34 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 566, HiveSqlParser.RULE_function_); let _la: number; try { - this.state = 4146; + this.state = 4148; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 554, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4093; + this.state = 4095; this.match(HiveSqlParser.KW_TRIM); - this.state = 4094; + this.state = 4096; this.match(HiveSqlParser.LPAREN); - this.state = 4098; + this.state = 4100; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_LEADING: { - this.state = 4095; + this.state = 4097; localContext._leading = this.match(HiveSqlParser.KW_LEADING); } break; case HiveSqlParser.KW_TRAILING: { - this.state = 4096; + this.state = 4098; localContext._trailing = this.match(HiveSqlParser.KW_TRAILING); } break; case HiveSqlParser.KW_BOTH: { - this.state = 4097; + this.state = 4099; this.match(HiveSqlParser.KW_BOTH); } break; @@ -20774,48 +20785,48 @@ export class HiveSqlParser extends SQLParserBase { default: break; } - this.state = 4101; + this.state = 4103; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 3755838846) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 3315298239) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280869) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3976149863) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 2004783495) !== 0) || ((((_la - 162)) & ~0x1F) === 0 && ((1 << (_la - 162)) & 4226874827) !== 0) || ((((_la - 195)) & ~0x1F) === 0 && ((1 << (_la - 195)) & 2616949503) !== 0) || ((((_la - 227)) & ~0x1F) === 0 && ((1 << (_la - 227)) & 3658431331) !== 0) || ((((_la - 259)) & ~0x1F) === 0 && ((1 << (_la - 259)) & 989854189) !== 0) || ((((_la - 293)) & ~0x1F) === 0 && ((1 << (_la - 293)) & 4260362175) !== 0) || ((((_la - 325)) & ~0x1F) === 0 && ((1 << (_la - 325)) & 1530590125) !== 0) || ((((_la - 357)) & ~0x1F) === 0 && ((1 << (_la - 357)) & 2549468921) !== 0) || ((((_la - 389)) & ~0x1F) === 0 && ((1 << (_la - 389)) & 4294902847) !== 0) || ((((_la - 421)) & ~0x1F) === 0 && ((1 << (_la - 421)) & 7597) !== 0)) { { - this.state = 4100; + this.state = 4102; localContext._trim_characters = this.selectExpression(); } } - this.state = 4103; + this.state = 4105; this.match(HiveSqlParser.KW_FROM); - this.state = 4104; + this.state = 4106; localContext._str = this.selectExpression(); - this.state = 4105; + this.state = 4107; this.match(HiveSqlParser.RPAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4107; + this.state = 4109; this.functionNameForInvoke(); - this.state = 4108; + this.state = 4110; this.match(HiveSqlParser.LPAREN); - this.state = 4123; + this.state = 4125; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 551, this.context) ) { case 1: { - this.state = 4109; + this.state = 4111; localContext._star = this.match(HiveSqlParser.STAR); } break; case 2: { - this.state = 4111; + this.state = 4113; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 96) { { - this.state = 4110; + this.state = 4112; localContext._dist = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 96)) { @@ -20828,26 +20839,26 @@ export class HiveSqlParser extends SQLParserBase { } } - this.state = 4121; + this.state = 4123; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 550, this.context) ) { case 1: { - this.state = 4113; + this.state = 4115; this.selectExpression(); - this.state = 4118; + this.state = 4120; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4114; + this.state = 4116; this.match(HiveSqlParser.COMMA); - this.state = 4115; + this.state = 4117; this.selectExpression(); } } - this.state = 4120; + this.state = 4122; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -20857,60 +20868,60 @@ export class HiveSqlParser extends SQLParserBase { } break; } - this.state = 4144; + this.state = 4146; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 553, this.context) ) { case 1: { - this.state = 4125; + this.state = 4127; this.match(HiveSqlParser.RPAREN); - this.state = 4126; + this.state = 4128; localContext._within = this.match(HiveSqlParser.KW_WITHIN); - this.state = 4127; + this.state = 4129; this.match(HiveSqlParser.KW_GROUP); - this.state = 4128; + this.state = 4130; this.match(HiveSqlParser.LPAREN); - this.state = 4129; + this.state = 4131; localContext._ordBy = this.orderByClause(); - this.state = 4130; + this.state = 4132; this.match(HiveSqlParser.RPAREN); } break; case 2: { - this.state = 4132; - this.match(HiveSqlParser.RPAREN); this.state = 4134; + this.match(HiveSqlParser.RPAREN); + this.state = 4136; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 152 || _la === 281) { { - this.state = 4133; + this.state = 4135; localContext._nt = this.null_treatment(); } } - this.state = 4136; + this.state = 4138; this.match(HiveSqlParser.KW_OVER); - this.state = 4137; + this.state = 4139; localContext._ws = this.window_specification(); } break; case 3: { - this.state = 4138; + this.state = 4140; localContext._nt = this.null_treatment(); - this.state = 4139; + this.state = 4141; this.match(HiveSqlParser.RPAREN); - this.state = 4140; + this.state = 4142; this.match(HiveSqlParser.KW_OVER); - this.state = 4141; + this.state = 4143; localContext._ws = this.window_specification(); } break; case 4: { - this.state = 4143; + this.state = 4145; this.match(HiveSqlParser.RPAREN); } break; @@ -20940,7 +20951,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4148; + this.state = 4150; _la = this.tokenStream.LA(1); if(!(_la === 152 || _la === 281)) { this.errorHandler.recoverInline(this); @@ -20949,7 +20960,7 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4149; + this.state = 4151; this.match(HiveSqlParser.KW_NULLS); } } @@ -20973,7 +20984,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4151; + this.state = 4153; this.functionIdentifier(); } } @@ -20995,7 +21006,7 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new FunctionNameForDDLContext(this.context, this.state); this.enterRule(localContext, 572, HiveSqlParser.RULE_functionNameForDDL); try { - this.state = 4155; + this.state = 4157; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -21240,14 +21251,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 4153; + this.state = 4155; this.functionIdentifier(); } break; case HiveSqlParser.StringLiteral: this.enterOuterAlt(localContext, 2); { - this.state = 4154; + this.state = 4156; this.match(HiveSqlParser.StringLiteral); } break; @@ -21273,27 +21284,27 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new FunctionNameForInvokeContext(this.context, this.state); this.enterRule(localContext, 574, HiveSqlParser.RULE_functionNameForInvoke); try { - this.state = 4160; + this.state = 4162; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 556, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4157; + this.state = 4159; this.functionIdentifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4158; + this.state = 4160; this.sql11ReservedKeywordsUsedAsFunctionName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4159; + this.state = 4161; this.sysFuncNames(); } break; @@ -21320,29 +21331,29 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4162; + this.state = 4164; this.match(HiveSqlParser.KW_CAST); - this.state = 4163; + this.state = 4165; this.match(HiveSqlParser.LPAREN); - this.state = 4164; + this.state = 4166; this.expression(); - this.state = 4165; + this.state = 4167; this.match(HiveSqlParser.KW_AS); - this.state = 4166; + this.state = 4168; localContext._toType = this.primitiveType(); - this.state = 4169; + this.state = 4171; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137) { { - this.state = 4167; + this.state = 4169; localContext._fmt = this.match(HiveSqlParser.KW_FORMAT); - this.state = 4168; + this.state = 4170; this.match(HiveSqlParser.StringLiteral); } } - this.state = 4171; + this.state = 4173; this.match(HiveSqlParser.RPAREN); } } @@ -21367,43 +21378,43 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4173; + this.state = 4175; this.match(HiveSqlParser.KW_CASE); - this.state = 4174; + this.state = 4176; this.expression(); - this.state = 4180; + this.state = 4182; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 4175; + this.state = 4177; this.match(HiveSqlParser.KW_WHEN); - this.state = 4176; + this.state = 4178; this.expression(); - this.state = 4177; + this.state = 4179; this.match(HiveSqlParser.KW_THEN); - this.state = 4178; + this.state = 4180; this.expression(); } } - this.state = 4182; + this.state = 4184; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 383); - this.state = 4186; + this.state = 4188; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 4184; + this.state = 4186; this.match(HiveSqlParser.KW_ELSE); - this.state = 4185; + this.state = 4187; this.expression(); } } - this.state = 4188; + this.state = 4190; this.match(HiveSqlParser.KW_END); } } @@ -21428,41 +21439,41 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4190; + this.state = 4192; this.match(HiveSqlParser.KW_CASE); - this.state = 4196; + this.state = 4198; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 4191; + this.state = 4193; this.match(HiveSqlParser.KW_WHEN); - this.state = 4192; + this.state = 4194; this.expression(); - this.state = 4193; + this.state = 4195; this.match(HiveSqlParser.KW_THEN); - this.state = 4194; + this.state = 4196; this.expression(); } } - this.state = 4198; + this.state = 4200; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 383); - this.state = 4202; + this.state = 4204; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 4200; + this.state = 4202; this.match(HiveSqlParser.KW_ELSE); - this.state = 4201; + this.state = 4203; this.expression(); } } - this.state = 4204; + this.state = 4206; this.match(HiveSqlParser.KW_END); } } @@ -21487,25 +21498,25 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4206; + this.state = 4208; this.match(HiveSqlParser.KW_FLOOR); - this.state = 4207; + this.state = 4209; this.match(HiveSqlParser.LPAREN); - this.state = 4208; + this.state = 4210; this.expression(); - this.state = 4211; + this.state = 4213; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 341) { { - this.state = 4209; + this.state = 4211; this.match(HiveSqlParser.KW_TO); - this.state = 4210; + this.state = 4212; localContext._floorUnit = this.timeQualifiers(); } } - this.state = 4213; + this.state = 4215; this.match(HiveSqlParser.RPAREN); } } @@ -21529,17 +21540,17 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4215; + this.state = 4217; this.match(HiveSqlParser.KW_EXTRACT); - this.state = 4216; + this.state = 4218; this.match(HiveSqlParser.LPAREN); - this.state = 4217; + this.state = 4219; localContext._timeUnit = this.timeQualifiers(); - this.state = 4218; + this.state = 4220; this.match(HiveSqlParser.KW_FROM); - this.state = 4219; + this.state = 4221; this.expression(); - this.state = 4220; + this.state = 4222; this.match(HiveSqlParser.RPAREN); } } @@ -21561,21 +21572,21 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new TimeQualifiersContext(this.context, this.state); this.enterRule(localContext, 586, HiveSqlParser.RULE_timeQualifiers); try { - this.state = 4230; + this.state = 4232; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_YEAR: case HiveSqlParser.KW_YEARS: this.enterOuterAlt(localContext, 1); { - this.state = 4222; + this.state = 4224; this.year(); } break; case HiveSqlParser.KW_QUARTER: this.enterOuterAlt(localContext, 2); { - this.state = 4223; + this.state = 4225; this.match(HiveSqlParser.KW_QUARTER); } break; @@ -21583,7 +21594,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_MONTHS: this.enterOuterAlt(localContext, 3); { - this.state = 4224; + this.state = 4226; this.month(); } break; @@ -21591,7 +21602,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_WEEKS: this.enterOuterAlt(localContext, 4); { - this.state = 4225; + this.state = 4227; this.week(); } break; @@ -21599,7 +21610,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_DAYS: this.enterOuterAlt(localContext, 5); { - this.state = 4226; + this.state = 4228; this.day(); } break; @@ -21607,7 +21618,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_HOURS: this.enterOuterAlt(localContext, 6); { - this.state = 4227; + this.state = 4229; this.hour(); } break; @@ -21615,7 +21626,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_MINUTES: this.enterOuterAlt(localContext, 7); { - this.state = 4228; + this.state = 4230; this.minute(); } break; @@ -21623,7 +21634,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_SECONDS: this.enterOuterAlt(localContext, 8); { - this.state = 4229; + this.state = 4231; this.second(); } break; @@ -21650,82 +21661,82 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 588, HiveSqlParser.RULE_constant); let _la: number; try { - this.state = 4260; + this.state = 4262; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 565, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4232; + this.state = 4234; localContext._value = this.intervalValue(); - this.state = 4233; + this.state = 4235; localContext._qualifiers = this.intervalQualifiers(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4235; + this.state = 4237; this.match(HiveSqlParser.Number); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4236; + this.state = 4238; this.match(HiveSqlParser.KW_DATE); - this.state = 4237; + this.state = 4239; this.match(HiveSqlParser.StringLiteral); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4238; + this.state = 4240; this.match(HiveSqlParser.KW_CURRENT_DATE); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4239; + this.state = 4241; this.match(HiveSqlParser.KW_TIMESTAMP); - this.state = 4240; + this.state = 4242; this.match(HiveSqlParser.StringLiteral); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4241; + this.state = 4243; this.match(HiveSqlParser.KW_CURRENT_TIMESTAMP); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4242; + this.state = 4244; this.match(HiveSqlParser.KW_TIMESTAMPLOCALTZ); - this.state = 4243; + this.state = 4245; this.match(HiveSqlParser.StringLiteral); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4244; + this.state = 4246; this.match(HiveSqlParser.StringLiteral); - this.state = 4248; + this.state = 4250; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 426) { { { - this.state = 4245; + this.state = 4247; this.match(HiveSqlParser.StringLiteral); } } - this.state = 4250; + this.state = 4252; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -21734,58 +21745,58 @@ export class HiveSqlParser extends SQLParserBase { case 9: this.enterOuterAlt(localContext, 9); { - this.state = 4251; + this.state = 4253; this.match(HiveSqlParser.IntegralLiteral); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 4252; + this.state = 4254; this.match(HiveSqlParser.NumberLiteral); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 4253; + this.state = 4255; localContext._csName = this.match(HiveSqlParser.CharSetName); - this.state = 4254; + this.state = 4256; localContext._csLiteral = this.match(HiveSqlParser.CharSetLiteral); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 4255; + this.state = 4257; this.match(HiveSqlParser.KW_TRUE); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 4256; + this.state = 4258; this.match(HiveSqlParser.KW_FALSE); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 4257; + this.state = 4259; this.match(HiveSqlParser.KW_NULL); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 4258; + this.state = 4260; localContext._p = this.match(HiveSqlParser.QUESTION); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 4259; + this.state = 4261; this.columnNamePath(); } break; @@ -21812,7 +21823,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4262; + this.state = 4264; _la = this.tokenStream.LA(1); if(!(_la === 426 || _la === 431)) { this.errorHandler.recoverInline(this); @@ -21841,51 +21852,51 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new IntervalExpressionContext(this.context, this.state); this.enterRule(localContext, 592, HiveSqlParser.RULE_intervalExpression); try { - this.state = 4279; + this.state = 4281; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.LPAREN: this.enterOuterAlt(localContext, 1); { - this.state = 4264; + this.state = 4266; this.match(HiveSqlParser.LPAREN); - this.state = 4265; + this.state = 4267; localContext._value = this.intervalValue(); - this.state = 4266; + this.state = 4268; this.match(HiveSqlParser.RPAREN); - this.state = 4267; + this.state = 4269; localContext._qualifiers = this.intervalQualifiers(); } break; case HiveSqlParser.KW_INTERVAL: this.enterOuterAlt(localContext, 2); { - this.state = 4269; + this.state = 4271; this.match(HiveSqlParser.KW_INTERVAL); - this.state = 4275; + this.state = 4277; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.StringLiteral: case HiveSqlParser.Number: { - this.state = 4270; + this.state = 4272; localContext._value = this.intervalValue(); } break; case HiveSqlParser.LPAREN: { - this.state = 4271; + this.state = 4273; this.match(HiveSqlParser.LPAREN); - this.state = 4272; + this.state = 4274; localContext._expr = this.expression(); - this.state = 4273; + this.state = 4275; this.match(HiveSqlParser.RPAREN); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4277; + this.state = 4279; localContext._qualifiers = this.intervalQualifiers(); } break; @@ -21911,70 +21922,70 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new IntervalQualifiersContext(this.context, this.state); this.enterRule(localContext, 594, HiveSqlParser.RULE_intervalQualifiers); try { - this.state = 4295; + this.state = 4297; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 568, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4281; + this.state = 4283; this.year(); - this.state = 4282; + this.state = 4284; this.match(HiveSqlParser.KW_TO); - this.state = 4283; + this.state = 4285; this.month(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4285; + this.state = 4287; this.day(); - this.state = 4286; + this.state = 4288; this.match(HiveSqlParser.KW_TO); - this.state = 4287; + this.state = 4289; this.second(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4289; + this.state = 4291; this.year(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4290; + this.state = 4292; this.month(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4291; + this.state = 4293; this.day(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4292; + this.state = 4294; this.hour(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4293; + this.state = 4295; this.minute(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4294; + this.state = 4296; this.second(); } break; @@ -22001,21 +22012,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4297; + this.state = 4299; this.precedenceAndExpression(); - this.state = 4302; + this.state = 4304; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 228) { { { - this.state = 4298; + this.state = 4300; this.match(HiveSqlParser.KW_OR); - this.state = 4299; + this.state = 4301; this.precedenceAndExpression(); } } - this.state = 4304; + this.state = 4306; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22039,83 +22050,83 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new AtomExpressionContext(this.context, this.state); this.enterRule(localContext, 598, HiveSqlParser.RULE_atomExpression); try { - this.state = 4316; + this.state = 4318; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 570, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4305; + this.state = 4307; this.constant(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4306; + this.state = 4308; this.intervalExpression(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4307; + this.state = 4309; this.castExpression(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4308; + this.state = 4310; this.extractExpression(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4309; + this.state = 4311; this.floorExpression(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4310; + this.state = 4312; this.caseExpression(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4311; + this.state = 4313; this.whenExpression(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4312; + this.state = 4314; this.subQueryExpression(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 4313; + this.state = 4315; this.function_(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 4314; + this.state = 4316; this.expressionsInParenthesis(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 4315; + this.state = 4317; this.id_(); } break; @@ -22143,14 +22154,14 @@ export class HiveSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4321; + this.state = 4323; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 571, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4318; + this.state = 4320; _la = this.tokenStream.LA(1); if(!(((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 163) !== 0))) { this.errorHandler.recoverInline(this); @@ -22162,35 +22173,35 @@ export class HiveSqlParser extends SQLParserBase { } } } - this.state = 4323; + this.state = 4325; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 571, this.context); } - this.state = 4324; + this.state = 4326; this.atomExpression(); - this.state = 4333; + this.state = 4335; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 395 || _la === 401) { { - this.state = 4331; + this.state = 4333; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.LSQUARE: { - this.state = 4325; + this.state = 4327; this.match(HiveSqlParser.LSQUARE); - this.state = 4326; + this.state = 4328; this.expression(); - this.state = 4327; + this.state = 4329; this.match(HiveSqlParser.RSQUARE); } break; case HiveSqlParser.DOT: { - this.state = 4329; + this.state = 4331; this.match(HiveSqlParser.DOT); - this.state = 4330; + this.state = 4332; this.id_(); } break; @@ -22198,7 +22209,7 @@ export class HiveSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 4335; + this.state = 4337; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22225,21 +22236,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4336; + this.state = 4338; this.precedenceUnaryPrefixExpression(); - this.state = 4341; + this.state = 4343; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 423) { { { - this.state = 4337; + this.state = 4339; this.match(HiveSqlParser.BITWISEXOR); - this.state = 4338; + this.state = 4340; this.precedenceUnaryPrefixExpression(); } } - this.state = 4343; + this.state = 4345; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22266,15 +22277,15 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4344; + this.state = 4346; this.precedenceBitwiseXorExpression(); - this.state = 4349; + this.state = 4351; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 57) !== 0)) { { { - this.state = 4345; + this.state = 4347; _la = this.tokenStream.LA(1); if(!(((((_la - 412)) & ~0x1F) === 0 && ((1 << (_la - 412)) & 57) !== 0))) { this.errorHandler.recoverInline(this); @@ -22283,11 +22294,11 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4346; + this.state = 4348; this.precedenceBitwiseXorExpression(); } } - this.state = 4351; + this.state = 4353; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22314,15 +22325,15 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4352; + this.state = 4354; this.precedenceStarExpression(); - this.state = 4357; + this.state = 4359; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 413 || _la === 414) { { { - this.state = 4353; + this.state = 4355; _la = this.tokenStream.LA(1); if(!(_la === 413 || _la === 414)) { this.errorHandler.recoverInline(this); @@ -22331,11 +22342,11 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4354; + this.state = 4356; this.precedenceStarExpression(); } } - this.state = 4359; + this.state = 4361; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22362,21 +22373,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4360; + this.state = 4362; this.precedencePlusExpression(); - this.state = 4365; + this.state = 4367; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 422) { { { - this.state = 4361; + this.state = 4363; this.match(HiveSqlParser.CONCATENATE); - this.state = 4362; + this.state = 4364; localContext._plus = this.precedencePlusExpression(); } } - this.state = 4367; + this.state = 4369; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22403,21 +22414,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4368; + this.state = 4370; this.precedenceConcatenateExpression(); - this.state = 4373; + this.state = 4375; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 419) { { { - this.state = 4369; + this.state = 4371; this.match(HiveSqlParser.AMPERSAND); - this.state = 4370; + this.state = 4372; this.precedenceConcatenateExpression(); } } - this.state = 4375; + this.state = 4377; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22444,21 +22455,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4376; + this.state = 4378; this.precedenceAmpersandExpression(); - this.state = 4381; + this.state = 4383; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 421) { { { - this.state = 4377; + this.state = 4379; this.match(HiveSqlParser.BITWISEOR); - this.state = 4378; + this.state = 4380; this.precedenceAmpersandExpression(); } } - this.state = 4383; + this.state = 4385; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22485,7 +22496,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4384; + this.state = 4386; _la = this.tokenStream.LA(1); if(!(_la === 184 || _la === 270 || _la === 286 || ((((_la - 408)) & ~0x1F) === 0 && ((1 << (_la - 408)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -22516,11 +22527,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4386; + this.state = 4388; this.match(HiveSqlParser.LPAREN); - this.state = 4387; + this.state = 4389; this.selectStatement(); - this.state = 4388; + this.state = 4390; this.match(HiveSqlParser.RPAREN); } } @@ -22542,7 +22553,7 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new PrecedenceSimilarExpressionContext(this.context, this.state); this.enterRule(localContext, 618, HiveSqlParser.RULE_precedenceSimilarExpression); try { - this.state = 4396; + this.state = 4398; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -22847,14 +22858,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.CharSetName: this.enterOuterAlt(localContext, 1); { - this.state = 4390; - localContext._a = this.precedenceBitwiseOrExpression(); this.state = 4392; + localContext._a = this.precedenceBitwiseOrExpression(); + this.state = 4394; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 580, this.context) ) { case 1: { - this.state = 4391; + this.state = 4393; localContext._part = this.precedenceSimilarExpressionPart(); } break; @@ -22864,9 +22875,9 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_EXISTS: this.enterOuterAlt(localContext, 2); { - this.state = 4394; + this.state = 4396; this.match(HiveSqlParser.KW_EXISTS); - this.state = 4395; + this.state = 4397; this.subQueryExpression(); } break; @@ -22892,31 +22903,31 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new PrecedenceSimilarExpressionPartContext(this.context, this.state); this.enterRule(localContext, 620, HiveSqlParser.RULE_precedenceSimilarExpressionPart); try { - this.state = 4404; + this.state = 4406; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 582, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4398; + this.state = 4400; this.precedenceSimilarOperator(); - this.state = 4399; + this.state = 4401; localContext._equalExpr = this.precedenceBitwiseOrExpression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4401; + this.state = 4403; this.precedenceSimilarExpressionAtom(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4402; + this.state = 4404; this.match(HiveSqlParser.KW_NOT); - this.state = 4403; + this.state = 4405; this.precedenceSimilarExpressionPartNot(); } break; @@ -22941,37 +22952,37 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 622, HiveSqlParser.RULE_precedenceSimilarExpressionAtom); let _la: number; try { - this.state = 4420; + this.state = 4422; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_IN: this.enterOuterAlt(localContext, 1); { - this.state = 4406; + this.state = 4408; this.match(HiveSqlParser.KW_IN); - this.state = 4407; + this.state = 4409; this.precedenceSimilarExpressionIn(); } break; case HiveSqlParser.KW_BETWEEN: this.enterOuterAlt(localContext, 2); { - this.state = 4408; + this.state = 4410; this.match(HiveSqlParser.KW_BETWEEN); - this.state = 4409; + this.state = 4411; localContext._min = this.precedenceBitwiseOrExpression(); - this.state = 4410; + this.state = 4412; this.match(HiveSqlParser.KW_AND); - this.state = 4411; + this.state = 4413; localContext._max = this.precedenceBitwiseOrExpression(); } break; case HiveSqlParser.KW_LIKE: this.enterOuterAlt(localContext, 3); { - this.state = 4413; + this.state = 4415; this.match(HiveSqlParser.KW_LIKE); - this.state = 4414; + this.state = 4416; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 13)) { this.errorHandler.recoverInline(this); @@ -22980,7 +22991,7 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4415; + this.state = 4417; localContext._expr = this.expressionsInParenthesis(); } break; @@ -22992,9 +23003,9 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.GREATERTHAN: this.enterOuterAlt(localContext, 4); { - this.state = 4416; + this.state = 4418; this.subQuerySelectorOperator(); - this.state = 4417; + this.state = 4419; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 13 || _la === 313)) { this.errorHandler.recoverInline(this); @@ -23003,7 +23014,7 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4418; + this.state = 4420; this.subQueryExpression(); } break; @@ -23029,20 +23040,20 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new PrecedenceSimilarExpressionInContext(this.context, this.state); this.enterRule(localContext, 624, HiveSqlParser.RULE_precedenceSimilarExpressionIn); try { - this.state = 4424; + this.state = 4426; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 584, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4422; + this.state = 4424; this.subQueryExpression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4423; + this.state = 4425; localContext._expr = this.expressionsInParenthesis(); } break; @@ -23067,13 +23078,13 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 626, HiveSqlParser.RULE_precedenceSimilarExpressionPartNot); let _la: number; try { - this.state = 4429; + this.state = 4431; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 585, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4426; + this.state = 4428; _la = this.tokenStream.LA(1); if(!(_la === 184 || _la === 270 || _la === 286)) { this.errorHandler.recoverInline(this); @@ -23082,14 +23093,14 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4427; + this.state = 4429; localContext._notExpr = this.precedenceBitwiseOrExpression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4428; + this.state = 4430; this.precedenceSimilarExpressionAtom(); } break; @@ -23115,11 +23126,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4431; + this.state = 4433; this.match(HiveSqlParser.KW_IS); - this.state = 4432; + this.state = 4434; this.match(HiveSqlParser.KW_DISTINCT); - this.state = 4433; + this.state = 4435; this.match(HiveSqlParser.KW_FROM); } } @@ -23141,40 +23152,40 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new PrecedenceEqualOperatorContext(this.context, this.state); this.enterRule(localContext, 630, HiveSqlParser.RULE_precedenceEqualOperator); try { - this.state = 4442; + this.state = 4444; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.EQUAL: this.enterOuterAlt(localContext, 1); { - this.state = 4435; + this.state = 4437; this.match(HiveSqlParser.EQUAL); } break; case HiveSqlParser.EQUAL_NS: this.enterOuterAlt(localContext, 2); { - this.state = 4436; + this.state = 4438; this.match(HiveSqlParser.EQUAL_NS); } break; case HiveSqlParser.NOTEQUAL: this.enterOuterAlt(localContext, 3); { - this.state = 4437; + this.state = 4439; this.match(HiveSqlParser.NOTEQUAL); } break; case HiveSqlParser.KW_IS: this.enterOuterAlt(localContext, 4); { - this.state = 4438; + this.state = 4440; this.match(HiveSqlParser.KW_IS); - this.state = 4439; + this.state = 4441; this.match(HiveSqlParser.KW_NOT); - this.state = 4440; + this.state = 4442; this.match(HiveSqlParser.KW_DISTINCT); - this.state = 4441; + this.state = 4443; this.match(HiveSqlParser.KW_FROM); } break; @@ -23203,33 +23214,33 @@ export class HiveSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4444; + this.state = 4446; this.precedenceSimilarExpression(); - this.state = 4453; + this.state = 4455; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 588, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 4451; + this.state = 4453; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 587, this.context) ) { case 1: { - this.state = 4445; + this.state = 4447; localContext._precedenceEqualOperator = this.precedenceEqualOperator(); localContext._equal.push(localContext._precedenceEqualOperator); - this.state = 4446; + this.state = 4448; localContext._precedenceSimilarExpression = this.precedenceSimilarExpression(); localContext._p.push(localContext._precedenceSimilarExpression); } break; case 2: { - this.state = 4448; + this.state = 4450; localContext._precedenceDistinctOperator = this.precedenceDistinctOperator(); localContext._dist.push(localContext._precedenceDistinctOperator); - this.state = 4449; + this.state = 4451; localContext._precedenceSimilarExpression = this.precedenceSimilarExpression(); localContext._p.push(localContext._precedenceSimilarExpression); } @@ -23237,7 +23248,7 @@ export class HiveSqlParser extends SQLParserBase { } } } - this.state = 4455; + this.state = 4457; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 588, this.context); } @@ -23262,43 +23273,43 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 634, HiveSqlParser.RULE_isCondition); let _la: number; try { - this.state = 4462; + this.state = 4464; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_NULL: this.enterOuterAlt(localContext, 1); { - this.state = 4456; + this.state = 4458; this.match(HiveSqlParser.KW_NULL); } break; case HiveSqlParser.KW_TRUE: this.enterOuterAlt(localContext, 2); { - this.state = 4457; + this.state = 4459; this.match(HiveSqlParser.KW_TRUE); } break; case HiveSqlParser.KW_FALSE: this.enterOuterAlt(localContext, 3); { - this.state = 4458; + this.state = 4460; this.match(HiveSqlParser.KW_FALSE); } break; case HiveSqlParser.KW_UNKNOWN: this.enterOuterAlt(localContext, 4); { - this.state = 4459; + this.state = 4461; this.match(HiveSqlParser.KW_UNKNOWN); } break; case HiveSqlParser.KW_NOT: this.enterOuterAlt(localContext, 5); { - this.state = 4460; + this.state = 4462; this.match(HiveSqlParser.KW_NOT); - this.state = 4461; + this.state = 4463; _la = this.tokenStream.LA(1); if(!(_la === 125 || _la === 219 || _la === 350 || _la === 360)) { this.errorHandler.recoverInline(this); @@ -23335,32 +23346,32 @@ export class HiveSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4467; + this.state = 4469; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 590, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4464; + this.state = 4466; this.match(HiveSqlParser.KW_NOT); } } } - this.state = 4469; + this.state = 4471; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 590, this.context); } - this.state = 4470; + this.state = 4472; this.precedenceEqualExpression(); - this.state = 4473; + this.state = 4475; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 167) { { - this.state = 4471; + this.state = 4473; localContext._a = this.match(HiveSqlParser.KW_IS); - this.state = 4472; + this.state = 4474; this.isCondition(); } } @@ -23388,21 +23399,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4475; + this.state = 4477; this.precedenceNotExpression(); - this.state = 4480; + this.state = 4482; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 11) { { { - this.state = 4476; + this.state = 4478; this.match(HiveSqlParser.KW_AND); - this.state = 4477; + this.state = 4479; this.precedenceNotExpression(); } } - this.state = 4482; + this.state = 4484; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -23429,14 +23440,14 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4483; - this.tableName(); this.state = 4485; + this.tableName(); + this.state = 4487; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 237) { { - this.state = 4484; + this.state = 4486; this.partitionSpec(); } } @@ -23464,29 +23475,29 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4487; + this.state = 4489; this.match(HiveSqlParser.KW_PARTITION); - this.state = 4488; + this.state = 4490; this.match(HiveSqlParser.LPAREN); - this.state = 4489; + this.state = 4491; this.partitionVal(); - this.state = 4494; + this.state = 4496; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4490; + this.state = 4492; this.match(HiveSqlParser.COMMA); - this.state = 4491; + this.state = 4493; this.partitionVal(); } } - this.state = 4496; + this.state = 4498; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4497; + this.state = 4499; this.match(HiveSqlParser.RPAREN); } } @@ -23511,16 +23522,16 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4499; + this.state = 4501; this.id_(); - this.state = 4502; + this.state = 4504; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 405) { { - this.state = 4500; + this.state = 4502; this.match(HiveSqlParser.EQUAL); - this.state = 4501; + this.state = 4503; this.constant(); } } @@ -23548,27 +23559,27 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4504; + this.state = 4506; this.match(HiveSqlParser.LPAREN); - this.state = 4505; + this.state = 4507; this.partitionSelectorVal(); - this.state = 4510; + this.state = 4512; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4506; + this.state = 4508; this.match(HiveSqlParser.COMMA); - this.state = 4507; + this.state = 4509; this.partitionSelectorVal(); } } - this.state = 4512; + this.state = 4514; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4513; + this.state = 4515; this.match(HiveSqlParser.RPAREN); } } @@ -23592,14 +23603,14 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4515; + this.state = 4517; this.id_(); - this.state = 4518; + this.state = 4520; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_LIKE: { - this.state = 4516; + this.state = 4518; this.match(HiveSqlParser.KW_LIKE); } break; @@ -23610,14 +23621,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.GREATERTHANOREQUALTO: case HiveSqlParser.GREATERTHAN: { - this.state = 4517; + this.state = 4519; this.subQuerySelectorOperator(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4520; + this.state = 4522; this.constant(); } } @@ -23642,7 +23653,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4522; + this.state = 4524; _la = this.tokenStream.LA(1); if(!(((((_la - 405)) & ~0x1F) === 0 && ((1 << (_la - 405)) & 125) !== 0))) { this.errorHandler.recoverInline(this); @@ -23674,7 +23685,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4524; + this.state = 4526; _la = this.tokenStream.LA(1); if(!(((((_la - 11)) & ~0x1F) === 0 && ((1 << (_la - 11)) & 17023009) !== 0) || _la === 100 || _la === 131 || ((((_la - 132)) & ~0x1F) === 0 && ((1 << (_la - 132)) & 3225944065) !== 0) || _la === 184 || _la === 198 || _la === 216 || _la === 228 || ((((_la - 264)) & ~0x1F) === 0 && ((1 << (_la - 264)) & 4194369) !== 0) || ((((_la - 311)) & ~0x1F) === 0 && ((1 << (_la - 311)) & 536883201) !== 0) || _la === 357 || _la === 383 || ((((_la - 405)) & ~0x1F) === 0 && ((1 << (_la - 405)) & 385023) !== 0))) { this.errorHandler.recoverInline(this); @@ -23703,13 +23714,13 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new Id_Context(this.context, this.state); this.enterRule(localContext, 654, HiveSqlParser.RULE_id_); try { - this.state = 4528; + this.state = 4530; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 4526; + this.state = 4528; this.match(HiveSqlParser.Identifier); } break; @@ -23954,7 +23965,7 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ZONE: this.enterOuterAlt(localContext, 2); { - this.state = 4527; + this.state = 4529; this.nonReserved(); } break; @@ -23983,16 +23994,16 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4530; + this.state = 4532; this.id_(); - this.state = 4533; + this.state = 4535; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 395) { { - this.state = 4531; + this.state = 4533; this.match(HiveSqlParser.DOT); - this.state = 4532; + this.state = 4534; localContext._fn = this.id_(); } } @@ -24019,7 +24030,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4535; + this.state = 4537; this.id_(); } } @@ -24044,7 +24055,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4537; + this.state = 4539; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 3252454782) !== 0) || ((((_la - 33)) & ~0x1F) === 0 && ((1 << (_la - 33)) & 94072755) !== 0) || ((((_la - 66)) & ~0x1F) === 0 && ((1 << (_la - 66)) & 3203280837) !== 0) || ((((_la - 98)) & ~0x1F) === 0 && ((1 << (_la - 98)) & 3774298979) !== 0) || ((((_la - 130)) & ~0x1F) === 0 && ((1 << (_la - 130)) & 1985876353) !== 0) || ((((_la - 168)) & ~0x1F) === 0 && ((1 << (_la - 168)) & 3152987127) !== 0) || ((((_la - 200)) & ~0x1F) === 0 && ((1 << (_la - 200)) & 215407575) !== 0) || ((((_la - 232)) & ~0x1F) === 0 && ((1 << (_la - 232)) & 1859156443) !== 0) || ((((_la - 265)) & ~0x1F) === 0 && ((1 << (_la - 265)) & 4039901127) !== 0) || ((((_la - 297)) & ~0x1F) === 0 && ((1 << (_la - 297)) & 3755917179) !== 0) || ((((_la - 330)) & ~0x1F) === 0 && ((1 << (_la - 330)) & 3402225181) !== 0) || ((((_la - 362)) & ~0x1F) === 0 && ((1 << (_la - 362)) & 4238323319) !== 0) || _la === 394)) { this.errorHandler.recoverInline(this); @@ -24076,7 +24087,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4539; + this.state = 4541; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 469827584) !== 0) || ((((_la - 63)) & ~0x1F) === 0 && ((1 << (_la - 63)) & 259) !== 0) || _la === 100 || _la === 131 || ((((_la - 145)) & ~0x1F) === 0 && ((1 << (_la - 145)) & 393281) !== 0) || _la === 198 || _la === 264 || _la === 311 || _la === 337)) { this.errorHandler.recoverInline(this); @@ -24105,7 +24116,7 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new ConfigPropertiesItemContext(this.context, this.state); this.enterRule(localContext, 664, HiveSqlParser.RULE_configPropertiesItem); try { - this.state = 4592; + this.state = 4594; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ABORT: @@ -24350,357 +24361,357 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 4541; + this.state = 4543; this.id_(); } break; case HiveSqlParser.KW_SELECT: this.enterOuterAlt(localContext, 2); { - this.state = 4542; + this.state = 4544; this.match(HiveSqlParser.KW_SELECT); } break; case HiveSqlParser.KW_JOIN: this.enterOuterAlt(localContext, 3); { - this.state = 4543; + this.state = 4545; this.match(HiveSqlParser.KW_JOIN); } break; case HiveSqlParser.KW_PARTITION: this.enterOuterAlt(localContext, 4); { - this.state = 4544; + this.state = 4546; this.match(HiveSqlParser.KW_PARTITION); } break; case HiveSqlParser.KW_MAP: this.enterOuterAlt(localContext, 5); { - this.state = 4545; + this.state = 4547; this.match(HiveSqlParser.KW_MAP); } break; case HiveSqlParser.KW_REDUCE: this.enterOuterAlt(localContext, 6); { - this.state = 4546; + this.state = 4548; this.match(HiveSqlParser.KW_REDUCE); } break; case HiveSqlParser.KW_USER: this.enterOuterAlt(localContext, 7); { - this.state = 4547; + this.state = 4549; this.match(HiveSqlParser.KW_USER); } break; case HiveSqlParser.KW_PERCENT: this.enterOuterAlt(localContext, 8); { - this.state = 4548; + this.state = 4550; this.match(HiveSqlParser.KW_PERCENT); } break; case HiveSqlParser.KW_INTERVAL: this.enterOuterAlt(localContext, 9); { - this.state = 4549; + this.state = 4551; this.match(HiveSqlParser.KW_INTERVAL); } break; case HiveSqlParser.KW_ROWS: this.enterOuterAlt(localContext, 10); { - this.state = 4550; + this.state = 4552; this.match(HiveSqlParser.KW_ROWS); } break; case HiveSqlParser.KW_UNION: this.enterOuterAlt(localContext, 11); { - this.state = 4551; + this.state = 4553; this.match(HiveSqlParser.KW_UNION); } break; case HiveSqlParser.KW_GROUP: this.enterOuterAlt(localContext, 12); { - this.state = 4552; + this.state = 4554; this.match(HiveSqlParser.KW_GROUP); } break; case HiveSqlParser.KW_MERGE: this.enterOuterAlt(localContext, 13); { - this.state = 4553; + this.state = 4555; this.match(HiveSqlParser.KW_MERGE); } break; case HiveSqlParser.KW_NULL: this.enterOuterAlt(localContext, 14); { - this.state = 4554; + this.state = 4556; this.match(HiveSqlParser.KW_NULL); } break; case HiveSqlParser.KW_FETCH: this.enterOuterAlt(localContext, 15); { - this.state = 4555; + this.state = 4557; this.match(HiveSqlParser.KW_FETCH); } break; case HiveSqlParser.KW_LOCAL: this.enterOuterAlt(localContext, 16); { - this.state = 4556; + this.state = 4558; this.match(HiveSqlParser.KW_LOCAL); } break; case HiveSqlParser.KW_DROP: this.enterOuterAlt(localContext, 17); { - this.state = 4557; + this.state = 4559; this.match(HiveSqlParser.KW_DROP); } break; case HiveSqlParser.KW_TABLE: this.enterOuterAlt(localContext, 18); { - this.state = 4558; + this.state = 4560; this.match(HiveSqlParser.KW_TABLE); } break; case HiveSqlParser.KW_ON: this.enterOuterAlt(localContext, 19); { - this.state = 4559; + this.state = 4561; this.match(HiveSqlParser.KW_ON); } break; case HiveSqlParser.KW_ROW: this.enterOuterAlt(localContext, 20); { - this.state = 4560; + this.state = 4562; this.match(HiveSqlParser.KW_ROW); } break; case HiveSqlParser.KW_GROUPING: this.enterOuterAlt(localContext, 21); { - this.state = 4561; + this.state = 4563; this.match(HiveSqlParser.KW_GROUPING); } break; case HiveSqlParser.KW_SET: this.enterOuterAlt(localContext, 22); { - this.state = 4562; + this.state = 4564; this.match(HiveSqlParser.KW_SET); } break; case HiveSqlParser.KW_FORCE: this.enterOuterAlt(localContext, 23); { - this.state = 4563; + this.state = 4565; this.match(HiveSqlParser.KW_FORCE); } break; case HiveSqlParser.KW_START: this.enterOuterAlt(localContext, 24); { - this.state = 4564; + this.state = 4566; this.match(HiveSqlParser.KW_START); } break; case HiveSqlParser.KW_INSERT: this.enterOuterAlt(localContext, 25); { - this.state = 4565; + this.state = 4567; this.match(HiveSqlParser.KW_INSERT); } break; case HiveSqlParser.KW_CONF: this.enterOuterAlt(localContext, 26); { - this.state = 4566; + this.state = 4568; this.match(HiveSqlParser.KW_CONF); } break; case HiveSqlParser.KW_INTO: this.enterOuterAlt(localContext, 27); { - this.state = 4567; + this.state = 4569; this.match(HiveSqlParser.KW_INTO); } break; case HiveSqlParser.KW_UNIQUE: this.enterOuterAlt(localContext, 28); { - this.state = 4568; + this.state = 4570; this.match(HiveSqlParser.KW_UNIQUE); } break; case HiveSqlParser.KW_COLUMN: this.enterOuterAlt(localContext, 29); { - this.state = 4569; + this.state = 4571; this.match(HiveSqlParser.KW_COLUMN); } break; case HiveSqlParser.KW_TRANSFORM: this.enterOuterAlt(localContext, 30); { - this.state = 4570; + this.state = 4572; this.match(HiveSqlParser.KW_TRANSFORM); } break; case HiveSqlParser.KW_DISTINCT: this.enterOuterAlt(localContext, 31); { - this.state = 4571; + this.state = 4573; this.match(HiveSqlParser.KW_DISTINCT); } break; case HiveSqlParser.KW_IN: this.enterOuterAlt(localContext, 32); { - this.state = 4572; + this.state = 4574; this.match(HiveSqlParser.KW_IN); } break; case HiveSqlParser.KW_REFERENCES: this.enterOuterAlt(localContext, 33); { - this.state = 4573; + this.state = 4575; this.match(HiveSqlParser.KW_REFERENCES); } break; case HiveSqlParser.KW_TIMESTAMP: this.enterOuterAlt(localContext, 34); { - this.state = 4574; + this.state = 4576; this.match(HiveSqlParser.KW_TIMESTAMP); } break; case HiveSqlParser.KW_ONLY: this.enterOuterAlt(localContext, 35); { - this.state = 4575; + this.state = 4577; this.match(HiveSqlParser.KW_ONLY); } break; case HiveSqlParser.KW_END: this.enterOuterAlt(localContext, 36); { - this.state = 4576; + this.state = 4578; this.match(HiveSqlParser.KW_END); } break; case HiveSqlParser.KW_FUNCTION: this.enterOuterAlt(localContext, 37); { - this.state = 4577; + this.state = 4579; this.match(HiveSqlParser.KW_FUNCTION); } break; case HiveSqlParser.KW_UPDATE: this.enterOuterAlt(localContext, 38); { - this.state = 4578; + this.state = 4580; this.match(HiveSqlParser.KW_UPDATE); } break; case HiveSqlParser.KW_AUTHORIZATION: this.enterOuterAlt(localContext, 39); { - this.state = 4579; + this.state = 4581; this.match(HiveSqlParser.KW_AUTHORIZATION); } break; case HiveSqlParser.KW_DDL: this.enterOuterAlt(localContext, 40); { - this.state = 4580; + this.state = 4582; this.match(HiveSqlParser.KW_DDL); } break; case HiveSqlParser.KW_VALUES: this.enterOuterAlt(localContext, 41); { - this.state = 4581; + this.state = 4583; this.match(HiveSqlParser.KW_VALUES); } break; case HiveSqlParser.KW_TIME: this.enterOuterAlt(localContext, 42); { - this.state = 4582; + this.state = 4584; this.match(HiveSqlParser.KW_TIME); } break; case HiveSqlParser.KW_IS: this.enterOuterAlt(localContext, 43); { - this.state = 4583; + this.state = 4585; this.match(HiveSqlParser.KW_IS); } break; case HiveSqlParser.KW_FOR: this.enterOuterAlt(localContext, 44); { - this.state = 4584; + this.state = 4586; this.match(HiveSqlParser.KW_FOR); } break; case HiveSqlParser.KW_NOT: this.enterOuterAlt(localContext, 45); { - this.state = 4585; + this.state = 4587; this.match(HiveSqlParser.KW_NOT); } break; case HiveSqlParser.KW_BINARY: this.enterOuterAlt(localContext, 46); { - this.state = 4586; + this.state = 4588; this.match(HiveSqlParser.KW_BINARY); } break; case HiveSqlParser.KW_USING: this.enterOuterAlt(localContext, 47); { - this.state = 4587; + this.state = 4589; this.match(HiveSqlParser.KW_USING); } break; case HiveSqlParser.KW_READS: this.enterOuterAlt(localContext, 48); { - this.state = 4588; + this.state = 4590; this.match(HiveSqlParser.KW_READS); } break; case HiveSqlParser.KW_BETWEEN: this.enterOuterAlt(localContext, 49); { - this.state = 4589; + this.state = 4591; this.match(HiveSqlParser.KW_BETWEEN); } break; case HiveSqlParser.KW_CURRENT: this.enterOuterAlt(localContext, 50); { - this.state = 4590; + this.state = 4592; this.match(HiveSqlParser.KW_CURRENT); } break; case HiveSqlParser.KW_AS: this.enterOuterAlt(localContext, 51); { - this.state = 4591; + this.state = 4593; this.match(HiveSqlParser.KW_AS); } break; @@ -24727,53 +24738,53 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 666, HiveSqlParser.RULE_resourcePlanDdlStatements); let _la: number; try { - this.state = 4759; + this.state = 4761; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 617, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4594; + this.state = 4596; this.match(HiveSqlParser.KW_CREATE); - this.state = 4595; + this.state = 4597; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 4596; - this.match(HiveSqlParser.KW_PLAN); this.state = 4598; + this.match(HiveSqlParser.KW_PLAN); + this.state = 4600; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 4597; + this.state = 4599; this.ifNotExists(); } } - this.state = 4609; + this.state = 4611; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 603, this.context) ) { case 1: { - this.state = 4600; + this.state = 4602; localContext._name = this.id_(); - this.state = 4601; + this.state = 4603; this.match(HiveSqlParser.KW_LIKE); - this.state = 4602; + this.state = 4604; localContext._likeName = this.id_(); } break; case 2: { - this.state = 4604; + this.state = 4606; localContext._name = this.id_(); - this.state = 4607; + this.state = 4609; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 602, this.context) ) { case 1: { - this.state = 4605; + this.state = 4607; this.match(HiveSqlParser.KW_WITH); - this.state = 4606; + this.state = 4608; this.rpAssignList(); } break; @@ -24786,57 +24797,57 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4611; + this.state = 4613; this.match(HiveSqlParser.KW_ALTER); - this.state = 4612; + this.state = 4614; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 4613; + this.state = 4615; this.match(HiveSqlParser.KW_PLAN); - this.state = 4614; + this.state = 4616; localContext._name = this.id_(); - this.state = 4639; + this.state = 4641; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_VALIDATE: { - this.state = 4615; + this.state = 4617; this.match(HiveSqlParser.KW_VALIDATE); } break; case HiveSqlParser.KW_DISABLE: case HiveSqlParser.KW_DISABLED: { - this.state = 4616; + this.state = 4618; this.disable(); } break; case HiveSqlParser.KW_SET: { - this.state = 4617; + this.state = 4619; this.match(HiveSqlParser.KW_SET); - this.state = 4618; + this.state = 4620; this.rpAssignList(); } break; case HiveSqlParser.KW_UNSET: { - this.state = 4619; + this.state = 4621; this.match(HiveSqlParser.KW_UNSET); - this.state = 4620; + this.state = 4622; this.rpUnassign(); - this.state = 4625; + this.state = 4627; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4621; + this.state = 4623; this.match(HiveSqlParser.COMMA); - this.state = 4622; + this.state = 4624; this.rpUnassign(); } } - this.state = 4627; + this.state = 4629; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -24844,24 +24855,24 @@ export class HiveSqlParser extends SQLParserBase { break; case HiveSqlParser.KW_RENAME: { - this.state = 4628; + this.state = 4630; this.match(HiveSqlParser.KW_RENAME); - this.state = 4629; + this.state = 4631; this.match(HiveSqlParser.KW_TO); - this.state = 4630; + this.state = 4632; localContext._newName = this.id_(); } break; case HiveSqlParser.KW_ACTIVATE: { - this.state = 4631; - this.activate(); this.state = 4633; + this.activate(); + this.state = 4635; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 605, this.context) ) { case 1: { - this.state = 4632; + this.state = 4634; this.enable(); } break; @@ -24871,14 +24882,14 @@ export class HiveSqlParser extends SQLParserBase { case HiveSqlParser.KW_ENABLE: case HiveSqlParser.KW_ENABLED: { - this.state = 4635; - this.enable(); this.state = 4637; + this.enable(); + this.state = 4639; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 4636; + this.state = 4638; this.activate(); } } @@ -24893,88 +24904,88 @@ export class HiveSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4641; + this.state = 4643; this.match(HiveSqlParser.KW_DROP); - this.state = 4642; + this.state = 4644; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 4643; - this.match(HiveSqlParser.KW_PLAN); this.state = 4645; + this.match(HiveSqlParser.KW_PLAN); + this.state = 4647; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151) { { - this.state = 4644; + this.state = 4646; this.ifExists(); } } - this.state = 4647; + this.state = 4649; localContext._name = this.id_(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4650; + this.state = 4652; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ENABLE: case HiveSqlParser.KW_ENABLED: { - this.state = 4648; + this.state = 4650; this.enable(); } break; case HiveSqlParser.KW_DISABLE: case HiveSqlParser.KW_DISABLED: { - this.state = 4649; + this.state = 4651; this.disable(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4652; + this.state = 4654; this.match(HiveSqlParser.KW_WORKLOAD); - this.state = 4653; + this.state = 4655; this.match(HiveSqlParser.KW_MANAGEMENT); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4655; + this.state = 4657; this.match(HiveSqlParser.KW_REPLACE); - this.state = 4667; + this.state = 4669; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ACTIVE: { - this.state = 4656; + this.state = 4658; this.match(HiveSqlParser.KW_ACTIVE); - this.state = 4657; + this.state = 4659; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 4658; + this.state = 4660; this.match(HiveSqlParser.KW_PLAN); - this.state = 4659; + this.state = 4661; this.match(HiveSqlParser.KW_WITH); - this.state = 4660; + this.state = 4662; localContext._src = this.id_(); } break; case HiveSqlParser.KW_RESOURCE: { - this.state = 4661; + this.state = 4663; this.match(HiveSqlParser.KW_RESOURCE); - this.state = 4662; + this.state = 4664; this.match(HiveSqlParser.KW_PLAN); - this.state = 4663; + this.state = 4665; localContext._dest = this.id_(); - this.state = 4664; + this.state = 4666; this.match(HiveSqlParser.KW_WITH); - this.state = 4665; + this.state = 4667; localContext._src = this.id_(); } break; @@ -24986,93 +24997,93 @@ export class HiveSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4669; + this.state = 4671; this.match(HiveSqlParser.KW_CREATE); - this.state = 4670; + this.state = 4672; this.match(HiveSqlParser.KW_TRIGGER); - this.state = 4671; + this.state = 4673; localContext._rpName = this.id_(); - this.state = 4672; + this.state = 4674; this.match(HiveSqlParser.DOT); - this.state = 4673; + this.state = 4675; localContext._triggerName = this.id_(); - this.state = 4674; + this.state = 4676; this.match(HiveSqlParser.KW_WHEN); - this.state = 4675; + this.state = 4677; this.triggerAtomExpression(); - this.state = 4676; + this.state = 4678; this.match(HiveSqlParser.KW_DO); - this.state = 4677; + this.state = 4679; this.triggerActionExpression(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4679; + this.state = 4681; this.match(HiveSqlParser.KW_ALTER); - this.state = 4680; + this.state = 4682; this.match(HiveSqlParser.KW_TRIGGER); - this.state = 4681; + this.state = 4683; localContext._rpName = this.id_(); - this.state = 4682; + this.state = 4684; this.match(HiveSqlParser.DOT); - this.state = 4683; + this.state = 4685; localContext._triggerName = this.id_(); - this.state = 4700; + this.state = 4702; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_WHEN: { - this.state = 4684; + this.state = 4686; this.match(HiveSqlParser.KW_WHEN); - this.state = 4685; + this.state = 4687; this.triggerAtomExpression(); - this.state = 4686; + this.state = 4688; this.match(HiveSqlParser.KW_DO); - this.state = 4687; + this.state = 4689; this.triggerActionExpression(); } break; case HiveSqlParser.KW_ADD: case HiveSqlParser.KW_DROP: { - this.state = 4693; + this.state = 4695; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ADD: { - this.state = 4689; + this.state = 4691; this.match(HiveSqlParser.KW_ADD); - this.state = 4690; + this.state = 4692; this.match(HiveSqlParser.KW_TO); } break; case HiveSqlParser.KW_DROP: { - this.state = 4691; + this.state = 4693; this.match(HiveSqlParser.KW_DROP); - this.state = 4692; + this.state = 4694; this.match(HiveSqlParser.KW_FROM); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4698; + this.state = 4700; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_POOL: { - this.state = 4695; + this.state = 4697; this.match(HiveSqlParser.KW_POOL); - this.state = 4696; + this.state = 4698; localContext._poolName = this.poolPath(); } break; case HiveSqlParser.KW_UNMANAGED: { - this.state = 4697; + this.state = 4699; this.match(HiveSqlParser.KW_UNMANAGED); } break; @@ -25089,73 +25100,73 @@ export class HiveSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4702; + this.state = 4704; this.match(HiveSqlParser.KW_DROP); - this.state = 4703; + this.state = 4705; this.match(HiveSqlParser.KW_TRIGGER); - this.state = 4704; + this.state = 4706; localContext._rpName = this.id_(); - this.state = 4705; + this.state = 4707; this.match(HiveSqlParser.DOT); - this.state = 4706; + this.state = 4708; localContext._triggerName = this.id_(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 4708; + this.state = 4710; this.match(HiveSqlParser.KW_CREATE); - this.state = 4709; + this.state = 4711; this.match(HiveSqlParser.KW_POOL); - this.state = 4710; + this.state = 4712; localContext._rpName = this.id_(); - this.state = 4711; + this.state = 4713; this.match(HiveSqlParser.DOT); - this.state = 4712; + this.state = 4714; this.poolPath(); - this.state = 4713; + this.state = 4715; this.match(HiveSqlParser.KW_WITH); - this.state = 4714; + this.state = 4716; this.poolAssignList(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 4716; + this.state = 4718; this.match(HiveSqlParser.KW_ALTER); - this.state = 4717; + this.state = 4719; this.match(HiveSqlParser.KW_POOL); - this.state = 4718; + this.state = 4720; localContext._rpName = this.id_(); - this.state = 4719; + this.state = 4721; this.match(HiveSqlParser.DOT); - this.state = 4720; + this.state = 4722; this.poolPath(); - this.state = 4728; + this.state = 4730; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_SET: { - this.state = 4721; + this.state = 4723; this.match(HiveSqlParser.KW_SET); - this.state = 4722; + this.state = 4724; this.poolAssignList(); } break; case HiveSqlParser.KW_UNSET: { - this.state = 4723; + this.state = 4725; this.match(HiveSqlParser.KW_UNSET); - this.state = 4724; + this.state = 4726; this.match(HiveSqlParser.KW_SCHEDULING_POLICY); } break; case HiveSqlParser.KW_ADD: case HiveSqlParser.KW_DROP: { - this.state = 4725; + this.state = 4727; _la = this.tokenStream.LA(1); if(!(_la === 4 || _la === 101)) { this.errorHandler.recoverInline(this); @@ -25164,9 +25175,9 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4726; + this.state = 4728; this.match(HiveSqlParser.KW_TRIGGER); - this.state = 4727; + this.state = 4729; localContext._triggerName = this.id_(); } break; @@ -25178,22 +25189,22 @@ export class HiveSqlParser extends SQLParserBase { case 11: this.enterOuterAlt(localContext, 11); { - this.state = 4730; + this.state = 4732; this.match(HiveSqlParser.KW_DROP); - this.state = 4731; + this.state = 4733; this.match(HiveSqlParser.KW_POOL); - this.state = 4732; + this.state = 4734; localContext._rpName = this.id_(); - this.state = 4733; + this.state = 4735; this.match(HiveSqlParser.DOT); - this.state = 4734; + this.state = 4736; this.poolPath(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 4736; + this.state = 4738; _la = this.tokenStream.LA(1); if(!(_la === 9 || _la === 58)) { this.errorHandler.recoverInline(this); @@ -25202,46 +25213,46 @@ export class HiveSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4737; + this.state = 4739; localContext._mappingType = this.mappingTypes(); - this.state = 4738; + this.state = 4740; this.match(HiveSqlParser.KW_MAPPING); - this.state = 4739; + this.state = 4741; this.match(HiveSqlParser.StringLiteral); - this.state = 4740; + this.state = 4742; this.match(HiveSqlParser.KW_IN); - this.state = 4741; + this.state = 4743; localContext._rpName = this.id_(); - this.state = 4745; + this.state = 4747; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_TO: { - this.state = 4742; + this.state = 4744; this.match(HiveSqlParser.KW_TO); - this.state = 4743; + this.state = 4745; localContext._path = this.poolPath(); } break; case HiveSqlParser.KW_UNMANAGED: { - this.state = 4744; + this.state = 4746; this.match(HiveSqlParser.KW_UNMANAGED); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4750; + this.state = 4752; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 616, this.context) ) { case 1: { - this.state = 4747; + this.state = 4749; this.match(HiveSqlParser.KW_WITH); - this.state = 4748; + this.state = 4750; this.match(HiveSqlParser.KW_ORDER); - this.state = 4749; + this.state = 4751; localContext._order = this.match(HiveSqlParser.Number); } break; @@ -25251,17 +25262,17 @@ export class HiveSqlParser extends SQLParserBase { case 13: this.enterOuterAlt(localContext, 13); { - this.state = 4752; + this.state = 4754; this.match(HiveSqlParser.KW_DROP); - this.state = 4753; + this.state = 4755; localContext._mappingType = this.mappingTypes(); - this.state = 4754; + this.state = 4756; this.match(HiveSqlParser.KW_MAPPING); - this.state = 4755; + this.state = 4757; this.match(HiveSqlParser.StringLiteral); - this.state = 4756; + this.state = 4758; this.match(HiveSqlParser.KW_IN); - this.state = 4757; + this.state = 4759; localContext._rpName = this.id_(); } break; @@ -25288,7 +25299,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4761; + this.state = 4763; _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 144 || _la === 369)) { this.errorHandler.recoverInline(this); @@ -25317,30 +25328,30 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new RpAssignContext(this.context, this.state); this.enterRule(localContext, 670, HiveSqlParser.RULE_rpAssign); try { - this.state = 4770; + this.state = 4772; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_QUERY_PARALLELISM: this.enterOuterAlt(localContext, 1); { - this.state = 4763; + this.state = 4765; this.match(HiveSqlParser.KW_QUERY_PARALLELISM); - this.state = 4764; + this.state = 4766; this.match(HiveSqlParser.EQUAL); - this.state = 4765; + this.state = 4767; localContext._parallelism = this.match(HiveSqlParser.Number); } break; case HiveSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 4766; + this.state = 4768; this.match(HiveSqlParser.KW_DEFAULT); - this.state = 4767; + this.state = 4769; this.match(HiveSqlParser.KW_POOL); - this.state = 4768; + this.state = 4770; this.match(HiveSqlParser.EQUAL); - this.state = 4769; + this.state = 4771; this.poolPath(); } break; @@ -25369,21 +25380,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4772; + this.state = 4774; this.rpAssign(); - this.state = 4777; + this.state = 4779; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4773; + this.state = 4775; this.match(HiveSqlParser.COMMA); - this.state = 4774; + this.state = 4776; this.rpAssign(); } } - this.state = 4779; + this.state = 4781; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -25407,22 +25418,22 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new RpUnassignContext(this.context, this.state); this.enterRule(localContext, 674, HiveSqlParser.RULE_rpUnassign); try { - this.state = 4783; + this.state = 4785; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_QUERY_PARALLELISM: this.enterOuterAlt(localContext, 1); { - this.state = 4780; + this.state = 4782; this.match(HiveSqlParser.KW_QUERY_PARALLELISM); } break; case HiveSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 4781; + this.state = 4783; this.match(HiveSqlParser.KW_DEFAULT); - this.state = 4782; + this.state = 4784; this.match(HiveSqlParser.KW_POOL); } break; @@ -25450,16 +25461,16 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4785; + this.state = 4787; this.match(HiveSqlParser.KW_ACTIVATE); - this.state = 4788; + this.state = 4790; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 621, this.context) ) { case 1: { - this.state = 4786; + this.state = 4788; this.match(HiveSqlParser.KW_WITH); - this.state = 4787; + this.state = 4789; this.match(HiveSqlParser.KW_REPLACE); } break; @@ -25487,7 +25498,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4790; + this.state = 4792; _la = this.tokenStream.LA(1); if(!(_la === 106 || _la === 107)) { this.errorHandler.recoverInline(this); @@ -25519,7 +25530,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4792; + this.state = 4794; _la = this.tokenStream.LA(1); if(!(_la === 94 || _la === 95)) { this.errorHandler.recoverInline(this); @@ -25551,7 +25562,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4794; + this.state = 4796; _la = this.tokenStream.LA(1); if(!(_la === 392 || _la === 393)) { this.errorHandler.recoverInline(this); @@ -25583,7 +25594,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4796; + this.state = 4798; _la = this.tokenStream.LA(1); if(!(_la === 208 || _la === 209)) { this.errorHandler.recoverInline(this); @@ -25615,7 +25626,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4798; + this.state = 4800; _la = this.tokenStream.LA(1); if(!(_la === 381 || _la === 382)) { this.errorHandler.recoverInline(this); @@ -25647,7 +25658,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4800; + this.state = 4802; _la = this.tokenStream.LA(1); if(!(_la === 73 || _la === 74)) { this.errorHandler.recoverInline(this); @@ -25679,7 +25690,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4802; + this.state = 4804; _la = this.tokenStream.LA(1); if(!(_la === 148 || _la === 149)) { this.errorHandler.recoverInline(this); @@ -25711,7 +25722,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4804; + this.state = 4806; _la = this.tokenStream.LA(1); if(!(_la === 206 || _la === 207)) { this.errorHandler.recoverInline(this); @@ -25743,7 +25754,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4806; + this.state = 4808; _la = this.tokenStream.LA(1); if(!(_la === 297 || _la === 298)) { this.errorHandler.recoverInline(this); @@ -25775,7 +25786,7 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4808; + this.state = 4810; _la = this.tokenStream.LA(1); if(!(((((_la - 80)) & ~0x1F) === 0 && ((1 << (_la - 80)) & 7) !== 0))) { this.errorHandler.recoverInline(this); @@ -25830,23 +25841,23 @@ export class HiveSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4812; + this.state = 4814; this.id_(); - this.state = 4817; + this.state = 4819; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 622, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4813; + this.state = 4815; this.match(HiveSqlParser.DOT); - this.state = 4814; + this.state = 4816; this.id_(); } } } - this.state = 4819; + this.state = 4821; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 622, this.context); } @@ -25871,29 +25882,29 @@ export class HiveSqlParser extends SQLParserBase { this.enterRule(localContext, 702, HiveSqlParser.RULE_poolPathAllowEmpty); try { let alternative: number; - this.state = 4837; + this.state = 4839; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 625, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4820; + this.state = 4822; this.id_(); - this.state = 4825; + this.state = 4827; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 623, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4821; + this.state = 4823; this.match(HiveSqlParser.DOT); - this.state = 4822; + this.state = 4824; this.id_(); } } } - this.state = 4827; + this.state = 4829; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 623, this.context); } @@ -25902,27 +25913,27 @@ export class HiveSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4828; + this.state = 4830; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } - this.state = 4829; + this.state = 4831; this.id_(); - this.state = 4834; + this.state = 4836; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 624, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4830; + this.state = 4832; this.match(HiveSqlParser.DOT); - this.state = 4831; + this.state = 4833; this.emptyColumn(); } } } - this.state = 4836; + this.state = 4838; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 624, this.context); } @@ -25951,11 +25962,11 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4839; + this.state = 4841; this.id_(); - this.state = 4840; + this.state = 4842; this.match(HiveSqlParser.GREATERTHAN); - this.state = 4841; + this.state = 4843; _la = this.tokenStream.LA(1); if(!(_la === 426 || _la === 431)) { this.errorHandler.recoverInline(this); @@ -25984,24 +25995,24 @@ export class HiveSqlParser extends SQLParserBase { let localContext = new TriggerActionExpressionContext(this.context, this.state); this.enterRule(localContext, 706, HiveSqlParser.RULE_triggerActionExpression); try { - this.state = 4847; + this.state = 4849; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_KILL: this.enterOuterAlt(localContext, 1); { - this.state = 4843; + this.state = 4845; this.match(HiveSqlParser.KW_KILL); } break; case HiveSqlParser.KW_MOVE: this.enterOuterAlt(localContext, 2); { - this.state = 4844; + this.state = 4846; this.match(HiveSqlParser.KW_MOVE); - this.state = 4845; + this.state = 4847; this.match(HiveSqlParser.KW_TO); - this.state = 4846; + this.state = 4848; this.poolPath(); } break; @@ -26029,46 +26040,46 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4861; + this.state = 4863; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case HiveSqlParser.KW_ALLOC_FRACTION: { - this.state = 4849; + this.state = 4851; this.match(HiveSqlParser.KW_ALLOC_FRACTION); - this.state = 4850; + this.state = 4852; this.match(HiveSqlParser.EQUAL); - this.state = 4851; + this.state = 4853; localContext._allocFraction = this.match(HiveSqlParser.Number); } break; case HiveSqlParser.KW_QUERY_PARALLELISM: { - this.state = 4852; + this.state = 4854; this.match(HiveSqlParser.KW_QUERY_PARALLELISM); - this.state = 4853; + this.state = 4855; this.match(HiveSqlParser.EQUAL); - this.state = 4854; + this.state = 4856; localContext._parallelism = this.match(HiveSqlParser.Number); } break; case HiveSqlParser.KW_SCHEDULING_POLICY: { - this.state = 4855; + this.state = 4857; this.match(HiveSqlParser.KW_SCHEDULING_POLICY); - this.state = 4856; + this.state = 4858; this.match(HiveSqlParser.EQUAL); - this.state = 4857; + this.state = 4859; localContext._policy = this.match(HiveSqlParser.StringLiteral); } break; case HiveSqlParser.KW_PATH: { - this.state = 4858; + this.state = 4860; this.match(HiveSqlParser.KW_PATH); - this.state = 4859; + this.state = 4861; this.match(HiveSqlParser.EQUAL); - this.state = 4860; + this.state = 4862; localContext._path = this.poolPath(); } break; @@ -26098,21 +26109,21 @@ export class HiveSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4863; + this.state = 4865; this.poolAssign(); - this.state = 4868; + this.state = 4870; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 397) { { { - this.state = 4864; + this.state = 4866; this.match(HiveSqlParser.COMMA); - this.state = 4865; + this.state = 4867; this.poolAssign(); } } - this.state = 4870; + this.state = 4872; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -26139,6 +26150,8 @@ export class HiveSqlParser extends SQLParserBase { return this.columnName_sempred(localContext as ColumnNameContext, predIndex); case 130: return this.columnNamePathAllowEmpty_sempred(localContext as ColumnNamePathAllowEmptyContext, predIndex); + case 257: + return this.selectItem_sempred(localContext as SelectItemContext, predIndex); case 351: return this.poolPathAllowEmpty_sempred(localContext as PoolPathAllowEmptyContext, predIndex); } @@ -26158,16 +26171,23 @@ export class HiveSqlParser extends SQLParserBase { } return true; } - private poolPathAllowEmpty_sempred(localContext: PoolPathAllowEmptyContext | null, predIndex: number): boolean { + private selectItem_sempred(localContext: SelectItemContext | null, predIndex: number): boolean { switch (predIndex) { case 2: return this.shouldMatchEmpty(); } return true; } + private poolPathAllowEmpty_sempred(localContext: PoolPathAllowEmptyContext | null, predIndex: number): boolean { + switch (predIndex) { + case 3: + return this.shouldMatchEmpty(); + } + return true; + } public static readonly _serializedATN: number[] = [ - 4,1,438,4872,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,438,4874,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, @@ -26542,503 +26562,503 @@ export class HiveSqlParser extends SQLParserBase { 1,255,1,255,1,256,1,256,1,256,5,256,3820,8,256,10,256,12,256,3823, 9,256,1,257,1,257,1,257,3,257,3828,8,257,1,257,3,257,3831,8,257, 1,257,1,257,1,257,1,257,1,257,1,257,5,257,3839,8,257,10,257,12,257, - 3842,9,257,1,257,1,257,3,257,3846,8,257,3,257,3848,8,257,1,258,1, - 258,1,259,1,259,1,260,1,260,1,260,1,260,1,260,1,260,1,260,1,260, - 1,260,1,260,3,260,3864,8,260,1,260,1,260,1,260,1,260,3,260,3870, - 8,260,3,260,3872,8,260,1,260,1,260,1,260,1,261,1,261,3,261,3879, - 8,261,1,262,1,262,1,262,5,262,3884,8,262,10,262,12,262,3887,9,262, - 1,263,1,263,1,263,1,263,1,263,1,263,1,263,1,263,1,263,5,263,3898, - 8,263,10,263,12,263,3901,9,263,1,264,1,264,1,264,3,264,3906,8,264, - 1,264,3,264,3909,8,264,1,264,3,264,3912,8,264,1,264,3,264,3915,8, - 264,1,265,1,265,1,265,1,265,1,265,1,265,1,265,3,265,3924,8,265,1, - 265,1,265,1,265,1,265,1,265,3,265,3931,8,265,1,266,1,266,1,266,1, - 266,3,266,3937,8,266,1,267,1,267,1,267,1,267,1,267,1,267,1,267,3, - 267,3946,8,267,1,268,1,268,3,268,3950,8,268,1,268,1,268,1,268,1, - 268,5,268,3956,8,268,10,268,12,268,3959,9,268,1,268,1,268,1,269, - 1,269,1,269,1,269,1,269,3,269,3968,8,269,1,269,1,269,1,269,1,269, - 1,269,1,269,5,269,3976,8,269,10,269,12,269,3979,9,269,1,269,1,269, - 3,269,3983,8,269,1,270,1,270,3,270,3987,8,270,1,270,1,270,5,270, - 3991,8,270,10,270,12,270,3994,9,270,1,270,1,270,3,270,3998,8,270, - 1,271,1,271,1,271,3,271,4003,8,271,1,272,1,272,1,272,1,273,1,273, - 3,273,4010,8,273,1,274,1,274,3,274,4014,8,274,1,274,3,274,4017,8, - 274,1,274,1,274,1,274,3,274,4022,8,274,1,274,3,274,4025,8,274,5, - 274,4027,8,274,10,274,12,274,4030,9,274,1,275,1,275,3,275,4034,8, - 275,1,276,1,276,1,276,1,276,1,277,1,277,1,277,4,277,4043,8,277,11, - 277,12,277,4044,3,277,4047,8,277,1,278,1,278,1,278,1,278,1,278,5, - 278,4054,8,278,10,278,12,278,4057,9,278,1,279,1,279,1,279,1,279, - 1,280,1,280,1,280,1,280,1,281,1,281,1,281,1,281,1,282,1,282,1,282, - 1,282,1,282,1,282,5,282,4077,8,282,10,282,12,282,4080,9,282,1,282, - 1,282,1,282,1,282,1,282,5,282,4087,8,282,10,282,12,282,4090,9,282, - 3,282,4092,8,282,1,283,1,283,1,283,1,283,1,283,3,283,4099,8,283, - 1,283,3,283,4102,8,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283, - 1,283,3,283,4112,8,283,1,283,1,283,1,283,5,283,4117,8,283,10,283, - 12,283,4120,9,283,3,283,4122,8,283,3,283,4124,8,283,1,283,1,283, - 1,283,1,283,1,283,1,283,1,283,1,283,1,283,3,283,4135,8,283,1,283, - 1,283,1,283,1,283,1,283,1,283,1,283,1,283,3,283,4145,8,283,3,283, - 4147,8,283,1,284,1,284,1,284,1,285,1,285,1,286,1,286,3,286,4156, - 8,286,1,287,1,287,1,287,3,287,4161,8,287,1,288,1,288,1,288,1,288, - 1,288,1,288,1,288,3,288,4170,8,288,1,288,1,288,1,289,1,289,1,289, - 1,289,1,289,1,289,1,289,4,289,4181,8,289,11,289,12,289,4182,1,289, - 1,289,3,289,4187,8,289,1,289,1,289,1,290,1,290,1,290,1,290,1,290, - 1,290,4,290,4197,8,290,11,290,12,290,4198,1,290,1,290,3,290,4203, - 8,290,1,290,1,290,1,291,1,291,1,291,1,291,1,291,3,291,4212,8,291, - 1,291,1,291,1,292,1,292,1,292,1,292,1,292,1,292,1,292,1,293,1,293, - 1,293,1,293,1,293,1,293,1,293,1,293,3,293,4231,8,293,1,294,1,294, + 3842,9,257,1,257,1,257,3,257,3846,8,257,1,257,1,257,3,257,3850,8, + 257,1,258,1,258,1,259,1,259,1,260,1,260,1,260,1,260,1,260,1,260, + 1,260,1,260,1,260,1,260,3,260,3866,8,260,1,260,1,260,1,260,1,260, + 3,260,3872,8,260,3,260,3874,8,260,1,260,1,260,1,260,1,261,1,261, + 3,261,3881,8,261,1,262,1,262,1,262,5,262,3886,8,262,10,262,12,262, + 3889,9,262,1,263,1,263,1,263,1,263,1,263,1,263,1,263,1,263,1,263, + 5,263,3900,8,263,10,263,12,263,3903,9,263,1,264,1,264,1,264,3,264, + 3908,8,264,1,264,3,264,3911,8,264,1,264,3,264,3914,8,264,1,264,3, + 264,3917,8,264,1,265,1,265,1,265,1,265,1,265,1,265,1,265,3,265,3926, + 8,265,1,265,1,265,1,265,1,265,1,265,3,265,3933,8,265,1,266,1,266, + 1,266,1,266,3,266,3939,8,266,1,267,1,267,1,267,1,267,1,267,1,267, + 1,267,3,267,3948,8,267,1,268,1,268,3,268,3952,8,268,1,268,1,268, + 1,268,1,268,5,268,3958,8,268,10,268,12,268,3961,9,268,1,268,1,268, + 1,269,1,269,1,269,1,269,1,269,3,269,3970,8,269,1,269,1,269,1,269, + 1,269,1,269,1,269,5,269,3978,8,269,10,269,12,269,3981,9,269,1,269, + 1,269,3,269,3985,8,269,1,270,1,270,3,270,3989,8,270,1,270,1,270, + 5,270,3993,8,270,10,270,12,270,3996,9,270,1,270,1,270,3,270,4000, + 8,270,1,271,1,271,1,271,3,271,4005,8,271,1,272,1,272,1,272,1,273, + 1,273,3,273,4012,8,273,1,274,1,274,3,274,4016,8,274,1,274,3,274, + 4019,8,274,1,274,1,274,1,274,3,274,4024,8,274,1,274,3,274,4027,8, + 274,5,274,4029,8,274,10,274,12,274,4032,9,274,1,275,1,275,3,275, + 4036,8,275,1,276,1,276,1,276,1,276,1,277,1,277,1,277,4,277,4045, + 8,277,11,277,12,277,4046,3,277,4049,8,277,1,278,1,278,1,278,1,278, + 1,278,5,278,4056,8,278,10,278,12,278,4059,9,278,1,279,1,279,1,279, + 1,279,1,280,1,280,1,280,1,280,1,281,1,281,1,281,1,281,1,282,1,282, + 1,282,1,282,1,282,1,282,5,282,4079,8,282,10,282,12,282,4082,9,282, + 1,282,1,282,1,282,1,282,1,282,5,282,4089,8,282,10,282,12,282,4092, + 9,282,3,282,4094,8,282,1,283,1,283,1,283,1,283,1,283,3,283,4101, + 8,283,1,283,3,283,4104,8,283,1,283,1,283,1,283,1,283,1,283,1,283, + 1,283,1,283,3,283,4114,8,283,1,283,1,283,1,283,5,283,4119,8,283, + 10,283,12,283,4122,9,283,3,283,4124,8,283,3,283,4126,8,283,1,283, + 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,3,283,4137,8,283, + 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,3,283,4147,8,283, + 3,283,4149,8,283,1,284,1,284,1,284,1,285,1,285,1,286,1,286,3,286, + 4158,8,286,1,287,1,287,1,287,3,287,4163,8,287,1,288,1,288,1,288, + 1,288,1,288,1,288,1,288,3,288,4172,8,288,1,288,1,288,1,289,1,289, + 1,289,1,289,1,289,1,289,1,289,4,289,4183,8,289,11,289,12,289,4184, + 1,289,1,289,3,289,4189,8,289,1,289,1,289,1,290,1,290,1,290,1,290, + 1,290,1,290,4,290,4199,8,290,11,290,12,290,4200,1,290,1,290,3,290, + 4205,8,290,1,290,1,290,1,291,1,291,1,291,1,291,1,291,3,291,4214, + 8,291,1,291,1,291,1,292,1,292,1,292,1,292,1,292,1,292,1,292,1,293, + 1,293,1,293,1,293,1,293,1,293,1,293,1,293,3,293,4233,8,293,1,294, 1,294,1,294,1,294,1,294,1,294,1,294,1,294,1,294,1,294,1,294,1,294, - 1,294,5,294,4247,8,294,10,294,12,294,4250,9,294,1,294,1,294,1,294, - 1,294,1,294,1,294,1,294,1,294,1,294,3,294,4261,8,294,1,295,1,295, - 1,296,1,296,1,296,1,296,1,296,1,296,1,296,1,296,1,296,1,296,1,296, - 3,296,4276,8,296,1,296,1,296,3,296,4280,8,296,1,297,1,297,1,297, + 1,294,1,294,5,294,4249,8,294,10,294,12,294,4252,9,294,1,294,1,294, + 1,294,1,294,1,294,1,294,1,294,1,294,1,294,3,294,4263,8,294,1,295, + 1,295,1,296,1,296,1,296,1,296,1,296,1,296,1,296,1,296,1,296,1,296, + 1,296,3,296,4278,8,296,1,296,1,296,3,296,4282,8,296,1,297,1,297, 1,297,1,297,1,297,1,297,1,297,1,297,1,297,1,297,1,297,1,297,1,297, - 3,297,4296,8,297,1,298,1,298,1,298,5,298,4301,8,298,10,298,12,298, - 4304,9,298,1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299, - 1,299,1,299,3,299,4317,8,299,1,300,5,300,4320,8,300,10,300,12,300, - 4323,9,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,5,300,4332, - 8,300,10,300,12,300,4335,9,300,1,301,1,301,1,301,5,301,4340,8,301, - 10,301,12,301,4343,9,301,1,302,1,302,1,302,5,302,4348,8,302,10,302, - 12,302,4351,9,302,1,303,1,303,1,303,5,303,4356,8,303,10,303,12,303, - 4359,9,303,1,304,1,304,1,304,5,304,4364,8,304,10,304,12,304,4367, - 9,304,1,305,1,305,1,305,5,305,4372,8,305,10,305,12,305,4375,9,305, - 1,306,1,306,1,306,5,306,4380,8,306,10,306,12,306,4383,9,306,1,307, - 1,307,1,308,1,308,1,308,1,308,1,309,1,309,3,309,4393,8,309,1,309, - 1,309,3,309,4397,8,309,1,310,1,310,1,310,1,310,1,310,1,310,3,310, - 4405,8,310,1,311,1,311,1,311,1,311,1,311,1,311,1,311,1,311,1,311, - 1,311,1,311,1,311,1,311,1,311,3,311,4421,8,311,1,312,1,312,3,312, - 4425,8,312,1,313,1,313,1,313,3,313,4430,8,313,1,314,1,314,1,314, - 1,314,1,315,1,315,1,315,1,315,1,315,1,315,1,315,3,315,4443,8,315, - 1,316,1,316,1,316,1,316,1,316,1,316,1,316,5,316,4452,8,316,10,316, - 12,316,4455,9,316,1,317,1,317,1,317,1,317,1,317,1,317,3,317,4463, - 8,317,1,318,5,318,4466,8,318,10,318,12,318,4469,9,318,1,318,1,318, - 1,318,3,318,4474,8,318,1,319,1,319,1,319,5,319,4479,8,319,10,319, - 12,319,4482,9,319,1,320,1,320,3,320,4486,8,320,1,321,1,321,1,321, - 1,321,1,321,5,321,4493,8,321,10,321,12,321,4496,9,321,1,321,1,321, - 1,322,1,322,1,322,3,322,4503,8,322,1,323,1,323,1,323,1,323,5,323, - 4509,8,323,10,323,12,323,4512,9,323,1,323,1,323,1,324,1,324,1,324, - 3,324,4519,8,324,1,324,1,324,1,325,1,325,1,326,1,326,1,327,1,327, - 3,327,4529,8,327,1,328,1,328,1,328,3,328,4534,8,328,1,329,1,329, - 1,330,1,330,1,331,1,331,1,332,1,332,1,332,1,332,1,332,1,332,1,332, + 1,297,3,297,4298,8,297,1,298,1,298,1,298,5,298,4303,8,298,10,298, + 12,298,4306,9,298,1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299, + 1,299,1,299,1,299,3,299,4319,8,299,1,300,5,300,4322,8,300,10,300, + 12,300,4325,9,300,1,300,1,300,1,300,1,300,1,300,1,300,1,300,5,300, + 4334,8,300,10,300,12,300,4337,9,300,1,301,1,301,1,301,5,301,4342, + 8,301,10,301,12,301,4345,9,301,1,302,1,302,1,302,5,302,4350,8,302, + 10,302,12,302,4353,9,302,1,303,1,303,1,303,5,303,4358,8,303,10,303, + 12,303,4361,9,303,1,304,1,304,1,304,5,304,4366,8,304,10,304,12,304, + 4369,9,304,1,305,1,305,1,305,5,305,4374,8,305,10,305,12,305,4377, + 9,305,1,306,1,306,1,306,5,306,4382,8,306,10,306,12,306,4385,9,306, + 1,307,1,307,1,308,1,308,1,308,1,308,1,309,1,309,3,309,4395,8,309, + 1,309,1,309,3,309,4399,8,309,1,310,1,310,1,310,1,310,1,310,1,310, + 3,310,4407,8,310,1,311,1,311,1,311,1,311,1,311,1,311,1,311,1,311, + 1,311,1,311,1,311,1,311,1,311,1,311,3,311,4423,8,311,1,312,1,312, + 3,312,4427,8,312,1,313,1,313,1,313,3,313,4432,8,313,1,314,1,314, + 1,314,1,314,1,315,1,315,1,315,1,315,1,315,1,315,1,315,3,315,4445, + 8,315,1,316,1,316,1,316,1,316,1,316,1,316,1,316,5,316,4454,8,316, + 10,316,12,316,4457,9,316,1,317,1,317,1,317,1,317,1,317,1,317,3,317, + 4465,8,317,1,318,5,318,4468,8,318,10,318,12,318,4471,9,318,1,318, + 1,318,1,318,3,318,4476,8,318,1,319,1,319,1,319,5,319,4481,8,319, + 10,319,12,319,4484,9,319,1,320,1,320,3,320,4488,8,320,1,321,1,321, + 1,321,1,321,1,321,5,321,4495,8,321,10,321,12,321,4498,9,321,1,321, + 1,321,1,322,1,322,1,322,3,322,4505,8,322,1,323,1,323,1,323,1,323, + 5,323,4511,8,323,10,323,12,323,4514,9,323,1,323,1,323,1,324,1,324, + 1,324,3,324,4521,8,324,1,324,1,324,1,325,1,325,1,326,1,326,1,327, + 1,327,3,327,4531,8,327,1,328,1,328,1,328,3,328,4536,8,328,1,329, + 1,329,1,330,1,330,1,331,1,331,1,332,1,332,1,332,1,332,1,332,1,332, 1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332, 1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332, 1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332, 1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332,1,332, - 3,332,4593,8,332,1,333,1,333,1,333,1,333,3,333,4599,8,333,1,333, - 1,333,1,333,1,333,1,333,1,333,1,333,3,333,4608,8,333,3,333,4610, - 8,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333, - 1,333,1,333,5,333,4624,8,333,10,333,12,333,4627,9,333,1,333,1,333, - 1,333,1,333,1,333,3,333,4634,8,333,1,333,1,333,3,333,4638,8,333, - 3,333,4640,8,333,1,333,1,333,1,333,1,333,3,333,4646,8,333,1,333, - 1,333,1,333,3,333,4651,8,333,1,333,1,333,1,333,1,333,1,333,1,333, - 1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,3,333,4668, - 8,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333, - 1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333, - 1,333,1,333,1,333,3,333,4694,8,333,1,333,1,333,1,333,3,333,4699, - 8,333,3,333,4701,8,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333, + 1,332,3,332,4595,8,332,1,333,1,333,1,333,1,333,3,333,4601,8,333, + 1,333,1,333,1,333,1,333,1,333,1,333,1,333,3,333,4610,8,333,3,333, + 4612,8,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333, + 1,333,1,333,1,333,5,333,4626,8,333,10,333,12,333,4629,9,333,1,333, + 1,333,1,333,1,333,1,333,3,333,4636,8,333,1,333,1,333,3,333,4640, + 8,333,3,333,4642,8,333,1,333,1,333,1,333,1,333,3,333,4648,8,333, + 1,333,1,333,1,333,3,333,4653,8,333,1,333,1,333,1,333,1,333,1,333, + 1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,3,333, + 4670,8,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333, 1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333, - 1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,3,333,4729,8,333, + 1,333,1,333,1,333,1,333,3,333,4696,8,333,1,333,1,333,1,333,3,333, + 4701,8,333,3,333,4703,8,333,1,333,1,333,1,333,1,333,1,333,1,333, 1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333, - 1,333,1,333,1,333,1,333,3,333,4746,8,333,1,333,1,333,1,333,3,333, - 4751,8,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,3,333,4760, - 8,333,1,334,1,334,1,335,1,335,1,335,1,335,1,335,1,335,1,335,3,335, - 4771,8,335,1,336,1,336,1,336,5,336,4776,8,336,10,336,12,336,4779, - 9,336,1,337,1,337,1,337,3,337,4784,8,337,1,338,1,338,1,338,3,338, - 4789,8,338,1,339,1,339,1,340,1,340,1,341,1,341,1,342,1,342,1,343, - 1,343,1,344,1,344,1,345,1,345,1,346,1,346,1,347,1,347,1,348,1,348, - 1,349,1,349,1,350,1,350,1,350,5,350,4816,8,350,10,350,12,350,4819, - 9,350,1,351,1,351,1,351,5,351,4824,8,351,10,351,12,351,4827,9,351, - 1,351,1,351,1,351,1,351,5,351,4833,8,351,10,351,12,351,4836,9,351, - 3,351,4838,8,351,1,352,1,352,1,352,1,352,1,353,1,353,1,353,1,353, - 3,353,4848,8,353,1,354,1,354,1,354,1,354,1,354,1,354,1,354,1,354, - 1,354,1,354,1,354,1,354,3,354,4862,8,354,1,355,1,355,1,355,5,355, - 4867,8,355,10,355,12,355,4870,9,355,1,355,1,833,0,356,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,0,61,2,0,57,57,172,172,4,0,91,91,121,121,226,226,325,325, - 1,0,395,396,2,0,50,50,346,346,2,0,34,34,282,282,1,0,89,90,2,0,139, - 139,154,154,2,0,67,67,295,295,2,0,68,68,296,296,1,0,155,156,2,0, - 114,114,307,307,11,0,7,7,9,9,58,58,86,86,101,101,155,155,161,161, - 190,190,299,299,309,309,365,365,3,0,4,4,101,101,326,326,3,0,15,15, - 128,128,170,170,1,0,141,142,2,0,30,30,351,351,2,0,217,217,373,373, - 2,0,214,214,272,272,2,0,18,18,89,89,2,0,130,130,177,177,2,0,39,39, - 376,376,4,0,112,112,164,164,205,205,356,356,2,0,7,7,96,96,2,0,125, - 125,350,350,2,0,225,225,391,391,2,0,42,42,315,315,2,0,189,189,196, - 196,2,0,426,426,431,431,2,0,140,140,285,285,3,0,12,12,231,231,300, - 300,2,0,241,241,292,292,2,0,198,198,268,268,2,0,260,260,292,292, - 2,0,354,354,431,431,2,0,133,133,247,247,2,0,152,152,281,281,3,0, - 413,414,418,418,420,420,2,0,412,412,415,417,1,0,413,414,4,0,184, - 184,270,270,286,286,408,411,2,0,7,7,13,13,3,0,7,7,13,13,313,313, - 3,0,184,184,270,270,286,286,4,0,125,125,219,219,350,350,360,360, - 2,0,405,405,407,411,24,0,11,11,16,16,25,28,35,35,100,100,131,132, - 151,151,154,154,162,163,184,184,198,198,216,216,228,228,264,264, - 270,270,286,286,311,311,323,324,340,340,357,357,383,383,405,417, - 419,421,423,423,85,0,1,6,8,8,10,10,15,15,18,20,22,24,30,31,33,34, - 37,38,40,44,46,47,49,50,52,53,56,57,59,59,66,66,68,68,72,77,79,79, - 83,85,87,89,91,95,97,99,103,104,106,107,109,111,114,116,118,121, - 127,130,137,138,142,142,147,150,152,152,155,156,158,160,168,170, - 172,177,182,183,185,187,189,193,195,197,199,202,204,204,206,209, - 211,212,214,215,217,218,220,220,222,223,226,227,232,233,235,236, - 238,240,243,246,252,252,254,255,257,259,261,262,265,267,271,282, - 284,284,287,288,293,298,300,303,305,310,312,312,314,317,319,325, - 327,328,330,330,332,334,339,340,342,342,344,346,349,349,352,353, - 355,355,357,357,360,364,366,368,371,373,375,375,377,382,385,385, - 388,394,13,0,16,16,26,28,63,64,71,71,100,100,131,131,145,145,151, - 151,162,163,198,198,264,264,311,311,337,337,2,0,4,4,101,101,2,0, - 9,9,58,58,3,0,14,14,144,144,369,369,1,0,106,107,1,0,94,95,1,0,392, - 393,1,0,208,209,1,0,381,382,1,0,73,74,1,0,148,149,1,0,206,207,1, - 0,297,298,1,0,80,82,5461,0,715,1,0,0,0,2,722,1,0,0,0,4,727,1,0,0, - 0,6,761,1,0,0,0,8,763,1,0,0,0,10,836,1,0,0,0,12,838,1,0,0,0,14,854, - 1,0,0,0,16,863,1,0,0,0,18,871,1,0,0,0,20,884,1,0,0,0,22,895,1,0, - 0,0,24,900,1,0,0,0,26,911,1,0,0,0,28,974,1,0,0,0,30,976,1,0,0,0, - 32,979,1,0,0,0,34,983,1,0,0,0,36,985,1,0,0,0,38,988,1,0,0,0,40,991, - 1,0,0,0,42,1035,1,0,0,0,44,1037,1,0,0,0,46,1040,1,0,0,0,48,1043, - 1,0,0,0,50,1052,1,0,0,0,52,1055,1,0,0,0,54,1070,1,0,0,0,56,1082, - 1,0,0,0,58,1087,1,0,0,0,60,1107,1,0,0,0,62,1111,1,0,0,0,64,1118, - 1,0,0,0,66,1143,1,0,0,0,68,1160,1,0,0,0,70,1162,1,0,0,0,72,1347, - 1,0,0,0,74,1357,1,0,0,0,76,1359,1,0,0,0,78,1364,1,0,0,0,80,1369, - 1,0,0,0,82,1371,1,0,0,0,84,1375,1,0,0,0,86,1379,1,0,0,0,88,1383, - 1,0,0,0,90,1387,1,0,0,0,92,1397,1,0,0,0,94,1408,1,0,0,0,96,1425, - 1,0,0,0,98,1443,1,0,0,0,100,1448,1,0,0,0,102,1451,1,0,0,0,104,1455, - 1,0,0,0,106,1462,1,0,0,0,108,1471,1,0,0,0,110,1477,1,0,0,0,112,1479, - 1,0,0,0,114,1493,1,0,0,0,116,1515,1,0,0,0,118,1517,1,0,0,0,120,1525, - 1,0,0,0,122,1532,1,0,0,0,124,1534,1,0,0,0,126,1548,1,0,0,0,128,1555, - 1,0,0,0,130,1557,1,0,0,0,132,1561,1,0,0,0,134,1565,1,0,0,0,136,1569, - 1,0,0,0,138,1573,1,0,0,0,140,1586,1,0,0,0,142,1594,1,0,0,0,144,1597, - 1,0,0,0,146,1599,1,0,0,0,148,1611,1,0,0,0,150,1621,1,0,0,0,152,1624, - 1,0,0,0,154,1635,1,0,0,0,156,1643,1,0,0,0,158,1686,1,0,0,0,160,1695, - 1,0,0,0,162,1723,1,0,0,0,164,1736,1,0,0,0,166,1738,1,0,0,0,168,1744, - 1,0,0,0,170,1747,1,0,0,0,172,1753,1,0,0,0,174,1759,1,0,0,0,176,1766, - 1,0,0,0,178,1800,1,0,0,0,180,1808,1,0,0,0,182,1821,1,0,0,0,184,1826, - 1,0,0,0,186,1837,1,0,0,0,188,1854,1,0,0,0,190,1856,1,0,0,0,192,1861, - 1,0,0,0,194,1868,1,0,0,0,196,1870,1,0,0,0,198,1873,1,0,0,0,200,1876, - 1,0,0,0,202,1890,1,0,0,0,204,1898,1,0,0,0,206,1924,1,0,0,0,208,1926, - 1,0,0,0,210,1943,1,0,0,0,212,1957,1,0,0,0,214,1959,1,0,0,0,216,1962, - 1,0,0,0,218,1965,1,0,0,0,220,1974,1,0,0,0,222,1994,1,0,0,0,224,1996, - 1,0,0,0,226,1999,1,0,0,0,228,2012,1,0,0,0,230,2014,1,0,0,0,232,2018, - 1,0,0,0,234,2026,1,0,0,0,236,2030,1,0,0,0,238,2039,1,0,0,0,240,2045, - 1,0,0,0,242,2051,1,0,0,0,244,2056,1,0,0,0,246,2102,1,0,0,0,248,2104, - 1,0,0,0,250,2112,1,0,0,0,252,2120,1,0,0,0,254,2128,1,0,0,0,256,2139, - 1,0,0,0,258,2141,1,0,0,0,260,2146,1,0,0,0,262,2148,1,0,0,0,264,2150, - 1,0,0,0,266,2163,1,0,0,0,268,2171,1,0,0,0,270,2180,1,0,0,0,272,2184, - 1,0,0,0,274,2186,1,0,0,0,276,2191,1,0,0,0,278,2193,1,0,0,0,280,2197, - 1,0,0,0,282,2203,1,0,0,0,284,2211,1,0,0,0,286,2213,1,0,0,0,288,2216, - 1,0,0,0,290,2223,1,0,0,0,292,2234,1,0,0,0,294,2247,1,0,0,0,296,2249, - 1,0,0,0,298,2257,1,0,0,0,300,2261,1,0,0,0,302,2269,1,0,0,0,304,2271, - 1,0,0,0,306,2274,1,0,0,0,308,2281,1,0,0,0,310,2289,1,0,0,0,312,2296, - 1,0,0,0,314,2304,1,0,0,0,316,2312,1,0,0,0,318,2316,1,0,0,0,320,2318, - 1,0,0,0,322,2329,1,0,0,0,324,2333,1,0,0,0,326,2345,1,0,0,0,328,2353, - 1,0,0,0,330,2357,1,0,0,0,332,2369,1,0,0,0,334,2381,1,0,0,0,336,2386, - 1,0,0,0,338,2391,1,0,0,0,340,2393,1,0,0,0,342,2397,1,0,0,0,344,2401, - 1,0,0,0,346,2408,1,0,0,0,348,2410,1,0,0,0,350,2423,1,0,0,0,352,2462, - 1,0,0,0,354,2464,1,0,0,0,356,2469,1,0,0,0,358,2474,1,0,0,0,360,2481, - 1,0,0,0,362,2486,1,0,0,0,364,2491,1,0,0,0,366,2497,1,0,0,0,368,2499, - 1,0,0,0,370,2508,1,0,0,0,372,2520,1,0,0,0,374,2600,1,0,0,0,376,2606, - 1,0,0,0,378,2632,1,0,0,0,380,2634,1,0,0,0,382,2656,1,0,0,0,384,2661, - 1,0,0,0,386,2665,1,0,0,0,388,2697,1,0,0,0,390,2699,1,0,0,0,392,2710, - 1,0,0,0,394,2716,1,0,0,0,396,2718,1,0,0,0,398,2750,1,0,0,0,400,2757, - 1,0,0,0,402,2763,1,0,0,0,404,2769,1,0,0,0,406,2784,1,0,0,0,408,2794, - 1,0,0,0,410,2802,1,0,0,0,412,2805,1,0,0,0,414,2808,1,0,0,0,416,2811, - 1,0,0,0,418,2933,1,0,0,0,420,3067,1,0,0,0,422,3095,1,0,0,0,424,3112, - 1,0,0,0,426,3129,1,0,0,0,428,3131,1,0,0,0,430,3134,1,0,0,0,432,3160, - 1,0,0,0,434,3165,1,0,0,0,436,3192,1,0,0,0,438,3203,1,0,0,0,440,3340, - 1,0,0,0,442,3342,1,0,0,0,444,3365,1,0,0,0,446,3377,1,0,0,0,448,3382, - 1,0,0,0,450,3390,1,0,0,0,452,3398,1,0,0,0,454,3410,1,0,0,0,456,3444, - 1,0,0,0,458,3446,1,0,0,0,460,3471,1,0,0,0,462,3480,1,0,0,0,464,3510, - 1,0,0,0,466,3569,1,0,0,0,468,3571,1,0,0,0,470,3600,1,0,0,0,472,3602, - 1,0,0,0,474,3618,1,0,0,0,476,3630,1,0,0,0,478,3632,1,0,0,0,480,3636, - 1,0,0,0,482,3646,1,0,0,0,484,3656,1,0,0,0,486,3661,1,0,0,0,488,3668, - 1,0,0,0,490,3672,1,0,0,0,492,3691,1,0,0,0,494,3696,1,0,0,0,496,3698, - 1,0,0,0,498,3702,1,0,0,0,500,3728,1,0,0,0,502,3733,1,0,0,0,504,3754, - 1,0,0,0,506,3759,1,0,0,0,508,3790,1,0,0,0,510,3792,1,0,0,0,512,3816, - 1,0,0,0,514,3847,1,0,0,0,516,3849,1,0,0,0,518,3851,1,0,0,0,520,3853, - 1,0,0,0,522,3878,1,0,0,0,524,3880,1,0,0,0,526,3888,1,0,0,0,528,3914, - 1,0,0,0,530,3916,1,0,0,0,532,3936,1,0,0,0,534,3938,1,0,0,0,536,3949, - 1,0,0,0,538,3962,1,0,0,0,540,3997,1,0,0,0,542,3999,1,0,0,0,544,4004, - 1,0,0,0,546,4009,1,0,0,0,548,4011,1,0,0,0,550,4033,1,0,0,0,552,4035, - 1,0,0,0,554,4039,1,0,0,0,556,4048,1,0,0,0,558,4058,1,0,0,0,560,4062, - 1,0,0,0,562,4066,1,0,0,0,564,4070,1,0,0,0,566,4146,1,0,0,0,568,4148, - 1,0,0,0,570,4151,1,0,0,0,572,4155,1,0,0,0,574,4160,1,0,0,0,576,4162, - 1,0,0,0,578,4173,1,0,0,0,580,4190,1,0,0,0,582,4206,1,0,0,0,584,4215, - 1,0,0,0,586,4230,1,0,0,0,588,4260,1,0,0,0,590,4262,1,0,0,0,592,4279, - 1,0,0,0,594,4295,1,0,0,0,596,4297,1,0,0,0,598,4316,1,0,0,0,600,4321, - 1,0,0,0,602,4336,1,0,0,0,604,4344,1,0,0,0,606,4352,1,0,0,0,608,4360, - 1,0,0,0,610,4368,1,0,0,0,612,4376,1,0,0,0,614,4384,1,0,0,0,616,4386, - 1,0,0,0,618,4396,1,0,0,0,620,4404,1,0,0,0,622,4420,1,0,0,0,624,4424, - 1,0,0,0,626,4429,1,0,0,0,628,4431,1,0,0,0,630,4442,1,0,0,0,632,4444, - 1,0,0,0,634,4462,1,0,0,0,636,4467,1,0,0,0,638,4475,1,0,0,0,640,4483, - 1,0,0,0,642,4487,1,0,0,0,644,4499,1,0,0,0,646,4504,1,0,0,0,648,4515, - 1,0,0,0,650,4522,1,0,0,0,652,4524,1,0,0,0,654,4528,1,0,0,0,656,4530, - 1,0,0,0,658,4535,1,0,0,0,660,4537,1,0,0,0,662,4539,1,0,0,0,664,4592, - 1,0,0,0,666,4759,1,0,0,0,668,4761,1,0,0,0,670,4770,1,0,0,0,672,4772, - 1,0,0,0,674,4783,1,0,0,0,676,4785,1,0,0,0,678,4790,1,0,0,0,680,4792, - 1,0,0,0,682,4794,1,0,0,0,684,4796,1,0,0,0,686,4798,1,0,0,0,688,4800, - 1,0,0,0,690,4802,1,0,0,0,692,4804,1,0,0,0,694,4806,1,0,0,0,696,4808, - 1,0,0,0,698,4810,1,0,0,0,700,4812,1,0,0,0,702,4837,1,0,0,0,704,4839, - 1,0,0,0,706,4847,1,0,0,0,708,4861,1,0,0,0,710,4863,1,0,0,0,712,714, - 3,2,1,0,713,712,1,0,0,0,714,717,1,0,0,0,715,713,1,0,0,0,715,716, - 1,0,0,0,716,718,1,0,0,0,717,715,1,0,0,0,718,719,5,0,0,1,719,1,1, - 0,0,0,720,723,3,4,2,0,721,723,3,10,5,0,722,720,1,0,0,0,722,721,1, - 0,0,0,723,725,1,0,0,0,724,726,5,398,0,0,725,724,1,0,0,0,725,726, - 1,0,0,0,726,3,1,0,0,0,727,737,5,119,0,0,728,730,3,6,3,0,729,728, - 1,0,0,0,730,733,1,0,0,0,731,729,1,0,0,0,731,732,1,0,0,0,732,734, - 1,0,0,0,733,731,1,0,0,0,734,738,3,10,5,0,735,736,5,284,0,0,736,738, - 3,364,182,0,737,731,1,0,0,0,737,735,1,0,0,0,738,5,1,0,0,0,739,762, - 5,122,0,0,740,762,5,138,0,0,741,762,5,88,0,0,742,744,5,37,0,0,743, - 745,7,0,0,0,744,743,1,0,0,0,744,745,1,0,0,0,745,762,1,0,0,0,746, - 762,5,192,0,0,747,762,5,21,0,0,748,762,5,10,0,0,749,762,5,275,0, - 0,750,762,5,191,0,0,751,762,5,19,0,0,752,754,5,377,0,0,753,755,5, - 225,0,0,754,753,1,0,0,0,754,755,1,0,0,0,755,757,1,0,0,0,756,758, - 3,8,4,0,757,756,1,0,0,0,757,758,1,0,0,0,758,762,1,0,0,0,759,762, - 5,79,0,0,760,762,5,78,0,0,761,739,1,0,0,0,761,740,1,0,0,0,761,741, - 1,0,0,0,761,742,1,0,0,0,761,746,1,0,0,0,761,747,1,0,0,0,761,748, - 1,0,0,0,761,749,1,0,0,0,761,750,1,0,0,0,761,751,1,0,0,0,761,752, - 1,0,0,0,761,759,1,0,0,0,761,760,1,0,0,0,762,7,1,0,0,0,763,764,7, - 1,0,0,764,9,1,0,0,0,765,837,3,364,182,0,766,837,3,12,6,0,767,837, - 3,16,8,0,768,837,3,18,9,0,769,837,3,20,10,0,770,837,3,24,12,0,771, - 772,5,277,0,0,772,773,5,320,0,0,773,776,3,476,238,0,774,775,5,387, - 0,0,775,777,3,230,115,0,776,774,1,0,0,0,776,777,1,0,0,0,777,837, - 1,0,0,0,778,837,3,28,14,0,779,780,5,86,0,0,780,781,5,139,0,0,781, - 783,3,482,241,0,782,784,3,500,250,0,783,782,1,0,0,0,783,784,1,0, - 0,0,784,837,1,0,0,0,785,786,5,365,0,0,786,787,3,482,241,0,787,789, - 3,396,198,0,788,790,3,500,250,0,789,788,1,0,0,0,789,790,1,0,0,0, - 790,837,1,0,0,0,791,837,3,398,199,0,792,794,5,203,0,0,793,795,5, - 436,0,0,794,793,1,0,0,0,794,795,1,0,0,0,795,796,1,0,0,0,796,797, - 5,166,0,0,797,802,3,482,241,0,798,800,5,17,0,0,799,798,1,0,0,0,799, - 800,1,0,0,0,800,801,1,0,0,0,801,803,3,654,327,0,802,799,1,0,0,0, - 802,803,1,0,0,0,803,804,1,0,0,0,804,805,5,370,0,0,805,806,3,460, - 230,0,806,807,5,224,0,0,807,808,3,596,298,0,808,809,3,402,201,0, - 809,837,1,0,0,0,810,811,5,249,0,0,811,812,3,654,327,0,812,813,5, - 139,0,0,813,814,3,364,182,0,814,837,1,0,0,0,815,816,5,115,0,0,816, - 817,3,654,327,0,817,818,5,370,0,0,818,819,3,300,150,0,819,837,1, - 0,0,0,820,821,5,304,0,0,821,826,3,664,332,0,822,823,7,2,0,0,823, - 825,3,664,332,0,824,822,1,0,0,0,825,828,1,0,0,0,826,824,1,0,0,0, - 826,827,1,0,0,0,827,829,1,0,0,0,828,826,1,0,0,0,829,833,5,405,0, - 0,830,832,9,0,0,0,831,830,1,0,0,0,832,835,1,0,0,0,833,834,1,0,0, - 0,833,831,1,0,0,0,834,837,1,0,0,0,835,833,1,0,0,0,836,765,1,0,0, - 0,836,766,1,0,0,0,836,767,1,0,0,0,836,768,1,0,0,0,836,769,1,0,0, - 0,836,770,1,0,0,0,836,771,1,0,0,0,836,778,1,0,0,0,836,779,1,0,0, - 0,836,785,1,0,0,0,836,791,1,0,0,0,836,792,1,0,0,0,836,810,1,0,0, - 0,836,815,1,0,0,0,836,820,1,0,0,0,837,11,1,0,0,0,838,839,5,187,0, - 0,839,841,5,66,0,0,840,842,5,188,0,0,841,840,1,0,0,0,841,842,1,0, - 0,0,842,843,1,0,0,0,843,844,5,158,0,0,844,846,5,426,0,0,845,847, - 5,235,0,0,846,845,1,0,0,0,846,847,1,0,0,0,847,848,1,0,0,0,848,849, - 5,166,0,0,849,850,5,329,0,0,850,852,3,640,320,0,851,853,3,56,28, - 0,852,851,1,0,0,0,852,853,1,0,0,0,853,13,1,0,0,0,854,856,5,134,0, - 0,855,857,5,204,0,0,856,855,1,0,0,0,856,857,1,0,0,0,857,858,1,0, - 0,0,858,859,5,279,0,0,859,860,5,399,0,0,860,861,5,426,0,0,861,862, - 5,400,0,0,862,15,1,0,0,0,863,864,5,120,0,0,864,865,5,329,0,0,865, - 866,3,640,320,0,866,867,5,341,0,0,867,869,5,426,0,0,868,870,3,14, - 7,0,869,868,1,0,0,0,869,870,1,0,0,0,870,17,1,0,0,0,871,877,5,153, - 0,0,872,874,5,123,0,0,873,872,1,0,0,0,873,874,1,0,0,0,874,875,1, - 0,0,0,875,876,5,329,0,0,876,878,3,640,320,0,877,873,1,0,0,0,877, - 878,1,0,0,0,878,879,1,0,0,0,879,880,5,139,0,0,880,882,5,426,0,0, - 881,883,3,428,214,0,882,881,1,0,0,0,882,883,1,0,0,0,883,19,1,0,0, - 0,884,885,5,277,0,0,885,886,5,103,0,0,886,889,3,22,11,0,887,888, - 5,278,0,0,888,890,3,22,11,0,889,887,1,0,0,0,889,890,1,0,0,0,890, - 893,1,0,0,0,891,892,5,387,0,0,892,894,3,230,115,0,893,891,1,0,0, - 0,893,894,1,0,0,0,894,21,1,0,0,0,895,898,3,476,238,0,896,897,5,395, - 0,0,897,899,3,26,13,0,898,896,1,0,0,0,898,899,1,0,0,0,899,23,1,0, - 0,0,900,901,5,277,0,0,901,902,5,187,0,0,902,905,3,22,11,0,903,904, - 5,166,0,0,904,906,3,476,238,0,905,903,1,0,0,0,905,906,1,0,0,0,906, - 909,1,0,0,0,907,908,5,387,0,0,908,910,3,230,115,0,909,907,1,0,0, - 0,909,910,1,0,0,0,910,25,1,0,0,0,911,914,5,426,0,0,912,913,5,395, - 0,0,913,915,5,426,0,0,914,912,1,0,0,0,914,915,1,0,0,0,915,27,1,0, - 0,0,916,975,3,42,21,0,917,975,3,46,23,0,918,975,3,48,24,0,919,975, - 3,440,220,0,920,975,3,54,27,0,921,975,3,52,26,0,922,975,3,416,208, - 0,923,975,3,64,32,0,924,975,3,72,36,0,925,975,3,138,69,0,926,975, - 3,160,80,0,927,975,3,176,88,0,928,975,3,180,90,0,929,975,3,184,92, - 0,930,975,3,182,91,0,931,975,3,174,87,0,932,975,3,178,89,0,933,975, - 3,146,73,0,934,975,3,152,76,0,935,975,3,148,74,0,936,975,3,150,75, - 0,937,975,3,154,77,0,938,975,3,156,78,0,939,975,3,158,79,0,940,975, - 3,66,33,0,941,975,3,76,38,0,942,975,3,82,41,0,943,975,3,78,39,0, - 944,975,3,84,42,0,945,975,3,86,43,0,946,975,3,88,44,0,947,975,3, - 90,45,0,948,975,3,92,46,0,949,975,3,106,53,0,950,975,3,98,49,0,951, - 975,3,108,54,0,952,975,3,100,50,0,953,975,3,94,47,0,954,975,3,96, - 48,0,955,975,3,104,52,0,956,975,3,102,51,0,957,958,5,1,0,0,958,960, - 7,3,0,0,959,961,5,431,0,0,960,959,1,0,0,0,961,962,1,0,0,0,962,960, - 1,0,0,0,962,963,1,0,0,0,963,975,1,0,0,0,964,965,5,176,0,0,965,967, - 5,258,0,0,966,968,5,426,0,0,967,966,1,0,0,0,968,969,1,0,0,0,969, - 967,1,0,0,0,969,970,1,0,0,0,970,975,1,0,0,0,971,975,3,666,333,0, - 972,975,3,442,221,0,973,975,3,444,222,0,974,916,1,0,0,0,974,917, - 1,0,0,0,974,918,1,0,0,0,974,919,1,0,0,0,974,920,1,0,0,0,974,921, - 1,0,0,0,974,922,1,0,0,0,974,923,1,0,0,0,974,924,1,0,0,0,974,925, - 1,0,0,0,974,926,1,0,0,0,974,927,1,0,0,0,974,928,1,0,0,0,974,929, - 1,0,0,0,974,930,1,0,0,0,974,931,1,0,0,0,974,932,1,0,0,0,974,933, - 1,0,0,0,974,934,1,0,0,0,974,935,1,0,0,0,974,936,1,0,0,0,974,937, - 1,0,0,0,974,938,1,0,0,0,974,939,1,0,0,0,974,940,1,0,0,0,974,941, - 1,0,0,0,974,942,1,0,0,0,974,943,1,0,0,0,974,944,1,0,0,0,974,945, - 1,0,0,0,974,946,1,0,0,0,974,947,1,0,0,0,974,948,1,0,0,0,974,949, - 1,0,0,0,974,950,1,0,0,0,974,951,1,0,0,0,974,952,1,0,0,0,974,953, - 1,0,0,0,974,954,1,0,0,0,974,955,1,0,0,0,974,956,1,0,0,0,974,957, - 1,0,0,0,974,964,1,0,0,0,974,971,1,0,0,0,974,972,1,0,0,0,974,973, - 1,0,0,0,975,29,1,0,0,0,976,977,5,151,0,0,977,978,5,117,0,0,978,31, - 1,0,0,0,979,980,5,151,0,0,980,981,5,216,0,0,981,982,5,117,0,0,982, - 33,1,0,0,0,983,984,7,4,0,0,984,35,1,0,0,0,985,986,3,678,339,0,986, - 987,5,284,0,0,987,37,1,0,0,0,988,989,3,680,340,0,989,990,5,284,0, - 0,990,39,1,0,0,0,991,992,5,321,0,0,992,993,5,17,0,0,993,994,5,92, - 0,0,994,41,1,0,0,0,995,997,5,58,0,0,996,998,5,273,0,0,997,996,1, - 0,0,0,997,998,1,0,0,0,998,999,1,0,0,0,999,1001,3,70,35,0,1000,1002, - 3,32,16,0,1001,1000,1,0,0,0,1001,1002,1,0,0,0,1002,1003,1,0,0,0, - 1003,1005,3,478,239,0,1004,1006,3,50,25,0,1005,1004,1,0,0,0,1005, - 1006,1,0,0,0,1006,1008,1,0,0,0,1007,1009,3,428,214,0,1008,1007,1, - 0,0,0,1008,1009,1,0,0,0,1009,1012,1,0,0,0,1010,1011,5,196,0,0,1011, - 1013,5,426,0,0,1012,1010,1,0,0,0,1012,1013,1,0,0,0,1013,1017,1,0, - 0,0,1014,1015,5,387,0,0,1015,1016,5,76,0,0,1016,1018,3,230,115,0, - 1017,1014,1,0,0,0,1017,1018,1,0,0,0,1018,1036,1,0,0,0,1019,1020, - 5,58,0,0,1020,1021,5,273,0,0,1021,1023,3,70,35,0,1022,1024,3,32, - 16,0,1023,1022,1,0,0,0,1023,1024,1,0,0,0,1024,1025,1,0,0,0,1025, - 1027,3,478,239,0,1026,1028,3,50,25,0,1027,1026,1,0,0,0,1027,1028, - 1,0,0,0,1028,1029,1,0,0,0,1029,1033,3,44,22,0,1030,1031,5,387,0, - 0,1031,1032,5,76,0,0,1032,1034,3,230,115,0,1033,1030,1,0,0,0,1033, - 1034,1,0,0,0,1034,1036,1,0,0,0,1035,995,1,0,0,0,1035,1019,1,0,0, - 0,1036,43,1,0,0,0,1037,1038,5,370,0,0,1038,1039,3,476,238,0,1039, - 45,1,0,0,0,1040,1041,5,368,0,0,1041,1042,3,476,238,0,1042,47,1,0, - 0,0,1043,1044,5,101,0,0,1044,1046,3,70,35,0,1045,1047,3,30,15,0, - 1046,1045,1,0,0,0,1046,1047,1,0,0,0,1047,1048,1,0,0,0,1048,1050, - 3,476,238,0,1049,1051,3,34,17,0,1050,1049,1,0,0,0,1050,1051,1,0, - 0,0,1051,49,1,0,0,0,1052,1053,5,47,0,0,1053,1054,5,426,0,0,1054, - 51,1,0,0,0,1055,1057,5,351,0,0,1056,1058,5,329,0,0,1057,1056,1,0, - 0,0,1057,1058,1,0,0,0,1058,1059,1,0,0,0,1059,1065,3,640,320,0,1060, - 1061,5,46,0,0,1061,1062,5,399,0,0,1062,1063,3,254,127,0,1063,1064, - 5,400,0,0,1064,1066,1,0,0,0,1065,1060,1,0,0,0,1065,1066,1,0,0,0, - 1066,1068,1,0,0,0,1067,1069,5,135,0,0,1068,1067,1,0,0,0,1068,1069, - 1,0,0,0,1069,53,1,0,0,0,1070,1071,5,101,0,0,1071,1073,5,329,0,0, - 1072,1074,3,30,15,0,1073,1072,1,0,0,0,1073,1074,1,0,0,0,1074,1075, - 1,0,0,0,1075,1077,3,482,241,0,1076,1078,5,255,0,0,1077,1076,1,0, - 0,0,1077,1078,1,0,0,0,1078,1080,1,0,0,0,1079,1081,3,14,7,0,1080, - 1079,1,0,0,0,1080,1081,1,0,0,0,1081,55,1,0,0,0,1082,1083,5,160,0, - 0,1083,1084,5,426,0,0,1084,1085,5,301,0,0,1085,1086,5,426,0,0,1086, - 57,1,0,0,0,1087,1090,3,654,327,0,1088,1089,5,395,0,0,1089,1091,3, - 654,327,0,1090,1088,1,0,0,0,1090,1091,1,0,0,0,1091,1105,1,0,0,0, - 1092,1102,3,654,327,0,1093,1098,5,395,0,0,1094,1099,5,104,0,0,1095, - 1099,5,175,0,0,1096,1099,5,375,0,0,1097,1099,3,654,327,0,1098,1094, - 1,0,0,0,1098,1095,1,0,0,0,1098,1096,1,0,0,0,1098,1097,1,0,0,0,1099, - 1101,1,0,0,0,1100,1093,1,0,0,0,1101,1104,1,0,0,0,1102,1100,1,0,0, - 0,1102,1103,1,0,0,0,1103,1106,1,0,0,0,1104,1102,1,0,0,0,1105,1092, - 1,0,0,0,1105,1106,1,0,0,0,1106,59,1,0,0,0,1107,1109,3,58,29,0,1108, - 1110,3,642,321,0,1109,1108,1,0,0,0,1109,1110,1,0,0,0,1110,61,1,0, - 0,0,1111,1113,3,480,240,0,1112,1114,3,642,321,0,1113,1112,1,0,0, - 0,1113,1114,1,0,0,0,1114,1116,1,0,0,0,1115,1117,3,264,132,0,1116, - 1115,1,0,0,0,1116,1117,1,0,0,0,1117,63,1,0,0,0,1118,1141,7,5,0,0, - 1119,1121,3,70,35,0,1120,1122,5,122,0,0,1121,1120,1,0,0,0,1121,1122, - 1,0,0,0,1122,1123,1,0,0,0,1123,1124,3,476,238,0,1124,1142,1,0,0, - 0,1125,1127,5,69,0,0,1126,1128,5,122,0,0,1127,1126,1,0,0,0,1127, - 1128,1,0,0,0,1128,1129,1,0,0,0,1129,1142,3,476,238,0,1130,1132,5, - 141,0,0,1131,1133,5,122,0,0,1132,1131,1,0,0,0,1132,1133,1,0,0,0, - 1133,1134,1,0,0,0,1134,1142,3,572,286,0,1135,1138,5,138,0,0,1136, - 1138,5,122,0,0,1137,1135,1,0,0,0,1137,1136,1,0,0,0,1138,1139,1,0, - 0,0,1139,1142,3,62,31,0,1140,1142,3,62,31,0,1141,1119,1,0,0,0,1141, - 1125,1,0,0,0,1141,1130,1,0,0,0,1141,1137,1,0,0,0,1141,1140,1,0,0, - 0,1142,65,1,0,0,0,1143,1144,5,10,0,0,1144,1145,5,329,0,0,1145,1158, - 3,640,320,0,1146,1147,5,52,0,0,1147,1154,5,319,0,0,1148,1155,5,215, - 0,0,1149,1150,5,134,0,0,1150,1152,5,46,0,0,1151,1153,3,254,127,0, - 1152,1151,1,0,0,0,1152,1153,1,0,0,0,1153,1155,1,0,0,0,1154,1148, - 1,0,0,0,1154,1149,1,0,0,0,1154,1155,1,0,0,0,1155,1159,1,0,0,0,1156, - 1157,5,33,0,0,1157,1159,5,204,0,0,1158,1146,1,0,0,0,1158,1156,1, - 0,0,0,1159,67,1,0,0,0,1160,1161,7,6,0,0,1161,69,1,0,0,0,1162,1163, - 7,7,0,0,1163,71,1,0,0,0,1164,1165,5,308,0,0,1165,1168,7,8,0,0,1166, - 1167,5,184,0,0,1167,1169,3,194,97,0,1168,1166,1,0,0,0,1168,1169, - 1,0,0,0,1169,1348,1,0,0,0,1170,1172,5,308,0,0,1171,1173,5,122,0, - 0,1172,1171,1,0,0,0,1172,1173,1,0,0,0,1173,1174,1,0,0,0,1174,1178, - 5,330,0,0,1175,1176,3,68,34,0,1176,1177,3,476,238,0,1177,1179,1, - 0,0,0,1178,1175,1,0,0,0,1178,1179,1,0,0,0,1179,1181,1,0,0,0,1180, - 1182,3,74,37,0,1181,1180,1,0,0,0,1181,1182,1,0,0,0,1182,1348,1,0, - 0,0,1183,1184,5,308,0,0,1184,1188,5,379,0,0,1185,1186,3,68,34,0, - 1186,1187,3,476,238,0,1187,1189,1,0,0,0,1188,1185,1,0,0,0,1188,1189, - 1,0,0,0,1189,1193,1,0,0,0,1190,1191,5,184,0,0,1191,1194,3,194,97, - 0,1192,1194,3,194,97,0,1193,1190,1,0,0,0,1193,1192,1,0,0,0,1193, - 1194,1,0,0,0,1194,1348,1,0,0,0,1195,1196,5,308,0,0,1196,1197,5,202, - 0,0,1197,1201,5,379,0,0,1198,1199,3,68,34,0,1199,1200,3,476,238, - 0,1200,1202,1,0,0,0,1201,1198,1,0,0,0,1201,1202,1,0,0,0,1202,1206, - 1,0,0,0,1203,1204,5,184,0,0,1204,1207,3,194,97,0,1205,1207,3,194, - 97,0,1206,1203,1,0,0,0,1206,1205,1,0,0,0,1206,1207,1,0,0,0,1207, - 1348,1,0,0,0,1208,1210,5,308,0,0,1209,1211,5,315,0,0,1210,1209,1, - 0,0,0,1210,1211,1,0,0,0,1211,1212,1,0,0,0,1212,1213,5,46,0,0,1213, - 1214,3,68,34,0,1214,1218,3,480,240,0,1215,1216,3,68,34,0,1216,1217, - 3,476,238,0,1217,1219,1,0,0,0,1218,1215,1,0,0,0,1218,1219,1,0,0, - 0,1219,1223,1,0,0,0,1220,1221,5,184,0,0,1221,1224,3,194,97,0,1222, - 1224,3,194,97,0,1223,1220,1,0,0,0,1223,1222,1,0,0,0,1223,1224,1, - 0,0,0,1224,1348,1,0,0,0,1225,1226,5,308,0,0,1226,1229,5,142,0,0, - 1227,1228,5,184,0,0,1228,1230,3,572,286,0,1229,1227,1,0,0,0,1229, - 1230,1,0,0,0,1230,1348,1,0,0,0,1231,1232,5,308,0,0,1232,1233,5,239, - 0,0,1233,1235,3,480,240,0,1234,1236,3,642,321,0,1235,1234,1,0,0, - 0,1235,1236,1,0,0,0,1236,1238,1,0,0,0,1237,1239,3,500,250,0,1238, - 1237,1,0,0,0,1238,1239,1,0,0,0,1239,1241,1,0,0,0,1240,1242,3,556, - 278,0,1241,1240,1,0,0,0,1241,1242,1,0,0,0,1242,1244,1,0,0,0,1243, - 1245,3,390,195,0,1244,1243,1,0,0,0,1244,1245,1,0,0,0,1245,1348,1, - 0,0,0,1246,1247,5,308,0,0,1247,1253,5,58,0,0,1248,1249,3,70,35,0, - 1249,1250,3,476,238,0,1250,1254,1,0,0,0,1251,1252,5,329,0,0,1252, - 1254,3,482,241,0,1253,1248,1,0,0,0,1253,1251,1,0,0,0,1254,1348,1, - 0,0,0,1255,1256,5,308,0,0,1256,1257,5,329,0,0,1257,1261,5,122,0, - 0,1258,1259,3,68,34,0,1259,1260,3,476,238,0,1260,1262,1,0,0,0,1261, - 1258,1,0,0,0,1261,1262,1,0,0,0,1262,1263,1,0,0,0,1263,1264,5,184, - 0,0,1264,1266,3,194,97,0,1265,1267,3,642,321,0,1266,1265,1,0,0,0, - 1266,1267,1,0,0,0,1267,1348,1,0,0,0,1268,1269,5,308,0,0,1269,1270, - 5,332,0,0,1270,1274,3,482,241,0,1271,1272,5,399,0,0,1272,1273,5, - 426,0,0,1273,1275,5,400,0,0,1274,1271,1,0,0,0,1274,1275,1,0,0,0, - 1275,1348,1,0,0,0,1276,1277,5,308,0,0,1277,1289,5,191,0,0,1278,1279, - 3,70,35,0,1279,1281,3,476,238,0,1280,1282,5,122,0,0,1281,1280,1, - 0,0,0,1281,1282,1,0,0,0,1282,1290,1,0,0,0,1283,1285,3,60,30,0,1284, - 1283,1,0,0,0,1284,1285,1,0,0,0,1285,1287,1,0,0,0,1286,1288,5,122, - 0,0,1287,1286,1,0,0,0,1287,1288,1,0,0,0,1288,1290,1,0,0,0,1289,1278, - 1,0,0,0,1289,1284,1,0,0,0,1290,1348,1,0,0,0,1291,1292,5,308,0,0, - 1292,1319,5,50,0,0,1293,1294,5,51,0,0,1294,1295,5,405,0,0,1295,1320, - 5,431,0,0,1296,1297,3,70,35,0,1297,1298,3,476,238,0,1298,1303,1, - 0,0,0,1299,1301,3,60,30,0,1300,1299,1,0,0,0,1300,1301,1,0,0,0,1301, - 1303,1,0,0,0,1302,1296,1,0,0,0,1302,1300,1,0,0,0,1303,1305,1,0,0, - 0,1304,1306,3,410,205,0,1305,1304,1,0,0,0,1305,1306,1,0,0,0,1306, - 1308,1,0,0,0,1307,1309,3,412,206,0,1308,1307,1,0,0,0,1308,1309,1, - 0,0,0,1309,1311,1,0,0,0,1310,1312,3,414,207,0,1311,1310,1,0,0,0, - 1311,1312,1,0,0,0,1312,1314,1,0,0,0,1313,1315,3,556,278,0,1314,1313, - 1,0,0,0,1314,1315,1,0,0,0,1315,1317,1,0,0,0,1316,1318,3,390,195, - 0,1317,1316,1,0,0,0,1317,1318,1,0,0,0,1318,1320,1,0,0,0,1319,1293, - 1,0,0,0,1319,1302,1,0,0,0,1320,1348,1,0,0,0,1321,1322,5,308,0,0, - 1322,1348,5,346,0,0,1323,1324,5,308,0,0,1324,1325,5,54,0,0,1325, - 1348,5,426,0,0,1326,1327,5,308,0,0,1327,1331,5,280,0,0,1328,1329, - 5,243,0,0,1329,1332,3,654,327,0,1330,1332,5,244,0,0,1331,1328,1, - 0,0,0,1331,1330,1,0,0,0,1332,1348,1,0,0,0,1333,1334,5,308,0,0,1334, - 1348,5,70,0,0,1335,1337,5,308,0,0,1336,1338,5,138,0,0,1337,1336, - 1,0,0,0,1337,1338,1,0,0,0,1338,1339,1,0,0,0,1339,1340,7,9,0,0,1340, - 1341,5,224,0,0,1341,1345,3,482,241,0,1342,1343,3,68,34,0,1343,1344, - 3,476,238,0,1344,1346,1,0,0,0,1345,1342,1,0,0,0,1345,1346,1,0,0, - 0,1346,1348,1,0,0,0,1347,1164,1,0,0,0,1347,1170,1,0,0,0,1347,1183, - 1,0,0,0,1347,1195,1,0,0,0,1347,1208,1,0,0,0,1347,1225,1,0,0,0,1347, - 1231,1,0,0,0,1347,1246,1,0,0,0,1347,1255,1,0,0,0,1347,1268,1,0,0, - 0,1347,1276,1,0,0,0,1347,1291,1,0,0,0,1347,1321,1,0,0,0,1347,1323, - 1,0,0,0,1347,1326,1,0,0,0,1347,1333,1,0,0,0,1347,1335,1,0,0,0,1348, - 73,1,0,0,0,1349,1350,5,384,0,0,1350,1351,3,654,327,0,1351,1352,5, - 405,0,0,1352,1353,5,426,0,0,1353,1358,1,0,0,0,1354,1355,5,184,0, - 0,1355,1358,3,194,97,0,1356,1358,3,194,97,0,1357,1349,1,0,0,0,1357, - 1354,1,0,0,0,1357,1356,1,0,0,0,1358,75,1,0,0,0,1359,1360,5,190,0, - 0,1360,1361,5,329,0,0,1361,1362,3,640,320,0,1362,1363,3,80,40,0, - 1363,77,1,0,0,0,1364,1365,5,190,0,0,1365,1366,3,70,35,0,1366,1367, - 3,476,238,0,1367,1368,3,80,40,0,1368,79,1,0,0,0,1369,1370,7,10,0, - 0,1370,81,1,0,0,0,1371,1372,5,361,0,0,1372,1373,5,329,0,0,1373,1374, - 3,640,320,0,1374,83,1,0,0,0,1375,1376,5,361,0,0,1376,1377,3,70,35, - 0,1377,1378,3,476,238,0,1378,85,1,0,0,0,1379,1380,5,58,0,0,1380, - 1381,5,287,0,0,1381,1382,3,654,327,0,1382,87,1,0,0,0,1383,1384,5, - 101,0,0,1384,1385,5,287,0,0,1385,1386,3,654,327,0,1386,89,1,0,0, - 0,1387,1388,5,143,0,0,1388,1390,3,118,59,0,1389,1391,3,112,56,0, - 1390,1389,1,0,0,0,1390,1391,1,0,0,0,1391,1392,1,0,0,0,1392,1393, - 5,341,0,0,1393,1395,3,124,62,0,1394,1396,3,130,65,0,1395,1394,1, - 0,0,0,1395,1396,1,0,0,0,1396,91,1,0,0,0,1397,1399,5,283,0,0,1398, + 1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,3,333,4731, + 8,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333, + 1,333,1,333,1,333,1,333,1,333,3,333,4748,8,333,1,333,1,333,1,333, + 3,333,4753,8,333,1,333,1,333,1,333,1,333,1,333,1,333,1,333,3,333, + 4762,8,333,1,334,1,334,1,335,1,335,1,335,1,335,1,335,1,335,1,335, + 3,335,4773,8,335,1,336,1,336,1,336,5,336,4778,8,336,10,336,12,336, + 4781,9,336,1,337,1,337,1,337,3,337,4786,8,337,1,338,1,338,1,338, + 3,338,4791,8,338,1,339,1,339,1,340,1,340,1,341,1,341,1,342,1,342, + 1,343,1,343,1,344,1,344,1,345,1,345,1,346,1,346,1,347,1,347,1,348, + 1,348,1,349,1,349,1,350,1,350,1,350,5,350,4818,8,350,10,350,12,350, + 4821,9,350,1,351,1,351,1,351,5,351,4826,8,351,10,351,12,351,4829, + 9,351,1,351,1,351,1,351,1,351,5,351,4835,8,351,10,351,12,351,4838, + 9,351,3,351,4840,8,351,1,352,1,352,1,352,1,352,1,353,1,353,1,353, + 1,353,3,353,4850,8,353,1,354,1,354,1,354,1,354,1,354,1,354,1,354, + 1,354,1,354,1,354,1,354,1,354,3,354,4864,8,354,1,355,1,355,1,355, + 5,355,4869,8,355,10,355,12,355,4872,9,355,1,355,1,833,0,356,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,0,61,2,0,57,57,172,172,4,0,91,91,121,121,226,226, + 325,325,1,0,395,396,2,0,50,50,346,346,2,0,34,34,282,282,1,0,89,90, + 2,0,139,139,154,154,2,0,67,67,295,295,2,0,68,68,296,296,1,0,155, + 156,2,0,114,114,307,307,11,0,7,7,9,9,58,58,86,86,101,101,155,155, + 161,161,190,190,299,299,309,309,365,365,3,0,4,4,101,101,326,326, + 3,0,15,15,128,128,170,170,1,0,141,142,2,0,30,30,351,351,2,0,217, + 217,373,373,2,0,214,214,272,272,2,0,18,18,89,89,2,0,130,130,177, + 177,2,0,39,39,376,376,4,0,112,112,164,164,205,205,356,356,2,0,7, + 7,96,96,2,0,125,125,350,350,2,0,225,225,391,391,2,0,42,42,315,315, + 2,0,189,189,196,196,2,0,426,426,431,431,2,0,140,140,285,285,3,0, + 12,12,231,231,300,300,2,0,241,241,292,292,2,0,198,198,268,268,2, + 0,260,260,292,292,2,0,354,354,431,431,2,0,133,133,247,247,2,0,152, + 152,281,281,3,0,413,414,418,418,420,420,2,0,412,412,415,417,1,0, + 413,414,4,0,184,184,270,270,286,286,408,411,2,0,7,7,13,13,3,0,7, + 7,13,13,313,313,3,0,184,184,270,270,286,286,4,0,125,125,219,219, + 350,350,360,360,2,0,405,405,407,411,24,0,11,11,16,16,25,28,35,35, + 100,100,131,132,151,151,154,154,162,163,184,184,198,198,216,216, + 228,228,264,264,270,270,286,286,311,311,323,324,340,340,357,357, + 383,383,405,417,419,421,423,423,85,0,1,6,8,8,10,10,15,15,18,20,22, + 24,30,31,33,34,37,38,40,44,46,47,49,50,52,53,56,57,59,59,66,66,68, + 68,72,77,79,79,83,85,87,89,91,95,97,99,103,104,106,107,109,111,114, + 116,118,121,127,130,137,138,142,142,147,150,152,152,155,156,158, + 160,168,170,172,177,182,183,185,187,189,193,195,197,199,202,204, + 204,206,209,211,212,214,215,217,218,220,220,222,223,226,227,232, + 233,235,236,238,240,243,246,252,252,254,255,257,259,261,262,265, + 267,271,282,284,284,287,288,293,298,300,303,305,310,312,312,314, + 317,319,325,327,328,330,330,332,334,339,340,342,342,344,346,349, + 349,352,353,355,355,357,357,360,364,366,368,371,373,375,375,377, + 382,385,385,388,394,13,0,16,16,26,28,63,64,71,71,100,100,131,131, + 145,145,151,151,162,163,198,198,264,264,311,311,337,337,2,0,4,4, + 101,101,2,0,9,9,58,58,3,0,14,14,144,144,369,369,1,0,106,107,1,0, + 94,95,1,0,392,393,1,0,208,209,1,0,381,382,1,0,73,74,1,0,148,149, + 1,0,206,207,1,0,297,298,1,0,80,82,5464,0,715,1,0,0,0,2,722,1,0,0, + 0,4,727,1,0,0,0,6,761,1,0,0,0,8,763,1,0,0,0,10,836,1,0,0,0,12,838, + 1,0,0,0,14,854,1,0,0,0,16,863,1,0,0,0,18,871,1,0,0,0,20,884,1,0, + 0,0,22,895,1,0,0,0,24,900,1,0,0,0,26,911,1,0,0,0,28,974,1,0,0,0, + 30,976,1,0,0,0,32,979,1,0,0,0,34,983,1,0,0,0,36,985,1,0,0,0,38,988, + 1,0,0,0,40,991,1,0,0,0,42,1035,1,0,0,0,44,1037,1,0,0,0,46,1040,1, + 0,0,0,48,1043,1,0,0,0,50,1052,1,0,0,0,52,1055,1,0,0,0,54,1070,1, + 0,0,0,56,1082,1,0,0,0,58,1087,1,0,0,0,60,1107,1,0,0,0,62,1111,1, + 0,0,0,64,1118,1,0,0,0,66,1143,1,0,0,0,68,1160,1,0,0,0,70,1162,1, + 0,0,0,72,1347,1,0,0,0,74,1357,1,0,0,0,76,1359,1,0,0,0,78,1364,1, + 0,0,0,80,1369,1,0,0,0,82,1371,1,0,0,0,84,1375,1,0,0,0,86,1379,1, + 0,0,0,88,1383,1,0,0,0,90,1387,1,0,0,0,92,1397,1,0,0,0,94,1408,1, + 0,0,0,96,1425,1,0,0,0,98,1443,1,0,0,0,100,1448,1,0,0,0,102,1451, + 1,0,0,0,104,1455,1,0,0,0,106,1462,1,0,0,0,108,1471,1,0,0,0,110,1477, + 1,0,0,0,112,1479,1,0,0,0,114,1493,1,0,0,0,116,1515,1,0,0,0,118,1517, + 1,0,0,0,120,1525,1,0,0,0,122,1532,1,0,0,0,124,1534,1,0,0,0,126,1548, + 1,0,0,0,128,1555,1,0,0,0,130,1557,1,0,0,0,132,1561,1,0,0,0,134,1565, + 1,0,0,0,136,1569,1,0,0,0,138,1573,1,0,0,0,140,1586,1,0,0,0,142,1594, + 1,0,0,0,144,1597,1,0,0,0,146,1599,1,0,0,0,148,1611,1,0,0,0,150,1621, + 1,0,0,0,152,1624,1,0,0,0,154,1635,1,0,0,0,156,1643,1,0,0,0,158,1686, + 1,0,0,0,160,1695,1,0,0,0,162,1723,1,0,0,0,164,1736,1,0,0,0,166,1738, + 1,0,0,0,168,1744,1,0,0,0,170,1747,1,0,0,0,172,1753,1,0,0,0,174,1759, + 1,0,0,0,176,1766,1,0,0,0,178,1800,1,0,0,0,180,1808,1,0,0,0,182,1821, + 1,0,0,0,184,1826,1,0,0,0,186,1837,1,0,0,0,188,1854,1,0,0,0,190,1856, + 1,0,0,0,192,1861,1,0,0,0,194,1868,1,0,0,0,196,1870,1,0,0,0,198,1873, + 1,0,0,0,200,1876,1,0,0,0,202,1890,1,0,0,0,204,1898,1,0,0,0,206,1924, + 1,0,0,0,208,1926,1,0,0,0,210,1943,1,0,0,0,212,1957,1,0,0,0,214,1959, + 1,0,0,0,216,1962,1,0,0,0,218,1965,1,0,0,0,220,1974,1,0,0,0,222,1994, + 1,0,0,0,224,1996,1,0,0,0,226,1999,1,0,0,0,228,2012,1,0,0,0,230,2014, + 1,0,0,0,232,2018,1,0,0,0,234,2026,1,0,0,0,236,2030,1,0,0,0,238,2039, + 1,0,0,0,240,2045,1,0,0,0,242,2051,1,0,0,0,244,2056,1,0,0,0,246,2102, + 1,0,0,0,248,2104,1,0,0,0,250,2112,1,0,0,0,252,2120,1,0,0,0,254,2128, + 1,0,0,0,256,2139,1,0,0,0,258,2141,1,0,0,0,260,2146,1,0,0,0,262,2148, + 1,0,0,0,264,2150,1,0,0,0,266,2163,1,0,0,0,268,2171,1,0,0,0,270,2180, + 1,0,0,0,272,2184,1,0,0,0,274,2186,1,0,0,0,276,2191,1,0,0,0,278,2193, + 1,0,0,0,280,2197,1,0,0,0,282,2203,1,0,0,0,284,2211,1,0,0,0,286,2213, + 1,0,0,0,288,2216,1,0,0,0,290,2223,1,0,0,0,292,2234,1,0,0,0,294,2247, + 1,0,0,0,296,2249,1,0,0,0,298,2257,1,0,0,0,300,2261,1,0,0,0,302,2269, + 1,0,0,0,304,2271,1,0,0,0,306,2274,1,0,0,0,308,2281,1,0,0,0,310,2289, + 1,0,0,0,312,2296,1,0,0,0,314,2304,1,0,0,0,316,2312,1,0,0,0,318,2316, + 1,0,0,0,320,2318,1,0,0,0,322,2329,1,0,0,0,324,2333,1,0,0,0,326,2345, + 1,0,0,0,328,2353,1,0,0,0,330,2357,1,0,0,0,332,2369,1,0,0,0,334,2381, + 1,0,0,0,336,2386,1,0,0,0,338,2391,1,0,0,0,340,2393,1,0,0,0,342,2397, + 1,0,0,0,344,2401,1,0,0,0,346,2408,1,0,0,0,348,2410,1,0,0,0,350,2423, + 1,0,0,0,352,2462,1,0,0,0,354,2464,1,0,0,0,356,2469,1,0,0,0,358,2474, + 1,0,0,0,360,2481,1,0,0,0,362,2486,1,0,0,0,364,2491,1,0,0,0,366,2497, + 1,0,0,0,368,2499,1,0,0,0,370,2508,1,0,0,0,372,2520,1,0,0,0,374,2600, + 1,0,0,0,376,2606,1,0,0,0,378,2632,1,0,0,0,380,2634,1,0,0,0,382,2656, + 1,0,0,0,384,2661,1,0,0,0,386,2665,1,0,0,0,388,2697,1,0,0,0,390,2699, + 1,0,0,0,392,2710,1,0,0,0,394,2716,1,0,0,0,396,2718,1,0,0,0,398,2750, + 1,0,0,0,400,2757,1,0,0,0,402,2763,1,0,0,0,404,2769,1,0,0,0,406,2784, + 1,0,0,0,408,2794,1,0,0,0,410,2802,1,0,0,0,412,2805,1,0,0,0,414,2808, + 1,0,0,0,416,2811,1,0,0,0,418,2933,1,0,0,0,420,3067,1,0,0,0,422,3095, + 1,0,0,0,424,3112,1,0,0,0,426,3129,1,0,0,0,428,3131,1,0,0,0,430,3134, + 1,0,0,0,432,3160,1,0,0,0,434,3165,1,0,0,0,436,3192,1,0,0,0,438,3203, + 1,0,0,0,440,3340,1,0,0,0,442,3342,1,0,0,0,444,3365,1,0,0,0,446,3377, + 1,0,0,0,448,3382,1,0,0,0,450,3390,1,0,0,0,452,3398,1,0,0,0,454,3410, + 1,0,0,0,456,3444,1,0,0,0,458,3446,1,0,0,0,460,3471,1,0,0,0,462,3480, + 1,0,0,0,464,3510,1,0,0,0,466,3569,1,0,0,0,468,3571,1,0,0,0,470,3600, + 1,0,0,0,472,3602,1,0,0,0,474,3618,1,0,0,0,476,3630,1,0,0,0,478,3632, + 1,0,0,0,480,3636,1,0,0,0,482,3646,1,0,0,0,484,3656,1,0,0,0,486,3661, + 1,0,0,0,488,3668,1,0,0,0,490,3672,1,0,0,0,492,3691,1,0,0,0,494,3696, + 1,0,0,0,496,3698,1,0,0,0,498,3702,1,0,0,0,500,3728,1,0,0,0,502,3733, + 1,0,0,0,504,3754,1,0,0,0,506,3759,1,0,0,0,508,3790,1,0,0,0,510,3792, + 1,0,0,0,512,3816,1,0,0,0,514,3849,1,0,0,0,516,3851,1,0,0,0,518,3853, + 1,0,0,0,520,3855,1,0,0,0,522,3880,1,0,0,0,524,3882,1,0,0,0,526,3890, + 1,0,0,0,528,3916,1,0,0,0,530,3918,1,0,0,0,532,3938,1,0,0,0,534,3940, + 1,0,0,0,536,3951,1,0,0,0,538,3964,1,0,0,0,540,3999,1,0,0,0,542,4001, + 1,0,0,0,544,4006,1,0,0,0,546,4011,1,0,0,0,548,4013,1,0,0,0,550,4035, + 1,0,0,0,552,4037,1,0,0,0,554,4041,1,0,0,0,556,4050,1,0,0,0,558,4060, + 1,0,0,0,560,4064,1,0,0,0,562,4068,1,0,0,0,564,4072,1,0,0,0,566,4148, + 1,0,0,0,568,4150,1,0,0,0,570,4153,1,0,0,0,572,4157,1,0,0,0,574,4162, + 1,0,0,0,576,4164,1,0,0,0,578,4175,1,0,0,0,580,4192,1,0,0,0,582,4208, + 1,0,0,0,584,4217,1,0,0,0,586,4232,1,0,0,0,588,4262,1,0,0,0,590,4264, + 1,0,0,0,592,4281,1,0,0,0,594,4297,1,0,0,0,596,4299,1,0,0,0,598,4318, + 1,0,0,0,600,4323,1,0,0,0,602,4338,1,0,0,0,604,4346,1,0,0,0,606,4354, + 1,0,0,0,608,4362,1,0,0,0,610,4370,1,0,0,0,612,4378,1,0,0,0,614,4386, + 1,0,0,0,616,4388,1,0,0,0,618,4398,1,0,0,0,620,4406,1,0,0,0,622,4422, + 1,0,0,0,624,4426,1,0,0,0,626,4431,1,0,0,0,628,4433,1,0,0,0,630,4444, + 1,0,0,0,632,4446,1,0,0,0,634,4464,1,0,0,0,636,4469,1,0,0,0,638,4477, + 1,0,0,0,640,4485,1,0,0,0,642,4489,1,0,0,0,644,4501,1,0,0,0,646,4506, + 1,0,0,0,648,4517,1,0,0,0,650,4524,1,0,0,0,652,4526,1,0,0,0,654,4530, + 1,0,0,0,656,4532,1,0,0,0,658,4537,1,0,0,0,660,4539,1,0,0,0,662,4541, + 1,0,0,0,664,4594,1,0,0,0,666,4761,1,0,0,0,668,4763,1,0,0,0,670,4772, + 1,0,0,0,672,4774,1,0,0,0,674,4785,1,0,0,0,676,4787,1,0,0,0,678,4792, + 1,0,0,0,680,4794,1,0,0,0,682,4796,1,0,0,0,684,4798,1,0,0,0,686,4800, + 1,0,0,0,688,4802,1,0,0,0,690,4804,1,0,0,0,692,4806,1,0,0,0,694,4808, + 1,0,0,0,696,4810,1,0,0,0,698,4812,1,0,0,0,700,4814,1,0,0,0,702,4839, + 1,0,0,0,704,4841,1,0,0,0,706,4849,1,0,0,0,708,4863,1,0,0,0,710,4865, + 1,0,0,0,712,714,3,2,1,0,713,712,1,0,0,0,714,717,1,0,0,0,715,713, + 1,0,0,0,715,716,1,0,0,0,716,718,1,0,0,0,717,715,1,0,0,0,718,719, + 5,0,0,1,719,1,1,0,0,0,720,723,3,4,2,0,721,723,3,10,5,0,722,720,1, + 0,0,0,722,721,1,0,0,0,723,725,1,0,0,0,724,726,5,398,0,0,725,724, + 1,0,0,0,725,726,1,0,0,0,726,3,1,0,0,0,727,737,5,119,0,0,728,730, + 3,6,3,0,729,728,1,0,0,0,730,733,1,0,0,0,731,729,1,0,0,0,731,732, + 1,0,0,0,732,734,1,0,0,0,733,731,1,0,0,0,734,738,3,10,5,0,735,736, + 5,284,0,0,736,738,3,364,182,0,737,731,1,0,0,0,737,735,1,0,0,0,738, + 5,1,0,0,0,739,762,5,122,0,0,740,762,5,138,0,0,741,762,5,88,0,0,742, + 744,5,37,0,0,743,745,7,0,0,0,744,743,1,0,0,0,744,745,1,0,0,0,745, + 762,1,0,0,0,746,762,5,192,0,0,747,762,5,21,0,0,748,762,5,10,0,0, + 749,762,5,275,0,0,750,762,5,191,0,0,751,762,5,19,0,0,752,754,5,377, + 0,0,753,755,5,225,0,0,754,753,1,0,0,0,754,755,1,0,0,0,755,757,1, + 0,0,0,756,758,3,8,4,0,757,756,1,0,0,0,757,758,1,0,0,0,758,762,1, + 0,0,0,759,762,5,79,0,0,760,762,5,78,0,0,761,739,1,0,0,0,761,740, + 1,0,0,0,761,741,1,0,0,0,761,742,1,0,0,0,761,746,1,0,0,0,761,747, + 1,0,0,0,761,748,1,0,0,0,761,749,1,0,0,0,761,750,1,0,0,0,761,751, + 1,0,0,0,761,752,1,0,0,0,761,759,1,0,0,0,761,760,1,0,0,0,762,7,1, + 0,0,0,763,764,7,1,0,0,764,9,1,0,0,0,765,837,3,364,182,0,766,837, + 3,12,6,0,767,837,3,16,8,0,768,837,3,18,9,0,769,837,3,20,10,0,770, + 837,3,24,12,0,771,772,5,277,0,0,772,773,5,320,0,0,773,776,3,476, + 238,0,774,775,5,387,0,0,775,777,3,230,115,0,776,774,1,0,0,0,776, + 777,1,0,0,0,777,837,1,0,0,0,778,837,3,28,14,0,779,780,5,86,0,0,780, + 781,5,139,0,0,781,783,3,482,241,0,782,784,3,500,250,0,783,782,1, + 0,0,0,783,784,1,0,0,0,784,837,1,0,0,0,785,786,5,365,0,0,786,787, + 3,482,241,0,787,789,3,396,198,0,788,790,3,500,250,0,789,788,1,0, + 0,0,789,790,1,0,0,0,790,837,1,0,0,0,791,837,3,398,199,0,792,794, + 5,203,0,0,793,795,5,436,0,0,794,793,1,0,0,0,794,795,1,0,0,0,795, + 796,1,0,0,0,796,797,5,166,0,0,797,802,3,482,241,0,798,800,5,17,0, + 0,799,798,1,0,0,0,799,800,1,0,0,0,800,801,1,0,0,0,801,803,3,654, + 327,0,802,799,1,0,0,0,802,803,1,0,0,0,803,804,1,0,0,0,804,805,5, + 370,0,0,805,806,3,460,230,0,806,807,5,224,0,0,807,808,3,596,298, + 0,808,809,3,402,201,0,809,837,1,0,0,0,810,811,5,249,0,0,811,812, + 3,654,327,0,812,813,5,139,0,0,813,814,3,364,182,0,814,837,1,0,0, + 0,815,816,5,115,0,0,816,817,3,654,327,0,817,818,5,370,0,0,818,819, + 3,300,150,0,819,837,1,0,0,0,820,821,5,304,0,0,821,826,3,664,332, + 0,822,823,7,2,0,0,823,825,3,664,332,0,824,822,1,0,0,0,825,828,1, + 0,0,0,826,824,1,0,0,0,826,827,1,0,0,0,827,829,1,0,0,0,828,826,1, + 0,0,0,829,833,5,405,0,0,830,832,9,0,0,0,831,830,1,0,0,0,832,835, + 1,0,0,0,833,834,1,0,0,0,833,831,1,0,0,0,834,837,1,0,0,0,835,833, + 1,0,0,0,836,765,1,0,0,0,836,766,1,0,0,0,836,767,1,0,0,0,836,768, + 1,0,0,0,836,769,1,0,0,0,836,770,1,0,0,0,836,771,1,0,0,0,836,778, + 1,0,0,0,836,779,1,0,0,0,836,785,1,0,0,0,836,791,1,0,0,0,836,792, + 1,0,0,0,836,810,1,0,0,0,836,815,1,0,0,0,836,820,1,0,0,0,837,11,1, + 0,0,0,838,839,5,187,0,0,839,841,5,66,0,0,840,842,5,188,0,0,841,840, + 1,0,0,0,841,842,1,0,0,0,842,843,1,0,0,0,843,844,5,158,0,0,844,846, + 5,426,0,0,845,847,5,235,0,0,846,845,1,0,0,0,846,847,1,0,0,0,847, + 848,1,0,0,0,848,849,5,166,0,0,849,850,5,329,0,0,850,852,3,640,320, + 0,851,853,3,56,28,0,852,851,1,0,0,0,852,853,1,0,0,0,853,13,1,0,0, + 0,854,856,5,134,0,0,855,857,5,204,0,0,856,855,1,0,0,0,856,857,1, + 0,0,0,857,858,1,0,0,0,858,859,5,279,0,0,859,860,5,399,0,0,860,861, + 5,426,0,0,861,862,5,400,0,0,862,15,1,0,0,0,863,864,5,120,0,0,864, + 865,5,329,0,0,865,866,3,640,320,0,866,867,5,341,0,0,867,869,5,426, + 0,0,868,870,3,14,7,0,869,868,1,0,0,0,869,870,1,0,0,0,870,17,1,0, + 0,0,871,877,5,153,0,0,872,874,5,123,0,0,873,872,1,0,0,0,873,874, + 1,0,0,0,874,875,1,0,0,0,875,876,5,329,0,0,876,878,3,640,320,0,877, + 873,1,0,0,0,877,878,1,0,0,0,878,879,1,0,0,0,879,880,5,139,0,0,880, + 882,5,426,0,0,881,883,3,428,214,0,882,881,1,0,0,0,882,883,1,0,0, + 0,883,19,1,0,0,0,884,885,5,277,0,0,885,886,5,103,0,0,886,889,3,22, + 11,0,887,888,5,278,0,0,888,890,3,22,11,0,889,887,1,0,0,0,889,890, + 1,0,0,0,890,893,1,0,0,0,891,892,5,387,0,0,892,894,3,230,115,0,893, + 891,1,0,0,0,893,894,1,0,0,0,894,21,1,0,0,0,895,898,3,476,238,0,896, + 897,5,395,0,0,897,899,3,26,13,0,898,896,1,0,0,0,898,899,1,0,0,0, + 899,23,1,0,0,0,900,901,5,277,0,0,901,902,5,187,0,0,902,905,3,22, + 11,0,903,904,5,166,0,0,904,906,3,476,238,0,905,903,1,0,0,0,905,906, + 1,0,0,0,906,909,1,0,0,0,907,908,5,387,0,0,908,910,3,230,115,0,909, + 907,1,0,0,0,909,910,1,0,0,0,910,25,1,0,0,0,911,914,5,426,0,0,912, + 913,5,395,0,0,913,915,5,426,0,0,914,912,1,0,0,0,914,915,1,0,0,0, + 915,27,1,0,0,0,916,975,3,42,21,0,917,975,3,46,23,0,918,975,3,48, + 24,0,919,975,3,440,220,0,920,975,3,54,27,0,921,975,3,52,26,0,922, + 975,3,416,208,0,923,975,3,64,32,0,924,975,3,72,36,0,925,975,3,138, + 69,0,926,975,3,160,80,0,927,975,3,176,88,0,928,975,3,180,90,0,929, + 975,3,184,92,0,930,975,3,182,91,0,931,975,3,174,87,0,932,975,3,178, + 89,0,933,975,3,146,73,0,934,975,3,152,76,0,935,975,3,148,74,0,936, + 975,3,150,75,0,937,975,3,154,77,0,938,975,3,156,78,0,939,975,3,158, + 79,0,940,975,3,66,33,0,941,975,3,76,38,0,942,975,3,82,41,0,943,975, + 3,78,39,0,944,975,3,84,42,0,945,975,3,86,43,0,946,975,3,88,44,0, + 947,975,3,90,45,0,948,975,3,92,46,0,949,975,3,106,53,0,950,975,3, + 98,49,0,951,975,3,108,54,0,952,975,3,100,50,0,953,975,3,94,47,0, + 954,975,3,96,48,0,955,975,3,104,52,0,956,975,3,102,51,0,957,958, + 5,1,0,0,958,960,7,3,0,0,959,961,5,431,0,0,960,959,1,0,0,0,961,962, + 1,0,0,0,962,960,1,0,0,0,962,963,1,0,0,0,963,975,1,0,0,0,964,965, + 5,176,0,0,965,967,5,258,0,0,966,968,5,426,0,0,967,966,1,0,0,0,968, + 969,1,0,0,0,969,967,1,0,0,0,969,970,1,0,0,0,970,975,1,0,0,0,971, + 975,3,666,333,0,972,975,3,442,221,0,973,975,3,444,222,0,974,916, + 1,0,0,0,974,917,1,0,0,0,974,918,1,0,0,0,974,919,1,0,0,0,974,920, + 1,0,0,0,974,921,1,0,0,0,974,922,1,0,0,0,974,923,1,0,0,0,974,924, + 1,0,0,0,974,925,1,0,0,0,974,926,1,0,0,0,974,927,1,0,0,0,974,928, + 1,0,0,0,974,929,1,0,0,0,974,930,1,0,0,0,974,931,1,0,0,0,974,932, + 1,0,0,0,974,933,1,0,0,0,974,934,1,0,0,0,974,935,1,0,0,0,974,936, + 1,0,0,0,974,937,1,0,0,0,974,938,1,0,0,0,974,939,1,0,0,0,974,940, + 1,0,0,0,974,941,1,0,0,0,974,942,1,0,0,0,974,943,1,0,0,0,974,944, + 1,0,0,0,974,945,1,0,0,0,974,946,1,0,0,0,974,947,1,0,0,0,974,948, + 1,0,0,0,974,949,1,0,0,0,974,950,1,0,0,0,974,951,1,0,0,0,974,952, + 1,0,0,0,974,953,1,0,0,0,974,954,1,0,0,0,974,955,1,0,0,0,974,956, + 1,0,0,0,974,957,1,0,0,0,974,964,1,0,0,0,974,971,1,0,0,0,974,972, + 1,0,0,0,974,973,1,0,0,0,975,29,1,0,0,0,976,977,5,151,0,0,977,978, + 5,117,0,0,978,31,1,0,0,0,979,980,5,151,0,0,980,981,5,216,0,0,981, + 982,5,117,0,0,982,33,1,0,0,0,983,984,7,4,0,0,984,35,1,0,0,0,985, + 986,3,678,339,0,986,987,5,284,0,0,987,37,1,0,0,0,988,989,3,680,340, + 0,989,990,5,284,0,0,990,39,1,0,0,0,991,992,5,321,0,0,992,993,5,17, + 0,0,993,994,5,92,0,0,994,41,1,0,0,0,995,997,5,58,0,0,996,998,5,273, + 0,0,997,996,1,0,0,0,997,998,1,0,0,0,998,999,1,0,0,0,999,1001,3,70, + 35,0,1000,1002,3,32,16,0,1001,1000,1,0,0,0,1001,1002,1,0,0,0,1002, + 1003,1,0,0,0,1003,1005,3,478,239,0,1004,1006,3,50,25,0,1005,1004, + 1,0,0,0,1005,1006,1,0,0,0,1006,1008,1,0,0,0,1007,1009,3,428,214, + 0,1008,1007,1,0,0,0,1008,1009,1,0,0,0,1009,1012,1,0,0,0,1010,1011, + 5,196,0,0,1011,1013,5,426,0,0,1012,1010,1,0,0,0,1012,1013,1,0,0, + 0,1013,1017,1,0,0,0,1014,1015,5,387,0,0,1015,1016,5,76,0,0,1016, + 1018,3,230,115,0,1017,1014,1,0,0,0,1017,1018,1,0,0,0,1018,1036,1, + 0,0,0,1019,1020,5,58,0,0,1020,1021,5,273,0,0,1021,1023,3,70,35,0, + 1022,1024,3,32,16,0,1023,1022,1,0,0,0,1023,1024,1,0,0,0,1024,1025, + 1,0,0,0,1025,1027,3,478,239,0,1026,1028,3,50,25,0,1027,1026,1,0, + 0,0,1027,1028,1,0,0,0,1028,1029,1,0,0,0,1029,1033,3,44,22,0,1030, + 1031,5,387,0,0,1031,1032,5,76,0,0,1032,1034,3,230,115,0,1033,1030, + 1,0,0,0,1033,1034,1,0,0,0,1034,1036,1,0,0,0,1035,995,1,0,0,0,1035, + 1019,1,0,0,0,1036,43,1,0,0,0,1037,1038,5,370,0,0,1038,1039,3,476, + 238,0,1039,45,1,0,0,0,1040,1041,5,368,0,0,1041,1042,3,476,238,0, + 1042,47,1,0,0,0,1043,1044,5,101,0,0,1044,1046,3,70,35,0,1045,1047, + 3,30,15,0,1046,1045,1,0,0,0,1046,1047,1,0,0,0,1047,1048,1,0,0,0, + 1048,1050,3,476,238,0,1049,1051,3,34,17,0,1050,1049,1,0,0,0,1050, + 1051,1,0,0,0,1051,49,1,0,0,0,1052,1053,5,47,0,0,1053,1054,5,426, + 0,0,1054,51,1,0,0,0,1055,1057,5,351,0,0,1056,1058,5,329,0,0,1057, + 1056,1,0,0,0,1057,1058,1,0,0,0,1058,1059,1,0,0,0,1059,1065,3,640, + 320,0,1060,1061,5,46,0,0,1061,1062,5,399,0,0,1062,1063,3,254,127, + 0,1063,1064,5,400,0,0,1064,1066,1,0,0,0,1065,1060,1,0,0,0,1065,1066, + 1,0,0,0,1066,1068,1,0,0,0,1067,1069,5,135,0,0,1068,1067,1,0,0,0, + 1068,1069,1,0,0,0,1069,53,1,0,0,0,1070,1071,5,101,0,0,1071,1073, + 5,329,0,0,1072,1074,3,30,15,0,1073,1072,1,0,0,0,1073,1074,1,0,0, + 0,1074,1075,1,0,0,0,1075,1077,3,482,241,0,1076,1078,5,255,0,0,1077, + 1076,1,0,0,0,1077,1078,1,0,0,0,1078,1080,1,0,0,0,1079,1081,3,14, + 7,0,1080,1079,1,0,0,0,1080,1081,1,0,0,0,1081,55,1,0,0,0,1082,1083, + 5,160,0,0,1083,1084,5,426,0,0,1084,1085,5,301,0,0,1085,1086,5,426, + 0,0,1086,57,1,0,0,0,1087,1090,3,654,327,0,1088,1089,5,395,0,0,1089, + 1091,3,654,327,0,1090,1088,1,0,0,0,1090,1091,1,0,0,0,1091,1105,1, + 0,0,0,1092,1102,3,654,327,0,1093,1098,5,395,0,0,1094,1099,5,104, + 0,0,1095,1099,5,175,0,0,1096,1099,5,375,0,0,1097,1099,3,654,327, + 0,1098,1094,1,0,0,0,1098,1095,1,0,0,0,1098,1096,1,0,0,0,1098,1097, + 1,0,0,0,1099,1101,1,0,0,0,1100,1093,1,0,0,0,1101,1104,1,0,0,0,1102, + 1100,1,0,0,0,1102,1103,1,0,0,0,1103,1106,1,0,0,0,1104,1102,1,0,0, + 0,1105,1092,1,0,0,0,1105,1106,1,0,0,0,1106,59,1,0,0,0,1107,1109, + 3,58,29,0,1108,1110,3,642,321,0,1109,1108,1,0,0,0,1109,1110,1,0, + 0,0,1110,61,1,0,0,0,1111,1113,3,480,240,0,1112,1114,3,642,321,0, + 1113,1112,1,0,0,0,1113,1114,1,0,0,0,1114,1116,1,0,0,0,1115,1117, + 3,264,132,0,1116,1115,1,0,0,0,1116,1117,1,0,0,0,1117,63,1,0,0,0, + 1118,1141,7,5,0,0,1119,1121,3,70,35,0,1120,1122,5,122,0,0,1121,1120, + 1,0,0,0,1121,1122,1,0,0,0,1122,1123,1,0,0,0,1123,1124,3,476,238, + 0,1124,1142,1,0,0,0,1125,1127,5,69,0,0,1126,1128,5,122,0,0,1127, + 1126,1,0,0,0,1127,1128,1,0,0,0,1128,1129,1,0,0,0,1129,1142,3,476, + 238,0,1130,1132,5,141,0,0,1131,1133,5,122,0,0,1132,1131,1,0,0,0, + 1132,1133,1,0,0,0,1133,1134,1,0,0,0,1134,1142,3,572,286,0,1135,1138, + 5,138,0,0,1136,1138,5,122,0,0,1137,1135,1,0,0,0,1137,1136,1,0,0, + 0,1138,1139,1,0,0,0,1139,1142,3,62,31,0,1140,1142,3,62,31,0,1141, + 1119,1,0,0,0,1141,1125,1,0,0,0,1141,1130,1,0,0,0,1141,1137,1,0,0, + 0,1141,1140,1,0,0,0,1142,65,1,0,0,0,1143,1144,5,10,0,0,1144,1145, + 5,329,0,0,1145,1158,3,640,320,0,1146,1147,5,52,0,0,1147,1154,5,319, + 0,0,1148,1155,5,215,0,0,1149,1150,5,134,0,0,1150,1152,5,46,0,0,1151, + 1153,3,254,127,0,1152,1151,1,0,0,0,1152,1153,1,0,0,0,1153,1155,1, + 0,0,0,1154,1148,1,0,0,0,1154,1149,1,0,0,0,1154,1155,1,0,0,0,1155, + 1159,1,0,0,0,1156,1157,5,33,0,0,1157,1159,5,204,0,0,1158,1146,1, + 0,0,0,1158,1156,1,0,0,0,1159,67,1,0,0,0,1160,1161,7,6,0,0,1161,69, + 1,0,0,0,1162,1163,7,7,0,0,1163,71,1,0,0,0,1164,1165,5,308,0,0,1165, + 1168,7,8,0,0,1166,1167,5,184,0,0,1167,1169,3,194,97,0,1168,1166, + 1,0,0,0,1168,1169,1,0,0,0,1169,1348,1,0,0,0,1170,1172,5,308,0,0, + 1171,1173,5,122,0,0,1172,1171,1,0,0,0,1172,1173,1,0,0,0,1173,1174, + 1,0,0,0,1174,1178,5,330,0,0,1175,1176,3,68,34,0,1176,1177,3,476, + 238,0,1177,1179,1,0,0,0,1178,1175,1,0,0,0,1178,1179,1,0,0,0,1179, + 1181,1,0,0,0,1180,1182,3,74,37,0,1181,1180,1,0,0,0,1181,1182,1,0, + 0,0,1182,1348,1,0,0,0,1183,1184,5,308,0,0,1184,1188,5,379,0,0,1185, + 1186,3,68,34,0,1186,1187,3,476,238,0,1187,1189,1,0,0,0,1188,1185, + 1,0,0,0,1188,1189,1,0,0,0,1189,1193,1,0,0,0,1190,1191,5,184,0,0, + 1191,1194,3,194,97,0,1192,1194,3,194,97,0,1193,1190,1,0,0,0,1193, + 1192,1,0,0,0,1193,1194,1,0,0,0,1194,1348,1,0,0,0,1195,1196,5,308, + 0,0,1196,1197,5,202,0,0,1197,1201,5,379,0,0,1198,1199,3,68,34,0, + 1199,1200,3,476,238,0,1200,1202,1,0,0,0,1201,1198,1,0,0,0,1201,1202, + 1,0,0,0,1202,1206,1,0,0,0,1203,1204,5,184,0,0,1204,1207,3,194,97, + 0,1205,1207,3,194,97,0,1206,1203,1,0,0,0,1206,1205,1,0,0,0,1206, + 1207,1,0,0,0,1207,1348,1,0,0,0,1208,1210,5,308,0,0,1209,1211,5,315, + 0,0,1210,1209,1,0,0,0,1210,1211,1,0,0,0,1211,1212,1,0,0,0,1212,1213, + 5,46,0,0,1213,1214,3,68,34,0,1214,1218,3,480,240,0,1215,1216,3,68, + 34,0,1216,1217,3,476,238,0,1217,1219,1,0,0,0,1218,1215,1,0,0,0,1218, + 1219,1,0,0,0,1219,1223,1,0,0,0,1220,1221,5,184,0,0,1221,1224,3,194, + 97,0,1222,1224,3,194,97,0,1223,1220,1,0,0,0,1223,1222,1,0,0,0,1223, + 1224,1,0,0,0,1224,1348,1,0,0,0,1225,1226,5,308,0,0,1226,1229,5,142, + 0,0,1227,1228,5,184,0,0,1228,1230,3,572,286,0,1229,1227,1,0,0,0, + 1229,1230,1,0,0,0,1230,1348,1,0,0,0,1231,1232,5,308,0,0,1232,1233, + 5,239,0,0,1233,1235,3,480,240,0,1234,1236,3,642,321,0,1235,1234, + 1,0,0,0,1235,1236,1,0,0,0,1236,1238,1,0,0,0,1237,1239,3,500,250, + 0,1238,1237,1,0,0,0,1238,1239,1,0,0,0,1239,1241,1,0,0,0,1240,1242, + 3,556,278,0,1241,1240,1,0,0,0,1241,1242,1,0,0,0,1242,1244,1,0,0, + 0,1243,1245,3,390,195,0,1244,1243,1,0,0,0,1244,1245,1,0,0,0,1245, + 1348,1,0,0,0,1246,1247,5,308,0,0,1247,1253,5,58,0,0,1248,1249,3, + 70,35,0,1249,1250,3,476,238,0,1250,1254,1,0,0,0,1251,1252,5,329, + 0,0,1252,1254,3,482,241,0,1253,1248,1,0,0,0,1253,1251,1,0,0,0,1254, + 1348,1,0,0,0,1255,1256,5,308,0,0,1256,1257,5,329,0,0,1257,1261,5, + 122,0,0,1258,1259,3,68,34,0,1259,1260,3,476,238,0,1260,1262,1,0, + 0,0,1261,1258,1,0,0,0,1261,1262,1,0,0,0,1262,1263,1,0,0,0,1263,1264, + 5,184,0,0,1264,1266,3,194,97,0,1265,1267,3,642,321,0,1266,1265,1, + 0,0,0,1266,1267,1,0,0,0,1267,1348,1,0,0,0,1268,1269,5,308,0,0,1269, + 1270,5,332,0,0,1270,1274,3,482,241,0,1271,1272,5,399,0,0,1272,1273, + 5,426,0,0,1273,1275,5,400,0,0,1274,1271,1,0,0,0,1274,1275,1,0,0, + 0,1275,1348,1,0,0,0,1276,1277,5,308,0,0,1277,1289,5,191,0,0,1278, + 1279,3,70,35,0,1279,1281,3,476,238,0,1280,1282,5,122,0,0,1281,1280, + 1,0,0,0,1281,1282,1,0,0,0,1282,1290,1,0,0,0,1283,1285,3,60,30,0, + 1284,1283,1,0,0,0,1284,1285,1,0,0,0,1285,1287,1,0,0,0,1286,1288, + 5,122,0,0,1287,1286,1,0,0,0,1287,1288,1,0,0,0,1288,1290,1,0,0,0, + 1289,1278,1,0,0,0,1289,1284,1,0,0,0,1290,1348,1,0,0,0,1291,1292, + 5,308,0,0,1292,1319,5,50,0,0,1293,1294,5,51,0,0,1294,1295,5,405, + 0,0,1295,1320,5,431,0,0,1296,1297,3,70,35,0,1297,1298,3,476,238, + 0,1298,1303,1,0,0,0,1299,1301,3,60,30,0,1300,1299,1,0,0,0,1300,1301, + 1,0,0,0,1301,1303,1,0,0,0,1302,1296,1,0,0,0,1302,1300,1,0,0,0,1303, + 1305,1,0,0,0,1304,1306,3,410,205,0,1305,1304,1,0,0,0,1305,1306,1, + 0,0,0,1306,1308,1,0,0,0,1307,1309,3,412,206,0,1308,1307,1,0,0,0, + 1308,1309,1,0,0,0,1309,1311,1,0,0,0,1310,1312,3,414,207,0,1311,1310, + 1,0,0,0,1311,1312,1,0,0,0,1312,1314,1,0,0,0,1313,1315,3,556,278, + 0,1314,1313,1,0,0,0,1314,1315,1,0,0,0,1315,1317,1,0,0,0,1316,1318, + 3,390,195,0,1317,1316,1,0,0,0,1317,1318,1,0,0,0,1318,1320,1,0,0, + 0,1319,1293,1,0,0,0,1319,1302,1,0,0,0,1320,1348,1,0,0,0,1321,1322, + 5,308,0,0,1322,1348,5,346,0,0,1323,1324,5,308,0,0,1324,1325,5,54, + 0,0,1325,1348,5,426,0,0,1326,1327,5,308,0,0,1327,1331,5,280,0,0, + 1328,1329,5,243,0,0,1329,1332,3,654,327,0,1330,1332,5,244,0,0,1331, + 1328,1,0,0,0,1331,1330,1,0,0,0,1332,1348,1,0,0,0,1333,1334,5,308, + 0,0,1334,1348,5,70,0,0,1335,1337,5,308,0,0,1336,1338,5,138,0,0,1337, + 1336,1,0,0,0,1337,1338,1,0,0,0,1338,1339,1,0,0,0,1339,1340,7,9,0, + 0,1340,1341,5,224,0,0,1341,1345,3,482,241,0,1342,1343,3,68,34,0, + 1343,1344,3,476,238,0,1344,1346,1,0,0,0,1345,1342,1,0,0,0,1345,1346, + 1,0,0,0,1346,1348,1,0,0,0,1347,1164,1,0,0,0,1347,1170,1,0,0,0,1347, + 1183,1,0,0,0,1347,1195,1,0,0,0,1347,1208,1,0,0,0,1347,1225,1,0,0, + 0,1347,1231,1,0,0,0,1347,1246,1,0,0,0,1347,1255,1,0,0,0,1347,1268, + 1,0,0,0,1347,1276,1,0,0,0,1347,1291,1,0,0,0,1347,1321,1,0,0,0,1347, + 1323,1,0,0,0,1347,1326,1,0,0,0,1347,1333,1,0,0,0,1347,1335,1,0,0, + 0,1348,73,1,0,0,0,1349,1350,5,384,0,0,1350,1351,3,654,327,0,1351, + 1352,5,405,0,0,1352,1353,5,426,0,0,1353,1358,1,0,0,0,1354,1355,5, + 184,0,0,1355,1358,3,194,97,0,1356,1358,3,194,97,0,1357,1349,1,0, + 0,0,1357,1354,1,0,0,0,1357,1356,1,0,0,0,1358,75,1,0,0,0,1359,1360, + 5,190,0,0,1360,1361,5,329,0,0,1361,1362,3,640,320,0,1362,1363,3, + 80,40,0,1363,77,1,0,0,0,1364,1365,5,190,0,0,1365,1366,3,70,35,0, + 1366,1367,3,476,238,0,1367,1368,3,80,40,0,1368,79,1,0,0,0,1369,1370, + 7,10,0,0,1370,81,1,0,0,0,1371,1372,5,361,0,0,1372,1373,5,329,0,0, + 1373,1374,3,640,320,0,1374,83,1,0,0,0,1375,1376,5,361,0,0,1376,1377, + 3,70,35,0,1377,1378,3,476,238,0,1378,85,1,0,0,0,1379,1380,5,58,0, + 0,1380,1381,5,287,0,0,1381,1382,3,654,327,0,1382,87,1,0,0,0,1383, + 1384,5,101,0,0,1384,1385,5,287,0,0,1385,1386,3,654,327,0,1386,89, + 1,0,0,0,1387,1388,5,143,0,0,1388,1390,3,118,59,0,1389,1391,3,112, + 56,0,1390,1389,1,0,0,0,1390,1391,1,0,0,0,1391,1392,1,0,0,0,1392, + 1393,5,341,0,0,1393,1395,3,124,62,0,1394,1396,3,130,65,0,1395,1394, + 1,0,0,0,1395,1396,1,0,0,0,1396,91,1,0,0,0,1397,1399,5,283,0,0,1398, 1400,3,132,66,0,1399,1398,1,0,0,0,1399,1400,1,0,0,0,1400,1401,1, 0,0,0,1401,1403,3,118,59,0,1402,1404,3,112,56,0,1403,1402,1,0,0, 0,1403,1404,1,0,0,0,1404,1405,1,0,0,0,1405,1406,5,139,0,0,1406,1407, @@ -27897,7 +27917,7 @@ export class HiveSqlParser extends SQLParserBase { 1,0,0,0,3813,3814,3,212,106,0,3814,3815,3,214,107,0,3815,511,1,0, 0,0,3816,3821,3,514,257,0,3817,3818,5,397,0,0,3818,3820,3,514,257, 0,3819,3817,1,0,0,0,3820,3823,1,0,0,0,3821,3819,1,0,0,0,3821,3822, - 1,0,0,0,3822,513,1,0,0,0,3823,3821,1,0,0,0,3824,3848,3,446,223,0, + 1,0,0,0,3822,513,1,0,0,0,3823,3821,1,0,0,0,3824,3850,3,446,223,0, 3825,3828,3,516,258,0,3826,3828,3,518,259,0,3827,3825,1,0,0,0,3827, 3826,1,0,0,0,3828,3845,1,0,0,0,3829,3831,5,17,0,0,3830,3829,1,0, 0,0,3830,3831,1,0,0,0,3831,3832,1,0,0,0,3832,3846,3,654,327,0,3833, @@ -27905,379 +27925,380 @@ export class HiveSqlParser extends SQLParserBase { 5,397,0,0,3837,3839,3,654,327,0,3838,3836,1,0,0,0,3839,3842,1,0, 0,0,3840,3838,1,0,0,0,3840,3841,1,0,0,0,3841,3843,1,0,0,0,3842,3840, 1,0,0,0,3843,3844,5,400,0,0,3844,3846,1,0,0,0,3845,3830,1,0,0,0, - 3845,3833,1,0,0,0,3845,3846,1,0,0,0,3846,3848,1,0,0,0,3847,3824, - 1,0,0,0,3847,3827,1,0,0,0,3848,515,1,0,0,0,3849,3850,3,256,128,0, - 3850,517,1,0,0,0,3851,3852,3,596,298,0,3852,519,1,0,0,0,3853,3854, - 7,31,0,0,3854,3855,3,524,262,0,3855,3856,3,212,106,0,3856,3857,3, - 216,108,0,3857,3858,5,370,0,0,3858,3871,5,426,0,0,3859,3869,5,17, - 0,0,3860,3863,5,399,0,0,3861,3864,3,450,225,0,3862,3864,3,248,124, - 0,3863,3861,1,0,0,0,3863,3862,1,0,0,0,3864,3865,1,0,0,0,3865,3866, - 5,400,0,0,3866,3870,1,0,0,0,3867,3870,3,450,225,0,3868,3870,3,248, - 124,0,3869,3860,1,0,0,0,3869,3867,1,0,0,0,3869,3868,1,0,0,0,3870, - 3872,1,0,0,0,3871,3859,1,0,0,0,3871,3872,1,0,0,0,3872,3873,1,0,0, - 0,3873,3874,3,212,106,0,3874,3875,3,214,107,0,3875,521,1,0,0,0,3876, - 3879,3,446,223,0,3877,3879,3,596,298,0,3878,3876,1,0,0,0,3878,3877, - 1,0,0,0,3879,523,1,0,0,0,3880,3885,3,522,261,0,3881,3882,5,397,0, - 0,3882,3884,3,522,261,0,3883,3881,1,0,0,0,3884,3887,1,0,0,0,3885, - 3883,1,0,0,0,3885,3886,1,0,0,0,3886,525,1,0,0,0,3887,3885,1,0,0, - 0,3888,3889,5,386,0,0,3889,3890,3,654,327,0,3890,3891,5,17,0,0,3891, - 3899,3,528,264,0,3892,3893,5,397,0,0,3893,3894,3,654,327,0,3894, - 3895,5,17,0,0,3895,3896,3,528,264,0,3896,3898,1,0,0,0,3897,3892, - 1,0,0,0,3898,3901,1,0,0,0,3899,3897,1,0,0,0,3899,3900,1,0,0,0,3900, - 527,1,0,0,0,3901,3899,1,0,0,0,3902,3915,3,654,327,0,3903,3905,5, - 399,0,0,3904,3906,3,654,327,0,3905,3904,1,0,0,0,3905,3906,1,0,0, - 0,3906,3908,1,0,0,0,3907,3909,3,492,246,0,3908,3907,1,0,0,0,3908, - 3909,1,0,0,0,3909,3911,1,0,0,0,3910,3912,3,530,265,0,3911,3910,1, - 0,0,0,3911,3912,1,0,0,0,3912,3913,1,0,0,0,3913,3915,5,400,0,0,3914, - 3902,1,0,0,0,3914,3903,1,0,0,0,3915,529,1,0,0,0,3916,3930,7,32,0, - 0,3917,3918,5,354,0,0,3918,3924,5,247,0,0,3919,3920,5,62,0,0,3920, - 3924,5,291,0,0,3921,3922,5,431,0,0,3922,3924,5,247,0,0,3923,3917, - 1,0,0,0,3923,3919,1,0,0,0,3923,3921,1,0,0,0,3924,3931,1,0,0,0,3925, - 3926,5,25,0,0,3926,3927,3,532,266,0,3927,3928,5,11,0,0,3928,3929, - 3,532,266,0,3929,3931,1,0,0,0,3930,3923,1,0,0,0,3930,3925,1,0,0, - 0,3931,531,1,0,0,0,3932,3933,7,33,0,0,3933,3937,7,34,0,0,3934,3935, - 5,62,0,0,3935,3937,5,291,0,0,3936,3932,1,0,0,0,3936,3934,1,0,0,0, - 3937,533,1,0,0,0,3938,3939,5,144,0,0,3939,3945,5,32,0,0,3940,3946, - 3,256,128,0,3941,3946,3,536,268,0,3942,3946,3,538,269,0,3943,3944, - 5,399,0,0,3944,3946,5,400,0,0,3945,3940,1,0,0,0,3945,3941,1,0,0, - 0,3945,3942,1,0,0,0,3945,3943,1,0,0,0,3946,535,1,0,0,0,3947,3950, - 5,290,0,0,3948,3950,5,61,0,0,3949,3947,1,0,0,0,3949,3948,1,0,0,0, - 3950,3951,1,0,0,0,3951,3952,5,399,0,0,3952,3957,3,596,298,0,3953, - 3954,5,397,0,0,3954,3956,3,596,298,0,3955,3953,1,0,0,0,3956,3959, - 1,0,0,0,3957,3955,1,0,0,0,3957,3958,1,0,0,0,3958,3960,1,0,0,0,3959, - 3957,1,0,0,0,3960,3961,5,400,0,0,3961,537,1,0,0,0,3962,3967,3,554, - 277,0,3963,3964,5,387,0,0,3964,3968,5,290,0,0,3965,3966,5,387,0, - 0,3966,3968,5,61,0,0,3967,3963,1,0,0,0,3967,3965,1,0,0,0,3967,3968, - 1,0,0,0,3968,3982,1,0,0,0,3969,3970,5,145,0,0,3970,3971,5,305,0, - 0,3971,3972,5,399,0,0,3972,3977,3,540,270,0,3973,3974,5,397,0,0, - 3974,3976,3,540,270,0,3975,3973,1,0,0,0,3976,3979,1,0,0,0,3977,3975, - 1,0,0,0,3977,3978,1,0,0,0,3978,3980,1,0,0,0,3979,3977,1,0,0,0,3980, - 3981,5,400,0,0,3981,3983,1,0,0,0,3982,3969,1,0,0,0,3982,3983,1,0, - 0,0,3983,539,1,0,0,0,3984,3986,5,399,0,0,3985,3987,3,596,298,0,3986, - 3985,1,0,0,0,3986,3987,1,0,0,0,3987,3992,1,0,0,0,3988,3989,5,397, - 0,0,3989,3991,3,596,298,0,3990,3988,1,0,0,0,3991,3994,1,0,0,0,3992, - 3990,1,0,0,0,3992,3993,1,0,0,0,3993,3995,1,0,0,0,3994,3992,1,0,0, - 0,3995,3998,5,400,0,0,3996,3998,3,596,298,0,3997,3984,1,0,0,0,3997, - 3996,1,0,0,0,3998,541,1,0,0,0,3999,4002,5,146,0,0,4000,4003,3,596, - 298,0,4001,4003,3,260,130,0,4002,4000,1,0,0,0,4002,4001,1,0,0,0, - 4003,543,1,0,0,0,4004,4005,5,256,0,0,4005,4006,3,596,298,0,4006, - 545,1,0,0,0,4007,4010,5,83,0,0,4008,4010,3,596,298,0,4009,4007,1, - 0,0,0,4009,4008,1,0,0,0,4010,547,1,0,0,0,4011,4013,3,596,298,0,4012, - 4014,5,17,0,0,4013,4012,1,0,0,0,4013,4014,1,0,0,0,4014,4016,1,0, - 0,0,4015,4017,3,654,327,0,4016,4015,1,0,0,0,4016,4017,1,0,0,0,4017, - 4028,1,0,0,0,4018,4019,5,397,0,0,4019,4021,3,596,298,0,4020,4022, - 5,17,0,0,4021,4020,1,0,0,0,4021,4022,1,0,0,0,4022,4024,1,0,0,0,4023, - 4025,3,654,327,0,4024,4023,1,0,0,0,4024,4025,1,0,0,0,4025,4027,1, - 0,0,0,4026,4018,1,0,0,0,4027,4030,1,0,0,0,4028,4026,1,0,0,0,4028, - 4029,1,0,0,0,4029,549,1,0,0,0,4030,4028,1,0,0,0,4031,4034,3,552, - 276,0,4032,4034,3,554,277,0,4033,4031,1,0,0,0,4033,4032,1,0,0,0, - 4034,551,1,0,0,0,4035,4036,5,399,0,0,4036,4037,3,554,277,0,4037, - 4038,5,400,0,0,4038,553,1,0,0,0,4039,4046,3,546,273,0,4040,4041, - 5,397,0,0,4041,4043,3,546,273,0,4042,4040,1,0,0,0,4043,4044,1,0, - 0,0,4044,4042,1,0,0,0,4044,4045,1,0,0,0,4045,4047,1,0,0,0,4046,4042, - 1,0,0,0,4046,4047,1,0,0,0,4047,555,1,0,0,0,4048,4049,5,229,0,0,4049, - 4050,5,32,0,0,4050,4055,3,312,156,0,4051,4052,5,397,0,0,4052,4054, - 3,312,156,0,4053,4051,1,0,0,0,4054,4057,1,0,0,0,4055,4053,1,0,0, - 0,4055,4056,1,0,0,0,4056,557,1,0,0,0,4057,4055,1,0,0,0,4058,4059, - 5,237,0,0,4059,4060,5,32,0,0,4060,4061,3,550,275,0,4061,559,1,0, - 0,0,4062,4063,5,41,0,0,4063,4064,5,32,0,0,4064,4065,3,550,275,0, - 4065,561,1,0,0,0,4066,4067,5,97,0,0,4067,4068,5,32,0,0,4068,4069, - 3,550,275,0,4069,563,1,0,0,0,4070,4071,5,314,0,0,4071,4091,5,32, - 0,0,4072,4073,5,399,0,0,4073,4078,3,312,156,0,4074,4075,5,397,0, - 0,4075,4077,3,312,156,0,4076,4074,1,0,0,0,4077,4080,1,0,0,0,4078, - 4076,1,0,0,0,4078,4079,1,0,0,0,4079,4081,1,0,0,0,4080,4078,1,0,0, - 0,4081,4082,5,400,0,0,4082,4092,1,0,0,0,4083,4088,3,312,156,0,4084, - 4085,5,397,0,0,4085,4087,3,312,156,0,4086,4084,1,0,0,0,4087,4090, - 1,0,0,0,4088,4086,1,0,0,0,4088,4089,1,0,0,0,4089,4092,1,0,0,0,4090, - 4088,1,0,0,0,4091,4072,1,0,0,0,4091,4083,1,0,0,0,4092,565,1,0,0, - 0,4093,4094,5,349,0,0,4094,4098,5,399,0,0,4095,4099,5,179,0,0,4096, - 4099,5,343,0,0,4097,4099,5,29,0,0,4098,4095,1,0,0,0,4098,4096,1, - 0,0,0,4098,4097,1,0,0,0,4098,4099,1,0,0,0,4099,4101,1,0,0,0,4100, - 4102,3,522,261,0,4101,4100,1,0,0,0,4101,4102,1,0,0,0,4102,4103,1, - 0,0,0,4103,4104,5,139,0,0,4104,4105,3,522,261,0,4105,4106,5,400, - 0,0,4106,4147,1,0,0,0,4107,4108,3,574,287,0,4108,4123,5,399,0,0, - 4109,4124,5,415,0,0,4110,4112,7,22,0,0,4111,4110,1,0,0,0,4111,4112, - 1,0,0,0,4112,4121,1,0,0,0,4113,4118,3,522,261,0,4114,4115,5,397, - 0,0,4115,4117,3,522,261,0,4116,4114,1,0,0,0,4117,4120,1,0,0,0,4118, - 4116,1,0,0,0,4118,4119,1,0,0,0,4119,4122,1,0,0,0,4120,4118,1,0,0, - 0,4121,4113,1,0,0,0,4121,4122,1,0,0,0,4122,4124,1,0,0,0,4123,4109, - 1,0,0,0,4123,4111,1,0,0,0,4124,4144,1,0,0,0,4125,4126,5,400,0,0, - 4126,4127,5,388,0,0,4127,4128,5,144,0,0,4128,4129,5,399,0,0,4129, - 4130,3,556,278,0,4130,4131,5,400,0,0,4131,4145,1,0,0,0,4132,4134, - 5,400,0,0,4133,4135,3,568,284,0,4134,4133,1,0,0,0,4134,4135,1,0, - 0,0,4135,4136,1,0,0,0,4136,4137,5,234,0,0,4137,4145,3,528,264,0, - 4138,4139,3,568,284,0,4139,4140,5,400,0,0,4140,4141,5,234,0,0,4141, - 4142,3,528,264,0,4142,4145,1,0,0,0,4143,4145,5,400,0,0,4144,4125, - 1,0,0,0,4144,4132,1,0,0,0,4144,4138,1,0,0,0,4144,4143,1,0,0,0,4145, - 4147,1,0,0,0,4146,4093,1,0,0,0,4146,4107,1,0,0,0,4147,567,1,0,0, - 0,4148,4149,7,35,0,0,4149,4150,5,220,0,0,4150,569,1,0,0,0,4151,4152, - 3,656,328,0,4152,571,1,0,0,0,4153,4156,3,656,328,0,4154,4156,5,426, - 0,0,4155,4153,1,0,0,0,4155,4154,1,0,0,0,4156,573,1,0,0,0,4157,4161, - 3,656,328,0,4158,4161,3,662,331,0,4159,4161,3,652,326,0,4160,4157, - 1,0,0,0,4160,4158,1,0,0,0,4160,4159,1,0,0,0,4161,575,1,0,0,0,4162, - 4163,5,36,0,0,4163,4164,5,399,0,0,4164,4165,3,596,298,0,4165,4166, - 5,17,0,0,4166,4169,3,352,176,0,4167,4168,5,137,0,0,4168,4170,5,426, - 0,0,4169,4167,1,0,0,0,4169,4170,1,0,0,0,4170,4171,1,0,0,0,4171,4172, - 5,400,0,0,4172,577,1,0,0,0,4173,4174,5,35,0,0,4174,4180,3,596,298, - 0,4175,4176,5,383,0,0,4176,4177,3,596,298,0,4177,4178,5,335,0,0, - 4178,4179,3,596,298,0,4179,4181,1,0,0,0,4180,4175,1,0,0,0,4181,4182, - 1,0,0,0,4182,4180,1,0,0,0,4182,4183,1,0,0,0,4183,4186,1,0,0,0,4184, - 4185,5,105,0,0,4185,4187,3,596,298,0,4186,4184,1,0,0,0,4186,4187, - 1,0,0,0,4187,4188,1,0,0,0,4188,4189,5,108,0,0,4189,579,1,0,0,0,4190, - 4196,5,35,0,0,4191,4192,5,383,0,0,4192,4193,3,596,298,0,4193,4194, - 5,335,0,0,4194,4195,3,596,298,0,4195,4197,1,0,0,0,4196,4191,1,0, - 0,0,4197,4198,1,0,0,0,4198,4196,1,0,0,0,4198,4199,1,0,0,0,4199,4202, - 1,0,0,0,4200,4201,5,105,0,0,4201,4203,3,596,298,0,4202,4200,1,0, - 0,0,4202,4203,1,0,0,0,4203,4204,1,0,0,0,4204,4205,5,108,0,0,4205, - 581,1,0,0,0,4206,4207,5,132,0,0,4207,4208,5,399,0,0,4208,4211,3, - 596,298,0,4209,4210,5,341,0,0,4210,4212,3,586,293,0,4211,4209,1, - 0,0,0,4211,4212,1,0,0,0,4212,4213,1,0,0,0,4213,4214,5,400,0,0,4214, - 583,1,0,0,0,4215,4216,5,124,0,0,4216,4217,5,399,0,0,4217,4218,3, - 586,293,0,4218,4219,5,139,0,0,4219,4220,3,596,298,0,4220,4221,5, - 400,0,0,4221,585,1,0,0,0,4222,4231,3,682,341,0,4223,4231,5,257,0, - 0,4224,4231,3,684,342,0,4225,4231,3,686,343,0,4226,4231,3,688,344, - 0,4227,4231,3,690,345,0,4228,4231,3,692,346,0,4229,4231,3,694,347, - 0,4230,4222,1,0,0,0,4230,4223,1,0,0,0,4230,4224,1,0,0,0,4230,4225, - 1,0,0,0,4230,4226,1,0,0,0,4230,4227,1,0,0,0,4230,4228,1,0,0,0,4230, - 4229,1,0,0,0,4231,587,1,0,0,0,4232,4233,3,590,295,0,4233,4234,3, - 594,297,0,4234,4261,1,0,0,0,4235,4261,5,431,0,0,4236,4237,5,71,0, - 0,4237,4261,5,426,0,0,4238,4261,5,63,0,0,4239,4240,5,337,0,0,4240, - 4261,5,426,0,0,4241,4261,5,64,0,0,4242,4243,5,338,0,0,4243,4261, - 5,426,0,0,4244,4248,5,426,0,0,4245,4247,5,426,0,0,4246,4245,1,0, - 0,0,4247,4250,1,0,0,0,4248,4246,1,0,0,0,4248,4249,1,0,0,0,4249,4261, - 1,0,0,0,4250,4248,1,0,0,0,4251,4261,5,428,0,0,4252,4261,5,429,0, - 0,4253,4254,5,433,0,0,4254,4261,5,427,0,0,4255,4261,5,350,0,0,4256, - 4261,5,125,0,0,4257,4261,5,219,0,0,4258,4261,5,424,0,0,4259,4261, - 3,258,129,0,4260,4232,1,0,0,0,4260,4235,1,0,0,0,4260,4236,1,0,0, - 0,4260,4238,1,0,0,0,4260,4239,1,0,0,0,4260,4241,1,0,0,0,4260,4242, - 1,0,0,0,4260,4244,1,0,0,0,4260,4251,1,0,0,0,4260,4252,1,0,0,0,4260, - 4253,1,0,0,0,4260,4255,1,0,0,0,4260,4256,1,0,0,0,4260,4257,1,0,0, - 0,4260,4258,1,0,0,0,4260,4259,1,0,0,0,4261,589,1,0,0,0,4262,4263, - 7,27,0,0,4263,591,1,0,0,0,4264,4265,5,399,0,0,4265,4266,3,590,295, - 0,4266,4267,5,400,0,0,4267,4268,3,594,297,0,4268,4280,1,0,0,0,4269, - 4275,5,165,0,0,4270,4276,3,590,295,0,4271,4272,5,399,0,0,4272,4273, - 3,596,298,0,4273,4274,5,400,0,0,4274,4276,1,0,0,0,4275,4270,1,0, - 0,0,4275,4271,1,0,0,0,4276,4277,1,0,0,0,4277,4278,3,594,297,0,4278, - 4280,1,0,0,0,4279,4264,1,0,0,0,4279,4269,1,0,0,0,4280,593,1,0,0, - 0,4281,4282,3,682,341,0,4282,4283,5,341,0,0,4283,4284,3,684,342, - 0,4284,4296,1,0,0,0,4285,4286,3,688,344,0,4286,4287,5,341,0,0,4287, - 4288,3,694,347,0,4288,4296,1,0,0,0,4289,4296,3,682,341,0,4290,4296, - 3,684,342,0,4291,4296,3,688,344,0,4292,4296,3,690,345,0,4293,4296, - 3,692,346,0,4294,4296,3,694,347,0,4295,4281,1,0,0,0,4295,4285,1, - 0,0,0,4295,4289,1,0,0,0,4295,4290,1,0,0,0,4295,4291,1,0,0,0,4295, - 4292,1,0,0,0,4295,4293,1,0,0,0,4295,4294,1,0,0,0,4296,595,1,0,0, - 0,4297,4302,3,638,319,0,4298,4299,5,228,0,0,4299,4301,3,638,319, - 0,4300,4298,1,0,0,0,4301,4304,1,0,0,0,4302,4300,1,0,0,0,4302,4303, - 1,0,0,0,4303,597,1,0,0,0,4304,4302,1,0,0,0,4305,4317,3,588,294,0, - 4306,4317,3,592,296,0,4307,4317,3,576,288,0,4308,4317,3,584,292, - 0,4309,4317,3,582,291,0,4310,4317,3,578,289,0,4311,4317,3,580,290, - 0,4312,4317,3,616,308,0,4313,4317,3,566,283,0,4314,4317,3,552,276, - 0,4315,4317,3,654,327,0,4316,4305,1,0,0,0,4316,4306,1,0,0,0,4316, - 4307,1,0,0,0,4316,4308,1,0,0,0,4316,4309,1,0,0,0,4316,4310,1,0,0, - 0,4316,4311,1,0,0,0,4316,4312,1,0,0,0,4316,4313,1,0,0,0,4316,4314, - 1,0,0,0,4316,4315,1,0,0,0,4317,599,1,0,0,0,4318,4320,7,36,0,0,4319, - 4318,1,0,0,0,4320,4323,1,0,0,0,4321,4319,1,0,0,0,4321,4322,1,0,0, - 0,4322,4324,1,0,0,0,4323,4321,1,0,0,0,4324,4333,3,598,299,0,4325, - 4326,5,401,0,0,4326,4327,3,596,298,0,4327,4328,5,402,0,0,4328,4332, - 1,0,0,0,4329,4330,5,395,0,0,4330,4332,3,654,327,0,4331,4325,1,0, - 0,0,4331,4329,1,0,0,0,4332,4335,1,0,0,0,4333,4331,1,0,0,0,4333,4334, - 1,0,0,0,4334,601,1,0,0,0,4335,4333,1,0,0,0,4336,4341,3,600,300,0, - 4337,4338,5,423,0,0,4338,4340,3,600,300,0,4339,4337,1,0,0,0,4340, - 4343,1,0,0,0,4341,4339,1,0,0,0,4341,4342,1,0,0,0,4342,603,1,0,0, - 0,4343,4341,1,0,0,0,4344,4349,3,602,301,0,4345,4346,7,37,0,0,4346, - 4348,3,602,301,0,4347,4345,1,0,0,0,4348,4351,1,0,0,0,4349,4347,1, - 0,0,0,4349,4350,1,0,0,0,4350,605,1,0,0,0,4351,4349,1,0,0,0,4352, - 4357,3,604,302,0,4353,4354,7,38,0,0,4354,4356,3,604,302,0,4355,4353, - 1,0,0,0,4356,4359,1,0,0,0,4357,4355,1,0,0,0,4357,4358,1,0,0,0,4358, - 607,1,0,0,0,4359,4357,1,0,0,0,4360,4365,3,606,303,0,4361,4362,5, - 422,0,0,4362,4364,3,606,303,0,4363,4361,1,0,0,0,4364,4367,1,0,0, - 0,4365,4363,1,0,0,0,4365,4366,1,0,0,0,4366,609,1,0,0,0,4367,4365, - 1,0,0,0,4368,4373,3,608,304,0,4369,4370,5,419,0,0,4370,4372,3,608, - 304,0,4371,4369,1,0,0,0,4372,4375,1,0,0,0,4373,4371,1,0,0,0,4373, - 4374,1,0,0,0,4374,611,1,0,0,0,4375,4373,1,0,0,0,4376,4381,3,610, - 305,0,4377,4378,5,421,0,0,4378,4380,3,610,305,0,4379,4377,1,0,0, - 0,4380,4383,1,0,0,0,4381,4379,1,0,0,0,4381,4382,1,0,0,0,4382,613, - 1,0,0,0,4383,4381,1,0,0,0,4384,4385,7,39,0,0,4385,615,1,0,0,0,4386, - 4387,5,399,0,0,4387,4388,3,380,190,0,4388,4389,5,400,0,0,4389,617, - 1,0,0,0,4390,4392,3,612,306,0,4391,4393,3,620,310,0,4392,4391,1, - 0,0,0,4392,4393,1,0,0,0,4393,4397,1,0,0,0,4394,4395,5,117,0,0,4395, - 4397,3,616,308,0,4396,4390,1,0,0,0,4396,4394,1,0,0,0,4397,619,1, - 0,0,0,4398,4399,3,614,307,0,4399,4400,3,612,306,0,4400,4405,1,0, - 0,0,4401,4405,3,622,311,0,4402,4403,5,216,0,0,4403,4405,3,626,313, - 0,4404,4398,1,0,0,0,4404,4401,1,0,0,0,4404,4402,1,0,0,0,4405,621, - 1,0,0,0,4406,4407,5,154,0,0,4407,4421,3,624,312,0,4408,4409,5,25, - 0,0,4409,4410,3,612,306,0,4410,4411,5,11,0,0,4411,4412,3,612,306, - 0,4412,4421,1,0,0,0,4413,4414,5,184,0,0,4414,4415,7,40,0,0,4415, - 4421,3,552,276,0,4416,4417,3,650,325,0,4417,4418,7,41,0,0,4418,4419, - 3,616,308,0,4419,4421,1,0,0,0,4420,4406,1,0,0,0,4420,4408,1,0,0, - 0,4420,4413,1,0,0,0,4420,4416,1,0,0,0,4421,623,1,0,0,0,4422,4425, - 3,616,308,0,4423,4425,3,552,276,0,4424,4422,1,0,0,0,4424,4423,1, - 0,0,0,4425,625,1,0,0,0,4426,4427,7,42,0,0,4427,4430,3,612,306,0, - 4428,4430,3,622,311,0,4429,4426,1,0,0,0,4429,4428,1,0,0,0,4430,627, - 1,0,0,0,4431,4432,5,167,0,0,4432,4433,5,96,0,0,4433,4434,5,139,0, - 0,4434,629,1,0,0,0,4435,4443,5,405,0,0,4436,4443,5,406,0,0,4437, - 4443,5,407,0,0,4438,4439,5,167,0,0,4439,4440,5,216,0,0,4440,4441, - 5,96,0,0,4441,4443,5,139,0,0,4442,4435,1,0,0,0,4442,4436,1,0,0,0, - 4442,4437,1,0,0,0,4442,4438,1,0,0,0,4443,631,1,0,0,0,4444,4453,3, - 618,309,0,4445,4446,3,630,315,0,4446,4447,3,618,309,0,4447,4452, - 1,0,0,0,4448,4449,3,628,314,0,4449,4450,3,618,309,0,4450,4452,1, - 0,0,0,4451,4445,1,0,0,0,4451,4448,1,0,0,0,4452,4455,1,0,0,0,4453, - 4451,1,0,0,0,4453,4454,1,0,0,0,4454,633,1,0,0,0,4455,4453,1,0,0, - 0,4456,4463,5,219,0,0,4457,4463,5,350,0,0,4458,4463,5,125,0,0,4459, - 4463,5,360,0,0,4460,4461,5,216,0,0,4461,4463,7,43,0,0,4462,4456, - 1,0,0,0,4462,4457,1,0,0,0,4462,4458,1,0,0,0,4462,4459,1,0,0,0,4462, - 4460,1,0,0,0,4463,635,1,0,0,0,4464,4466,5,216,0,0,4465,4464,1,0, - 0,0,4466,4469,1,0,0,0,4467,4465,1,0,0,0,4467,4468,1,0,0,0,4468,4470, - 1,0,0,0,4469,4467,1,0,0,0,4470,4473,3,632,316,0,4471,4472,5,167, - 0,0,4472,4474,3,634,317,0,4473,4471,1,0,0,0,4473,4474,1,0,0,0,4474, - 637,1,0,0,0,4475,4480,3,636,318,0,4476,4477,5,11,0,0,4477,4479,3, - 636,318,0,4478,4476,1,0,0,0,4479,4482,1,0,0,0,4480,4478,1,0,0,0, - 4480,4481,1,0,0,0,4481,639,1,0,0,0,4482,4480,1,0,0,0,4483,4485,3, - 482,241,0,4484,4486,3,642,321,0,4485,4484,1,0,0,0,4485,4486,1,0, - 0,0,4486,641,1,0,0,0,4487,4488,5,237,0,0,4488,4489,5,399,0,0,4489, - 4494,3,644,322,0,4490,4491,5,397,0,0,4491,4493,3,644,322,0,4492, - 4490,1,0,0,0,4493,4496,1,0,0,0,4494,4492,1,0,0,0,4494,4495,1,0,0, - 0,4495,4497,1,0,0,0,4496,4494,1,0,0,0,4497,4498,5,400,0,0,4498,643, - 1,0,0,0,4499,4502,3,654,327,0,4500,4501,5,405,0,0,4501,4503,3,588, - 294,0,4502,4500,1,0,0,0,4502,4503,1,0,0,0,4503,645,1,0,0,0,4504, - 4505,5,399,0,0,4505,4510,3,648,324,0,4506,4507,5,397,0,0,4507,4509, - 3,648,324,0,4508,4506,1,0,0,0,4509,4512,1,0,0,0,4510,4508,1,0,0, - 0,4510,4511,1,0,0,0,4511,4513,1,0,0,0,4512,4510,1,0,0,0,4513,4514, - 5,400,0,0,4514,647,1,0,0,0,4515,4518,3,654,327,0,4516,4519,5,184, - 0,0,4517,4519,3,650,325,0,4518,4516,1,0,0,0,4518,4517,1,0,0,0,4519, - 4520,1,0,0,0,4520,4521,3,588,294,0,4521,649,1,0,0,0,4522,4523,7, - 44,0,0,4523,651,1,0,0,0,4524,4525,7,45,0,0,4525,653,1,0,0,0,4526, - 4529,5,432,0,0,4527,4529,3,660,330,0,4528,4526,1,0,0,0,4528,4527, - 1,0,0,0,4529,655,1,0,0,0,4530,4533,3,654,327,0,4531,4532,5,395,0, - 0,4532,4534,3,654,327,0,4533,4531,1,0,0,0,4533,4534,1,0,0,0,4534, - 657,1,0,0,0,4535,4536,3,654,327,0,4536,659,1,0,0,0,4537,4538,7,46, - 0,0,4538,661,1,0,0,0,4539,4540,7,47,0,0,4540,663,1,0,0,0,4541,4593, - 3,654,327,0,4542,4593,5,299,0,0,4543,4593,5,171,0,0,4544,4593,5, - 237,0,0,4545,4593,5,198,0,0,4546,4593,5,268,0,0,4547,4593,5,369, - 0,0,4548,4593,5,241,0,0,4549,4593,5,165,0,0,4550,4593,5,292,0,0, - 4551,4593,5,356,0,0,4552,4593,5,144,0,0,4553,4593,5,203,0,0,4554, - 4593,5,219,0,0,4555,4593,5,126,0,0,4556,4593,5,188,0,0,4557,4593, - 5,101,0,0,4558,4593,5,329,0,0,4559,4593,5,224,0,0,4560,4593,5,291, - 0,0,4561,4593,5,145,0,0,4562,4593,5,304,0,0,4563,4593,5,135,0,0, - 4564,4593,5,318,0,0,4565,4593,5,161,0,0,4566,4593,5,54,0,0,4567, - 4593,5,166,0,0,4568,4593,5,358,0,0,4569,4593,5,45,0,0,4570,4593, - 5,347,0,0,4571,4593,5,96,0,0,4572,4593,5,154,0,0,4573,4593,5,269, - 0,0,4574,4593,5,337,0,0,4575,4593,5,225,0,0,4576,4593,5,108,0,0, - 4577,4593,5,141,0,0,4578,4593,5,365,0,0,4579,4593,5,21,0,0,4580, - 4593,5,78,0,0,4581,4593,5,374,0,0,4582,4593,5,336,0,0,4583,4593, - 5,167,0,0,4584,4593,5,134,0,0,4585,4593,5,216,0,0,4586,4593,5,27, - 0,0,4587,4593,5,370,0,0,4588,4593,5,263,0,0,4589,4593,5,25,0,0,4590, - 4593,5,62,0,0,4591,4593,5,17,0,0,4592,4541,1,0,0,0,4592,4542,1,0, - 0,0,4592,4543,1,0,0,0,4592,4544,1,0,0,0,4592,4545,1,0,0,0,4592,4546, - 1,0,0,0,4592,4547,1,0,0,0,4592,4548,1,0,0,0,4592,4549,1,0,0,0,4592, - 4550,1,0,0,0,4592,4551,1,0,0,0,4592,4552,1,0,0,0,4592,4553,1,0,0, - 0,4592,4554,1,0,0,0,4592,4555,1,0,0,0,4592,4556,1,0,0,0,4592,4557, - 1,0,0,0,4592,4558,1,0,0,0,4592,4559,1,0,0,0,4592,4560,1,0,0,0,4592, - 4561,1,0,0,0,4592,4562,1,0,0,0,4592,4563,1,0,0,0,4592,4564,1,0,0, - 0,4592,4565,1,0,0,0,4592,4566,1,0,0,0,4592,4567,1,0,0,0,4592,4568, - 1,0,0,0,4592,4569,1,0,0,0,4592,4570,1,0,0,0,4592,4571,1,0,0,0,4592, - 4572,1,0,0,0,4592,4573,1,0,0,0,4592,4574,1,0,0,0,4592,4575,1,0,0, - 0,4592,4576,1,0,0,0,4592,4577,1,0,0,0,4592,4578,1,0,0,0,4592,4579, - 1,0,0,0,4592,4580,1,0,0,0,4592,4581,1,0,0,0,4592,4582,1,0,0,0,4592, - 4583,1,0,0,0,4592,4584,1,0,0,0,4592,4585,1,0,0,0,4592,4586,1,0,0, - 0,4592,4587,1,0,0,0,4592,4588,1,0,0,0,4592,4589,1,0,0,0,4592,4590, - 1,0,0,0,4592,4591,1,0,0,0,4593,665,1,0,0,0,4594,4595,5,58,0,0,4595, - 4596,5,280,0,0,4596,4598,5,243,0,0,4597,4599,3,32,16,0,4598,4597, - 1,0,0,0,4598,4599,1,0,0,0,4599,4609,1,0,0,0,4600,4601,3,654,327, - 0,4601,4602,5,184,0,0,4602,4603,3,654,327,0,4603,4610,1,0,0,0,4604, - 4607,3,654,327,0,4605,4606,5,387,0,0,4606,4608,3,672,336,0,4607, - 4605,1,0,0,0,4607,4608,1,0,0,0,4608,4610,1,0,0,0,4609,4600,1,0,0, - 0,4609,4604,1,0,0,0,4610,4760,1,0,0,0,4611,4612,5,9,0,0,4612,4613, - 5,280,0,0,4613,4614,5,243,0,0,4614,4639,3,654,327,0,4615,4640,5, - 373,0,0,4616,4640,3,680,340,0,4617,4618,5,304,0,0,4618,4640,3,672, - 336,0,4619,4620,5,363,0,0,4620,4625,3,674,337,0,4621,4622,5,397, - 0,0,4622,4624,3,674,337,0,4623,4621,1,0,0,0,4624,4627,1,0,0,0,4625, - 4623,1,0,0,0,4625,4626,1,0,0,0,4626,4640,1,0,0,0,4627,4625,1,0,0, - 0,4628,4629,5,274,0,0,4629,4630,5,341,0,0,4630,4640,3,654,327,0, - 4631,4633,3,676,338,0,4632,4634,3,678,339,0,4633,4632,1,0,0,0,4633, - 4634,1,0,0,0,4634,4640,1,0,0,0,4635,4637,3,678,339,0,4636,4638,3, - 676,338,0,4637,4636,1,0,0,0,4637,4638,1,0,0,0,4638,4640,1,0,0,0, - 4639,4615,1,0,0,0,4639,4616,1,0,0,0,4639,4617,1,0,0,0,4639,4619, - 1,0,0,0,4639,4628,1,0,0,0,4639,4631,1,0,0,0,4639,4635,1,0,0,0,4640, - 4760,1,0,0,0,4641,4642,5,101,0,0,4642,4643,5,280,0,0,4643,4645,5, - 243,0,0,4644,4646,3,30,15,0,4645,4644,1,0,0,0,4645,4646,1,0,0,0, - 4646,4647,1,0,0,0,4647,4760,3,654,327,0,4648,4651,3,678,339,0,4649, - 4651,3,680,340,0,4650,4648,1,0,0,0,4650,4649,1,0,0,0,4651,4652,1, - 0,0,0,4652,4653,5,390,0,0,4653,4654,5,197,0,0,4654,4760,1,0,0,0, - 4655,4667,5,278,0,0,4656,4657,5,3,0,0,4657,4658,5,280,0,0,4658,4659, - 5,243,0,0,4659,4660,5,387,0,0,4660,4668,3,654,327,0,4661,4662,5, - 280,0,0,4662,4663,5,243,0,0,4663,4664,3,654,327,0,4664,4665,5,387, - 0,0,4665,4666,3,654,327,0,4666,4668,1,0,0,0,4667,4656,1,0,0,0,4667, - 4661,1,0,0,0,4668,4760,1,0,0,0,4669,4670,5,58,0,0,4670,4671,5,348, - 0,0,4671,4672,3,654,327,0,4672,4673,5,395,0,0,4673,4674,3,654,327, - 0,4674,4675,5,383,0,0,4675,4676,3,704,352,0,4676,4677,5,99,0,0,4677, - 4678,3,706,353,0,4678,4760,1,0,0,0,4679,4680,5,9,0,0,4680,4681,5, - 348,0,0,4681,4682,3,654,327,0,4682,4683,5,395,0,0,4683,4700,3,654, - 327,0,4684,4685,5,383,0,0,4685,4686,3,704,352,0,4686,4687,5,99,0, - 0,4687,4688,3,706,353,0,4688,4701,1,0,0,0,4689,4690,5,4,0,0,4690, - 4694,5,341,0,0,4691,4692,5,101,0,0,4692,4694,5,139,0,0,4693,4689, - 1,0,0,0,4693,4691,1,0,0,0,4694,4698,1,0,0,0,4695,4696,5,246,0,0, - 4696,4699,3,700,350,0,4697,4699,5,362,0,0,4698,4695,1,0,0,0,4698, - 4697,1,0,0,0,4699,4701,1,0,0,0,4700,4684,1,0,0,0,4700,4693,1,0,0, - 0,4701,4760,1,0,0,0,4702,4703,5,101,0,0,4703,4704,5,348,0,0,4704, - 4705,3,654,327,0,4705,4706,5,395,0,0,4706,4707,3,654,327,0,4707, - 4760,1,0,0,0,4708,4709,5,58,0,0,4709,4710,5,246,0,0,4710,4711,3, - 654,327,0,4711,4712,5,395,0,0,4712,4713,3,700,350,0,4713,4714,5, - 387,0,0,4714,4715,3,710,355,0,4715,4760,1,0,0,0,4716,4717,5,9,0, - 0,4717,4718,5,246,0,0,4718,4719,3,654,327,0,4719,4720,5,395,0,0, - 4720,4728,3,700,350,0,4721,4722,5,304,0,0,4722,4729,3,710,355,0, - 4723,4724,5,363,0,0,4724,4729,5,294,0,0,4725,4726,7,48,0,0,4726, - 4727,5,348,0,0,4727,4729,3,654,327,0,4728,4721,1,0,0,0,4728,4723, - 1,0,0,0,4728,4725,1,0,0,0,4729,4760,1,0,0,0,4730,4731,5,101,0,0, - 4731,4732,5,246,0,0,4732,4733,3,654,327,0,4733,4734,5,395,0,0,4734, - 4735,3,700,350,0,4735,4760,1,0,0,0,4736,4737,7,49,0,0,4737,4738, - 3,668,334,0,4738,4739,5,200,0,0,4739,4740,5,426,0,0,4740,4741,5, - 154,0,0,4741,4745,3,654,327,0,4742,4743,5,341,0,0,4743,4746,3,700, - 350,0,4744,4746,5,362,0,0,4745,4742,1,0,0,0,4745,4744,1,0,0,0,4746, - 4750,1,0,0,0,4747,4748,5,387,0,0,4748,4749,5,229,0,0,4749,4751,5, - 431,0,0,4750,4747,1,0,0,0,4750,4751,1,0,0,0,4751,4760,1,0,0,0,4752, - 4753,5,101,0,0,4753,4754,3,668,334,0,4754,4755,5,200,0,0,4755,4756, - 5,426,0,0,4756,4757,5,154,0,0,4757,4758,3,654,327,0,4758,4760,1, - 0,0,0,4759,4594,1,0,0,0,4759,4611,1,0,0,0,4759,4641,1,0,0,0,4759, - 4650,1,0,0,0,4759,4655,1,0,0,0,4759,4669,1,0,0,0,4759,4679,1,0,0, - 0,4759,4702,1,0,0,0,4759,4708,1,0,0,0,4759,4716,1,0,0,0,4759,4730, - 1,0,0,0,4759,4736,1,0,0,0,4759,4752,1,0,0,0,4760,667,1,0,0,0,4761, - 4762,7,50,0,0,4762,669,1,0,0,0,4763,4764,5,259,0,0,4764,4765,5,405, - 0,0,4765,4771,5,431,0,0,4766,4767,5,83,0,0,4767,4768,5,246,0,0,4768, - 4769,5,405,0,0,4769,4771,3,700,350,0,4770,4763,1,0,0,0,4770,4766, - 1,0,0,0,4771,671,1,0,0,0,4772,4777,3,670,335,0,4773,4774,5,397,0, - 0,4774,4776,3,670,335,0,4775,4773,1,0,0,0,4776,4779,1,0,0,0,4777, - 4775,1,0,0,0,4777,4778,1,0,0,0,4778,673,1,0,0,0,4779,4777,1,0,0, - 0,4780,4784,5,259,0,0,4781,4782,5,83,0,0,4782,4784,5,246,0,0,4783, - 4780,1,0,0,0,4783,4781,1,0,0,0,4784,675,1,0,0,0,4785,4788,5,2,0, - 0,4786,4787,5,387,0,0,4787,4789,5,278,0,0,4788,4786,1,0,0,0,4788, - 4789,1,0,0,0,4789,677,1,0,0,0,4790,4791,7,51,0,0,4791,679,1,0,0, - 0,4792,4793,7,52,0,0,4793,681,1,0,0,0,4794,4795,7,53,0,0,4795,683, - 1,0,0,0,4796,4797,7,54,0,0,4797,685,1,0,0,0,4798,4799,7,55,0,0,4799, - 687,1,0,0,0,4800,4801,7,56,0,0,4801,689,1,0,0,0,4802,4803,7,57,0, - 0,4803,691,1,0,0,0,4804,4805,7,58,0,0,4805,693,1,0,0,0,4806,4807, - 7,59,0,0,4807,695,1,0,0,0,4808,4809,7,60,0,0,4809,697,1,0,0,0,4810, - 4811,1,0,0,0,4811,699,1,0,0,0,4812,4817,3,654,327,0,4813,4814,5, - 395,0,0,4814,4816,3,654,327,0,4815,4813,1,0,0,0,4816,4819,1,0,0, - 0,4817,4815,1,0,0,0,4817,4818,1,0,0,0,4818,701,1,0,0,0,4819,4817, - 1,0,0,0,4820,4825,3,654,327,0,4821,4822,5,395,0,0,4822,4824,3,654, - 327,0,4823,4821,1,0,0,0,4824,4827,1,0,0,0,4825,4823,1,0,0,0,4825, - 4826,1,0,0,0,4826,4838,1,0,0,0,4827,4825,1,0,0,0,4828,4829,4,351, - 2,0,4829,4834,3,654,327,0,4830,4831,5,395,0,0,4831,4833,3,698,349, - 0,4832,4830,1,0,0,0,4833,4836,1,0,0,0,4834,4832,1,0,0,0,4834,4835, - 1,0,0,0,4835,4838,1,0,0,0,4836,4834,1,0,0,0,4837,4820,1,0,0,0,4837, - 4828,1,0,0,0,4838,703,1,0,0,0,4839,4840,3,654,327,0,4840,4841,5, - 411,0,0,4841,4842,7,27,0,0,4842,705,1,0,0,0,4843,4848,5,176,0,0, - 4844,4845,5,211,0,0,4845,4846,5,341,0,0,4846,4848,3,700,350,0,4847, - 4843,1,0,0,0,4847,4844,1,0,0,0,4848,707,1,0,0,0,4849,4850,5,8,0, - 0,4850,4851,5,405,0,0,4851,4862,5,431,0,0,4852,4853,5,259,0,0,4853, - 4854,5,405,0,0,4854,4862,5,431,0,0,4855,4856,5,294,0,0,4856,4857, - 5,405,0,0,4857,4862,5,426,0,0,4858,4859,5,240,0,0,4859,4860,5,405, - 0,0,4860,4862,3,700,350,0,4861,4849,1,0,0,0,4861,4852,1,0,0,0,4861, - 4855,1,0,0,0,4861,4858,1,0,0,0,4862,709,1,0,0,0,4863,4868,3,708, - 354,0,4864,4865,5,397,0,0,4865,4867,3,708,354,0,4866,4864,1,0,0, - 0,4867,4870,1,0,0,0,4868,4866,1,0,0,0,4868,4869,1,0,0,0,4869,711, - 1,0,0,0,4870,4868,1,0,0,0,629,715,722,725,731,737,744,754,757,761, + 3845,3833,1,0,0,0,3845,3846,1,0,0,0,3846,3850,1,0,0,0,3847,3848, + 4,257,2,0,3848,3850,3,698,349,0,3849,3824,1,0,0,0,3849,3827,1,0, + 0,0,3849,3847,1,0,0,0,3850,515,1,0,0,0,3851,3852,3,256,128,0,3852, + 517,1,0,0,0,3853,3854,3,596,298,0,3854,519,1,0,0,0,3855,3856,7,31, + 0,0,3856,3857,3,524,262,0,3857,3858,3,212,106,0,3858,3859,3,216, + 108,0,3859,3860,5,370,0,0,3860,3873,5,426,0,0,3861,3871,5,17,0,0, + 3862,3865,5,399,0,0,3863,3866,3,450,225,0,3864,3866,3,248,124,0, + 3865,3863,1,0,0,0,3865,3864,1,0,0,0,3866,3867,1,0,0,0,3867,3868, + 5,400,0,0,3868,3872,1,0,0,0,3869,3872,3,450,225,0,3870,3872,3,248, + 124,0,3871,3862,1,0,0,0,3871,3869,1,0,0,0,3871,3870,1,0,0,0,3872, + 3874,1,0,0,0,3873,3861,1,0,0,0,3873,3874,1,0,0,0,3874,3875,1,0,0, + 0,3875,3876,3,212,106,0,3876,3877,3,214,107,0,3877,521,1,0,0,0,3878, + 3881,3,446,223,0,3879,3881,3,596,298,0,3880,3878,1,0,0,0,3880,3879, + 1,0,0,0,3881,523,1,0,0,0,3882,3887,3,522,261,0,3883,3884,5,397,0, + 0,3884,3886,3,522,261,0,3885,3883,1,0,0,0,3886,3889,1,0,0,0,3887, + 3885,1,0,0,0,3887,3888,1,0,0,0,3888,525,1,0,0,0,3889,3887,1,0,0, + 0,3890,3891,5,386,0,0,3891,3892,3,654,327,0,3892,3893,5,17,0,0,3893, + 3901,3,528,264,0,3894,3895,5,397,0,0,3895,3896,3,654,327,0,3896, + 3897,5,17,0,0,3897,3898,3,528,264,0,3898,3900,1,0,0,0,3899,3894, + 1,0,0,0,3900,3903,1,0,0,0,3901,3899,1,0,0,0,3901,3902,1,0,0,0,3902, + 527,1,0,0,0,3903,3901,1,0,0,0,3904,3917,3,654,327,0,3905,3907,5, + 399,0,0,3906,3908,3,654,327,0,3907,3906,1,0,0,0,3907,3908,1,0,0, + 0,3908,3910,1,0,0,0,3909,3911,3,492,246,0,3910,3909,1,0,0,0,3910, + 3911,1,0,0,0,3911,3913,1,0,0,0,3912,3914,3,530,265,0,3913,3912,1, + 0,0,0,3913,3914,1,0,0,0,3914,3915,1,0,0,0,3915,3917,5,400,0,0,3916, + 3904,1,0,0,0,3916,3905,1,0,0,0,3917,529,1,0,0,0,3918,3932,7,32,0, + 0,3919,3920,5,354,0,0,3920,3926,5,247,0,0,3921,3922,5,62,0,0,3922, + 3926,5,291,0,0,3923,3924,5,431,0,0,3924,3926,5,247,0,0,3925,3919, + 1,0,0,0,3925,3921,1,0,0,0,3925,3923,1,0,0,0,3926,3933,1,0,0,0,3927, + 3928,5,25,0,0,3928,3929,3,532,266,0,3929,3930,5,11,0,0,3930,3931, + 3,532,266,0,3931,3933,1,0,0,0,3932,3925,1,0,0,0,3932,3927,1,0,0, + 0,3933,531,1,0,0,0,3934,3935,7,33,0,0,3935,3939,7,34,0,0,3936,3937, + 5,62,0,0,3937,3939,5,291,0,0,3938,3934,1,0,0,0,3938,3936,1,0,0,0, + 3939,533,1,0,0,0,3940,3941,5,144,0,0,3941,3947,5,32,0,0,3942,3948, + 3,256,128,0,3943,3948,3,536,268,0,3944,3948,3,538,269,0,3945,3946, + 5,399,0,0,3946,3948,5,400,0,0,3947,3942,1,0,0,0,3947,3943,1,0,0, + 0,3947,3944,1,0,0,0,3947,3945,1,0,0,0,3948,535,1,0,0,0,3949,3952, + 5,290,0,0,3950,3952,5,61,0,0,3951,3949,1,0,0,0,3951,3950,1,0,0,0, + 3952,3953,1,0,0,0,3953,3954,5,399,0,0,3954,3959,3,596,298,0,3955, + 3956,5,397,0,0,3956,3958,3,596,298,0,3957,3955,1,0,0,0,3958,3961, + 1,0,0,0,3959,3957,1,0,0,0,3959,3960,1,0,0,0,3960,3962,1,0,0,0,3961, + 3959,1,0,0,0,3962,3963,5,400,0,0,3963,537,1,0,0,0,3964,3969,3,554, + 277,0,3965,3966,5,387,0,0,3966,3970,5,290,0,0,3967,3968,5,387,0, + 0,3968,3970,5,61,0,0,3969,3965,1,0,0,0,3969,3967,1,0,0,0,3969,3970, + 1,0,0,0,3970,3984,1,0,0,0,3971,3972,5,145,0,0,3972,3973,5,305,0, + 0,3973,3974,5,399,0,0,3974,3979,3,540,270,0,3975,3976,5,397,0,0, + 3976,3978,3,540,270,0,3977,3975,1,0,0,0,3978,3981,1,0,0,0,3979,3977, + 1,0,0,0,3979,3980,1,0,0,0,3980,3982,1,0,0,0,3981,3979,1,0,0,0,3982, + 3983,5,400,0,0,3983,3985,1,0,0,0,3984,3971,1,0,0,0,3984,3985,1,0, + 0,0,3985,539,1,0,0,0,3986,3988,5,399,0,0,3987,3989,3,596,298,0,3988, + 3987,1,0,0,0,3988,3989,1,0,0,0,3989,3994,1,0,0,0,3990,3991,5,397, + 0,0,3991,3993,3,596,298,0,3992,3990,1,0,0,0,3993,3996,1,0,0,0,3994, + 3992,1,0,0,0,3994,3995,1,0,0,0,3995,3997,1,0,0,0,3996,3994,1,0,0, + 0,3997,4000,5,400,0,0,3998,4000,3,596,298,0,3999,3986,1,0,0,0,3999, + 3998,1,0,0,0,4000,541,1,0,0,0,4001,4004,5,146,0,0,4002,4005,3,596, + 298,0,4003,4005,3,260,130,0,4004,4002,1,0,0,0,4004,4003,1,0,0,0, + 4005,543,1,0,0,0,4006,4007,5,256,0,0,4007,4008,3,596,298,0,4008, + 545,1,0,0,0,4009,4012,5,83,0,0,4010,4012,3,596,298,0,4011,4009,1, + 0,0,0,4011,4010,1,0,0,0,4012,547,1,0,0,0,4013,4015,3,596,298,0,4014, + 4016,5,17,0,0,4015,4014,1,0,0,0,4015,4016,1,0,0,0,4016,4018,1,0, + 0,0,4017,4019,3,654,327,0,4018,4017,1,0,0,0,4018,4019,1,0,0,0,4019, + 4030,1,0,0,0,4020,4021,5,397,0,0,4021,4023,3,596,298,0,4022,4024, + 5,17,0,0,4023,4022,1,0,0,0,4023,4024,1,0,0,0,4024,4026,1,0,0,0,4025, + 4027,3,654,327,0,4026,4025,1,0,0,0,4026,4027,1,0,0,0,4027,4029,1, + 0,0,0,4028,4020,1,0,0,0,4029,4032,1,0,0,0,4030,4028,1,0,0,0,4030, + 4031,1,0,0,0,4031,549,1,0,0,0,4032,4030,1,0,0,0,4033,4036,3,552, + 276,0,4034,4036,3,554,277,0,4035,4033,1,0,0,0,4035,4034,1,0,0,0, + 4036,551,1,0,0,0,4037,4038,5,399,0,0,4038,4039,3,554,277,0,4039, + 4040,5,400,0,0,4040,553,1,0,0,0,4041,4048,3,546,273,0,4042,4043, + 5,397,0,0,4043,4045,3,546,273,0,4044,4042,1,0,0,0,4045,4046,1,0, + 0,0,4046,4044,1,0,0,0,4046,4047,1,0,0,0,4047,4049,1,0,0,0,4048,4044, + 1,0,0,0,4048,4049,1,0,0,0,4049,555,1,0,0,0,4050,4051,5,229,0,0,4051, + 4052,5,32,0,0,4052,4057,3,312,156,0,4053,4054,5,397,0,0,4054,4056, + 3,312,156,0,4055,4053,1,0,0,0,4056,4059,1,0,0,0,4057,4055,1,0,0, + 0,4057,4058,1,0,0,0,4058,557,1,0,0,0,4059,4057,1,0,0,0,4060,4061, + 5,237,0,0,4061,4062,5,32,0,0,4062,4063,3,550,275,0,4063,559,1,0, + 0,0,4064,4065,5,41,0,0,4065,4066,5,32,0,0,4066,4067,3,550,275,0, + 4067,561,1,0,0,0,4068,4069,5,97,0,0,4069,4070,5,32,0,0,4070,4071, + 3,550,275,0,4071,563,1,0,0,0,4072,4073,5,314,0,0,4073,4093,5,32, + 0,0,4074,4075,5,399,0,0,4075,4080,3,312,156,0,4076,4077,5,397,0, + 0,4077,4079,3,312,156,0,4078,4076,1,0,0,0,4079,4082,1,0,0,0,4080, + 4078,1,0,0,0,4080,4081,1,0,0,0,4081,4083,1,0,0,0,4082,4080,1,0,0, + 0,4083,4084,5,400,0,0,4084,4094,1,0,0,0,4085,4090,3,312,156,0,4086, + 4087,5,397,0,0,4087,4089,3,312,156,0,4088,4086,1,0,0,0,4089,4092, + 1,0,0,0,4090,4088,1,0,0,0,4090,4091,1,0,0,0,4091,4094,1,0,0,0,4092, + 4090,1,0,0,0,4093,4074,1,0,0,0,4093,4085,1,0,0,0,4094,565,1,0,0, + 0,4095,4096,5,349,0,0,4096,4100,5,399,0,0,4097,4101,5,179,0,0,4098, + 4101,5,343,0,0,4099,4101,5,29,0,0,4100,4097,1,0,0,0,4100,4098,1, + 0,0,0,4100,4099,1,0,0,0,4100,4101,1,0,0,0,4101,4103,1,0,0,0,4102, + 4104,3,522,261,0,4103,4102,1,0,0,0,4103,4104,1,0,0,0,4104,4105,1, + 0,0,0,4105,4106,5,139,0,0,4106,4107,3,522,261,0,4107,4108,5,400, + 0,0,4108,4149,1,0,0,0,4109,4110,3,574,287,0,4110,4125,5,399,0,0, + 4111,4126,5,415,0,0,4112,4114,7,22,0,0,4113,4112,1,0,0,0,4113,4114, + 1,0,0,0,4114,4123,1,0,0,0,4115,4120,3,522,261,0,4116,4117,5,397, + 0,0,4117,4119,3,522,261,0,4118,4116,1,0,0,0,4119,4122,1,0,0,0,4120, + 4118,1,0,0,0,4120,4121,1,0,0,0,4121,4124,1,0,0,0,4122,4120,1,0,0, + 0,4123,4115,1,0,0,0,4123,4124,1,0,0,0,4124,4126,1,0,0,0,4125,4111, + 1,0,0,0,4125,4113,1,0,0,0,4126,4146,1,0,0,0,4127,4128,5,400,0,0, + 4128,4129,5,388,0,0,4129,4130,5,144,0,0,4130,4131,5,399,0,0,4131, + 4132,3,556,278,0,4132,4133,5,400,0,0,4133,4147,1,0,0,0,4134,4136, + 5,400,0,0,4135,4137,3,568,284,0,4136,4135,1,0,0,0,4136,4137,1,0, + 0,0,4137,4138,1,0,0,0,4138,4139,5,234,0,0,4139,4147,3,528,264,0, + 4140,4141,3,568,284,0,4141,4142,5,400,0,0,4142,4143,5,234,0,0,4143, + 4144,3,528,264,0,4144,4147,1,0,0,0,4145,4147,5,400,0,0,4146,4127, + 1,0,0,0,4146,4134,1,0,0,0,4146,4140,1,0,0,0,4146,4145,1,0,0,0,4147, + 4149,1,0,0,0,4148,4095,1,0,0,0,4148,4109,1,0,0,0,4149,567,1,0,0, + 0,4150,4151,7,35,0,0,4151,4152,5,220,0,0,4152,569,1,0,0,0,4153,4154, + 3,656,328,0,4154,571,1,0,0,0,4155,4158,3,656,328,0,4156,4158,5,426, + 0,0,4157,4155,1,0,0,0,4157,4156,1,0,0,0,4158,573,1,0,0,0,4159,4163, + 3,656,328,0,4160,4163,3,662,331,0,4161,4163,3,652,326,0,4162,4159, + 1,0,0,0,4162,4160,1,0,0,0,4162,4161,1,0,0,0,4163,575,1,0,0,0,4164, + 4165,5,36,0,0,4165,4166,5,399,0,0,4166,4167,3,596,298,0,4167,4168, + 5,17,0,0,4168,4171,3,352,176,0,4169,4170,5,137,0,0,4170,4172,5,426, + 0,0,4171,4169,1,0,0,0,4171,4172,1,0,0,0,4172,4173,1,0,0,0,4173,4174, + 5,400,0,0,4174,577,1,0,0,0,4175,4176,5,35,0,0,4176,4182,3,596,298, + 0,4177,4178,5,383,0,0,4178,4179,3,596,298,0,4179,4180,5,335,0,0, + 4180,4181,3,596,298,0,4181,4183,1,0,0,0,4182,4177,1,0,0,0,4183,4184, + 1,0,0,0,4184,4182,1,0,0,0,4184,4185,1,0,0,0,4185,4188,1,0,0,0,4186, + 4187,5,105,0,0,4187,4189,3,596,298,0,4188,4186,1,0,0,0,4188,4189, + 1,0,0,0,4189,4190,1,0,0,0,4190,4191,5,108,0,0,4191,579,1,0,0,0,4192, + 4198,5,35,0,0,4193,4194,5,383,0,0,4194,4195,3,596,298,0,4195,4196, + 5,335,0,0,4196,4197,3,596,298,0,4197,4199,1,0,0,0,4198,4193,1,0, + 0,0,4199,4200,1,0,0,0,4200,4198,1,0,0,0,4200,4201,1,0,0,0,4201,4204, + 1,0,0,0,4202,4203,5,105,0,0,4203,4205,3,596,298,0,4204,4202,1,0, + 0,0,4204,4205,1,0,0,0,4205,4206,1,0,0,0,4206,4207,5,108,0,0,4207, + 581,1,0,0,0,4208,4209,5,132,0,0,4209,4210,5,399,0,0,4210,4213,3, + 596,298,0,4211,4212,5,341,0,0,4212,4214,3,586,293,0,4213,4211,1, + 0,0,0,4213,4214,1,0,0,0,4214,4215,1,0,0,0,4215,4216,5,400,0,0,4216, + 583,1,0,0,0,4217,4218,5,124,0,0,4218,4219,5,399,0,0,4219,4220,3, + 586,293,0,4220,4221,5,139,0,0,4221,4222,3,596,298,0,4222,4223,5, + 400,0,0,4223,585,1,0,0,0,4224,4233,3,682,341,0,4225,4233,5,257,0, + 0,4226,4233,3,684,342,0,4227,4233,3,686,343,0,4228,4233,3,688,344, + 0,4229,4233,3,690,345,0,4230,4233,3,692,346,0,4231,4233,3,694,347, + 0,4232,4224,1,0,0,0,4232,4225,1,0,0,0,4232,4226,1,0,0,0,4232,4227, + 1,0,0,0,4232,4228,1,0,0,0,4232,4229,1,0,0,0,4232,4230,1,0,0,0,4232, + 4231,1,0,0,0,4233,587,1,0,0,0,4234,4235,3,590,295,0,4235,4236,3, + 594,297,0,4236,4263,1,0,0,0,4237,4263,5,431,0,0,4238,4239,5,71,0, + 0,4239,4263,5,426,0,0,4240,4263,5,63,0,0,4241,4242,5,337,0,0,4242, + 4263,5,426,0,0,4243,4263,5,64,0,0,4244,4245,5,338,0,0,4245,4263, + 5,426,0,0,4246,4250,5,426,0,0,4247,4249,5,426,0,0,4248,4247,1,0, + 0,0,4249,4252,1,0,0,0,4250,4248,1,0,0,0,4250,4251,1,0,0,0,4251,4263, + 1,0,0,0,4252,4250,1,0,0,0,4253,4263,5,428,0,0,4254,4263,5,429,0, + 0,4255,4256,5,433,0,0,4256,4263,5,427,0,0,4257,4263,5,350,0,0,4258, + 4263,5,125,0,0,4259,4263,5,219,0,0,4260,4263,5,424,0,0,4261,4263, + 3,258,129,0,4262,4234,1,0,0,0,4262,4237,1,0,0,0,4262,4238,1,0,0, + 0,4262,4240,1,0,0,0,4262,4241,1,0,0,0,4262,4243,1,0,0,0,4262,4244, + 1,0,0,0,4262,4246,1,0,0,0,4262,4253,1,0,0,0,4262,4254,1,0,0,0,4262, + 4255,1,0,0,0,4262,4257,1,0,0,0,4262,4258,1,0,0,0,4262,4259,1,0,0, + 0,4262,4260,1,0,0,0,4262,4261,1,0,0,0,4263,589,1,0,0,0,4264,4265, + 7,27,0,0,4265,591,1,0,0,0,4266,4267,5,399,0,0,4267,4268,3,590,295, + 0,4268,4269,5,400,0,0,4269,4270,3,594,297,0,4270,4282,1,0,0,0,4271, + 4277,5,165,0,0,4272,4278,3,590,295,0,4273,4274,5,399,0,0,4274,4275, + 3,596,298,0,4275,4276,5,400,0,0,4276,4278,1,0,0,0,4277,4272,1,0, + 0,0,4277,4273,1,0,0,0,4278,4279,1,0,0,0,4279,4280,3,594,297,0,4280, + 4282,1,0,0,0,4281,4266,1,0,0,0,4281,4271,1,0,0,0,4282,593,1,0,0, + 0,4283,4284,3,682,341,0,4284,4285,5,341,0,0,4285,4286,3,684,342, + 0,4286,4298,1,0,0,0,4287,4288,3,688,344,0,4288,4289,5,341,0,0,4289, + 4290,3,694,347,0,4290,4298,1,0,0,0,4291,4298,3,682,341,0,4292,4298, + 3,684,342,0,4293,4298,3,688,344,0,4294,4298,3,690,345,0,4295,4298, + 3,692,346,0,4296,4298,3,694,347,0,4297,4283,1,0,0,0,4297,4287,1, + 0,0,0,4297,4291,1,0,0,0,4297,4292,1,0,0,0,4297,4293,1,0,0,0,4297, + 4294,1,0,0,0,4297,4295,1,0,0,0,4297,4296,1,0,0,0,4298,595,1,0,0, + 0,4299,4304,3,638,319,0,4300,4301,5,228,0,0,4301,4303,3,638,319, + 0,4302,4300,1,0,0,0,4303,4306,1,0,0,0,4304,4302,1,0,0,0,4304,4305, + 1,0,0,0,4305,597,1,0,0,0,4306,4304,1,0,0,0,4307,4319,3,588,294,0, + 4308,4319,3,592,296,0,4309,4319,3,576,288,0,4310,4319,3,584,292, + 0,4311,4319,3,582,291,0,4312,4319,3,578,289,0,4313,4319,3,580,290, + 0,4314,4319,3,616,308,0,4315,4319,3,566,283,0,4316,4319,3,552,276, + 0,4317,4319,3,654,327,0,4318,4307,1,0,0,0,4318,4308,1,0,0,0,4318, + 4309,1,0,0,0,4318,4310,1,0,0,0,4318,4311,1,0,0,0,4318,4312,1,0,0, + 0,4318,4313,1,0,0,0,4318,4314,1,0,0,0,4318,4315,1,0,0,0,4318,4316, + 1,0,0,0,4318,4317,1,0,0,0,4319,599,1,0,0,0,4320,4322,7,36,0,0,4321, + 4320,1,0,0,0,4322,4325,1,0,0,0,4323,4321,1,0,0,0,4323,4324,1,0,0, + 0,4324,4326,1,0,0,0,4325,4323,1,0,0,0,4326,4335,3,598,299,0,4327, + 4328,5,401,0,0,4328,4329,3,596,298,0,4329,4330,5,402,0,0,4330,4334, + 1,0,0,0,4331,4332,5,395,0,0,4332,4334,3,654,327,0,4333,4327,1,0, + 0,0,4333,4331,1,0,0,0,4334,4337,1,0,0,0,4335,4333,1,0,0,0,4335,4336, + 1,0,0,0,4336,601,1,0,0,0,4337,4335,1,0,0,0,4338,4343,3,600,300,0, + 4339,4340,5,423,0,0,4340,4342,3,600,300,0,4341,4339,1,0,0,0,4342, + 4345,1,0,0,0,4343,4341,1,0,0,0,4343,4344,1,0,0,0,4344,603,1,0,0, + 0,4345,4343,1,0,0,0,4346,4351,3,602,301,0,4347,4348,7,37,0,0,4348, + 4350,3,602,301,0,4349,4347,1,0,0,0,4350,4353,1,0,0,0,4351,4349,1, + 0,0,0,4351,4352,1,0,0,0,4352,605,1,0,0,0,4353,4351,1,0,0,0,4354, + 4359,3,604,302,0,4355,4356,7,38,0,0,4356,4358,3,604,302,0,4357,4355, + 1,0,0,0,4358,4361,1,0,0,0,4359,4357,1,0,0,0,4359,4360,1,0,0,0,4360, + 607,1,0,0,0,4361,4359,1,0,0,0,4362,4367,3,606,303,0,4363,4364,5, + 422,0,0,4364,4366,3,606,303,0,4365,4363,1,0,0,0,4366,4369,1,0,0, + 0,4367,4365,1,0,0,0,4367,4368,1,0,0,0,4368,609,1,0,0,0,4369,4367, + 1,0,0,0,4370,4375,3,608,304,0,4371,4372,5,419,0,0,4372,4374,3,608, + 304,0,4373,4371,1,0,0,0,4374,4377,1,0,0,0,4375,4373,1,0,0,0,4375, + 4376,1,0,0,0,4376,611,1,0,0,0,4377,4375,1,0,0,0,4378,4383,3,610, + 305,0,4379,4380,5,421,0,0,4380,4382,3,610,305,0,4381,4379,1,0,0, + 0,4382,4385,1,0,0,0,4383,4381,1,0,0,0,4383,4384,1,0,0,0,4384,613, + 1,0,0,0,4385,4383,1,0,0,0,4386,4387,7,39,0,0,4387,615,1,0,0,0,4388, + 4389,5,399,0,0,4389,4390,3,380,190,0,4390,4391,5,400,0,0,4391,617, + 1,0,0,0,4392,4394,3,612,306,0,4393,4395,3,620,310,0,4394,4393,1, + 0,0,0,4394,4395,1,0,0,0,4395,4399,1,0,0,0,4396,4397,5,117,0,0,4397, + 4399,3,616,308,0,4398,4392,1,0,0,0,4398,4396,1,0,0,0,4399,619,1, + 0,0,0,4400,4401,3,614,307,0,4401,4402,3,612,306,0,4402,4407,1,0, + 0,0,4403,4407,3,622,311,0,4404,4405,5,216,0,0,4405,4407,3,626,313, + 0,4406,4400,1,0,0,0,4406,4403,1,0,0,0,4406,4404,1,0,0,0,4407,621, + 1,0,0,0,4408,4409,5,154,0,0,4409,4423,3,624,312,0,4410,4411,5,25, + 0,0,4411,4412,3,612,306,0,4412,4413,5,11,0,0,4413,4414,3,612,306, + 0,4414,4423,1,0,0,0,4415,4416,5,184,0,0,4416,4417,7,40,0,0,4417, + 4423,3,552,276,0,4418,4419,3,650,325,0,4419,4420,7,41,0,0,4420,4421, + 3,616,308,0,4421,4423,1,0,0,0,4422,4408,1,0,0,0,4422,4410,1,0,0, + 0,4422,4415,1,0,0,0,4422,4418,1,0,0,0,4423,623,1,0,0,0,4424,4427, + 3,616,308,0,4425,4427,3,552,276,0,4426,4424,1,0,0,0,4426,4425,1, + 0,0,0,4427,625,1,0,0,0,4428,4429,7,42,0,0,4429,4432,3,612,306,0, + 4430,4432,3,622,311,0,4431,4428,1,0,0,0,4431,4430,1,0,0,0,4432,627, + 1,0,0,0,4433,4434,5,167,0,0,4434,4435,5,96,0,0,4435,4436,5,139,0, + 0,4436,629,1,0,0,0,4437,4445,5,405,0,0,4438,4445,5,406,0,0,4439, + 4445,5,407,0,0,4440,4441,5,167,0,0,4441,4442,5,216,0,0,4442,4443, + 5,96,0,0,4443,4445,5,139,0,0,4444,4437,1,0,0,0,4444,4438,1,0,0,0, + 4444,4439,1,0,0,0,4444,4440,1,0,0,0,4445,631,1,0,0,0,4446,4455,3, + 618,309,0,4447,4448,3,630,315,0,4448,4449,3,618,309,0,4449,4454, + 1,0,0,0,4450,4451,3,628,314,0,4451,4452,3,618,309,0,4452,4454,1, + 0,0,0,4453,4447,1,0,0,0,4453,4450,1,0,0,0,4454,4457,1,0,0,0,4455, + 4453,1,0,0,0,4455,4456,1,0,0,0,4456,633,1,0,0,0,4457,4455,1,0,0, + 0,4458,4465,5,219,0,0,4459,4465,5,350,0,0,4460,4465,5,125,0,0,4461, + 4465,5,360,0,0,4462,4463,5,216,0,0,4463,4465,7,43,0,0,4464,4458, + 1,0,0,0,4464,4459,1,0,0,0,4464,4460,1,0,0,0,4464,4461,1,0,0,0,4464, + 4462,1,0,0,0,4465,635,1,0,0,0,4466,4468,5,216,0,0,4467,4466,1,0, + 0,0,4468,4471,1,0,0,0,4469,4467,1,0,0,0,4469,4470,1,0,0,0,4470,4472, + 1,0,0,0,4471,4469,1,0,0,0,4472,4475,3,632,316,0,4473,4474,5,167, + 0,0,4474,4476,3,634,317,0,4475,4473,1,0,0,0,4475,4476,1,0,0,0,4476, + 637,1,0,0,0,4477,4482,3,636,318,0,4478,4479,5,11,0,0,4479,4481,3, + 636,318,0,4480,4478,1,0,0,0,4481,4484,1,0,0,0,4482,4480,1,0,0,0, + 4482,4483,1,0,0,0,4483,639,1,0,0,0,4484,4482,1,0,0,0,4485,4487,3, + 482,241,0,4486,4488,3,642,321,0,4487,4486,1,0,0,0,4487,4488,1,0, + 0,0,4488,641,1,0,0,0,4489,4490,5,237,0,0,4490,4491,5,399,0,0,4491, + 4496,3,644,322,0,4492,4493,5,397,0,0,4493,4495,3,644,322,0,4494, + 4492,1,0,0,0,4495,4498,1,0,0,0,4496,4494,1,0,0,0,4496,4497,1,0,0, + 0,4497,4499,1,0,0,0,4498,4496,1,0,0,0,4499,4500,5,400,0,0,4500,643, + 1,0,0,0,4501,4504,3,654,327,0,4502,4503,5,405,0,0,4503,4505,3,588, + 294,0,4504,4502,1,0,0,0,4504,4505,1,0,0,0,4505,645,1,0,0,0,4506, + 4507,5,399,0,0,4507,4512,3,648,324,0,4508,4509,5,397,0,0,4509,4511, + 3,648,324,0,4510,4508,1,0,0,0,4511,4514,1,0,0,0,4512,4510,1,0,0, + 0,4512,4513,1,0,0,0,4513,4515,1,0,0,0,4514,4512,1,0,0,0,4515,4516, + 5,400,0,0,4516,647,1,0,0,0,4517,4520,3,654,327,0,4518,4521,5,184, + 0,0,4519,4521,3,650,325,0,4520,4518,1,0,0,0,4520,4519,1,0,0,0,4521, + 4522,1,0,0,0,4522,4523,3,588,294,0,4523,649,1,0,0,0,4524,4525,7, + 44,0,0,4525,651,1,0,0,0,4526,4527,7,45,0,0,4527,653,1,0,0,0,4528, + 4531,5,432,0,0,4529,4531,3,660,330,0,4530,4528,1,0,0,0,4530,4529, + 1,0,0,0,4531,655,1,0,0,0,4532,4535,3,654,327,0,4533,4534,5,395,0, + 0,4534,4536,3,654,327,0,4535,4533,1,0,0,0,4535,4536,1,0,0,0,4536, + 657,1,0,0,0,4537,4538,3,654,327,0,4538,659,1,0,0,0,4539,4540,7,46, + 0,0,4540,661,1,0,0,0,4541,4542,7,47,0,0,4542,663,1,0,0,0,4543,4595, + 3,654,327,0,4544,4595,5,299,0,0,4545,4595,5,171,0,0,4546,4595,5, + 237,0,0,4547,4595,5,198,0,0,4548,4595,5,268,0,0,4549,4595,5,369, + 0,0,4550,4595,5,241,0,0,4551,4595,5,165,0,0,4552,4595,5,292,0,0, + 4553,4595,5,356,0,0,4554,4595,5,144,0,0,4555,4595,5,203,0,0,4556, + 4595,5,219,0,0,4557,4595,5,126,0,0,4558,4595,5,188,0,0,4559,4595, + 5,101,0,0,4560,4595,5,329,0,0,4561,4595,5,224,0,0,4562,4595,5,291, + 0,0,4563,4595,5,145,0,0,4564,4595,5,304,0,0,4565,4595,5,135,0,0, + 4566,4595,5,318,0,0,4567,4595,5,161,0,0,4568,4595,5,54,0,0,4569, + 4595,5,166,0,0,4570,4595,5,358,0,0,4571,4595,5,45,0,0,4572,4595, + 5,347,0,0,4573,4595,5,96,0,0,4574,4595,5,154,0,0,4575,4595,5,269, + 0,0,4576,4595,5,337,0,0,4577,4595,5,225,0,0,4578,4595,5,108,0,0, + 4579,4595,5,141,0,0,4580,4595,5,365,0,0,4581,4595,5,21,0,0,4582, + 4595,5,78,0,0,4583,4595,5,374,0,0,4584,4595,5,336,0,0,4585,4595, + 5,167,0,0,4586,4595,5,134,0,0,4587,4595,5,216,0,0,4588,4595,5,27, + 0,0,4589,4595,5,370,0,0,4590,4595,5,263,0,0,4591,4595,5,25,0,0,4592, + 4595,5,62,0,0,4593,4595,5,17,0,0,4594,4543,1,0,0,0,4594,4544,1,0, + 0,0,4594,4545,1,0,0,0,4594,4546,1,0,0,0,4594,4547,1,0,0,0,4594,4548, + 1,0,0,0,4594,4549,1,0,0,0,4594,4550,1,0,0,0,4594,4551,1,0,0,0,4594, + 4552,1,0,0,0,4594,4553,1,0,0,0,4594,4554,1,0,0,0,4594,4555,1,0,0, + 0,4594,4556,1,0,0,0,4594,4557,1,0,0,0,4594,4558,1,0,0,0,4594,4559, + 1,0,0,0,4594,4560,1,0,0,0,4594,4561,1,0,0,0,4594,4562,1,0,0,0,4594, + 4563,1,0,0,0,4594,4564,1,0,0,0,4594,4565,1,0,0,0,4594,4566,1,0,0, + 0,4594,4567,1,0,0,0,4594,4568,1,0,0,0,4594,4569,1,0,0,0,4594,4570, + 1,0,0,0,4594,4571,1,0,0,0,4594,4572,1,0,0,0,4594,4573,1,0,0,0,4594, + 4574,1,0,0,0,4594,4575,1,0,0,0,4594,4576,1,0,0,0,4594,4577,1,0,0, + 0,4594,4578,1,0,0,0,4594,4579,1,0,0,0,4594,4580,1,0,0,0,4594,4581, + 1,0,0,0,4594,4582,1,0,0,0,4594,4583,1,0,0,0,4594,4584,1,0,0,0,4594, + 4585,1,0,0,0,4594,4586,1,0,0,0,4594,4587,1,0,0,0,4594,4588,1,0,0, + 0,4594,4589,1,0,0,0,4594,4590,1,0,0,0,4594,4591,1,0,0,0,4594,4592, + 1,0,0,0,4594,4593,1,0,0,0,4595,665,1,0,0,0,4596,4597,5,58,0,0,4597, + 4598,5,280,0,0,4598,4600,5,243,0,0,4599,4601,3,32,16,0,4600,4599, + 1,0,0,0,4600,4601,1,0,0,0,4601,4611,1,0,0,0,4602,4603,3,654,327, + 0,4603,4604,5,184,0,0,4604,4605,3,654,327,0,4605,4612,1,0,0,0,4606, + 4609,3,654,327,0,4607,4608,5,387,0,0,4608,4610,3,672,336,0,4609, + 4607,1,0,0,0,4609,4610,1,0,0,0,4610,4612,1,0,0,0,4611,4602,1,0,0, + 0,4611,4606,1,0,0,0,4612,4762,1,0,0,0,4613,4614,5,9,0,0,4614,4615, + 5,280,0,0,4615,4616,5,243,0,0,4616,4641,3,654,327,0,4617,4642,5, + 373,0,0,4618,4642,3,680,340,0,4619,4620,5,304,0,0,4620,4642,3,672, + 336,0,4621,4622,5,363,0,0,4622,4627,3,674,337,0,4623,4624,5,397, + 0,0,4624,4626,3,674,337,0,4625,4623,1,0,0,0,4626,4629,1,0,0,0,4627, + 4625,1,0,0,0,4627,4628,1,0,0,0,4628,4642,1,0,0,0,4629,4627,1,0,0, + 0,4630,4631,5,274,0,0,4631,4632,5,341,0,0,4632,4642,3,654,327,0, + 4633,4635,3,676,338,0,4634,4636,3,678,339,0,4635,4634,1,0,0,0,4635, + 4636,1,0,0,0,4636,4642,1,0,0,0,4637,4639,3,678,339,0,4638,4640,3, + 676,338,0,4639,4638,1,0,0,0,4639,4640,1,0,0,0,4640,4642,1,0,0,0, + 4641,4617,1,0,0,0,4641,4618,1,0,0,0,4641,4619,1,0,0,0,4641,4621, + 1,0,0,0,4641,4630,1,0,0,0,4641,4633,1,0,0,0,4641,4637,1,0,0,0,4642, + 4762,1,0,0,0,4643,4644,5,101,0,0,4644,4645,5,280,0,0,4645,4647,5, + 243,0,0,4646,4648,3,30,15,0,4647,4646,1,0,0,0,4647,4648,1,0,0,0, + 4648,4649,1,0,0,0,4649,4762,3,654,327,0,4650,4653,3,678,339,0,4651, + 4653,3,680,340,0,4652,4650,1,0,0,0,4652,4651,1,0,0,0,4653,4654,1, + 0,0,0,4654,4655,5,390,0,0,4655,4656,5,197,0,0,4656,4762,1,0,0,0, + 4657,4669,5,278,0,0,4658,4659,5,3,0,0,4659,4660,5,280,0,0,4660,4661, + 5,243,0,0,4661,4662,5,387,0,0,4662,4670,3,654,327,0,4663,4664,5, + 280,0,0,4664,4665,5,243,0,0,4665,4666,3,654,327,0,4666,4667,5,387, + 0,0,4667,4668,3,654,327,0,4668,4670,1,0,0,0,4669,4658,1,0,0,0,4669, + 4663,1,0,0,0,4670,4762,1,0,0,0,4671,4672,5,58,0,0,4672,4673,5,348, + 0,0,4673,4674,3,654,327,0,4674,4675,5,395,0,0,4675,4676,3,654,327, + 0,4676,4677,5,383,0,0,4677,4678,3,704,352,0,4678,4679,5,99,0,0,4679, + 4680,3,706,353,0,4680,4762,1,0,0,0,4681,4682,5,9,0,0,4682,4683,5, + 348,0,0,4683,4684,3,654,327,0,4684,4685,5,395,0,0,4685,4702,3,654, + 327,0,4686,4687,5,383,0,0,4687,4688,3,704,352,0,4688,4689,5,99,0, + 0,4689,4690,3,706,353,0,4690,4703,1,0,0,0,4691,4692,5,4,0,0,4692, + 4696,5,341,0,0,4693,4694,5,101,0,0,4694,4696,5,139,0,0,4695,4691, + 1,0,0,0,4695,4693,1,0,0,0,4696,4700,1,0,0,0,4697,4698,5,246,0,0, + 4698,4701,3,700,350,0,4699,4701,5,362,0,0,4700,4697,1,0,0,0,4700, + 4699,1,0,0,0,4701,4703,1,0,0,0,4702,4686,1,0,0,0,4702,4695,1,0,0, + 0,4703,4762,1,0,0,0,4704,4705,5,101,0,0,4705,4706,5,348,0,0,4706, + 4707,3,654,327,0,4707,4708,5,395,0,0,4708,4709,3,654,327,0,4709, + 4762,1,0,0,0,4710,4711,5,58,0,0,4711,4712,5,246,0,0,4712,4713,3, + 654,327,0,4713,4714,5,395,0,0,4714,4715,3,700,350,0,4715,4716,5, + 387,0,0,4716,4717,3,710,355,0,4717,4762,1,0,0,0,4718,4719,5,9,0, + 0,4719,4720,5,246,0,0,4720,4721,3,654,327,0,4721,4722,5,395,0,0, + 4722,4730,3,700,350,0,4723,4724,5,304,0,0,4724,4731,3,710,355,0, + 4725,4726,5,363,0,0,4726,4731,5,294,0,0,4727,4728,7,48,0,0,4728, + 4729,5,348,0,0,4729,4731,3,654,327,0,4730,4723,1,0,0,0,4730,4725, + 1,0,0,0,4730,4727,1,0,0,0,4731,4762,1,0,0,0,4732,4733,5,101,0,0, + 4733,4734,5,246,0,0,4734,4735,3,654,327,0,4735,4736,5,395,0,0,4736, + 4737,3,700,350,0,4737,4762,1,0,0,0,4738,4739,7,49,0,0,4739,4740, + 3,668,334,0,4740,4741,5,200,0,0,4741,4742,5,426,0,0,4742,4743,5, + 154,0,0,4743,4747,3,654,327,0,4744,4745,5,341,0,0,4745,4748,3,700, + 350,0,4746,4748,5,362,0,0,4747,4744,1,0,0,0,4747,4746,1,0,0,0,4748, + 4752,1,0,0,0,4749,4750,5,387,0,0,4750,4751,5,229,0,0,4751,4753,5, + 431,0,0,4752,4749,1,0,0,0,4752,4753,1,0,0,0,4753,4762,1,0,0,0,4754, + 4755,5,101,0,0,4755,4756,3,668,334,0,4756,4757,5,200,0,0,4757,4758, + 5,426,0,0,4758,4759,5,154,0,0,4759,4760,3,654,327,0,4760,4762,1, + 0,0,0,4761,4596,1,0,0,0,4761,4613,1,0,0,0,4761,4643,1,0,0,0,4761, + 4652,1,0,0,0,4761,4657,1,0,0,0,4761,4671,1,0,0,0,4761,4681,1,0,0, + 0,4761,4704,1,0,0,0,4761,4710,1,0,0,0,4761,4718,1,0,0,0,4761,4732, + 1,0,0,0,4761,4738,1,0,0,0,4761,4754,1,0,0,0,4762,667,1,0,0,0,4763, + 4764,7,50,0,0,4764,669,1,0,0,0,4765,4766,5,259,0,0,4766,4767,5,405, + 0,0,4767,4773,5,431,0,0,4768,4769,5,83,0,0,4769,4770,5,246,0,0,4770, + 4771,5,405,0,0,4771,4773,3,700,350,0,4772,4765,1,0,0,0,4772,4768, + 1,0,0,0,4773,671,1,0,0,0,4774,4779,3,670,335,0,4775,4776,5,397,0, + 0,4776,4778,3,670,335,0,4777,4775,1,0,0,0,4778,4781,1,0,0,0,4779, + 4777,1,0,0,0,4779,4780,1,0,0,0,4780,673,1,0,0,0,4781,4779,1,0,0, + 0,4782,4786,5,259,0,0,4783,4784,5,83,0,0,4784,4786,5,246,0,0,4785, + 4782,1,0,0,0,4785,4783,1,0,0,0,4786,675,1,0,0,0,4787,4790,5,2,0, + 0,4788,4789,5,387,0,0,4789,4791,5,278,0,0,4790,4788,1,0,0,0,4790, + 4791,1,0,0,0,4791,677,1,0,0,0,4792,4793,7,51,0,0,4793,679,1,0,0, + 0,4794,4795,7,52,0,0,4795,681,1,0,0,0,4796,4797,7,53,0,0,4797,683, + 1,0,0,0,4798,4799,7,54,0,0,4799,685,1,0,0,0,4800,4801,7,55,0,0,4801, + 687,1,0,0,0,4802,4803,7,56,0,0,4803,689,1,0,0,0,4804,4805,7,57,0, + 0,4805,691,1,0,0,0,4806,4807,7,58,0,0,4807,693,1,0,0,0,4808,4809, + 7,59,0,0,4809,695,1,0,0,0,4810,4811,7,60,0,0,4811,697,1,0,0,0,4812, + 4813,1,0,0,0,4813,699,1,0,0,0,4814,4819,3,654,327,0,4815,4816,5, + 395,0,0,4816,4818,3,654,327,0,4817,4815,1,0,0,0,4818,4821,1,0,0, + 0,4819,4817,1,0,0,0,4819,4820,1,0,0,0,4820,701,1,0,0,0,4821,4819, + 1,0,0,0,4822,4827,3,654,327,0,4823,4824,5,395,0,0,4824,4826,3,654, + 327,0,4825,4823,1,0,0,0,4826,4829,1,0,0,0,4827,4825,1,0,0,0,4827, + 4828,1,0,0,0,4828,4840,1,0,0,0,4829,4827,1,0,0,0,4830,4831,4,351, + 3,0,4831,4836,3,654,327,0,4832,4833,5,395,0,0,4833,4835,3,698,349, + 0,4834,4832,1,0,0,0,4835,4838,1,0,0,0,4836,4834,1,0,0,0,4836,4837, + 1,0,0,0,4837,4840,1,0,0,0,4838,4836,1,0,0,0,4839,4822,1,0,0,0,4839, + 4830,1,0,0,0,4840,703,1,0,0,0,4841,4842,3,654,327,0,4842,4843,5, + 411,0,0,4843,4844,7,27,0,0,4844,705,1,0,0,0,4845,4850,5,176,0,0, + 4846,4847,5,211,0,0,4847,4848,5,341,0,0,4848,4850,3,700,350,0,4849, + 4845,1,0,0,0,4849,4846,1,0,0,0,4850,707,1,0,0,0,4851,4852,5,8,0, + 0,4852,4853,5,405,0,0,4853,4864,5,431,0,0,4854,4855,5,259,0,0,4855, + 4856,5,405,0,0,4856,4864,5,431,0,0,4857,4858,5,294,0,0,4858,4859, + 5,405,0,0,4859,4864,5,426,0,0,4860,4861,5,240,0,0,4861,4862,5,405, + 0,0,4862,4864,3,700,350,0,4863,4851,1,0,0,0,4863,4854,1,0,0,0,4863, + 4857,1,0,0,0,4863,4860,1,0,0,0,4864,709,1,0,0,0,4865,4870,3,708, + 354,0,4866,4867,5,397,0,0,4867,4869,3,708,354,0,4868,4866,1,0,0, + 0,4869,4872,1,0,0,0,4870,4868,1,0,0,0,4870,4871,1,0,0,0,4871,711, + 1,0,0,0,4872,4870,1,0,0,0,629,715,722,725,731,737,744,754,757,761, 776,783,789,794,799,802,826,833,836,841,846,852,856,869,873,877, 882,889,893,898,905,909,914,962,969,974,997,1001,1005,1008,1012, 1017,1023,1027,1033,1035,1046,1050,1057,1065,1068,1073,1077,1080, @@ -28316,16 +28337,16 @@ export class HiveSqlParser extends SQLParserBase { 3607,3610,3613,3616,3628,3636,3643,3646,3653,3656,3661,3668,3676, 3682,3687,3691,3696,3700,3707,3721,3724,3731,3739,3749,3752,3761, 3770,3773,3779,3782,3787,3790,3803,3809,3811,3821,3827,3830,3840, - 3845,3847,3863,3869,3871,3878,3885,3899,3905,3908,3911,3914,3923, - 3930,3936,3945,3949,3957,3967,3977,3982,3986,3992,3997,4002,4009, - 4013,4016,4021,4024,4028,4033,4044,4046,4055,4078,4088,4091,4098, - 4101,4111,4118,4121,4123,4134,4144,4146,4155,4160,4169,4182,4186, - 4198,4202,4211,4230,4248,4260,4275,4279,4295,4302,4316,4321,4331, - 4333,4341,4349,4357,4365,4373,4381,4392,4396,4404,4420,4424,4429, - 4442,4451,4453,4462,4467,4473,4480,4485,4494,4502,4510,4518,4528, - 4533,4592,4598,4607,4609,4625,4633,4637,4639,4645,4650,4667,4693, - 4698,4700,4728,4745,4750,4759,4770,4777,4783,4788,4817,4825,4834, - 4837,4847,4861,4868 + 3845,3849,3865,3871,3873,3880,3887,3901,3907,3910,3913,3916,3925, + 3932,3938,3947,3951,3959,3969,3979,3984,3988,3994,3999,4004,4011, + 4015,4018,4023,4026,4030,4035,4046,4048,4057,4080,4090,4093,4100, + 4103,4113,4120,4123,4125,4136,4146,4148,4157,4162,4171,4184,4188, + 4200,4204,4213,4232,4250,4262,4277,4281,4297,4304,4318,4323,4333, + 4335,4343,4351,4359,4367,4375,4383,4394,4398,4406,4422,4426,4431, + 4444,4453,4455,4464,4469,4475,4482,4487,4496,4504,4512,4520,4530, + 4535,4594,4600,4609,4611,4627,4635,4639,4641,4647,4652,4669,4695, + 4700,4702,4730,4747,4752,4761,4772,4779,4785,4790,4819,4827,4836, + 4839,4849,4863,4870 ]; private static __ATN: antlr.ATN; @@ -40988,6 +41009,9 @@ export class SelectItemContext extends antlr.ParserRuleContext { return this.getToken(HiveSqlParser.COMMA, i); } } + public emptyColumn(): EmptyColumnContext | null { + return this.getRuleContext(0, EmptyColumnContext); + } public override get ruleIndex(): number { return HiveSqlParser.RULE_selectItem; } diff --git a/src/lib/impala/ImpalaSqlParser.interp b/src/lib/impala/ImpalaSqlParser.interp index 0e6af396e..1f50007c9 100644 --- a/src/lib/impala/ImpalaSqlParser.interp +++ b/src/lib/impala/ImpalaSqlParser.interp @@ -785,4 +785,4 @@ nonReserved atn: -[4, 1, 289, 2853, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 1, 0, 5, 0, 400, 8, 0, 10, 0, 12, 0, 403, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 409, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 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, 433, 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, 446, 8, 4, 1, 5, 1, 5, 3, 5, 450, 8, 5, 1, 5, 1, 5, 3, 5, 454, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 461, 8, 5, 10, 5, 12, 5, 464, 9, 5, 1, 5, 1, 5, 3, 5, 468, 8, 5, 1, 5, 1, 5, 3, 5, 472, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 478, 8, 5, 3, 5, 480, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 485, 8, 5, 1, 6, 1, 6, 3, 6, 489, 8, 6, 1, 6, 1, 6, 3, 6, 493, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 500, 8, 6, 1, 6, 1, 6, 1, 6, 3, 6, 505, 8, 6, 1, 6, 1, 6, 1, 7, 1, 7, 3, 7, 511, 8, 7, 1, 7, 1, 7, 3, 7, 515, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 5, 7, 522, 8, 7, 10, 7, 12, 7, 525, 9, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 531, 8, 7, 1, 7, 1, 7, 3, 7, 535, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 540, 8, 7, 3, 7, 542, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 547, 8, 7, 1, 7, 3, 7, 550, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 557, 8, 7, 1, 7, 1, 7, 3, 7, 561, 8, 7, 1, 8, 1, 8, 1, 8, 3, 8, 566, 8, 8, 1, 8, 1, 8, 3, 8, 570, 8, 8, 1, 8, 3, 8, 573, 8, 8, 1, 8, 1, 8, 3, 8, 577, 8, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 3, 9, 585, 8, 9, 1, 9, 1, 9, 3, 9, 589, 8, 9, 1, 9, 1, 9, 3, 9, 593, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 3, 11, 601, 8, 11, 1, 11, 1, 11, 3, 11, 605, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 612, 8, 11, 10, 11, 12, 11, 615, 9, 11, 3, 11, 617, 8, 11, 1, 11, 3, 11, 620, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 626, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 633, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 644, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 649, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 654, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 659, 8, 11, 1, 12, 1, 12, 1, 12, 3, 12, 664, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 5, 12, 671, 8, 12, 10, 12, 12, 12, 674, 9, 12, 3, 12, 676, 8, 12, 1, 12, 3, 12, 679, 8, 12, 1, 12, 1, 12, 3, 12, 683, 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, 709, 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, 735, 8, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 744, 8, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 754, 8, 16, 1, 16, 3, 16, 757, 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, 771, 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, 789, 8, 20, 3, 20, 791, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 798, 8, 20, 10, 20, 12, 20, 801, 9, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 811, 8, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 820, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 827, 8, 22, 1, 22, 1, 22, 3, 22, 831, 8, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 838, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 844, 8, 23, 1, 23, 3, 23, 847, 8, 23, 1, 23, 1, 23, 1, 23, 3, 23, 852, 8, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 859, 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, 873, 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, 886, 8, 26, 1, 26, 1, 26, 1, 26, 3, 26, 891, 8, 26, 1, 26, 1, 26, 1, 26, 3, 26, 896, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 902, 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, 938, 8, 32, 1, 32, 3, 32, 941, 8, 32, 1, 32, 1, 32, 1, 33, 1, 33, 3, 33, 947, 8, 33, 1, 33, 3, 33, 950, 8, 33, 1, 33, 1, 33, 1, 34, 1, 34, 3, 34, 956, 8, 34, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 962, 8, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 974, 8, 35, 3, 35, 976, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 987, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 995, 8, 37, 1, 38, 1, 38, 1, 38, 3, 38, 1000, 8, 38, 1, 38, 1, 38, 3, 38, 1004, 8, 38, 1, 39, 1, 39, 1, 39, 3, 39, 1009, 8, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 3, 40, 1016, 8, 40, 1, 40, 1, 40, 3, 40, 1020, 8, 40, 1, 41, 1, 41, 3, 41, 1024, 8, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1030, 8, 41, 1, 42, 1, 42, 3, 42, 1034, 8, 42, 1, 42, 1, 42, 3, 42, 1038, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 5, 42, 1045, 8, 42, 10, 42, 12, 42, 1048, 9, 42, 3, 42, 1050, 8, 42, 1, 42, 3, 42, 1053, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 3, 44, 1061, 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, 1075, 8, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 3, 47, 1082, 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, 1095, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1101, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1106, 8, 49, 1, 49, 3, 49, 1109, 8, 49, 1, 50, 3, 50, 1112, 8, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1117, 8, 50, 1, 50, 1, 50, 3, 50, 1121, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1128, 8, 50, 10, 50, 12, 50, 1131, 9, 50, 1, 50, 1, 50, 3, 50, 1135, 8, 50, 1, 50, 1, 50, 1, 51, 1, 51, 3, 51, 1141, 8, 51, 1, 52, 1, 52, 3, 52, 1145, 8, 52, 1, 52, 1, 52, 3, 52, 1149, 8, 52, 1, 53, 1, 53, 1, 53, 3, 53, 1154, 8, 53, 1, 53, 3, 53, 1157, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 1163, 8, 53, 10, 53, 12, 53, 1166, 9, 53, 3, 53, 1168, 8, 53, 1, 53, 3, 53, 1171, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 1181, 8, 54, 10, 54, 12, 54, 1184, 9, 54, 3, 54, 1186, 8, 54, 1, 54, 3, 54, 1189, 8, 54, 1, 55, 1, 55, 1, 55, 3, 55, 1194, 8, 55, 1, 55, 1, 55, 3, 55, 1198, 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, 1214, 8, 56, 1, 57, 1, 57, 1, 57, 3, 57, 1219, 8, 57, 1, 57, 1, 57, 1, 57, 5, 57, 1224, 8, 57, 10, 57, 12, 57, 1227, 9, 57, 3, 57, 1229, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1235, 8, 58, 1, 58, 3, 58, 1238, 8, 58, 1, 58, 1, 58, 1, 58, 5, 58, 1243, 8, 58, 10, 58, 12, 58, 1246, 9, 58, 3, 58, 1248, 8, 58, 1, 59, 1, 59, 3, 59, 1252, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1257, 8, 59, 1, 59, 3, 59, 1260, 8, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1265, 8, 59, 10, 59, 12, 59, 1268, 9, 59, 3, 59, 1270, 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, 1294, 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, 1308, 8, 65, 1, 65, 1, 65, 3, 65, 1312, 8, 65, 1, 66, 1, 66, 3, 66, 1316, 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, 1336, 8, 68, 3, 68, 1338, 8, 68, 3, 68, 1340, 8, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 1349, 8, 69, 3, 69, 1351, 8, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 1360, 8, 70, 3, 70, 1362, 8, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1371, 8, 71, 3, 71, 1373, 8, 71, 1, 72, 1, 72, 1, 72, 3, 72, 1378, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1387, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 1396, 8, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 1405, 8, 75, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 1416, 8, 77, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1422, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1427, 8, 78, 1, 78, 3, 78, 1430, 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, 1443, 8, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1453, 8, 80, 1, 80, 1, 80, 3, 80, 1457, 8, 80, 1, 81, 1, 81, 1, 81, 3, 81, 1462, 8, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 1471, 8, 82, 10, 82, 12, 82, 1474, 9, 82, 1, 82, 1, 82, 3, 82, 1478, 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, 1509, 8, 93, 10, 93, 12, 93, 1512, 9, 93, 1, 94, 1, 94, 1, 94, 5, 94, 1517, 8, 94, 10, 94, 12, 94, 1520, 9, 94, 1, 95, 1, 95, 3, 95, 1524, 8, 95, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 3, 97, 1531, 8, 97, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 3, 99, 1538, 8, 99, 1, 100, 1, 100, 3, 100, 1542, 8, 100, 1, 101, 1, 101, 1, 101, 3, 101, 1547, 8, 101, 1, 101, 3, 101, 1550, 8, 101, 1, 101, 1, 101, 1, 101, 3, 101, 1555, 8, 101, 1, 101, 1, 101, 1, 101, 3, 101, 1560, 8, 101, 1, 101, 1, 101, 1, 101, 3, 101, 1565, 8, 101, 1, 101, 1, 101, 3, 101, 1569, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 1578, 8, 101, 1, 101, 3, 101, 1581, 8, 101, 1, 101, 1, 101, 3, 101, 1585, 8, 101, 1, 102, 1, 102, 1, 102, 5, 102, 1590, 8, 102, 10, 102, 12, 102, 1593, 9, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 3, 104, 1601, 8, 104, 1, 104, 1, 104, 3, 104, 1605, 8, 104, 5, 104, 1607, 8, 104, 10, 104, 12, 104, 1610, 9, 104, 1, 104, 1, 104, 1, 105, 1, 105, 3, 105, 1616, 8, 105, 1, 106, 3, 106, 1619, 8, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 107, 5, 107, 1627, 8, 107, 10, 107, 12, 107, 1630, 9, 107, 1, 108, 1, 108, 1, 108, 1, 108, 3, 108, 1636, 8, 108, 1, 108, 1, 108, 1, 108, 3, 108, 1641, 8, 108, 1, 108, 1, 108, 1, 108, 3, 108, 1646, 8, 108, 1, 108, 1, 108, 1, 108, 3, 108, 1651, 8, 108, 1, 108, 1, 108, 5, 108, 1655, 8, 108, 10, 108, 12, 108, 1658, 9, 108, 3, 108, 1660, 8, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 1669, 8, 109, 1, 109, 3, 109, 1672, 8, 109, 1, 109, 3, 109, 1675, 8, 109, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 1681, 8, 110, 1, 111, 1, 111, 1, 111, 3, 111, 1686, 8, 111, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 5, 113, 1694, 8, 113, 10, 113, 12, 113, 1697, 9, 113, 3, 113, 1699, 8, 113, 1, 113, 3, 113, 1702, 8, 113, 1, 113, 1, 113, 3, 113, 1706, 8, 113, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 5, 115, 1714, 8, 115, 10, 115, 12, 115, 1717, 9, 115, 3, 115, 1719, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 3, 116, 1725, 8, 116, 1, 116, 1, 116, 5, 116, 1729, 8, 116, 10, 116, 12, 116, 1732, 9, 116, 3, 116, 1734, 8, 116, 1, 117, 3, 117, 1737, 8, 117, 1, 117, 1, 117, 3, 117, 1741, 8, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 1751, 8, 118, 1, 119, 1, 119, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 5, 121, 1760, 8, 121, 10, 121, 12, 121, 1763, 9, 121, 1, 121, 1, 121, 3, 121, 1767, 8, 121, 1, 121, 3, 121, 1770, 8, 121, 1, 122, 1, 122, 3, 122, 1774, 8, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 3, 123, 1781, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 5, 123, 1789, 8, 123, 10, 123, 12, 123, 1792, 9, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 1803, 8, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 1809, 8, 124, 3, 124, 1811, 8, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 1820, 8, 125, 1, 125, 3, 125, 1823, 8, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 3, 126, 1830, 8, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 3, 127, 1840, 8, 127, 1, 128, 1, 128, 1, 128, 1, 128, 3, 128, 1846, 8, 128, 1, 129, 1, 129, 1, 129, 1, 129, 5, 129, 1852, 8, 129, 10, 129, 12, 129, 1855, 9, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 5, 130, 1863, 8, 130, 10, 130, 12, 130, 1866, 9, 130, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 5, 131, 1873, 8, 131, 10, 131, 12, 131, 1876, 9, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1886, 8, 132, 3, 132, 1888, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1894, 8, 132, 1, 133, 1, 133, 1, 133, 3, 133, 1899, 8, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 5, 134, 1907, 8, 134, 10, 134, 12, 134, 1910, 9, 134, 3, 134, 1912, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 1918, 8, 134, 3, 134, 1920, 8, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 1928, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 1934, 8, 135, 1, 135, 5, 135, 1937, 8, 135, 10, 135, 12, 135, 1940, 9, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 5, 136, 1949, 8, 136, 10, 136, 12, 136, 1952, 9, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 1958, 8, 136, 1, 137, 1, 137, 3, 137, 1962, 8, 137, 1, 137, 1, 137, 3, 137, 1966, 8, 137, 1, 138, 1, 138, 3, 138, 1970, 8, 138, 1, 138, 3, 138, 1973, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 5, 138, 1980, 8, 138, 10, 138, 12, 138, 1983, 9, 138, 3, 138, 1985, 8, 138, 1, 138, 3, 138, 1988, 8, 138, 1, 138, 1, 138, 1, 138, 3, 138, 1993, 8, 138, 1, 138, 3, 138, 1996, 8, 138, 1, 139, 1, 139, 1, 139, 5, 139, 2001, 8, 139, 10, 139, 12, 139, 2004, 9, 139, 1, 140, 1, 140, 1, 140, 3, 140, 2009, 8, 140, 1, 141, 1, 141, 1, 141, 3, 141, 2014, 8, 141, 1, 142, 3, 142, 2017, 8, 142, 1, 142, 1, 142, 1, 142, 5, 142, 2022, 8, 142, 10, 142, 12, 142, 2025, 9, 142, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 1, 144, 5, 144, 2033, 8, 144, 10, 144, 12, 144, 2036, 9, 144, 3, 144, 2038, 8, 144, 1, 144, 1, 144, 3, 144, 2042, 8, 144, 1, 145, 1, 145, 3, 145, 2046, 8, 145, 1, 145, 1, 145, 1, 145, 1, 146, 1, 146, 1, 147, 1, 147, 3, 147, 2055, 8, 147, 1, 147, 1, 147, 3, 147, 2059, 8, 147, 1, 147, 3, 147, 2062, 8, 147, 1, 148, 3, 148, 2065, 8, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 3, 151, 2076, 8, 151, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 3, 152, 2092, 8, 152, 5, 152, 2094, 8, 152, 10, 152, 12, 152, 2097, 9, 152, 1, 153, 3, 153, 2100, 8, 153, 1, 153, 1, 153, 3, 153, 2104, 8, 153, 1, 153, 1, 153, 3, 153, 2108, 8, 153, 1, 153, 1, 153, 3, 153, 2112, 8, 153, 1, 153, 1, 153, 3, 153, 2116, 8, 153, 1, 153, 1, 153, 3, 153, 2120, 8, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 3, 153, 2130, 8, 153, 1, 154, 1, 154, 1, 154, 3, 154, 2135, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 5, 154, 2142, 8, 154, 10, 154, 12, 154, 2145, 9, 154, 1, 154, 1, 154, 3, 154, 2149, 8, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 3, 155, 2162, 8, 155, 3, 155, 2164, 8, 155, 1, 156, 1, 156, 1, 157, 1, 157, 3, 157, 2170, 8, 157, 1, 157, 1, 157, 3, 157, 2174, 8, 157, 3, 157, 2176, 8, 157, 1, 158, 1, 158, 1, 158, 1, 158, 5, 158, 2182, 8, 158, 10, 158, 12, 158, 2185, 9, 158, 1, 158, 1, 158, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 2193, 8, 159, 1, 160, 3, 160, 2196, 8, 160, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 5, 162, 2209, 8, 162, 10, 162, 12, 162, 2212, 9, 162, 1, 162, 1, 162, 1, 162, 3, 162, 2217, 8, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 164, 1, 164, 3, 164, 2225, 8, 164, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 3, 166, 2232, 8, 166, 1, 166, 1, 166, 3, 166, 2236, 8, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 5, 166, 2244, 8, 166, 10, 166, 12, 166, 2247, 9, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 3, 167, 2257, 8, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 3, 167, 2265, 8, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 5, 167, 2272, 8, 167, 10, 167, 12, 167, 2275, 9, 167, 1, 167, 1, 167, 1, 167, 3, 167, 2280, 8, 167, 1, 167, 1, 167, 1, 167, 3, 167, 2285, 8, 167, 1, 167, 1, 167, 1, 167, 1, 167, 3, 167, 2291, 8, 167, 1, 167, 1, 167, 1, 167, 1, 167, 3, 167, 2297, 8, 167, 1, 167, 1, 167, 1, 167, 3, 167, 2302, 8, 167, 1, 167, 1, 167, 1, 167, 3, 167, 2307, 8, 167, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 2313, 8, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 5, 168, 2324, 8, 168, 10, 168, 12, 168, 2327, 9, 168, 1, 169, 1, 169, 1, 169, 3, 169, 2332, 8, 169, 1, 169, 1, 169, 1, 169, 5, 169, 2337, 8, 169, 10, 169, 12, 169, 2340, 9, 169, 3, 169, 2342, 8, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 5, 169, 2349, 8, 169, 10, 169, 12, 169, 2352, 9, 169, 3, 169, 2354, 8, 169, 1, 169, 1, 169, 3, 169, 2358, 8, 169, 1, 169, 3, 169, 2361, 8, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 2387, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 2393, 8, 170, 5, 170, 2395, 8, 170, 10, 170, 12, 170, 2398, 9, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 5, 170, 2407, 8, 170, 10, 170, 12, 170, 2410, 9, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 2419, 8, 170, 1, 170, 3, 170, 2422, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 5, 170, 2433, 8, 170, 10, 170, 12, 170, 2436, 9, 170, 3, 170, 2438, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 4, 170, 2455, 8, 170, 11, 170, 12, 170, 2456, 1, 170, 1, 170, 3, 170, 2461, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 4, 170, 2467, 8, 170, 11, 170, 12, 170, 2468, 1, 170, 1, 170, 3, 170, 2473, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 5, 170, 2496, 8, 170, 10, 170, 12, 170, 2499, 9, 170, 3, 170, 2501, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 2510, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 2516, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 2522, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 2528, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 2539, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 2548, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 5, 170, 2568, 8, 170, 10, 170, 12, 170, 2571, 9, 170, 3, 170, 2573, 8, 170, 1, 170, 3, 170, 2576, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 5, 170, 2586, 8, 170, 10, 170, 12, 170, 2589, 9, 170, 1, 171, 1, 171, 1, 171, 1, 171, 3, 171, 2595, 8, 171, 3, 171, 2597, 8, 171, 1, 172, 1, 172, 1, 173, 1, 173, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 2619, 8, 175, 1, 176, 1, 176, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 5, 178, 2646, 8, 178, 10, 178, 12, 178, 2649, 9, 178, 1, 178, 1, 178, 1, 178, 1, 178, 3, 178, 2655, 8, 178, 1, 178, 1, 178, 1, 178, 1, 178, 5, 178, 2661, 8, 178, 10, 178, 12, 178, 2664, 9, 178, 1, 178, 1, 178, 3, 178, 2668, 8, 178, 3, 178, 2670, 8, 178, 1, 178, 1, 178, 5, 178, 2674, 8, 178, 10, 178, 12, 178, 2677, 9, 178, 1, 179, 1, 179, 1, 180, 1, 180, 3, 180, 2683, 8, 180, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 2689, 8, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 5, 184, 2704, 8, 184, 10, 184, 12, 184, 2707, 9, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 3, 185, 2714, 8, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 5, 185, 2721, 8, 185, 10, 185, 12, 185, 2724, 9, 185, 3, 185, 2726, 8, 185, 1, 185, 3, 185, 2729, 8, 185, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 3, 186, 2749, 8, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 3, 187, 2760, 8, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 2767, 8, 188, 1, 189, 1, 189, 1, 189, 5, 189, 2772, 8, 189, 10, 189, 12, 189, 2775, 9, 189, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 3, 190, 2788, 8, 190, 3, 190, 2790, 8, 190, 1, 191, 1, 191, 1, 192, 1, 192, 1, 192, 5, 192, 2797, 8, 192, 10, 192, 12, 192, 2800, 9, 192, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 3, 193, 2808, 8, 193, 1, 193, 1, 193, 1, 193, 5, 193, 2813, 8, 193, 10, 193, 12, 193, 2816, 9, 193, 3, 193, 2818, 8, 193, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 3, 194, 2826, 8, 194, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 3, 195, 2833, 8, 195, 1, 196, 3, 196, 2836, 8, 196, 1, 196, 1, 196, 3, 196, 2840, 8, 196, 1, 196, 1, 196, 3, 196, 2844, 8, 196, 1, 196, 3, 196, 2847, 8, 196, 1, 197, 1, 197, 1, 198, 1, 198, 1, 198, 10, 799, 1472, 1656, 1695, 1715, 1730, 1761, 1790, 1864, 2396, 6, 270, 304, 332, 336, 340, 356, 199, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 0, 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, 3169, 0, 401, 1, 0, 0, 0, 2, 406, 1, 0, 0, 0, 4, 432, 1, 0, 0, 0, 6, 434, 1, 0, 0, 0, 8, 445, 1, 0, 0, 0, 10, 447, 1, 0, 0, 0, 12, 486, 1, 0, 0, 0, 14, 508, 1, 0, 0, 0, 16, 562, 1, 0, 0, 0, 18, 581, 1, 0, 0, 0, 20, 594, 1, 0, 0, 0, 22, 598, 1, 0, 0, 0, 24, 660, 1, 0, 0, 0, 26, 708, 1, 0, 0, 0, 28, 710, 1, 0, 0, 0, 30, 718, 1, 0, 0, 0, 32, 738, 1, 0, 0, 0, 34, 758, 1, 0, 0, 0, 36, 765, 1, 0, 0, 0, 38, 774, 1, 0, 0, 0, 40, 782, 1, 0, 0, 0, 42, 804, 1, 0, 0, 0, 44, 814, 1, 0, 0, 0, 46, 832, 1, 0, 0, 0, 48, 853, 1, 0, 0, 0, 50, 874, 1, 0, 0, 0, 52, 880, 1, 0, 0, 0, 54, 897, 1, 0, 0, 0, 56, 906, 1, 0, 0, 0, 58, 913, 1, 0, 0, 0, 60, 921, 1, 0, 0, 0, 62, 928, 1, 0, 0, 0, 64, 935, 1, 0, 0, 0, 66, 944, 1, 0, 0, 0, 68, 955, 1, 0, 0, 0, 70, 957, 1, 0, 0, 0, 72, 977, 1, 0, 0, 0, 74, 994, 1, 0, 0, 0, 76, 996, 1, 0, 0, 0, 78, 1005, 1, 0, 0, 0, 80, 1012, 1, 0, 0, 0, 82, 1021, 1, 0, 0, 0, 84, 1031, 1, 0, 0, 0, 86, 1054, 1, 0, 0, 0, 88, 1060, 1, 0, 0, 0, 90, 1062, 1, 0, 0, 0, 92, 1069, 1, 0, 0, 0, 94, 1081, 1, 0, 0, 0, 96, 1083, 1, 0, 0, 0, 98, 1090, 1, 0, 0, 0, 100, 1111, 1, 0, 0, 0, 102, 1140, 1, 0, 0, 0, 104, 1142, 1, 0, 0, 0, 106, 1150, 1, 0, 0, 0, 108, 1172, 1, 0, 0, 0, 110, 1190, 1, 0, 0, 0, 112, 1213, 1, 0, 0, 0, 114, 1215, 1, 0, 0, 0, 116, 1230, 1, 0, 0, 0, 118, 1249, 1, 0, 0, 0, 120, 1271, 1, 0, 0, 0, 122, 1276, 1, 0, 0, 0, 124, 1281, 1, 0, 0, 0, 126, 1286, 1, 0, 0, 0, 128, 1291, 1, 0, 0, 0, 130, 1298, 1, 0, 0, 0, 132, 1313, 1, 0, 0, 0, 134, 1319, 1, 0, 0, 0, 136, 1339, 1, 0, 0, 0, 138, 1341, 1, 0, 0, 0, 140, 1352, 1, 0, 0, 0, 142, 1363, 1, 0, 0, 0, 144, 1377, 1, 0, 0, 0, 146, 1379, 1, 0, 0, 0, 148, 1388, 1, 0, 0, 0, 150, 1397, 1, 0, 0, 0, 152, 1406, 1, 0, 0, 0, 154, 1409, 1, 0, 0, 0, 156, 1417, 1, 0, 0, 0, 158, 1433, 1, 0, 0, 0, 160, 1437, 1, 0, 0, 0, 162, 1461, 1, 0, 0, 0, 164, 1463, 1, 0, 0, 0, 166, 1479, 1, 0, 0, 0, 168, 1482, 1, 0, 0, 0, 170, 1486, 1, 0, 0, 0, 172, 1489, 1, 0, 0, 0, 174, 1493, 1, 0, 0, 0, 176, 1495, 1, 0, 0, 0, 178, 1497, 1, 0, 0, 0, 180, 1499, 1, 0, 0, 0, 182, 1501, 1, 0, 0, 0, 184, 1503, 1, 0, 0, 0, 186, 1505, 1, 0, 0, 0, 188, 1513, 1, 0, 0, 0, 190, 1523, 1, 0, 0, 0, 192, 1525, 1, 0, 0, 0, 194, 1530, 1, 0, 0, 0, 196, 1532, 1, 0, 0, 0, 198, 1537, 1, 0, 0, 0, 200, 1541, 1, 0, 0, 0, 202, 1546, 1, 0, 0, 0, 204, 1586, 1, 0, 0, 0, 206, 1594, 1, 0, 0, 0, 208, 1598, 1, 0, 0, 0, 210, 1613, 1, 0, 0, 0, 212, 1618, 1, 0, 0, 0, 214, 1622, 1, 0, 0, 0, 216, 1631, 1, 0, 0, 0, 218, 1661, 1, 0, 0, 0, 220, 1676, 1, 0, 0, 0, 222, 1682, 1, 0, 0, 0, 224, 1687, 1, 0, 0, 0, 226, 1689, 1, 0, 0, 0, 228, 1707, 1, 0, 0, 0, 230, 1710, 1, 0, 0, 0, 232, 1720, 1, 0, 0, 0, 234, 1740, 1, 0, 0, 0, 236, 1750, 1, 0, 0, 0, 238, 1752, 1, 0, 0, 0, 240, 1754, 1, 0, 0, 0, 242, 1769, 1, 0, 0, 0, 244, 1771, 1, 0, 0, 0, 246, 1778, 1, 0, 0, 0, 248, 1810, 1, 0, 0, 0, 250, 1822, 1, 0, 0, 0, 252, 1829, 1, 0, 0, 0, 254, 1839, 1, 0, 0, 0, 256, 1841, 1, 0, 0, 0, 258, 1847, 1, 0, 0, 0, 260, 1858, 1, 0, 0, 0, 262, 1869, 1, 0, 0, 0, 264, 1877, 1, 0, 0, 0, 266, 1895, 1, 0, 0, 0, 268, 1900, 1, 0, 0, 0, 270, 1921, 1, 0, 0, 0, 272, 1957, 1, 0, 0, 0, 274, 1959, 1, 0, 0, 0, 276, 1967, 1, 0, 0, 0, 278, 1997, 1, 0, 0, 0, 280, 2005, 1, 0, 0, 0, 282, 2010, 1, 0, 0, 0, 284, 2016, 1, 0, 0, 0, 286, 2026, 1, 0, 0, 0, 288, 2041, 1, 0, 0, 0, 290, 2043, 1, 0, 0, 0, 292, 2050, 1, 0, 0, 0, 294, 2061, 1, 0, 0, 0, 296, 2064, 1, 0, 0, 0, 298, 2068, 1, 0, 0, 0, 300, 2070, 1, 0, 0, 0, 302, 2075, 1, 0, 0, 0, 304, 2079, 1, 0, 0, 0, 306, 2129, 1, 0, 0, 0, 308, 2148, 1, 0, 0, 0, 310, 2150, 1, 0, 0, 0, 312, 2165, 1, 0, 0, 0, 314, 2167, 1, 0, 0, 0, 316, 2177, 1, 0, 0, 0, 318, 2192, 1, 0, 0, 0, 320, 2195, 1, 0, 0, 0, 322, 2199, 1, 0, 0, 0, 324, 2203, 1, 0, 0, 0, 326, 2218, 1, 0, 0, 0, 328, 2224, 1, 0, 0, 0, 330, 2226, 1, 0, 0, 0, 332, 2235, 1, 0, 0, 0, 334, 2306, 1, 0, 0, 0, 336, 2312, 1, 0, 0, 0, 338, 2328, 1, 0, 0, 0, 340, 2575, 1, 0, 0, 0, 342, 2596, 1, 0, 0, 0, 344, 2598, 1, 0, 0, 0, 346, 2600, 1, 0, 0, 0, 348, 2602, 1, 0, 0, 0, 350, 2618, 1, 0, 0, 0, 352, 2620, 1, 0, 0, 0, 354, 2622, 1, 0, 0, 0, 356, 2669, 1, 0, 0, 0, 358, 2678, 1, 0, 0, 0, 360, 2682, 1, 0, 0, 0, 362, 2688, 1, 0, 0, 0, 364, 2690, 1, 0, 0, 0, 366, 2695, 1, 0, 0, 0, 368, 2700, 1, 0, 0, 0, 370, 2708, 1, 0, 0, 0, 372, 2748, 1, 0, 0, 0, 374, 2759, 1, 0, 0, 0, 376, 2766, 1, 0, 0, 0, 378, 2768, 1, 0, 0, 0, 380, 2789, 1, 0, 0, 0, 382, 2791, 1, 0, 0, 0, 384, 2793, 1, 0, 0, 0, 386, 2817, 1, 0, 0, 0, 388, 2825, 1, 0, 0, 0, 390, 2832, 1, 0, 0, 0, 392, 2846, 1, 0, 0, 0, 394, 2848, 1, 0, 0, 0, 396, 2850, 1, 0, 0, 0, 398, 400, 3, 2, 1, 0, 399, 398, 1, 0, 0, 0, 400, 403, 1, 0, 0, 0, 401, 399, 1, 0, 0, 0, 401, 402, 1, 0, 0, 0, 402, 404, 1, 0, 0, 0, 403, 401, 1, 0, 0, 0, 404, 405, 5, 0, 0, 1, 405, 1, 1, 0, 0, 0, 406, 408, 3, 4, 2, 0, 407, 409, 5, 262, 0, 0, 408, 407, 1, 0, 0, 0, 408, 409, 1, 0, 0, 0, 409, 3, 1, 0, 0, 0, 410, 433, 3, 212, 106, 0, 411, 433, 3, 6, 3, 0, 412, 433, 3, 8, 4, 0, 413, 433, 3, 26, 13, 0, 414, 433, 3, 64, 32, 0, 415, 433, 3, 66, 33, 0, 416, 433, 3, 68, 34, 0, 417, 433, 3, 74, 37, 0, 418, 433, 3, 88, 44, 0, 419, 433, 3, 94, 47, 0, 420, 433, 3, 100, 50, 0, 421, 433, 3, 102, 51, 0, 422, 433, 3, 108, 54, 0, 423, 433, 3, 110, 55, 0, 424, 433, 3, 112, 56, 0, 425, 433, 3, 144, 72, 0, 426, 433, 3, 152, 76, 0, 427, 433, 3, 154, 77, 0, 428, 433, 3, 156, 78, 0, 429, 433, 3, 158, 79, 0, 430, 433, 3, 160, 80, 0, 431, 433, 3, 162, 81, 0, 432, 410, 1, 0, 0, 0, 432, 411, 1, 0, 0, 0, 432, 412, 1, 0, 0, 0, 432, 413, 1, 0, 0, 0, 432, 414, 1, 0, 0, 0, 432, 415, 1, 0, 0, 0, 432, 416, 1, 0, 0, 0, 432, 417, 1, 0, 0, 0, 432, 418, 1, 0, 0, 0, 432, 419, 1, 0, 0, 0, 432, 420, 1, 0, 0, 0, 432, 421, 1, 0, 0, 0, 432, 422, 1, 0, 0, 0, 432, 423, 1, 0, 0, 0, 432, 424, 1, 0, 0, 0, 432, 425, 1, 0, 0, 0, 432, 426, 1, 0, 0, 0, 432, 427, 1, 0, 0, 0, 432, 428, 1, 0, 0, 0, 432, 429, 1, 0, 0, 0, 432, 430, 1, 0, 0, 0, 432, 431, 1, 0, 0, 0, 433, 5, 1, 0, 0, 0, 434, 435, 5, 203, 0, 0, 435, 436, 3, 184, 92, 0, 436, 7, 1, 0, 0, 0, 437, 446, 3, 18, 9, 0, 438, 446, 3, 20, 10, 0, 439, 446, 3, 22, 11, 0, 440, 446, 3, 24, 12, 0, 441, 446, 3, 16, 8, 0, 442, 446, 3, 14, 7, 0, 443, 446, 3, 12, 6, 0, 444, 446, 3, 10, 5, 0, 445, 437, 1, 0, 0, 0, 445, 438, 1, 0, 0, 0, 445, 439, 1, 0, 0, 0, 445, 440, 1, 0, 0, 0, 445, 441, 1, 0, 0, 0, 445, 442, 1, 0, 0, 0, 445, 443, 1, 0, 0, 0, 445, 444, 1, 0, 0, 0, 446, 9, 1, 0, 0, 0, 447, 449, 5, 37, 0, 0, 448, 450, 5, 19, 0, 0, 449, 448, 1, 0, 0, 0, 449, 450, 1, 0, 0, 0, 450, 451, 1, 0, 0, 0, 451, 453, 5, 188, 0, 0, 452, 454, 3, 172, 86, 0, 453, 452, 1, 0, 0, 0, 453, 454, 1, 0, 0, 0, 454, 455, 1, 0, 0, 0, 455, 471, 3, 174, 87, 0, 456, 457, 5, 265, 0, 0, 457, 462, 3, 222, 111, 0, 458, 459, 5, 263, 0, 0, 459, 461, 3, 222, 111, 0, 460, 458, 1, 0, 0, 0, 461, 464, 1, 0, 0, 0, 462, 460, 1, 0, 0, 0, 462, 463, 1, 0, 0, 0, 463, 467, 1, 0, 0, 0, 464, 462, 1, 0, 0, 0, 465, 466, 5, 263, 0, 0, 466, 468, 3, 216, 108, 0, 467, 465, 1, 0, 0, 0, 467, 468, 1, 0, 0, 0, 468, 469, 1, 0, 0, 0, 469, 470, 5, 266, 0, 0, 470, 472, 1, 0, 0, 0, 471, 456, 1, 0, 0, 0, 471, 472, 1, 0, 0, 0, 472, 479, 1, 0, 0, 0, 473, 474, 5, 17, 0, 0, 474, 477, 5, 26, 0, 0, 475, 478, 3, 316, 158, 0, 476, 478, 3, 260, 130, 0, 477, 475, 1, 0, 0, 0, 477, 476, 1, 0, 0, 0, 478, 480, 1, 0, 0, 0, 479, 473, 1, 0, 0, 0, 479, 480, 1, 0, 0, 0, 480, 481, 1, 0, 0, 0, 481, 484, 3, 202, 101, 0, 482, 483, 5, 9, 0, 0, 483, 485, 3, 212, 106, 0, 484, 482, 1, 0, 0, 0, 484, 485, 1, 0, 0, 0, 485, 11, 1, 0, 0, 0, 486, 488, 5, 37, 0, 0, 487, 489, 5, 19, 0, 0, 488, 487, 1, 0, 0, 0, 488, 489, 1, 0, 0, 0, 489, 490, 1, 0, 0, 0, 490, 492, 5, 188, 0, 0, 491, 493, 3, 172, 86, 0, 492, 491, 1, 0, 0, 0, 492, 493, 1, 0, 0, 0, 493, 494, 1, 0, 0, 0, 494, 495, 3, 174, 87, 0, 495, 499, 5, 115, 0, 0, 496, 500, 3, 186, 93, 0, 497, 498, 5, 147, 0, 0, 498, 500, 3, 342, 171, 0, 499, 496, 1, 0, 0, 0, 499, 497, 1, 0, 0, 0, 500, 504, 1, 0, 0, 0, 501, 502, 5, 17, 0, 0, 502, 503, 5, 26, 0, 0, 503, 505, 3, 260, 130, 0, 504, 501, 1, 0, 0, 0, 504, 505, 1, 0, 0, 0, 505, 506, 1, 0, 0, 0, 506, 507, 3, 202, 101, 0, 507, 13, 1, 0, 0, 0, 508, 510, 5, 37, 0, 0, 509, 511, 5, 19, 0, 0, 510, 509, 1, 0, 0, 0, 510, 511, 1, 0, 0, 0, 511, 512, 1, 0, 0, 0, 512, 514, 5, 188, 0, 0, 513, 515, 3, 172, 86, 0, 514, 513, 1, 0, 0, 0, 514, 515, 1, 0, 0, 0, 515, 516, 1, 0, 0, 0, 516, 534, 3, 174, 87, 0, 517, 518, 5, 265, 0, 0, 518, 523, 3, 224, 112, 0, 519, 520, 5, 263, 0, 0, 520, 522, 3, 224, 112, 0, 521, 519, 1, 0, 0, 0, 522, 525, 1, 0, 0, 0, 523, 521, 1, 0, 0, 0, 523, 524, 1, 0, 0, 0, 524, 530, 1, 0, 0, 0, 525, 523, 1, 0, 0, 0, 526, 527, 5, 263, 0, 0, 527, 528, 5, 150, 0, 0, 528, 529, 5, 110, 0, 0, 529, 531, 3, 316, 158, 0, 530, 526, 1, 0, 0, 0, 530, 531, 1, 0, 0, 0, 531, 532, 1, 0, 0, 0, 532, 533, 5, 266, 0, 0, 533, 535, 1, 0, 0, 0, 534, 517, 1, 0, 0, 0, 534, 535, 1, 0, 0, 0, 535, 541, 1, 0, 0, 0, 536, 537, 5, 150, 0, 0, 537, 539, 5, 110, 0, 0, 538, 540, 3, 316, 158, 0, 539, 538, 1, 0, 0, 0, 539, 540, 1, 0, 0, 0, 540, 542, 1, 0, 0, 0, 541, 536, 1, 0, 0, 0, 541, 542, 1, 0, 0, 0, 542, 546, 1, 0, 0, 0, 543, 544, 5, 145, 0, 0, 544, 545, 5, 26, 0, 0, 545, 547, 3, 242, 121, 0, 546, 543, 1, 0, 0, 0, 546, 547, 1, 0, 0, 0, 547, 549, 1, 0, 0, 0, 548, 550, 3, 228, 114, 0, 549, 548, 1, 0, 0, 0, 549, 550, 1, 0, 0, 0, 550, 551, 1, 0, 0, 0, 551, 552, 5, 23, 0, 0, 552, 553, 5, 9, 0, 0, 553, 556, 5, 111, 0, 0, 554, 555, 5, 25, 0, 0, 555, 557, 3, 258, 129, 0, 556, 554, 1, 0, 0, 0, 556, 557, 1, 0, 0, 0, 557, 560, 1, 0, 0, 0, 558, 559, 5, 9, 0, 0, 559, 561, 3, 212, 106, 0, 560, 558, 1, 0, 0, 0, 560, 561, 1, 0, 0, 0, 561, 15, 1, 0, 0, 0, 562, 563, 5, 37, 0, 0, 563, 565, 5, 212, 0, 0, 564, 566, 3, 172, 86, 0, 565, 564, 1, 0, 0, 0, 565, 566, 1, 0, 0, 0, 566, 567, 1, 0, 0, 0, 567, 569, 3, 178, 89, 0, 568, 570, 3, 208, 104, 0, 569, 568, 1, 0, 0, 0, 569, 570, 1, 0, 0, 0, 570, 572, 1, 0, 0, 0, 571, 573, 3, 228, 114, 0, 572, 571, 1, 0, 0, 0, 572, 573, 1, 0, 0, 0, 573, 576, 1, 0, 0, 0, 574, 575, 5, 25, 0, 0, 575, 577, 3, 258, 129, 0, 576, 574, 1, 0, 0, 0, 576, 577, 1, 0, 0, 0, 577, 578, 1, 0, 0, 0, 578, 579, 5, 9, 0, 0, 579, 580, 3, 212, 106, 0, 580, 17, 1, 0, 0, 0, 581, 582, 5, 37, 0, 0, 582, 584, 7, 0, 0, 0, 583, 585, 3, 172, 86, 0, 584, 583, 1, 0, 0, 0, 584, 585, 1, 0, 0, 0, 585, 586, 1, 0, 0, 0, 586, 588, 3, 176, 88, 0, 587, 589, 3, 228, 114, 0, 588, 587, 1, 0, 0, 0, 588, 589, 1, 0, 0, 0, 589, 592, 1, 0, 0, 0, 590, 591, 5, 24, 0, 0, 591, 593, 3, 342, 171, 0, 592, 590, 1, 0, 0, 0, 592, 593, 1, 0, 0, 0, 593, 19, 1, 0, 0, 0, 594, 595, 5, 37, 0, 0, 595, 596, 5, 166, 0, 0, 596, 597, 3, 390, 195, 0, 597, 21, 1, 0, 0, 0, 598, 600, 5, 37, 0, 0, 599, 601, 5, 12, 0, 0, 600, 599, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 602, 1, 0, 0, 0, 602, 604, 5, 84, 0, 0, 603, 605, 3, 172, 86, 0, 604, 603, 1, 0, 0, 0, 604, 605, 1, 0, 0, 0, 605, 606, 1, 0, 0, 0, 606, 619, 3, 180, 90, 0, 607, 616, 5, 265, 0, 0, 608, 613, 3, 356, 178, 0, 609, 610, 5, 263, 0, 0, 610, 612, 3, 356, 178, 0, 611, 609, 1, 0, 0, 0, 612, 615, 1, 0, 0, 0, 613, 611, 1, 0, 0, 0, 613, 614, 1, 0, 0, 0, 614, 617, 1, 0, 0, 0, 615, 613, 1, 0, 0, 0, 616, 608, 1, 0, 0, 0, 616, 617, 1, 0, 0, 0, 617, 618, 1, 0, 0, 0, 618, 620, 5, 266, 0, 0, 619, 607, 1, 0, 0, 0, 619, 620, 1, 0, 0, 0, 620, 621, 1, 0, 0, 0, 621, 622, 5, 160, 0, 0, 622, 625, 3, 356, 178, 0, 623, 624, 5, 102, 0, 0, 624, 626, 3, 356, 178, 0, 625, 623, 1, 0, 0, 0, 625, 626, 1, 0, 0, 0, 626, 627, 1, 0, 0, 0, 627, 628, 5, 24, 0, 0, 628, 632, 5, 274, 0, 0, 629, 630, 5, 104, 0, 0, 630, 631, 5, 249, 0, 0, 631, 633, 5, 274, 0, 0, 632, 629, 1, 0, 0, 0, 632, 633, 1, 0, 0, 0, 633, 634, 1, 0, 0, 0, 634, 635, 5, 206, 0, 0, 635, 636, 5, 249, 0, 0, 636, 637, 5, 274, 0, 0, 637, 638, 5, 126, 0, 0, 638, 639, 5, 249, 0, 0, 639, 643, 5, 274, 0, 0, 640, 641, 5, 18, 0, 0, 641, 642, 5, 249, 0, 0, 642, 644, 5, 274, 0, 0, 643, 640, 1, 0, 0, 0, 643, 644, 1, 0, 0, 0, 644, 648, 1, 0, 0, 0, 645, 646, 5, 20, 0, 0, 646, 647, 5, 249, 0, 0, 647, 649, 5, 274, 0, 0, 648, 645, 1, 0, 0, 0, 648, 649, 1, 0, 0, 0, 649, 653, 1, 0, 0, 0, 650, 651, 5, 187, 0, 0, 651, 652, 5, 249, 0, 0, 652, 654, 5, 274, 0, 0, 653, 650, 1, 0, 0, 0, 653, 654, 1, 0, 0, 0, 654, 658, 1, 0, 0, 0, 655, 656, 5, 76, 0, 0, 656, 657, 5, 249, 0, 0, 657, 659, 5, 274, 0, 0, 658, 655, 1, 0, 0, 0, 658, 659, 1, 0, 0, 0, 659, 23, 1, 0, 0, 0, 660, 661, 5, 37, 0, 0, 661, 663, 5, 84, 0, 0, 662, 664, 3, 172, 86, 0, 663, 662, 1, 0, 0, 0, 663, 664, 1, 0, 0, 0, 664, 665, 1, 0, 0, 0, 665, 678, 3, 180, 90, 0, 666, 675, 5, 265, 0, 0, 667, 672, 3, 356, 178, 0, 668, 669, 5, 263, 0, 0, 669, 671, 3, 356, 178, 0, 670, 668, 1, 0, 0, 0, 671, 674, 1, 0, 0, 0, 672, 670, 1, 0, 0, 0, 672, 673, 1, 0, 0, 0, 673, 676, 1, 0, 0, 0, 674, 672, 1, 0, 0, 0, 675, 667, 1, 0, 0, 0, 675, 676, 1, 0, 0, 0, 676, 677, 1, 0, 0, 0, 677, 679, 5, 266, 0, 0, 678, 666, 1, 0, 0, 0, 678, 679, 1, 0, 0, 0, 679, 682, 1, 0, 0, 0, 680, 681, 5, 160, 0, 0, 681, 683, 3, 356, 178, 0, 682, 680, 1, 0, 0, 0, 682, 683, 1, 0, 0, 0, 683, 684, 1, 0, 0, 0, 684, 685, 5, 24, 0, 0, 685, 686, 5, 274, 0, 0, 686, 687, 5, 186, 0, 0, 687, 688, 5, 249, 0, 0, 688, 689, 3, 342, 171, 0, 689, 25, 1, 0, 0, 0, 690, 709, 3, 28, 14, 0, 691, 709, 3, 62, 31, 0, 692, 709, 3, 60, 30, 0, 693, 709, 3, 58, 29, 0, 694, 709, 3, 54, 27, 0, 695, 709, 3, 56, 28, 0, 696, 709, 3, 52, 26, 0, 697, 709, 3, 48, 24, 0, 698, 709, 3, 50, 25, 0, 699, 709, 3, 46, 23, 0, 700, 709, 3, 44, 22, 0, 701, 709, 3, 42, 21, 0, 702, 709, 3, 40, 20, 0, 703, 709, 3, 34, 17, 0, 704, 709, 3, 30, 15, 0, 705, 709, 3, 32, 16, 0, 706, 709, 3, 36, 18, 0, 707, 709, 3, 38, 19, 0, 708, 690, 1, 0, 0, 0, 708, 691, 1, 0, 0, 0, 708, 692, 1, 0, 0, 0, 708, 693, 1, 0, 0, 0, 708, 694, 1, 0, 0, 0, 708, 695, 1, 0, 0, 0, 708, 696, 1, 0, 0, 0, 708, 697, 1, 0, 0, 0, 708, 698, 1, 0, 0, 0, 708, 699, 1, 0, 0, 0, 708, 700, 1, 0, 0, 0, 708, 701, 1, 0, 0, 0, 708, 702, 1, 0, 0, 0, 708, 703, 1, 0, 0, 0, 708, 704, 1, 0, 0, 0, 708, 705, 1, 0, 0, 0, 708, 706, 1, 0, 0, 0, 708, 707, 1, 0, 0, 0, 709, 27, 1, 0, 0, 0, 710, 711, 5, 4, 0, 0, 711, 712, 5, 46, 0, 0, 712, 713, 3, 184, 92, 0, 713, 714, 5, 176, 0, 0, 714, 715, 5, 142, 0, 0, 715, 716, 7, 1, 0, 0, 716, 717, 3, 390, 195, 0, 717, 29, 1, 0, 0, 0, 718, 719, 5, 4, 0, 0, 719, 720, 5, 188, 0, 0, 720, 721, 3, 186, 93, 0, 721, 722, 5, 176, 0, 0, 722, 723, 5, 32, 0, 0, 723, 724, 5, 182, 0, 0, 724, 725, 3, 194, 97, 0, 725, 726, 5, 265, 0, 0, 726, 727, 3, 238, 119, 0, 727, 728, 5, 249, 0, 0, 728, 734, 3, 342, 171, 0, 729, 730, 5, 263, 0, 0, 730, 731, 3, 238, 119, 0, 731, 732, 5, 249, 0, 0, 732, 733, 3, 342, 171, 0, 733, 735, 1, 0, 0, 0, 734, 729, 1, 0, 0, 0, 734, 735, 1, 0, 0, 0, 735, 736, 1, 0, 0, 0, 736, 737, 5, 266, 0, 0, 737, 31, 1, 0, 0, 0, 738, 739, 5, 4, 0, 0, 739, 740, 5, 188, 0, 0, 740, 743, 3, 186, 93, 0, 741, 742, 5, 145, 0, 0, 742, 744, 3, 330, 165, 0, 743, 741, 1, 0, 0, 0, 743, 744, 1, 0, 0, 0, 744, 745, 1, 0, 0, 0, 745, 756, 5, 176, 0, 0, 746, 747, 5, 30, 0, 0, 747, 748, 5, 94, 0, 0, 748, 753, 3, 342, 171, 0, 749, 750, 5, 216, 0, 0, 750, 751, 5, 151, 0, 0, 751, 752, 5, 249, 0, 0, 752, 754, 3, 392, 196, 0, 753, 749, 1, 0, 0, 0, 753, 754, 1, 0, 0, 0, 754, 757, 1, 0, 0, 0, 755, 757, 5, 197, 0, 0, 756, 746, 1, 0, 0, 0, 756, 755, 1, 0, 0, 0, 757, 33, 1, 0, 0, 0, 758, 759, 5, 4, 0, 0, 759, 760, 5, 188, 0, 0, 760, 761, 3, 186, 93, 0, 761, 762, 5, 31, 0, 0, 762, 763, 3, 194, 97, 0, 763, 764, 3, 230, 115, 0, 764, 35, 1, 0, 0, 0, 765, 766, 5, 4, 0, 0, 766, 767, 5, 188, 0, 0, 767, 768, 3, 186, 93, 0, 768, 770, 5, 58, 0, 0, 769, 771, 5, 32, 0, 0, 770, 769, 1, 0, 0, 0, 770, 771, 1, 0, 0, 0, 771, 772, 1, 0, 0, 0, 772, 773, 3, 194, 97, 0, 773, 37, 1, 0, 0, 0, 774, 775, 5, 4, 0, 0, 775, 776, 5, 188, 0, 0, 776, 777, 3, 186, 93, 0, 777, 778, 5, 176, 0, 0, 778, 779, 5, 142, 0, 0, 779, 780, 7, 1, 0, 0, 780, 781, 3, 390, 195, 0, 781, 39, 1, 0, 0, 0, 782, 783, 5, 4, 0, 0, 783, 784, 5, 188, 0, 0, 784, 790, 3, 186, 93, 0, 785, 791, 5, 158, 0, 0, 786, 788, 5, 1, 0, 0, 787, 789, 3, 172, 86, 0, 788, 787, 1, 0, 0, 0, 788, 789, 1, 0, 0, 0, 789, 791, 1, 0, 0, 0, 790, 785, 1, 0, 0, 0, 790, 786, 1, 0, 0, 0, 791, 792, 1, 0, 0, 0, 792, 793, 5, 33, 0, 0, 793, 794, 5, 265, 0, 0, 794, 799, 3, 230, 115, 0, 795, 796, 5, 263, 0, 0, 796, 798, 3, 230, 115, 0, 797, 795, 1, 0, 0, 0, 798, 801, 1, 0, 0, 0, 799, 800, 1, 0, 0, 0, 799, 797, 1, 0, 0, 0, 800, 802, 1, 0, 0, 0, 801, 799, 1, 0, 0, 0, 802, 803, 5, 266, 0, 0, 803, 41, 1, 0, 0, 0, 804, 805, 5, 4, 0, 0, 805, 806, 5, 188, 0, 0, 806, 807, 3, 186, 93, 0, 807, 808, 5, 1, 0, 0, 808, 810, 5, 32, 0, 0, 809, 811, 3, 172, 86, 0, 810, 809, 1, 0, 0, 0, 810, 811, 1, 0, 0, 0, 811, 812, 1, 0, 0, 0, 812, 813, 3, 232, 116, 0, 813, 43, 1, 0, 0, 0, 814, 815, 5, 4, 0, 0, 815, 816, 5, 188, 0, 0, 816, 817, 3, 186, 93, 0, 817, 819, 5, 4, 0, 0, 818, 820, 5, 32, 0, 0, 819, 818, 1, 0, 0, 0, 819, 820, 1, 0, 0, 0, 820, 821, 1, 0, 0, 0, 821, 830, 3, 194, 97, 0, 822, 826, 5, 176, 0, 0, 823, 827, 3, 236, 118, 0, 824, 825, 5, 34, 0, 0, 825, 827, 3, 342, 171, 0, 826, 823, 1, 0, 0, 0, 826, 824, 1, 0, 0, 0, 827, 831, 1, 0, 0, 0, 828, 829, 5, 58, 0, 0, 829, 831, 5, 51, 0, 0, 830, 822, 1, 0, 0, 0, 830, 828, 1, 0, 0, 0, 831, 45, 1, 0, 0, 0, 832, 833, 5, 4, 0, 0, 833, 834, 5, 188, 0, 0, 834, 835, 3, 186, 93, 0, 835, 837, 5, 1, 0, 0, 836, 838, 3, 172, 86, 0, 837, 836, 1, 0, 0, 0, 837, 838, 1, 0, 0, 0, 838, 851, 1, 0, 0, 0, 839, 840, 5, 145, 0, 0, 840, 843, 3, 330, 165, 0, 841, 842, 5, 24, 0, 0, 842, 844, 3, 342, 171, 0, 843, 841, 1, 0, 0, 0, 843, 844, 1, 0, 0, 0, 844, 846, 1, 0, 0, 0, 845, 847, 3, 250, 125, 0, 846, 845, 1, 0, 0, 0, 846, 847, 1, 0, 0, 0, 847, 852, 1, 0, 0, 0, 848, 849, 5, 154, 0, 0, 849, 850, 5, 145, 0, 0, 850, 852, 3, 248, 124, 0, 851, 839, 1, 0, 0, 0, 851, 848, 1, 0, 0, 0, 852, 47, 1, 0, 0, 0, 853, 854, 5, 4, 0, 0, 854, 855, 5, 188, 0, 0, 855, 858, 3, 186, 93, 0, 856, 857, 5, 145, 0, 0, 857, 859, 3, 330, 165, 0, 858, 856, 1, 0, 0, 0, 858, 859, 1, 0, 0, 0, 859, 860, 1, 0, 0, 0, 860, 872, 5, 176, 0, 0, 861, 862, 5, 72, 0, 0, 862, 873, 3, 240, 120, 0, 863, 864, 5, 168, 0, 0, 864, 865, 5, 79, 0, 0, 865, 873, 3, 264, 132, 0, 866, 867, 5, 24, 0, 0, 867, 873, 3, 342, 171, 0, 868, 869, 5, 25, 0, 0, 869, 873, 3, 258, 129, 0, 870, 871, 5, 175, 0, 0, 871, 873, 3, 258, 129, 0, 872, 861, 1, 0, 0, 0, 872, 863, 1, 0, 0, 0, 872, 866, 1, 0, 0, 0, 872, 868, 1, 0, 0, 0, 872, 870, 1, 0, 0, 0, 873, 49, 1, 0, 0, 0, 874, 875, 5, 4, 0, 0, 875, 876, 5, 188, 0, 0, 876, 877, 3, 186, 93, 0, 877, 878, 5, 155, 0, 0, 878, 879, 5, 146, 0, 0, 879, 51, 1, 0, 0, 0, 880, 881, 5, 4, 0, 0, 881, 882, 5, 188, 0, 0, 882, 883, 3, 186, 93, 0, 883, 885, 5, 58, 0, 0, 884, 886, 3, 170, 85, 0, 885, 884, 1, 0, 0, 0, 885, 886, 1, 0, 0, 0, 886, 895, 1, 0, 0, 0, 887, 888, 5, 145, 0, 0, 888, 890, 3, 330, 165, 0, 889, 891, 5, 22, 0, 0, 890, 889, 1, 0, 0, 0, 890, 891, 1, 0, 0, 0, 891, 896, 1, 0, 0, 0, 892, 893, 5, 154, 0, 0, 893, 894, 5, 145, 0, 0, 894, 896, 3, 248, 124, 0, 895, 887, 1, 0, 0, 0, 895, 892, 1, 0, 0, 0, 896, 53, 1, 0, 0, 0, 897, 898, 5, 4, 0, 0, 898, 899, 5, 212, 0, 0, 899, 901, 3, 188, 94, 0, 900, 902, 3, 208, 104, 0, 901, 900, 1, 0, 0, 0, 901, 902, 1, 0, 0, 0, 902, 903, 1, 0, 0, 0, 903, 904, 5, 9, 0, 0, 904, 905, 3, 212, 106, 0, 905, 55, 1, 0, 0, 0, 906, 907, 5, 4, 0, 0, 907, 908, 5, 212, 0, 0, 908, 909, 3, 188, 94, 0, 909, 910, 5, 156, 0, 0, 910, 911, 5, 193, 0, 0, 911, 912, 3, 188, 94, 0, 912, 57, 1, 0, 0, 0, 913, 914, 5, 4, 0, 0, 914, 915, 5, 212, 0, 0, 915, 916, 3, 188, 94, 0, 916, 917, 5, 176, 0, 0, 917, 918, 5, 142, 0, 0, 918, 919, 7, 1, 0, 0, 919, 920, 3, 384, 192, 0, 920, 59, 1, 0, 0, 0, 921, 922, 5, 4, 0, 0, 922, 923, 5, 188, 0, 0, 923, 924, 3, 186, 93, 0, 924, 925, 5, 156, 0, 0, 925, 926, 5, 193, 0, 0, 926, 927, 3, 186, 93, 0, 927, 61, 1, 0, 0, 0, 928, 929, 5, 4, 0, 0, 929, 930, 5, 212, 0, 0, 930, 931, 3, 188, 94, 0, 931, 932, 7, 2, 0, 0, 932, 933, 5, 25, 0, 0, 933, 934, 3, 258, 129, 0, 934, 63, 1, 0, 0, 0, 935, 937, 5, 196, 0, 0, 936, 938, 5, 188, 0, 0, 937, 936, 1, 0, 0, 0, 937, 938, 1, 0, 0, 0, 938, 940, 1, 0, 0, 0, 939, 941, 3, 170, 85, 0, 940, 939, 1, 0, 0, 0, 940, 941, 1, 0, 0, 0, 941, 942, 1, 0, 0, 0, 942, 943, 3, 186, 93, 0, 943, 65, 1, 0, 0, 0, 944, 946, 5, 56, 0, 0, 945, 947, 5, 46, 0, 0, 946, 945, 1, 0, 0, 0, 946, 947, 1, 0, 0, 0, 947, 949, 1, 0, 0, 0, 948, 950, 7, 3, 0, 0, 949, 948, 1, 0, 0, 0, 949, 950, 1, 0, 0, 0, 950, 951, 1, 0, 0, 0, 951, 952, 3, 384, 192, 0, 952, 67, 1, 0, 0, 0, 953, 956, 3, 70, 35, 0, 954, 956, 3, 72, 36, 0, 955, 953, 1, 0, 0, 0, 955, 954, 1, 0, 0, 0, 956, 69, 1, 0, 0, 0, 957, 958, 5, 36, 0, 0, 958, 959, 5, 182, 0, 0, 959, 961, 3, 186, 93, 0, 960, 962, 3, 316, 158, 0, 961, 960, 1, 0, 0, 0, 961, 962, 1, 0, 0, 0, 962, 975, 1, 0, 0, 0, 963, 964, 5, 190, 0, 0, 964, 965, 5, 185, 0, 0, 965, 966, 5, 265, 0, 0, 966, 967, 3, 392, 196, 0, 967, 973, 5, 266, 0, 0, 968, 969, 5, 157, 0, 0, 969, 970, 5, 265, 0, 0, 970, 971, 3, 392, 196, 0, 971, 972, 5, 266, 0, 0, 972, 974, 1, 0, 0, 0, 973, 968, 1, 0, 0, 0, 973, 974, 1, 0, 0, 0, 974, 976, 1, 0, 0, 0, 975, 963, 1, 0, 0, 0, 975, 976, 1, 0, 0, 0, 976, 71, 1, 0, 0, 0, 977, 978, 5, 36, 0, 0, 978, 979, 5, 96, 0, 0, 979, 980, 5, 182, 0, 0, 980, 986, 3, 186, 93, 0, 981, 982, 5, 145, 0, 0, 982, 983, 5, 265, 0, 0, 983, 984, 3, 330, 165, 0, 984, 985, 5, 266, 0, 0, 985, 987, 1, 0, 0, 0, 986, 981, 1, 0, 0, 0, 986, 987, 1, 0, 0, 0, 987, 73, 1, 0, 0, 0, 988, 995, 3, 86, 43, 0, 989, 995, 3, 84, 42, 0, 990, 995, 3, 82, 41, 0, 991, 995, 3, 78, 39, 0, 992, 995, 3, 80, 40, 0, 993, 995, 3, 76, 38, 0, 994, 988, 1, 0, 0, 0, 994, 989, 1, 0, 0, 0, 994, 990, 1, 0, 0, 0, 994, 991, 1, 0, 0, 0, 994, 992, 1, 0, 0, 0, 994, 993, 1, 0, 0, 0, 995, 75, 1, 0, 0, 0, 996, 997, 5, 58, 0, 0, 997, 999, 7, 0, 0, 0, 998, 1000, 3, 170, 85, 0, 999, 998, 1, 0, 0, 0, 999, 1000, 1, 0, 0, 0, 1000, 1001, 1, 0, 0, 0, 1001, 1003, 3, 184, 92, 0, 1002, 1004, 7, 4, 0, 0, 1003, 1002, 1, 0, 0, 0, 1003, 1004, 1, 0, 0, 0, 1004, 77, 1, 0, 0, 0, 1005, 1006, 5, 58, 0, 0, 1006, 1008, 5, 212, 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, 1011, 3, 188, 94, 0, 1011, 79, 1, 0, 0, 0, 1012, 1013, 5, 58, 0, 0, 1013, 1015, 5, 188, 0, 0, 1014, 1016, 3, 170, 85, 0, 1015, 1014, 1, 0, 0, 0, 1015, 1016, 1, 0, 0, 0, 1016, 1017, 1, 0, 0, 0, 1017, 1019, 3, 186, 93, 0, 1018, 1020, 5, 22, 0, 0, 1019, 1018, 1, 0, 0, 0, 1019, 1020, 1, 0, 0, 0, 1020, 81, 1, 0, 0, 0, 1021, 1023, 5, 58, 0, 0, 1022, 1024, 5, 96, 0, 0, 1023, 1022, 1, 0, 0, 0, 1023, 1024, 1, 0, 0, 0, 1024, 1025, 1, 0, 0, 0, 1025, 1026, 5, 182, 0, 0, 1026, 1029, 3, 186, 93, 0, 1027, 1028, 5, 145, 0, 0, 1028, 1030, 3, 330, 165, 0, 1029, 1027, 1, 0, 0, 0, 1029, 1030, 1, 0, 0, 0, 1030, 83, 1, 0, 0, 0, 1031, 1033, 5, 58, 0, 0, 1032, 1034, 5, 12, 0, 0, 1033, 1032, 1, 0, 0, 0, 1033, 1034, 1, 0, 0, 0, 1034, 1035, 1, 0, 0, 0, 1035, 1037, 5, 84, 0, 0, 1036, 1038, 3, 170, 85, 0, 1037, 1036, 1, 0, 0, 0, 1037, 1038, 1, 0, 0, 0, 1038, 1039, 1, 0, 0, 0, 1039, 1052, 3, 190, 95, 0, 1040, 1049, 5, 265, 0, 0, 1041, 1046, 3, 356, 178, 0, 1042, 1043, 5, 263, 0, 0, 1043, 1045, 3, 356, 178, 0, 1044, 1042, 1, 0, 0, 0, 1045, 1048, 1, 0, 0, 0, 1046, 1044, 1, 0, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, 1050, 1, 0, 0, 0, 1048, 1046, 1, 0, 0, 0, 1049, 1041, 1, 0, 0, 0, 1049, 1050, 1, 0, 0, 0, 1050, 1051, 1, 0, 0, 0, 1051, 1053, 5, 266, 0, 0, 1052, 1040, 1, 0, 0, 0, 1052, 1053, 1, 0, 0, 0, 1053, 85, 1, 0, 0, 0, 1054, 1055, 5, 58, 0, 0, 1055, 1056, 5, 166, 0, 0, 1056, 1057, 3, 390, 195, 0, 1057, 87, 1, 0, 0, 0, 1058, 1061, 3, 90, 45, 0, 1059, 1061, 3, 92, 46, 0, 1060, 1058, 1, 0, 0, 0, 1060, 1059, 1, 0, 0, 0, 1061, 89, 1, 0, 0, 0, 1062, 1063, 5, 86, 0, 0, 1063, 1064, 5, 166, 0, 0, 1064, 1065, 3, 390, 195, 0, 1065, 1066, 5, 193, 0, 0, 1066, 1067, 5, 87, 0, 0, 1067, 1068, 3, 390, 195, 0, 1068, 91, 1, 0, 0, 0, 1069, 1070, 5, 86, 0, 0, 1070, 1071, 3, 380, 190, 0, 1071, 1072, 5, 136, 0, 0, 1072, 1074, 3, 382, 191, 0, 1073, 1075, 3, 384, 192, 0, 1074, 1073, 1, 0, 0, 0, 1074, 1075, 1, 0, 0, 0, 1075, 1076, 1, 0, 0, 0, 1076, 1077, 5, 193, 0, 0, 1077, 1078, 3, 388, 194, 0, 1078, 93, 1, 0, 0, 0, 1079, 1082, 3, 96, 48, 0, 1080, 1082, 3, 98, 49, 0, 1081, 1079, 1, 0, 0, 0, 1081, 1080, 1, 0, 0, 0, 1082, 95, 1, 0, 0, 0, 1083, 1084, 5, 161, 0, 0, 1084, 1085, 5, 166, 0, 0, 1085, 1086, 3, 390, 195, 0, 1086, 1087, 5, 82, 0, 0, 1087, 1088, 5, 87, 0, 0, 1088, 1089, 3, 390, 195, 0, 1089, 97, 1, 0, 0, 0, 1090, 1094, 5, 161, 0, 0, 1091, 1092, 5, 86, 0, 0, 1092, 1093, 5, 137, 0, 0, 1093, 1095, 5, 78, 0, 0, 1094, 1091, 1, 0, 0, 0, 1094, 1095, 1, 0, 0, 0, 1095, 1096, 1, 0, 0, 0, 1096, 1097, 3, 380, 190, 0, 1097, 1098, 5, 136, 0, 0, 1098, 1100, 3, 382, 191, 0, 1099, 1101, 3, 384, 192, 0, 1100, 1099, 1, 0, 0, 0, 1100, 1101, 1, 0, 0, 0, 1101, 1102, 1, 0, 0, 0, 1102, 1108, 5, 82, 0, 0, 1103, 1109, 3, 388, 194, 0, 1104, 1106, 5, 166, 0, 0, 1105, 1104, 1, 0, 0, 0, 1105, 1106, 1, 0, 0, 0, 1106, 1107, 1, 0, 0, 0, 1107, 1109, 3, 390, 195, 0, 1108, 1103, 1, 0, 0, 0, 1108, 1105, 1, 0, 0, 0, 1109, 99, 1, 0, 0, 0, 1110, 1112, 3, 214, 107, 0, 1111, 1110, 1, 0, 0, 0, 1111, 1112, 1, 0, 0, 0, 1112, 1113, 1, 0, 0, 0, 1113, 1114, 5, 99, 0, 0, 1114, 1116, 7, 5, 0, 0, 1115, 1117, 5, 188, 0, 0, 1116, 1115, 1, 0, 0, 0, 1116, 1117, 1, 0, 0, 0, 1117, 1118, 1, 0, 0, 0, 1118, 1120, 3, 186, 93, 0, 1119, 1121, 3, 316, 158, 0, 1120, 1119, 1, 0, 0, 0, 1120, 1121, 1, 0, 0, 0, 1121, 1134, 1, 0, 0, 0, 1122, 1123, 5, 145, 0, 0, 1123, 1124, 5, 265, 0, 0, 1124, 1129, 3, 330, 165, 0, 1125, 1126, 5, 263, 0, 0, 1126, 1128, 3, 330, 165, 0, 1127, 1125, 1, 0, 0, 0, 1128, 1131, 1, 0, 0, 0, 1129, 1127, 1, 0, 0, 0, 1129, 1130, 1, 0, 0, 0, 1130, 1132, 1, 0, 0, 0, 1131, 1129, 1, 0, 0, 0, 1132, 1133, 5, 266, 0, 0, 1133, 1135, 1, 0, 0, 0, 1134, 1122, 1, 0, 0, 0, 1134, 1135, 1, 0, 0, 0, 1135, 1136, 1, 0, 0, 0, 1136, 1137, 3, 212, 106, 0, 1137, 101, 1, 0, 0, 0, 1138, 1141, 3, 104, 52, 0, 1139, 1141, 3, 106, 53, 0, 1140, 1138, 1, 0, 0, 0, 1140, 1139, 1, 0, 0, 0, 1141, 103, 1, 0, 0, 0, 1142, 1144, 5, 50, 0, 0, 1143, 1145, 5, 82, 0, 0, 1144, 1143, 1, 0, 0, 0, 1144, 1145, 1, 0, 0, 0, 1145, 1146, 1, 0, 0, 0, 1146, 1148, 3, 186, 93, 0, 1147, 1149, 3, 280, 140, 0, 1148, 1147, 1, 0, 0, 0, 1148, 1149, 1, 0, 0, 0, 1149, 105, 1, 0, 0, 0, 1150, 1151, 5, 50, 0, 0, 1151, 1156, 3, 186, 93, 0, 1152, 1154, 5, 9, 0, 0, 1153, 1152, 1, 0, 0, 0, 1153, 1154, 1, 0, 0, 0, 1154, 1155, 1, 0, 0, 0, 1155, 1157, 3, 390, 195, 0, 1156, 1153, 1, 0, 0, 0, 1156, 1157, 1, 0, 0, 0, 1157, 1158, 1, 0, 0, 0, 1158, 1167, 5, 82, 0, 0, 1159, 1164, 3, 304, 152, 0, 1160, 1161, 5, 263, 0, 0, 1161, 1163, 3, 304, 152, 0, 1162, 1160, 1, 0, 0, 0, 1163, 1166, 1, 0, 0, 0, 1164, 1162, 1, 0, 0, 0, 1164, 1165, 1, 0, 0, 0, 1165, 1168, 1, 0, 0, 0, 1166, 1164, 1, 0, 0, 0, 1167, 1159, 1, 0, 0, 0, 1167, 1168, 1, 0, 0, 0, 1168, 1170, 1, 0, 0, 0, 1169, 1171, 3, 280, 140, 0, 1170, 1169, 1, 0, 0, 0, 1170, 1171, 1, 0, 0, 0, 1171, 107, 1, 0, 0, 0, 1172, 1173, 5, 54, 0, 0, 1173, 1174, 3, 186, 93, 0, 1174, 1175, 5, 176, 0, 0, 1175, 1185, 3, 204, 102, 0, 1176, 1177, 5, 82, 0, 0, 1177, 1182, 3, 304, 152, 0, 1178, 1179, 5, 263, 0, 0, 1179, 1181, 3, 304, 152, 0, 1180, 1178, 1, 0, 0, 0, 1181, 1184, 1, 0, 0, 0, 1182, 1180, 1, 0, 0, 0, 1182, 1183, 1, 0, 0, 0, 1183, 1186, 1, 0, 0, 0, 1184, 1182, 1, 0, 0, 0, 1185, 1176, 1, 0, 0, 0, 1185, 1186, 1, 0, 0, 0, 1186, 1188, 1, 0, 0, 0, 1187, 1189, 3, 280, 140, 0, 1188, 1187, 1, 0, 0, 0, 1188, 1189, 1, 0, 0, 0, 1189, 109, 1, 0, 0, 0, 1190, 1191, 5, 207, 0, 0, 1191, 1193, 5, 103, 0, 0, 1192, 1194, 5, 188, 0, 0, 1193, 1192, 1, 0, 0, 0, 1193, 1194, 1, 0, 0, 0, 1194, 1195, 1, 0, 0, 0, 1195, 1197, 3, 186, 93, 0, 1196, 1198, 3, 316, 158, 0, 1197, 1196, 1, 0, 0, 0, 1197, 1198, 1, 0, 0, 0, 1198, 1199, 1, 0, 0, 0, 1199, 1200, 3, 212, 106, 0, 1200, 111, 1, 0, 0, 0, 1201, 1214, 3, 132, 66, 0, 1202, 1214, 3, 134, 67, 0, 1203, 1214, 3, 136, 68, 0, 1204, 1214, 3, 130, 65, 0, 1205, 1214, 3, 128, 64, 0, 1206, 1214, 3, 126, 63, 0, 1207, 1214, 3, 124, 62, 0, 1208, 1214, 3, 122, 61, 0, 1209, 1214, 3, 120, 60, 0, 1210, 1214, 3, 118, 59, 0, 1211, 1214, 3, 116, 58, 0, 1212, 1214, 3, 114, 57, 0, 1213, 1201, 1, 0, 0, 0, 1213, 1202, 1, 0, 0, 0, 1213, 1203, 1, 0, 0, 0, 1213, 1204, 1, 0, 0, 0, 1213, 1205, 1, 0, 0, 0, 1213, 1206, 1, 0, 0, 0, 1213, 1207, 1, 0, 0, 0, 1213, 1208, 1, 0, 0, 0, 1213, 1209, 1, 0, 0, 0, 1213, 1210, 1, 0, 0, 0, 1213, 1211, 1, 0, 0, 0, 1213, 1212, 1, 0, 0, 0, 1214, 113, 1, 0, 0, 0, 1215, 1216, 5, 179, 0, 0, 1216, 1228, 7, 6, 0, 0, 1217, 1219, 5, 115, 0, 0, 1218, 1217, 1, 0, 0, 0, 1218, 1219, 1, 0, 0, 0, 1219, 1220, 1, 0, 0, 0, 1220, 1225, 3, 342, 171, 0, 1221, 1222, 5, 271, 0, 0, 1222, 1224, 3, 342, 171, 0, 1223, 1221, 1, 0, 0, 0, 1224, 1227, 1, 0, 0, 0, 1225, 1223, 1, 0, 0, 0, 1225, 1226, 1, 0, 0, 0, 1226, 1229, 1, 0, 0, 0, 1227, 1225, 1, 0, 0, 0, 1228, 1218, 1, 0, 0, 0, 1228, 1229, 1, 0, 0, 0, 1229, 115, 1, 0, 0, 0, 1230, 1231, 5, 179, 0, 0, 1231, 1234, 5, 189, 0, 0, 1232, 1233, 5, 94, 0, 0, 1233, 1235, 3, 186, 93, 0, 1234, 1232, 1, 0, 0, 0, 1234, 1235, 1, 0, 0, 0, 1235, 1247, 1, 0, 0, 0, 1236, 1238, 5, 115, 0, 0, 1237, 1236, 1, 0, 0, 0, 1237, 1238, 1, 0, 0, 0, 1238, 1239, 1, 0, 0, 0, 1239, 1244, 3, 342, 171, 0, 1240, 1241, 5, 271, 0, 0, 1241, 1243, 3, 342, 171, 0, 1242, 1240, 1, 0, 0, 0, 1243, 1246, 1, 0, 0, 0, 1244, 1242, 1, 0, 0, 0, 1244, 1245, 1, 0, 0, 0, 1245, 1248, 1, 0, 0, 0, 1246, 1244, 1, 0, 0, 0, 1247, 1237, 1, 0, 0, 0, 1247, 1248, 1, 0, 0, 0, 1248, 117, 1, 0, 0, 0, 1249, 1251, 5, 179, 0, 0, 1250, 1252, 7, 7, 0, 0, 1251, 1250, 1, 0, 0, 0, 1251, 1252, 1, 0, 0, 0, 1252, 1253, 1, 0, 0, 0, 1253, 1256, 5, 85, 0, 0, 1254, 1255, 5, 94, 0, 0, 1255, 1257, 3, 184, 92, 0, 1256, 1254, 1, 0, 0, 0, 1256, 1257, 1, 0, 0, 0, 1257, 1269, 1, 0, 0, 0, 1258, 1260, 5, 115, 0, 0, 1259, 1258, 1, 0, 0, 0, 1259, 1260, 1, 0, 0, 0, 1260, 1261, 1, 0, 0, 0, 1261, 1266, 3, 342, 171, 0, 1262, 1263, 5, 271, 0, 0, 1263, 1265, 3, 342, 171, 0, 1264, 1262, 1, 0, 0, 0, 1265, 1268, 1, 0, 0, 0, 1266, 1264, 1, 0, 0, 0, 1266, 1267, 1, 0, 0, 0, 1267, 1270, 1, 0, 0, 0, 1268, 1266, 1, 0, 0, 0, 1269, 1259, 1, 0, 0, 0, 1269, 1270, 1, 0, 0, 0, 1270, 119, 1, 0, 0, 0, 1271, 1272, 5, 179, 0, 0, 1272, 1273, 5, 37, 0, 0, 1273, 1274, 5, 188, 0, 0, 1274, 1275, 3, 186, 93, 0, 1275, 121, 1, 0, 0, 0, 1276, 1277, 5, 179, 0, 0, 1277, 1278, 5, 37, 0, 0, 1278, 1279, 5, 212, 0, 0, 1279, 1280, 3, 188, 94, 0, 1280, 123, 1, 0, 0, 0, 1281, 1282, 5, 179, 0, 0, 1282, 1283, 5, 188, 0, 0, 1283, 1284, 5, 182, 0, 0, 1284, 1285, 3, 186, 93, 0, 1285, 125, 1, 0, 0, 0, 1286, 1287, 5, 179, 0, 0, 1287, 1288, 5, 32, 0, 0, 1288, 1289, 5, 182, 0, 0, 1289, 1290, 3, 186, 93, 0, 1290, 127, 1, 0, 0, 0, 1291, 1293, 5, 179, 0, 0, 1292, 1294, 5, 154, 0, 0, 1293, 1292, 1, 0, 0, 0, 1293, 1294, 1, 0, 0, 0, 1294, 1295, 1, 0, 0, 0, 1295, 1296, 5, 146, 0, 0, 1296, 1297, 3, 186, 93, 0, 1297, 129, 1, 0, 0, 0, 1298, 1299, 5, 179, 0, 0, 1299, 1300, 5, 73, 0, 0, 1300, 1301, 5, 94, 0, 0, 1301, 1311, 3, 186, 93, 0, 1302, 1303, 5, 145, 0, 0, 1303, 1304, 5, 265, 0, 0, 1304, 1307, 3, 330, 165, 0, 1305, 1306, 5, 263, 0, 0, 1306, 1308, 3, 330, 165, 0, 1307, 1305, 1, 0, 0, 0, 1307, 1308, 1, 0, 0, 0, 1308, 1309, 1, 0, 0, 0, 1309, 1310, 5, 266, 0, 0, 1310, 1312, 1, 0, 0, 0, 1311, 1302, 1, 0, 0, 0, 1311, 1312, 1, 0, 0, 0, 1312, 131, 1, 0, 0, 0, 1313, 1315, 5, 179, 0, 0, 1314, 1316, 5, 39, 0, 0, 1315, 1314, 1, 0, 0, 0, 1315, 1316, 1, 0, 0, 0, 1316, 1317, 1, 0, 0, 0, 1317, 1318, 5, 167, 0, 0, 1318, 133, 1, 0, 0, 0, 1319, 1320, 5, 179, 0, 0, 1320, 1321, 5, 166, 0, 0, 1321, 1322, 5, 86, 0, 0, 1322, 1323, 5, 87, 0, 0, 1323, 1324, 3, 390, 195, 0, 1324, 135, 1, 0, 0, 0, 1325, 1340, 3, 138, 69, 0, 1326, 1340, 3, 140, 70, 0, 1327, 1340, 3, 142, 71, 0, 1328, 1329, 5, 179, 0, 0, 1329, 1330, 5, 86, 0, 0, 1330, 1331, 7, 8, 0, 0, 1331, 1337, 3, 390, 195, 0, 1332, 1333, 5, 136, 0, 0, 1333, 1335, 7, 9, 0, 0, 1334, 1336, 3, 384, 192, 0, 1335, 1334, 1, 0, 0, 0, 1335, 1336, 1, 0, 0, 0, 1336, 1338, 1, 0, 0, 0, 1337, 1332, 1, 0, 0, 0, 1337, 1338, 1, 0, 0, 0, 1338, 1340, 1, 0, 0, 0, 1339, 1325, 1, 0, 0, 0, 1339, 1326, 1, 0, 0, 0, 1339, 1327, 1, 0, 0, 0, 1339, 1328, 1, 0, 0, 0, 1340, 137, 1, 0, 0, 0, 1341, 1342, 5, 179, 0, 0, 1342, 1343, 5, 86, 0, 0, 1343, 1344, 7, 8, 0, 0, 1344, 1350, 3, 390, 195, 0, 1345, 1346, 5, 136, 0, 0, 1346, 1348, 5, 46, 0, 0, 1347, 1349, 3, 184, 92, 0, 1348, 1347, 1, 0, 0, 0, 1348, 1349, 1, 0, 0, 0, 1349, 1351, 1, 0, 0, 0, 1350, 1345, 1, 0, 0, 0, 1350, 1351, 1, 0, 0, 0, 1351, 139, 1, 0, 0, 0, 1352, 1353, 5, 179, 0, 0, 1353, 1354, 5, 86, 0, 0, 1354, 1355, 7, 8, 0, 0, 1355, 1361, 3, 390, 195, 0, 1356, 1357, 5, 136, 0, 0, 1357, 1359, 5, 188, 0, 0, 1358, 1360, 3, 186, 93, 0, 1359, 1358, 1, 0, 0, 0, 1359, 1360, 1, 0, 0, 0, 1360, 1362, 1, 0, 0, 0, 1361, 1356, 1, 0, 0, 0, 1361, 1362, 1, 0, 0, 0, 1362, 141, 1, 0, 0, 0, 1363, 1364, 5, 179, 0, 0, 1364, 1365, 5, 86, 0, 0, 1365, 1366, 7, 8, 0, 0, 1366, 1372, 3, 390, 195, 0, 1367, 1368, 5, 136, 0, 0, 1368, 1370, 5, 32, 0, 0, 1369, 1371, 3, 194, 97, 0, 1370, 1369, 1, 0, 0, 0, 1370, 1371, 1, 0, 0, 0, 1371, 1373, 1, 0, 0, 0, 1372, 1367, 1, 0, 0, 0, 1372, 1373, 1, 0, 0, 0, 1373, 143, 1, 0, 0, 0, 1374, 1378, 3, 146, 73, 0, 1375, 1378, 3, 148, 74, 0, 1376, 1378, 3, 150, 75, 0, 1377, 1374, 1, 0, 0, 0, 1377, 1375, 1, 0, 0, 0, 1377, 1376, 1, 0, 0, 0, 1378, 145, 1, 0, 0, 0, 1379, 1380, 5, 34, 0, 0, 1380, 1381, 5, 136, 0, 0, 1381, 1382, 5, 46, 0, 0, 1382, 1383, 3, 184, 92, 0, 1383, 1386, 5, 108, 0, 0, 1384, 1387, 3, 342, 171, 0, 1385, 1387, 5, 133, 0, 0, 1386, 1384, 1, 0, 0, 0, 1386, 1385, 1, 0, 0, 0, 1387, 147, 1, 0, 0, 0, 1388, 1389, 5, 34, 0, 0, 1389, 1390, 5, 136, 0, 0, 1390, 1391, 5, 188, 0, 0, 1391, 1392, 3, 186, 93, 0, 1392, 1395, 5, 108, 0, 0, 1393, 1396, 3, 342, 171, 0, 1394, 1396, 5, 133, 0, 0, 1395, 1393, 1, 0, 0, 0, 1395, 1394, 1, 0, 0, 0, 1396, 149, 1, 0, 0, 0, 1397, 1398, 5, 34, 0, 0, 1398, 1399, 5, 136, 0, 0, 1399, 1400, 5, 32, 0, 0, 1400, 1401, 3, 194, 97, 0, 1401, 1404, 5, 108, 0, 0, 1402, 1405, 3, 342, 171, 0, 1403, 1405, 5, 133, 0, 0, 1404, 1402, 1, 0, 0, 0, 1404, 1403, 1, 0, 0, 0, 1405, 151, 1, 0, 0, 0, 1406, 1407, 5, 67, 0, 0, 1407, 1408, 3, 4, 2, 0, 1408, 153, 1, 0, 0, 0, 1409, 1415, 5, 176, 0, 0, 1410, 1416, 5, 2, 0, 0, 1411, 1412, 3, 390, 195, 0, 1412, 1413, 5, 249, 0, 0, 1413, 1414, 3, 330, 165, 0, 1414, 1416, 1, 0, 0, 0, 1415, 1410, 1, 0, 0, 0, 1415, 1411, 1, 0, 0, 0, 1415, 1416, 1, 0, 0, 0, 1416, 155, 1, 0, 0, 0, 1417, 1418, 5, 264, 0, 0, 1418, 1419, 5, 180, 0, 0, 1419, 1429, 5, 265, 0, 0, 1420, 1422, 3, 342, 171, 0, 1421, 1420, 1, 0, 0, 0, 1421, 1422, 1, 0, 0, 0, 1422, 1430, 1, 0, 0, 0, 1423, 1426, 3, 342, 171, 0, 1424, 1425, 5, 263, 0, 0, 1425, 1427, 3, 330, 165, 0, 1426, 1424, 1, 0, 0, 0, 1426, 1427, 1, 0, 0, 0, 1427, 1430, 1, 0, 0, 0, 1428, 1430, 3, 330, 165, 0, 1429, 1421, 1, 0, 0, 0, 1429, 1423, 1, 0, 0, 0, 1429, 1428, 1, 0, 0, 0, 1430, 1431, 1, 0, 0, 0, 1431, 1432, 5, 266, 0, 0, 1432, 157, 1, 0, 0, 0, 1433, 1434, 5, 107, 0, 0, 1434, 1435, 5, 121, 0, 0, 1435, 1436, 3, 186, 93, 0, 1436, 159, 1, 0, 0, 0, 1437, 1438, 5, 118, 0, 0, 1438, 1439, 5, 45, 0, 0, 1439, 1440, 5, 98, 0, 0, 1440, 1442, 5, 274, 0, 0, 1441, 1443, 5, 144, 0, 0, 1442, 1441, 1, 0, 0, 0, 1442, 1443, 1, 0, 0, 0, 1443, 1444, 1, 0, 0, 0, 1444, 1445, 5, 103, 0, 0, 1445, 1446, 5, 188, 0, 0, 1446, 1456, 3, 186, 93, 0, 1447, 1448, 5, 145, 0, 0, 1448, 1449, 5, 265, 0, 0, 1449, 1452, 3, 330, 165, 0, 1450, 1451, 5, 263, 0, 0, 1451, 1453, 3, 330, 165, 0, 1452, 1450, 1, 0, 0, 0, 1452, 1453, 1, 0, 0, 0, 1453, 1454, 1, 0, 0, 0, 1454, 1455, 5, 266, 0, 0, 1455, 1457, 1, 0, 0, 0, 1456, 1447, 1, 0, 0, 0, 1456, 1457, 1, 0, 0, 0, 1457, 161, 1, 0, 0, 0, 1458, 1462, 3, 164, 82, 0, 1459, 1462, 3, 166, 83, 0, 1460, 1462, 3, 168, 84, 0, 1461, 1458, 1, 0, 0, 0, 1461, 1459, 1, 0, 0, 0, 1461, 1460, 1, 0, 0, 0, 1462, 163, 1, 0, 0, 0, 1463, 1464, 5, 162, 0, 0, 1464, 1477, 3, 186, 93, 0, 1465, 1466, 5, 145, 0, 0, 1466, 1467, 5, 265, 0, 0, 1467, 1472, 3, 330, 165, 0, 1468, 1469, 5, 263, 0, 0, 1469, 1471, 3, 330, 165, 0, 1470, 1468, 1, 0, 0, 0, 1471, 1474, 1, 0, 0, 0, 1472, 1473, 1, 0, 0, 0, 1472, 1470, 1, 0, 0, 0, 1473, 1475, 1, 0, 0, 0, 1474, 1472, 1, 0, 0, 0, 1475, 1476, 5, 266, 0, 0, 1476, 1478, 1, 0, 0, 0, 1477, 1465, 1, 0, 0, 0, 1477, 1478, 1, 0, 0, 0, 1478, 165, 1, 0, 0, 0, 1479, 1480, 5, 162, 0, 0, 1480, 1481, 5, 13, 0, 0, 1481, 167, 1, 0, 0, 0, 1482, 1483, 5, 162, 0, 0, 1483, 1484, 5, 85, 0, 0, 1484, 1485, 3, 190, 95, 0, 1485, 169, 1, 0, 0, 0, 1486, 1487, 5, 93, 0, 0, 1487, 1488, 5, 66, 0, 0, 1488, 171, 1, 0, 0, 0, 1489, 1490, 5, 93, 0, 0, 1490, 1491, 5, 132, 0, 0, 1491, 1492, 5, 66, 0, 0, 1492, 173, 1, 0, 0, 0, 1493, 1494, 3, 384, 192, 0, 1494, 175, 1, 0, 0, 0, 1495, 1496, 3, 384, 192, 0, 1496, 177, 1, 0, 0, 0, 1497, 1498, 3, 384, 192, 0, 1498, 179, 1, 0, 0, 0, 1499, 1500, 3, 384, 192, 0, 1500, 181, 1, 0, 0, 0, 1501, 1502, 3, 384, 192, 0, 1502, 183, 1, 0, 0, 0, 1503, 1504, 3, 384, 192, 0, 1504, 185, 1, 0, 0, 0, 1505, 1510, 3, 390, 195, 0, 1506, 1507, 5, 261, 0, 0, 1507, 1509, 3, 390, 195, 0, 1508, 1506, 1, 0, 0, 0, 1509, 1512, 1, 0, 0, 0, 1510, 1508, 1, 0, 0, 0, 1510, 1511, 1, 0, 0, 0, 1511, 187, 1, 0, 0, 0, 1512, 1510, 1, 0, 0, 0, 1513, 1518, 3, 390, 195, 0, 1514, 1515, 5, 261, 0, 0, 1515, 1517, 3, 390, 195, 0, 1516, 1514, 1, 0, 0, 0, 1517, 1520, 1, 0, 0, 0, 1518, 1516, 1, 0, 0, 0, 1518, 1519, 1, 0, 0, 0, 1519, 189, 1, 0, 0, 0, 1520, 1518, 1, 0, 0, 0, 1521, 1524, 3, 394, 197, 0, 1522, 1524, 3, 384, 192, 0, 1523, 1521, 1, 0, 0, 0, 1523, 1522, 1, 0, 0, 0, 1524, 191, 1, 0, 0, 0, 1525, 1526, 1, 0, 0, 0, 1526, 193, 1, 0, 0, 0, 1527, 1528, 4, 97, 0, 0, 1528, 1531, 3, 192, 96, 0, 1529, 1531, 3, 386, 193, 0, 1530, 1527, 1, 0, 0, 0, 1530, 1529, 1, 0, 0, 0, 1531, 195, 1, 0, 0, 0, 1532, 1533, 3, 384, 192, 0, 1533, 197, 1, 0, 0, 0, 1534, 1535, 4, 99, 1, 0, 1535, 1538, 3, 192, 96, 0, 1536, 1538, 3, 386, 193, 0, 1537, 1534, 1, 0, 0, 0, 1537, 1536, 1, 0, 0, 0, 1538, 199, 1, 0, 0, 0, 1539, 1542, 3, 186, 93, 0, 1540, 1542, 3, 188, 94, 0, 1541, 1539, 1, 0, 0, 0, 1541, 1540, 1, 0, 0, 0, 1542, 201, 1, 0, 0, 0, 1543, 1544, 5, 21, 0, 0, 1544, 1545, 5, 26, 0, 0, 1545, 1547, 3, 316, 158, 0, 1546, 1543, 1, 0, 0, 0, 1546, 1547, 1, 0, 0, 0, 1547, 1549, 1, 0, 0, 0, 1548, 1550, 3, 228, 114, 0, 1549, 1548, 1, 0, 0, 0, 1549, 1550, 1, 0, 0, 0, 1550, 1554, 1, 0, 0, 0, 1551, 1552, 5, 168, 0, 0, 1552, 1553, 5, 79, 0, 0, 1553, 1555, 3, 264, 132, 0, 1554, 1551, 1, 0, 0, 0, 1554, 1555, 1, 0, 0, 0, 1555, 1559, 1, 0, 0, 0, 1556, 1557, 5, 216, 0, 0, 1557, 1558, 5, 175, 0, 0, 1558, 1560, 3, 258, 129, 0, 1559, 1556, 1, 0, 0, 0, 1559, 1560, 1, 0, 0, 0, 1560, 1564, 1, 0, 0, 0, 1561, 1562, 5, 23, 0, 0, 1562, 1563, 5, 9, 0, 0, 1563, 1565, 3, 240, 120, 0, 1564, 1561, 1, 0, 0, 0, 1564, 1565, 1, 0, 0, 0, 1565, 1568, 1, 0, 0, 0, 1566, 1567, 5, 24, 0, 0, 1567, 1569, 3, 342, 171, 0, 1568, 1566, 1, 0, 0, 0, 1568, 1569, 1, 0, 0, 0, 1569, 1580, 1, 0, 0, 0, 1570, 1571, 5, 30, 0, 0, 1571, 1572, 5, 94, 0, 0, 1572, 1577, 3, 384, 192, 0, 1573, 1574, 5, 216, 0, 0, 1574, 1575, 5, 151, 0, 0, 1575, 1576, 5, 249, 0, 0, 1576, 1578, 5, 277, 0, 0, 1577, 1573, 1, 0, 0, 0, 1577, 1578, 1, 0, 0, 0, 1578, 1581, 1, 0, 0, 0, 1579, 1581, 5, 197, 0, 0, 1580, 1570, 1, 0, 0, 0, 1580, 1579, 1, 0, 0, 0, 1580, 1581, 1, 0, 0, 0, 1581, 1584, 1, 0, 0, 0, 1582, 1583, 5, 25, 0, 0, 1583, 1585, 3, 258, 129, 0, 1584, 1582, 1, 0, 0, 0, 1584, 1585, 1, 0, 0, 0, 1585, 203, 1, 0, 0, 0, 1586, 1591, 3, 206, 103, 0, 1587, 1588, 5, 263, 0, 0, 1588, 1590, 3, 206, 103, 0, 1589, 1587, 1, 0, 0, 0, 1590, 1593, 1, 0, 0, 0, 1591, 1589, 1, 0, 0, 0, 1591, 1592, 1, 0, 0, 0, 1592, 205, 1, 0, 0, 0, 1593, 1591, 1, 0, 0, 0, 1594, 1595, 3, 384, 192, 0, 1595, 1596, 5, 249, 0, 0, 1596, 1597, 3, 330, 165, 0, 1597, 207, 1, 0, 0, 0, 1598, 1600, 5, 265, 0, 0, 1599, 1601, 3, 210, 105, 0, 1600, 1599, 1, 0, 0, 0, 1600, 1601, 1, 0, 0, 0, 1601, 1608, 1, 0, 0, 0, 1602, 1604, 5, 263, 0, 0, 1603, 1605, 3, 210, 105, 0, 1604, 1603, 1, 0, 0, 0, 1604, 1605, 1, 0, 0, 0, 1605, 1607, 1, 0, 0, 0, 1606, 1602, 1, 0, 0, 0, 1607, 1610, 1, 0, 0, 0, 1608, 1606, 1, 0, 0, 0, 1608, 1609, 1, 0, 0, 0, 1609, 1611, 1, 0, 0, 0, 1610, 1608, 1, 0, 0, 0, 1611, 1612, 5, 266, 0, 0, 1612, 209, 1, 0, 0, 0, 1613, 1615, 3, 182, 91, 0, 1614, 1616, 3, 228, 114, 0, 1615, 1614, 1, 0, 0, 0, 1615, 1616, 1, 0, 0, 0, 1616, 211, 1, 0, 0, 0, 1617, 1619, 3, 214, 107, 0, 1618, 1617, 1, 0, 0, 0, 1618, 1619, 1, 0, 0, 0, 1619, 1620, 1, 0, 0, 0, 1620, 1621, 3, 268, 134, 0, 1621, 213, 1, 0, 0, 0, 1622, 1623, 5, 216, 0, 0, 1623, 1628, 3, 290, 145, 0, 1624, 1625, 5, 263, 0, 0, 1625, 1627, 3, 290, 145, 0, 1626, 1624, 1, 0, 0, 0, 1627, 1630, 1, 0, 0, 0, 1628, 1626, 1, 0, 0, 0, 1628, 1629, 1, 0, 0, 0, 1629, 215, 1, 0, 0, 0, 1630, 1628, 1, 0, 0, 0, 1631, 1632, 5, 150, 0, 0, 1632, 1633, 5, 110, 0, 0, 1633, 1635, 3, 316, 158, 0, 1634, 1636, 5, 53, 0, 0, 1635, 1634, 1, 0, 0, 0, 1635, 1636, 1, 0, 0, 0, 1636, 1640, 1, 0, 0, 0, 1637, 1641, 5, 225, 0, 0, 1638, 1639, 5, 263, 0, 0, 1639, 1641, 5, 225, 0, 0, 1640, 1637, 1, 0, 0, 0, 1640, 1638, 1, 0, 0, 0, 1640, 1641, 1, 0, 0, 0, 1641, 1645, 1, 0, 0, 0, 1642, 1646, 5, 226, 0, 0, 1643, 1644, 5, 263, 0, 0, 1644, 1646, 5, 226, 0, 0, 1645, 1642, 1, 0, 0, 0, 1645, 1643, 1, 0, 0, 0, 1645, 1646, 1, 0, 0, 0, 1646, 1659, 1, 0, 0, 0, 1647, 1648, 5, 263, 0, 0, 1648, 1651, 3, 218, 109, 0, 1649, 1651, 3, 218, 109, 0, 1650, 1647, 1, 0, 0, 0, 1650, 1649, 1, 0, 0, 0, 1651, 1656, 1, 0, 0, 0, 1652, 1653, 5, 263, 0, 0, 1653, 1655, 3, 218, 109, 0, 1654, 1652, 1, 0, 0, 0, 1655, 1658, 1, 0, 0, 0, 1656, 1657, 1, 0, 0, 0, 1656, 1654, 1, 0, 0, 0, 1657, 1660, 1, 0, 0, 0, 1658, 1656, 1, 0, 0, 0, 1659, 1650, 1, 0, 0, 0, 1659, 1660, 1, 0, 0, 0, 1660, 217, 1, 0, 0, 0, 1661, 1662, 5, 81, 0, 0, 1662, 1663, 5, 110, 0, 0, 1663, 1664, 3, 316, 158, 0, 1664, 1665, 5, 224, 0, 0, 1665, 1666, 3, 186, 93, 0, 1666, 1668, 3, 316, 158, 0, 1667, 1669, 5, 53, 0, 0, 1668, 1667, 1, 0, 0, 0, 1668, 1669, 1, 0, 0, 0, 1669, 1671, 1, 0, 0, 0, 1670, 1672, 5, 225, 0, 0, 1671, 1670, 1, 0, 0, 0, 1671, 1672, 1, 0, 0, 0, 1672, 1674, 1, 0, 0, 0, 1673, 1675, 5, 226, 0, 0, 1674, 1673, 1, 0, 0, 0, 1674, 1675, 1, 0, 0, 0, 1675, 219, 1, 0, 0, 0, 1676, 1677, 3, 194, 97, 0, 1677, 1680, 3, 356, 178, 0, 1678, 1679, 5, 34, 0, 0, 1679, 1681, 3, 342, 171, 0, 1680, 1678, 1, 0, 0, 0, 1680, 1681, 1, 0, 0, 0, 1681, 221, 1, 0, 0, 0, 1682, 1683, 3, 182, 91, 0, 1683, 1685, 3, 356, 178, 0, 1684, 1686, 3, 228, 114, 0, 1685, 1684, 1, 0, 0, 0, 1685, 1686, 1, 0, 0, 0, 1686, 223, 1, 0, 0, 0, 1687, 1688, 3, 226, 113, 0, 1688, 225, 1, 0, 0, 0, 1689, 1690, 3, 182, 91, 0, 1690, 1698, 3, 356, 178, 0, 1691, 1695, 3, 234, 117, 0, 1692, 1694, 3, 234, 117, 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, 1701, 1, 0, 0, 0, 1700, 1702, 3, 228, 114, 0, 1701, 1700, 1, 0, 0, 0, 1701, 1702, 1, 0, 0, 0, 1702, 1705, 1, 0, 0, 0, 1703, 1704, 5, 150, 0, 0, 1704, 1706, 5, 110, 0, 0, 1705, 1703, 1, 0, 0, 0, 1705, 1706, 1, 0, 0, 0, 1706, 227, 1, 0, 0, 0, 1707, 1708, 5, 34, 0, 0, 1708, 1709, 3, 342, 171, 0, 1709, 229, 1, 0, 0, 0, 1710, 1718, 3, 220, 110, 0, 1711, 1715, 3, 234, 117, 0, 1712, 1714, 3, 234, 117, 0, 1713, 1712, 1, 0, 0, 0, 1714, 1717, 1, 0, 0, 0, 1715, 1716, 1, 0, 0, 0, 1715, 1713, 1, 0, 0, 0, 1716, 1719, 1, 0, 0, 0, 1717, 1715, 1, 0, 0, 0, 1718, 1711, 1, 0, 0, 0, 1718, 1719, 1, 0, 0, 0, 1719, 231, 1, 0, 0, 0, 1720, 1721, 3, 182, 91, 0, 1721, 1724, 3, 356, 178, 0, 1722, 1723, 5, 34, 0, 0, 1723, 1725, 3, 342, 171, 0, 1724, 1722, 1, 0, 0, 0, 1724, 1725, 1, 0, 0, 0, 1725, 1733, 1, 0, 0, 0, 1726, 1730, 3, 234, 117, 0, 1727, 1729, 3, 234, 117, 0, 1728, 1727, 1, 0, 0, 0, 1729, 1732, 1, 0, 0, 0, 1730, 1731, 1, 0, 0, 0, 1730, 1728, 1, 0, 0, 0, 1731, 1734, 1, 0, 0, 0, 1732, 1730, 1, 0, 0, 0, 1733, 1726, 1, 0, 0, 0, 1733, 1734, 1, 0, 0, 0, 1734, 233, 1, 0, 0, 0, 1735, 1737, 5, 132, 0, 0, 1736, 1735, 1, 0, 0, 0, 1736, 1737, 1, 0, 0, 0, 1737, 1738, 1, 0, 0, 0, 1738, 1741, 5, 133, 0, 0, 1739, 1741, 3, 236, 118, 0, 1740, 1736, 1, 0, 0, 0, 1740, 1739, 1, 0, 0, 0, 1741, 235, 1, 0, 0, 0, 1742, 1743, 5, 60, 0, 0, 1743, 1751, 3, 330, 165, 0, 1744, 1745, 5, 35, 0, 0, 1745, 1751, 3, 330, 165, 0, 1746, 1747, 5, 51, 0, 0, 1747, 1751, 3, 330, 165, 0, 1748, 1749, 5, 16, 0, 0, 1749, 1751, 3, 392, 196, 0, 1750, 1742, 1, 0, 0, 0, 1750, 1744, 1, 0, 0, 0, 1750, 1746, 1, 0, 0, 0, 1750, 1748, 1, 0, 0, 0, 1751, 237, 1, 0, 0, 0, 1752, 1753, 7, 10, 0, 0, 1753, 239, 1, 0, 0, 0, 1754, 1755, 7, 11, 0, 0, 1755, 241, 1, 0, 0, 0, 1756, 1761, 3, 244, 122, 0, 1757, 1758, 5, 263, 0, 0, 1758, 1760, 3, 244, 122, 0, 1759, 1757, 1, 0, 0, 0, 1760, 1763, 1, 0, 0, 0, 1761, 1762, 1, 0, 0, 0, 1761, 1759, 1, 0, 0, 0, 1762, 1766, 1, 0, 0, 0, 1763, 1761, 1, 0, 0, 0, 1764, 1765, 5, 263, 0, 0, 1765, 1767, 3, 246, 123, 0, 1766, 1764, 1, 0, 0, 0, 1766, 1767, 1, 0, 0, 0, 1767, 1770, 1, 0, 0, 0, 1768, 1770, 3, 246, 123, 0, 1769, 1756, 1, 0, 0, 0, 1769, 1768, 1, 0, 0, 0, 1770, 243, 1, 0, 0, 0, 1771, 1773, 5, 89, 0, 0, 1772, 1774, 3, 316, 158, 0, 1773, 1772, 1, 0, 0, 0, 1773, 1774, 1, 0, 0, 0, 1774, 1775, 1, 0, 0, 0, 1775, 1776, 5, 146, 0, 0, 1776, 1777, 3, 392, 196, 0, 1777, 245, 1, 0, 0, 0, 1778, 1780, 5, 154, 0, 0, 1779, 1781, 3, 316, 158, 0, 1780, 1779, 1, 0, 0, 0, 1780, 1781, 1, 0, 0, 0, 1781, 1782, 1, 0, 0, 0, 1782, 1783, 5, 265, 0, 0, 1783, 1784, 5, 145, 0, 0, 1784, 1790, 3, 248, 124, 0, 1785, 1786, 5, 263, 0, 0, 1786, 1787, 5, 145, 0, 0, 1787, 1789, 3, 248, 124, 0, 1788, 1785, 1, 0, 0, 0, 1789, 1792, 1, 0, 0, 0, 1790, 1791, 1, 0, 0, 0, 1790, 1788, 1, 0, 0, 0, 1791, 1793, 1, 0, 0, 0, 1792, 1790, 1, 0, 0, 0, 1793, 1794, 5, 266, 0, 0, 1794, 247, 1, 0, 0, 0, 1795, 1796, 5, 210, 0, 0, 1796, 1797, 3, 254, 127, 0, 1797, 1798, 3, 330, 165, 0, 1798, 1811, 1, 0, 0, 0, 1799, 1800, 3, 330, 165, 0, 1800, 1801, 3, 252, 126, 0, 1801, 1803, 1, 0, 0, 0, 1802, 1799, 1, 0, 0, 0, 1802, 1803, 1, 0, 0, 0, 1803, 1804, 1, 0, 0, 0, 1804, 1808, 5, 211, 0, 0, 1805, 1806, 3, 252, 126, 0, 1806, 1807, 3, 330, 165, 0, 1807, 1809, 1, 0, 0, 0, 1808, 1805, 1, 0, 0, 0, 1808, 1809, 1, 0, 0, 0, 1809, 1811, 1, 0, 0, 0, 1810, 1795, 1, 0, 0, 0, 1810, 1802, 1, 0, 0, 0, 1811, 249, 1, 0, 0, 0, 1812, 1813, 5, 30, 0, 0, 1813, 1814, 5, 94, 0, 0, 1814, 1819, 3, 390, 195, 0, 1815, 1816, 5, 216, 0, 0, 1816, 1817, 5, 151, 0, 0, 1817, 1818, 5, 249, 0, 0, 1818, 1820, 3, 392, 196, 0, 1819, 1815, 1, 0, 0, 0, 1819, 1820, 1, 0, 0, 0, 1820, 1823, 1, 0, 0, 0, 1821, 1823, 5, 197, 0, 0, 1822, 1812, 1, 0, 0, 0, 1822, 1821, 1, 0, 0, 0, 1823, 251, 1, 0, 0, 0, 1824, 1830, 1, 0, 0, 0, 1825, 1830, 5, 251, 0, 0, 1826, 1830, 5, 252, 0, 0, 1827, 1830, 5, 253, 0, 0, 1828, 1830, 5, 254, 0, 0, 1829, 1824, 1, 0, 0, 0, 1829, 1825, 1, 0, 0, 0, 1829, 1826, 1, 0, 0, 0, 1829, 1827, 1, 0, 0, 0, 1829, 1828, 1, 0, 0, 0, 1830, 253, 1, 0, 0, 0, 1831, 1840, 5, 249, 0, 0, 1832, 1840, 5, 250, 0, 0, 1833, 1840, 5, 115, 0, 0, 1834, 1840, 5, 164, 0, 0, 1835, 1840, 5, 163, 0, 0, 1836, 1840, 5, 15, 0, 0, 1837, 1840, 5, 94, 0, 0, 1838, 1840, 3, 252, 126, 0, 1839, 1831, 1, 0, 0, 0, 1839, 1832, 1, 0, 0, 0, 1839, 1833, 1, 0, 0, 0, 1839, 1834, 1, 0, 0, 0, 1839, 1835, 1, 0, 0, 0, 1839, 1836, 1, 0, 0, 0, 1839, 1837, 1, 0, 0, 0, 1839, 1838, 1, 0, 0, 0, 1840, 255, 1, 0, 0, 0, 1841, 1842, 5, 115, 0, 0, 1842, 1845, 3, 384, 192, 0, 1843, 1844, 7, 12, 0, 0, 1844, 1846, 5, 153, 0, 0, 1845, 1843, 1, 0, 0, 0, 1845, 1846, 1, 0, 0, 0, 1846, 257, 1, 0, 0, 0, 1847, 1848, 5, 265, 0, 0, 1848, 1853, 3, 266, 133, 0, 1849, 1850, 5, 263, 0, 0, 1850, 1852, 3, 266, 133, 0, 1851, 1849, 1, 0, 0, 0, 1852, 1855, 1, 0, 0, 0, 1853, 1851, 1, 0, 0, 0, 1853, 1854, 1, 0, 0, 0, 1854, 1856, 1, 0, 0, 0, 1855, 1853, 1, 0, 0, 0, 1856, 1857, 5, 266, 0, 0, 1857, 259, 1, 0, 0, 0, 1858, 1859, 5, 265, 0, 0, 1859, 1864, 3, 220, 110, 0, 1860, 1861, 5, 263, 0, 0, 1861, 1863, 3, 220, 110, 0, 1862, 1860, 1, 0, 0, 0, 1863, 1866, 1, 0, 0, 0, 1864, 1865, 1, 0, 0, 0, 1864, 1862, 1, 0, 0, 0, 1865, 1867, 1, 0, 0, 0, 1866, 1864, 1, 0, 0, 0, 1867, 1868, 5, 266, 0, 0, 1868, 261, 1, 0, 0, 0, 1869, 1874, 3, 330, 165, 0, 1870, 1871, 5, 263, 0, 0, 1871, 1873, 3, 330, 165, 0, 1872, 1870, 1, 0, 0, 0, 1873, 1876, 1, 0, 0, 0, 1874, 1872, 1, 0, 0, 0, 1874, 1875, 1, 0, 0, 0, 1875, 263, 1, 0, 0, 0, 1876, 1874, 1, 0, 0, 0, 1877, 1887, 5, 52, 0, 0, 1878, 1879, 5, 71, 0, 0, 1879, 1880, 5, 191, 0, 0, 1880, 1881, 5, 26, 0, 0, 1881, 1885, 3, 342, 171, 0, 1882, 1883, 5, 63, 0, 0, 1883, 1884, 5, 26, 0, 0, 1884, 1886, 3, 342, 171, 0, 1885, 1882, 1, 0, 0, 0, 1885, 1886, 1, 0, 0, 0, 1886, 1888, 1, 0, 0, 0, 1887, 1878, 1, 0, 0, 0, 1887, 1888, 1, 0, 0, 0, 1888, 1893, 1, 0, 0, 0, 1889, 1890, 5, 117, 0, 0, 1890, 1891, 5, 191, 0, 0, 1891, 1892, 5, 26, 0, 0, 1892, 1894, 3, 342, 171, 0, 1893, 1889, 1, 0, 0, 0, 1893, 1894, 1, 0, 0, 0, 1894, 265, 1, 0, 0, 0, 1895, 1898, 3, 390, 195, 0, 1896, 1897, 5, 249, 0, 0, 1897, 1899, 3, 330, 165, 0, 1898, 1896, 1, 0, 0, 0, 1898, 1899, 1, 0, 0, 0, 1899, 267, 1, 0, 0, 0, 1900, 1911, 3, 270, 135, 0, 1901, 1902, 5, 139, 0, 0, 1902, 1903, 5, 26, 0, 0, 1903, 1908, 3, 274, 137, 0, 1904, 1905, 5, 263, 0, 0, 1905, 1907, 3, 274, 137, 0, 1906, 1904, 1, 0, 0, 0, 1907, 1910, 1, 0, 0, 0, 1908, 1906, 1, 0, 0, 0, 1908, 1909, 1, 0, 0, 0, 1909, 1912, 1, 0, 0, 0, 1910, 1908, 1, 0, 0, 0, 1911, 1901, 1, 0, 0, 0, 1911, 1912, 1, 0, 0, 0, 1912, 1919, 1, 0, 0, 0, 1913, 1914, 5, 116, 0, 0, 1914, 1917, 3, 330, 165, 0, 1915, 1916, 5, 135, 0, 0, 1916, 1918, 5, 277, 0, 0, 1917, 1915, 1, 0, 0, 0, 1917, 1918, 1, 0, 0, 0, 1918, 1920, 1, 0, 0, 0, 1919, 1913, 1, 0, 0, 0, 1919, 1920, 1, 0, 0, 0, 1920, 269, 1, 0, 0, 0, 1921, 1922, 6, 135, -1, 0, 1922, 1923, 3, 272, 136, 0, 1923, 1938, 1, 0, 0, 0, 1924, 1925, 10, 2, 0, 0, 1925, 1927, 5, 100, 0, 0, 1926, 1928, 3, 292, 146, 0, 1927, 1926, 1, 0, 0, 0, 1927, 1928, 1, 0, 0, 0, 1928, 1929, 1, 0, 0, 0, 1929, 1937, 3, 270, 135, 3, 1930, 1931, 10, 1, 0, 0, 1931, 1933, 7, 13, 0, 0, 1932, 1934, 3, 292, 146, 0, 1933, 1932, 1, 0, 0, 0, 1933, 1934, 1, 0, 0, 0, 1934, 1935, 1, 0, 0, 0, 1935, 1937, 3, 270, 135, 2, 1936, 1924, 1, 0, 0, 0, 1936, 1930, 1, 0, 0, 0, 1937, 1940, 1, 0, 0, 0, 1938, 1936, 1, 0, 0, 0, 1938, 1939, 1, 0, 0, 0, 1939, 271, 1, 0, 0, 0, 1940, 1938, 1, 0, 0, 0, 1941, 1958, 3, 276, 138, 0, 1942, 1943, 5, 188, 0, 0, 1943, 1958, 3, 186, 93, 0, 1944, 1945, 5, 211, 0, 0, 1945, 1950, 3, 330, 165, 0, 1946, 1947, 5, 263, 0, 0, 1947, 1949, 3, 330, 165, 0, 1948, 1946, 1, 0, 0, 0, 1949, 1952, 1, 0, 0, 0, 1950, 1948, 1, 0, 0, 0, 1950, 1951, 1, 0, 0, 0, 1951, 1958, 1, 0, 0, 0, 1952, 1950, 1, 0, 0, 0, 1953, 1954, 5, 265, 0, 0, 1954, 1955, 3, 268, 134, 0, 1955, 1956, 5, 266, 0, 0, 1956, 1958, 1, 0, 0, 0, 1957, 1941, 1, 0, 0, 0, 1957, 1942, 1, 0, 0, 0, 1957, 1944, 1, 0, 0, 0, 1957, 1953, 1, 0, 0, 0, 1958, 273, 1, 0, 0, 0, 1959, 1961, 3, 328, 164, 0, 1960, 1962, 7, 14, 0, 0, 1961, 1960, 1, 0, 0, 0, 1961, 1962, 1, 0, 0, 0, 1962, 1965, 1, 0, 0, 0, 1963, 1964, 5, 134, 0, 0, 1964, 1966, 7, 15, 0, 0, 1965, 1963, 1, 0, 0, 0, 1965, 1966, 1, 0, 0, 0, 1966, 275, 1, 0, 0, 0, 1967, 1969, 5, 174, 0, 0, 1968, 1970, 3, 292, 146, 0, 1969, 1968, 1, 0, 0, 0, 1969, 1970, 1, 0, 0, 0, 1970, 1972, 1, 0, 0, 0, 1971, 1973, 5, 183, 0, 0, 1972, 1971, 1, 0, 0, 0, 1972, 1973, 1, 0, 0, 0, 1973, 1974, 1, 0, 0, 0, 1974, 1984, 3, 278, 139, 0, 1975, 1976, 5, 82, 0, 0, 1976, 1981, 3, 304, 152, 0, 1977, 1978, 5, 263, 0, 0, 1978, 1980, 3, 304, 152, 0, 1979, 1977, 1, 0, 0, 0, 1980, 1983, 1, 0, 0, 0, 1981, 1979, 1, 0, 0, 0, 1981, 1982, 1, 0, 0, 0, 1982, 1985, 1, 0, 0, 0, 1983, 1981, 1, 0, 0, 0, 1984, 1975, 1, 0, 0, 0, 1984, 1985, 1, 0, 0, 0, 1985, 1987, 1, 0, 0, 0, 1986, 1988, 3, 280, 140, 0, 1987, 1986, 1, 0, 0, 0, 1987, 1988, 1, 0, 0, 0, 1988, 1992, 1, 0, 0, 0, 1989, 1990, 5, 87, 0, 0, 1990, 1991, 5, 26, 0, 0, 1991, 1993, 3, 284, 142, 0, 1992, 1989, 1, 0, 0, 0, 1992, 1993, 1, 0, 0, 0, 1993, 1995, 1, 0, 0, 0, 1994, 1996, 3, 282, 141, 0, 1995, 1994, 1, 0, 0, 0, 1995, 1996, 1, 0, 0, 0, 1996, 277, 1, 0, 0, 0, 1997, 2002, 3, 294, 147, 0, 1998, 1999, 5, 263, 0, 0, 1999, 2001, 3, 294, 147, 0, 2000, 1998, 1, 0, 0, 0, 2001, 2004, 1, 0, 0, 0, 2002, 2000, 1, 0, 0, 0, 2002, 2003, 1, 0, 0, 0, 2003, 279, 1, 0, 0, 0, 2004, 2002, 1, 0, 0, 0, 2005, 2008, 5, 215, 0, 0, 2006, 2009, 3, 332, 166, 0, 2007, 2009, 3, 198, 99, 0, 2008, 2006, 1, 0, 0, 0, 2008, 2007, 1, 0, 0, 0, 2009, 281, 1, 0, 0, 0, 2010, 2013, 5, 90, 0, 0, 2011, 2014, 3, 332, 166, 0, 2012, 2014, 3, 198, 99, 0, 2013, 2011, 1, 0, 0, 0, 2013, 2012, 1, 0, 0, 0, 2014, 283, 1, 0, 0, 0, 2015, 2017, 3, 292, 146, 0, 2016, 2015, 1, 0, 0, 0, 2016, 2017, 1, 0, 0, 0, 2017, 2018, 1, 0, 0, 0, 2018, 2023, 3, 286, 143, 0, 2019, 2020, 5, 263, 0, 0, 2020, 2022, 3, 286, 143, 0, 2021, 2019, 1, 0, 0, 0, 2022, 2025, 1, 0, 0, 0, 2023, 2021, 1, 0, 0, 0, 2023, 2024, 1, 0, 0, 0, 2024, 285, 1, 0, 0, 0, 2025, 2023, 1, 0, 0, 0, 2026, 2027, 3, 288, 144, 0, 2027, 287, 1, 0, 0, 0, 2028, 2037, 5, 265, 0, 0, 2029, 2034, 3, 328, 164, 0, 2030, 2031, 5, 263, 0, 0, 2031, 2033, 3, 328, 164, 0, 2032, 2030, 1, 0, 0, 0, 2033, 2036, 1, 0, 0, 0, 2034, 2032, 1, 0, 0, 0, 2034, 2035, 1, 0, 0, 0, 2035, 2038, 1, 0, 0, 0, 2036, 2034, 1, 0, 0, 0, 2037, 2029, 1, 0, 0, 0, 2037, 2038, 1, 0, 0, 0, 2038, 2039, 1, 0, 0, 0, 2039, 2042, 5, 266, 0, 0, 2040, 2042, 3, 328, 164, 0, 2041, 2028, 1, 0, 0, 0, 2041, 2040, 1, 0, 0, 0, 2042, 289, 1, 0, 0, 0, 2043, 2045, 3, 390, 195, 0, 2044, 2046, 3, 316, 158, 0, 2045, 2044, 1, 0, 0, 0, 2045, 2046, 1, 0, 0, 0, 2046, 2047, 1, 0, 0, 0, 2047, 2048, 5, 9, 0, 0, 2048, 2049, 3, 322, 161, 0, 2049, 291, 1, 0, 0, 0, 2050, 2051, 7, 16, 0, 0, 2051, 293, 1, 0, 0, 0, 2052, 2054, 3, 298, 149, 0, 2053, 2055, 3, 296, 148, 0, 2054, 2053, 1, 0, 0, 0, 2054, 2055, 1, 0, 0, 0, 2055, 2062, 1, 0, 0, 0, 2056, 2058, 3, 300, 150, 0, 2057, 2059, 3, 296, 148, 0, 2058, 2057, 1, 0, 0, 0, 2058, 2059, 1, 0, 0, 0, 2059, 2062, 1, 0, 0, 0, 2060, 2062, 3, 302, 151, 0, 2061, 2052, 1, 0, 0, 0, 2061, 2056, 1, 0, 0, 0, 2061, 2060, 1, 0, 0, 0, 2062, 295, 1, 0, 0, 0, 2063, 2065, 5, 9, 0, 0, 2064, 2063, 1, 0, 0, 0, 2064, 2065, 1, 0, 0, 0, 2065, 2066, 1, 0, 0, 0, 2066, 2067, 3, 390, 195, 0, 2067, 297, 1, 0, 0, 0, 2068, 2069, 3, 194, 97, 0, 2069, 299, 1, 0, 0, 0, 2070, 2071, 3, 330, 165, 0, 2071, 301, 1, 0, 0, 0, 2072, 2073, 3, 384, 192, 0, 2073, 2074, 5, 261, 0, 0, 2074, 2076, 1, 0, 0, 0, 2075, 2072, 1, 0, 0, 0, 2075, 2076, 1, 0, 0, 0, 2076, 2077, 1, 0, 0, 0, 2077, 2078, 5, 257, 0, 0, 2078, 303, 1, 0, 0, 0, 2079, 2080, 6, 152, -1, 0, 2080, 2081, 3, 310, 155, 0, 2081, 2095, 1, 0, 0, 0, 2082, 2091, 10, 2, 0, 0, 2083, 2084, 5, 38, 0, 0, 2084, 2085, 5, 109, 0, 0, 2085, 2092, 3, 310, 155, 0, 2086, 2087, 3, 306, 153, 0, 2087, 2088, 5, 109, 0, 0, 2088, 2089, 3, 304, 152, 0, 2089, 2090, 3, 308, 154, 0, 2090, 2092, 1, 0, 0, 0, 2091, 2083, 1, 0, 0, 0, 2091, 2086, 1, 0, 0, 0, 2092, 2094, 1, 0, 0, 0, 2093, 2082, 1, 0, 0, 0, 2094, 2097, 1, 0, 0, 0, 2095, 2093, 1, 0, 0, 0, 2095, 2096, 1, 0, 0, 0, 2096, 305, 1, 0, 0, 0, 2097, 2095, 1, 0, 0, 0, 2098, 2100, 5, 97, 0, 0, 2099, 2098, 1, 0, 0, 0, 2099, 2100, 1, 0, 0, 0, 2100, 2130, 1, 0, 0, 0, 2101, 2103, 5, 114, 0, 0, 2102, 2104, 5, 97, 0, 0, 2103, 2102, 1, 0, 0, 0, 2103, 2104, 1, 0, 0, 0, 2104, 2130, 1, 0, 0, 0, 2105, 2107, 5, 165, 0, 0, 2106, 2108, 5, 97, 0, 0, 2107, 2106, 1, 0, 0, 0, 2107, 2108, 1, 0, 0, 0, 2108, 2130, 1, 0, 0, 0, 2109, 2111, 5, 114, 0, 0, 2110, 2112, 5, 141, 0, 0, 2111, 2110, 1, 0, 0, 0, 2111, 2112, 1, 0, 0, 0, 2112, 2130, 1, 0, 0, 0, 2113, 2115, 5, 165, 0, 0, 2114, 2116, 5, 141, 0, 0, 2115, 2114, 1, 0, 0, 0, 2115, 2116, 1, 0, 0, 0, 2116, 2130, 1, 0, 0, 0, 2117, 2119, 5, 83, 0, 0, 2118, 2120, 5, 141, 0, 0, 2119, 2118, 1, 0, 0, 0, 2119, 2120, 1, 0, 0, 0, 2120, 2130, 1, 0, 0, 0, 2121, 2122, 5, 114, 0, 0, 2122, 2130, 5, 177, 0, 0, 2123, 2124, 5, 165, 0, 0, 2124, 2130, 5, 177, 0, 0, 2125, 2126, 5, 114, 0, 0, 2126, 2130, 5, 7, 0, 0, 2127, 2128, 5, 165, 0, 0, 2128, 2130, 5, 7, 0, 0, 2129, 2099, 1, 0, 0, 0, 2129, 2101, 1, 0, 0, 0, 2129, 2105, 1, 0, 0, 0, 2129, 2109, 1, 0, 0, 0, 2129, 2113, 1, 0, 0, 0, 2129, 2117, 1, 0, 0, 0, 2129, 2121, 1, 0, 0, 0, 2129, 2123, 1, 0, 0, 0, 2129, 2125, 1, 0, 0, 0, 2129, 2127, 1, 0, 0, 0, 2130, 307, 1, 0, 0, 0, 2131, 2134, 5, 136, 0, 0, 2132, 2135, 3, 332, 166, 0, 2133, 2135, 3, 198, 99, 0, 2134, 2132, 1, 0, 0, 0, 2134, 2133, 1, 0, 0, 0, 2135, 2149, 1, 0, 0, 0, 2136, 2137, 5, 205, 0, 0, 2137, 2138, 5, 265, 0, 0, 2138, 2143, 3, 390, 195, 0, 2139, 2140, 5, 263, 0, 0, 2140, 2142, 3, 390, 195, 0, 2141, 2139, 1, 0, 0, 0, 2142, 2145, 1, 0, 0, 0, 2143, 2141, 1, 0, 0, 0, 2143, 2144, 1, 0, 0, 0, 2144, 2146, 1, 0, 0, 0, 2145, 2143, 1, 0, 0, 0, 2146, 2147, 5, 266, 0, 0, 2147, 2149, 1, 0, 0, 0, 2148, 2131, 1, 0, 0, 0, 2148, 2136, 1, 0, 0, 0, 2149, 309, 1, 0, 0, 0, 2150, 2163, 3, 314, 157, 0, 2151, 2152, 5, 190, 0, 0, 2152, 2153, 3, 312, 156, 0, 2153, 2154, 5, 265, 0, 0, 2154, 2155, 3, 330, 165, 0, 2155, 2161, 5, 266, 0, 0, 2156, 2157, 5, 157, 0, 0, 2157, 2158, 5, 265, 0, 0, 2158, 2159, 3, 330, 165, 0, 2159, 2160, 5, 266, 0, 0, 2160, 2162, 1, 0, 0, 0, 2161, 2156, 1, 0, 0, 0, 2161, 2162, 1, 0, 0, 0, 2162, 2164, 1, 0, 0, 0, 2163, 2151, 1, 0, 0, 0, 2163, 2164, 1, 0, 0, 0, 2164, 311, 1, 0, 0, 0, 2165, 2166, 7, 17, 0, 0, 2166, 313, 1, 0, 0, 0, 2167, 2175, 3, 318, 159, 0, 2168, 2170, 5, 9, 0, 0, 2169, 2168, 1, 0, 0, 0, 2169, 2170, 1, 0, 0, 0, 2170, 2171, 1, 0, 0, 0, 2171, 2173, 3, 390, 195, 0, 2172, 2174, 3, 316, 158, 0, 2173, 2172, 1, 0, 0, 0, 2173, 2174, 1, 0, 0, 0, 2174, 2176, 1, 0, 0, 0, 2175, 2169, 1, 0, 0, 0, 2175, 2176, 1, 0, 0, 0, 2176, 315, 1, 0, 0, 0, 2177, 2178, 5, 265, 0, 0, 2178, 2183, 3, 194, 97, 0, 2179, 2180, 5, 263, 0, 0, 2180, 2182, 3, 194, 97, 0, 2181, 2179, 1, 0, 0, 0, 2182, 2185, 1, 0, 0, 0, 2183, 2181, 1, 0, 0, 0, 2183, 2184, 1, 0, 0, 0, 2184, 2186, 1, 0, 0, 0, 2185, 2183, 1, 0, 0, 0, 2186, 2187, 5, 266, 0, 0, 2187, 317, 1, 0, 0, 0, 2188, 2193, 3, 200, 100, 0, 2189, 2193, 3, 320, 160, 0, 2190, 2193, 3, 324, 162, 0, 2191, 2193, 3, 326, 163, 0, 2192, 2188, 1, 0, 0, 0, 2192, 2189, 1, 0, 0, 0, 2192, 2190, 1, 0, 0, 0, 2192, 2191, 1, 0, 0, 0, 2193, 319, 1, 0, 0, 0, 2194, 2196, 5, 113, 0, 0, 2195, 2194, 1, 0, 0, 0, 2195, 2196, 1, 0, 0, 0, 2196, 2197, 1, 0, 0, 0, 2197, 2198, 3, 322, 161, 0, 2198, 321, 1, 0, 0, 0, 2199, 2200, 5, 265, 0, 0, 2200, 2201, 3, 212, 106, 0, 2201, 2202, 5, 266, 0, 0, 2202, 323, 1, 0, 0, 0, 2203, 2204, 5, 201, 0, 0, 2204, 2205, 5, 265, 0, 0, 2205, 2210, 3, 330, 165, 0, 2206, 2207, 5, 263, 0, 0, 2207, 2209, 3, 330, 165, 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, 2216, 5, 266, 0, 0, 2214, 2215, 5, 216, 0, 0, 2215, 2217, 5, 140, 0, 0, 2216, 2214, 1, 0, 0, 0, 2216, 2217, 1, 0, 0, 0, 2217, 325, 1, 0, 0, 0, 2218, 2219, 5, 265, 0, 0, 2219, 2220, 3, 304, 152, 0, 2220, 2221, 5, 266, 0, 0, 2221, 327, 1, 0, 0, 0, 2222, 2225, 3, 194, 97, 0, 2223, 2225, 3, 330, 165, 0, 2224, 2222, 1, 0, 0, 0, 2224, 2223, 1, 0, 0, 0, 2225, 329, 1, 0, 0, 0, 2226, 2227, 3, 332, 166, 0, 2227, 331, 1, 0, 0, 0, 2228, 2229, 6, 166, -1, 0, 2229, 2231, 3, 336, 168, 0, 2230, 2232, 3, 334, 167, 0, 2231, 2230, 1, 0, 0, 0, 2231, 2232, 1, 0, 0, 0, 2232, 2236, 1, 0, 0, 0, 2233, 2234, 5, 132, 0, 0, 2234, 2236, 3, 332, 166, 3, 2235, 2228, 1, 0, 0, 0, 2235, 2233, 1, 0, 0, 0, 2236, 2245, 1, 0, 0, 0, 2237, 2238, 10, 2, 0, 0, 2238, 2239, 5, 5, 0, 0, 2239, 2244, 3, 332, 166, 3, 2240, 2241, 10, 1, 0, 0, 2241, 2242, 5, 138, 0, 0, 2242, 2244, 3, 332, 166, 2, 2243, 2237, 1, 0, 0, 0, 2243, 2240, 1, 0, 0, 0, 2244, 2247, 1, 0, 0, 0, 2245, 2243, 1, 0, 0, 0, 2245, 2246, 1, 0, 0, 0, 2246, 333, 1, 0, 0, 0, 2247, 2245, 1, 0, 0, 0, 2248, 2249, 3, 344, 172, 0, 2249, 2250, 3, 336, 168, 0, 2250, 2307, 1, 0, 0, 0, 2251, 2252, 3, 344, 172, 0, 2252, 2253, 3, 346, 173, 0, 2253, 2254, 3, 322, 161, 0, 2254, 2307, 1, 0, 0, 0, 2255, 2257, 5, 132, 0, 0, 2256, 2255, 1, 0, 0, 0, 2256, 2257, 1, 0, 0, 0, 2257, 2258, 1, 0, 0, 0, 2258, 2259, 5, 15, 0, 0, 2259, 2260, 3, 336, 168, 0, 2260, 2261, 5, 5, 0, 0, 2261, 2262, 3, 336, 168, 0, 2262, 2307, 1, 0, 0, 0, 2263, 2265, 5, 132, 0, 0, 2264, 2263, 1, 0, 0, 0, 2264, 2265, 1, 0, 0, 0, 2265, 2266, 1, 0, 0, 0, 2266, 2267, 5, 94, 0, 0, 2267, 2268, 5, 265, 0, 0, 2268, 2273, 3, 330, 165, 0, 2269, 2270, 5, 263, 0, 0, 2270, 2272, 3, 330, 165, 0, 2271, 2269, 1, 0, 0, 0, 2272, 2275, 1, 0, 0, 0, 2273, 2271, 1, 0, 0, 0, 2273, 2274, 1, 0, 0, 0, 2274, 2276, 1, 0, 0, 0, 2275, 2273, 1, 0, 0, 0, 2276, 2277, 5, 266, 0, 0, 2277, 2307, 1, 0, 0, 0, 2278, 2280, 5, 132, 0, 0, 2279, 2278, 1, 0, 0, 0, 2279, 2280, 1, 0, 0, 0, 2280, 2281, 1, 0, 0, 0, 2281, 2282, 5, 94, 0, 0, 2282, 2307, 3, 322, 161, 0, 2283, 2285, 5, 132, 0, 0, 2284, 2283, 1, 0, 0, 0, 2284, 2285, 1, 0, 0, 0, 2285, 2286, 1, 0, 0, 0, 2286, 2287, 7, 18, 0, 0, 2287, 2290, 3, 336, 168, 0, 2288, 2289, 5, 62, 0, 0, 2289, 2291, 3, 336, 168, 0, 2290, 2288, 1, 0, 0, 0, 2290, 2291, 1, 0, 0, 0, 2291, 2307, 1, 0, 0, 0, 2292, 2293, 7, 19, 0, 0, 2293, 2307, 3, 336, 168, 0, 2294, 2296, 5, 108, 0, 0, 2295, 2297, 5, 132, 0, 0, 2296, 2295, 1, 0, 0, 0, 2296, 2297, 1, 0, 0, 0, 2297, 2298, 1, 0, 0, 0, 2298, 2307, 7, 20, 0, 0, 2299, 2301, 5, 108, 0, 0, 2300, 2302, 5, 132, 0, 0, 2301, 2300, 1, 0, 0, 0, 2301, 2302, 1, 0, 0, 0, 2302, 2303, 1, 0, 0, 0, 2303, 2304, 5, 57, 0, 0, 2304, 2305, 5, 82, 0, 0, 2305, 2307, 3, 336, 168, 0, 2306, 2248, 1, 0, 0, 0, 2306, 2251, 1, 0, 0, 0, 2306, 2256, 1, 0, 0, 0, 2306, 2264, 1, 0, 0, 0, 2306, 2279, 1, 0, 0, 0, 2306, 2284, 1, 0, 0, 0, 2306, 2292, 1, 0, 0, 0, 2306, 2294, 1, 0, 0, 0, 2306, 2299, 1, 0, 0, 0, 2307, 335, 1, 0, 0, 0, 2308, 2309, 6, 168, -1, 0, 2309, 2313, 3, 340, 170, 0, 2310, 2311, 7, 21, 0, 0, 2311, 2313, 3, 336, 168, 4, 2312, 2308, 1, 0, 0, 0, 2312, 2310, 1, 0, 0, 0, 2313, 2325, 1, 0, 0, 0, 2314, 2315, 10, 3, 0, 0, 2315, 2316, 7, 22, 0, 0, 2316, 2324, 3, 336, 168, 4, 2317, 2318, 10, 2, 0, 0, 2318, 2319, 7, 21, 0, 0, 2319, 2324, 3, 336, 168, 3, 2320, 2321, 10, 1, 0, 0, 2321, 2322, 5, 260, 0, 0, 2322, 2324, 3, 336, 168, 2, 2323, 2314, 1, 0, 0, 0, 2323, 2317, 1, 0, 0, 0, 2323, 2320, 1, 0, 0, 0, 2324, 2327, 1, 0, 0, 0, 2325, 2323, 1, 0, 0, 0, 2325, 2326, 1, 0, 0, 0, 2326, 337, 1, 0, 0, 0, 2327, 2325, 1, 0, 0, 0, 2328, 2329, 3, 190, 95, 0, 2329, 2341, 5, 265, 0, 0, 2330, 2332, 3, 292, 146, 0, 2331, 2330, 1, 0, 0, 0, 2331, 2332, 1, 0, 0, 0, 2332, 2333, 1, 0, 0, 0, 2333, 2338, 3, 330, 165, 0, 2334, 2335, 5, 263, 0, 0, 2335, 2337, 3, 330, 165, 0, 2336, 2334, 1, 0, 0, 0, 2337, 2340, 1, 0, 0, 0, 2338, 2336, 1, 0, 0, 0, 2338, 2339, 1, 0, 0, 0, 2339, 2342, 1, 0, 0, 0, 2340, 2338, 1, 0, 0, 0, 2341, 2331, 1, 0, 0, 0, 2341, 2342, 1, 0, 0, 0, 2342, 2353, 1, 0, 0, 0, 2343, 2344, 5, 139, 0, 0, 2344, 2345, 5, 26, 0, 0, 2345, 2350, 3, 274, 137, 0, 2346, 2347, 5, 263, 0, 0, 2347, 2349, 3, 274, 137, 0, 2348, 2346, 1, 0, 0, 0, 2349, 2352, 1, 0, 0, 0, 2350, 2348, 1, 0, 0, 0, 2350, 2351, 1, 0, 0, 0, 2351, 2354, 1, 0, 0, 0, 2352, 2350, 1, 0, 0, 0, 2353, 2343, 1, 0, 0, 0, 2353, 2354, 1, 0, 0, 0, 2354, 2355, 1, 0, 0, 0, 2355, 2357, 5, 266, 0, 0, 2356, 2358, 3, 366, 183, 0, 2357, 2356, 1, 0, 0, 0, 2357, 2358, 1, 0, 0, 0, 2358, 2360, 1, 0, 0, 0, 2359, 2361, 3, 370, 185, 0, 2360, 2359, 1, 0, 0, 0, 2360, 2361, 1, 0, 0, 0, 2361, 339, 1, 0, 0, 0, 2362, 2363, 6, 170, -1, 0, 2363, 2576, 5, 133, 0, 0, 2364, 2576, 3, 350, 175, 0, 2365, 2366, 3, 390, 195, 0, 2366, 2367, 3, 342, 171, 0, 2367, 2576, 1, 0, 0, 0, 2368, 2369, 5, 286, 0, 0, 2369, 2576, 3, 342, 171, 0, 2370, 2576, 3, 392, 196, 0, 2371, 2576, 3, 348, 174, 0, 2372, 2576, 3, 342, 171, 0, 2373, 2576, 5, 276, 0, 0, 2374, 2576, 5, 272, 0, 0, 2375, 2376, 5, 148, 0, 0, 2376, 2377, 5, 265, 0, 0, 2377, 2378, 3, 336, 168, 0, 2378, 2379, 5, 94, 0, 0, 2379, 2380, 3, 336, 168, 0, 2380, 2381, 5, 266, 0, 0, 2381, 2576, 1, 0, 0, 0, 2382, 2383, 5, 265, 0, 0, 2383, 2386, 3, 330, 165, 0, 2384, 2385, 5, 9, 0, 0, 2385, 2387, 3, 356, 178, 0, 2386, 2384, 1, 0, 0, 0, 2386, 2387, 1, 0, 0, 0, 2387, 2396, 1, 0, 0, 0, 2388, 2389, 5, 263, 0, 0, 2389, 2392, 3, 330, 165, 0, 2390, 2391, 5, 9, 0, 0, 2391, 2393, 3, 356, 178, 0, 2392, 2390, 1, 0, 0, 0, 2392, 2393, 1, 0, 0, 0, 2393, 2395, 1, 0, 0, 0, 2394, 2388, 1, 0, 0, 0, 2395, 2398, 1, 0, 0, 0, 2396, 2397, 1, 0, 0, 0, 2396, 2394, 1, 0, 0, 0, 2397, 2399, 1, 0, 0, 0, 2398, 2396, 1, 0, 0, 0, 2399, 2400, 5, 266, 0, 0, 2400, 2576, 1, 0, 0, 0, 2401, 2402, 5, 168, 0, 0, 2402, 2403, 5, 265, 0, 0, 2403, 2408, 3, 330, 165, 0, 2404, 2405, 5, 263, 0, 0, 2405, 2407, 3, 330, 165, 0, 2406, 2404, 1, 0, 0, 0, 2407, 2410, 1, 0, 0, 0, 2408, 2406, 1, 0, 0, 0, 2408, 2409, 1, 0, 0, 0, 2409, 2411, 1, 0, 0, 0, 2410, 2408, 1, 0, 0, 0, 2411, 2412, 5, 266, 0, 0, 2412, 2576, 1, 0, 0, 0, 2413, 2414, 3, 190, 95, 0, 2414, 2415, 5, 265, 0, 0, 2415, 2416, 5, 257, 0, 0, 2416, 2418, 5, 266, 0, 0, 2417, 2419, 3, 366, 183, 0, 2418, 2417, 1, 0, 0, 0, 2418, 2419, 1, 0, 0, 0, 2419, 2421, 1, 0, 0, 0, 2420, 2422, 3, 370, 185, 0, 2421, 2420, 1, 0, 0, 0, 2421, 2422, 1, 0, 0, 0, 2422, 2576, 1, 0, 0, 0, 2423, 2576, 3, 338, 169, 0, 2424, 2425, 3, 390, 195, 0, 2425, 2426, 5, 273, 0, 0, 2426, 2427, 3, 330, 165, 0, 2427, 2576, 1, 0, 0, 0, 2428, 2437, 5, 265, 0, 0, 2429, 2434, 3, 390, 195, 0, 2430, 2431, 5, 263, 0, 0, 2431, 2433, 3, 390, 195, 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, 2440, 5, 266, 0, 0, 2440, 2441, 5, 273, 0, 0, 2441, 2576, 3, 330, 165, 0, 2442, 2443, 5, 265, 0, 0, 2443, 2444, 3, 212, 106, 0, 2444, 2445, 5, 266, 0, 0, 2445, 2576, 1, 0, 0, 0, 2446, 2447, 5, 66, 0, 0, 2447, 2448, 5, 265, 0, 0, 2448, 2449, 3, 212, 106, 0, 2449, 2450, 5, 266, 0, 0, 2450, 2576, 1, 0, 0, 0, 2451, 2452, 5, 28, 0, 0, 2452, 2454, 3, 336, 168, 0, 2453, 2455, 3, 364, 182, 0, 2454, 2453, 1, 0, 0, 0, 2455, 2456, 1, 0, 0, 0, 2456, 2454, 1, 0, 0, 0, 2456, 2457, 1, 0, 0, 0, 2457, 2460, 1, 0, 0, 0, 2458, 2459, 5, 59, 0, 0, 2459, 2461, 3, 330, 165, 0, 2460, 2458, 1, 0, 0, 0, 2460, 2461, 1, 0, 0, 0, 2461, 2462, 1, 0, 0, 0, 2462, 2463, 5, 61, 0, 0, 2463, 2576, 1, 0, 0, 0, 2464, 2466, 5, 28, 0, 0, 2465, 2467, 3, 364, 182, 0, 2466, 2465, 1, 0, 0, 0, 2467, 2468, 1, 0, 0, 0, 2468, 2466, 1, 0, 0, 0, 2468, 2469, 1, 0, 0, 0, 2469, 2472, 1, 0, 0, 0, 2470, 2471, 5, 59, 0, 0, 2471, 2473, 3, 330, 165, 0, 2472, 2470, 1, 0, 0, 0, 2472, 2473, 1, 0, 0, 0, 2473, 2474, 1, 0, 0, 0, 2474, 2475, 5, 61, 0, 0, 2475, 2576, 1, 0, 0, 0, 2476, 2477, 5, 29, 0, 0, 2477, 2478, 5, 265, 0, 0, 2478, 2479, 3, 330, 165, 0, 2479, 2480, 5, 9, 0, 0, 2480, 2481, 3, 356, 178, 0, 2481, 2482, 5, 266, 0, 0, 2482, 2576, 1, 0, 0, 0, 2483, 2484, 5, 195, 0, 0, 2484, 2485, 5, 265, 0, 0, 2485, 2486, 3, 330, 165, 0, 2486, 2487, 5, 9, 0, 0, 2487, 2488, 3, 356, 178, 0, 2488, 2489, 5, 266, 0, 0, 2489, 2576, 1, 0, 0, 0, 2490, 2491, 5, 8, 0, 0, 2491, 2500, 5, 267, 0, 0, 2492, 2497, 3, 330, 165, 0, 2493, 2494, 5, 263, 0, 0, 2494, 2496, 3, 330, 165, 0, 2495, 2493, 1, 0, 0, 0, 2496, 2499, 1, 0, 0, 0, 2497, 2495, 1, 0, 0, 0, 2497, 2498, 1, 0, 0, 0, 2498, 2501, 1, 0, 0, 0, 2499, 2497, 1, 0, 0, 0, 2500, 2492, 1, 0, 0, 0, 2500, 2501, 1, 0, 0, 0, 2501, 2502, 1, 0, 0, 0, 2502, 2576, 5, 268, 0, 0, 2503, 2576, 3, 196, 98, 0, 2504, 2576, 5, 40, 0, 0, 2505, 2509, 5, 42, 0, 0, 2506, 2507, 5, 265, 0, 0, 2507, 2508, 5, 277, 0, 0, 2508, 2510, 5, 266, 0, 0, 2509, 2506, 1, 0, 0, 0, 2509, 2510, 1, 0, 0, 0, 2510, 2576, 1, 0, 0, 0, 2511, 2515, 5, 43, 0, 0, 2512, 2513, 5, 265, 0, 0, 2513, 2514, 5, 277, 0, 0, 2514, 2516, 5, 266, 0, 0, 2515, 2512, 1, 0, 0, 0, 2515, 2516, 1, 0, 0, 0, 2516, 2576, 1, 0, 0, 0, 2517, 2521, 5, 119, 0, 0, 2518, 2519, 5, 265, 0, 0, 2519, 2520, 5, 277, 0, 0, 2520, 2522, 5, 266, 0, 0, 2521, 2518, 1, 0, 0, 0, 2521, 2522, 1, 0, 0, 0, 2522, 2576, 1, 0, 0, 0, 2523, 2527, 5, 120, 0, 0, 2524, 2525, 5, 265, 0, 0, 2525, 2526, 5, 277, 0, 0, 2526, 2528, 5, 266, 0, 0, 2527, 2524, 1, 0, 0, 0, 2527, 2528, 1, 0, 0, 0, 2528, 2576, 1, 0, 0, 0, 2529, 2576, 5, 44, 0, 0, 2530, 2576, 5, 41, 0, 0, 2531, 2532, 5, 184, 0, 0, 2532, 2533, 5, 265, 0, 0, 2533, 2534, 3, 336, 168, 0, 2534, 2535, 5, 82, 0, 0, 2535, 2538, 3, 336, 168, 0, 2536, 2537, 5, 78, 0, 0, 2537, 2539, 3, 336, 168, 0, 2538, 2536, 1, 0, 0, 0, 2538, 2539, 1, 0, 0, 0, 2539, 2540, 1, 0, 0, 0, 2540, 2541, 5, 266, 0, 0, 2541, 2576, 1, 0, 0, 0, 2542, 2543, 5, 131, 0, 0, 2543, 2544, 5, 265, 0, 0, 2544, 2547, 3, 336, 168, 0, 2545, 2546, 5, 263, 0, 0, 2546, 2548, 3, 354, 177, 0, 2547, 2545, 1, 0, 0, 0, 2547, 2548, 1, 0, 0, 0, 2548, 2549, 1, 0, 0, 0, 2549, 2550, 5, 266, 0, 0, 2550, 2576, 1, 0, 0, 0, 2551, 2552, 5, 68, 0, 0, 2552, 2553, 5, 265, 0, 0, 2553, 2554, 3, 390, 195, 0, 2554, 2555, 5, 82, 0, 0, 2555, 2556, 3, 336, 168, 0, 2556, 2557, 5, 266, 0, 0, 2557, 2576, 1, 0, 0, 0, 2558, 2559, 5, 265, 0, 0, 2559, 2560, 3, 330, 165, 0, 2560, 2561, 5, 266, 0, 0, 2561, 2576, 1, 0, 0, 0, 2562, 2563, 5, 88, 0, 0, 2563, 2572, 5, 265, 0, 0, 2564, 2569, 3, 384, 192, 0, 2565, 2566, 5, 263, 0, 0, 2566, 2568, 3, 384, 192, 0, 2567, 2565, 1, 0, 0, 0, 2568, 2571, 1, 0, 0, 0, 2569, 2567, 1, 0, 0, 0, 2569, 2570, 1, 0, 0, 0, 2570, 2573, 1, 0, 0, 0, 2571, 2569, 1, 0, 0, 0, 2572, 2564, 1, 0, 0, 0, 2572, 2573, 1, 0, 0, 0, 2573, 2574, 1, 0, 0, 0, 2574, 2576, 5, 266, 0, 0, 2575, 2362, 1, 0, 0, 0, 2575, 2364, 1, 0, 0, 0, 2575, 2365, 1, 0, 0, 0, 2575, 2368, 1, 0, 0, 0, 2575, 2370, 1, 0, 0, 0, 2575, 2371, 1, 0, 0, 0, 2575, 2372, 1, 0, 0, 0, 2575, 2373, 1, 0, 0, 0, 2575, 2374, 1, 0, 0, 0, 2575, 2375, 1, 0, 0, 0, 2575, 2382, 1, 0, 0, 0, 2575, 2401, 1, 0, 0, 0, 2575, 2413, 1, 0, 0, 0, 2575, 2423, 1, 0, 0, 0, 2575, 2424, 1, 0, 0, 0, 2575, 2428, 1, 0, 0, 0, 2575, 2442, 1, 0, 0, 0, 2575, 2446, 1, 0, 0, 0, 2575, 2451, 1, 0, 0, 0, 2575, 2464, 1, 0, 0, 0, 2575, 2476, 1, 0, 0, 0, 2575, 2483, 1, 0, 0, 0, 2575, 2490, 1, 0, 0, 0, 2575, 2503, 1, 0, 0, 0, 2575, 2504, 1, 0, 0, 0, 2575, 2505, 1, 0, 0, 0, 2575, 2511, 1, 0, 0, 0, 2575, 2517, 1, 0, 0, 0, 2575, 2523, 1, 0, 0, 0, 2575, 2529, 1, 0, 0, 0, 2575, 2530, 1, 0, 0, 0, 2575, 2531, 1, 0, 0, 0, 2575, 2542, 1, 0, 0, 0, 2575, 2551, 1, 0, 0, 0, 2575, 2558, 1, 0, 0, 0, 2575, 2562, 1, 0, 0, 0, 2576, 2587, 1, 0, 0, 0, 2577, 2578, 10, 15, 0, 0, 2578, 2579, 5, 267, 0, 0, 2579, 2580, 3, 336, 168, 0, 2580, 2581, 5, 268, 0, 0, 2581, 2586, 1, 0, 0, 0, 2582, 2583, 10, 13, 0, 0, 2583, 2584, 5, 261, 0, 0, 2584, 2586, 3, 390, 195, 0, 2585, 2577, 1, 0, 0, 0, 2585, 2582, 1, 0, 0, 0, 2586, 2589, 1, 0, 0, 0, 2587, 2585, 1, 0, 0, 0, 2587, 2588, 1, 0, 0, 0, 2588, 341, 1, 0, 0, 0, 2589, 2587, 1, 0, 0, 0, 2590, 2597, 5, 274, 0, 0, 2591, 2594, 5, 275, 0, 0, 2592, 2593, 5, 198, 0, 0, 2593, 2595, 5, 274, 0, 0, 2594, 2592, 1, 0, 0, 0, 2594, 2595, 1, 0, 0, 0, 2595, 2597, 1, 0, 0, 0, 2596, 2590, 1, 0, 0, 0, 2596, 2591, 1, 0, 0, 0, 2597, 343, 1, 0, 0, 0, 2598, 2599, 7, 23, 0, 0, 2599, 345, 1, 0, 0, 0, 2600, 2601, 7, 24, 0, 0, 2601, 347, 1, 0, 0, 0, 2602, 2603, 7, 25, 0, 0, 2603, 349, 1, 0, 0, 0, 2604, 2605, 5, 277, 0, 0, 2605, 2619, 3, 352, 176, 0, 2606, 2607, 5, 265, 0, 0, 2607, 2608, 5, 277, 0, 0, 2608, 2609, 5, 266, 0, 0, 2609, 2619, 3, 352, 176, 0, 2610, 2611, 5, 101, 0, 0, 2611, 2612, 5, 277, 0, 0, 2612, 2619, 3, 352, 176, 0, 2613, 2614, 5, 101, 0, 0, 2614, 2615, 5, 265, 0, 0, 2615, 2616, 5, 277, 0, 0, 2616, 2617, 5, 266, 0, 0, 2617, 2619, 3, 352, 176, 0, 2618, 2604, 1, 0, 0, 0, 2618, 2606, 1, 0, 0, 0, 2618, 2610, 1, 0, 0, 0, 2618, 2613, 1, 0, 0, 0, 2619, 351, 1, 0, 0, 0, 2620, 2621, 7, 26, 0, 0, 2621, 353, 1, 0, 0, 0, 2622, 2623, 7, 27, 0, 0, 2623, 355, 1, 0, 0, 0, 2624, 2625, 6, 178, -1, 0, 2625, 2626, 5, 8, 0, 0, 2626, 2627, 5, 251, 0, 0, 2627, 2628, 3, 356, 178, 0, 2628, 2629, 5, 253, 0, 0, 2629, 2670, 1, 0, 0, 0, 2630, 2631, 5, 235, 0, 0, 2631, 2632, 5, 251, 0, 0, 2632, 2633, 3, 356, 178, 0, 2633, 2634, 5, 263, 0, 0, 2634, 2635, 3, 356, 178, 0, 2635, 2636, 5, 253, 0, 0, 2636, 2670, 1, 0, 0, 0, 2637, 2638, 5, 240, 0, 0, 2638, 2639, 5, 251, 0, 0, 2639, 2640, 3, 390, 195, 0, 2640, 2647, 3, 356, 178, 0, 2641, 2642, 5, 263, 0, 0, 2642, 2643, 3, 390, 195, 0, 2643, 2644, 3, 356, 178, 0, 2644, 2646, 1, 0, 0, 0, 2645, 2641, 1, 0, 0, 0, 2646, 2649, 1, 0, 0, 0, 2647, 2645, 1, 0, 0, 0, 2647, 2648, 1, 0, 0, 0, 2648, 2650, 1, 0, 0, 0, 2649, 2647, 1, 0, 0, 0, 2650, 2651, 5, 253, 0, 0, 2651, 2670, 1, 0, 0, 0, 2652, 2655, 3, 362, 181, 0, 2653, 2655, 3, 358, 179, 0, 2654, 2652, 1, 0, 0, 0, 2654, 2653, 1, 0, 0, 0, 2655, 2667, 1, 0, 0, 0, 2656, 2657, 5, 265, 0, 0, 2657, 2662, 3, 360, 180, 0, 2658, 2659, 5, 263, 0, 0, 2659, 2661, 3, 360, 180, 0, 2660, 2658, 1, 0, 0, 0, 2661, 2664, 1, 0, 0, 0, 2662, 2660, 1, 0, 0, 0, 2662, 2663, 1, 0, 0, 0, 2663, 2665, 1, 0, 0, 0, 2664, 2662, 1, 0, 0, 0, 2665, 2666, 5, 266, 0, 0, 2666, 2668, 1, 0, 0, 0, 2667, 2656, 1, 0, 0, 0, 2667, 2668, 1, 0, 0, 0, 2668, 2670, 1, 0, 0, 0, 2669, 2624, 1, 0, 0, 0, 2669, 2630, 1, 0, 0, 0, 2669, 2637, 1, 0, 0, 0, 2669, 2654, 1, 0, 0, 0, 2670, 2675, 1, 0, 0, 0, 2671, 2672, 10, 5, 0, 0, 2672, 2674, 5, 8, 0, 0, 2673, 2671, 1, 0, 0, 0, 2674, 2677, 1, 0, 0, 0, 2675, 2673, 1, 0, 0, 0, 2675, 2676, 1, 0, 0, 0, 2676, 357, 1, 0, 0, 0, 2677, 2675, 1, 0, 0, 0, 2678, 2679, 7, 28, 0, 0, 2679, 359, 1, 0, 0, 0, 2680, 2683, 5, 277, 0, 0, 2681, 2683, 3, 356, 178, 0, 2682, 2680, 1, 0, 0, 0, 2682, 2681, 1, 0, 0, 0, 2683, 361, 1, 0, 0, 0, 2684, 2689, 5, 284, 0, 0, 2685, 2689, 5, 285, 0, 0, 2686, 2689, 5, 286, 0, 0, 2687, 2689, 3, 390, 195, 0, 2688, 2684, 1, 0, 0, 0, 2688, 2685, 1, 0, 0, 0, 2688, 2686, 1, 0, 0, 0, 2688, 2687, 1, 0, 0, 0, 2689, 363, 1, 0, 0, 0, 2690, 2691, 5, 214, 0, 0, 2691, 2692, 3, 330, 165, 0, 2692, 2693, 5, 192, 0, 0, 2693, 2694, 3, 330, 165, 0, 2694, 365, 1, 0, 0, 0, 2695, 2696, 5, 74, 0, 0, 2696, 2697, 5, 265, 0, 0, 2697, 2698, 3, 280, 140, 0, 2698, 2699, 5, 266, 0, 0, 2699, 367, 1, 0, 0, 0, 2700, 2705, 3, 330, 165, 0, 2701, 2702, 5, 263, 0, 0, 2702, 2704, 3, 330, 165, 0, 2703, 2701, 1, 0, 0, 0, 2704, 2707, 1, 0, 0, 0, 2705, 2703, 1, 0, 0, 0, 2705, 2706, 1, 0, 0, 0, 2706, 369, 1, 0, 0, 0, 2707, 2705, 1, 0, 0, 0, 2708, 2709, 5, 143, 0, 0, 2709, 2713, 5, 265, 0, 0, 2710, 2711, 5, 145, 0, 0, 2711, 2712, 5, 26, 0, 0, 2712, 2714, 3, 368, 184, 0, 2713, 2710, 1, 0, 0, 0, 2713, 2714, 1, 0, 0, 0, 2714, 2725, 1, 0, 0, 0, 2715, 2716, 5, 139, 0, 0, 2716, 2717, 5, 26, 0, 0, 2717, 2722, 3, 274, 137, 0, 2718, 2719, 5, 263, 0, 0, 2719, 2721, 3, 274, 137, 0, 2720, 2718, 1, 0, 0, 0, 2721, 2724, 1, 0, 0, 0, 2722, 2720, 1, 0, 0, 0, 2722, 2723, 1, 0, 0, 0, 2723, 2726, 1, 0, 0, 0, 2724, 2722, 1, 0, 0, 0, 2725, 2715, 1, 0, 0, 0, 2725, 2726, 1, 0, 0, 0, 2726, 2728, 1, 0, 0, 0, 2727, 2729, 3, 372, 186, 0, 2728, 2727, 1, 0, 0, 0, 2728, 2729, 1, 0, 0, 0, 2729, 2730, 1, 0, 0, 0, 2730, 2731, 5, 266, 0, 0, 2731, 371, 1, 0, 0, 0, 2732, 2733, 5, 154, 0, 0, 2733, 2749, 3, 374, 187, 0, 2734, 2735, 5, 169, 0, 0, 2735, 2749, 3, 374, 187, 0, 2736, 2737, 5, 154, 0, 0, 2737, 2738, 5, 15, 0, 0, 2738, 2739, 3, 374, 187, 0, 2739, 2740, 5, 5, 0, 0, 2740, 2741, 3, 374, 187, 0, 2741, 2749, 1, 0, 0, 0, 2742, 2743, 5, 169, 0, 0, 2743, 2744, 5, 15, 0, 0, 2744, 2745, 3, 374, 187, 0, 2745, 2746, 5, 5, 0, 0, 2746, 2747, 3, 374, 187, 0, 2747, 2749, 1, 0, 0, 0, 2748, 2732, 1, 0, 0, 0, 2748, 2734, 1, 0, 0, 0, 2748, 2736, 1, 0, 0, 0, 2748, 2742, 1, 0, 0, 0, 2749, 373, 1, 0, 0, 0, 2750, 2751, 5, 199, 0, 0, 2751, 2760, 5, 149, 0, 0, 2752, 2753, 5, 199, 0, 0, 2753, 2760, 5, 77, 0, 0, 2754, 2755, 5, 39, 0, 0, 2755, 2760, 5, 168, 0, 0, 2756, 2757, 3, 330, 165, 0, 2757, 2758, 7, 29, 0, 0, 2758, 2760, 1, 0, 0, 0, 2759, 2750, 1, 0, 0, 0, 2759, 2752, 1, 0, 0, 0, 2759, 2754, 1, 0, 0, 0, 2759, 2756, 1, 0, 0, 0, 2760, 375, 1, 0, 0, 0, 2761, 2762, 3, 390, 195, 0, 2762, 2763, 5, 261, 0, 0, 2763, 2764, 3, 390, 195, 0, 2764, 2767, 1, 0, 0, 0, 2765, 2767, 3, 390, 195, 0, 2766, 2761, 1, 0, 0, 0, 2766, 2765, 1, 0, 0, 0, 2767, 377, 1, 0, 0, 0, 2768, 2773, 3, 376, 188, 0, 2769, 2770, 5, 263, 0, 0, 2770, 2772, 3, 376, 188, 0, 2771, 2769, 1, 0, 0, 0, 2772, 2775, 1, 0, 0, 0, 2773, 2771, 1, 0, 0, 0, 2773, 2774, 1, 0, 0, 0, 2774, 379, 1, 0, 0, 0, 2775, 2773, 1, 0, 0, 0, 2776, 2790, 5, 2, 0, 0, 2777, 2790, 5, 4, 0, 0, 2778, 2790, 5, 58, 0, 0, 2779, 2790, 5, 37, 0, 0, 2780, 2790, 5, 99, 0, 0, 2781, 2790, 5, 162, 0, 0, 2782, 2787, 5, 174, 0, 0, 2783, 2784, 5, 265, 0, 0, 2784, 2785, 3, 390, 195, 0, 2785, 2786, 5, 266, 0, 0, 2786, 2788, 1, 0, 0, 0, 2787, 2783, 1, 0, 0, 0, 2787, 2788, 1, 0, 0, 0, 2788, 2790, 1, 0, 0, 0, 2789, 2776, 1, 0, 0, 0, 2789, 2777, 1, 0, 0, 0, 2789, 2778, 1, 0, 0, 0, 2789, 2779, 1, 0, 0, 0, 2789, 2780, 1, 0, 0, 0, 2789, 2781, 1, 0, 0, 0, 2789, 2782, 1, 0, 0, 0, 2790, 381, 1, 0, 0, 0, 2791, 2792, 7, 30, 0, 0, 2792, 383, 1, 0, 0, 0, 2793, 2798, 3, 390, 195, 0, 2794, 2795, 5, 261, 0, 0, 2795, 2797, 3, 390, 195, 0, 2796, 2794, 1, 0, 0, 0, 2797, 2800, 1, 0, 0, 0, 2798, 2796, 1, 0, 0, 0, 2798, 2799, 1, 0, 0, 0, 2799, 385, 1, 0, 0, 0, 2800, 2798, 1, 0, 0, 0, 2801, 2807, 4, 193, 13, 0, 2802, 2803, 3, 390, 195, 0, 2803, 2804, 5, 261, 0, 0, 2804, 2805, 3, 192, 96, 0, 2805, 2808, 1, 0, 0, 0, 2806, 2808, 3, 192, 96, 0, 2807, 2802, 1, 0, 0, 0, 2807, 2806, 1, 0, 0, 0, 2808, 2818, 1, 0, 0, 0, 2809, 2814, 3, 390, 195, 0, 2810, 2811, 5, 261, 0, 0, 2811, 2813, 3, 390, 195, 0, 2812, 2810, 1, 0, 0, 0, 2813, 2816, 1, 0, 0, 0, 2814, 2812, 1, 0, 0, 0, 2814, 2815, 1, 0, 0, 0, 2815, 2818, 1, 0, 0, 0, 2816, 2814, 1, 0, 0, 0, 2817, 2801, 1, 0, 0, 0, 2817, 2809, 1, 0, 0, 0, 2818, 387, 1, 0, 0, 0, 2819, 2820, 5, 166, 0, 0, 2820, 2826, 3, 390, 195, 0, 2821, 2822, 5, 204, 0, 0, 2822, 2826, 3, 390, 195, 0, 2823, 2824, 5, 87, 0, 0, 2824, 2826, 3, 390, 195, 0, 2825, 2819, 1, 0, 0, 0, 2825, 2821, 1, 0, 0, 0, 2825, 2823, 1, 0, 0, 0, 2826, 389, 1, 0, 0, 0, 2827, 2833, 5, 280, 0, 0, 2828, 2833, 5, 274, 0, 0, 2829, 2833, 3, 396, 198, 0, 2830, 2833, 5, 283, 0, 0, 2831, 2833, 5, 281, 0, 0, 2832, 2827, 1, 0, 0, 0, 2832, 2828, 1, 0, 0, 0, 2832, 2829, 1, 0, 0, 0, 2832, 2830, 1, 0, 0, 0, 2832, 2831, 1, 0, 0, 0, 2833, 391, 1, 0, 0, 0, 2834, 2836, 5, 256, 0, 0, 2835, 2834, 1, 0, 0, 0, 2835, 2836, 1, 0, 0, 0, 2836, 2837, 1, 0, 0, 0, 2837, 2847, 5, 278, 0, 0, 2838, 2840, 5, 256, 0, 0, 2839, 2838, 1, 0, 0, 0, 2839, 2840, 1, 0, 0, 0, 2840, 2841, 1, 0, 0, 0, 2841, 2847, 5, 279, 0, 0, 2842, 2844, 5, 256, 0, 0, 2843, 2842, 1, 0, 0, 0, 2843, 2844, 1, 0, 0, 0, 2844, 2845, 1, 0, 0, 0, 2845, 2847, 5, 277, 0, 0, 2846, 2835, 1, 0, 0, 0, 2846, 2839, 1, 0, 0, 0, 2846, 2843, 1, 0, 0, 0, 2847, 393, 1, 0, 0, 0, 2848, 2849, 7, 31, 0, 0, 2849, 395, 1, 0, 0, 0, 2850, 2851, 7, 32, 0, 0, 2851, 397, 1, 0, 0, 0, 362, 401, 408, 432, 445, 449, 453, 462, 467, 471, 477, 479, 484, 488, 492, 499, 504, 510, 514, 523, 530, 534, 539, 541, 546, 549, 556, 560, 565, 569, 572, 576, 584, 588, 592, 600, 604, 613, 616, 619, 625, 632, 643, 648, 653, 658, 663, 672, 675, 678, 682, 708, 734, 743, 753, 756, 770, 788, 790, 799, 810, 819, 826, 830, 837, 843, 846, 851, 858, 872, 885, 890, 895, 901, 937, 940, 946, 949, 955, 961, 973, 975, 986, 994, 999, 1003, 1008, 1015, 1019, 1023, 1029, 1033, 1037, 1046, 1049, 1052, 1060, 1074, 1081, 1094, 1100, 1105, 1108, 1111, 1116, 1120, 1129, 1134, 1140, 1144, 1148, 1153, 1156, 1164, 1167, 1170, 1182, 1185, 1188, 1193, 1197, 1213, 1218, 1225, 1228, 1234, 1237, 1244, 1247, 1251, 1256, 1259, 1266, 1269, 1293, 1307, 1311, 1315, 1335, 1337, 1339, 1348, 1350, 1359, 1361, 1370, 1372, 1377, 1386, 1395, 1404, 1415, 1421, 1426, 1429, 1442, 1452, 1456, 1461, 1472, 1477, 1510, 1518, 1523, 1530, 1537, 1541, 1546, 1549, 1554, 1559, 1564, 1568, 1577, 1580, 1584, 1591, 1600, 1604, 1608, 1615, 1618, 1628, 1635, 1640, 1645, 1650, 1656, 1659, 1668, 1671, 1674, 1680, 1685, 1695, 1698, 1701, 1705, 1715, 1718, 1724, 1730, 1733, 1736, 1740, 1750, 1761, 1766, 1769, 1773, 1780, 1790, 1802, 1808, 1810, 1819, 1822, 1829, 1839, 1845, 1853, 1864, 1874, 1885, 1887, 1893, 1898, 1908, 1911, 1917, 1919, 1927, 1933, 1936, 1938, 1950, 1957, 1961, 1965, 1969, 1972, 1981, 1984, 1987, 1992, 1995, 2002, 2008, 2013, 2016, 2023, 2034, 2037, 2041, 2045, 2054, 2058, 2061, 2064, 2075, 2091, 2095, 2099, 2103, 2107, 2111, 2115, 2119, 2129, 2134, 2143, 2148, 2161, 2163, 2169, 2173, 2175, 2183, 2192, 2195, 2210, 2216, 2224, 2231, 2235, 2243, 2245, 2256, 2264, 2273, 2279, 2284, 2290, 2296, 2301, 2306, 2312, 2323, 2325, 2331, 2338, 2341, 2350, 2353, 2357, 2360, 2386, 2392, 2396, 2408, 2418, 2421, 2434, 2437, 2456, 2460, 2468, 2472, 2497, 2500, 2509, 2515, 2521, 2527, 2538, 2547, 2569, 2572, 2575, 2585, 2587, 2594, 2596, 2618, 2647, 2654, 2662, 2667, 2669, 2675, 2682, 2688, 2705, 2713, 2722, 2725, 2728, 2748, 2759, 2766, 2773, 2787, 2789, 2798, 2807, 2814, 2817, 2825, 2832, 2835, 2839, 2843, 2846] \ No newline at end of file +[4, 1, 289, 2855, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 1, 0, 5, 0, 400, 8, 0, 10, 0, 12, 0, 403, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 409, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 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, 433, 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, 446, 8, 4, 1, 5, 1, 5, 3, 5, 450, 8, 5, 1, 5, 1, 5, 3, 5, 454, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 461, 8, 5, 10, 5, 12, 5, 464, 9, 5, 1, 5, 1, 5, 3, 5, 468, 8, 5, 1, 5, 1, 5, 3, 5, 472, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 478, 8, 5, 3, 5, 480, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 485, 8, 5, 1, 6, 1, 6, 3, 6, 489, 8, 6, 1, 6, 1, 6, 3, 6, 493, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 500, 8, 6, 1, 6, 1, 6, 1, 6, 3, 6, 505, 8, 6, 1, 6, 1, 6, 1, 7, 1, 7, 3, 7, 511, 8, 7, 1, 7, 1, 7, 3, 7, 515, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 5, 7, 522, 8, 7, 10, 7, 12, 7, 525, 9, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 531, 8, 7, 1, 7, 1, 7, 3, 7, 535, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 540, 8, 7, 3, 7, 542, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 547, 8, 7, 1, 7, 3, 7, 550, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 557, 8, 7, 1, 7, 1, 7, 3, 7, 561, 8, 7, 1, 8, 1, 8, 1, 8, 3, 8, 566, 8, 8, 1, 8, 1, 8, 3, 8, 570, 8, 8, 1, 8, 3, 8, 573, 8, 8, 1, 8, 1, 8, 3, 8, 577, 8, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 3, 9, 585, 8, 9, 1, 9, 1, 9, 3, 9, 589, 8, 9, 1, 9, 1, 9, 3, 9, 593, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 3, 11, 601, 8, 11, 1, 11, 1, 11, 3, 11, 605, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 612, 8, 11, 10, 11, 12, 11, 615, 9, 11, 3, 11, 617, 8, 11, 1, 11, 3, 11, 620, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 626, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 633, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 644, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 649, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 654, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 659, 8, 11, 1, 12, 1, 12, 1, 12, 3, 12, 664, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 5, 12, 671, 8, 12, 10, 12, 12, 12, 674, 9, 12, 3, 12, 676, 8, 12, 1, 12, 3, 12, 679, 8, 12, 1, 12, 1, 12, 3, 12, 683, 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, 709, 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, 735, 8, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 744, 8, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 754, 8, 16, 1, 16, 3, 16, 757, 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, 771, 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, 789, 8, 20, 3, 20, 791, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 798, 8, 20, 10, 20, 12, 20, 801, 9, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 811, 8, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 820, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 827, 8, 22, 1, 22, 1, 22, 3, 22, 831, 8, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 838, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 844, 8, 23, 1, 23, 3, 23, 847, 8, 23, 1, 23, 1, 23, 1, 23, 3, 23, 852, 8, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 859, 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, 873, 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, 886, 8, 26, 1, 26, 1, 26, 1, 26, 3, 26, 891, 8, 26, 1, 26, 1, 26, 1, 26, 3, 26, 896, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 902, 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, 938, 8, 32, 1, 32, 3, 32, 941, 8, 32, 1, 32, 1, 32, 1, 33, 1, 33, 3, 33, 947, 8, 33, 1, 33, 3, 33, 950, 8, 33, 1, 33, 1, 33, 1, 34, 1, 34, 3, 34, 956, 8, 34, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 962, 8, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 974, 8, 35, 3, 35, 976, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 987, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 995, 8, 37, 1, 38, 1, 38, 1, 38, 3, 38, 1000, 8, 38, 1, 38, 1, 38, 3, 38, 1004, 8, 38, 1, 39, 1, 39, 1, 39, 3, 39, 1009, 8, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 3, 40, 1016, 8, 40, 1, 40, 1, 40, 3, 40, 1020, 8, 40, 1, 41, 1, 41, 3, 41, 1024, 8, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1030, 8, 41, 1, 42, 1, 42, 3, 42, 1034, 8, 42, 1, 42, 1, 42, 3, 42, 1038, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 5, 42, 1045, 8, 42, 10, 42, 12, 42, 1048, 9, 42, 3, 42, 1050, 8, 42, 1, 42, 3, 42, 1053, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 3, 44, 1061, 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, 1075, 8, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 3, 47, 1082, 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, 1095, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1101, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1106, 8, 49, 1, 49, 3, 49, 1109, 8, 49, 1, 50, 3, 50, 1112, 8, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1117, 8, 50, 1, 50, 1, 50, 3, 50, 1121, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1128, 8, 50, 10, 50, 12, 50, 1131, 9, 50, 1, 50, 1, 50, 3, 50, 1135, 8, 50, 1, 50, 1, 50, 1, 51, 1, 51, 3, 51, 1141, 8, 51, 1, 52, 1, 52, 3, 52, 1145, 8, 52, 1, 52, 1, 52, 3, 52, 1149, 8, 52, 1, 53, 1, 53, 1, 53, 3, 53, 1154, 8, 53, 1, 53, 3, 53, 1157, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 1163, 8, 53, 10, 53, 12, 53, 1166, 9, 53, 3, 53, 1168, 8, 53, 1, 53, 3, 53, 1171, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 1181, 8, 54, 10, 54, 12, 54, 1184, 9, 54, 3, 54, 1186, 8, 54, 1, 54, 3, 54, 1189, 8, 54, 1, 55, 1, 55, 1, 55, 3, 55, 1194, 8, 55, 1, 55, 1, 55, 3, 55, 1198, 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, 1214, 8, 56, 1, 57, 1, 57, 1, 57, 3, 57, 1219, 8, 57, 1, 57, 1, 57, 1, 57, 5, 57, 1224, 8, 57, 10, 57, 12, 57, 1227, 9, 57, 3, 57, 1229, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1235, 8, 58, 1, 58, 3, 58, 1238, 8, 58, 1, 58, 1, 58, 1, 58, 5, 58, 1243, 8, 58, 10, 58, 12, 58, 1246, 9, 58, 3, 58, 1248, 8, 58, 1, 59, 1, 59, 3, 59, 1252, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1257, 8, 59, 1, 59, 3, 59, 1260, 8, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1265, 8, 59, 10, 59, 12, 59, 1268, 9, 59, 3, 59, 1270, 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, 1294, 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, 1308, 8, 65, 1, 65, 1, 65, 3, 65, 1312, 8, 65, 1, 66, 1, 66, 3, 66, 1316, 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, 1336, 8, 68, 3, 68, 1338, 8, 68, 3, 68, 1340, 8, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 1349, 8, 69, 3, 69, 1351, 8, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 1360, 8, 70, 3, 70, 1362, 8, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1371, 8, 71, 3, 71, 1373, 8, 71, 1, 72, 1, 72, 1, 72, 3, 72, 1378, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1387, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 1396, 8, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 1405, 8, 75, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 1416, 8, 77, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1422, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1427, 8, 78, 1, 78, 3, 78, 1430, 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, 1443, 8, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1453, 8, 80, 1, 80, 1, 80, 3, 80, 1457, 8, 80, 1, 81, 1, 81, 1, 81, 3, 81, 1462, 8, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 1471, 8, 82, 10, 82, 12, 82, 1474, 9, 82, 1, 82, 1, 82, 3, 82, 1478, 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, 1509, 8, 93, 10, 93, 12, 93, 1512, 9, 93, 1, 94, 1, 94, 1, 94, 5, 94, 1517, 8, 94, 10, 94, 12, 94, 1520, 9, 94, 1, 95, 1, 95, 3, 95, 1524, 8, 95, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 3, 97, 1531, 8, 97, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 3, 99, 1538, 8, 99, 1, 100, 1, 100, 3, 100, 1542, 8, 100, 1, 101, 1, 101, 1, 101, 3, 101, 1547, 8, 101, 1, 101, 3, 101, 1550, 8, 101, 1, 101, 1, 101, 1, 101, 3, 101, 1555, 8, 101, 1, 101, 1, 101, 1, 101, 3, 101, 1560, 8, 101, 1, 101, 1, 101, 1, 101, 3, 101, 1565, 8, 101, 1, 101, 1, 101, 3, 101, 1569, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 1578, 8, 101, 1, 101, 3, 101, 1581, 8, 101, 1, 101, 1, 101, 3, 101, 1585, 8, 101, 1, 102, 1, 102, 1, 102, 5, 102, 1590, 8, 102, 10, 102, 12, 102, 1593, 9, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 3, 104, 1601, 8, 104, 1, 104, 1, 104, 3, 104, 1605, 8, 104, 5, 104, 1607, 8, 104, 10, 104, 12, 104, 1610, 9, 104, 1, 104, 1, 104, 1, 105, 1, 105, 3, 105, 1616, 8, 105, 1, 106, 3, 106, 1619, 8, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 107, 5, 107, 1627, 8, 107, 10, 107, 12, 107, 1630, 9, 107, 1, 108, 1, 108, 1, 108, 1, 108, 3, 108, 1636, 8, 108, 1, 108, 1, 108, 1, 108, 3, 108, 1641, 8, 108, 1, 108, 1, 108, 1, 108, 3, 108, 1646, 8, 108, 1, 108, 1, 108, 1, 108, 3, 108, 1651, 8, 108, 1, 108, 1, 108, 5, 108, 1655, 8, 108, 10, 108, 12, 108, 1658, 9, 108, 3, 108, 1660, 8, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 1669, 8, 109, 1, 109, 3, 109, 1672, 8, 109, 1, 109, 3, 109, 1675, 8, 109, 1, 110, 1, 110, 1, 110, 1, 110, 3, 110, 1681, 8, 110, 1, 111, 1, 111, 1, 111, 3, 111, 1686, 8, 111, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 5, 113, 1694, 8, 113, 10, 113, 12, 113, 1697, 9, 113, 3, 113, 1699, 8, 113, 1, 113, 3, 113, 1702, 8, 113, 1, 113, 1, 113, 3, 113, 1706, 8, 113, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 5, 115, 1714, 8, 115, 10, 115, 12, 115, 1717, 9, 115, 3, 115, 1719, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 3, 116, 1725, 8, 116, 1, 116, 1, 116, 5, 116, 1729, 8, 116, 10, 116, 12, 116, 1732, 9, 116, 3, 116, 1734, 8, 116, 1, 117, 3, 117, 1737, 8, 117, 1, 117, 1, 117, 3, 117, 1741, 8, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 1751, 8, 118, 1, 119, 1, 119, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 5, 121, 1760, 8, 121, 10, 121, 12, 121, 1763, 9, 121, 1, 121, 1, 121, 3, 121, 1767, 8, 121, 1, 121, 3, 121, 1770, 8, 121, 1, 122, 1, 122, 3, 122, 1774, 8, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 3, 123, 1781, 8, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 5, 123, 1789, 8, 123, 10, 123, 12, 123, 1792, 9, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 1803, 8, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 1809, 8, 124, 3, 124, 1811, 8, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 1820, 8, 125, 1, 125, 3, 125, 1823, 8, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 3, 126, 1830, 8, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 3, 127, 1840, 8, 127, 1, 128, 1, 128, 1, 128, 1, 128, 3, 128, 1846, 8, 128, 1, 129, 1, 129, 1, 129, 1, 129, 5, 129, 1852, 8, 129, 10, 129, 12, 129, 1855, 9, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 5, 130, 1863, 8, 130, 10, 130, 12, 130, 1866, 9, 130, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 5, 131, 1873, 8, 131, 10, 131, 12, 131, 1876, 9, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1886, 8, 132, 3, 132, 1888, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 1894, 8, 132, 1, 133, 1, 133, 1, 133, 3, 133, 1899, 8, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 5, 134, 1907, 8, 134, 10, 134, 12, 134, 1910, 9, 134, 3, 134, 1912, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 1918, 8, 134, 3, 134, 1920, 8, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 1928, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 1934, 8, 135, 1, 135, 5, 135, 1937, 8, 135, 10, 135, 12, 135, 1940, 9, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 5, 136, 1949, 8, 136, 10, 136, 12, 136, 1952, 9, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 1958, 8, 136, 1, 137, 1, 137, 3, 137, 1962, 8, 137, 1, 137, 1, 137, 3, 137, 1966, 8, 137, 1, 138, 1, 138, 3, 138, 1970, 8, 138, 1, 138, 3, 138, 1973, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 5, 138, 1980, 8, 138, 10, 138, 12, 138, 1983, 9, 138, 3, 138, 1985, 8, 138, 1, 138, 3, 138, 1988, 8, 138, 1, 138, 1, 138, 1, 138, 3, 138, 1993, 8, 138, 1, 138, 3, 138, 1996, 8, 138, 1, 139, 1, 139, 1, 139, 5, 139, 2001, 8, 139, 10, 139, 12, 139, 2004, 9, 139, 1, 140, 1, 140, 1, 140, 3, 140, 2009, 8, 140, 1, 141, 1, 141, 1, 141, 3, 141, 2014, 8, 141, 1, 142, 3, 142, 2017, 8, 142, 1, 142, 1, 142, 1, 142, 5, 142, 2022, 8, 142, 10, 142, 12, 142, 2025, 9, 142, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 1, 144, 5, 144, 2033, 8, 144, 10, 144, 12, 144, 2036, 9, 144, 3, 144, 2038, 8, 144, 1, 144, 1, 144, 3, 144, 2042, 8, 144, 1, 145, 1, 145, 3, 145, 2046, 8, 145, 1, 145, 1, 145, 1, 145, 1, 146, 1, 146, 1, 147, 1, 147, 3, 147, 2055, 8, 147, 1, 147, 1, 147, 3, 147, 2059, 8, 147, 1, 147, 1, 147, 1, 147, 3, 147, 2064, 8, 147, 1, 148, 3, 148, 2067, 8, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 3, 151, 2078, 8, 151, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 3, 152, 2094, 8, 152, 5, 152, 2096, 8, 152, 10, 152, 12, 152, 2099, 9, 152, 1, 153, 3, 153, 2102, 8, 153, 1, 153, 1, 153, 3, 153, 2106, 8, 153, 1, 153, 1, 153, 3, 153, 2110, 8, 153, 1, 153, 1, 153, 3, 153, 2114, 8, 153, 1, 153, 1, 153, 3, 153, 2118, 8, 153, 1, 153, 1, 153, 3, 153, 2122, 8, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 3, 153, 2132, 8, 153, 1, 154, 1, 154, 1, 154, 3, 154, 2137, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 5, 154, 2144, 8, 154, 10, 154, 12, 154, 2147, 9, 154, 1, 154, 1, 154, 3, 154, 2151, 8, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 3, 155, 2164, 8, 155, 3, 155, 2166, 8, 155, 1, 156, 1, 156, 1, 157, 1, 157, 3, 157, 2172, 8, 157, 1, 157, 1, 157, 3, 157, 2176, 8, 157, 3, 157, 2178, 8, 157, 1, 158, 1, 158, 1, 158, 1, 158, 5, 158, 2184, 8, 158, 10, 158, 12, 158, 2187, 9, 158, 1, 158, 1, 158, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 2195, 8, 159, 1, 160, 3, 160, 2198, 8, 160, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 5, 162, 2211, 8, 162, 10, 162, 12, 162, 2214, 9, 162, 1, 162, 1, 162, 1, 162, 3, 162, 2219, 8, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 164, 1, 164, 3, 164, 2227, 8, 164, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 3, 166, 2234, 8, 166, 1, 166, 1, 166, 3, 166, 2238, 8, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 5, 166, 2246, 8, 166, 10, 166, 12, 166, 2249, 9, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 3, 167, 2259, 8, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 3, 167, 2267, 8, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 5, 167, 2274, 8, 167, 10, 167, 12, 167, 2277, 9, 167, 1, 167, 1, 167, 1, 167, 3, 167, 2282, 8, 167, 1, 167, 1, 167, 1, 167, 3, 167, 2287, 8, 167, 1, 167, 1, 167, 1, 167, 1, 167, 3, 167, 2293, 8, 167, 1, 167, 1, 167, 1, 167, 1, 167, 3, 167, 2299, 8, 167, 1, 167, 1, 167, 1, 167, 3, 167, 2304, 8, 167, 1, 167, 1, 167, 1, 167, 3, 167, 2309, 8, 167, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 2315, 8, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 5, 168, 2326, 8, 168, 10, 168, 12, 168, 2329, 9, 168, 1, 169, 1, 169, 1, 169, 3, 169, 2334, 8, 169, 1, 169, 1, 169, 1, 169, 5, 169, 2339, 8, 169, 10, 169, 12, 169, 2342, 9, 169, 3, 169, 2344, 8, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 5, 169, 2351, 8, 169, 10, 169, 12, 169, 2354, 9, 169, 3, 169, 2356, 8, 169, 1, 169, 1, 169, 3, 169, 2360, 8, 169, 1, 169, 3, 169, 2363, 8, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 2389, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 2395, 8, 170, 5, 170, 2397, 8, 170, 10, 170, 12, 170, 2400, 9, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 5, 170, 2409, 8, 170, 10, 170, 12, 170, 2412, 9, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 2421, 8, 170, 1, 170, 3, 170, 2424, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 5, 170, 2435, 8, 170, 10, 170, 12, 170, 2438, 9, 170, 3, 170, 2440, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 4, 170, 2457, 8, 170, 11, 170, 12, 170, 2458, 1, 170, 1, 170, 3, 170, 2463, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 4, 170, 2469, 8, 170, 11, 170, 12, 170, 2470, 1, 170, 1, 170, 3, 170, 2475, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 5, 170, 2498, 8, 170, 10, 170, 12, 170, 2501, 9, 170, 3, 170, 2503, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 2512, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 2518, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 2524, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 2530, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 2541, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 2550, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 5, 170, 2570, 8, 170, 10, 170, 12, 170, 2573, 9, 170, 3, 170, 2575, 8, 170, 1, 170, 3, 170, 2578, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 5, 170, 2588, 8, 170, 10, 170, 12, 170, 2591, 9, 170, 1, 171, 1, 171, 1, 171, 1, 171, 3, 171, 2597, 8, 171, 3, 171, 2599, 8, 171, 1, 172, 1, 172, 1, 173, 1, 173, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 2621, 8, 175, 1, 176, 1, 176, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 5, 178, 2648, 8, 178, 10, 178, 12, 178, 2651, 9, 178, 1, 178, 1, 178, 1, 178, 1, 178, 3, 178, 2657, 8, 178, 1, 178, 1, 178, 1, 178, 1, 178, 5, 178, 2663, 8, 178, 10, 178, 12, 178, 2666, 9, 178, 1, 178, 1, 178, 3, 178, 2670, 8, 178, 3, 178, 2672, 8, 178, 1, 178, 1, 178, 5, 178, 2676, 8, 178, 10, 178, 12, 178, 2679, 9, 178, 1, 179, 1, 179, 1, 180, 1, 180, 3, 180, 2685, 8, 180, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 2691, 8, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 5, 184, 2706, 8, 184, 10, 184, 12, 184, 2709, 9, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 3, 185, 2716, 8, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 5, 185, 2723, 8, 185, 10, 185, 12, 185, 2726, 9, 185, 3, 185, 2728, 8, 185, 1, 185, 3, 185, 2731, 8, 185, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 3, 186, 2751, 8, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 3, 187, 2762, 8, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 2769, 8, 188, 1, 189, 1, 189, 1, 189, 5, 189, 2774, 8, 189, 10, 189, 12, 189, 2777, 9, 189, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 3, 190, 2790, 8, 190, 3, 190, 2792, 8, 190, 1, 191, 1, 191, 1, 192, 1, 192, 1, 192, 5, 192, 2799, 8, 192, 10, 192, 12, 192, 2802, 9, 192, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 3, 193, 2810, 8, 193, 1, 193, 1, 193, 1, 193, 5, 193, 2815, 8, 193, 10, 193, 12, 193, 2818, 9, 193, 3, 193, 2820, 8, 193, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 3, 194, 2828, 8, 194, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 3, 195, 2835, 8, 195, 1, 196, 3, 196, 2838, 8, 196, 1, 196, 1, 196, 3, 196, 2842, 8, 196, 1, 196, 1, 196, 3, 196, 2846, 8, 196, 1, 196, 3, 196, 2849, 8, 196, 1, 197, 1, 197, 1, 198, 1, 198, 1, 198, 10, 799, 1472, 1656, 1695, 1715, 1730, 1761, 1790, 1864, 2398, 6, 270, 304, 332, 336, 340, 356, 199, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 0, 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, 3172, 0, 401, 1, 0, 0, 0, 2, 406, 1, 0, 0, 0, 4, 432, 1, 0, 0, 0, 6, 434, 1, 0, 0, 0, 8, 445, 1, 0, 0, 0, 10, 447, 1, 0, 0, 0, 12, 486, 1, 0, 0, 0, 14, 508, 1, 0, 0, 0, 16, 562, 1, 0, 0, 0, 18, 581, 1, 0, 0, 0, 20, 594, 1, 0, 0, 0, 22, 598, 1, 0, 0, 0, 24, 660, 1, 0, 0, 0, 26, 708, 1, 0, 0, 0, 28, 710, 1, 0, 0, 0, 30, 718, 1, 0, 0, 0, 32, 738, 1, 0, 0, 0, 34, 758, 1, 0, 0, 0, 36, 765, 1, 0, 0, 0, 38, 774, 1, 0, 0, 0, 40, 782, 1, 0, 0, 0, 42, 804, 1, 0, 0, 0, 44, 814, 1, 0, 0, 0, 46, 832, 1, 0, 0, 0, 48, 853, 1, 0, 0, 0, 50, 874, 1, 0, 0, 0, 52, 880, 1, 0, 0, 0, 54, 897, 1, 0, 0, 0, 56, 906, 1, 0, 0, 0, 58, 913, 1, 0, 0, 0, 60, 921, 1, 0, 0, 0, 62, 928, 1, 0, 0, 0, 64, 935, 1, 0, 0, 0, 66, 944, 1, 0, 0, 0, 68, 955, 1, 0, 0, 0, 70, 957, 1, 0, 0, 0, 72, 977, 1, 0, 0, 0, 74, 994, 1, 0, 0, 0, 76, 996, 1, 0, 0, 0, 78, 1005, 1, 0, 0, 0, 80, 1012, 1, 0, 0, 0, 82, 1021, 1, 0, 0, 0, 84, 1031, 1, 0, 0, 0, 86, 1054, 1, 0, 0, 0, 88, 1060, 1, 0, 0, 0, 90, 1062, 1, 0, 0, 0, 92, 1069, 1, 0, 0, 0, 94, 1081, 1, 0, 0, 0, 96, 1083, 1, 0, 0, 0, 98, 1090, 1, 0, 0, 0, 100, 1111, 1, 0, 0, 0, 102, 1140, 1, 0, 0, 0, 104, 1142, 1, 0, 0, 0, 106, 1150, 1, 0, 0, 0, 108, 1172, 1, 0, 0, 0, 110, 1190, 1, 0, 0, 0, 112, 1213, 1, 0, 0, 0, 114, 1215, 1, 0, 0, 0, 116, 1230, 1, 0, 0, 0, 118, 1249, 1, 0, 0, 0, 120, 1271, 1, 0, 0, 0, 122, 1276, 1, 0, 0, 0, 124, 1281, 1, 0, 0, 0, 126, 1286, 1, 0, 0, 0, 128, 1291, 1, 0, 0, 0, 130, 1298, 1, 0, 0, 0, 132, 1313, 1, 0, 0, 0, 134, 1319, 1, 0, 0, 0, 136, 1339, 1, 0, 0, 0, 138, 1341, 1, 0, 0, 0, 140, 1352, 1, 0, 0, 0, 142, 1363, 1, 0, 0, 0, 144, 1377, 1, 0, 0, 0, 146, 1379, 1, 0, 0, 0, 148, 1388, 1, 0, 0, 0, 150, 1397, 1, 0, 0, 0, 152, 1406, 1, 0, 0, 0, 154, 1409, 1, 0, 0, 0, 156, 1417, 1, 0, 0, 0, 158, 1433, 1, 0, 0, 0, 160, 1437, 1, 0, 0, 0, 162, 1461, 1, 0, 0, 0, 164, 1463, 1, 0, 0, 0, 166, 1479, 1, 0, 0, 0, 168, 1482, 1, 0, 0, 0, 170, 1486, 1, 0, 0, 0, 172, 1489, 1, 0, 0, 0, 174, 1493, 1, 0, 0, 0, 176, 1495, 1, 0, 0, 0, 178, 1497, 1, 0, 0, 0, 180, 1499, 1, 0, 0, 0, 182, 1501, 1, 0, 0, 0, 184, 1503, 1, 0, 0, 0, 186, 1505, 1, 0, 0, 0, 188, 1513, 1, 0, 0, 0, 190, 1523, 1, 0, 0, 0, 192, 1525, 1, 0, 0, 0, 194, 1530, 1, 0, 0, 0, 196, 1532, 1, 0, 0, 0, 198, 1537, 1, 0, 0, 0, 200, 1541, 1, 0, 0, 0, 202, 1546, 1, 0, 0, 0, 204, 1586, 1, 0, 0, 0, 206, 1594, 1, 0, 0, 0, 208, 1598, 1, 0, 0, 0, 210, 1613, 1, 0, 0, 0, 212, 1618, 1, 0, 0, 0, 214, 1622, 1, 0, 0, 0, 216, 1631, 1, 0, 0, 0, 218, 1661, 1, 0, 0, 0, 220, 1676, 1, 0, 0, 0, 222, 1682, 1, 0, 0, 0, 224, 1687, 1, 0, 0, 0, 226, 1689, 1, 0, 0, 0, 228, 1707, 1, 0, 0, 0, 230, 1710, 1, 0, 0, 0, 232, 1720, 1, 0, 0, 0, 234, 1740, 1, 0, 0, 0, 236, 1750, 1, 0, 0, 0, 238, 1752, 1, 0, 0, 0, 240, 1754, 1, 0, 0, 0, 242, 1769, 1, 0, 0, 0, 244, 1771, 1, 0, 0, 0, 246, 1778, 1, 0, 0, 0, 248, 1810, 1, 0, 0, 0, 250, 1822, 1, 0, 0, 0, 252, 1829, 1, 0, 0, 0, 254, 1839, 1, 0, 0, 0, 256, 1841, 1, 0, 0, 0, 258, 1847, 1, 0, 0, 0, 260, 1858, 1, 0, 0, 0, 262, 1869, 1, 0, 0, 0, 264, 1877, 1, 0, 0, 0, 266, 1895, 1, 0, 0, 0, 268, 1900, 1, 0, 0, 0, 270, 1921, 1, 0, 0, 0, 272, 1957, 1, 0, 0, 0, 274, 1959, 1, 0, 0, 0, 276, 1967, 1, 0, 0, 0, 278, 1997, 1, 0, 0, 0, 280, 2005, 1, 0, 0, 0, 282, 2010, 1, 0, 0, 0, 284, 2016, 1, 0, 0, 0, 286, 2026, 1, 0, 0, 0, 288, 2041, 1, 0, 0, 0, 290, 2043, 1, 0, 0, 0, 292, 2050, 1, 0, 0, 0, 294, 2063, 1, 0, 0, 0, 296, 2066, 1, 0, 0, 0, 298, 2070, 1, 0, 0, 0, 300, 2072, 1, 0, 0, 0, 302, 2077, 1, 0, 0, 0, 304, 2081, 1, 0, 0, 0, 306, 2131, 1, 0, 0, 0, 308, 2150, 1, 0, 0, 0, 310, 2152, 1, 0, 0, 0, 312, 2167, 1, 0, 0, 0, 314, 2169, 1, 0, 0, 0, 316, 2179, 1, 0, 0, 0, 318, 2194, 1, 0, 0, 0, 320, 2197, 1, 0, 0, 0, 322, 2201, 1, 0, 0, 0, 324, 2205, 1, 0, 0, 0, 326, 2220, 1, 0, 0, 0, 328, 2226, 1, 0, 0, 0, 330, 2228, 1, 0, 0, 0, 332, 2237, 1, 0, 0, 0, 334, 2308, 1, 0, 0, 0, 336, 2314, 1, 0, 0, 0, 338, 2330, 1, 0, 0, 0, 340, 2577, 1, 0, 0, 0, 342, 2598, 1, 0, 0, 0, 344, 2600, 1, 0, 0, 0, 346, 2602, 1, 0, 0, 0, 348, 2604, 1, 0, 0, 0, 350, 2620, 1, 0, 0, 0, 352, 2622, 1, 0, 0, 0, 354, 2624, 1, 0, 0, 0, 356, 2671, 1, 0, 0, 0, 358, 2680, 1, 0, 0, 0, 360, 2684, 1, 0, 0, 0, 362, 2690, 1, 0, 0, 0, 364, 2692, 1, 0, 0, 0, 366, 2697, 1, 0, 0, 0, 368, 2702, 1, 0, 0, 0, 370, 2710, 1, 0, 0, 0, 372, 2750, 1, 0, 0, 0, 374, 2761, 1, 0, 0, 0, 376, 2768, 1, 0, 0, 0, 378, 2770, 1, 0, 0, 0, 380, 2791, 1, 0, 0, 0, 382, 2793, 1, 0, 0, 0, 384, 2795, 1, 0, 0, 0, 386, 2819, 1, 0, 0, 0, 388, 2827, 1, 0, 0, 0, 390, 2834, 1, 0, 0, 0, 392, 2848, 1, 0, 0, 0, 394, 2850, 1, 0, 0, 0, 396, 2852, 1, 0, 0, 0, 398, 400, 3, 2, 1, 0, 399, 398, 1, 0, 0, 0, 400, 403, 1, 0, 0, 0, 401, 399, 1, 0, 0, 0, 401, 402, 1, 0, 0, 0, 402, 404, 1, 0, 0, 0, 403, 401, 1, 0, 0, 0, 404, 405, 5, 0, 0, 1, 405, 1, 1, 0, 0, 0, 406, 408, 3, 4, 2, 0, 407, 409, 5, 262, 0, 0, 408, 407, 1, 0, 0, 0, 408, 409, 1, 0, 0, 0, 409, 3, 1, 0, 0, 0, 410, 433, 3, 212, 106, 0, 411, 433, 3, 6, 3, 0, 412, 433, 3, 8, 4, 0, 413, 433, 3, 26, 13, 0, 414, 433, 3, 64, 32, 0, 415, 433, 3, 66, 33, 0, 416, 433, 3, 68, 34, 0, 417, 433, 3, 74, 37, 0, 418, 433, 3, 88, 44, 0, 419, 433, 3, 94, 47, 0, 420, 433, 3, 100, 50, 0, 421, 433, 3, 102, 51, 0, 422, 433, 3, 108, 54, 0, 423, 433, 3, 110, 55, 0, 424, 433, 3, 112, 56, 0, 425, 433, 3, 144, 72, 0, 426, 433, 3, 152, 76, 0, 427, 433, 3, 154, 77, 0, 428, 433, 3, 156, 78, 0, 429, 433, 3, 158, 79, 0, 430, 433, 3, 160, 80, 0, 431, 433, 3, 162, 81, 0, 432, 410, 1, 0, 0, 0, 432, 411, 1, 0, 0, 0, 432, 412, 1, 0, 0, 0, 432, 413, 1, 0, 0, 0, 432, 414, 1, 0, 0, 0, 432, 415, 1, 0, 0, 0, 432, 416, 1, 0, 0, 0, 432, 417, 1, 0, 0, 0, 432, 418, 1, 0, 0, 0, 432, 419, 1, 0, 0, 0, 432, 420, 1, 0, 0, 0, 432, 421, 1, 0, 0, 0, 432, 422, 1, 0, 0, 0, 432, 423, 1, 0, 0, 0, 432, 424, 1, 0, 0, 0, 432, 425, 1, 0, 0, 0, 432, 426, 1, 0, 0, 0, 432, 427, 1, 0, 0, 0, 432, 428, 1, 0, 0, 0, 432, 429, 1, 0, 0, 0, 432, 430, 1, 0, 0, 0, 432, 431, 1, 0, 0, 0, 433, 5, 1, 0, 0, 0, 434, 435, 5, 203, 0, 0, 435, 436, 3, 184, 92, 0, 436, 7, 1, 0, 0, 0, 437, 446, 3, 18, 9, 0, 438, 446, 3, 20, 10, 0, 439, 446, 3, 22, 11, 0, 440, 446, 3, 24, 12, 0, 441, 446, 3, 16, 8, 0, 442, 446, 3, 14, 7, 0, 443, 446, 3, 12, 6, 0, 444, 446, 3, 10, 5, 0, 445, 437, 1, 0, 0, 0, 445, 438, 1, 0, 0, 0, 445, 439, 1, 0, 0, 0, 445, 440, 1, 0, 0, 0, 445, 441, 1, 0, 0, 0, 445, 442, 1, 0, 0, 0, 445, 443, 1, 0, 0, 0, 445, 444, 1, 0, 0, 0, 446, 9, 1, 0, 0, 0, 447, 449, 5, 37, 0, 0, 448, 450, 5, 19, 0, 0, 449, 448, 1, 0, 0, 0, 449, 450, 1, 0, 0, 0, 450, 451, 1, 0, 0, 0, 451, 453, 5, 188, 0, 0, 452, 454, 3, 172, 86, 0, 453, 452, 1, 0, 0, 0, 453, 454, 1, 0, 0, 0, 454, 455, 1, 0, 0, 0, 455, 471, 3, 174, 87, 0, 456, 457, 5, 265, 0, 0, 457, 462, 3, 222, 111, 0, 458, 459, 5, 263, 0, 0, 459, 461, 3, 222, 111, 0, 460, 458, 1, 0, 0, 0, 461, 464, 1, 0, 0, 0, 462, 460, 1, 0, 0, 0, 462, 463, 1, 0, 0, 0, 463, 467, 1, 0, 0, 0, 464, 462, 1, 0, 0, 0, 465, 466, 5, 263, 0, 0, 466, 468, 3, 216, 108, 0, 467, 465, 1, 0, 0, 0, 467, 468, 1, 0, 0, 0, 468, 469, 1, 0, 0, 0, 469, 470, 5, 266, 0, 0, 470, 472, 1, 0, 0, 0, 471, 456, 1, 0, 0, 0, 471, 472, 1, 0, 0, 0, 472, 479, 1, 0, 0, 0, 473, 474, 5, 17, 0, 0, 474, 477, 5, 26, 0, 0, 475, 478, 3, 316, 158, 0, 476, 478, 3, 260, 130, 0, 477, 475, 1, 0, 0, 0, 477, 476, 1, 0, 0, 0, 478, 480, 1, 0, 0, 0, 479, 473, 1, 0, 0, 0, 479, 480, 1, 0, 0, 0, 480, 481, 1, 0, 0, 0, 481, 484, 3, 202, 101, 0, 482, 483, 5, 9, 0, 0, 483, 485, 3, 212, 106, 0, 484, 482, 1, 0, 0, 0, 484, 485, 1, 0, 0, 0, 485, 11, 1, 0, 0, 0, 486, 488, 5, 37, 0, 0, 487, 489, 5, 19, 0, 0, 488, 487, 1, 0, 0, 0, 488, 489, 1, 0, 0, 0, 489, 490, 1, 0, 0, 0, 490, 492, 5, 188, 0, 0, 491, 493, 3, 172, 86, 0, 492, 491, 1, 0, 0, 0, 492, 493, 1, 0, 0, 0, 493, 494, 1, 0, 0, 0, 494, 495, 3, 174, 87, 0, 495, 499, 5, 115, 0, 0, 496, 500, 3, 186, 93, 0, 497, 498, 5, 147, 0, 0, 498, 500, 3, 342, 171, 0, 499, 496, 1, 0, 0, 0, 499, 497, 1, 0, 0, 0, 500, 504, 1, 0, 0, 0, 501, 502, 5, 17, 0, 0, 502, 503, 5, 26, 0, 0, 503, 505, 3, 260, 130, 0, 504, 501, 1, 0, 0, 0, 504, 505, 1, 0, 0, 0, 505, 506, 1, 0, 0, 0, 506, 507, 3, 202, 101, 0, 507, 13, 1, 0, 0, 0, 508, 510, 5, 37, 0, 0, 509, 511, 5, 19, 0, 0, 510, 509, 1, 0, 0, 0, 510, 511, 1, 0, 0, 0, 511, 512, 1, 0, 0, 0, 512, 514, 5, 188, 0, 0, 513, 515, 3, 172, 86, 0, 514, 513, 1, 0, 0, 0, 514, 515, 1, 0, 0, 0, 515, 516, 1, 0, 0, 0, 516, 534, 3, 174, 87, 0, 517, 518, 5, 265, 0, 0, 518, 523, 3, 224, 112, 0, 519, 520, 5, 263, 0, 0, 520, 522, 3, 224, 112, 0, 521, 519, 1, 0, 0, 0, 522, 525, 1, 0, 0, 0, 523, 521, 1, 0, 0, 0, 523, 524, 1, 0, 0, 0, 524, 530, 1, 0, 0, 0, 525, 523, 1, 0, 0, 0, 526, 527, 5, 263, 0, 0, 527, 528, 5, 150, 0, 0, 528, 529, 5, 110, 0, 0, 529, 531, 3, 316, 158, 0, 530, 526, 1, 0, 0, 0, 530, 531, 1, 0, 0, 0, 531, 532, 1, 0, 0, 0, 532, 533, 5, 266, 0, 0, 533, 535, 1, 0, 0, 0, 534, 517, 1, 0, 0, 0, 534, 535, 1, 0, 0, 0, 535, 541, 1, 0, 0, 0, 536, 537, 5, 150, 0, 0, 537, 539, 5, 110, 0, 0, 538, 540, 3, 316, 158, 0, 539, 538, 1, 0, 0, 0, 539, 540, 1, 0, 0, 0, 540, 542, 1, 0, 0, 0, 541, 536, 1, 0, 0, 0, 541, 542, 1, 0, 0, 0, 542, 546, 1, 0, 0, 0, 543, 544, 5, 145, 0, 0, 544, 545, 5, 26, 0, 0, 545, 547, 3, 242, 121, 0, 546, 543, 1, 0, 0, 0, 546, 547, 1, 0, 0, 0, 547, 549, 1, 0, 0, 0, 548, 550, 3, 228, 114, 0, 549, 548, 1, 0, 0, 0, 549, 550, 1, 0, 0, 0, 550, 551, 1, 0, 0, 0, 551, 552, 5, 23, 0, 0, 552, 553, 5, 9, 0, 0, 553, 556, 5, 111, 0, 0, 554, 555, 5, 25, 0, 0, 555, 557, 3, 258, 129, 0, 556, 554, 1, 0, 0, 0, 556, 557, 1, 0, 0, 0, 557, 560, 1, 0, 0, 0, 558, 559, 5, 9, 0, 0, 559, 561, 3, 212, 106, 0, 560, 558, 1, 0, 0, 0, 560, 561, 1, 0, 0, 0, 561, 15, 1, 0, 0, 0, 562, 563, 5, 37, 0, 0, 563, 565, 5, 212, 0, 0, 564, 566, 3, 172, 86, 0, 565, 564, 1, 0, 0, 0, 565, 566, 1, 0, 0, 0, 566, 567, 1, 0, 0, 0, 567, 569, 3, 178, 89, 0, 568, 570, 3, 208, 104, 0, 569, 568, 1, 0, 0, 0, 569, 570, 1, 0, 0, 0, 570, 572, 1, 0, 0, 0, 571, 573, 3, 228, 114, 0, 572, 571, 1, 0, 0, 0, 572, 573, 1, 0, 0, 0, 573, 576, 1, 0, 0, 0, 574, 575, 5, 25, 0, 0, 575, 577, 3, 258, 129, 0, 576, 574, 1, 0, 0, 0, 576, 577, 1, 0, 0, 0, 577, 578, 1, 0, 0, 0, 578, 579, 5, 9, 0, 0, 579, 580, 3, 212, 106, 0, 580, 17, 1, 0, 0, 0, 581, 582, 5, 37, 0, 0, 582, 584, 7, 0, 0, 0, 583, 585, 3, 172, 86, 0, 584, 583, 1, 0, 0, 0, 584, 585, 1, 0, 0, 0, 585, 586, 1, 0, 0, 0, 586, 588, 3, 176, 88, 0, 587, 589, 3, 228, 114, 0, 588, 587, 1, 0, 0, 0, 588, 589, 1, 0, 0, 0, 589, 592, 1, 0, 0, 0, 590, 591, 5, 24, 0, 0, 591, 593, 3, 342, 171, 0, 592, 590, 1, 0, 0, 0, 592, 593, 1, 0, 0, 0, 593, 19, 1, 0, 0, 0, 594, 595, 5, 37, 0, 0, 595, 596, 5, 166, 0, 0, 596, 597, 3, 390, 195, 0, 597, 21, 1, 0, 0, 0, 598, 600, 5, 37, 0, 0, 599, 601, 5, 12, 0, 0, 600, 599, 1, 0, 0, 0, 600, 601, 1, 0, 0, 0, 601, 602, 1, 0, 0, 0, 602, 604, 5, 84, 0, 0, 603, 605, 3, 172, 86, 0, 604, 603, 1, 0, 0, 0, 604, 605, 1, 0, 0, 0, 605, 606, 1, 0, 0, 0, 606, 619, 3, 180, 90, 0, 607, 616, 5, 265, 0, 0, 608, 613, 3, 356, 178, 0, 609, 610, 5, 263, 0, 0, 610, 612, 3, 356, 178, 0, 611, 609, 1, 0, 0, 0, 612, 615, 1, 0, 0, 0, 613, 611, 1, 0, 0, 0, 613, 614, 1, 0, 0, 0, 614, 617, 1, 0, 0, 0, 615, 613, 1, 0, 0, 0, 616, 608, 1, 0, 0, 0, 616, 617, 1, 0, 0, 0, 617, 618, 1, 0, 0, 0, 618, 620, 5, 266, 0, 0, 619, 607, 1, 0, 0, 0, 619, 620, 1, 0, 0, 0, 620, 621, 1, 0, 0, 0, 621, 622, 5, 160, 0, 0, 622, 625, 3, 356, 178, 0, 623, 624, 5, 102, 0, 0, 624, 626, 3, 356, 178, 0, 625, 623, 1, 0, 0, 0, 625, 626, 1, 0, 0, 0, 626, 627, 1, 0, 0, 0, 627, 628, 5, 24, 0, 0, 628, 632, 5, 274, 0, 0, 629, 630, 5, 104, 0, 0, 630, 631, 5, 249, 0, 0, 631, 633, 5, 274, 0, 0, 632, 629, 1, 0, 0, 0, 632, 633, 1, 0, 0, 0, 633, 634, 1, 0, 0, 0, 634, 635, 5, 206, 0, 0, 635, 636, 5, 249, 0, 0, 636, 637, 5, 274, 0, 0, 637, 638, 5, 126, 0, 0, 638, 639, 5, 249, 0, 0, 639, 643, 5, 274, 0, 0, 640, 641, 5, 18, 0, 0, 641, 642, 5, 249, 0, 0, 642, 644, 5, 274, 0, 0, 643, 640, 1, 0, 0, 0, 643, 644, 1, 0, 0, 0, 644, 648, 1, 0, 0, 0, 645, 646, 5, 20, 0, 0, 646, 647, 5, 249, 0, 0, 647, 649, 5, 274, 0, 0, 648, 645, 1, 0, 0, 0, 648, 649, 1, 0, 0, 0, 649, 653, 1, 0, 0, 0, 650, 651, 5, 187, 0, 0, 651, 652, 5, 249, 0, 0, 652, 654, 5, 274, 0, 0, 653, 650, 1, 0, 0, 0, 653, 654, 1, 0, 0, 0, 654, 658, 1, 0, 0, 0, 655, 656, 5, 76, 0, 0, 656, 657, 5, 249, 0, 0, 657, 659, 5, 274, 0, 0, 658, 655, 1, 0, 0, 0, 658, 659, 1, 0, 0, 0, 659, 23, 1, 0, 0, 0, 660, 661, 5, 37, 0, 0, 661, 663, 5, 84, 0, 0, 662, 664, 3, 172, 86, 0, 663, 662, 1, 0, 0, 0, 663, 664, 1, 0, 0, 0, 664, 665, 1, 0, 0, 0, 665, 678, 3, 180, 90, 0, 666, 675, 5, 265, 0, 0, 667, 672, 3, 356, 178, 0, 668, 669, 5, 263, 0, 0, 669, 671, 3, 356, 178, 0, 670, 668, 1, 0, 0, 0, 671, 674, 1, 0, 0, 0, 672, 670, 1, 0, 0, 0, 672, 673, 1, 0, 0, 0, 673, 676, 1, 0, 0, 0, 674, 672, 1, 0, 0, 0, 675, 667, 1, 0, 0, 0, 675, 676, 1, 0, 0, 0, 676, 677, 1, 0, 0, 0, 677, 679, 5, 266, 0, 0, 678, 666, 1, 0, 0, 0, 678, 679, 1, 0, 0, 0, 679, 682, 1, 0, 0, 0, 680, 681, 5, 160, 0, 0, 681, 683, 3, 356, 178, 0, 682, 680, 1, 0, 0, 0, 682, 683, 1, 0, 0, 0, 683, 684, 1, 0, 0, 0, 684, 685, 5, 24, 0, 0, 685, 686, 5, 274, 0, 0, 686, 687, 5, 186, 0, 0, 687, 688, 5, 249, 0, 0, 688, 689, 3, 342, 171, 0, 689, 25, 1, 0, 0, 0, 690, 709, 3, 28, 14, 0, 691, 709, 3, 62, 31, 0, 692, 709, 3, 60, 30, 0, 693, 709, 3, 58, 29, 0, 694, 709, 3, 54, 27, 0, 695, 709, 3, 56, 28, 0, 696, 709, 3, 52, 26, 0, 697, 709, 3, 48, 24, 0, 698, 709, 3, 50, 25, 0, 699, 709, 3, 46, 23, 0, 700, 709, 3, 44, 22, 0, 701, 709, 3, 42, 21, 0, 702, 709, 3, 40, 20, 0, 703, 709, 3, 34, 17, 0, 704, 709, 3, 30, 15, 0, 705, 709, 3, 32, 16, 0, 706, 709, 3, 36, 18, 0, 707, 709, 3, 38, 19, 0, 708, 690, 1, 0, 0, 0, 708, 691, 1, 0, 0, 0, 708, 692, 1, 0, 0, 0, 708, 693, 1, 0, 0, 0, 708, 694, 1, 0, 0, 0, 708, 695, 1, 0, 0, 0, 708, 696, 1, 0, 0, 0, 708, 697, 1, 0, 0, 0, 708, 698, 1, 0, 0, 0, 708, 699, 1, 0, 0, 0, 708, 700, 1, 0, 0, 0, 708, 701, 1, 0, 0, 0, 708, 702, 1, 0, 0, 0, 708, 703, 1, 0, 0, 0, 708, 704, 1, 0, 0, 0, 708, 705, 1, 0, 0, 0, 708, 706, 1, 0, 0, 0, 708, 707, 1, 0, 0, 0, 709, 27, 1, 0, 0, 0, 710, 711, 5, 4, 0, 0, 711, 712, 5, 46, 0, 0, 712, 713, 3, 184, 92, 0, 713, 714, 5, 176, 0, 0, 714, 715, 5, 142, 0, 0, 715, 716, 7, 1, 0, 0, 716, 717, 3, 390, 195, 0, 717, 29, 1, 0, 0, 0, 718, 719, 5, 4, 0, 0, 719, 720, 5, 188, 0, 0, 720, 721, 3, 186, 93, 0, 721, 722, 5, 176, 0, 0, 722, 723, 5, 32, 0, 0, 723, 724, 5, 182, 0, 0, 724, 725, 3, 194, 97, 0, 725, 726, 5, 265, 0, 0, 726, 727, 3, 238, 119, 0, 727, 728, 5, 249, 0, 0, 728, 734, 3, 342, 171, 0, 729, 730, 5, 263, 0, 0, 730, 731, 3, 238, 119, 0, 731, 732, 5, 249, 0, 0, 732, 733, 3, 342, 171, 0, 733, 735, 1, 0, 0, 0, 734, 729, 1, 0, 0, 0, 734, 735, 1, 0, 0, 0, 735, 736, 1, 0, 0, 0, 736, 737, 5, 266, 0, 0, 737, 31, 1, 0, 0, 0, 738, 739, 5, 4, 0, 0, 739, 740, 5, 188, 0, 0, 740, 743, 3, 186, 93, 0, 741, 742, 5, 145, 0, 0, 742, 744, 3, 330, 165, 0, 743, 741, 1, 0, 0, 0, 743, 744, 1, 0, 0, 0, 744, 745, 1, 0, 0, 0, 745, 756, 5, 176, 0, 0, 746, 747, 5, 30, 0, 0, 747, 748, 5, 94, 0, 0, 748, 753, 3, 342, 171, 0, 749, 750, 5, 216, 0, 0, 750, 751, 5, 151, 0, 0, 751, 752, 5, 249, 0, 0, 752, 754, 3, 392, 196, 0, 753, 749, 1, 0, 0, 0, 753, 754, 1, 0, 0, 0, 754, 757, 1, 0, 0, 0, 755, 757, 5, 197, 0, 0, 756, 746, 1, 0, 0, 0, 756, 755, 1, 0, 0, 0, 757, 33, 1, 0, 0, 0, 758, 759, 5, 4, 0, 0, 759, 760, 5, 188, 0, 0, 760, 761, 3, 186, 93, 0, 761, 762, 5, 31, 0, 0, 762, 763, 3, 194, 97, 0, 763, 764, 3, 230, 115, 0, 764, 35, 1, 0, 0, 0, 765, 766, 5, 4, 0, 0, 766, 767, 5, 188, 0, 0, 767, 768, 3, 186, 93, 0, 768, 770, 5, 58, 0, 0, 769, 771, 5, 32, 0, 0, 770, 769, 1, 0, 0, 0, 770, 771, 1, 0, 0, 0, 771, 772, 1, 0, 0, 0, 772, 773, 3, 194, 97, 0, 773, 37, 1, 0, 0, 0, 774, 775, 5, 4, 0, 0, 775, 776, 5, 188, 0, 0, 776, 777, 3, 186, 93, 0, 777, 778, 5, 176, 0, 0, 778, 779, 5, 142, 0, 0, 779, 780, 7, 1, 0, 0, 780, 781, 3, 390, 195, 0, 781, 39, 1, 0, 0, 0, 782, 783, 5, 4, 0, 0, 783, 784, 5, 188, 0, 0, 784, 790, 3, 186, 93, 0, 785, 791, 5, 158, 0, 0, 786, 788, 5, 1, 0, 0, 787, 789, 3, 172, 86, 0, 788, 787, 1, 0, 0, 0, 788, 789, 1, 0, 0, 0, 789, 791, 1, 0, 0, 0, 790, 785, 1, 0, 0, 0, 790, 786, 1, 0, 0, 0, 791, 792, 1, 0, 0, 0, 792, 793, 5, 33, 0, 0, 793, 794, 5, 265, 0, 0, 794, 799, 3, 230, 115, 0, 795, 796, 5, 263, 0, 0, 796, 798, 3, 230, 115, 0, 797, 795, 1, 0, 0, 0, 798, 801, 1, 0, 0, 0, 799, 800, 1, 0, 0, 0, 799, 797, 1, 0, 0, 0, 800, 802, 1, 0, 0, 0, 801, 799, 1, 0, 0, 0, 802, 803, 5, 266, 0, 0, 803, 41, 1, 0, 0, 0, 804, 805, 5, 4, 0, 0, 805, 806, 5, 188, 0, 0, 806, 807, 3, 186, 93, 0, 807, 808, 5, 1, 0, 0, 808, 810, 5, 32, 0, 0, 809, 811, 3, 172, 86, 0, 810, 809, 1, 0, 0, 0, 810, 811, 1, 0, 0, 0, 811, 812, 1, 0, 0, 0, 812, 813, 3, 232, 116, 0, 813, 43, 1, 0, 0, 0, 814, 815, 5, 4, 0, 0, 815, 816, 5, 188, 0, 0, 816, 817, 3, 186, 93, 0, 817, 819, 5, 4, 0, 0, 818, 820, 5, 32, 0, 0, 819, 818, 1, 0, 0, 0, 819, 820, 1, 0, 0, 0, 820, 821, 1, 0, 0, 0, 821, 830, 3, 194, 97, 0, 822, 826, 5, 176, 0, 0, 823, 827, 3, 236, 118, 0, 824, 825, 5, 34, 0, 0, 825, 827, 3, 342, 171, 0, 826, 823, 1, 0, 0, 0, 826, 824, 1, 0, 0, 0, 827, 831, 1, 0, 0, 0, 828, 829, 5, 58, 0, 0, 829, 831, 5, 51, 0, 0, 830, 822, 1, 0, 0, 0, 830, 828, 1, 0, 0, 0, 831, 45, 1, 0, 0, 0, 832, 833, 5, 4, 0, 0, 833, 834, 5, 188, 0, 0, 834, 835, 3, 186, 93, 0, 835, 837, 5, 1, 0, 0, 836, 838, 3, 172, 86, 0, 837, 836, 1, 0, 0, 0, 837, 838, 1, 0, 0, 0, 838, 851, 1, 0, 0, 0, 839, 840, 5, 145, 0, 0, 840, 843, 3, 330, 165, 0, 841, 842, 5, 24, 0, 0, 842, 844, 3, 342, 171, 0, 843, 841, 1, 0, 0, 0, 843, 844, 1, 0, 0, 0, 844, 846, 1, 0, 0, 0, 845, 847, 3, 250, 125, 0, 846, 845, 1, 0, 0, 0, 846, 847, 1, 0, 0, 0, 847, 852, 1, 0, 0, 0, 848, 849, 5, 154, 0, 0, 849, 850, 5, 145, 0, 0, 850, 852, 3, 248, 124, 0, 851, 839, 1, 0, 0, 0, 851, 848, 1, 0, 0, 0, 852, 47, 1, 0, 0, 0, 853, 854, 5, 4, 0, 0, 854, 855, 5, 188, 0, 0, 855, 858, 3, 186, 93, 0, 856, 857, 5, 145, 0, 0, 857, 859, 3, 330, 165, 0, 858, 856, 1, 0, 0, 0, 858, 859, 1, 0, 0, 0, 859, 860, 1, 0, 0, 0, 860, 872, 5, 176, 0, 0, 861, 862, 5, 72, 0, 0, 862, 873, 3, 240, 120, 0, 863, 864, 5, 168, 0, 0, 864, 865, 5, 79, 0, 0, 865, 873, 3, 264, 132, 0, 866, 867, 5, 24, 0, 0, 867, 873, 3, 342, 171, 0, 868, 869, 5, 25, 0, 0, 869, 873, 3, 258, 129, 0, 870, 871, 5, 175, 0, 0, 871, 873, 3, 258, 129, 0, 872, 861, 1, 0, 0, 0, 872, 863, 1, 0, 0, 0, 872, 866, 1, 0, 0, 0, 872, 868, 1, 0, 0, 0, 872, 870, 1, 0, 0, 0, 873, 49, 1, 0, 0, 0, 874, 875, 5, 4, 0, 0, 875, 876, 5, 188, 0, 0, 876, 877, 3, 186, 93, 0, 877, 878, 5, 155, 0, 0, 878, 879, 5, 146, 0, 0, 879, 51, 1, 0, 0, 0, 880, 881, 5, 4, 0, 0, 881, 882, 5, 188, 0, 0, 882, 883, 3, 186, 93, 0, 883, 885, 5, 58, 0, 0, 884, 886, 3, 170, 85, 0, 885, 884, 1, 0, 0, 0, 885, 886, 1, 0, 0, 0, 886, 895, 1, 0, 0, 0, 887, 888, 5, 145, 0, 0, 888, 890, 3, 330, 165, 0, 889, 891, 5, 22, 0, 0, 890, 889, 1, 0, 0, 0, 890, 891, 1, 0, 0, 0, 891, 896, 1, 0, 0, 0, 892, 893, 5, 154, 0, 0, 893, 894, 5, 145, 0, 0, 894, 896, 3, 248, 124, 0, 895, 887, 1, 0, 0, 0, 895, 892, 1, 0, 0, 0, 896, 53, 1, 0, 0, 0, 897, 898, 5, 4, 0, 0, 898, 899, 5, 212, 0, 0, 899, 901, 3, 188, 94, 0, 900, 902, 3, 208, 104, 0, 901, 900, 1, 0, 0, 0, 901, 902, 1, 0, 0, 0, 902, 903, 1, 0, 0, 0, 903, 904, 5, 9, 0, 0, 904, 905, 3, 212, 106, 0, 905, 55, 1, 0, 0, 0, 906, 907, 5, 4, 0, 0, 907, 908, 5, 212, 0, 0, 908, 909, 3, 188, 94, 0, 909, 910, 5, 156, 0, 0, 910, 911, 5, 193, 0, 0, 911, 912, 3, 188, 94, 0, 912, 57, 1, 0, 0, 0, 913, 914, 5, 4, 0, 0, 914, 915, 5, 212, 0, 0, 915, 916, 3, 188, 94, 0, 916, 917, 5, 176, 0, 0, 917, 918, 5, 142, 0, 0, 918, 919, 7, 1, 0, 0, 919, 920, 3, 384, 192, 0, 920, 59, 1, 0, 0, 0, 921, 922, 5, 4, 0, 0, 922, 923, 5, 188, 0, 0, 923, 924, 3, 186, 93, 0, 924, 925, 5, 156, 0, 0, 925, 926, 5, 193, 0, 0, 926, 927, 3, 186, 93, 0, 927, 61, 1, 0, 0, 0, 928, 929, 5, 4, 0, 0, 929, 930, 5, 212, 0, 0, 930, 931, 3, 188, 94, 0, 931, 932, 7, 2, 0, 0, 932, 933, 5, 25, 0, 0, 933, 934, 3, 258, 129, 0, 934, 63, 1, 0, 0, 0, 935, 937, 5, 196, 0, 0, 936, 938, 5, 188, 0, 0, 937, 936, 1, 0, 0, 0, 937, 938, 1, 0, 0, 0, 938, 940, 1, 0, 0, 0, 939, 941, 3, 170, 85, 0, 940, 939, 1, 0, 0, 0, 940, 941, 1, 0, 0, 0, 941, 942, 1, 0, 0, 0, 942, 943, 3, 186, 93, 0, 943, 65, 1, 0, 0, 0, 944, 946, 5, 56, 0, 0, 945, 947, 5, 46, 0, 0, 946, 945, 1, 0, 0, 0, 946, 947, 1, 0, 0, 0, 947, 949, 1, 0, 0, 0, 948, 950, 7, 3, 0, 0, 949, 948, 1, 0, 0, 0, 949, 950, 1, 0, 0, 0, 950, 951, 1, 0, 0, 0, 951, 952, 3, 384, 192, 0, 952, 67, 1, 0, 0, 0, 953, 956, 3, 70, 35, 0, 954, 956, 3, 72, 36, 0, 955, 953, 1, 0, 0, 0, 955, 954, 1, 0, 0, 0, 956, 69, 1, 0, 0, 0, 957, 958, 5, 36, 0, 0, 958, 959, 5, 182, 0, 0, 959, 961, 3, 186, 93, 0, 960, 962, 3, 316, 158, 0, 961, 960, 1, 0, 0, 0, 961, 962, 1, 0, 0, 0, 962, 975, 1, 0, 0, 0, 963, 964, 5, 190, 0, 0, 964, 965, 5, 185, 0, 0, 965, 966, 5, 265, 0, 0, 966, 967, 3, 392, 196, 0, 967, 973, 5, 266, 0, 0, 968, 969, 5, 157, 0, 0, 969, 970, 5, 265, 0, 0, 970, 971, 3, 392, 196, 0, 971, 972, 5, 266, 0, 0, 972, 974, 1, 0, 0, 0, 973, 968, 1, 0, 0, 0, 973, 974, 1, 0, 0, 0, 974, 976, 1, 0, 0, 0, 975, 963, 1, 0, 0, 0, 975, 976, 1, 0, 0, 0, 976, 71, 1, 0, 0, 0, 977, 978, 5, 36, 0, 0, 978, 979, 5, 96, 0, 0, 979, 980, 5, 182, 0, 0, 980, 986, 3, 186, 93, 0, 981, 982, 5, 145, 0, 0, 982, 983, 5, 265, 0, 0, 983, 984, 3, 330, 165, 0, 984, 985, 5, 266, 0, 0, 985, 987, 1, 0, 0, 0, 986, 981, 1, 0, 0, 0, 986, 987, 1, 0, 0, 0, 987, 73, 1, 0, 0, 0, 988, 995, 3, 86, 43, 0, 989, 995, 3, 84, 42, 0, 990, 995, 3, 82, 41, 0, 991, 995, 3, 78, 39, 0, 992, 995, 3, 80, 40, 0, 993, 995, 3, 76, 38, 0, 994, 988, 1, 0, 0, 0, 994, 989, 1, 0, 0, 0, 994, 990, 1, 0, 0, 0, 994, 991, 1, 0, 0, 0, 994, 992, 1, 0, 0, 0, 994, 993, 1, 0, 0, 0, 995, 75, 1, 0, 0, 0, 996, 997, 5, 58, 0, 0, 997, 999, 7, 0, 0, 0, 998, 1000, 3, 170, 85, 0, 999, 998, 1, 0, 0, 0, 999, 1000, 1, 0, 0, 0, 1000, 1001, 1, 0, 0, 0, 1001, 1003, 3, 184, 92, 0, 1002, 1004, 7, 4, 0, 0, 1003, 1002, 1, 0, 0, 0, 1003, 1004, 1, 0, 0, 0, 1004, 77, 1, 0, 0, 0, 1005, 1006, 5, 58, 0, 0, 1006, 1008, 5, 212, 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, 1011, 3, 188, 94, 0, 1011, 79, 1, 0, 0, 0, 1012, 1013, 5, 58, 0, 0, 1013, 1015, 5, 188, 0, 0, 1014, 1016, 3, 170, 85, 0, 1015, 1014, 1, 0, 0, 0, 1015, 1016, 1, 0, 0, 0, 1016, 1017, 1, 0, 0, 0, 1017, 1019, 3, 186, 93, 0, 1018, 1020, 5, 22, 0, 0, 1019, 1018, 1, 0, 0, 0, 1019, 1020, 1, 0, 0, 0, 1020, 81, 1, 0, 0, 0, 1021, 1023, 5, 58, 0, 0, 1022, 1024, 5, 96, 0, 0, 1023, 1022, 1, 0, 0, 0, 1023, 1024, 1, 0, 0, 0, 1024, 1025, 1, 0, 0, 0, 1025, 1026, 5, 182, 0, 0, 1026, 1029, 3, 186, 93, 0, 1027, 1028, 5, 145, 0, 0, 1028, 1030, 3, 330, 165, 0, 1029, 1027, 1, 0, 0, 0, 1029, 1030, 1, 0, 0, 0, 1030, 83, 1, 0, 0, 0, 1031, 1033, 5, 58, 0, 0, 1032, 1034, 5, 12, 0, 0, 1033, 1032, 1, 0, 0, 0, 1033, 1034, 1, 0, 0, 0, 1034, 1035, 1, 0, 0, 0, 1035, 1037, 5, 84, 0, 0, 1036, 1038, 3, 170, 85, 0, 1037, 1036, 1, 0, 0, 0, 1037, 1038, 1, 0, 0, 0, 1038, 1039, 1, 0, 0, 0, 1039, 1052, 3, 190, 95, 0, 1040, 1049, 5, 265, 0, 0, 1041, 1046, 3, 356, 178, 0, 1042, 1043, 5, 263, 0, 0, 1043, 1045, 3, 356, 178, 0, 1044, 1042, 1, 0, 0, 0, 1045, 1048, 1, 0, 0, 0, 1046, 1044, 1, 0, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, 1050, 1, 0, 0, 0, 1048, 1046, 1, 0, 0, 0, 1049, 1041, 1, 0, 0, 0, 1049, 1050, 1, 0, 0, 0, 1050, 1051, 1, 0, 0, 0, 1051, 1053, 5, 266, 0, 0, 1052, 1040, 1, 0, 0, 0, 1052, 1053, 1, 0, 0, 0, 1053, 85, 1, 0, 0, 0, 1054, 1055, 5, 58, 0, 0, 1055, 1056, 5, 166, 0, 0, 1056, 1057, 3, 390, 195, 0, 1057, 87, 1, 0, 0, 0, 1058, 1061, 3, 90, 45, 0, 1059, 1061, 3, 92, 46, 0, 1060, 1058, 1, 0, 0, 0, 1060, 1059, 1, 0, 0, 0, 1061, 89, 1, 0, 0, 0, 1062, 1063, 5, 86, 0, 0, 1063, 1064, 5, 166, 0, 0, 1064, 1065, 3, 390, 195, 0, 1065, 1066, 5, 193, 0, 0, 1066, 1067, 5, 87, 0, 0, 1067, 1068, 3, 390, 195, 0, 1068, 91, 1, 0, 0, 0, 1069, 1070, 5, 86, 0, 0, 1070, 1071, 3, 380, 190, 0, 1071, 1072, 5, 136, 0, 0, 1072, 1074, 3, 382, 191, 0, 1073, 1075, 3, 384, 192, 0, 1074, 1073, 1, 0, 0, 0, 1074, 1075, 1, 0, 0, 0, 1075, 1076, 1, 0, 0, 0, 1076, 1077, 5, 193, 0, 0, 1077, 1078, 3, 388, 194, 0, 1078, 93, 1, 0, 0, 0, 1079, 1082, 3, 96, 48, 0, 1080, 1082, 3, 98, 49, 0, 1081, 1079, 1, 0, 0, 0, 1081, 1080, 1, 0, 0, 0, 1082, 95, 1, 0, 0, 0, 1083, 1084, 5, 161, 0, 0, 1084, 1085, 5, 166, 0, 0, 1085, 1086, 3, 390, 195, 0, 1086, 1087, 5, 82, 0, 0, 1087, 1088, 5, 87, 0, 0, 1088, 1089, 3, 390, 195, 0, 1089, 97, 1, 0, 0, 0, 1090, 1094, 5, 161, 0, 0, 1091, 1092, 5, 86, 0, 0, 1092, 1093, 5, 137, 0, 0, 1093, 1095, 5, 78, 0, 0, 1094, 1091, 1, 0, 0, 0, 1094, 1095, 1, 0, 0, 0, 1095, 1096, 1, 0, 0, 0, 1096, 1097, 3, 380, 190, 0, 1097, 1098, 5, 136, 0, 0, 1098, 1100, 3, 382, 191, 0, 1099, 1101, 3, 384, 192, 0, 1100, 1099, 1, 0, 0, 0, 1100, 1101, 1, 0, 0, 0, 1101, 1102, 1, 0, 0, 0, 1102, 1108, 5, 82, 0, 0, 1103, 1109, 3, 388, 194, 0, 1104, 1106, 5, 166, 0, 0, 1105, 1104, 1, 0, 0, 0, 1105, 1106, 1, 0, 0, 0, 1106, 1107, 1, 0, 0, 0, 1107, 1109, 3, 390, 195, 0, 1108, 1103, 1, 0, 0, 0, 1108, 1105, 1, 0, 0, 0, 1109, 99, 1, 0, 0, 0, 1110, 1112, 3, 214, 107, 0, 1111, 1110, 1, 0, 0, 0, 1111, 1112, 1, 0, 0, 0, 1112, 1113, 1, 0, 0, 0, 1113, 1114, 5, 99, 0, 0, 1114, 1116, 7, 5, 0, 0, 1115, 1117, 5, 188, 0, 0, 1116, 1115, 1, 0, 0, 0, 1116, 1117, 1, 0, 0, 0, 1117, 1118, 1, 0, 0, 0, 1118, 1120, 3, 186, 93, 0, 1119, 1121, 3, 316, 158, 0, 1120, 1119, 1, 0, 0, 0, 1120, 1121, 1, 0, 0, 0, 1121, 1134, 1, 0, 0, 0, 1122, 1123, 5, 145, 0, 0, 1123, 1124, 5, 265, 0, 0, 1124, 1129, 3, 330, 165, 0, 1125, 1126, 5, 263, 0, 0, 1126, 1128, 3, 330, 165, 0, 1127, 1125, 1, 0, 0, 0, 1128, 1131, 1, 0, 0, 0, 1129, 1127, 1, 0, 0, 0, 1129, 1130, 1, 0, 0, 0, 1130, 1132, 1, 0, 0, 0, 1131, 1129, 1, 0, 0, 0, 1132, 1133, 5, 266, 0, 0, 1133, 1135, 1, 0, 0, 0, 1134, 1122, 1, 0, 0, 0, 1134, 1135, 1, 0, 0, 0, 1135, 1136, 1, 0, 0, 0, 1136, 1137, 3, 212, 106, 0, 1137, 101, 1, 0, 0, 0, 1138, 1141, 3, 104, 52, 0, 1139, 1141, 3, 106, 53, 0, 1140, 1138, 1, 0, 0, 0, 1140, 1139, 1, 0, 0, 0, 1141, 103, 1, 0, 0, 0, 1142, 1144, 5, 50, 0, 0, 1143, 1145, 5, 82, 0, 0, 1144, 1143, 1, 0, 0, 0, 1144, 1145, 1, 0, 0, 0, 1145, 1146, 1, 0, 0, 0, 1146, 1148, 3, 186, 93, 0, 1147, 1149, 3, 280, 140, 0, 1148, 1147, 1, 0, 0, 0, 1148, 1149, 1, 0, 0, 0, 1149, 105, 1, 0, 0, 0, 1150, 1151, 5, 50, 0, 0, 1151, 1156, 3, 186, 93, 0, 1152, 1154, 5, 9, 0, 0, 1153, 1152, 1, 0, 0, 0, 1153, 1154, 1, 0, 0, 0, 1154, 1155, 1, 0, 0, 0, 1155, 1157, 3, 390, 195, 0, 1156, 1153, 1, 0, 0, 0, 1156, 1157, 1, 0, 0, 0, 1157, 1158, 1, 0, 0, 0, 1158, 1167, 5, 82, 0, 0, 1159, 1164, 3, 304, 152, 0, 1160, 1161, 5, 263, 0, 0, 1161, 1163, 3, 304, 152, 0, 1162, 1160, 1, 0, 0, 0, 1163, 1166, 1, 0, 0, 0, 1164, 1162, 1, 0, 0, 0, 1164, 1165, 1, 0, 0, 0, 1165, 1168, 1, 0, 0, 0, 1166, 1164, 1, 0, 0, 0, 1167, 1159, 1, 0, 0, 0, 1167, 1168, 1, 0, 0, 0, 1168, 1170, 1, 0, 0, 0, 1169, 1171, 3, 280, 140, 0, 1170, 1169, 1, 0, 0, 0, 1170, 1171, 1, 0, 0, 0, 1171, 107, 1, 0, 0, 0, 1172, 1173, 5, 54, 0, 0, 1173, 1174, 3, 186, 93, 0, 1174, 1175, 5, 176, 0, 0, 1175, 1185, 3, 204, 102, 0, 1176, 1177, 5, 82, 0, 0, 1177, 1182, 3, 304, 152, 0, 1178, 1179, 5, 263, 0, 0, 1179, 1181, 3, 304, 152, 0, 1180, 1178, 1, 0, 0, 0, 1181, 1184, 1, 0, 0, 0, 1182, 1180, 1, 0, 0, 0, 1182, 1183, 1, 0, 0, 0, 1183, 1186, 1, 0, 0, 0, 1184, 1182, 1, 0, 0, 0, 1185, 1176, 1, 0, 0, 0, 1185, 1186, 1, 0, 0, 0, 1186, 1188, 1, 0, 0, 0, 1187, 1189, 3, 280, 140, 0, 1188, 1187, 1, 0, 0, 0, 1188, 1189, 1, 0, 0, 0, 1189, 109, 1, 0, 0, 0, 1190, 1191, 5, 207, 0, 0, 1191, 1193, 5, 103, 0, 0, 1192, 1194, 5, 188, 0, 0, 1193, 1192, 1, 0, 0, 0, 1193, 1194, 1, 0, 0, 0, 1194, 1195, 1, 0, 0, 0, 1195, 1197, 3, 186, 93, 0, 1196, 1198, 3, 316, 158, 0, 1197, 1196, 1, 0, 0, 0, 1197, 1198, 1, 0, 0, 0, 1198, 1199, 1, 0, 0, 0, 1199, 1200, 3, 212, 106, 0, 1200, 111, 1, 0, 0, 0, 1201, 1214, 3, 132, 66, 0, 1202, 1214, 3, 134, 67, 0, 1203, 1214, 3, 136, 68, 0, 1204, 1214, 3, 130, 65, 0, 1205, 1214, 3, 128, 64, 0, 1206, 1214, 3, 126, 63, 0, 1207, 1214, 3, 124, 62, 0, 1208, 1214, 3, 122, 61, 0, 1209, 1214, 3, 120, 60, 0, 1210, 1214, 3, 118, 59, 0, 1211, 1214, 3, 116, 58, 0, 1212, 1214, 3, 114, 57, 0, 1213, 1201, 1, 0, 0, 0, 1213, 1202, 1, 0, 0, 0, 1213, 1203, 1, 0, 0, 0, 1213, 1204, 1, 0, 0, 0, 1213, 1205, 1, 0, 0, 0, 1213, 1206, 1, 0, 0, 0, 1213, 1207, 1, 0, 0, 0, 1213, 1208, 1, 0, 0, 0, 1213, 1209, 1, 0, 0, 0, 1213, 1210, 1, 0, 0, 0, 1213, 1211, 1, 0, 0, 0, 1213, 1212, 1, 0, 0, 0, 1214, 113, 1, 0, 0, 0, 1215, 1216, 5, 179, 0, 0, 1216, 1228, 7, 6, 0, 0, 1217, 1219, 5, 115, 0, 0, 1218, 1217, 1, 0, 0, 0, 1218, 1219, 1, 0, 0, 0, 1219, 1220, 1, 0, 0, 0, 1220, 1225, 3, 342, 171, 0, 1221, 1222, 5, 271, 0, 0, 1222, 1224, 3, 342, 171, 0, 1223, 1221, 1, 0, 0, 0, 1224, 1227, 1, 0, 0, 0, 1225, 1223, 1, 0, 0, 0, 1225, 1226, 1, 0, 0, 0, 1226, 1229, 1, 0, 0, 0, 1227, 1225, 1, 0, 0, 0, 1228, 1218, 1, 0, 0, 0, 1228, 1229, 1, 0, 0, 0, 1229, 115, 1, 0, 0, 0, 1230, 1231, 5, 179, 0, 0, 1231, 1234, 5, 189, 0, 0, 1232, 1233, 5, 94, 0, 0, 1233, 1235, 3, 186, 93, 0, 1234, 1232, 1, 0, 0, 0, 1234, 1235, 1, 0, 0, 0, 1235, 1247, 1, 0, 0, 0, 1236, 1238, 5, 115, 0, 0, 1237, 1236, 1, 0, 0, 0, 1237, 1238, 1, 0, 0, 0, 1238, 1239, 1, 0, 0, 0, 1239, 1244, 3, 342, 171, 0, 1240, 1241, 5, 271, 0, 0, 1241, 1243, 3, 342, 171, 0, 1242, 1240, 1, 0, 0, 0, 1243, 1246, 1, 0, 0, 0, 1244, 1242, 1, 0, 0, 0, 1244, 1245, 1, 0, 0, 0, 1245, 1248, 1, 0, 0, 0, 1246, 1244, 1, 0, 0, 0, 1247, 1237, 1, 0, 0, 0, 1247, 1248, 1, 0, 0, 0, 1248, 117, 1, 0, 0, 0, 1249, 1251, 5, 179, 0, 0, 1250, 1252, 7, 7, 0, 0, 1251, 1250, 1, 0, 0, 0, 1251, 1252, 1, 0, 0, 0, 1252, 1253, 1, 0, 0, 0, 1253, 1256, 5, 85, 0, 0, 1254, 1255, 5, 94, 0, 0, 1255, 1257, 3, 184, 92, 0, 1256, 1254, 1, 0, 0, 0, 1256, 1257, 1, 0, 0, 0, 1257, 1269, 1, 0, 0, 0, 1258, 1260, 5, 115, 0, 0, 1259, 1258, 1, 0, 0, 0, 1259, 1260, 1, 0, 0, 0, 1260, 1261, 1, 0, 0, 0, 1261, 1266, 3, 342, 171, 0, 1262, 1263, 5, 271, 0, 0, 1263, 1265, 3, 342, 171, 0, 1264, 1262, 1, 0, 0, 0, 1265, 1268, 1, 0, 0, 0, 1266, 1264, 1, 0, 0, 0, 1266, 1267, 1, 0, 0, 0, 1267, 1270, 1, 0, 0, 0, 1268, 1266, 1, 0, 0, 0, 1269, 1259, 1, 0, 0, 0, 1269, 1270, 1, 0, 0, 0, 1270, 119, 1, 0, 0, 0, 1271, 1272, 5, 179, 0, 0, 1272, 1273, 5, 37, 0, 0, 1273, 1274, 5, 188, 0, 0, 1274, 1275, 3, 186, 93, 0, 1275, 121, 1, 0, 0, 0, 1276, 1277, 5, 179, 0, 0, 1277, 1278, 5, 37, 0, 0, 1278, 1279, 5, 212, 0, 0, 1279, 1280, 3, 188, 94, 0, 1280, 123, 1, 0, 0, 0, 1281, 1282, 5, 179, 0, 0, 1282, 1283, 5, 188, 0, 0, 1283, 1284, 5, 182, 0, 0, 1284, 1285, 3, 186, 93, 0, 1285, 125, 1, 0, 0, 0, 1286, 1287, 5, 179, 0, 0, 1287, 1288, 5, 32, 0, 0, 1288, 1289, 5, 182, 0, 0, 1289, 1290, 3, 186, 93, 0, 1290, 127, 1, 0, 0, 0, 1291, 1293, 5, 179, 0, 0, 1292, 1294, 5, 154, 0, 0, 1293, 1292, 1, 0, 0, 0, 1293, 1294, 1, 0, 0, 0, 1294, 1295, 1, 0, 0, 0, 1295, 1296, 5, 146, 0, 0, 1296, 1297, 3, 186, 93, 0, 1297, 129, 1, 0, 0, 0, 1298, 1299, 5, 179, 0, 0, 1299, 1300, 5, 73, 0, 0, 1300, 1301, 5, 94, 0, 0, 1301, 1311, 3, 186, 93, 0, 1302, 1303, 5, 145, 0, 0, 1303, 1304, 5, 265, 0, 0, 1304, 1307, 3, 330, 165, 0, 1305, 1306, 5, 263, 0, 0, 1306, 1308, 3, 330, 165, 0, 1307, 1305, 1, 0, 0, 0, 1307, 1308, 1, 0, 0, 0, 1308, 1309, 1, 0, 0, 0, 1309, 1310, 5, 266, 0, 0, 1310, 1312, 1, 0, 0, 0, 1311, 1302, 1, 0, 0, 0, 1311, 1312, 1, 0, 0, 0, 1312, 131, 1, 0, 0, 0, 1313, 1315, 5, 179, 0, 0, 1314, 1316, 5, 39, 0, 0, 1315, 1314, 1, 0, 0, 0, 1315, 1316, 1, 0, 0, 0, 1316, 1317, 1, 0, 0, 0, 1317, 1318, 5, 167, 0, 0, 1318, 133, 1, 0, 0, 0, 1319, 1320, 5, 179, 0, 0, 1320, 1321, 5, 166, 0, 0, 1321, 1322, 5, 86, 0, 0, 1322, 1323, 5, 87, 0, 0, 1323, 1324, 3, 390, 195, 0, 1324, 135, 1, 0, 0, 0, 1325, 1340, 3, 138, 69, 0, 1326, 1340, 3, 140, 70, 0, 1327, 1340, 3, 142, 71, 0, 1328, 1329, 5, 179, 0, 0, 1329, 1330, 5, 86, 0, 0, 1330, 1331, 7, 8, 0, 0, 1331, 1337, 3, 390, 195, 0, 1332, 1333, 5, 136, 0, 0, 1333, 1335, 7, 9, 0, 0, 1334, 1336, 3, 384, 192, 0, 1335, 1334, 1, 0, 0, 0, 1335, 1336, 1, 0, 0, 0, 1336, 1338, 1, 0, 0, 0, 1337, 1332, 1, 0, 0, 0, 1337, 1338, 1, 0, 0, 0, 1338, 1340, 1, 0, 0, 0, 1339, 1325, 1, 0, 0, 0, 1339, 1326, 1, 0, 0, 0, 1339, 1327, 1, 0, 0, 0, 1339, 1328, 1, 0, 0, 0, 1340, 137, 1, 0, 0, 0, 1341, 1342, 5, 179, 0, 0, 1342, 1343, 5, 86, 0, 0, 1343, 1344, 7, 8, 0, 0, 1344, 1350, 3, 390, 195, 0, 1345, 1346, 5, 136, 0, 0, 1346, 1348, 5, 46, 0, 0, 1347, 1349, 3, 184, 92, 0, 1348, 1347, 1, 0, 0, 0, 1348, 1349, 1, 0, 0, 0, 1349, 1351, 1, 0, 0, 0, 1350, 1345, 1, 0, 0, 0, 1350, 1351, 1, 0, 0, 0, 1351, 139, 1, 0, 0, 0, 1352, 1353, 5, 179, 0, 0, 1353, 1354, 5, 86, 0, 0, 1354, 1355, 7, 8, 0, 0, 1355, 1361, 3, 390, 195, 0, 1356, 1357, 5, 136, 0, 0, 1357, 1359, 5, 188, 0, 0, 1358, 1360, 3, 186, 93, 0, 1359, 1358, 1, 0, 0, 0, 1359, 1360, 1, 0, 0, 0, 1360, 1362, 1, 0, 0, 0, 1361, 1356, 1, 0, 0, 0, 1361, 1362, 1, 0, 0, 0, 1362, 141, 1, 0, 0, 0, 1363, 1364, 5, 179, 0, 0, 1364, 1365, 5, 86, 0, 0, 1365, 1366, 7, 8, 0, 0, 1366, 1372, 3, 390, 195, 0, 1367, 1368, 5, 136, 0, 0, 1368, 1370, 5, 32, 0, 0, 1369, 1371, 3, 194, 97, 0, 1370, 1369, 1, 0, 0, 0, 1370, 1371, 1, 0, 0, 0, 1371, 1373, 1, 0, 0, 0, 1372, 1367, 1, 0, 0, 0, 1372, 1373, 1, 0, 0, 0, 1373, 143, 1, 0, 0, 0, 1374, 1378, 3, 146, 73, 0, 1375, 1378, 3, 148, 74, 0, 1376, 1378, 3, 150, 75, 0, 1377, 1374, 1, 0, 0, 0, 1377, 1375, 1, 0, 0, 0, 1377, 1376, 1, 0, 0, 0, 1378, 145, 1, 0, 0, 0, 1379, 1380, 5, 34, 0, 0, 1380, 1381, 5, 136, 0, 0, 1381, 1382, 5, 46, 0, 0, 1382, 1383, 3, 184, 92, 0, 1383, 1386, 5, 108, 0, 0, 1384, 1387, 3, 342, 171, 0, 1385, 1387, 5, 133, 0, 0, 1386, 1384, 1, 0, 0, 0, 1386, 1385, 1, 0, 0, 0, 1387, 147, 1, 0, 0, 0, 1388, 1389, 5, 34, 0, 0, 1389, 1390, 5, 136, 0, 0, 1390, 1391, 5, 188, 0, 0, 1391, 1392, 3, 186, 93, 0, 1392, 1395, 5, 108, 0, 0, 1393, 1396, 3, 342, 171, 0, 1394, 1396, 5, 133, 0, 0, 1395, 1393, 1, 0, 0, 0, 1395, 1394, 1, 0, 0, 0, 1396, 149, 1, 0, 0, 0, 1397, 1398, 5, 34, 0, 0, 1398, 1399, 5, 136, 0, 0, 1399, 1400, 5, 32, 0, 0, 1400, 1401, 3, 194, 97, 0, 1401, 1404, 5, 108, 0, 0, 1402, 1405, 3, 342, 171, 0, 1403, 1405, 5, 133, 0, 0, 1404, 1402, 1, 0, 0, 0, 1404, 1403, 1, 0, 0, 0, 1405, 151, 1, 0, 0, 0, 1406, 1407, 5, 67, 0, 0, 1407, 1408, 3, 4, 2, 0, 1408, 153, 1, 0, 0, 0, 1409, 1415, 5, 176, 0, 0, 1410, 1416, 5, 2, 0, 0, 1411, 1412, 3, 390, 195, 0, 1412, 1413, 5, 249, 0, 0, 1413, 1414, 3, 330, 165, 0, 1414, 1416, 1, 0, 0, 0, 1415, 1410, 1, 0, 0, 0, 1415, 1411, 1, 0, 0, 0, 1415, 1416, 1, 0, 0, 0, 1416, 155, 1, 0, 0, 0, 1417, 1418, 5, 264, 0, 0, 1418, 1419, 5, 180, 0, 0, 1419, 1429, 5, 265, 0, 0, 1420, 1422, 3, 342, 171, 0, 1421, 1420, 1, 0, 0, 0, 1421, 1422, 1, 0, 0, 0, 1422, 1430, 1, 0, 0, 0, 1423, 1426, 3, 342, 171, 0, 1424, 1425, 5, 263, 0, 0, 1425, 1427, 3, 330, 165, 0, 1426, 1424, 1, 0, 0, 0, 1426, 1427, 1, 0, 0, 0, 1427, 1430, 1, 0, 0, 0, 1428, 1430, 3, 330, 165, 0, 1429, 1421, 1, 0, 0, 0, 1429, 1423, 1, 0, 0, 0, 1429, 1428, 1, 0, 0, 0, 1430, 1431, 1, 0, 0, 0, 1431, 1432, 5, 266, 0, 0, 1432, 157, 1, 0, 0, 0, 1433, 1434, 5, 107, 0, 0, 1434, 1435, 5, 121, 0, 0, 1435, 1436, 3, 186, 93, 0, 1436, 159, 1, 0, 0, 0, 1437, 1438, 5, 118, 0, 0, 1438, 1439, 5, 45, 0, 0, 1439, 1440, 5, 98, 0, 0, 1440, 1442, 5, 274, 0, 0, 1441, 1443, 5, 144, 0, 0, 1442, 1441, 1, 0, 0, 0, 1442, 1443, 1, 0, 0, 0, 1443, 1444, 1, 0, 0, 0, 1444, 1445, 5, 103, 0, 0, 1445, 1446, 5, 188, 0, 0, 1446, 1456, 3, 186, 93, 0, 1447, 1448, 5, 145, 0, 0, 1448, 1449, 5, 265, 0, 0, 1449, 1452, 3, 330, 165, 0, 1450, 1451, 5, 263, 0, 0, 1451, 1453, 3, 330, 165, 0, 1452, 1450, 1, 0, 0, 0, 1452, 1453, 1, 0, 0, 0, 1453, 1454, 1, 0, 0, 0, 1454, 1455, 5, 266, 0, 0, 1455, 1457, 1, 0, 0, 0, 1456, 1447, 1, 0, 0, 0, 1456, 1457, 1, 0, 0, 0, 1457, 161, 1, 0, 0, 0, 1458, 1462, 3, 164, 82, 0, 1459, 1462, 3, 166, 83, 0, 1460, 1462, 3, 168, 84, 0, 1461, 1458, 1, 0, 0, 0, 1461, 1459, 1, 0, 0, 0, 1461, 1460, 1, 0, 0, 0, 1462, 163, 1, 0, 0, 0, 1463, 1464, 5, 162, 0, 0, 1464, 1477, 3, 186, 93, 0, 1465, 1466, 5, 145, 0, 0, 1466, 1467, 5, 265, 0, 0, 1467, 1472, 3, 330, 165, 0, 1468, 1469, 5, 263, 0, 0, 1469, 1471, 3, 330, 165, 0, 1470, 1468, 1, 0, 0, 0, 1471, 1474, 1, 0, 0, 0, 1472, 1473, 1, 0, 0, 0, 1472, 1470, 1, 0, 0, 0, 1473, 1475, 1, 0, 0, 0, 1474, 1472, 1, 0, 0, 0, 1475, 1476, 5, 266, 0, 0, 1476, 1478, 1, 0, 0, 0, 1477, 1465, 1, 0, 0, 0, 1477, 1478, 1, 0, 0, 0, 1478, 165, 1, 0, 0, 0, 1479, 1480, 5, 162, 0, 0, 1480, 1481, 5, 13, 0, 0, 1481, 167, 1, 0, 0, 0, 1482, 1483, 5, 162, 0, 0, 1483, 1484, 5, 85, 0, 0, 1484, 1485, 3, 190, 95, 0, 1485, 169, 1, 0, 0, 0, 1486, 1487, 5, 93, 0, 0, 1487, 1488, 5, 66, 0, 0, 1488, 171, 1, 0, 0, 0, 1489, 1490, 5, 93, 0, 0, 1490, 1491, 5, 132, 0, 0, 1491, 1492, 5, 66, 0, 0, 1492, 173, 1, 0, 0, 0, 1493, 1494, 3, 384, 192, 0, 1494, 175, 1, 0, 0, 0, 1495, 1496, 3, 384, 192, 0, 1496, 177, 1, 0, 0, 0, 1497, 1498, 3, 384, 192, 0, 1498, 179, 1, 0, 0, 0, 1499, 1500, 3, 384, 192, 0, 1500, 181, 1, 0, 0, 0, 1501, 1502, 3, 384, 192, 0, 1502, 183, 1, 0, 0, 0, 1503, 1504, 3, 384, 192, 0, 1504, 185, 1, 0, 0, 0, 1505, 1510, 3, 390, 195, 0, 1506, 1507, 5, 261, 0, 0, 1507, 1509, 3, 390, 195, 0, 1508, 1506, 1, 0, 0, 0, 1509, 1512, 1, 0, 0, 0, 1510, 1508, 1, 0, 0, 0, 1510, 1511, 1, 0, 0, 0, 1511, 187, 1, 0, 0, 0, 1512, 1510, 1, 0, 0, 0, 1513, 1518, 3, 390, 195, 0, 1514, 1515, 5, 261, 0, 0, 1515, 1517, 3, 390, 195, 0, 1516, 1514, 1, 0, 0, 0, 1517, 1520, 1, 0, 0, 0, 1518, 1516, 1, 0, 0, 0, 1518, 1519, 1, 0, 0, 0, 1519, 189, 1, 0, 0, 0, 1520, 1518, 1, 0, 0, 0, 1521, 1524, 3, 394, 197, 0, 1522, 1524, 3, 384, 192, 0, 1523, 1521, 1, 0, 0, 0, 1523, 1522, 1, 0, 0, 0, 1524, 191, 1, 0, 0, 0, 1525, 1526, 1, 0, 0, 0, 1526, 193, 1, 0, 0, 0, 1527, 1528, 4, 97, 0, 0, 1528, 1531, 3, 192, 96, 0, 1529, 1531, 3, 386, 193, 0, 1530, 1527, 1, 0, 0, 0, 1530, 1529, 1, 0, 0, 0, 1531, 195, 1, 0, 0, 0, 1532, 1533, 3, 384, 192, 0, 1533, 197, 1, 0, 0, 0, 1534, 1535, 4, 99, 1, 0, 1535, 1538, 3, 192, 96, 0, 1536, 1538, 3, 386, 193, 0, 1537, 1534, 1, 0, 0, 0, 1537, 1536, 1, 0, 0, 0, 1538, 199, 1, 0, 0, 0, 1539, 1542, 3, 186, 93, 0, 1540, 1542, 3, 188, 94, 0, 1541, 1539, 1, 0, 0, 0, 1541, 1540, 1, 0, 0, 0, 1542, 201, 1, 0, 0, 0, 1543, 1544, 5, 21, 0, 0, 1544, 1545, 5, 26, 0, 0, 1545, 1547, 3, 316, 158, 0, 1546, 1543, 1, 0, 0, 0, 1546, 1547, 1, 0, 0, 0, 1547, 1549, 1, 0, 0, 0, 1548, 1550, 3, 228, 114, 0, 1549, 1548, 1, 0, 0, 0, 1549, 1550, 1, 0, 0, 0, 1550, 1554, 1, 0, 0, 0, 1551, 1552, 5, 168, 0, 0, 1552, 1553, 5, 79, 0, 0, 1553, 1555, 3, 264, 132, 0, 1554, 1551, 1, 0, 0, 0, 1554, 1555, 1, 0, 0, 0, 1555, 1559, 1, 0, 0, 0, 1556, 1557, 5, 216, 0, 0, 1557, 1558, 5, 175, 0, 0, 1558, 1560, 3, 258, 129, 0, 1559, 1556, 1, 0, 0, 0, 1559, 1560, 1, 0, 0, 0, 1560, 1564, 1, 0, 0, 0, 1561, 1562, 5, 23, 0, 0, 1562, 1563, 5, 9, 0, 0, 1563, 1565, 3, 240, 120, 0, 1564, 1561, 1, 0, 0, 0, 1564, 1565, 1, 0, 0, 0, 1565, 1568, 1, 0, 0, 0, 1566, 1567, 5, 24, 0, 0, 1567, 1569, 3, 342, 171, 0, 1568, 1566, 1, 0, 0, 0, 1568, 1569, 1, 0, 0, 0, 1569, 1580, 1, 0, 0, 0, 1570, 1571, 5, 30, 0, 0, 1571, 1572, 5, 94, 0, 0, 1572, 1577, 3, 384, 192, 0, 1573, 1574, 5, 216, 0, 0, 1574, 1575, 5, 151, 0, 0, 1575, 1576, 5, 249, 0, 0, 1576, 1578, 5, 277, 0, 0, 1577, 1573, 1, 0, 0, 0, 1577, 1578, 1, 0, 0, 0, 1578, 1581, 1, 0, 0, 0, 1579, 1581, 5, 197, 0, 0, 1580, 1570, 1, 0, 0, 0, 1580, 1579, 1, 0, 0, 0, 1580, 1581, 1, 0, 0, 0, 1581, 1584, 1, 0, 0, 0, 1582, 1583, 5, 25, 0, 0, 1583, 1585, 3, 258, 129, 0, 1584, 1582, 1, 0, 0, 0, 1584, 1585, 1, 0, 0, 0, 1585, 203, 1, 0, 0, 0, 1586, 1591, 3, 206, 103, 0, 1587, 1588, 5, 263, 0, 0, 1588, 1590, 3, 206, 103, 0, 1589, 1587, 1, 0, 0, 0, 1590, 1593, 1, 0, 0, 0, 1591, 1589, 1, 0, 0, 0, 1591, 1592, 1, 0, 0, 0, 1592, 205, 1, 0, 0, 0, 1593, 1591, 1, 0, 0, 0, 1594, 1595, 3, 384, 192, 0, 1595, 1596, 5, 249, 0, 0, 1596, 1597, 3, 330, 165, 0, 1597, 207, 1, 0, 0, 0, 1598, 1600, 5, 265, 0, 0, 1599, 1601, 3, 210, 105, 0, 1600, 1599, 1, 0, 0, 0, 1600, 1601, 1, 0, 0, 0, 1601, 1608, 1, 0, 0, 0, 1602, 1604, 5, 263, 0, 0, 1603, 1605, 3, 210, 105, 0, 1604, 1603, 1, 0, 0, 0, 1604, 1605, 1, 0, 0, 0, 1605, 1607, 1, 0, 0, 0, 1606, 1602, 1, 0, 0, 0, 1607, 1610, 1, 0, 0, 0, 1608, 1606, 1, 0, 0, 0, 1608, 1609, 1, 0, 0, 0, 1609, 1611, 1, 0, 0, 0, 1610, 1608, 1, 0, 0, 0, 1611, 1612, 5, 266, 0, 0, 1612, 209, 1, 0, 0, 0, 1613, 1615, 3, 182, 91, 0, 1614, 1616, 3, 228, 114, 0, 1615, 1614, 1, 0, 0, 0, 1615, 1616, 1, 0, 0, 0, 1616, 211, 1, 0, 0, 0, 1617, 1619, 3, 214, 107, 0, 1618, 1617, 1, 0, 0, 0, 1618, 1619, 1, 0, 0, 0, 1619, 1620, 1, 0, 0, 0, 1620, 1621, 3, 268, 134, 0, 1621, 213, 1, 0, 0, 0, 1622, 1623, 5, 216, 0, 0, 1623, 1628, 3, 290, 145, 0, 1624, 1625, 5, 263, 0, 0, 1625, 1627, 3, 290, 145, 0, 1626, 1624, 1, 0, 0, 0, 1627, 1630, 1, 0, 0, 0, 1628, 1626, 1, 0, 0, 0, 1628, 1629, 1, 0, 0, 0, 1629, 215, 1, 0, 0, 0, 1630, 1628, 1, 0, 0, 0, 1631, 1632, 5, 150, 0, 0, 1632, 1633, 5, 110, 0, 0, 1633, 1635, 3, 316, 158, 0, 1634, 1636, 5, 53, 0, 0, 1635, 1634, 1, 0, 0, 0, 1635, 1636, 1, 0, 0, 0, 1636, 1640, 1, 0, 0, 0, 1637, 1641, 5, 225, 0, 0, 1638, 1639, 5, 263, 0, 0, 1639, 1641, 5, 225, 0, 0, 1640, 1637, 1, 0, 0, 0, 1640, 1638, 1, 0, 0, 0, 1640, 1641, 1, 0, 0, 0, 1641, 1645, 1, 0, 0, 0, 1642, 1646, 5, 226, 0, 0, 1643, 1644, 5, 263, 0, 0, 1644, 1646, 5, 226, 0, 0, 1645, 1642, 1, 0, 0, 0, 1645, 1643, 1, 0, 0, 0, 1645, 1646, 1, 0, 0, 0, 1646, 1659, 1, 0, 0, 0, 1647, 1648, 5, 263, 0, 0, 1648, 1651, 3, 218, 109, 0, 1649, 1651, 3, 218, 109, 0, 1650, 1647, 1, 0, 0, 0, 1650, 1649, 1, 0, 0, 0, 1651, 1656, 1, 0, 0, 0, 1652, 1653, 5, 263, 0, 0, 1653, 1655, 3, 218, 109, 0, 1654, 1652, 1, 0, 0, 0, 1655, 1658, 1, 0, 0, 0, 1656, 1657, 1, 0, 0, 0, 1656, 1654, 1, 0, 0, 0, 1657, 1660, 1, 0, 0, 0, 1658, 1656, 1, 0, 0, 0, 1659, 1650, 1, 0, 0, 0, 1659, 1660, 1, 0, 0, 0, 1660, 217, 1, 0, 0, 0, 1661, 1662, 5, 81, 0, 0, 1662, 1663, 5, 110, 0, 0, 1663, 1664, 3, 316, 158, 0, 1664, 1665, 5, 224, 0, 0, 1665, 1666, 3, 186, 93, 0, 1666, 1668, 3, 316, 158, 0, 1667, 1669, 5, 53, 0, 0, 1668, 1667, 1, 0, 0, 0, 1668, 1669, 1, 0, 0, 0, 1669, 1671, 1, 0, 0, 0, 1670, 1672, 5, 225, 0, 0, 1671, 1670, 1, 0, 0, 0, 1671, 1672, 1, 0, 0, 0, 1672, 1674, 1, 0, 0, 0, 1673, 1675, 5, 226, 0, 0, 1674, 1673, 1, 0, 0, 0, 1674, 1675, 1, 0, 0, 0, 1675, 219, 1, 0, 0, 0, 1676, 1677, 3, 194, 97, 0, 1677, 1680, 3, 356, 178, 0, 1678, 1679, 5, 34, 0, 0, 1679, 1681, 3, 342, 171, 0, 1680, 1678, 1, 0, 0, 0, 1680, 1681, 1, 0, 0, 0, 1681, 221, 1, 0, 0, 0, 1682, 1683, 3, 182, 91, 0, 1683, 1685, 3, 356, 178, 0, 1684, 1686, 3, 228, 114, 0, 1685, 1684, 1, 0, 0, 0, 1685, 1686, 1, 0, 0, 0, 1686, 223, 1, 0, 0, 0, 1687, 1688, 3, 226, 113, 0, 1688, 225, 1, 0, 0, 0, 1689, 1690, 3, 182, 91, 0, 1690, 1698, 3, 356, 178, 0, 1691, 1695, 3, 234, 117, 0, 1692, 1694, 3, 234, 117, 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, 1701, 1, 0, 0, 0, 1700, 1702, 3, 228, 114, 0, 1701, 1700, 1, 0, 0, 0, 1701, 1702, 1, 0, 0, 0, 1702, 1705, 1, 0, 0, 0, 1703, 1704, 5, 150, 0, 0, 1704, 1706, 5, 110, 0, 0, 1705, 1703, 1, 0, 0, 0, 1705, 1706, 1, 0, 0, 0, 1706, 227, 1, 0, 0, 0, 1707, 1708, 5, 34, 0, 0, 1708, 1709, 3, 342, 171, 0, 1709, 229, 1, 0, 0, 0, 1710, 1718, 3, 220, 110, 0, 1711, 1715, 3, 234, 117, 0, 1712, 1714, 3, 234, 117, 0, 1713, 1712, 1, 0, 0, 0, 1714, 1717, 1, 0, 0, 0, 1715, 1716, 1, 0, 0, 0, 1715, 1713, 1, 0, 0, 0, 1716, 1719, 1, 0, 0, 0, 1717, 1715, 1, 0, 0, 0, 1718, 1711, 1, 0, 0, 0, 1718, 1719, 1, 0, 0, 0, 1719, 231, 1, 0, 0, 0, 1720, 1721, 3, 182, 91, 0, 1721, 1724, 3, 356, 178, 0, 1722, 1723, 5, 34, 0, 0, 1723, 1725, 3, 342, 171, 0, 1724, 1722, 1, 0, 0, 0, 1724, 1725, 1, 0, 0, 0, 1725, 1733, 1, 0, 0, 0, 1726, 1730, 3, 234, 117, 0, 1727, 1729, 3, 234, 117, 0, 1728, 1727, 1, 0, 0, 0, 1729, 1732, 1, 0, 0, 0, 1730, 1731, 1, 0, 0, 0, 1730, 1728, 1, 0, 0, 0, 1731, 1734, 1, 0, 0, 0, 1732, 1730, 1, 0, 0, 0, 1733, 1726, 1, 0, 0, 0, 1733, 1734, 1, 0, 0, 0, 1734, 233, 1, 0, 0, 0, 1735, 1737, 5, 132, 0, 0, 1736, 1735, 1, 0, 0, 0, 1736, 1737, 1, 0, 0, 0, 1737, 1738, 1, 0, 0, 0, 1738, 1741, 5, 133, 0, 0, 1739, 1741, 3, 236, 118, 0, 1740, 1736, 1, 0, 0, 0, 1740, 1739, 1, 0, 0, 0, 1741, 235, 1, 0, 0, 0, 1742, 1743, 5, 60, 0, 0, 1743, 1751, 3, 330, 165, 0, 1744, 1745, 5, 35, 0, 0, 1745, 1751, 3, 330, 165, 0, 1746, 1747, 5, 51, 0, 0, 1747, 1751, 3, 330, 165, 0, 1748, 1749, 5, 16, 0, 0, 1749, 1751, 3, 392, 196, 0, 1750, 1742, 1, 0, 0, 0, 1750, 1744, 1, 0, 0, 0, 1750, 1746, 1, 0, 0, 0, 1750, 1748, 1, 0, 0, 0, 1751, 237, 1, 0, 0, 0, 1752, 1753, 7, 10, 0, 0, 1753, 239, 1, 0, 0, 0, 1754, 1755, 7, 11, 0, 0, 1755, 241, 1, 0, 0, 0, 1756, 1761, 3, 244, 122, 0, 1757, 1758, 5, 263, 0, 0, 1758, 1760, 3, 244, 122, 0, 1759, 1757, 1, 0, 0, 0, 1760, 1763, 1, 0, 0, 0, 1761, 1762, 1, 0, 0, 0, 1761, 1759, 1, 0, 0, 0, 1762, 1766, 1, 0, 0, 0, 1763, 1761, 1, 0, 0, 0, 1764, 1765, 5, 263, 0, 0, 1765, 1767, 3, 246, 123, 0, 1766, 1764, 1, 0, 0, 0, 1766, 1767, 1, 0, 0, 0, 1767, 1770, 1, 0, 0, 0, 1768, 1770, 3, 246, 123, 0, 1769, 1756, 1, 0, 0, 0, 1769, 1768, 1, 0, 0, 0, 1770, 243, 1, 0, 0, 0, 1771, 1773, 5, 89, 0, 0, 1772, 1774, 3, 316, 158, 0, 1773, 1772, 1, 0, 0, 0, 1773, 1774, 1, 0, 0, 0, 1774, 1775, 1, 0, 0, 0, 1775, 1776, 5, 146, 0, 0, 1776, 1777, 3, 392, 196, 0, 1777, 245, 1, 0, 0, 0, 1778, 1780, 5, 154, 0, 0, 1779, 1781, 3, 316, 158, 0, 1780, 1779, 1, 0, 0, 0, 1780, 1781, 1, 0, 0, 0, 1781, 1782, 1, 0, 0, 0, 1782, 1783, 5, 265, 0, 0, 1783, 1784, 5, 145, 0, 0, 1784, 1790, 3, 248, 124, 0, 1785, 1786, 5, 263, 0, 0, 1786, 1787, 5, 145, 0, 0, 1787, 1789, 3, 248, 124, 0, 1788, 1785, 1, 0, 0, 0, 1789, 1792, 1, 0, 0, 0, 1790, 1791, 1, 0, 0, 0, 1790, 1788, 1, 0, 0, 0, 1791, 1793, 1, 0, 0, 0, 1792, 1790, 1, 0, 0, 0, 1793, 1794, 5, 266, 0, 0, 1794, 247, 1, 0, 0, 0, 1795, 1796, 5, 210, 0, 0, 1796, 1797, 3, 254, 127, 0, 1797, 1798, 3, 330, 165, 0, 1798, 1811, 1, 0, 0, 0, 1799, 1800, 3, 330, 165, 0, 1800, 1801, 3, 252, 126, 0, 1801, 1803, 1, 0, 0, 0, 1802, 1799, 1, 0, 0, 0, 1802, 1803, 1, 0, 0, 0, 1803, 1804, 1, 0, 0, 0, 1804, 1808, 5, 211, 0, 0, 1805, 1806, 3, 252, 126, 0, 1806, 1807, 3, 330, 165, 0, 1807, 1809, 1, 0, 0, 0, 1808, 1805, 1, 0, 0, 0, 1808, 1809, 1, 0, 0, 0, 1809, 1811, 1, 0, 0, 0, 1810, 1795, 1, 0, 0, 0, 1810, 1802, 1, 0, 0, 0, 1811, 249, 1, 0, 0, 0, 1812, 1813, 5, 30, 0, 0, 1813, 1814, 5, 94, 0, 0, 1814, 1819, 3, 390, 195, 0, 1815, 1816, 5, 216, 0, 0, 1816, 1817, 5, 151, 0, 0, 1817, 1818, 5, 249, 0, 0, 1818, 1820, 3, 392, 196, 0, 1819, 1815, 1, 0, 0, 0, 1819, 1820, 1, 0, 0, 0, 1820, 1823, 1, 0, 0, 0, 1821, 1823, 5, 197, 0, 0, 1822, 1812, 1, 0, 0, 0, 1822, 1821, 1, 0, 0, 0, 1823, 251, 1, 0, 0, 0, 1824, 1830, 1, 0, 0, 0, 1825, 1830, 5, 251, 0, 0, 1826, 1830, 5, 252, 0, 0, 1827, 1830, 5, 253, 0, 0, 1828, 1830, 5, 254, 0, 0, 1829, 1824, 1, 0, 0, 0, 1829, 1825, 1, 0, 0, 0, 1829, 1826, 1, 0, 0, 0, 1829, 1827, 1, 0, 0, 0, 1829, 1828, 1, 0, 0, 0, 1830, 253, 1, 0, 0, 0, 1831, 1840, 5, 249, 0, 0, 1832, 1840, 5, 250, 0, 0, 1833, 1840, 5, 115, 0, 0, 1834, 1840, 5, 164, 0, 0, 1835, 1840, 5, 163, 0, 0, 1836, 1840, 5, 15, 0, 0, 1837, 1840, 5, 94, 0, 0, 1838, 1840, 3, 252, 126, 0, 1839, 1831, 1, 0, 0, 0, 1839, 1832, 1, 0, 0, 0, 1839, 1833, 1, 0, 0, 0, 1839, 1834, 1, 0, 0, 0, 1839, 1835, 1, 0, 0, 0, 1839, 1836, 1, 0, 0, 0, 1839, 1837, 1, 0, 0, 0, 1839, 1838, 1, 0, 0, 0, 1840, 255, 1, 0, 0, 0, 1841, 1842, 5, 115, 0, 0, 1842, 1845, 3, 384, 192, 0, 1843, 1844, 7, 12, 0, 0, 1844, 1846, 5, 153, 0, 0, 1845, 1843, 1, 0, 0, 0, 1845, 1846, 1, 0, 0, 0, 1846, 257, 1, 0, 0, 0, 1847, 1848, 5, 265, 0, 0, 1848, 1853, 3, 266, 133, 0, 1849, 1850, 5, 263, 0, 0, 1850, 1852, 3, 266, 133, 0, 1851, 1849, 1, 0, 0, 0, 1852, 1855, 1, 0, 0, 0, 1853, 1851, 1, 0, 0, 0, 1853, 1854, 1, 0, 0, 0, 1854, 1856, 1, 0, 0, 0, 1855, 1853, 1, 0, 0, 0, 1856, 1857, 5, 266, 0, 0, 1857, 259, 1, 0, 0, 0, 1858, 1859, 5, 265, 0, 0, 1859, 1864, 3, 220, 110, 0, 1860, 1861, 5, 263, 0, 0, 1861, 1863, 3, 220, 110, 0, 1862, 1860, 1, 0, 0, 0, 1863, 1866, 1, 0, 0, 0, 1864, 1865, 1, 0, 0, 0, 1864, 1862, 1, 0, 0, 0, 1865, 1867, 1, 0, 0, 0, 1866, 1864, 1, 0, 0, 0, 1867, 1868, 5, 266, 0, 0, 1868, 261, 1, 0, 0, 0, 1869, 1874, 3, 330, 165, 0, 1870, 1871, 5, 263, 0, 0, 1871, 1873, 3, 330, 165, 0, 1872, 1870, 1, 0, 0, 0, 1873, 1876, 1, 0, 0, 0, 1874, 1872, 1, 0, 0, 0, 1874, 1875, 1, 0, 0, 0, 1875, 263, 1, 0, 0, 0, 1876, 1874, 1, 0, 0, 0, 1877, 1887, 5, 52, 0, 0, 1878, 1879, 5, 71, 0, 0, 1879, 1880, 5, 191, 0, 0, 1880, 1881, 5, 26, 0, 0, 1881, 1885, 3, 342, 171, 0, 1882, 1883, 5, 63, 0, 0, 1883, 1884, 5, 26, 0, 0, 1884, 1886, 3, 342, 171, 0, 1885, 1882, 1, 0, 0, 0, 1885, 1886, 1, 0, 0, 0, 1886, 1888, 1, 0, 0, 0, 1887, 1878, 1, 0, 0, 0, 1887, 1888, 1, 0, 0, 0, 1888, 1893, 1, 0, 0, 0, 1889, 1890, 5, 117, 0, 0, 1890, 1891, 5, 191, 0, 0, 1891, 1892, 5, 26, 0, 0, 1892, 1894, 3, 342, 171, 0, 1893, 1889, 1, 0, 0, 0, 1893, 1894, 1, 0, 0, 0, 1894, 265, 1, 0, 0, 0, 1895, 1898, 3, 390, 195, 0, 1896, 1897, 5, 249, 0, 0, 1897, 1899, 3, 330, 165, 0, 1898, 1896, 1, 0, 0, 0, 1898, 1899, 1, 0, 0, 0, 1899, 267, 1, 0, 0, 0, 1900, 1911, 3, 270, 135, 0, 1901, 1902, 5, 139, 0, 0, 1902, 1903, 5, 26, 0, 0, 1903, 1908, 3, 274, 137, 0, 1904, 1905, 5, 263, 0, 0, 1905, 1907, 3, 274, 137, 0, 1906, 1904, 1, 0, 0, 0, 1907, 1910, 1, 0, 0, 0, 1908, 1906, 1, 0, 0, 0, 1908, 1909, 1, 0, 0, 0, 1909, 1912, 1, 0, 0, 0, 1910, 1908, 1, 0, 0, 0, 1911, 1901, 1, 0, 0, 0, 1911, 1912, 1, 0, 0, 0, 1912, 1919, 1, 0, 0, 0, 1913, 1914, 5, 116, 0, 0, 1914, 1917, 3, 330, 165, 0, 1915, 1916, 5, 135, 0, 0, 1916, 1918, 5, 277, 0, 0, 1917, 1915, 1, 0, 0, 0, 1917, 1918, 1, 0, 0, 0, 1918, 1920, 1, 0, 0, 0, 1919, 1913, 1, 0, 0, 0, 1919, 1920, 1, 0, 0, 0, 1920, 269, 1, 0, 0, 0, 1921, 1922, 6, 135, -1, 0, 1922, 1923, 3, 272, 136, 0, 1923, 1938, 1, 0, 0, 0, 1924, 1925, 10, 2, 0, 0, 1925, 1927, 5, 100, 0, 0, 1926, 1928, 3, 292, 146, 0, 1927, 1926, 1, 0, 0, 0, 1927, 1928, 1, 0, 0, 0, 1928, 1929, 1, 0, 0, 0, 1929, 1937, 3, 270, 135, 3, 1930, 1931, 10, 1, 0, 0, 1931, 1933, 7, 13, 0, 0, 1932, 1934, 3, 292, 146, 0, 1933, 1932, 1, 0, 0, 0, 1933, 1934, 1, 0, 0, 0, 1934, 1935, 1, 0, 0, 0, 1935, 1937, 3, 270, 135, 2, 1936, 1924, 1, 0, 0, 0, 1936, 1930, 1, 0, 0, 0, 1937, 1940, 1, 0, 0, 0, 1938, 1936, 1, 0, 0, 0, 1938, 1939, 1, 0, 0, 0, 1939, 271, 1, 0, 0, 0, 1940, 1938, 1, 0, 0, 0, 1941, 1958, 3, 276, 138, 0, 1942, 1943, 5, 188, 0, 0, 1943, 1958, 3, 186, 93, 0, 1944, 1945, 5, 211, 0, 0, 1945, 1950, 3, 330, 165, 0, 1946, 1947, 5, 263, 0, 0, 1947, 1949, 3, 330, 165, 0, 1948, 1946, 1, 0, 0, 0, 1949, 1952, 1, 0, 0, 0, 1950, 1948, 1, 0, 0, 0, 1950, 1951, 1, 0, 0, 0, 1951, 1958, 1, 0, 0, 0, 1952, 1950, 1, 0, 0, 0, 1953, 1954, 5, 265, 0, 0, 1954, 1955, 3, 268, 134, 0, 1955, 1956, 5, 266, 0, 0, 1956, 1958, 1, 0, 0, 0, 1957, 1941, 1, 0, 0, 0, 1957, 1942, 1, 0, 0, 0, 1957, 1944, 1, 0, 0, 0, 1957, 1953, 1, 0, 0, 0, 1958, 273, 1, 0, 0, 0, 1959, 1961, 3, 328, 164, 0, 1960, 1962, 7, 14, 0, 0, 1961, 1960, 1, 0, 0, 0, 1961, 1962, 1, 0, 0, 0, 1962, 1965, 1, 0, 0, 0, 1963, 1964, 5, 134, 0, 0, 1964, 1966, 7, 15, 0, 0, 1965, 1963, 1, 0, 0, 0, 1965, 1966, 1, 0, 0, 0, 1966, 275, 1, 0, 0, 0, 1967, 1969, 5, 174, 0, 0, 1968, 1970, 3, 292, 146, 0, 1969, 1968, 1, 0, 0, 0, 1969, 1970, 1, 0, 0, 0, 1970, 1972, 1, 0, 0, 0, 1971, 1973, 5, 183, 0, 0, 1972, 1971, 1, 0, 0, 0, 1972, 1973, 1, 0, 0, 0, 1973, 1974, 1, 0, 0, 0, 1974, 1984, 3, 278, 139, 0, 1975, 1976, 5, 82, 0, 0, 1976, 1981, 3, 304, 152, 0, 1977, 1978, 5, 263, 0, 0, 1978, 1980, 3, 304, 152, 0, 1979, 1977, 1, 0, 0, 0, 1980, 1983, 1, 0, 0, 0, 1981, 1979, 1, 0, 0, 0, 1981, 1982, 1, 0, 0, 0, 1982, 1985, 1, 0, 0, 0, 1983, 1981, 1, 0, 0, 0, 1984, 1975, 1, 0, 0, 0, 1984, 1985, 1, 0, 0, 0, 1985, 1987, 1, 0, 0, 0, 1986, 1988, 3, 280, 140, 0, 1987, 1986, 1, 0, 0, 0, 1987, 1988, 1, 0, 0, 0, 1988, 1992, 1, 0, 0, 0, 1989, 1990, 5, 87, 0, 0, 1990, 1991, 5, 26, 0, 0, 1991, 1993, 3, 284, 142, 0, 1992, 1989, 1, 0, 0, 0, 1992, 1993, 1, 0, 0, 0, 1993, 1995, 1, 0, 0, 0, 1994, 1996, 3, 282, 141, 0, 1995, 1994, 1, 0, 0, 0, 1995, 1996, 1, 0, 0, 0, 1996, 277, 1, 0, 0, 0, 1997, 2002, 3, 294, 147, 0, 1998, 1999, 5, 263, 0, 0, 1999, 2001, 3, 294, 147, 0, 2000, 1998, 1, 0, 0, 0, 2001, 2004, 1, 0, 0, 0, 2002, 2000, 1, 0, 0, 0, 2002, 2003, 1, 0, 0, 0, 2003, 279, 1, 0, 0, 0, 2004, 2002, 1, 0, 0, 0, 2005, 2008, 5, 215, 0, 0, 2006, 2009, 3, 332, 166, 0, 2007, 2009, 3, 198, 99, 0, 2008, 2006, 1, 0, 0, 0, 2008, 2007, 1, 0, 0, 0, 2009, 281, 1, 0, 0, 0, 2010, 2013, 5, 90, 0, 0, 2011, 2014, 3, 332, 166, 0, 2012, 2014, 3, 198, 99, 0, 2013, 2011, 1, 0, 0, 0, 2013, 2012, 1, 0, 0, 0, 2014, 283, 1, 0, 0, 0, 2015, 2017, 3, 292, 146, 0, 2016, 2015, 1, 0, 0, 0, 2016, 2017, 1, 0, 0, 0, 2017, 2018, 1, 0, 0, 0, 2018, 2023, 3, 286, 143, 0, 2019, 2020, 5, 263, 0, 0, 2020, 2022, 3, 286, 143, 0, 2021, 2019, 1, 0, 0, 0, 2022, 2025, 1, 0, 0, 0, 2023, 2021, 1, 0, 0, 0, 2023, 2024, 1, 0, 0, 0, 2024, 285, 1, 0, 0, 0, 2025, 2023, 1, 0, 0, 0, 2026, 2027, 3, 288, 144, 0, 2027, 287, 1, 0, 0, 0, 2028, 2037, 5, 265, 0, 0, 2029, 2034, 3, 328, 164, 0, 2030, 2031, 5, 263, 0, 0, 2031, 2033, 3, 328, 164, 0, 2032, 2030, 1, 0, 0, 0, 2033, 2036, 1, 0, 0, 0, 2034, 2032, 1, 0, 0, 0, 2034, 2035, 1, 0, 0, 0, 2035, 2038, 1, 0, 0, 0, 2036, 2034, 1, 0, 0, 0, 2037, 2029, 1, 0, 0, 0, 2037, 2038, 1, 0, 0, 0, 2038, 2039, 1, 0, 0, 0, 2039, 2042, 5, 266, 0, 0, 2040, 2042, 3, 328, 164, 0, 2041, 2028, 1, 0, 0, 0, 2041, 2040, 1, 0, 0, 0, 2042, 289, 1, 0, 0, 0, 2043, 2045, 3, 390, 195, 0, 2044, 2046, 3, 316, 158, 0, 2045, 2044, 1, 0, 0, 0, 2045, 2046, 1, 0, 0, 0, 2046, 2047, 1, 0, 0, 0, 2047, 2048, 5, 9, 0, 0, 2048, 2049, 3, 322, 161, 0, 2049, 291, 1, 0, 0, 0, 2050, 2051, 7, 16, 0, 0, 2051, 293, 1, 0, 0, 0, 2052, 2054, 3, 298, 149, 0, 2053, 2055, 3, 296, 148, 0, 2054, 2053, 1, 0, 0, 0, 2054, 2055, 1, 0, 0, 0, 2055, 2064, 1, 0, 0, 0, 2056, 2058, 3, 300, 150, 0, 2057, 2059, 3, 296, 148, 0, 2058, 2057, 1, 0, 0, 0, 2058, 2059, 1, 0, 0, 0, 2059, 2064, 1, 0, 0, 0, 2060, 2064, 3, 302, 151, 0, 2061, 2062, 4, 147, 4, 0, 2062, 2064, 3, 192, 96, 0, 2063, 2052, 1, 0, 0, 0, 2063, 2056, 1, 0, 0, 0, 2063, 2060, 1, 0, 0, 0, 2063, 2061, 1, 0, 0, 0, 2064, 295, 1, 0, 0, 0, 2065, 2067, 5, 9, 0, 0, 2066, 2065, 1, 0, 0, 0, 2066, 2067, 1, 0, 0, 0, 2067, 2068, 1, 0, 0, 0, 2068, 2069, 3, 390, 195, 0, 2069, 297, 1, 0, 0, 0, 2070, 2071, 3, 194, 97, 0, 2071, 299, 1, 0, 0, 0, 2072, 2073, 3, 330, 165, 0, 2073, 301, 1, 0, 0, 0, 2074, 2075, 3, 384, 192, 0, 2075, 2076, 5, 261, 0, 0, 2076, 2078, 1, 0, 0, 0, 2077, 2074, 1, 0, 0, 0, 2077, 2078, 1, 0, 0, 0, 2078, 2079, 1, 0, 0, 0, 2079, 2080, 5, 257, 0, 0, 2080, 303, 1, 0, 0, 0, 2081, 2082, 6, 152, -1, 0, 2082, 2083, 3, 310, 155, 0, 2083, 2097, 1, 0, 0, 0, 2084, 2093, 10, 2, 0, 0, 2085, 2086, 5, 38, 0, 0, 2086, 2087, 5, 109, 0, 0, 2087, 2094, 3, 310, 155, 0, 2088, 2089, 3, 306, 153, 0, 2089, 2090, 5, 109, 0, 0, 2090, 2091, 3, 304, 152, 0, 2091, 2092, 3, 308, 154, 0, 2092, 2094, 1, 0, 0, 0, 2093, 2085, 1, 0, 0, 0, 2093, 2088, 1, 0, 0, 0, 2094, 2096, 1, 0, 0, 0, 2095, 2084, 1, 0, 0, 0, 2096, 2099, 1, 0, 0, 0, 2097, 2095, 1, 0, 0, 0, 2097, 2098, 1, 0, 0, 0, 2098, 305, 1, 0, 0, 0, 2099, 2097, 1, 0, 0, 0, 2100, 2102, 5, 97, 0, 0, 2101, 2100, 1, 0, 0, 0, 2101, 2102, 1, 0, 0, 0, 2102, 2132, 1, 0, 0, 0, 2103, 2105, 5, 114, 0, 0, 2104, 2106, 5, 97, 0, 0, 2105, 2104, 1, 0, 0, 0, 2105, 2106, 1, 0, 0, 0, 2106, 2132, 1, 0, 0, 0, 2107, 2109, 5, 165, 0, 0, 2108, 2110, 5, 97, 0, 0, 2109, 2108, 1, 0, 0, 0, 2109, 2110, 1, 0, 0, 0, 2110, 2132, 1, 0, 0, 0, 2111, 2113, 5, 114, 0, 0, 2112, 2114, 5, 141, 0, 0, 2113, 2112, 1, 0, 0, 0, 2113, 2114, 1, 0, 0, 0, 2114, 2132, 1, 0, 0, 0, 2115, 2117, 5, 165, 0, 0, 2116, 2118, 5, 141, 0, 0, 2117, 2116, 1, 0, 0, 0, 2117, 2118, 1, 0, 0, 0, 2118, 2132, 1, 0, 0, 0, 2119, 2121, 5, 83, 0, 0, 2120, 2122, 5, 141, 0, 0, 2121, 2120, 1, 0, 0, 0, 2121, 2122, 1, 0, 0, 0, 2122, 2132, 1, 0, 0, 0, 2123, 2124, 5, 114, 0, 0, 2124, 2132, 5, 177, 0, 0, 2125, 2126, 5, 165, 0, 0, 2126, 2132, 5, 177, 0, 0, 2127, 2128, 5, 114, 0, 0, 2128, 2132, 5, 7, 0, 0, 2129, 2130, 5, 165, 0, 0, 2130, 2132, 5, 7, 0, 0, 2131, 2101, 1, 0, 0, 0, 2131, 2103, 1, 0, 0, 0, 2131, 2107, 1, 0, 0, 0, 2131, 2111, 1, 0, 0, 0, 2131, 2115, 1, 0, 0, 0, 2131, 2119, 1, 0, 0, 0, 2131, 2123, 1, 0, 0, 0, 2131, 2125, 1, 0, 0, 0, 2131, 2127, 1, 0, 0, 0, 2131, 2129, 1, 0, 0, 0, 2132, 307, 1, 0, 0, 0, 2133, 2136, 5, 136, 0, 0, 2134, 2137, 3, 332, 166, 0, 2135, 2137, 3, 198, 99, 0, 2136, 2134, 1, 0, 0, 0, 2136, 2135, 1, 0, 0, 0, 2137, 2151, 1, 0, 0, 0, 2138, 2139, 5, 205, 0, 0, 2139, 2140, 5, 265, 0, 0, 2140, 2145, 3, 390, 195, 0, 2141, 2142, 5, 263, 0, 0, 2142, 2144, 3, 390, 195, 0, 2143, 2141, 1, 0, 0, 0, 2144, 2147, 1, 0, 0, 0, 2145, 2143, 1, 0, 0, 0, 2145, 2146, 1, 0, 0, 0, 2146, 2148, 1, 0, 0, 0, 2147, 2145, 1, 0, 0, 0, 2148, 2149, 5, 266, 0, 0, 2149, 2151, 1, 0, 0, 0, 2150, 2133, 1, 0, 0, 0, 2150, 2138, 1, 0, 0, 0, 2151, 309, 1, 0, 0, 0, 2152, 2165, 3, 314, 157, 0, 2153, 2154, 5, 190, 0, 0, 2154, 2155, 3, 312, 156, 0, 2155, 2156, 5, 265, 0, 0, 2156, 2157, 3, 330, 165, 0, 2157, 2163, 5, 266, 0, 0, 2158, 2159, 5, 157, 0, 0, 2159, 2160, 5, 265, 0, 0, 2160, 2161, 3, 330, 165, 0, 2161, 2162, 5, 266, 0, 0, 2162, 2164, 1, 0, 0, 0, 2163, 2158, 1, 0, 0, 0, 2163, 2164, 1, 0, 0, 0, 2164, 2166, 1, 0, 0, 0, 2165, 2153, 1, 0, 0, 0, 2165, 2166, 1, 0, 0, 0, 2166, 311, 1, 0, 0, 0, 2167, 2168, 7, 17, 0, 0, 2168, 313, 1, 0, 0, 0, 2169, 2177, 3, 318, 159, 0, 2170, 2172, 5, 9, 0, 0, 2171, 2170, 1, 0, 0, 0, 2171, 2172, 1, 0, 0, 0, 2172, 2173, 1, 0, 0, 0, 2173, 2175, 3, 390, 195, 0, 2174, 2176, 3, 316, 158, 0, 2175, 2174, 1, 0, 0, 0, 2175, 2176, 1, 0, 0, 0, 2176, 2178, 1, 0, 0, 0, 2177, 2171, 1, 0, 0, 0, 2177, 2178, 1, 0, 0, 0, 2178, 315, 1, 0, 0, 0, 2179, 2180, 5, 265, 0, 0, 2180, 2185, 3, 194, 97, 0, 2181, 2182, 5, 263, 0, 0, 2182, 2184, 3, 194, 97, 0, 2183, 2181, 1, 0, 0, 0, 2184, 2187, 1, 0, 0, 0, 2185, 2183, 1, 0, 0, 0, 2185, 2186, 1, 0, 0, 0, 2186, 2188, 1, 0, 0, 0, 2187, 2185, 1, 0, 0, 0, 2188, 2189, 5, 266, 0, 0, 2189, 317, 1, 0, 0, 0, 2190, 2195, 3, 200, 100, 0, 2191, 2195, 3, 320, 160, 0, 2192, 2195, 3, 324, 162, 0, 2193, 2195, 3, 326, 163, 0, 2194, 2190, 1, 0, 0, 0, 2194, 2191, 1, 0, 0, 0, 2194, 2192, 1, 0, 0, 0, 2194, 2193, 1, 0, 0, 0, 2195, 319, 1, 0, 0, 0, 2196, 2198, 5, 113, 0, 0, 2197, 2196, 1, 0, 0, 0, 2197, 2198, 1, 0, 0, 0, 2198, 2199, 1, 0, 0, 0, 2199, 2200, 3, 322, 161, 0, 2200, 321, 1, 0, 0, 0, 2201, 2202, 5, 265, 0, 0, 2202, 2203, 3, 212, 106, 0, 2203, 2204, 5, 266, 0, 0, 2204, 323, 1, 0, 0, 0, 2205, 2206, 5, 201, 0, 0, 2206, 2207, 5, 265, 0, 0, 2207, 2212, 3, 330, 165, 0, 2208, 2209, 5, 263, 0, 0, 2209, 2211, 3, 330, 165, 0, 2210, 2208, 1, 0, 0, 0, 2211, 2214, 1, 0, 0, 0, 2212, 2210, 1, 0, 0, 0, 2212, 2213, 1, 0, 0, 0, 2213, 2215, 1, 0, 0, 0, 2214, 2212, 1, 0, 0, 0, 2215, 2218, 5, 266, 0, 0, 2216, 2217, 5, 216, 0, 0, 2217, 2219, 5, 140, 0, 0, 2218, 2216, 1, 0, 0, 0, 2218, 2219, 1, 0, 0, 0, 2219, 325, 1, 0, 0, 0, 2220, 2221, 5, 265, 0, 0, 2221, 2222, 3, 304, 152, 0, 2222, 2223, 5, 266, 0, 0, 2223, 327, 1, 0, 0, 0, 2224, 2227, 3, 194, 97, 0, 2225, 2227, 3, 330, 165, 0, 2226, 2224, 1, 0, 0, 0, 2226, 2225, 1, 0, 0, 0, 2227, 329, 1, 0, 0, 0, 2228, 2229, 3, 332, 166, 0, 2229, 331, 1, 0, 0, 0, 2230, 2231, 6, 166, -1, 0, 2231, 2233, 3, 336, 168, 0, 2232, 2234, 3, 334, 167, 0, 2233, 2232, 1, 0, 0, 0, 2233, 2234, 1, 0, 0, 0, 2234, 2238, 1, 0, 0, 0, 2235, 2236, 5, 132, 0, 0, 2236, 2238, 3, 332, 166, 3, 2237, 2230, 1, 0, 0, 0, 2237, 2235, 1, 0, 0, 0, 2238, 2247, 1, 0, 0, 0, 2239, 2240, 10, 2, 0, 0, 2240, 2241, 5, 5, 0, 0, 2241, 2246, 3, 332, 166, 3, 2242, 2243, 10, 1, 0, 0, 2243, 2244, 5, 138, 0, 0, 2244, 2246, 3, 332, 166, 2, 2245, 2239, 1, 0, 0, 0, 2245, 2242, 1, 0, 0, 0, 2246, 2249, 1, 0, 0, 0, 2247, 2245, 1, 0, 0, 0, 2247, 2248, 1, 0, 0, 0, 2248, 333, 1, 0, 0, 0, 2249, 2247, 1, 0, 0, 0, 2250, 2251, 3, 344, 172, 0, 2251, 2252, 3, 336, 168, 0, 2252, 2309, 1, 0, 0, 0, 2253, 2254, 3, 344, 172, 0, 2254, 2255, 3, 346, 173, 0, 2255, 2256, 3, 322, 161, 0, 2256, 2309, 1, 0, 0, 0, 2257, 2259, 5, 132, 0, 0, 2258, 2257, 1, 0, 0, 0, 2258, 2259, 1, 0, 0, 0, 2259, 2260, 1, 0, 0, 0, 2260, 2261, 5, 15, 0, 0, 2261, 2262, 3, 336, 168, 0, 2262, 2263, 5, 5, 0, 0, 2263, 2264, 3, 336, 168, 0, 2264, 2309, 1, 0, 0, 0, 2265, 2267, 5, 132, 0, 0, 2266, 2265, 1, 0, 0, 0, 2266, 2267, 1, 0, 0, 0, 2267, 2268, 1, 0, 0, 0, 2268, 2269, 5, 94, 0, 0, 2269, 2270, 5, 265, 0, 0, 2270, 2275, 3, 330, 165, 0, 2271, 2272, 5, 263, 0, 0, 2272, 2274, 3, 330, 165, 0, 2273, 2271, 1, 0, 0, 0, 2274, 2277, 1, 0, 0, 0, 2275, 2273, 1, 0, 0, 0, 2275, 2276, 1, 0, 0, 0, 2276, 2278, 1, 0, 0, 0, 2277, 2275, 1, 0, 0, 0, 2278, 2279, 5, 266, 0, 0, 2279, 2309, 1, 0, 0, 0, 2280, 2282, 5, 132, 0, 0, 2281, 2280, 1, 0, 0, 0, 2281, 2282, 1, 0, 0, 0, 2282, 2283, 1, 0, 0, 0, 2283, 2284, 5, 94, 0, 0, 2284, 2309, 3, 322, 161, 0, 2285, 2287, 5, 132, 0, 0, 2286, 2285, 1, 0, 0, 0, 2286, 2287, 1, 0, 0, 0, 2287, 2288, 1, 0, 0, 0, 2288, 2289, 7, 18, 0, 0, 2289, 2292, 3, 336, 168, 0, 2290, 2291, 5, 62, 0, 0, 2291, 2293, 3, 336, 168, 0, 2292, 2290, 1, 0, 0, 0, 2292, 2293, 1, 0, 0, 0, 2293, 2309, 1, 0, 0, 0, 2294, 2295, 7, 19, 0, 0, 2295, 2309, 3, 336, 168, 0, 2296, 2298, 5, 108, 0, 0, 2297, 2299, 5, 132, 0, 0, 2298, 2297, 1, 0, 0, 0, 2298, 2299, 1, 0, 0, 0, 2299, 2300, 1, 0, 0, 0, 2300, 2309, 7, 20, 0, 0, 2301, 2303, 5, 108, 0, 0, 2302, 2304, 5, 132, 0, 0, 2303, 2302, 1, 0, 0, 0, 2303, 2304, 1, 0, 0, 0, 2304, 2305, 1, 0, 0, 0, 2305, 2306, 5, 57, 0, 0, 2306, 2307, 5, 82, 0, 0, 2307, 2309, 3, 336, 168, 0, 2308, 2250, 1, 0, 0, 0, 2308, 2253, 1, 0, 0, 0, 2308, 2258, 1, 0, 0, 0, 2308, 2266, 1, 0, 0, 0, 2308, 2281, 1, 0, 0, 0, 2308, 2286, 1, 0, 0, 0, 2308, 2294, 1, 0, 0, 0, 2308, 2296, 1, 0, 0, 0, 2308, 2301, 1, 0, 0, 0, 2309, 335, 1, 0, 0, 0, 2310, 2311, 6, 168, -1, 0, 2311, 2315, 3, 340, 170, 0, 2312, 2313, 7, 21, 0, 0, 2313, 2315, 3, 336, 168, 4, 2314, 2310, 1, 0, 0, 0, 2314, 2312, 1, 0, 0, 0, 2315, 2327, 1, 0, 0, 0, 2316, 2317, 10, 3, 0, 0, 2317, 2318, 7, 22, 0, 0, 2318, 2326, 3, 336, 168, 4, 2319, 2320, 10, 2, 0, 0, 2320, 2321, 7, 21, 0, 0, 2321, 2326, 3, 336, 168, 3, 2322, 2323, 10, 1, 0, 0, 2323, 2324, 5, 260, 0, 0, 2324, 2326, 3, 336, 168, 2, 2325, 2316, 1, 0, 0, 0, 2325, 2319, 1, 0, 0, 0, 2325, 2322, 1, 0, 0, 0, 2326, 2329, 1, 0, 0, 0, 2327, 2325, 1, 0, 0, 0, 2327, 2328, 1, 0, 0, 0, 2328, 337, 1, 0, 0, 0, 2329, 2327, 1, 0, 0, 0, 2330, 2331, 3, 190, 95, 0, 2331, 2343, 5, 265, 0, 0, 2332, 2334, 3, 292, 146, 0, 2333, 2332, 1, 0, 0, 0, 2333, 2334, 1, 0, 0, 0, 2334, 2335, 1, 0, 0, 0, 2335, 2340, 3, 330, 165, 0, 2336, 2337, 5, 263, 0, 0, 2337, 2339, 3, 330, 165, 0, 2338, 2336, 1, 0, 0, 0, 2339, 2342, 1, 0, 0, 0, 2340, 2338, 1, 0, 0, 0, 2340, 2341, 1, 0, 0, 0, 2341, 2344, 1, 0, 0, 0, 2342, 2340, 1, 0, 0, 0, 2343, 2333, 1, 0, 0, 0, 2343, 2344, 1, 0, 0, 0, 2344, 2355, 1, 0, 0, 0, 2345, 2346, 5, 139, 0, 0, 2346, 2347, 5, 26, 0, 0, 2347, 2352, 3, 274, 137, 0, 2348, 2349, 5, 263, 0, 0, 2349, 2351, 3, 274, 137, 0, 2350, 2348, 1, 0, 0, 0, 2351, 2354, 1, 0, 0, 0, 2352, 2350, 1, 0, 0, 0, 2352, 2353, 1, 0, 0, 0, 2353, 2356, 1, 0, 0, 0, 2354, 2352, 1, 0, 0, 0, 2355, 2345, 1, 0, 0, 0, 2355, 2356, 1, 0, 0, 0, 2356, 2357, 1, 0, 0, 0, 2357, 2359, 5, 266, 0, 0, 2358, 2360, 3, 366, 183, 0, 2359, 2358, 1, 0, 0, 0, 2359, 2360, 1, 0, 0, 0, 2360, 2362, 1, 0, 0, 0, 2361, 2363, 3, 370, 185, 0, 2362, 2361, 1, 0, 0, 0, 2362, 2363, 1, 0, 0, 0, 2363, 339, 1, 0, 0, 0, 2364, 2365, 6, 170, -1, 0, 2365, 2578, 5, 133, 0, 0, 2366, 2578, 3, 350, 175, 0, 2367, 2368, 3, 390, 195, 0, 2368, 2369, 3, 342, 171, 0, 2369, 2578, 1, 0, 0, 0, 2370, 2371, 5, 286, 0, 0, 2371, 2578, 3, 342, 171, 0, 2372, 2578, 3, 392, 196, 0, 2373, 2578, 3, 348, 174, 0, 2374, 2578, 3, 342, 171, 0, 2375, 2578, 5, 276, 0, 0, 2376, 2578, 5, 272, 0, 0, 2377, 2378, 5, 148, 0, 0, 2378, 2379, 5, 265, 0, 0, 2379, 2380, 3, 336, 168, 0, 2380, 2381, 5, 94, 0, 0, 2381, 2382, 3, 336, 168, 0, 2382, 2383, 5, 266, 0, 0, 2383, 2578, 1, 0, 0, 0, 2384, 2385, 5, 265, 0, 0, 2385, 2388, 3, 330, 165, 0, 2386, 2387, 5, 9, 0, 0, 2387, 2389, 3, 356, 178, 0, 2388, 2386, 1, 0, 0, 0, 2388, 2389, 1, 0, 0, 0, 2389, 2398, 1, 0, 0, 0, 2390, 2391, 5, 263, 0, 0, 2391, 2394, 3, 330, 165, 0, 2392, 2393, 5, 9, 0, 0, 2393, 2395, 3, 356, 178, 0, 2394, 2392, 1, 0, 0, 0, 2394, 2395, 1, 0, 0, 0, 2395, 2397, 1, 0, 0, 0, 2396, 2390, 1, 0, 0, 0, 2397, 2400, 1, 0, 0, 0, 2398, 2399, 1, 0, 0, 0, 2398, 2396, 1, 0, 0, 0, 2399, 2401, 1, 0, 0, 0, 2400, 2398, 1, 0, 0, 0, 2401, 2402, 5, 266, 0, 0, 2402, 2578, 1, 0, 0, 0, 2403, 2404, 5, 168, 0, 0, 2404, 2405, 5, 265, 0, 0, 2405, 2410, 3, 330, 165, 0, 2406, 2407, 5, 263, 0, 0, 2407, 2409, 3, 330, 165, 0, 2408, 2406, 1, 0, 0, 0, 2409, 2412, 1, 0, 0, 0, 2410, 2408, 1, 0, 0, 0, 2410, 2411, 1, 0, 0, 0, 2411, 2413, 1, 0, 0, 0, 2412, 2410, 1, 0, 0, 0, 2413, 2414, 5, 266, 0, 0, 2414, 2578, 1, 0, 0, 0, 2415, 2416, 3, 190, 95, 0, 2416, 2417, 5, 265, 0, 0, 2417, 2418, 5, 257, 0, 0, 2418, 2420, 5, 266, 0, 0, 2419, 2421, 3, 366, 183, 0, 2420, 2419, 1, 0, 0, 0, 2420, 2421, 1, 0, 0, 0, 2421, 2423, 1, 0, 0, 0, 2422, 2424, 3, 370, 185, 0, 2423, 2422, 1, 0, 0, 0, 2423, 2424, 1, 0, 0, 0, 2424, 2578, 1, 0, 0, 0, 2425, 2578, 3, 338, 169, 0, 2426, 2427, 3, 390, 195, 0, 2427, 2428, 5, 273, 0, 0, 2428, 2429, 3, 330, 165, 0, 2429, 2578, 1, 0, 0, 0, 2430, 2439, 5, 265, 0, 0, 2431, 2436, 3, 390, 195, 0, 2432, 2433, 5, 263, 0, 0, 2433, 2435, 3, 390, 195, 0, 2434, 2432, 1, 0, 0, 0, 2435, 2438, 1, 0, 0, 0, 2436, 2434, 1, 0, 0, 0, 2436, 2437, 1, 0, 0, 0, 2437, 2440, 1, 0, 0, 0, 2438, 2436, 1, 0, 0, 0, 2439, 2431, 1, 0, 0, 0, 2439, 2440, 1, 0, 0, 0, 2440, 2441, 1, 0, 0, 0, 2441, 2442, 5, 266, 0, 0, 2442, 2443, 5, 273, 0, 0, 2443, 2578, 3, 330, 165, 0, 2444, 2445, 5, 265, 0, 0, 2445, 2446, 3, 212, 106, 0, 2446, 2447, 5, 266, 0, 0, 2447, 2578, 1, 0, 0, 0, 2448, 2449, 5, 66, 0, 0, 2449, 2450, 5, 265, 0, 0, 2450, 2451, 3, 212, 106, 0, 2451, 2452, 5, 266, 0, 0, 2452, 2578, 1, 0, 0, 0, 2453, 2454, 5, 28, 0, 0, 2454, 2456, 3, 336, 168, 0, 2455, 2457, 3, 364, 182, 0, 2456, 2455, 1, 0, 0, 0, 2457, 2458, 1, 0, 0, 0, 2458, 2456, 1, 0, 0, 0, 2458, 2459, 1, 0, 0, 0, 2459, 2462, 1, 0, 0, 0, 2460, 2461, 5, 59, 0, 0, 2461, 2463, 3, 330, 165, 0, 2462, 2460, 1, 0, 0, 0, 2462, 2463, 1, 0, 0, 0, 2463, 2464, 1, 0, 0, 0, 2464, 2465, 5, 61, 0, 0, 2465, 2578, 1, 0, 0, 0, 2466, 2468, 5, 28, 0, 0, 2467, 2469, 3, 364, 182, 0, 2468, 2467, 1, 0, 0, 0, 2469, 2470, 1, 0, 0, 0, 2470, 2468, 1, 0, 0, 0, 2470, 2471, 1, 0, 0, 0, 2471, 2474, 1, 0, 0, 0, 2472, 2473, 5, 59, 0, 0, 2473, 2475, 3, 330, 165, 0, 2474, 2472, 1, 0, 0, 0, 2474, 2475, 1, 0, 0, 0, 2475, 2476, 1, 0, 0, 0, 2476, 2477, 5, 61, 0, 0, 2477, 2578, 1, 0, 0, 0, 2478, 2479, 5, 29, 0, 0, 2479, 2480, 5, 265, 0, 0, 2480, 2481, 3, 330, 165, 0, 2481, 2482, 5, 9, 0, 0, 2482, 2483, 3, 356, 178, 0, 2483, 2484, 5, 266, 0, 0, 2484, 2578, 1, 0, 0, 0, 2485, 2486, 5, 195, 0, 0, 2486, 2487, 5, 265, 0, 0, 2487, 2488, 3, 330, 165, 0, 2488, 2489, 5, 9, 0, 0, 2489, 2490, 3, 356, 178, 0, 2490, 2491, 5, 266, 0, 0, 2491, 2578, 1, 0, 0, 0, 2492, 2493, 5, 8, 0, 0, 2493, 2502, 5, 267, 0, 0, 2494, 2499, 3, 330, 165, 0, 2495, 2496, 5, 263, 0, 0, 2496, 2498, 3, 330, 165, 0, 2497, 2495, 1, 0, 0, 0, 2498, 2501, 1, 0, 0, 0, 2499, 2497, 1, 0, 0, 0, 2499, 2500, 1, 0, 0, 0, 2500, 2503, 1, 0, 0, 0, 2501, 2499, 1, 0, 0, 0, 2502, 2494, 1, 0, 0, 0, 2502, 2503, 1, 0, 0, 0, 2503, 2504, 1, 0, 0, 0, 2504, 2578, 5, 268, 0, 0, 2505, 2578, 3, 196, 98, 0, 2506, 2578, 5, 40, 0, 0, 2507, 2511, 5, 42, 0, 0, 2508, 2509, 5, 265, 0, 0, 2509, 2510, 5, 277, 0, 0, 2510, 2512, 5, 266, 0, 0, 2511, 2508, 1, 0, 0, 0, 2511, 2512, 1, 0, 0, 0, 2512, 2578, 1, 0, 0, 0, 2513, 2517, 5, 43, 0, 0, 2514, 2515, 5, 265, 0, 0, 2515, 2516, 5, 277, 0, 0, 2516, 2518, 5, 266, 0, 0, 2517, 2514, 1, 0, 0, 0, 2517, 2518, 1, 0, 0, 0, 2518, 2578, 1, 0, 0, 0, 2519, 2523, 5, 119, 0, 0, 2520, 2521, 5, 265, 0, 0, 2521, 2522, 5, 277, 0, 0, 2522, 2524, 5, 266, 0, 0, 2523, 2520, 1, 0, 0, 0, 2523, 2524, 1, 0, 0, 0, 2524, 2578, 1, 0, 0, 0, 2525, 2529, 5, 120, 0, 0, 2526, 2527, 5, 265, 0, 0, 2527, 2528, 5, 277, 0, 0, 2528, 2530, 5, 266, 0, 0, 2529, 2526, 1, 0, 0, 0, 2529, 2530, 1, 0, 0, 0, 2530, 2578, 1, 0, 0, 0, 2531, 2578, 5, 44, 0, 0, 2532, 2578, 5, 41, 0, 0, 2533, 2534, 5, 184, 0, 0, 2534, 2535, 5, 265, 0, 0, 2535, 2536, 3, 336, 168, 0, 2536, 2537, 5, 82, 0, 0, 2537, 2540, 3, 336, 168, 0, 2538, 2539, 5, 78, 0, 0, 2539, 2541, 3, 336, 168, 0, 2540, 2538, 1, 0, 0, 0, 2540, 2541, 1, 0, 0, 0, 2541, 2542, 1, 0, 0, 0, 2542, 2543, 5, 266, 0, 0, 2543, 2578, 1, 0, 0, 0, 2544, 2545, 5, 131, 0, 0, 2545, 2546, 5, 265, 0, 0, 2546, 2549, 3, 336, 168, 0, 2547, 2548, 5, 263, 0, 0, 2548, 2550, 3, 354, 177, 0, 2549, 2547, 1, 0, 0, 0, 2549, 2550, 1, 0, 0, 0, 2550, 2551, 1, 0, 0, 0, 2551, 2552, 5, 266, 0, 0, 2552, 2578, 1, 0, 0, 0, 2553, 2554, 5, 68, 0, 0, 2554, 2555, 5, 265, 0, 0, 2555, 2556, 3, 390, 195, 0, 2556, 2557, 5, 82, 0, 0, 2557, 2558, 3, 336, 168, 0, 2558, 2559, 5, 266, 0, 0, 2559, 2578, 1, 0, 0, 0, 2560, 2561, 5, 265, 0, 0, 2561, 2562, 3, 330, 165, 0, 2562, 2563, 5, 266, 0, 0, 2563, 2578, 1, 0, 0, 0, 2564, 2565, 5, 88, 0, 0, 2565, 2574, 5, 265, 0, 0, 2566, 2571, 3, 384, 192, 0, 2567, 2568, 5, 263, 0, 0, 2568, 2570, 3, 384, 192, 0, 2569, 2567, 1, 0, 0, 0, 2570, 2573, 1, 0, 0, 0, 2571, 2569, 1, 0, 0, 0, 2571, 2572, 1, 0, 0, 0, 2572, 2575, 1, 0, 0, 0, 2573, 2571, 1, 0, 0, 0, 2574, 2566, 1, 0, 0, 0, 2574, 2575, 1, 0, 0, 0, 2575, 2576, 1, 0, 0, 0, 2576, 2578, 5, 266, 0, 0, 2577, 2364, 1, 0, 0, 0, 2577, 2366, 1, 0, 0, 0, 2577, 2367, 1, 0, 0, 0, 2577, 2370, 1, 0, 0, 0, 2577, 2372, 1, 0, 0, 0, 2577, 2373, 1, 0, 0, 0, 2577, 2374, 1, 0, 0, 0, 2577, 2375, 1, 0, 0, 0, 2577, 2376, 1, 0, 0, 0, 2577, 2377, 1, 0, 0, 0, 2577, 2384, 1, 0, 0, 0, 2577, 2403, 1, 0, 0, 0, 2577, 2415, 1, 0, 0, 0, 2577, 2425, 1, 0, 0, 0, 2577, 2426, 1, 0, 0, 0, 2577, 2430, 1, 0, 0, 0, 2577, 2444, 1, 0, 0, 0, 2577, 2448, 1, 0, 0, 0, 2577, 2453, 1, 0, 0, 0, 2577, 2466, 1, 0, 0, 0, 2577, 2478, 1, 0, 0, 0, 2577, 2485, 1, 0, 0, 0, 2577, 2492, 1, 0, 0, 0, 2577, 2505, 1, 0, 0, 0, 2577, 2506, 1, 0, 0, 0, 2577, 2507, 1, 0, 0, 0, 2577, 2513, 1, 0, 0, 0, 2577, 2519, 1, 0, 0, 0, 2577, 2525, 1, 0, 0, 0, 2577, 2531, 1, 0, 0, 0, 2577, 2532, 1, 0, 0, 0, 2577, 2533, 1, 0, 0, 0, 2577, 2544, 1, 0, 0, 0, 2577, 2553, 1, 0, 0, 0, 2577, 2560, 1, 0, 0, 0, 2577, 2564, 1, 0, 0, 0, 2578, 2589, 1, 0, 0, 0, 2579, 2580, 10, 15, 0, 0, 2580, 2581, 5, 267, 0, 0, 2581, 2582, 3, 336, 168, 0, 2582, 2583, 5, 268, 0, 0, 2583, 2588, 1, 0, 0, 0, 2584, 2585, 10, 13, 0, 0, 2585, 2586, 5, 261, 0, 0, 2586, 2588, 3, 390, 195, 0, 2587, 2579, 1, 0, 0, 0, 2587, 2584, 1, 0, 0, 0, 2588, 2591, 1, 0, 0, 0, 2589, 2587, 1, 0, 0, 0, 2589, 2590, 1, 0, 0, 0, 2590, 341, 1, 0, 0, 0, 2591, 2589, 1, 0, 0, 0, 2592, 2599, 5, 274, 0, 0, 2593, 2596, 5, 275, 0, 0, 2594, 2595, 5, 198, 0, 0, 2595, 2597, 5, 274, 0, 0, 2596, 2594, 1, 0, 0, 0, 2596, 2597, 1, 0, 0, 0, 2597, 2599, 1, 0, 0, 0, 2598, 2592, 1, 0, 0, 0, 2598, 2593, 1, 0, 0, 0, 2599, 343, 1, 0, 0, 0, 2600, 2601, 7, 23, 0, 0, 2601, 345, 1, 0, 0, 0, 2602, 2603, 7, 24, 0, 0, 2603, 347, 1, 0, 0, 0, 2604, 2605, 7, 25, 0, 0, 2605, 349, 1, 0, 0, 0, 2606, 2607, 5, 277, 0, 0, 2607, 2621, 3, 352, 176, 0, 2608, 2609, 5, 265, 0, 0, 2609, 2610, 5, 277, 0, 0, 2610, 2611, 5, 266, 0, 0, 2611, 2621, 3, 352, 176, 0, 2612, 2613, 5, 101, 0, 0, 2613, 2614, 5, 277, 0, 0, 2614, 2621, 3, 352, 176, 0, 2615, 2616, 5, 101, 0, 0, 2616, 2617, 5, 265, 0, 0, 2617, 2618, 5, 277, 0, 0, 2618, 2619, 5, 266, 0, 0, 2619, 2621, 3, 352, 176, 0, 2620, 2606, 1, 0, 0, 0, 2620, 2608, 1, 0, 0, 0, 2620, 2612, 1, 0, 0, 0, 2620, 2615, 1, 0, 0, 0, 2621, 351, 1, 0, 0, 0, 2622, 2623, 7, 26, 0, 0, 2623, 353, 1, 0, 0, 0, 2624, 2625, 7, 27, 0, 0, 2625, 355, 1, 0, 0, 0, 2626, 2627, 6, 178, -1, 0, 2627, 2628, 5, 8, 0, 0, 2628, 2629, 5, 251, 0, 0, 2629, 2630, 3, 356, 178, 0, 2630, 2631, 5, 253, 0, 0, 2631, 2672, 1, 0, 0, 0, 2632, 2633, 5, 235, 0, 0, 2633, 2634, 5, 251, 0, 0, 2634, 2635, 3, 356, 178, 0, 2635, 2636, 5, 263, 0, 0, 2636, 2637, 3, 356, 178, 0, 2637, 2638, 5, 253, 0, 0, 2638, 2672, 1, 0, 0, 0, 2639, 2640, 5, 240, 0, 0, 2640, 2641, 5, 251, 0, 0, 2641, 2642, 3, 390, 195, 0, 2642, 2649, 3, 356, 178, 0, 2643, 2644, 5, 263, 0, 0, 2644, 2645, 3, 390, 195, 0, 2645, 2646, 3, 356, 178, 0, 2646, 2648, 1, 0, 0, 0, 2647, 2643, 1, 0, 0, 0, 2648, 2651, 1, 0, 0, 0, 2649, 2647, 1, 0, 0, 0, 2649, 2650, 1, 0, 0, 0, 2650, 2652, 1, 0, 0, 0, 2651, 2649, 1, 0, 0, 0, 2652, 2653, 5, 253, 0, 0, 2653, 2672, 1, 0, 0, 0, 2654, 2657, 3, 362, 181, 0, 2655, 2657, 3, 358, 179, 0, 2656, 2654, 1, 0, 0, 0, 2656, 2655, 1, 0, 0, 0, 2657, 2669, 1, 0, 0, 0, 2658, 2659, 5, 265, 0, 0, 2659, 2664, 3, 360, 180, 0, 2660, 2661, 5, 263, 0, 0, 2661, 2663, 3, 360, 180, 0, 2662, 2660, 1, 0, 0, 0, 2663, 2666, 1, 0, 0, 0, 2664, 2662, 1, 0, 0, 0, 2664, 2665, 1, 0, 0, 0, 2665, 2667, 1, 0, 0, 0, 2666, 2664, 1, 0, 0, 0, 2667, 2668, 5, 266, 0, 0, 2668, 2670, 1, 0, 0, 0, 2669, 2658, 1, 0, 0, 0, 2669, 2670, 1, 0, 0, 0, 2670, 2672, 1, 0, 0, 0, 2671, 2626, 1, 0, 0, 0, 2671, 2632, 1, 0, 0, 0, 2671, 2639, 1, 0, 0, 0, 2671, 2656, 1, 0, 0, 0, 2672, 2677, 1, 0, 0, 0, 2673, 2674, 10, 5, 0, 0, 2674, 2676, 5, 8, 0, 0, 2675, 2673, 1, 0, 0, 0, 2676, 2679, 1, 0, 0, 0, 2677, 2675, 1, 0, 0, 0, 2677, 2678, 1, 0, 0, 0, 2678, 357, 1, 0, 0, 0, 2679, 2677, 1, 0, 0, 0, 2680, 2681, 7, 28, 0, 0, 2681, 359, 1, 0, 0, 0, 2682, 2685, 5, 277, 0, 0, 2683, 2685, 3, 356, 178, 0, 2684, 2682, 1, 0, 0, 0, 2684, 2683, 1, 0, 0, 0, 2685, 361, 1, 0, 0, 0, 2686, 2691, 5, 284, 0, 0, 2687, 2691, 5, 285, 0, 0, 2688, 2691, 5, 286, 0, 0, 2689, 2691, 3, 390, 195, 0, 2690, 2686, 1, 0, 0, 0, 2690, 2687, 1, 0, 0, 0, 2690, 2688, 1, 0, 0, 0, 2690, 2689, 1, 0, 0, 0, 2691, 363, 1, 0, 0, 0, 2692, 2693, 5, 214, 0, 0, 2693, 2694, 3, 330, 165, 0, 2694, 2695, 5, 192, 0, 0, 2695, 2696, 3, 330, 165, 0, 2696, 365, 1, 0, 0, 0, 2697, 2698, 5, 74, 0, 0, 2698, 2699, 5, 265, 0, 0, 2699, 2700, 3, 280, 140, 0, 2700, 2701, 5, 266, 0, 0, 2701, 367, 1, 0, 0, 0, 2702, 2707, 3, 330, 165, 0, 2703, 2704, 5, 263, 0, 0, 2704, 2706, 3, 330, 165, 0, 2705, 2703, 1, 0, 0, 0, 2706, 2709, 1, 0, 0, 0, 2707, 2705, 1, 0, 0, 0, 2707, 2708, 1, 0, 0, 0, 2708, 369, 1, 0, 0, 0, 2709, 2707, 1, 0, 0, 0, 2710, 2711, 5, 143, 0, 0, 2711, 2715, 5, 265, 0, 0, 2712, 2713, 5, 145, 0, 0, 2713, 2714, 5, 26, 0, 0, 2714, 2716, 3, 368, 184, 0, 2715, 2712, 1, 0, 0, 0, 2715, 2716, 1, 0, 0, 0, 2716, 2727, 1, 0, 0, 0, 2717, 2718, 5, 139, 0, 0, 2718, 2719, 5, 26, 0, 0, 2719, 2724, 3, 274, 137, 0, 2720, 2721, 5, 263, 0, 0, 2721, 2723, 3, 274, 137, 0, 2722, 2720, 1, 0, 0, 0, 2723, 2726, 1, 0, 0, 0, 2724, 2722, 1, 0, 0, 0, 2724, 2725, 1, 0, 0, 0, 2725, 2728, 1, 0, 0, 0, 2726, 2724, 1, 0, 0, 0, 2727, 2717, 1, 0, 0, 0, 2727, 2728, 1, 0, 0, 0, 2728, 2730, 1, 0, 0, 0, 2729, 2731, 3, 372, 186, 0, 2730, 2729, 1, 0, 0, 0, 2730, 2731, 1, 0, 0, 0, 2731, 2732, 1, 0, 0, 0, 2732, 2733, 5, 266, 0, 0, 2733, 371, 1, 0, 0, 0, 2734, 2735, 5, 154, 0, 0, 2735, 2751, 3, 374, 187, 0, 2736, 2737, 5, 169, 0, 0, 2737, 2751, 3, 374, 187, 0, 2738, 2739, 5, 154, 0, 0, 2739, 2740, 5, 15, 0, 0, 2740, 2741, 3, 374, 187, 0, 2741, 2742, 5, 5, 0, 0, 2742, 2743, 3, 374, 187, 0, 2743, 2751, 1, 0, 0, 0, 2744, 2745, 5, 169, 0, 0, 2745, 2746, 5, 15, 0, 0, 2746, 2747, 3, 374, 187, 0, 2747, 2748, 5, 5, 0, 0, 2748, 2749, 3, 374, 187, 0, 2749, 2751, 1, 0, 0, 0, 2750, 2734, 1, 0, 0, 0, 2750, 2736, 1, 0, 0, 0, 2750, 2738, 1, 0, 0, 0, 2750, 2744, 1, 0, 0, 0, 2751, 373, 1, 0, 0, 0, 2752, 2753, 5, 199, 0, 0, 2753, 2762, 5, 149, 0, 0, 2754, 2755, 5, 199, 0, 0, 2755, 2762, 5, 77, 0, 0, 2756, 2757, 5, 39, 0, 0, 2757, 2762, 5, 168, 0, 0, 2758, 2759, 3, 330, 165, 0, 2759, 2760, 7, 29, 0, 0, 2760, 2762, 1, 0, 0, 0, 2761, 2752, 1, 0, 0, 0, 2761, 2754, 1, 0, 0, 0, 2761, 2756, 1, 0, 0, 0, 2761, 2758, 1, 0, 0, 0, 2762, 375, 1, 0, 0, 0, 2763, 2764, 3, 390, 195, 0, 2764, 2765, 5, 261, 0, 0, 2765, 2766, 3, 390, 195, 0, 2766, 2769, 1, 0, 0, 0, 2767, 2769, 3, 390, 195, 0, 2768, 2763, 1, 0, 0, 0, 2768, 2767, 1, 0, 0, 0, 2769, 377, 1, 0, 0, 0, 2770, 2775, 3, 376, 188, 0, 2771, 2772, 5, 263, 0, 0, 2772, 2774, 3, 376, 188, 0, 2773, 2771, 1, 0, 0, 0, 2774, 2777, 1, 0, 0, 0, 2775, 2773, 1, 0, 0, 0, 2775, 2776, 1, 0, 0, 0, 2776, 379, 1, 0, 0, 0, 2777, 2775, 1, 0, 0, 0, 2778, 2792, 5, 2, 0, 0, 2779, 2792, 5, 4, 0, 0, 2780, 2792, 5, 58, 0, 0, 2781, 2792, 5, 37, 0, 0, 2782, 2792, 5, 99, 0, 0, 2783, 2792, 5, 162, 0, 0, 2784, 2789, 5, 174, 0, 0, 2785, 2786, 5, 265, 0, 0, 2786, 2787, 3, 390, 195, 0, 2787, 2788, 5, 266, 0, 0, 2788, 2790, 1, 0, 0, 0, 2789, 2785, 1, 0, 0, 0, 2789, 2790, 1, 0, 0, 0, 2790, 2792, 1, 0, 0, 0, 2791, 2778, 1, 0, 0, 0, 2791, 2779, 1, 0, 0, 0, 2791, 2780, 1, 0, 0, 0, 2791, 2781, 1, 0, 0, 0, 2791, 2782, 1, 0, 0, 0, 2791, 2783, 1, 0, 0, 0, 2791, 2784, 1, 0, 0, 0, 2792, 381, 1, 0, 0, 0, 2793, 2794, 7, 30, 0, 0, 2794, 383, 1, 0, 0, 0, 2795, 2800, 3, 390, 195, 0, 2796, 2797, 5, 261, 0, 0, 2797, 2799, 3, 390, 195, 0, 2798, 2796, 1, 0, 0, 0, 2799, 2802, 1, 0, 0, 0, 2800, 2798, 1, 0, 0, 0, 2800, 2801, 1, 0, 0, 0, 2801, 385, 1, 0, 0, 0, 2802, 2800, 1, 0, 0, 0, 2803, 2809, 4, 193, 14, 0, 2804, 2805, 3, 390, 195, 0, 2805, 2806, 5, 261, 0, 0, 2806, 2807, 3, 192, 96, 0, 2807, 2810, 1, 0, 0, 0, 2808, 2810, 3, 192, 96, 0, 2809, 2804, 1, 0, 0, 0, 2809, 2808, 1, 0, 0, 0, 2810, 2820, 1, 0, 0, 0, 2811, 2816, 3, 390, 195, 0, 2812, 2813, 5, 261, 0, 0, 2813, 2815, 3, 390, 195, 0, 2814, 2812, 1, 0, 0, 0, 2815, 2818, 1, 0, 0, 0, 2816, 2814, 1, 0, 0, 0, 2816, 2817, 1, 0, 0, 0, 2817, 2820, 1, 0, 0, 0, 2818, 2816, 1, 0, 0, 0, 2819, 2803, 1, 0, 0, 0, 2819, 2811, 1, 0, 0, 0, 2820, 387, 1, 0, 0, 0, 2821, 2822, 5, 166, 0, 0, 2822, 2828, 3, 390, 195, 0, 2823, 2824, 5, 204, 0, 0, 2824, 2828, 3, 390, 195, 0, 2825, 2826, 5, 87, 0, 0, 2826, 2828, 3, 390, 195, 0, 2827, 2821, 1, 0, 0, 0, 2827, 2823, 1, 0, 0, 0, 2827, 2825, 1, 0, 0, 0, 2828, 389, 1, 0, 0, 0, 2829, 2835, 5, 280, 0, 0, 2830, 2835, 5, 274, 0, 0, 2831, 2835, 3, 396, 198, 0, 2832, 2835, 5, 283, 0, 0, 2833, 2835, 5, 281, 0, 0, 2834, 2829, 1, 0, 0, 0, 2834, 2830, 1, 0, 0, 0, 2834, 2831, 1, 0, 0, 0, 2834, 2832, 1, 0, 0, 0, 2834, 2833, 1, 0, 0, 0, 2835, 391, 1, 0, 0, 0, 2836, 2838, 5, 256, 0, 0, 2837, 2836, 1, 0, 0, 0, 2837, 2838, 1, 0, 0, 0, 2838, 2839, 1, 0, 0, 0, 2839, 2849, 5, 278, 0, 0, 2840, 2842, 5, 256, 0, 0, 2841, 2840, 1, 0, 0, 0, 2841, 2842, 1, 0, 0, 0, 2842, 2843, 1, 0, 0, 0, 2843, 2849, 5, 279, 0, 0, 2844, 2846, 5, 256, 0, 0, 2845, 2844, 1, 0, 0, 0, 2845, 2846, 1, 0, 0, 0, 2846, 2847, 1, 0, 0, 0, 2847, 2849, 5, 277, 0, 0, 2848, 2837, 1, 0, 0, 0, 2848, 2841, 1, 0, 0, 0, 2848, 2845, 1, 0, 0, 0, 2849, 393, 1, 0, 0, 0, 2850, 2851, 7, 31, 0, 0, 2851, 395, 1, 0, 0, 0, 2852, 2853, 7, 32, 0, 0, 2853, 397, 1, 0, 0, 0, 362, 401, 408, 432, 445, 449, 453, 462, 467, 471, 477, 479, 484, 488, 492, 499, 504, 510, 514, 523, 530, 534, 539, 541, 546, 549, 556, 560, 565, 569, 572, 576, 584, 588, 592, 600, 604, 613, 616, 619, 625, 632, 643, 648, 653, 658, 663, 672, 675, 678, 682, 708, 734, 743, 753, 756, 770, 788, 790, 799, 810, 819, 826, 830, 837, 843, 846, 851, 858, 872, 885, 890, 895, 901, 937, 940, 946, 949, 955, 961, 973, 975, 986, 994, 999, 1003, 1008, 1015, 1019, 1023, 1029, 1033, 1037, 1046, 1049, 1052, 1060, 1074, 1081, 1094, 1100, 1105, 1108, 1111, 1116, 1120, 1129, 1134, 1140, 1144, 1148, 1153, 1156, 1164, 1167, 1170, 1182, 1185, 1188, 1193, 1197, 1213, 1218, 1225, 1228, 1234, 1237, 1244, 1247, 1251, 1256, 1259, 1266, 1269, 1293, 1307, 1311, 1315, 1335, 1337, 1339, 1348, 1350, 1359, 1361, 1370, 1372, 1377, 1386, 1395, 1404, 1415, 1421, 1426, 1429, 1442, 1452, 1456, 1461, 1472, 1477, 1510, 1518, 1523, 1530, 1537, 1541, 1546, 1549, 1554, 1559, 1564, 1568, 1577, 1580, 1584, 1591, 1600, 1604, 1608, 1615, 1618, 1628, 1635, 1640, 1645, 1650, 1656, 1659, 1668, 1671, 1674, 1680, 1685, 1695, 1698, 1701, 1705, 1715, 1718, 1724, 1730, 1733, 1736, 1740, 1750, 1761, 1766, 1769, 1773, 1780, 1790, 1802, 1808, 1810, 1819, 1822, 1829, 1839, 1845, 1853, 1864, 1874, 1885, 1887, 1893, 1898, 1908, 1911, 1917, 1919, 1927, 1933, 1936, 1938, 1950, 1957, 1961, 1965, 1969, 1972, 1981, 1984, 1987, 1992, 1995, 2002, 2008, 2013, 2016, 2023, 2034, 2037, 2041, 2045, 2054, 2058, 2063, 2066, 2077, 2093, 2097, 2101, 2105, 2109, 2113, 2117, 2121, 2131, 2136, 2145, 2150, 2163, 2165, 2171, 2175, 2177, 2185, 2194, 2197, 2212, 2218, 2226, 2233, 2237, 2245, 2247, 2258, 2266, 2275, 2281, 2286, 2292, 2298, 2303, 2308, 2314, 2325, 2327, 2333, 2340, 2343, 2352, 2355, 2359, 2362, 2388, 2394, 2398, 2410, 2420, 2423, 2436, 2439, 2458, 2462, 2470, 2474, 2499, 2502, 2511, 2517, 2523, 2529, 2540, 2549, 2571, 2574, 2577, 2587, 2589, 2596, 2598, 2620, 2649, 2656, 2664, 2669, 2671, 2677, 2684, 2690, 2707, 2715, 2724, 2727, 2730, 2750, 2761, 2768, 2775, 2789, 2791, 2800, 2809, 2816, 2819, 2827, 2834, 2837, 2841, 2845, 2848] \ No newline at end of file diff --git a/src/lib/impala/ImpalaSqlParser.ts b/src/lib/impala/ImpalaSqlParser.ts index d30a3d4e8..bafe9f17a 100644 --- a/src/lib/impala/ImpalaSqlParser.ts +++ b/src/lib/impala/ImpalaSqlParser.ts @@ -9310,7 +9310,7 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new SelectItemContext(this.context, this.state); this.enterRule(localContext, 294, ImpalaSqlParser.RULE_selectItem); try { - this.state = 2061; + this.state = 2063; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 256, this.context) ) { case 1: @@ -9354,6 +9354,17 @@ export class ImpalaSqlParser extends SQLParserBase { this.tableAllColumns(); } break; + case 4: + this.enterOuterAlt(localContext, 4); + { + this.state = 2061; + if (!(this.shouldMatchEmpty())) { + throw this.createFailedPredicateException("this.shouldMatchEmpty()"); + } + this.state = 2062; + this.emptyColumn(); + } + break; } } catch (re) { @@ -9377,17 +9388,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2064; + this.state = 2066; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 2063; + this.state = 2065; this.match(ImpalaSqlParser.KW_AS); } } - this.state = 2066; + this.state = 2068; localContext._alias = this.identifier(); } } @@ -9411,7 +9422,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2068; + this.state = 2070; this.columnNamePath(); } } @@ -9435,7 +9446,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2070; + this.state = 2072; this.expression(); } } @@ -9460,19 +9471,19 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2075; + this.state = 2077; 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 = 2072; + this.state = 2074; this.qualifiedName(); - this.state = 2073; + this.state = 2075; this.match(ImpalaSqlParser.DOT); } } - this.state = 2077; + this.state = 2079; this.match(ImpalaSqlParser.ASTERISK); } } @@ -9513,11 +9524,11 @@ export class ImpalaSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 2080; + this.state = 2082; this.sampledRelation(); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2095; + this.state = 2097; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 260, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -9531,20 +9542,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 = 2082; + this.state = 2084; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2091; + this.state = 2093; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_CROSS: { - this.state = 2083; + this.state = 2085; this.match(ImpalaSqlParser.KW_CROSS); - this.state = 2084; + this.state = 2086; this.match(ImpalaSqlParser.KW_JOIN); - this.state = 2085; + this.state = 2087; (localContext as JoinRelationContext)._right = this.sampledRelation(); } break; @@ -9554,13 +9565,13 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_LEFT: case ImpalaSqlParser.KW_RIGHT: { - this.state = 2086; + this.state = 2088; this.joinType(); - this.state = 2087; + this.state = 2089; this.match(ImpalaSqlParser.KW_JOIN); - this.state = 2088; + this.state = 2090; (localContext as JoinRelationContext)._rightRelation = this.relation(0); - this.state = 2089; + this.state = 2091; this.joinCriteria(); } break; @@ -9570,7 +9581,7 @@ export class ImpalaSqlParser extends SQLParserBase { } } } - this.state = 2097; + this.state = 2099; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 260, this.context); } @@ -9595,18 +9606,18 @@ export class ImpalaSqlParser extends SQLParserBase { this.enterRule(localContext, 306, ImpalaSqlParser.RULE_joinType); let _la: number; try { - this.state = 2129; + this.state = 2131; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 267, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2099; + this.state = 2101; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2098; + this.state = 2100; this.match(ImpalaSqlParser.KW_INNER); } } @@ -9616,14 +9627,14 @@ export class ImpalaSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2101; - this.match(ImpalaSqlParser.KW_LEFT); this.state = 2103; + this.match(ImpalaSqlParser.KW_LEFT); + this.state = 2105; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2102; + this.state = 2104; this.match(ImpalaSqlParser.KW_INNER); } } @@ -9633,14 +9644,14 @@ export class ImpalaSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2105; - this.match(ImpalaSqlParser.KW_RIGHT); this.state = 2107; + this.match(ImpalaSqlParser.KW_RIGHT); + this.state = 2109; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2106; + this.state = 2108; this.match(ImpalaSqlParser.KW_INNER); } } @@ -9650,14 +9661,14 @@ export class ImpalaSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2109; - this.match(ImpalaSqlParser.KW_LEFT); this.state = 2111; + this.match(ImpalaSqlParser.KW_LEFT); + this.state = 2113; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 141) { { - this.state = 2110; + this.state = 2112; this.match(ImpalaSqlParser.KW_OUTER); } } @@ -9667,14 +9678,14 @@ export class ImpalaSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2113; - this.match(ImpalaSqlParser.KW_RIGHT); this.state = 2115; + this.match(ImpalaSqlParser.KW_RIGHT); + this.state = 2117; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 141) { { - this.state = 2114; + this.state = 2116; this.match(ImpalaSqlParser.KW_OUTER); } } @@ -9684,14 +9695,14 @@ export class ImpalaSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2117; - this.match(ImpalaSqlParser.KW_FULL); this.state = 2119; + this.match(ImpalaSqlParser.KW_FULL); + this.state = 2121; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 141) { { - this.state = 2118; + this.state = 2120; this.match(ImpalaSqlParser.KW_OUTER); } } @@ -9701,36 +9712,36 @@ export class ImpalaSqlParser extends SQLParserBase { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2121; + this.state = 2123; this.match(ImpalaSqlParser.KW_LEFT); - this.state = 2122; + this.state = 2124; this.match(ImpalaSqlParser.KW_SEMI); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2123; + this.state = 2125; this.match(ImpalaSqlParser.KW_RIGHT); - this.state = 2124; + this.state = 2126; this.match(ImpalaSqlParser.KW_SEMI); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 2125; + this.state = 2127; this.match(ImpalaSqlParser.KW_LEFT); - this.state = 2126; + this.state = 2128; this.match(ImpalaSqlParser.KW_ANTI); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 2127; + this.state = 2129; this.match(ImpalaSqlParser.KW_RIGHT); - this.state = 2128; + this.state = 2130; this.match(ImpalaSqlParser.KW_ANTI); } break; @@ -9755,26 +9766,26 @@ export class ImpalaSqlParser extends SQLParserBase { this.enterRule(localContext, 308, ImpalaSqlParser.RULE_joinCriteria); let _la: number; try { - this.state = 2148; + this.state = 2150; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ON: this.enterOuterAlt(localContext, 1); { - this.state = 2131; + this.state = 2133; this.match(ImpalaSqlParser.KW_ON); - this.state = 2134; + this.state = 2136; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 268, this.context) ) { case 1: { - this.state = 2132; + this.state = 2134; this.booleanExpression(0); } break; case 2: { - this.state = 2133; + this.state = 2135; this.columnNameAllowEmpty(); } break; @@ -9784,29 +9795,29 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 2136; + this.state = 2138; this.match(ImpalaSqlParser.KW_USING); - this.state = 2137; + this.state = 2139; this.match(ImpalaSqlParser.LPAREN); - this.state = 2138; + this.state = 2140; this.identifier(); - this.state = 2143; + this.state = 2145; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2139; + this.state = 2141; this.match(ImpalaSqlParser.COMMA); - this.state = 2140; + this.state = 2142; this.identifier(); } } - this.state = 2145; + this.state = 2147; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2146; + this.state = 2148; this.match(ImpalaSqlParser.RPAREN); } break; @@ -9834,35 +9845,35 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2150; + this.state = 2152; this.aliasedRelation(); - this.state = 2163; + this.state = 2165; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 272, this.context) ) { case 1: { - this.state = 2151; + this.state = 2153; this.match(ImpalaSqlParser.KW_TABLESAMPLE); - this.state = 2152; + this.state = 2154; this.sampleType(); - this.state = 2153; + this.state = 2155; this.match(ImpalaSqlParser.LPAREN); - this.state = 2154; + this.state = 2156; localContext._percentage = this.expression(); - this.state = 2155; + this.state = 2157; this.match(ImpalaSqlParser.RPAREN); - this.state = 2161; + this.state = 2163; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 271, this.context) ) { case 1: { - this.state = 2156; + this.state = 2158; this.match(ImpalaSqlParser.KW_REPEATABLE); - this.state = 2157; + this.state = 2159; this.match(ImpalaSqlParser.LPAREN); - this.state = 2158; + this.state = 2160; localContext._seed = this.expression(); - this.state = 2159; + this.state = 2161; this.match(ImpalaSqlParser.RPAREN); } break; @@ -9893,7 +9904,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2165; + this.state = 2167; _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 185)) { this.errorHandler.recoverInline(this); @@ -9925,31 +9936,31 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2167; + this.state = 2169; this.relationPrimary(); - this.state = 2175; + this.state = 2177; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 275, this.context) ) { case 1: { - this.state = 2169; + this.state = 2171; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 2168; + this.state = 2170; this.match(ImpalaSqlParser.KW_AS); } } - this.state = 2171; - localContext._alias = this.identifier(); this.state = 2173; + localContext._alias = this.identifier(); + this.state = 2175; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 274, this.context) ) { case 1: { - this.state = 2172; + this.state = 2174; this.columnAliases(); } break; @@ -9980,27 +9991,27 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2177; + this.state = 2179; this.match(ImpalaSqlParser.LPAREN); - this.state = 2178; + this.state = 2180; this.columnNamePath(); - this.state = 2183; + this.state = 2185; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2179; + this.state = 2181; this.match(ImpalaSqlParser.COMMA); - this.state = 2180; + this.state = 2182; this.columnNamePath(); } } - this.state = 2185; + this.state = 2187; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2186; + this.state = 2188; this.match(ImpalaSqlParser.RPAREN); } } @@ -10022,34 +10033,34 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new RelationPrimaryContext(this.context, this.state); this.enterRule(localContext, 318, ImpalaSqlParser.RULE_relationPrimary); try { - this.state = 2192; + this.state = 2194; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 277, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2188; + this.state = 2190; this.tableOrViewPath(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2189; + this.state = 2191; this.atomSubQueryTableSource(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2190; + this.state = 2192; this.unnest(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2191; + this.state = 2193; this.parenthesizedRelation(); } break; @@ -10076,17 +10087,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2195; + this.state = 2197; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 113) { { - this.state = 2194; + this.state = 2196; this.match(ImpalaSqlParser.KW_LATERAL); } } - this.state = 2197; + this.state = 2199; this.subQueryRelation(); } } @@ -10110,11 +10121,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2199; + this.state = 2201; this.match(ImpalaSqlParser.LPAREN); - this.state = 2200; + this.state = 2202; this.queryStatement(); - this.state = 2201; + this.state = 2203; this.match(ImpalaSqlParser.RPAREN); } } @@ -10139,38 +10150,38 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2203; + this.state = 2205; this.match(ImpalaSqlParser.KW_UNNEST); - this.state = 2204; + this.state = 2206; this.match(ImpalaSqlParser.LPAREN); - this.state = 2205; + this.state = 2207; this.expression(); - this.state = 2210; + this.state = 2212; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2206; + this.state = 2208; this.match(ImpalaSqlParser.COMMA); - this.state = 2207; + this.state = 2209; this.expression(); } } - this.state = 2212; + this.state = 2214; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2213; + this.state = 2215; this.match(ImpalaSqlParser.RPAREN); - this.state = 2216; + this.state = 2218; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 280, this.context) ) { case 1: { - this.state = 2214; + this.state = 2216; this.match(ImpalaSqlParser.KW_WITH); - this.state = 2215; + this.state = 2217; this.match(ImpalaSqlParser.KW_ORDINALITY); } break; @@ -10197,11 +10208,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2218; + this.state = 2220; this.match(ImpalaSqlParser.LPAREN); - this.state = 2219; + this.state = 2221; this.relation(0); - this.state = 2220; + this.state = 2222; this.match(ImpalaSqlParser.RPAREN); } } @@ -10223,20 +10234,20 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new ColumnItemContext(this.context, this.state); this.enterRule(localContext, 328, ImpalaSqlParser.RULE_columnItem); try { - this.state = 2224; + this.state = 2226; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 281, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2222; + this.state = 2224; this.columnNamePath(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2223; + this.state = 2225; this.expression(); } break; @@ -10262,7 +10273,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2226; + this.state = 2228; this.booleanExpression(0); } } @@ -10298,7 +10309,7 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2235; + this.state = 2237; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ARRAY: @@ -10374,14 +10385,14 @@ export class ImpalaSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 2229; - (localContext as PredicatedContext)._valueExpression = this.valueExpression(0); this.state = 2231; + (localContext as PredicatedContext)._valueExpression = this.valueExpression(0); + this.state = 2233; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 282, this.context) ) { case 1: { - this.state = 2230; + this.state = 2232; this.predicate((localContext as PredicatedContext)._valueExpression); } break; @@ -10393,9 +10404,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new LogicalNotContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2233; + this.state = 2235; this.match(ImpalaSqlParser.KW_NOT); - this.state = 2234; + this.state = 2236; this.booleanExpression(3); } break; @@ -10403,7 +10414,7 @@ export class ImpalaSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2245; + this.state = 2247; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 285, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -10413,7 +10424,7 @@ export class ImpalaSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 2243; + this.state = 2245; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 284, this.context) ) { case 1: @@ -10421,13 +10432,13 @@ 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 = 2237; + this.state = 2239; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2238; + this.state = 2240; (localContext as LogicalBinaryContext)._operator = this.match(ImpalaSqlParser.KW_AND); - this.state = 2239; + this.state = 2241; (localContext as LogicalBinaryContext)._right = this.booleanExpression(3); } break; @@ -10436,20 +10447,20 @@ 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 = 2240; + this.state = 2242; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 2241; + this.state = 2243; (localContext as LogicalBinaryContext)._operator = this.match(ImpalaSqlParser.KW_OR); - this.state = 2242; + this.state = 2244; (localContext as LogicalBinaryContext)._right = this.booleanExpression(2); } break; } } } - this.state = 2247; + this.state = 2249; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 285, this.context); } @@ -10474,16 +10485,16 @@ export class ImpalaSqlParser extends SQLParserBase { this.enterRule(localContext, 334, ImpalaSqlParser.RULE_predicate); let _la: number; try { - this.state = 2306; + this.state = 2308; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 294, this.context) ) { case 1: localContext = new ComparisonContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2248; + this.state = 2250; this.comparisonOperator(); - this.state = 2249; + this.state = 2251; (localContext as ComparisonContext)._right = this.valueExpression(0); } break; @@ -10491,11 +10502,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new QuantifiedComparisonContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2251; + this.state = 2253; this.comparisonOperator(); - this.state = 2252; + this.state = 2254; this.comparisonQuantifier(); - this.state = 2253; + this.state = 2255; this.subQueryRelation(); } break; @@ -10503,23 +10514,23 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new BetweenContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2256; + this.state = 2258; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 2255; + this.state = 2257; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2258; + this.state = 2260; this.match(ImpalaSqlParser.KW_BETWEEN); - this.state = 2259; + this.state = 2261; (localContext as BetweenContext)._lower = this.valueExpression(0); - this.state = 2260; + this.state = 2262; this.match(ImpalaSqlParser.KW_AND); - this.state = 2261; + this.state = 2263; (localContext as BetweenContext)._upper = this.valueExpression(0); } break; @@ -10527,39 +10538,39 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new InListContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2264; + this.state = 2266; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 2263; + this.state = 2265; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2266; + this.state = 2268; this.match(ImpalaSqlParser.KW_IN); - this.state = 2267; + this.state = 2269; this.match(ImpalaSqlParser.LPAREN); - this.state = 2268; + this.state = 2270; this.expression(); - this.state = 2273; + this.state = 2275; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2269; + this.state = 2271; this.match(ImpalaSqlParser.COMMA); - this.state = 2270; + this.state = 2272; this.expression(); } } - this.state = 2275; + this.state = 2277; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2276; + this.state = 2278; this.match(ImpalaSqlParser.RPAREN); } break; @@ -10567,19 +10578,19 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new InSubqueryContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2279; + this.state = 2281; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 2278; + this.state = 2280; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2281; + this.state = 2283; this.match(ImpalaSqlParser.KW_IN); - this.state = 2282; + this.state = 2284; this.subQueryRelation(); } break; @@ -10587,17 +10598,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new LikeContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 2284; + this.state = 2286; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 2283; + this.state = 2285; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2286; + this.state = 2288; _la = this.tokenStream.LA(1); if(!(_la === 106 || _la === 115 || _la === 164)) { this.errorHandler.recoverInline(this); @@ -10606,16 +10617,16 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2287; + this.state = 2289; (localContext as LikeContext)._pattern = this.valueExpression(0); - this.state = 2290; + this.state = 2292; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 291, this.context) ) { case 1: { - this.state = 2288; + this.state = 2290; this.match(ImpalaSqlParser.KW_ESCAPE); - this.state = 2289; + this.state = 2291; (localContext as LikeContext)._escape = this.valueExpression(0); } break; @@ -10626,7 +10637,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new REGEXPContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 2292; + this.state = 2294; _la = this.tokenStream.LA(1); if(!(_la === 105 || _la === 163)) { this.errorHandler.recoverInline(this); @@ -10635,7 +10646,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2293; + this.state = 2295; (localContext as REGEXPContext)._pattern = this.valueExpression(0); } break; @@ -10643,19 +10654,19 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new NullOrUnKnownOrBooleanPredicateContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 2294; - this.match(ImpalaSqlParser.KW_IS); this.state = 2296; + this.match(ImpalaSqlParser.KW_IS); + this.state = 2298; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 2295; + this.state = 2297; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2298; + this.state = 2300; _la = this.tokenStream.LA(1); if(!(_la === 70 || _la === 133 || _la === 194 || _la === 208)) { this.errorHandler.recoverInline(this); @@ -10670,23 +10681,23 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new DistinctFromContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 2299; - this.match(ImpalaSqlParser.KW_IS); this.state = 2301; + this.match(ImpalaSqlParser.KW_IS); + this.state = 2303; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 132) { { - this.state = 2300; + this.state = 2302; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2303; + this.state = 2305; this.match(ImpalaSqlParser.KW_DISTINCT); - this.state = 2304; + this.state = 2306; this.match(ImpalaSqlParser.KW_FROM); - this.state = 2305; + this.state = 2307; (localContext as DistinctFromContext)._right = this.valueExpression(0); } break; @@ -10725,7 +10736,7 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2312; + this.state = 2314; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 295, this.context) ) { case 1: @@ -10734,7 +10745,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 2309; + this.state = 2311; this.primaryExpression(0); } break; @@ -10743,7 +10754,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ArithmeticUnaryContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2310; + this.state = 2312; (localContext as ArithmeticUnaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 255 || _la === 256)) { @@ -10753,13 +10764,13 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2311; + this.state = 2313; this.valueExpression(4); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2325; + this.state = 2327; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 297, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -10769,7 +10780,7 @@ export class ImpalaSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 2323; + this.state = 2325; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 296, this.context) ) { case 1: @@ -10777,11 +10788,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 = 2314; + this.state = 2316; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 2315; + this.state = 2317; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 257)) & ~0x1F) === 0 && ((1 << (_la - 257)) & 7) !== 0))) { @@ -10791,7 +10802,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2316; + this.state = 2318; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(4); } break; @@ -10800,11 +10811,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 = 2317; + this.state = 2319; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2318; + this.state = 2320; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 255 || _la === 256)) { @@ -10814,7 +10825,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2319; + this.state = 2321; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(3); } break; @@ -10823,20 +10834,20 @@ 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 = 2320; + this.state = 2322; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 2321; + this.state = 2323; this.match(ImpalaSqlParser.CONCAT); - this.state = 2322; + this.state = 2324; (localContext as ConcatenationContext)._right = this.valueExpression(2); } break; } } } - this.state = 2327; + this.state = 2329; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 297, this.context); } @@ -10863,94 +10874,94 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2328; + this.state = 2330; this.functionNamePath(); - this.state = 2329; + this.state = 2331; this.match(ImpalaSqlParser.LPAREN); - this.state = 2341; + this.state = 2343; 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 = 2331; + this.state = 2333; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2 || _la === 57) { { - this.state = 2330; + this.state = 2332; this.setQuantifier(); } } - this.state = 2333; + this.state = 2335; this.expression(); - this.state = 2338; + this.state = 2340; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2334; + this.state = 2336; this.match(ImpalaSqlParser.COMMA); - this.state = 2335; + this.state = 2337; this.expression(); } } - this.state = 2340; + this.state = 2342; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2353; + this.state = 2355; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 139) { { - this.state = 2343; + this.state = 2345; this.match(ImpalaSqlParser.KW_ORDER); - this.state = 2344; + this.state = 2346; this.match(ImpalaSqlParser.KW_BY); - this.state = 2345; + this.state = 2347; this.sortItem(); - this.state = 2350; + this.state = 2352; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2346; + this.state = 2348; this.match(ImpalaSqlParser.COMMA); - this.state = 2347; + this.state = 2349; this.sortItem(); } } - this.state = 2352; + this.state = 2354; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2355; - this.match(ImpalaSqlParser.RPAREN); this.state = 2357; + this.match(ImpalaSqlParser.RPAREN); + this.state = 2359; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 303, this.context) ) { case 1: { - this.state = 2356; + this.state = 2358; this.filter(); } break; } - this.state = 2360; + this.state = 2362; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 304, this.context) ) { case 1: { - this.state = 2359; + this.state = 2361; this.over(); } break; @@ -10990,7 +11001,7 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2575; + this.state = 2577; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 327, this.context) ) { case 1: @@ -10999,7 +11010,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 2363; + this.state = 2365; this.match(ImpalaSqlParser.KW_NULL); } break; @@ -11008,7 +11019,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new IntervalLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2364; + this.state = 2366; this.interval(); } break; @@ -11017,9 +11028,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new TypeConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2365; + this.state = 2367; this.identifier(); - this.state = 2366; + this.state = 2368; this.stringLiteral(); } break; @@ -11028,9 +11039,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new TypeConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2368; + this.state = 2370; this.match(ImpalaSqlParser.DOUBLE_PRECISION); - this.state = 2369; + this.state = 2371; this.stringLiteral(); } break; @@ -11039,7 +11050,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new NumericLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2370; + this.state = 2372; this.number_(); } break; @@ -11048,7 +11059,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new BooleanLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2371; + this.state = 2373; this.booleanValue(); } break; @@ -11057,7 +11068,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new StringLiteralValuesContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2372; + this.state = 2374; this.stringLiteral(); } break; @@ -11066,7 +11077,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new BinaryLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2373; + this.state = 2375; this.match(ImpalaSqlParser.BINARY_LITERAL); } break; @@ -11075,7 +11086,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ParameterContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2374; + this.state = 2376; this.match(ImpalaSqlParser.QUESTION); } break; @@ -11084,17 +11095,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new PositionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2375; - this.match(ImpalaSqlParser.KW_POSITION); - this.state = 2376; - this.match(ImpalaSqlParser.LPAREN); this.state = 2377; - this.valueExpression(0); + this.match(ImpalaSqlParser.KW_POSITION); this.state = 2378; - this.match(ImpalaSqlParser.KW_IN); + this.match(ImpalaSqlParser.LPAREN); this.state = 2379; this.valueExpression(0); this.state = 2380; + this.match(ImpalaSqlParser.KW_IN); + this.state = 2381; + this.valueExpression(0); + this.state = 2382; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11103,41 +11114,41 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new RowConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2382; + this.state = 2384; this.match(ImpalaSqlParser.LPAREN); - this.state = 2383; + this.state = 2385; this.expression(); - this.state = 2386; + this.state = 2388; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 2384; + this.state = 2386; this.match(ImpalaSqlParser.KW_AS); - this.state = 2385; + this.state = 2387; this.type_(0); } } - this.state = 2396; + this.state = 2398; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 307, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 2388; + this.state = 2390; this.match(ImpalaSqlParser.COMMA); - this.state = 2389; + this.state = 2391; this.expression(); - this.state = 2392; + this.state = 2394; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 2390; + this.state = 2392; this.match(ImpalaSqlParser.KW_AS); - this.state = 2391; + this.state = 2393; this.type_(0); } } @@ -11145,11 +11156,11 @@ export class ImpalaSqlParser extends SQLParserBase { } } } - this.state = 2398; + this.state = 2400; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 307, this.context); } - this.state = 2399; + this.state = 2401; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11158,29 +11169,29 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new RowConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2401; + this.state = 2403; this.match(ImpalaSqlParser.KW_ROW); - this.state = 2402; + this.state = 2404; this.match(ImpalaSqlParser.LPAREN); - this.state = 2403; + this.state = 2405; this.expression(); - this.state = 2408; + this.state = 2410; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2404; + this.state = 2406; this.match(ImpalaSqlParser.COMMA); - this.state = 2405; + this.state = 2407; this.expression(); } } - this.state = 2410; + this.state = 2412; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2411; + this.state = 2413; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11189,30 +11200,30 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new FunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2413; + this.state = 2415; this.functionNamePath(); - this.state = 2414; + this.state = 2416; this.match(ImpalaSqlParser.LPAREN); - this.state = 2415; + this.state = 2417; this.match(ImpalaSqlParser.ASTERISK); - this.state = 2416; - this.match(ImpalaSqlParser.RPAREN); this.state = 2418; + this.match(ImpalaSqlParser.RPAREN); + this.state = 2420; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 309, this.context) ) { case 1: { - this.state = 2417; + this.state = 2419; this.filter(); } break; } - this.state = 2421; + this.state = 2423; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 310, this.context) ) { case 1: { - this.state = 2420; + this.state = 2422; this.over(); } break; @@ -11224,7 +11235,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new FunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2423; + this.state = 2425; this.functionCallExpression(); } break; @@ -11233,11 +11244,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new LambdaContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2424; + this.state = 2426; this.identifier(); - this.state = 2425; + this.state = 2427; this.match(ImpalaSqlParser.RIGHT_ARROW); - this.state = 2426; + this.state = 2428; this.expression(); } break; @@ -11246,39 +11257,39 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new LambdaContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2428; + this.state = 2430; this.match(ImpalaSqlParser.LPAREN); - this.state = 2437; + this.state = 2439; 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 = 2429; + this.state = 2431; this.identifier(); - this.state = 2434; + this.state = 2436; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2430; + this.state = 2432; this.match(ImpalaSqlParser.COMMA); - this.state = 2431; + this.state = 2433; this.identifier(); } } - this.state = 2436; + this.state = 2438; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2439; + this.state = 2441; this.match(ImpalaSqlParser.RPAREN); - this.state = 2440; + this.state = 2442; this.match(ImpalaSqlParser.RIGHT_ARROW); - this.state = 2441; + this.state = 2443; this.expression(); } break; @@ -11287,11 +11298,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SubqueryExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2442; + this.state = 2444; this.match(ImpalaSqlParser.LPAREN); - this.state = 2443; + this.state = 2445; this.queryStatement(); - this.state = 2444; + this.state = 2446; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11300,13 +11311,13 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ExistsContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2446; + this.state = 2448; this.match(ImpalaSqlParser.KW_EXISTS); - this.state = 2447; + this.state = 2449; this.match(ImpalaSqlParser.LPAREN); - this.state = 2448; + this.state = 2450; this.queryStatement(); - this.state = 2449; + this.state = 2451; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11315,37 +11326,37 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SimpleCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2451; + this.state = 2453; this.match(ImpalaSqlParser.KW_CASE); - this.state = 2452; - this.valueExpression(0); this.state = 2454; + this.valueExpression(0); + this.state = 2456; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2453; + this.state = 2455; this.whenClause(); } } - this.state = 2456; + this.state = 2458; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 214); - this.state = 2460; + this.state = 2462; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 2458; + this.state = 2460; this.match(ImpalaSqlParser.KW_ELSE); - this.state = 2459; + this.state = 2461; (localContext as SimpleCaseContext)._elseExpression = this.expression(); } } - this.state = 2462; + this.state = 2464; this.match(ImpalaSqlParser.KW_END); } break; @@ -11354,35 +11365,35 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SearchedCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2464; - this.match(ImpalaSqlParser.KW_CASE); this.state = 2466; + this.match(ImpalaSqlParser.KW_CASE); + this.state = 2468; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2465; + this.state = 2467; this.whenClause(); } } - this.state = 2468; + this.state = 2470; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 214); - this.state = 2472; + this.state = 2474; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 2470; + this.state = 2472; this.match(ImpalaSqlParser.KW_ELSE); - this.state = 2471; + this.state = 2473; (localContext as SearchedCaseContext)._elseExpression = this.expression(); } } - this.state = 2474; + this.state = 2476; this.match(ImpalaSqlParser.KW_END); } break; @@ -11391,17 +11402,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new CastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2476; + this.state = 2478; this.match(ImpalaSqlParser.KW_CAST); - this.state = 2477; + this.state = 2479; this.match(ImpalaSqlParser.LPAREN); - this.state = 2478; + this.state = 2480; this.expression(); - this.state = 2479; + this.state = 2481; this.match(ImpalaSqlParser.KW_AS); - this.state = 2480; + this.state = 2482; this.type_(0); - this.state = 2481; + this.state = 2483; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11410,17 +11421,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new CastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2483; + this.state = 2485; this.match(ImpalaSqlParser.KW_TRY_CAST); - this.state = 2484; + this.state = 2486; this.match(ImpalaSqlParser.LPAREN); - this.state = 2485; + this.state = 2487; this.expression(); - this.state = 2486; + this.state = 2488; this.match(ImpalaSqlParser.KW_AS); - this.state = 2487; + this.state = 2489; this.type_(0); - this.state = 2488; + this.state = 2490; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11429,37 +11440,37 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ArrayConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2490; + this.state = 2492; this.match(ImpalaSqlParser.KW_ARRAY); - this.state = 2491; + this.state = 2493; this.match(ImpalaSqlParser.LSQUARE); - this.state = 2500; + this.state = 2502; 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 = 2492; + this.state = 2494; this.expression(); - this.state = 2497; + this.state = 2499; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2493; + this.state = 2495; this.match(ImpalaSqlParser.COMMA); - this.state = 2494; + this.state = 2496; this.expression(); } } - this.state = 2499; + this.state = 2501; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2502; + this.state = 2504; this.match(ImpalaSqlParser.RSQUARE); } break; @@ -11468,7 +11479,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ColumnReferenceContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2503; + this.state = 2505; this.columnName(); } break; @@ -11477,7 +11488,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SpecialDateTimeFunctionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2504; + this.state = 2506; (localContext as SpecialDateTimeFunctionContext)._name = this.match(ImpalaSqlParser.KW_CURRENT_DATE); } break; @@ -11486,18 +11497,18 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SpecialDateTimeFunctionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2505; + this.state = 2507; (localContext as SpecialDateTimeFunctionContext)._name = this.match(ImpalaSqlParser.KW_CURRENT_TIME); - this.state = 2509; + this.state = 2511; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 319, this.context) ) { case 1: { - this.state = 2506; + this.state = 2508; this.match(ImpalaSqlParser.LPAREN); - this.state = 2507; + this.state = 2509; (localContext as SpecialDateTimeFunctionContext)._precision = this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2508; + this.state = 2510; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11509,18 +11520,18 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SpecialDateTimeFunctionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2511; + this.state = 2513; (localContext as SpecialDateTimeFunctionContext)._name = this.match(ImpalaSqlParser.KW_CURRENT_TIMESTAMP); - this.state = 2515; + this.state = 2517; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 320, this.context) ) { case 1: { - this.state = 2512; + this.state = 2514; this.match(ImpalaSqlParser.LPAREN); - this.state = 2513; + this.state = 2515; (localContext as SpecialDateTimeFunctionContext)._precision = this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2514; + this.state = 2516; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11532,18 +11543,18 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SpecialDateTimeFunctionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2517; + this.state = 2519; (localContext as SpecialDateTimeFunctionContext)._name = this.match(ImpalaSqlParser.KW_LOCALTIME); - this.state = 2521; + this.state = 2523; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 321, this.context) ) { case 1: { - this.state = 2518; + this.state = 2520; this.match(ImpalaSqlParser.LPAREN); - this.state = 2519; + this.state = 2521; (localContext as SpecialDateTimeFunctionContext)._precision = this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2520; + this.state = 2522; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11555,18 +11566,18 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SpecialDateTimeFunctionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2523; + this.state = 2525; (localContext as SpecialDateTimeFunctionContext)._name = this.match(ImpalaSqlParser.KW_LOCALTIMESTAMP); - this.state = 2527; + this.state = 2529; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 322, this.context) ) { case 1: { - this.state = 2524; + this.state = 2526; this.match(ImpalaSqlParser.LPAREN); - this.state = 2525; + this.state = 2527; (localContext as SpecialDateTimeFunctionContext)._precision = this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2526; + this.state = 2528; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11578,7 +11589,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new CurrentUserContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2529; + this.state = 2531; (localContext as CurrentUserContext)._name = this.match(ImpalaSqlParser.KW_CURRENT_USER); } break; @@ -11587,7 +11598,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new CurrentPathContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2530; + this.state = 2532; (localContext as CurrentPathContext)._name = this.match(ImpalaSqlParser.KW_CURRENT_PATH); } break; @@ -11596,29 +11607,29 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SubstringContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2531; + this.state = 2533; this.match(ImpalaSqlParser.KW_SUBSTRING); - this.state = 2532; + this.state = 2534; this.match(ImpalaSqlParser.LPAREN); - this.state = 2533; + this.state = 2535; this.valueExpression(0); - this.state = 2534; + this.state = 2536; this.match(ImpalaSqlParser.KW_FROM); - this.state = 2535; + this.state = 2537; this.valueExpression(0); - this.state = 2538; + this.state = 2540; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 2536; + this.state = 2538; this.match(ImpalaSqlParser.KW_FOR); - this.state = 2537; + this.state = 2539; this.valueExpression(0); } } - this.state = 2540; + this.state = 2542; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11627,25 +11638,25 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new NormalizeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2542; + this.state = 2544; this.match(ImpalaSqlParser.KW_NORMALIZE); - this.state = 2543; + this.state = 2545; this.match(ImpalaSqlParser.LPAREN); - this.state = 2544; + this.state = 2546; this.valueExpression(0); - this.state = 2547; + this.state = 2549; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 263) { { - this.state = 2545; + this.state = 2547; this.match(ImpalaSqlParser.COMMA); - this.state = 2546; + this.state = 2548; this.normalForm(); } } - this.state = 2549; + this.state = 2551; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11654,17 +11665,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ExtractContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2551; + this.state = 2553; this.match(ImpalaSqlParser.KW_EXTRACT); - this.state = 2552; + this.state = 2554; this.match(ImpalaSqlParser.LPAREN); - this.state = 2553; + this.state = 2555; this.identifier(); - this.state = 2554; + this.state = 2556; this.match(ImpalaSqlParser.KW_FROM); - this.state = 2555; + this.state = 2557; this.valueExpression(0); - this.state = 2556; + this.state = 2558; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11673,11 +11684,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ParenthesizedExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2558; + this.state = 2560; this.match(ImpalaSqlParser.LPAREN); - this.state = 2559; + this.state = 2561; this.expression(); - this.state = 2560; + this.state = 2562; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11686,43 +11697,43 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new GroupingOperationContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2562; + this.state = 2564; this.match(ImpalaSqlParser.KW_GROUPING); - this.state = 2563; + this.state = 2565; this.match(ImpalaSqlParser.LPAREN); - this.state = 2572; + this.state = 2574; 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 = 2564; + this.state = 2566; this.qualifiedName(); - this.state = 2569; + this.state = 2571; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2565; + this.state = 2567; this.match(ImpalaSqlParser.COMMA); - this.state = 2566; + this.state = 2568; this.qualifiedName(); } } - this.state = 2571; + this.state = 2573; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2574; + this.state = 2576; this.match(ImpalaSqlParser.RPAREN); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2587; + this.state = 2589; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 329, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -11732,7 +11743,7 @@ export class ImpalaSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 2585; + this.state = 2587; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 328, this.context) ) { case 1: @@ -11740,15 +11751,15 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SubscriptContext(new PrimaryExpressionContext(parentContext, parentState)); (localContext as SubscriptContext)._value = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_primaryExpression); - this.state = 2577; + this.state = 2579; if (!(this.precpred(this.context, 15))) { throw this.createFailedPredicateException("this.precpred(this.context, 15)"); } - this.state = 2578; + this.state = 2580; this.match(ImpalaSqlParser.LSQUARE); - this.state = 2579; + this.state = 2581; (localContext as SubscriptContext)._index = this.valueExpression(0); - this.state = 2580; + this.state = 2582; this.match(ImpalaSqlParser.RSQUARE); } break; @@ -11757,20 +11768,20 @@ 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 = 2582; + this.state = 2584; if (!(this.precpred(this.context, 13))) { throw this.createFailedPredicateException("this.precpred(this.context, 13)"); } - this.state = 2583; + this.state = 2585; this.match(ImpalaSqlParser.DOT); - this.state = 2584; + this.state = 2586; (localContext as DereferenceContext)._fieldName = this.identifier(); } break; } } } - this.state = 2589; + this.state = 2591; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 329, this.context); } @@ -11794,14 +11805,14 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new StringLiteralContext(this.context, this.state); this.enterRule(localContext, 342, ImpalaSqlParser.RULE_stringLiteral); try { - this.state = 2596; + this.state = 2598; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.STRING: localContext = new BasicStringLiteralContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2590; + this.state = 2592; this.match(ImpalaSqlParser.STRING); } break; @@ -11809,16 +11820,16 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new UnicodeStringLiteralContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2591; + this.state = 2593; this.match(ImpalaSqlParser.UNICODE_STRING); - this.state = 2594; + this.state = 2596; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 330, this.context) ) { case 1: { - this.state = 2592; + this.state = 2594; this.match(ImpalaSqlParser.KW_UESCAPE); - this.state = 2593; + this.state = 2595; this.match(ImpalaSqlParser.STRING); } break; @@ -11850,7 +11861,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2598; + this.state = 2600; _la = this.tokenStream.LA(1); if(!(((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 63) !== 0))) { this.errorHandler.recoverInline(this); @@ -11882,7 +11893,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2600; + this.state = 2602; _la = this.tokenStream.LA(1); if(!(_la === 2 || _la === 6 || _la === 181)) { this.errorHandler.recoverInline(this); @@ -11914,7 +11925,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2602; + this.state = 2604; _la = this.tokenStream.LA(1); if(!(_la === 70 || _la === 194)) { this.errorHandler.recoverInline(this); @@ -11943,54 +11954,54 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new IntervalContext(this.context, this.state); this.enterRule(localContext, 350, ImpalaSqlParser.RULE_interval); try { - this.state = 2618; + this.state = 2620; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 332, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2604; + this.state = 2606; this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2605; + this.state = 2607; this.intervalField(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2606; + this.state = 2608; this.match(ImpalaSqlParser.LPAREN); - this.state = 2607; + this.state = 2609; this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2608; + this.state = 2610; this.match(ImpalaSqlParser.RPAREN); - this.state = 2609; + this.state = 2611; this.intervalField(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2610; + this.state = 2612; this.match(ImpalaSqlParser.KW_INTERVAL); - this.state = 2611; + this.state = 2613; this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2612; + this.state = 2614; this.intervalField(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2613; + this.state = 2615; this.match(ImpalaSqlParser.KW_INTERVAL); - this.state = 2614; + this.state = 2616; this.match(ImpalaSqlParser.LPAREN); - this.state = 2615; + this.state = 2617; this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2616; + this.state = 2618; this.match(ImpalaSqlParser.RPAREN); - this.state = 2617; + this.state = 2619; this.intervalField(); } break; @@ -12017,7 +12028,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2620; + this.state = 2622; _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); @@ -12049,7 +12060,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2622; + this.state = 2624; _la = this.tokenStream.LA(1); if(!(((((_la - 127)) & ~0x1F) === 0 && ((1 << (_la - 127)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -12093,113 +12104,113 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2669; + this.state = 2671; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 337, this.context) ) { case 1: { - this.state = 2625; + this.state = 2627; this.match(ImpalaSqlParser.KW_ARRAY); - this.state = 2626; + this.state = 2628; this.match(ImpalaSqlParser.LT); - this.state = 2627; + this.state = 2629; this.type_(0); - this.state = 2628; + this.state = 2630; this.match(ImpalaSqlParser.GT); } break; case 2: { - this.state = 2630; - this.match(ImpalaSqlParser.KW_MAP); - this.state = 2631; - this.match(ImpalaSqlParser.LT); this.state = 2632; - this.type_(0); + this.match(ImpalaSqlParser.KW_MAP); this.state = 2633; - this.match(ImpalaSqlParser.COMMA); + this.match(ImpalaSqlParser.LT); this.state = 2634; this.type_(0); this.state = 2635; + this.match(ImpalaSqlParser.COMMA); + this.state = 2636; + this.type_(0); + this.state = 2637; this.match(ImpalaSqlParser.GT); } break; case 3: { - this.state = 2637; + this.state = 2639; this.match(ImpalaSqlParser.KW_STRUCT); - this.state = 2638; + this.state = 2640; this.match(ImpalaSqlParser.LT); - this.state = 2639; + this.state = 2641; this.identifier(); - this.state = 2640; + this.state = 2642; this.type_(0); - this.state = 2647; + this.state = 2649; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2641; + this.state = 2643; this.match(ImpalaSqlParser.COMMA); - this.state = 2642; + this.state = 2644; this.identifier(); - this.state = 2643; + this.state = 2645; this.type_(0); } } - this.state = 2649; + this.state = 2651; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2650; + this.state = 2652; this.match(ImpalaSqlParser.GT); } break; case 4: { - this.state = 2654; + this.state = 2656; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 334, this.context) ) { case 1: { - this.state = 2652; + this.state = 2654; this.baseType(); } break; case 2: { - this.state = 2653; + this.state = 2655; this.dataType(); } break; } - this.state = 2667; + this.state = 2669; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 336, this.context) ) { case 1: { - this.state = 2656; + this.state = 2658; this.match(ImpalaSqlParser.LPAREN); - this.state = 2657; + this.state = 2659; this.typeParameter(); - this.state = 2662; + this.state = 2664; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2658; + this.state = 2660; this.match(ImpalaSqlParser.COMMA); - this.state = 2659; + this.state = 2661; this.typeParameter(); } } - this.state = 2664; + this.state = 2666; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2665; + this.state = 2667; this.match(ImpalaSqlParser.RPAREN); } break; @@ -12208,7 +12219,7 @@ export class ImpalaSqlParser extends SQLParserBase { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2675; + this.state = 2677; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 338, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -12221,16 +12232,16 @@ export class ImpalaSqlParser extends SQLParserBase { { localContext = new TypeContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_type); - this.state = 2671; + this.state = 2673; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 2672; + this.state = 2674; this.match(ImpalaSqlParser.KW_ARRAY); } } } - this.state = 2677; + this.state = 2679; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 338, this.context); } @@ -12257,7 +12268,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2678; + this.state = 2680; _la = this.tokenStream.LA(1); if(!(_la === 8 || ((((_la - 227)) & ~0x1F) === 0 && ((1 << (_la - 227)) & 262143) !== 0))) { this.errorHandler.recoverInline(this); @@ -12286,13 +12297,13 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new TypeParameterContext(this.context, this.state); this.enterRule(localContext, 360, ImpalaSqlParser.RULE_typeParameter); try { - this.state = 2682; + this.state = 2684; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.INTEGER_VALUE: this.enterOuterAlt(localContext, 1); { - this.state = 2680; + this.state = 2682; this.match(ImpalaSqlParser.INTEGER_VALUE); } break; @@ -12357,7 +12368,7 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.DOUBLE_PRECISION: this.enterOuterAlt(localContext, 2); { - this.state = 2681; + this.state = 2683; this.type_(0); } break; @@ -12383,27 +12394,27 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new BaseTypeContext(this.context, this.state); this.enterRule(localContext, 362, ImpalaSqlParser.RULE_baseType); try { - this.state = 2688; + this.state = 2690; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.TIME_WITH_TIME_ZONE: this.enterOuterAlt(localContext, 1); { - this.state = 2684; + this.state = 2686; this.match(ImpalaSqlParser.TIME_WITH_TIME_ZONE); } break; case ImpalaSqlParser.TIMESTAMP_WITH_TIME_ZONE: this.enterOuterAlt(localContext, 2); { - this.state = 2685; + this.state = 2687; this.match(ImpalaSqlParser.TIMESTAMP_WITH_TIME_ZONE); } break; case ImpalaSqlParser.DOUBLE_PRECISION: this.enterOuterAlt(localContext, 3); { - this.state = 2686; + this.state = 2688; this.match(ImpalaSqlParser.DOUBLE_PRECISION); } break; @@ -12447,7 +12458,7 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.BACKQUOTED_IDENTIFIER: this.enterOuterAlt(localContext, 4); { - this.state = 2687; + this.state = 2689; this.identifier(); } break; @@ -12475,13 +12486,13 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2690; + this.state = 2692; this.match(ImpalaSqlParser.KW_WHEN); - this.state = 2691; + this.state = 2693; localContext._condition = this.expression(); - this.state = 2692; + this.state = 2694; this.match(ImpalaSqlParser.KW_THEN); - this.state = 2693; + this.state = 2695; localContext._result = this.expression(); } } @@ -12505,13 +12516,13 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2695; + this.state = 2697; this.match(ImpalaSqlParser.KW_FILTER); - this.state = 2696; + this.state = 2698; this.match(ImpalaSqlParser.LPAREN); - this.state = 2697; + this.state = 2699; this.whereClause(); - this.state = 2698; + this.state = 2700; this.match(ImpalaSqlParser.RPAREN); } } @@ -12536,23 +12547,23 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2700; + this.state = 2702; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); - this.state = 2705; + this.state = 2707; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2701; + this.state = 2703; this.match(ImpalaSqlParser.COMMA); - this.state = 2702; + this.state = 2704; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); } } - this.state = 2707; + this.state = 2709; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -12579,65 +12590,65 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2708; + this.state = 2710; this.match(ImpalaSqlParser.KW_OVER); - this.state = 2709; + this.state = 2711; this.match(ImpalaSqlParser.LPAREN); - this.state = 2713; + this.state = 2715; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 145) { { - this.state = 2710; + this.state = 2712; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 2711; + this.state = 2713; this.match(ImpalaSqlParser.KW_BY); - this.state = 2712; + this.state = 2714; this.partitionByClause(); } } - this.state = 2725; + this.state = 2727; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 139) { { - this.state = 2715; + this.state = 2717; this.match(ImpalaSqlParser.KW_ORDER); - this.state = 2716; + this.state = 2718; this.match(ImpalaSqlParser.KW_BY); - this.state = 2717; + this.state = 2719; this.sortItem(); - this.state = 2722; + this.state = 2724; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2718; + this.state = 2720; this.match(ImpalaSqlParser.COMMA); - this.state = 2719; + this.state = 2721; this.sortItem(); } } - this.state = 2724; + this.state = 2726; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2728; + this.state = 2730; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 154 || _la === 169) { { - this.state = 2727; + this.state = 2729; this.windowFrame(); } } - this.state = 2730; + this.state = 2732; this.match(ImpalaSqlParser.RPAREN); } } @@ -12659,54 +12670,54 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new WindowFrameContext(this.context, this.state); this.enterRule(localContext, 372, ImpalaSqlParser.RULE_windowFrame); try { - this.state = 2748; + this.state = 2750; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 346, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2732; + this.state = 2734; localContext._frameType = this.match(ImpalaSqlParser.KW_RANGE); - this.state = 2733; + this.state = 2735; localContext._start_ = this.frameBound(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2734; + this.state = 2736; localContext._frameType = this.match(ImpalaSqlParser.KW_ROWS); - this.state = 2735; + this.state = 2737; localContext._start_ = this.frameBound(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2736; + this.state = 2738; localContext._frameType = this.match(ImpalaSqlParser.KW_RANGE); - this.state = 2737; + this.state = 2739; this.match(ImpalaSqlParser.KW_BETWEEN); - this.state = 2738; + this.state = 2740; localContext._start_ = this.frameBound(); - this.state = 2739; + this.state = 2741; this.match(ImpalaSqlParser.KW_AND); - this.state = 2740; + this.state = 2742; localContext._end = this.frameBound(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2742; + this.state = 2744; localContext._frameType = this.match(ImpalaSqlParser.KW_ROWS); - this.state = 2743; + this.state = 2745; this.match(ImpalaSqlParser.KW_BETWEEN); - this.state = 2744; + this.state = 2746; localContext._start_ = this.frameBound(); - this.state = 2745; + this.state = 2747; this.match(ImpalaSqlParser.KW_AND); - this.state = 2746; + this.state = 2748; localContext._end = this.frameBound(); } break; @@ -12731,16 +12742,16 @@ export class ImpalaSqlParser extends SQLParserBase { this.enterRule(localContext, 374, ImpalaSqlParser.RULE_frameBound); let _la: number; try { - this.state = 2759; + this.state = 2761; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 347, this.context) ) { case 1: localContext = new UnboundedFrameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2750; + this.state = 2752; this.match(ImpalaSqlParser.KW_UNBOUNDED); - this.state = 2751; + this.state = 2753; (localContext as UnboundedFrameContext)._boundType = this.match(ImpalaSqlParser.KW_PRECEDING); } break; @@ -12748,9 +12759,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new UnboundedFrameContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2752; + this.state = 2754; this.match(ImpalaSqlParser.KW_UNBOUNDED); - this.state = 2753; + this.state = 2755; (localContext as UnboundedFrameContext)._boundType = this.match(ImpalaSqlParser.KW_FOLLOWING); } break; @@ -12758,9 +12769,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new CurrentRowBoundContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2754; + this.state = 2756; this.match(ImpalaSqlParser.KW_CURRENT); - this.state = 2755; + this.state = 2757; this.match(ImpalaSqlParser.KW_ROW); } break; @@ -12768,9 +12779,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new BoundedFrameContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2756; + this.state = 2758; this.expression(); - this.state = 2757; + this.state = 2759; (localContext as BoundedFrameContext)._boundType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 77 || _la === 149)) { @@ -12802,18 +12813,18 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new PathElementContext(this.context, this.state); this.enterRule(localContext, 376, ImpalaSqlParser.RULE_pathElement); try { - this.state = 2766; + this.state = 2768; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 348, this.context) ) { case 1: localContext = new QualifiedArgumentContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2761; + this.state = 2763; this.identifier(); - this.state = 2762; + this.state = 2764; this.match(ImpalaSqlParser.DOT); - this.state = 2763; + this.state = 2765; this.identifier(); } break; @@ -12821,7 +12832,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new UnqualifiedArgumentContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2765; + this.state = 2767; this.identifier(); } break; @@ -12848,21 +12859,21 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2768; + this.state = 2770; this.pathElement(); - this.state = 2773; + this.state = 2775; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 263) { { { - this.state = 2769; + this.state = 2771; this.match(ImpalaSqlParser.COMMA); - this.state = 2770; + this.state = 2772; this.pathElement(); } } - this.state = 2775; + this.state = 2777; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -12887,66 +12898,66 @@ export class ImpalaSqlParser extends SQLParserBase { this.enterRule(localContext, 380, ImpalaSqlParser.RULE_privilege); let _la: number; try { - this.state = 2789; + this.state = 2791; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ALL: this.enterOuterAlt(localContext, 1); { - this.state = 2776; + this.state = 2778; this.match(ImpalaSqlParser.KW_ALL); } break; case ImpalaSqlParser.KW_ALTER: this.enterOuterAlt(localContext, 2); { - this.state = 2777; + this.state = 2779; this.match(ImpalaSqlParser.KW_ALTER); } break; case ImpalaSqlParser.KW_DROP: this.enterOuterAlt(localContext, 3); { - this.state = 2778; + this.state = 2780; this.match(ImpalaSqlParser.KW_DROP); } break; case ImpalaSqlParser.KW_CREATE: this.enterOuterAlt(localContext, 4); { - this.state = 2779; + this.state = 2781; this.match(ImpalaSqlParser.KW_CREATE); } break; case ImpalaSqlParser.KW_INSERT: this.enterOuterAlt(localContext, 5); { - this.state = 2780; + this.state = 2782; this.match(ImpalaSqlParser.KW_INSERT); } break; case ImpalaSqlParser.KW_REFRESH: this.enterOuterAlt(localContext, 6); { - this.state = 2781; + this.state = 2783; this.match(ImpalaSqlParser.KW_REFRESH); } break; case ImpalaSqlParser.KW_SELECT: this.enterOuterAlt(localContext, 7); { - this.state = 2782; + this.state = 2784; this.match(ImpalaSqlParser.KW_SELECT); - this.state = 2787; + this.state = 2789; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 265) { { - this.state = 2783; + this.state = 2785; this.match(ImpalaSqlParser.LPAREN); - this.state = 2784; + this.state = 2786; localContext._name = this.identifier(); - this.state = 2785; + this.state = 2787; this.match(ImpalaSqlParser.RPAREN); } } @@ -12978,7 +12989,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2791; + this.state = 2793; _la = this.tokenStream.LA(1); if(!(_la === 46 || ((((_la - 178)) & ~0x1F) === 0 && ((1 << (_la - 178)) & 2147484673) !== 0))) { this.errorHandler.recoverInline(this); @@ -13010,23 +13021,23 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2793; + this.state = 2795; this.identifier(); - this.state = 2798; + this.state = 2800; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 352, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2794; + this.state = 2796; this.match(ImpalaSqlParser.DOT); - this.state = 2795; + this.state = 2797; this.identifier(); } } } - this.state = 2800; + this.state = 2802; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 352, this.context); } @@ -13051,32 +13062,32 @@ export class ImpalaSqlParser extends SQLParserBase { this.enterRule(localContext, 386, ImpalaSqlParser.RULE_qualifiedNameAllowEmpty); try { let alternative: number; - this.state = 2817; + this.state = 2819; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 355, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2801; + this.state = 2803; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } - this.state = 2807; + this.state = 2809; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 353, this.context) ) { case 1: { - this.state = 2802; + this.state = 2804; this.identifier(); - this.state = 2803; + this.state = 2805; this.match(ImpalaSqlParser.DOT); - this.state = 2804; + this.state = 2806; this.emptyColumn(); } break; case 2: { - this.state = 2806; + this.state = 2808; this.emptyColumn(); } break; @@ -13086,23 +13097,23 @@ export class ImpalaSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2809; + this.state = 2811; this.identifier(); - this.state = 2814; + this.state = 2816; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 354, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2810; + this.state = 2812; this.match(ImpalaSqlParser.DOT); - this.state = 2811; + this.state = 2813; this.identifier(); } } } - this.state = 2816; + this.state = 2818; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 354, this.context); } @@ -13128,16 +13139,16 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new PrincipalContext(this.context, this.state); this.enterRule(localContext, 388, ImpalaSqlParser.RULE_principal); try { - this.state = 2825; + this.state = 2827; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ROLE: localContext = new RolePrincipalContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2819; + this.state = 2821; this.match(ImpalaSqlParser.KW_ROLE); - this.state = 2820; + this.state = 2822; this.identifier(); } break; @@ -13145,9 +13156,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new UserPrincipalContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2821; + this.state = 2823; this.match(ImpalaSqlParser.KW_USER); - this.state = 2822; + this.state = 2824; this.identifier(); } break; @@ -13155,9 +13166,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new GroupPrincipalContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2823; + this.state = 2825; this.match(ImpalaSqlParser.KW_GROUP); - this.state = 2824; + this.state = 2826; this.identifier(); } break; @@ -13183,14 +13194,14 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new IdentifierContext(this.context, this.state); this.enterRule(localContext, 390, ImpalaSqlParser.RULE_identifier); try { - this.state = 2832; + this.state = 2834; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.IDENTIFIER: localContext = new UnquotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2827; + this.state = 2829; this.match(ImpalaSqlParser.IDENTIFIER); } break; @@ -13198,7 +13209,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new QuotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2828; + this.state = 2830; this.match(ImpalaSqlParser.STRING); } break; @@ -13239,7 +13250,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new UnquotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2829; + this.state = 2831; this.nonReserved(); } break; @@ -13247,7 +13258,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new BackQuotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2830; + this.state = 2832; this.match(ImpalaSqlParser.BACKQUOTED_IDENTIFIER); } break; @@ -13255,7 +13266,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new DigitIdentifierContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2831; + this.state = 2833; this.match(ImpalaSqlParser.DIGIT_IDENTIFIER); } break; @@ -13282,24 +13293,24 @@ export class ImpalaSqlParser extends SQLParserBase { this.enterRule(localContext, 392, ImpalaSqlParser.RULE_number); let _la: number; try { - this.state = 2846; + this.state = 2848; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 361, this.context) ) { case 1: localContext = new DecimalLiteralContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2835; + this.state = 2837; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 256) { { - this.state = 2834; + this.state = 2836; this.match(ImpalaSqlParser.MINUS); } } - this.state = 2837; + this.state = 2839; this.match(ImpalaSqlParser.DECIMAL_VALUE); } break; @@ -13307,17 +13318,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new DoubleLiteralContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2839; + this.state = 2841; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 256) { { - this.state = 2838; + this.state = 2840; this.match(ImpalaSqlParser.MINUS); } } - this.state = 2841; + this.state = 2843; this.match(ImpalaSqlParser.DOUBLE_VALUE); } break; @@ -13325,17 +13336,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new IntegerLiteralContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2843; + this.state = 2845; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 256) { { - this.state = 2842; + this.state = 2844; this.match(ImpalaSqlParser.MINUS); } } - this.state = 2845; + this.state = 2847; this.match(ImpalaSqlParser.INTEGER_VALUE); } break; @@ -13362,7 +13373,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2848; + this.state = 2850; _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); @@ -13394,7 +13405,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2850; + this.state = 2852; _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); @@ -13428,6 +13439,8 @@ export class ImpalaSqlParser extends SQLParserBase { return this.columnNameAllowEmpty_sempred(localContext as ColumnNameAllowEmptyContext, predIndex); case 135: return this.queryTerm_sempred(localContext as QueryTermContext, predIndex); + case 147: + return this.selectItem_sempred(localContext as SelectItemContext, predIndex); case 152: return this.relation_sempred(localContext as RelationContext, predIndex); case 166: @@ -13466,59 +13479,66 @@ export class ImpalaSqlParser extends SQLParserBase { } return true; } - private relation_sempred(localContext: RelationContext | null, predIndex: number): boolean { + private selectItem_sempred(localContext: SelectItemContext | null, predIndex: number): boolean { switch (predIndex) { case 4: - return this.precpred(this.context, 2); + return this.shouldMatchEmpty(); } return true; } - private booleanExpression_sempred(localContext: BooleanExpressionContext | null, predIndex: number): boolean { + private relation_sempred(localContext: RelationContext | null, predIndex: number): boolean { switch (predIndex) { case 5: return this.precpred(this.context, 2); + } + return true; + } + private booleanExpression_sempred(localContext: BooleanExpressionContext | null, predIndex: number): boolean { + switch (predIndex) { case 6: + return this.precpred(this.context, 2); + case 7: return this.precpred(this.context, 1); } return true; } private valueExpression_sempred(localContext: ValueExpressionContext | null, predIndex: number): boolean { switch (predIndex) { - case 7: - return this.precpred(this.context, 3); case 8: - return this.precpred(this.context, 2); + return this.precpred(this.context, 3); case 9: + return this.precpred(this.context, 2); + case 10: return this.precpred(this.context, 1); } return true; } private primaryExpression_sempred(localContext: PrimaryExpressionContext | null, predIndex: number): boolean { switch (predIndex) { - case 10: - return this.precpred(this.context, 15); case 11: + return this.precpred(this.context, 15); + case 12: return this.precpred(this.context, 13); } return true; } private type_sempred(localContext: TypeContext | null, predIndex: number): boolean { switch (predIndex) { - case 12: + case 13: return this.precpred(this.context, 5); } return true; } private qualifiedNameAllowEmpty_sempred(localContext: QualifiedNameAllowEmptyContext | null, predIndex: number): boolean { switch (predIndex) { - case 13: + case 14: return this.shouldMatchEmpty(); } return true; } public static readonly _serializedATN: number[] = [ - 4,1,289,2853,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,2855,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, @@ -13706,132 +13726,132 @@ export class ImpalaSqlParser extends SQLParserBase { 1,144,1,144,1,144,5,144,2033,8,144,10,144,12,144,2036,9,144,3,144, 2038,8,144,1,144,1,144,3,144,2042,8,144,1,145,1,145,3,145,2046,8, 145,1,145,1,145,1,145,1,146,1,146,1,147,1,147,3,147,2055,8,147,1, - 147,1,147,3,147,2059,8,147,1,147,3,147,2062,8,147,1,148,3,148,2065, - 8,148,1,148,1,148,1,149,1,149,1,150,1,150,1,151,1,151,1,151,3,151, - 2076,8,151,1,151,1,151,1,152,1,152,1,152,1,152,1,152,1,152,1,152, - 1,152,1,152,1,152,1,152,1,152,3,152,2092,8,152,5,152,2094,8,152, - 10,152,12,152,2097,9,152,1,153,3,153,2100,8,153,1,153,1,153,3,153, - 2104,8,153,1,153,1,153,3,153,2108,8,153,1,153,1,153,3,153,2112,8, - 153,1,153,1,153,3,153,2116,8,153,1,153,1,153,3,153,2120,8,153,1, - 153,1,153,1,153,1,153,1,153,1,153,1,153,1,153,3,153,2130,8,153,1, - 154,1,154,1,154,3,154,2135,8,154,1,154,1,154,1,154,1,154,1,154,5, - 154,2142,8,154,10,154,12,154,2145,9,154,1,154,1,154,3,154,2149,8, - 154,1,155,1,155,1,155,1,155,1,155,1,155,1,155,1,155,1,155,1,155, - 1,155,3,155,2162,8,155,3,155,2164,8,155,1,156,1,156,1,157,1,157, - 3,157,2170,8,157,1,157,1,157,3,157,2174,8,157,3,157,2176,8,157,1, - 158,1,158,1,158,1,158,5,158,2182,8,158,10,158,12,158,2185,9,158, - 1,158,1,158,1,159,1,159,1,159,1,159,3,159,2193,8,159,1,160,3,160, - 2196,8,160,1,160,1,160,1,161,1,161,1,161,1,161,1,162,1,162,1,162, - 1,162,1,162,5,162,2209,8,162,10,162,12,162,2212,9,162,1,162,1,162, - 1,162,3,162,2217,8,162,1,163,1,163,1,163,1,163,1,164,1,164,3,164, - 2225,8,164,1,165,1,165,1,166,1,166,1,166,3,166,2232,8,166,1,166, - 1,166,3,166,2236,8,166,1,166,1,166,1,166,1,166,1,166,1,166,5,166, - 2244,8,166,10,166,12,166,2247,9,166,1,167,1,167,1,167,1,167,1,167, - 1,167,1,167,1,167,3,167,2257,8,167,1,167,1,167,1,167,1,167,1,167, - 1,167,3,167,2265,8,167,1,167,1,167,1,167,1,167,1,167,5,167,2272, - 8,167,10,167,12,167,2275,9,167,1,167,1,167,1,167,3,167,2280,8,167, - 1,167,1,167,1,167,3,167,2285,8,167,1,167,1,167,1,167,1,167,3,167, - 2291,8,167,1,167,1,167,1,167,1,167,3,167,2297,8,167,1,167,1,167, - 1,167,3,167,2302,8,167,1,167,1,167,1,167,3,167,2307,8,167,1,168, - 1,168,1,168,1,168,3,168,2313,8,168,1,168,1,168,1,168,1,168,1,168, - 1,168,1,168,1,168,1,168,5,168,2324,8,168,10,168,12,168,2327,9,168, - 1,169,1,169,1,169,3,169,2332,8,169,1,169,1,169,1,169,5,169,2337, - 8,169,10,169,12,169,2340,9,169,3,169,2342,8,169,1,169,1,169,1,169, - 1,169,1,169,5,169,2349,8,169,10,169,12,169,2352,9,169,3,169,2354, - 8,169,1,169,1,169,3,169,2358,8,169,1,169,3,169,2361,8,169,1,170, + 147,1,147,3,147,2059,8,147,1,147,1,147,1,147,3,147,2064,8,147,1, + 148,3,148,2067,8,148,1,148,1,148,1,149,1,149,1,150,1,150,1,151,1, + 151,1,151,3,151,2078,8,151,1,151,1,151,1,152,1,152,1,152,1,152,1, + 152,1,152,1,152,1,152,1,152,1,152,1,152,1,152,3,152,2094,8,152,5, + 152,2096,8,152,10,152,12,152,2099,9,152,1,153,3,153,2102,8,153,1, + 153,1,153,3,153,2106,8,153,1,153,1,153,3,153,2110,8,153,1,153,1, + 153,3,153,2114,8,153,1,153,1,153,3,153,2118,8,153,1,153,1,153,3, + 153,2122,8,153,1,153,1,153,1,153,1,153,1,153,1,153,1,153,1,153,3, + 153,2132,8,153,1,154,1,154,1,154,3,154,2137,8,154,1,154,1,154,1, + 154,1,154,1,154,5,154,2144,8,154,10,154,12,154,2147,9,154,1,154, + 1,154,3,154,2151,8,154,1,155,1,155,1,155,1,155,1,155,1,155,1,155, + 1,155,1,155,1,155,1,155,3,155,2164,8,155,3,155,2166,8,155,1,156, + 1,156,1,157,1,157,3,157,2172,8,157,1,157,1,157,3,157,2176,8,157, + 3,157,2178,8,157,1,158,1,158,1,158,1,158,5,158,2184,8,158,10,158, + 12,158,2187,9,158,1,158,1,158,1,159,1,159,1,159,1,159,3,159,2195, + 8,159,1,160,3,160,2198,8,160,1,160,1,160,1,161,1,161,1,161,1,161, + 1,162,1,162,1,162,1,162,1,162,5,162,2211,8,162,10,162,12,162,2214, + 9,162,1,162,1,162,1,162,3,162,2219,8,162,1,163,1,163,1,163,1,163, + 1,164,1,164,3,164,2227,8,164,1,165,1,165,1,166,1,166,1,166,3,166, + 2234,8,166,1,166,1,166,3,166,2238,8,166,1,166,1,166,1,166,1,166, + 1,166,1,166,5,166,2246,8,166,10,166,12,166,2249,9,166,1,167,1,167, + 1,167,1,167,1,167,1,167,1,167,1,167,3,167,2259,8,167,1,167,1,167, + 1,167,1,167,1,167,1,167,3,167,2267,8,167,1,167,1,167,1,167,1,167, + 1,167,5,167,2274,8,167,10,167,12,167,2277,9,167,1,167,1,167,1,167, + 3,167,2282,8,167,1,167,1,167,1,167,3,167,2287,8,167,1,167,1,167, + 1,167,1,167,3,167,2293,8,167,1,167,1,167,1,167,1,167,3,167,2299, + 8,167,1,167,1,167,1,167,3,167,2304,8,167,1,167,1,167,1,167,3,167, + 2309,8,167,1,168,1,168,1,168,1,168,3,168,2315,8,168,1,168,1,168, + 1,168,1,168,1,168,1,168,1,168,1,168,1,168,5,168,2326,8,168,10,168, + 12,168,2329,9,168,1,169,1,169,1,169,3,169,2334,8,169,1,169,1,169, + 1,169,5,169,2339,8,169,10,169,12,169,2342,9,169,3,169,2344,8,169, + 1,169,1,169,1,169,1,169,1,169,5,169,2351,8,169,10,169,12,169,2354, + 9,169,3,169,2356,8,169,1,169,1,169,3,169,2360,8,169,1,169,3,169, + 2363,8,169,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170, 1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170, + 1,170,1,170,1,170,1,170,3,170,2389,8,170,1,170,1,170,1,170,1,170, + 3,170,2395,8,170,5,170,2397,8,170,10,170,12,170,2400,9,170,1,170, + 1,170,1,170,1,170,1,170,1,170,1,170,5,170,2409,8,170,10,170,12,170, + 2412,9,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,3,170,2421, + 8,170,1,170,3,170,2424,8,170,1,170,1,170,1,170,1,170,1,170,1,170, + 1,170,1,170,1,170,5,170,2435,8,170,10,170,12,170,2438,9,170,3,170, + 2440,8,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170, + 1,170,1,170,1,170,1,170,1,170,1,170,4,170,2457,8,170,11,170,12,170, + 2458,1,170,1,170,3,170,2463,8,170,1,170,1,170,1,170,1,170,4,170, + 2469,8,170,11,170,12,170,2470,1,170,1,170,3,170,2475,8,170,1,170, 1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170, - 1,170,3,170,2387,8,170,1,170,1,170,1,170,1,170,3,170,2393,8,170, - 5,170,2395,8,170,10,170,12,170,2398,9,170,1,170,1,170,1,170,1,170, - 1,170,1,170,1,170,5,170,2407,8,170,10,170,12,170,2410,9,170,1,170, - 1,170,1,170,1,170,1,170,1,170,1,170,3,170,2419,8,170,1,170,3,170, - 2422,8,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170, - 5,170,2433,8,170,10,170,12,170,2436,9,170,3,170,2438,8,170,1,170, + 1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,5,170,2498, + 8,170,10,170,12,170,2501,9,170,3,170,2503,8,170,1,170,1,170,1,170, + 1,170,1,170,1,170,1,170,3,170,2512,8,170,1,170,1,170,1,170,1,170, + 3,170,2518,8,170,1,170,1,170,1,170,1,170,3,170,2524,8,170,1,170, + 1,170,1,170,1,170,3,170,2530,8,170,1,170,1,170,1,170,1,170,1,170, + 1,170,1,170,1,170,1,170,3,170,2541,8,170,1,170,1,170,1,170,1,170, + 1,170,1,170,1,170,3,170,2550,8,170,1,170,1,170,1,170,1,170,1,170, 1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170, - 1,170,1,170,1,170,4,170,2455,8,170,11,170,12,170,2456,1,170,1,170, - 3,170,2461,8,170,1,170,1,170,1,170,1,170,4,170,2467,8,170,11,170, - 12,170,2468,1,170,1,170,3,170,2473,8,170,1,170,1,170,1,170,1,170, - 1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170, - 1,170,1,170,1,170,1,170,1,170,1,170,5,170,2496,8,170,10,170,12,170, - 2499,9,170,3,170,2501,8,170,1,170,1,170,1,170,1,170,1,170,1,170, - 1,170,3,170,2510,8,170,1,170,1,170,1,170,1,170,3,170,2516,8,170, - 1,170,1,170,1,170,1,170,3,170,2522,8,170,1,170,1,170,1,170,1,170, - 3,170,2528,8,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170, - 1,170,3,170,2539,8,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170, - 3,170,2548,8,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170, - 1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,5,170, - 2568,8,170,10,170,12,170,2571,9,170,3,170,2573,8,170,1,170,3,170, - 2576,8,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,5,170, - 2586,8,170,10,170,12,170,2589,9,170,1,171,1,171,1,171,1,171,3,171, - 2595,8,171,3,171,2597,8,171,1,172,1,172,1,173,1,173,1,174,1,174, - 1,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175, - 1,175,1,175,1,175,3,175,2619,8,175,1,176,1,176,1,177,1,177,1,178, + 1,170,1,170,5,170,2570,8,170,10,170,12,170,2573,9,170,3,170,2575, + 8,170,1,170,3,170,2578,8,170,1,170,1,170,1,170,1,170,1,170,1,170, + 1,170,1,170,5,170,2588,8,170,10,170,12,170,2591,9,170,1,171,1,171, + 1,171,1,171,3,171,2597,8,171,3,171,2599,8,171,1,172,1,172,1,173, + 1,173,1,174,1,174,1,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175, + 1,175,1,175,1,175,1,175,1,175,1,175,3,175,2621,8,175,1,176,1,176, + 1,177,1,177,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178, 1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178, - 1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,1,178,5,178,2646, - 8,178,10,178,12,178,2649,9,178,1,178,1,178,1,178,1,178,3,178,2655, - 8,178,1,178,1,178,1,178,1,178,5,178,2661,8,178,10,178,12,178,2664, - 9,178,1,178,1,178,3,178,2668,8,178,3,178,2670,8,178,1,178,1,178, - 5,178,2674,8,178,10,178,12,178,2677,9,178,1,179,1,179,1,180,1,180, - 3,180,2683,8,180,1,181,1,181,1,181,1,181,3,181,2689,8,181,1,182, - 1,182,1,182,1,182,1,182,1,183,1,183,1,183,1,183,1,183,1,184,1,184, - 1,184,5,184,2704,8,184,10,184,12,184,2707,9,184,1,185,1,185,1,185, - 1,185,1,185,3,185,2714,8,185,1,185,1,185,1,185,1,185,1,185,5,185, - 2721,8,185,10,185,12,185,2724,9,185,3,185,2726,8,185,1,185,3,185, - 2729,8,185,1,185,1,185,1,186,1,186,1,186,1,186,1,186,1,186,1,186, - 1,186,1,186,1,186,1,186,1,186,1,186,1,186,1,186,1,186,3,186,2749, - 8,186,1,187,1,187,1,187,1,187,1,187,1,187,1,187,1,187,1,187,3,187, - 2760,8,187,1,188,1,188,1,188,1,188,1,188,3,188,2767,8,188,1,189, - 1,189,1,189,5,189,2772,8,189,10,189,12,189,2775,9,189,1,190,1,190, - 1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,190,3,190,2788, - 8,190,3,190,2790,8,190,1,191,1,191,1,192,1,192,1,192,5,192,2797, - 8,192,10,192,12,192,2800,9,192,1,193,1,193,1,193,1,193,1,193,1,193, - 3,193,2808,8,193,1,193,1,193,1,193,5,193,2813,8,193,10,193,12,193, - 2816,9,193,3,193,2818,8,193,1,194,1,194,1,194,1,194,1,194,1,194, - 3,194,2826,8,194,1,195,1,195,1,195,1,195,1,195,3,195,2833,8,195, - 1,196,3,196,2836,8,196,1,196,1,196,3,196,2840,8,196,1,196,1,196, - 3,196,2844,8,196,1,196,3,196,2847,8,196,1,197,1,197,1,198,1,198, - 1,198,10,799,1472,1656,1695,1715,1730,1761,1790,1864,2396,6,270, - 304,332,336,340,356,199,0,2,4,6,8,10,12,14,16,18,20,22,24,26,28, - 30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72, - 74,76,78,80,82,84,86,88,90,92,94,96,98,100,102,104,106,108,110,112, - 114,116,118,120,122,124,126,128,130,132,134,136,138,140,142,144, - 146,148,150,152,154,156,158,160,162,164,166,168,170,172,174,176, - 178,180,182,184,186,188,190,192,194,196,198,200,202,204,206,208, - 210,212,214,216,218,220,222,224,226,228,230,232,234,236,238,240, - 242,244,246,248,250,252,254,256,258,260,262,264,266,268,270,272, - 274,276,278,280,282,284,286,288,290,292,294,296,298,300,302,304, - 306,308,310,312,314,316,318,320,322,324,326,328,330,332,334,336, - 338,340,342,344,346,348,350,352,354,356,358,360,362,364,366,368, - 370,372,374,376,378,380,382,384,386,388,390,392,394,396,0,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,3169,0,401,1,0,0,0,2, - 406,1,0,0,0,4,432,1,0,0,0,6,434,1,0,0,0,8,445,1,0,0,0,10,447,1,0, - 0,0,12,486,1,0,0,0,14,508,1,0,0,0,16,562,1,0,0,0,18,581,1,0,0,0, - 20,594,1,0,0,0,22,598,1,0,0,0,24,660,1,0,0,0,26,708,1,0,0,0,28,710, - 1,0,0,0,30,718,1,0,0,0,32,738,1,0,0,0,34,758,1,0,0,0,36,765,1,0, - 0,0,38,774,1,0,0,0,40,782,1,0,0,0,42,804,1,0,0,0,44,814,1,0,0,0, - 46,832,1,0,0,0,48,853,1,0,0,0,50,874,1,0,0,0,52,880,1,0,0,0,54,897, - 1,0,0,0,56,906,1,0,0,0,58,913,1,0,0,0,60,921,1,0,0,0,62,928,1,0, - 0,0,64,935,1,0,0,0,66,944,1,0,0,0,68,955,1,0,0,0,70,957,1,0,0,0, - 72,977,1,0,0,0,74,994,1,0,0,0,76,996,1,0,0,0,78,1005,1,0,0,0,80, - 1012,1,0,0,0,82,1021,1,0,0,0,84,1031,1,0,0,0,86,1054,1,0,0,0,88, - 1060,1,0,0,0,90,1062,1,0,0,0,92,1069,1,0,0,0,94,1081,1,0,0,0,96, - 1083,1,0,0,0,98,1090,1,0,0,0,100,1111,1,0,0,0,102,1140,1,0,0,0,104, - 1142,1,0,0,0,106,1150,1,0,0,0,108,1172,1,0,0,0,110,1190,1,0,0,0, - 112,1213,1,0,0,0,114,1215,1,0,0,0,116,1230,1,0,0,0,118,1249,1,0, - 0,0,120,1271,1,0,0,0,122,1276,1,0,0,0,124,1281,1,0,0,0,126,1286, + 1,178,5,178,2648,8,178,10,178,12,178,2651,9,178,1,178,1,178,1,178, + 1,178,3,178,2657,8,178,1,178,1,178,1,178,1,178,5,178,2663,8,178, + 10,178,12,178,2666,9,178,1,178,1,178,3,178,2670,8,178,3,178,2672, + 8,178,1,178,1,178,5,178,2676,8,178,10,178,12,178,2679,9,178,1,179, + 1,179,1,180,1,180,3,180,2685,8,180,1,181,1,181,1,181,1,181,3,181, + 2691,8,181,1,182,1,182,1,182,1,182,1,182,1,183,1,183,1,183,1,183, + 1,183,1,184,1,184,1,184,5,184,2706,8,184,10,184,12,184,2709,9,184, + 1,185,1,185,1,185,1,185,1,185,3,185,2716,8,185,1,185,1,185,1,185, + 1,185,1,185,5,185,2723,8,185,10,185,12,185,2726,9,185,3,185,2728, + 8,185,1,185,3,185,2731,8,185,1,185,1,185,1,186,1,186,1,186,1,186, + 1,186,1,186,1,186,1,186,1,186,1,186,1,186,1,186,1,186,1,186,1,186, + 1,186,3,186,2751,8,186,1,187,1,187,1,187,1,187,1,187,1,187,1,187, + 1,187,1,187,3,187,2762,8,187,1,188,1,188,1,188,1,188,1,188,3,188, + 2769,8,188,1,189,1,189,1,189,5,189,2774,8,189,10,189,12,189,2777, + 9,189,1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,190, + 1,190,3,190,2790,8,190,3,190,2792,8,190,1,191,1,191,1,192,1,192, + 1,192,5,192,2799,8,192,10,192,12,192,2802,9,192,1,193,1,193,1,193, + 1,193,1,193,1,193,3,193,2810,8,193,1,193,1,193,1,193,5,193,2815, + 8,193,10,193,12,193,2818,9,193,3,193,2820,8,193,1,194,1,194,1,194, + 1,194,1,194,1,194,3,194,2828,8,194,1,195,1,195,1,195,1,195,1,195, + 3,195,2835,8,195,1,196,3,196,2838,8,196,1,196,1,196,3,196,2842,8, + 196,1,196,1,196,3,196,2846,8,196,1,196,3,196,2849,8,196,1,197,1, + 197,1,198,1,198,1,198,10,799,1472,1656,1695,1715,1730,1761,1790, + 1864,2398,6,270,304,332,336,340,356,199,0,2,4,6,8,10,12,14,16,18, + 20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62, + 64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94,96,98,100,102,104, + 106,108,110,112,114,116,118,120,122,124,126,128,130,132,134,136, + 138,140,142,144,146,148,150,152,154,156,158,160,162,164,166,168, + 170,172,174,176,178,180,182,184,186,188,190,192,194,196,198,200, + 202,204,206,208,210,212,214,216,218,220,222,224,226,228,230,232, + 234,236,238,240,242,244,246,248,250,252,254,256,258,260,262,264, + 266,268,270,272,274,276,278,280,282,284,286,288,290,292,294,296, + 298,300,302,304,306,308,310,312,314,316,318,320,322,324,326,328, + 330,332,334,336,338,340,342,344,346,348,350,352,354,356,358,360, + 362,364,366,368,370,372,374,376,378,380,382,384,386,388,390,392, + 394,396,0,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,3172,0,401, + 1,0,0,0,2,406,1,0,0,0,4,432,1,0,0,0,6,434,1,0,0,0,8,445,1,0,0,0, + 10,447,1,0,0,0,12,486,1,0,0,0,14,508,1,0,0,0,16,562,1,0,0,0,18,581, + 1,0,0,0,20,594,1,0,0,0,22,598,1,0,0,0,24,660,1,0,0,0,26,708,1,0, + 0,0,28,710,1,0,0,0,30,718,1,0,0,0,32,738,1,0,0,0,34,758,1,0,0,0, + 36,765,1,0,0,0,38,774,1,0,0,0,40,782,1,0,0,0,42,804,1,0,0,0,44,814, + 1,0,0,0,46,832,1,0,0,0,48,853,1,0,0,0,50,874,1,0,0,0,52,880,1,0, + 0,0,54,897,1,0,0,0,56,906,1,0,0,0,58,913,1,0,0,0,60,921,1,0,0,0, + 62,928,1,0,0,0,64,935,1,0,0,0,66,944,1,0,0,0,68,955,1,0,0,0,70,957, + 1,0,0,0,72,977,1,0,0,0,74,994,1,0,0,0,76,996,1,0,0,0,78,1005,1,0, + 0,0,80,1012,1,0,0,0,82,1021,1,0,0,0,84,1031,1,0,0,0,86,1054,1,0, + 0,0,88,1060,1,0,0,0,90,1062,1,0,0,0,92,1069,1,0,0,0,94,1081,1,0, + 0,0,96,1083,1,0,0,0,98,1090,1,0,0,0,100,1111,1,0,0,0,102,1140,1, + 0,0,0,104,1142,1,0,0,0,106,1150,1,0,0,0,108,1172,1,0,0,0,110,1190, + 1,0,0,0,112,1213,1,0,0,0,114,1215,1,0,0,0,116,1230,1,0,0,0,118,1249, + 1,0,0,0,120,1271,1,0,0,0,122,1276,1,0,0,0,124,1281,1,0,0,0,126,1286, 1,0,0,0,128,1291,1,0,0,0,130,1298,1,0,0,0,132,1313,1,0,0,0,134,1319, 1,0,0,0,136,1339,1,0,0,0,138,1341,1,0,0,0,140,1352,1,0,0,0,142,1363, 1,0,0,0,144,1377,1,0,0,0,146,1379,1,0,0,0,148,1388,1,0,0,0,150,1397, @@ -13852,20 +13872,20 @@ export class ImpalaSqlParser extends SQLParserBase { 1,0,0,0,264,1877,1,0,0,0,266,1895,1,0,0,0,268,1900,1,0,0,0,270,1921, 1,0,0,0,272,1957,1,0,0,0,274,1959,1,0,0,0,276,1967,1,0,0,0,278,1997, 1,0,0,0,280,2005,1,0,0,0,282,2010,1,0,0,0,284,2016,1,0,0,0,286,2026, - 1,0,0,0,288,2041,1,0,0,0,290,2043,1,0,0,0,292,2050,1,0,0,0,294,2061, - 1,0,0,0,296,2064,1,0,0,0,298,2068,1,0,0,0,300,2070,1,0,0,0,302,2075, - 1,0,0,0,304,2079,1,0,0,0,306,2129,1,0,0,0,308,2148,1,0,0,0,310,2150, - 1,0,0,0,312,2165,1,0,0,0,314,2167,1,0,0,0,316,2177,1,0,0,0,318,2192, - 1,0,0,0,320,2195,1,0,0,0,322,2199,1,0,0,0,324,2203,1,0,0,0,326,2218, - 1,0,0,0,328,2224,1,0,0,0,330,2226,1,0,0,0,332,2235,1,0,0,0,334,2306, - 1,0,0,0,336,2312,1,0,0,0,338,2328,1,0,0,0,340,2575,1,0,0,0,342,2596, - 1,0,0,0,344,2598,1,0,0,0,346,2600,1,0,0,0,348,2602,1,0,0,0,350,2618, - 1,0,0,0,352,2620,1,0,0,0,354,2622,1,0,0,0,356,2669,1,0,0,0,358,2678, - 1,0,0,0,360,2682,1,0,0,0,362,2688,1,0,0,0,364,2690,1,0,0,0,366,2695, - 1,0,0,0,368,2700,1,0,0,0,370,2708,1,0,0,0,372,2748,1,0,0,0,374,2759, - 1,0,0,0,376,2766,1,0,0,0,378,2768,1,0,0,0,380,2789,1,0,0,0,382,2791, - 1,0,0,0,384,2793,1,0,0,0,386,2817,1,0,0,0,388,2825,1,0,0,0,390,2832, - 1,0,0,0,392,2846,1,0,0,0,394,2848,1,0,0,0,396,2850,1,0,0,0,398,400, + 1,0,0,0,288,2041,1,0,0,0,290,2043,1,0,0,0,292,2050,1,0,0,0,294,2063, + 1,0,0,0,296,2066,1,0,0,0,298,2070,1,0,0,0,300,2072,1,0,0,0,302,2077, + 1,0,0,0,304,2081,1,0,0,0,306,2131,1,0,0,0,308,2150,1,0,0,0,310,2152, + 1,0,0,0,312,2167,1,0,0,0,314,2169,1,0,0,0,316,2179,1,0,0,0,318,2194, + 1,0,0,0,320,2197,1,0,0,0,322,2201,1,0,0,0,324,2205,1,0,0,0,326,2220, + 1,0,0,0,328,2226,1,0,0,0,330,2228,1,0,0,0,332,2237,1,0,0,0,334,2308, + 1,0,0,0,336,2314,1,0,0,0,338,2330,1,0,0,0,340,2577,1,0,0,0,342,2598, + 1,0,0,0,344,2600,1,0,0,0,346,2602,1,0,0,0,348,2604,1,0,0,0,350,2620, + 1,0,0,0,352,2622,1,0,0,0,354,2624,1,0,0,0,356,2671,1,0,0,0,358,2680, + 1,0,0,0,360,2684,1,0,0,0,362,2690,1,0,0,0,364,2692,1,0,0,0,366,2697, + 1,0,0,0,368,2702,1,0,0,0,370,2710,1,0,0,0,372,2750,1,0,0,0,374,2761, + 1,0,0,0,376,2768,1,0,0,0,378,2770,1,0,0,0,380,2791,1,0,0,0,382,2793, + 1,0,0,0,384,2795,1,0,0,0,386,2819,1,0,0,0,388,2827,1,0,0,0,390,2834, + 1,0,0,0,392,2848,1,0,0,0,394,2850,1,0,0,0,396,2852,1,0,0,0,398,400, 3,2,1,0,399,398,1,0,0,0,400,403,1,0,0,0,401,399,1,0,0,0,401,402, 1,0,0,0,402,404,1,0,0,0,403,401,1,0,0,0,404,405,5,0,0,1,405,1,1, 0,0,0,406,408,3,4,2,0,407,409,5,262,0,0,408,407,1,0,0,0,408,409, @@ -14426,292 +14446,293 @@ export class ImpalaSqlParser extends SQLParserBase { 1,0,0,0,2045,2046,1,0,0,0,2046,2047,1,0,0,0,2047,2048,5,9,0,0,2048, 2049,3,322,161,0,2049,291,1,0,0,0,2050,2051,7,16,0,0,2051,293,1, 0,0,0,2052,2054,3,298,149,0,2053,2055,3,296,148,0,2054,2053,1,0, - 0,0,2054,2055,1,0,0,0,2055,2062,1,0,0,0,2056,2058,3,300,150,0,2057, - 2059,3,296,148,0,2058,2057,1,0,0,0,2058,2059,1,0,0,0,2059,2062,1, - 0,0,0,2060,2062,3,302,151,0,2061,2052,1,0,0,0,2061,2056,1,0,0,0, - 2061,2060,1,0,0,0,2062,295,1,0,0,0,2063,2065,5,9,0,0,2064,2063,1, - 0,0,0,2064,2065,1,0,0,0,2065,2066,1,0,0,0,2066,2067,3,390,195,0, - 2067,297,1,0,0,0,2068,2069,3,194,97,0,2069,299,1,0,0,0,2070,2071, - 3,330,165,0,2071,301,1,0,0,0,2072,2073,3,384,192,0,2073,2074,5,261, - 0,0,2074,2076,1,0,0,0,2075,2072,1,0,0,0,2075,2076,1,0,0,0,2076,2077, - 1,0,0,0,2077,2078,5,257,0,0,2078,303,1,0,0,0,2079,2080,6,152,-1, - 0,2080,2081,3,310,155,0,2081,2095,1,0,0,0,2082,2091,10,2,0,0,2083, - 2084,5,38,0,0,2084,2085,5,109,0,0,2085,2092,3,310,155,0,2086,2087, - 3,306,153,0,2087,2088,5,109,0,0,2088,2089,3,304,152,0,2089,2090, - 3,308,154,0,2090,2092,1,0,0,0,2091,2083,1,0,0,0,2091,2086,1,0,0, - 0,2092,2094,1,0,0,0,2093,2082,1,0,0,0,2094,2097,1,0,0,0,2095,2093, - 1,0,0,0,2095,2096,1,0,0,0,2096,305,1,0,0,0,2097,2095,1,0,0,0,2098, - 2100,5,97,0,0,2099,2098,1,0,0,0,2099,2100,1,0,0,0,2100,2130,1,0, - 0,0,2101,2103,5,114,0,0,2102,2104,5,97,0,0,2103,2102,1,0,0,0,2103, - 2104,1,0,0,0,2104,2130,1,0,0,0,2105,2107,5,165,0,0,2106,2108,5,97, - 0,0,2107,2106,1,0,0,0,2107,2108,1,0,0,0,2108,2130,1,0,0,0,2109,2111, - 5,114,0,0,2110,2112,5,141,0,0,2111,2110,1,0,0,0,2111,2112,1,0,0, - 0,2112,2130,1,0,0,0,2113,2115,5,165,0,0,2114,2116,5,141,0,0,2115, - 2114,1,0,0,0,2115,2116,1,0,0,0,2116,2130,1,0,0,0,2117,2119,5,83, - 0,0,2118,2120,5,141,0,0,2119,2118,1,0,0,0,2119,2120,1,0,0,0,2120, - 2130,1,0,0,0,2121,2122,5,114,0,0,2122,2130,5,177,0,0,2123,2124,5, - 165,0,0,2124,2130,5,177,0,0,2125,2126,5,114,0,0,2126,2130,5,7,0, - 0,2127,2128,5,165,0,0,2128,2130,5,7,0,0,2129,2099,1,0,0,0,2129,2101, - 1,0,0,0,2129,2105,1,0,0,0,2129,2109,1,0,0,0,2129,2113,1,0,0,0,2129, - 2117,1,0,0,0,2129,2121,1,0,0,0,2129,2123,1,0,0,0,2129,2125,1,0,0, - 0,2129,2127,1,0,0,0,2130,307,1,0,0,0,2131,2134,5,136,0,0,2132,2135, - 3,332,166,0,2133,2135,3,198,99,0,2134,2132,1,0,0,0,2134,2133,1,0, - 0,0,2135,2149,1,0,0,0,2136,2137,5,205,0,0,2137,2138,5,265,0,0,2138, - 2143,3,390,195,0,2139,2140,5,263,0,0,2140,2142,3,390,195,0,2141, - 2139,1,0,0,0,2142,2145,1,0,0,0,2143,2141,1,0,0,0,2143,2144,1,0,0, - 0,2144,2146,1,0,0,0,2145,2143,1,0,0,0,2146,2147,5,266,0,0,2147,2149, - 1,0,0,0,2148,2131,1,0,0,0,2148,2136,1,0,0,0,2149,309,1,0,0,0,2150, - 2163,3,314,157,0,2151,2152,5,190,0,0,2152,2153,3,312,156,0,2153, - 2154,5,265,0,0,2154,2155,3,330,165,0,2155,2161,5,266,0,0,2156,2157, - 5,157,0,0,2157,2158,5,265,0,0,2158,2159,3,330,165,0,2159,2160,5, - 266,0,0,2160,2162,1,0,0,0,2161,2156,1,0,0,0,2161,2162,1,0,0,0,2162, - 2164,1,0,0,0,2163,2151,1,0,0,0,2163,2164,1,0,0,0,2164,311,1,0,0, - 0,2165,2166,7,17,0,0,2166,313,1,0,0,0,2167,2175,3,318,159,0,2168, - 2170,5,9,0,0,2169,2168,1,0,0,0,2169,2170,1,0,0,0,2170,2171,1,0,0, - 0,2171,2173,3,390,195,0,2172,2174,3,316,158,0,2173,2172,1,0,0,0, - 2173,2174,1,0,0,0,2174,2176,1,0,0,0,2175,2169,1,0,0,0,2175,2176, - 1,0,0,0,2176,315,1,0,0,0,2177,2178,5,265,0,0,2178,2183,3,194,97, - 0,2179,2180,5,263,0,0,2180,2182,3,194,97,0,2181,2179,1,0,0,0,2182, - 2185,1,0,0,0,2183,2181,1,0,0,0,2183,2184,1,0,0,0,2184,2186,1,0,0, - 0,2185,2183,1,0,0,0,2186,2187,5,266,0,0,2187,317,1,0,0,0,2188,2193, - 3,200,100,0,2189,2193,3,320,160,0,2190,2193,3,324,162,0,2191,2193, - 3,326,163,0,2192,2188,1,0,0,0,2192,2189,1,0,0,0,2192,2190,1,0,0, - 0,2192,2191,1,0,0,0,2193,319,1,0,0,0,2194,2196,5,113,0,0,2195,2194, - 1,0,0,0,2195,2196,1,0,0,0,2196,2197,1,0,0,0,2197,2198,3,322,161, - 0,2198,321,1,0,0,0,2199,2200,5,265,0,0,2200,2201,3,212,106,0,2201, - 2202,5,266,0,0,2202,323,1,0,0,0,2203,2204,5,201,0,0,2204,2205,5, - 265,0,0,2205,2210,3,330,165,0,2206,2207,5,263,0,0,2207,2209,3,330, - 165,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,2216,5,266, - 0,0,2214,2215,5,216,0,0,2215,2217,5,140,0,0,2216,2214,1,0,0,0,2216, - 2217,1,0,0,0,2217,325,1,0,0,0,2218,2219,5,265,0,0,2219,2220,3,304, - 152,0,2220,2221,5,266,0,0,2221,327,1,0,0,0,2222,2225,3,194,97,0, - 2223,2225,3,330,165,0,2224,2222,1,0,0,0,2224,2223,1,0,0,0,2225,329, - 1,0,0,0,2226,2227,3,332,166,0,2227,331,1,0,0,0,2228,2229,6,166,-1, - 0,2229,2231,3,336,168,0,2230,2232,3,334,167,0,2231,2230,1,0,0,0, - 2231,2232,1,0,0,0,2232,2236,1,0,0,0,2233,2234,5,132,0,0,2234,2236, - 3,332,166,3,2235,2228,1,0,0,0,2235,2233,1,0,0,0,2236,2245,1,0,0, - 0,2237,2238,10,2,0,0,2238,2239,5,5,0,0,2239,2244,3,332,166,3,2240, - 2241,10,1,0,0,2241,2242,5,138,0,0,2242,2244,3,332,166,2,2243,2237, - 1,0,0,0,2243,2240,1,0,0,0,2244,2247,1,0,0,0,2245,2243,1,0,0,0,2245, - 2246,1,0,0,0,2246,333,1,0,0,0,2247,2245,1,0,0,0,2248,2249,3,344, - 172,0,2249,2250,3,336,168,0,2250,2307,1,0,0,0,2251,2252,3,344,172, - 0,2252,2253,3,346,173,0,2253,2254,3,322,161,0,2254,2307,1,0,0,0, - 2255,2257,5,132,0,0,2256,2255,1,0,0,0,2256,2257,1,0,0,0,2257,2258, - 1,0,0,0,2258,2259,5,15,0,0,2259,2260,3,336,168,0,2260,2261,5,5,0, - 0,2261,2262,3,336,168,0,2262,2307,1,0,0,0,2263,2265,5,132,0,0,2264, - 2263,1,0,0,0,2264,2265,1,0,0,0,2265,2266,1,0,0,0,2266,2267,5,94, - 0,0,2267,2268,5,265,0,0,2268,2273,3,330,165,0,2269,2270,5,263,0, - 0,2270,2272,3,330,165,0,2271,2269,1,0,0,0,2272,2275,1,0,0,0,2273, - 2271,1,0,0,0,2273,2274,1,0,0,0,2274,2276,1,0,0,0,2275,2273,1,0,0, - 0,2276,2277,5,266,0,0,2277,2307,1,0,0,0,2278,2280,5,132,0,0,2279, - 2278,1,0,0,0,2279,2280,1,0,0,0,2280,2281,1,0,0,0,2281,2282,5,94, - 0,0,2282,2307,3,322,161,0,2283,2285,5,132,0,0,2284,2283,1,0,0,0, - 2284,2285,1,0,0,0,2285,2286,1,0,0,0,2286,2287,7,18,0,0,2287,2290, - 3,336,168,0,2288,2289,5,62,0,0,2289,2291,3,336,168,0,2290,2288,1, - 0,0,0,2290,2291,1,0,0,0,2291,2307,1,0,0,0,2292,2293,7,19,0,0,2293, - 2307,3,336,168,0,2294,2296,5,108,0,0,2295,2297,5,132,0,0,2296,2295, - 1,0,0,0,2296,2297,1,0,0,0,2297,2298,1,0,0,0,2298,2307,7,20,0,0,2299, - 2301,5,108,0,0,2300,2302,5,132,0,0,2301,2300,1,0,0,0,2301,2302,1, - 0,0,0,2302,2303,1,0,0,0,2303,2304,5,57,0,0,2304,2305,5,82,0,0,2305, - 2307,3,336,168,0,2306,2248,1,0,0,0,2306,2251,1,0,0,0,2306,2256,1, - 0,0,0,2306,2264,1,0,0,0,2306,2279,1,0,0,0,2306,2284,1,0,0,0,2306, - 2292,1,0,0,0,2306,2294,1,0,0,0,2306,2299,1,0,0,0,2307,335,1,0,0, - 0,2308,2309,6,168,-1,0,2309,2313,3,340,170,0,2310,2311,7,21,0,0, - 2311,2313,3,336,168,4,2312,2308,1,0,0,0,2312,2310,1,0,0,0,2313,2325, - 1,0,0,0,2314,2315,10,3,0,0,2315,2316,7,22,0,0,2316,2324,3,336,168, - 4,2317,2318,10,2,0,0,2318,2319,7,21,0,0,2319,2324,3,336,168,3,2320, - 2321,10,1,0,0,2321,2322,5,260,0,0,2322,2324,3,336,168,2,2323,2314, - 1,0,0,0,2323,2317,1,0,0,0,2323,2320,1,0,0,0,2324,2327,1,0,0,0,2325, - 2323,1,0,0,0,2325,2326,1,0,0,0,2326,337,1,0,0,0,2327,2325,1,0,0, - 0,2328,2329,3,190,95,0,2329,2341,5,265,0,0,2330,2332,3,292,146,0, - 2331,2330,1,0,0,0,2331,2332,1,0,0,0,2332,2333,1,0,0,0,2333,2338, - 3,330,165,0,2334,2335,5,263,0,0,2335,2337,3,330,165,0,2336,2334, - 1,0,0,0,2337,2340,1,0,0,0,2338,2336,1,0,0,0,2338,2339,1,0,0,0,2339, - 2342,1,0,0,0,2340,2338,1,0,0,0,2341,2331,1,0,0,0,2341,2342,1,0,0, - 0,2342,2353,1,0,0,0,2343,2344,5,139,0,0,2344,2345,5,26,0,0,2345, - 2350,3,274,137,0,2346,2347,5,263,0,0,2347,2349,3,274,137,0,2348, - 2346,1,0,0,0,2349,2352,1,0,0,0,2350,2348,1,0,0,0,2350,2351,1,0,0, - 0,2351,2354,1,0,0,0,2352,2350,1,0,0,0,2353,2343,1,0,0,0,2353,2354, - 1,0,0,0,2354,2355,1,0,0,0,2355,2357,5,266,0,0,2356,2358,3,366,183, - 0,2357,2356,1,0,0,0,2357,2358,1,0,0,0,2358,2360,1,0,0,0,2359,2361, - 3,370,185,0,2360,2359,1,0,0,0,2360,2361,1,0,0,0,2361,339,1,0,0,0, - 2362,2363,6,170,-1,0,2363,2576,5,133,0,0,2364,2576,3,350,175,0,2365, - 2366,3,390,195,0,2366,2367,3,342,171,0,2367,2576,1,0,0,0,2368,2369, - 5,286,0,0,2369,2576,3,342,171,0,2370,2576,3,392,196,0,2371,2576, - 3,348,174,0,2372,2576,3,342,171,0,2373,2576,5,276,0,0,2374,2576, - 5,272,0,0,2375,2376,5,148,0,0,2376,2377,5,265,0,0,2377,2378,3,336, - 168,0,2378,2379,5,94,0,0,2379,2380,3,336,168,0,2380,2381,5,266,0, - 0,2381,2576,1,0,0,0,2382,2383,5,265,0,0,2383,2386,3,330,165,0,2384, - 2385,5,9,0,0,2385,2387,3,356,178,0,2386,2384,1,0,0,0,2386,2387,1, - 0,0,0,2387,2396,1,0,0,0,2388,2389,5,263,0,0,2389,2392,3,330,165, - 0,2390,2391,5,9,0,0,2391,2393,3,356,178,0,2392,2390,1,0,0,0,2392, - 2393,1,0,0,0,2393,2395,1,0,0,0,2394,2388,1,0,0,0,2395,2398,1,0,0, - 0,2396,2397,1,0,0,0,2396,2394,1,0,0,0,2397,2399,1,0,0,0,2398,2396, - 1,0,0,0,2399,2400,5,266,0,0,2400,2576,1,0,0,0,2401,2402,5,168,0, - 0,2402,2403,5,265,0,0,2403,2408,3,330,165,0,2404,2405,5,263,0,0, - 2405,2407,3,330,165,0,2406,2404,1,0,0,0,2407,2410,1,0,0,0,2408,2406, - 1,0,0,0,2408,2409,1,0,0,0,2409,2411,1,0,0,0,2410,2408,1,0,0,0,2411, - 2412,5,266,0,0,2412,2576,1,0,0,0,2413,2414,3,190,95,0,2414,2415, - 5,265,0,0,2415,2416,5,257,0,0,2416,2418,5,266,0,0,2417,2419,3,366, - 183,0,2418,2417,1,0,0,0,2418,2419,1,0,0,0,2419,2421,1,0,0,0,2420, - 2422,3,370,185,0,2421,2420,1,0,0,0,2421,2422,1,0,0,0,2422,2576,1, - 0,0,0,2423,2576,3,338,169,0,2424,2425,3,390,195,0,2425,2426,5,273, - 0,0,2426,2427,3,330,165,0,2427,2576,1,0,0,0,2428,2437,5,265,0,0, - 2429,2434,3,390,195,0,2430,2431,5,263,0,0,2431,2433,3,390,195,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,2440,5,266,0,0,2440,2441,5,273, - 0,0,2441,2576,3,330,165,0,2442,2443,5,265,0,0,2443,2444,3,212,106, - 0,2444,2445,5,266,0,0,2445,2576,1,0,0,0,2446,2447,5,66,0,0,2447, - 2448,5,265,0,0,2448,2449,3,212,106,0,2449,2450,5,266,0,0,2450,2576, - 1,0,0,0,2451,2452,5,28,0,0,2452,2454,3,336,168,0,2453,2455,3,364, - 182,0,2454,2453,1,0,0,0,2455,2456,1,0,0,0,2456,2454,1,0,0,0,2456, - 2457,1,0,0,0,2457,2460,1,0,0,0,2458,2459,5,59,0,0,2459,2461,3,330, - 165,0,2460,2458,1,0,0,0,2460,2461,1,0,0,0,2461,2462,1,0,0,0,2462, - 2463,5,61,0,0,2463,2576,1,0,0,0,2464,2466,5,28,0,0,2465,2467,3,364, - 182,0,2466,2465,1,0,0,0,2467,2468,1,0,0,0,2468,2466,1,0,0,0,2468, - 2469,1,0,0,0,2469,2472,1,0,0,0,2470,2471,5,59,0,0,2471,2473,3,330, - 165,0,2472,2470,1,0,0,0,2472,2473,1,0,0,0,2473,2474,1,0,0,0,2474, - 2475,5,61,0,0,2475,2576,1,0,0,0,2476,2477,5,29,0,0,2477,2478,5,265, - 0,0,2478,2479,3,330,165,0,2479,2480,5,9,0,0,2480,2481,3,356,178, - 0,2481,2482,5,266,0,0,2482,2576,1,0,0,0,2483,2484,5,195,0,0,2484, - 2485,5,265,0,0,2485,2486,3,330,165,0,2486,2487,5,9,0,0,2487,2488, - 3,356,178,0,2488,2489,5,266,0,0,2489,2576,1,0,0,0,2490,2491,5,8, - 0,0,2491,2500,5,267,0,0,2492,2497,3,330,165,0,2493,2494,5,263,0, - 0,2494,2496,3,330,165,0,2495,2493,1,0,0,0,2496,2499,1,0,0,0,2497, - 2495,1,0,0,0,2497,2498,1,0,0,0,2498,2501,1,0,0,0,2499,2497,1,0,0, - 0,2500,2492,1,0,0,0,2500,2501,1,0,0,0,2501,2502,1,0,0,0,2502,2576, - 5,268,0,0,2503,2576,3,196,98,0,2504,2576,5,40,0,0,2505,2509,5,42, - 0,0,2506,2507,5,265,0,0,2507,2508,5,277,0,0,2508,2510,5,266,0,0, - 2509,2506,1,0,0,0,2509,2510,1,0,0,0,2510,2576,1,0,0,0,2511,2515, - 5,43,0,0,2512,2513,5,265,0,0,2513,2514,5,277,0,0,2514,2516,5,266, - 0,0,2515,2512,1,0,0,0,2515,2516,1,0,0,0,2516,2576,1,0,0,0,2517,2521, - 5,119,0,0,2518,2519,5,265,0,0,2519,2520,5,277,0,0,2520,2522,5,266, - 0,0,2521,2518,1,0,0,0,2521,2522,1,0,0,0,2522,2576,1,0,0,0,2523,2527, - 5,120,0,0,2524,2525,5,265,0,0,2525,2526,5,277,0,0,2526,2528,5,266, - 0,0,2527,2524,1,0,0,0,2527,2528,1,0,0,0,2528,2576,1,0,0,0,2529,2576, - 5,44,0,0,2530,2576,5,41,0,0,2531,2532,5,184,0,0,2532,2533,5,265, - 0,0,2533,2534,3,336,168,0,2534,2535,5,82,0,0,2535,2538,3,336,168, - 0,2536,2537,5,78,0,0,2537,2539,3,336,168,0,2538,2536,1,0,0,0,2538, - 2539,1,0,0,0,2539,2540,1,0,0,0,2540,2541,5,266,0,0,2541,2576,1,0, - 0,0,2542,2543,5,131,0,0,2543,2544,5,265,0,0,2544,2547,3,336,168, - 0,2545,2546,5,263,0,0,2546,2548,3,354,177,0,2547,2545,1,0,0,0,2547, - 2548,1,0,0,0,2548,2549,1,0,0,0,2549,2550,5,266,0,0,2550,2576,1,0, - 0,0,2551,2552,5,68,0,0,2552,2553,5,265,0,0,2553,2554,3,390,195,0, - 2554,2555,5,82,0,0,2555,2556,3,336,168,0,2556,2557,5,266,0,0,2557, - 2576,1,0,0,0,2558,2559,5,265,0,0,2559,2560,3,330,165,0,2560,2561, - 5,266,0,0,2561,2576,1,0,0,0,2562,2563,5,88,0,0,2563,2572,5,265,0, - 0,2564,2569,3,384,192,0,2565,2566,5,263,0,0,2566,2568,3,384,192, - 0,2567,2565,1,0,0,0,2568,2571,1,0,0,0,2569,2567,1,0,0,0,2569,2570, - 1,0,0,0,2570,2573,1,0,0,0,2571,2569,1,0,0,0,2572,2564,1,0,0,0,2572, - 2573,1,0,0,0,2573,2574,1,0,0,0,2574,2576,5,266,0,0,2575,2362,1,0, - 0,0,2575,2364,1,0,0,0,2575,2365,1,0,0,0,2575,2368,1,0,0,0,2575,2370, - 1,0,0,0,2575,2371,1,0,0,0,2575,2372,1,0,0,0,2575,2373,1,0,0,0,2575, - 2374,1,0,0,0,2575,2375,1,0,0,0,2575,2382,1,0,0,0,2575,2401,1,0,0, - 0,2575,2413,1,0,0,0,2575,2423,1,0,0,0,2575,2424,1,0,0,0,2575,2428, - 1,0,0,0,2575,2442,1,0,0,0,2575,2446,1,0,0,0,2575,2451,1,0,0,0,2575, - 2464,1,0,0,0,2575,2476,1,0,0,0,2575,2483,1,0,0,0,2575,2490,1,0,0, - 0,2575,2503,1,0,0,0,2575,2504,1,0,0,0,2575,2505,1,0,0,0,2575,2511, - 1,0,0,0,2575,2517,1,0,0,0,2575,2523,1,0,0,0,2575,2529,1,0,0,0,2575, - 2530,1,0,0,0,2575,2531,1,0,0,0,2575,2542,1,0,0,0,2575,2551,1,0,0, - 0,2575,2558,1,0,0,0,2575,2562,1,0,0,0,2576,2587,1,0,0,0,2577,2578, - 10,15,0,0,2578,2579,5,267,0,0,2579,2580,3,336,168,0,2580,2581,5, - 268,0,0,2581,2586,1,0,0,0,2582,2583,10,13,0,0,2583,2584,5,261,0, - 0,2584,2586,3,390,195,0,2585,2577,1,0,0,0,2585,2582,1,0,0,0,2586, - 2589,1,0,0,0,2587,2585,1,0,0,0,2587,2588,1,0,0,0,2588,341,1,0,0, - 0,2589,2587,1,0,0,0,2590,2597,5,274,0,0,2591,2594,5,275,0,0,2592, - 2593,5,198,0,0,2593,2595,5,274,0,0,2594,2592,1,0,0,0,2594,2595,1, - 0,0,0,2595,2597,1,0,0,0,2596,2590,1,0,0,0,2596,2591,1,0,0,0,2597, - 343,1,0,0,0,2598,2599,7,23,0,0,2599,345,1,0,0,0,2600,2601,7,24,0, - 0,2601,347,1,0,0,0,2602,2603,7,25,0,0,2603,349,1,0,0,0,2604,2605, - 5,277,0,0,2605,2619,3,352,176,0,2606,2607,5,265,0,0,2607,2608,5, - 277,0,0,2608,2609,5,266,0,0,2609,2619,3,352,176,0,2610,2611,5,101, - 0,0,2611,2612,5,277,0,0,2612,2619,3,352,176,0,2613,2614,5,101,0, - 0,2614,2615,5,265,0,0,2615,2616,5,277,0,0,2616,2617,5,266,0,0,2617, - 2619,3,352,176,0,2618,2604,1,0,0,0,2618,2606,1,0,0,0,2618,2610,1, - 0,0,0,2618,2613,1,0,0,0,2619,351,1,0,0,0,2620,2621,7,26,0,0,2621, - 353,1,0,0,0,2622,2623,7,27,0,0,2623,355,1,0,0,0,2624,2625,6,178, - -1,0,2625,2626,5,8,0,0,2626,2627,5,251,0,0,2627,2628,3,356,178,0, - 2628,2629,5,253,0,0,2629,2670,1,0,0,0,2630,2631,5,235,0,0,2631,2632, - 5,251,0,0,2632,2633,3,356,178,0,2633,2634,5,263,0,0,2634,2635,3, - 356,178,0,2635,2636,5,253,0,0,2636,2670,1,0,0,0,2637,2638,5,240, - 0,0,2638,2639,5,251,0,0,2639,2640,3,390,195,0,2640,2647,3,356,178, - 0,2641,2642,5,263,0,0,2642,2643,3,390,195,0,2643,2644,3,356,178, - 0,2644,2646,1,0,0,0,2645,2641,1,0,0,0,2646,2649,1,0,0,0,2647,2645, - 1,0,0,0,2647,2648,1,0,0,0,2648,2650,1,0,0,0,2649,2647,1,0,0,0,2650, - 2651,5,253,0,0,2651,2670,1,0,0,0,2652,2655,3,362,181,0,2653,2655, - 3,358,179,0,2654,2652,1,0,0,0,2654,2653,1,0,0,0,2655,2667,1,0,0, - 0,2656,2657,5,265,0,0,2657,2662,3,360,180,0,2658,2659,5,263,0,0, - 2659,2661,3,360,180,0,2660,2658,1,0,0,0,2661,2664,1,0,0,0,2662,2660, - 1,0,0,0,2662,2663,1,0,0,0,2663,2665,1,0,0,0,2664,2662,1,0,0,0,2665, - 2666,5,266,0,0,2666,2668,1,0,0,0,2667,2656,1,0,0,0,2667,2668,1,0, - 0,0,2668,2670,1,0,0,0,2669,2624,1,0,0,0,2669,2630,1,0,0,0,2669,2637, - 1,0,0,0,2669,2654,1,0,0,0,2670,2675,1,0,0,0,2671,2672,10,5,0,0,2672, - 2674,5,8,0,0,2673,2671,1,0,0,0,2674,2677,1,0,0,0,2675,2673,1,0,0, - 0,2675,2676,1,0,0,0,2676,357,1,0,0,0,2677,2675,1,0,0,0,2678,2679, - 7,28,0,0,2679,359,1,0,0,0,2680,2683,5,277,0,0,2681,2683,3,356,178, - 0,2682,2680,1,0,0,0,2682,2681,1,0,0,0,2683,361,1,0,0,0,2684,2689, - 5,284,0,0,2685,2689,5,285,0,0,2686,2689,5,286,0,0,2687,2689,3,390, - 195,0,2688,2684,1,0,0,0,2688,2685,1,0,0,0,2688,2686,1,0,0,0,2688, - 2687,1,0,0,0,2689,363,1,0,0,0,2690,2691,5,214,0,0,2691,2692,3,330, - 165,0,2692,2693,5,192,0,0,2693,2694,3,330,165,0,2694,365,1,0,0,0, - 2695,2696,5,74,0,0,2696,2697,5,265,0,0,2697,2698,3,280,140,0,2698, - 2699,5,266,0,0,2699,367,1,0,0,0,2700,2705,3,330,165,0,2701,2702, - 5,263,0,0,2702,2704,3,330,165,0,2703,2701,1,0,0,0,2704,2707,1,0, - 0,0,2705,2703,1,0,0,0,2705,2706,1,0,0,0,2706,369,1,0,0,0,2707,2705, - 1,0,0,0,2708,2709,5,143,0,0,2709,2713,5,265,0,0,2710,2711,5,145, - 0,0,2711,2712,5,26,0,0,2712,2714,3,368,184,0,2713,2710,1,0,0,0,2713, - 2714,1,0,0,0,2714,2725,1,0,0,0,2715,2716,5,139,0,0,2716,2717,5,26, - 0,0,2717,2722,3,274,137,0,2718,2719,5,263,0,0,2719,2721,3,274,137, - 0,2720,2718,1,0,0,0,2721,2724,1,0,0,0,2722,2720,1,0,0,0,2722,2723, - 1,0,0,0,2723,2726,1,0,0,0,2724,2722,1,0,0,0,2725,2715,1,0,0,0,2725, - 2726,1,0,0,0,2726,2728,1,0,0,0,2727,2729,3,372,186,0,2728,2727,1, - 0,0,0,2728,2729,1,0,0,0,2729,2730,1,0,0,0,2730,2731,5,266,0,0,2731, - 371,1,0,0,0,2732,2733,5,154,0,0,2733,2749,3,374,187,0,2734,2735, - 5,169,0,0,2735,2749,3,374,187,0,2736,2737,5,154,0,0,2737,2738,5, - 15,0,0,2738,2739,3,374,187,0,2739,2740,5,5,0,0,2740,2741,3,374,187, - 0,2741,2749,1,0,0,0,2742,2743,5,169,0,0,2743,2744,5,15,0,0,2744, - 2745,3,374,187,0,2745,2746,5,5,0,0,2746,2747,3,374,187,0,2747,2749, - 1,0,0,0,2748,2732,1,0,0,0,2748,2734,1,0,0,0,2748,2736,1,0,0,0,2748, - 2742,1,0,0,0,2749,373,1,0,0,0,2750,2751,5,199,0,0,2751,2760,5,149, - 0,0,2752,2753,5,199,0,0,2753,2760,5,77,0,0,2754,2755,5,39,0,0,2755, - 2760,5,168,0,0,2756,2757,3,330,165,0,2757,2758,7,29,0,0,2758,2760, - 1,0,0,0,2759,2750,1,0,0,0,2759,2752,1,0,0,0,2759,2754,1,0,0,0,2759, - 2756,1,0,0,0,2760,375,1,0,0,0,2761,2762,3,390,195,0,2762,2763,5, - 261,0,0,2763,2764,3,390,195,0,2764,2767,1,0,0,0,2765,2767,3,390, - 195,0,2766,2761,1,0,0,0,2766,2765,1,0,0,0,2767,377,1,0,0,0,2768, - 2773,3,376,188,0,2769,2770,5,263,0,0,2770,2772,3,376,188,0,2771, - 2769,1,0,0,0,2772,2775,1,0,0,0,2773,2771,1,0,0,0,2773,2774,1,0,0, - 0,2774,379,1,0,0,0,2775,2773,1,0,0,0,2776,2790,5,2,0,0,2777,2790, - 5,4,0,0,2778,2790,5,58,0,0,2779,2790,5,37,0,0,2780,2790,5,99,0,0, - 2781,2790,5,162,0,0,2782,2787,5,174,0,0,2783,2784,5,265,0,0,2784, - 2785,3,390,195,0,2785,2786,5,266,0,0,2786,2788,1,0,0,0,2787,2783, - 1,0,0,0,2787,2788,1,0,0,0,2788,2790,1,0,0,0,2789,2776,1,0,0,0,2789, - 2777,1,0,0,0,2789,2778,1,0,0,0,2789,2779,1,0,0,0,2789,2780,1,0,0, - 0,2789,2781,1,0,0,0,2789,2782,1,0,0,0,2790,381,1,0,0,0,2791,2792, - 7,30,0,0,2792,383,1,0,0,0,2793,2798,3,390,195,0,2794,2795,5,261, - 0,0,2795,2797,3,390,195,0,2796,2794,1,0,0,0,2797,2800,1,0,0,0,2798, - 2796,1,0,0,0,2798,2799,1,0,0,0,2799,385,1,0,0,0,2800,2798,1,0,0, - 0,2801,2807,4,193,13,0,2802,2803,3,390,195,0,2803,2804,5,261,0,0, - 2804,2805,3,192,96,0,2805,2808,1,0,0,0,2806,2808,3,192,96,0,2807, - 2802,1,0,0,0,2807,2806,1,0,0,0,2808,2818,1,0,0,0,2809,2814,3,390, - 195,0,2810,2811,5,261,0,0,2811,2813,3,390,195,0,2812,2810,1,0,0, - 0,2813,2816,1,0,0,0,2814,2812,1,0,0,0,2814,2815,1,0,0,0,2815,2818, - 1,0,0,0,2816,2814,1,0,0,0,2817,2801,1,0,0,0,2817,2809,1,0,0,0,2818, - 387,1,0,0,0,2819,2820,5,166,0,0,2820,2826,3,390,195,0,2821,2822, - 5,204,0,0,2822,2826,3,390,195,0,2823,2824,5,87,0,0,2824,2826,3,390, - 195,0,2825,2819,1,0,0,0,2825,2821,1,0,0,0,2825,2823,1,0,0,0,2826, - 389,1,0,0,0,2827,2833,5,280,0,0,2828,2833,5,274,0,0,2829,2833,3, - 396,198,0,2830,2833,5,283,0,0,2831,2833,5,281,0,0,2832,2827,1,0, - 0,0,2832,2828,1,0,0,0,2832,2829,1,0,0,0,2832,2830,1,0,0,0,2832,2831, - 1,0,0,0,2833,391,1,0,0,0,2834,2836,5,256,0,0,2835,2834,1,0,0,0,2835, - 2836,1,0,0,0,2836,2837,1,0,0,0,2837,2847,5,278,0,0,2838,2840,5,256, - 0,0,2839,2838,1,0,0,0,2839,2840,1,0,0,0,2840,2841,1,0,0,0,2841,2847, - 5,279,0,0,2842,2844,5,256,0,0,2843,2842,1,0,0,0,2843,2844,1,0,0, - 0,2844,2845,1,0,0,0,2845,2847,5,277,0,0,2846,2835,1,0,0,0,2846,2839, - 1,0,0,0,2846,2843,1,0,0,0,2847,393,1,0,0,0,2848,2849,7,31,0,0,2849, - 395,1,0,0,0,2850,2851,7,32,0,0,2851,397,1,0,0,0,362,401,408,432, + 0,0,2054,2055,1,0,0,0,2055,2064,1,0,0,0,2056,2058,3,300,150,0,2057, + 2059,3,296,148,0,2058,2057,1,0,0,0,2058,2059,1,0,0,0,2059,2064,1, + 0,0,0,2060,2064,3,302,151,0,2061,2062,4,147,4,0,2062,2064,3,192, + 96,0,2063,2052,1,0,0,0,2063,2056,1,0,0,0,2063,2060,1,0,0,0,2063, + 2061,1,0,0,0,2064,295,1,0,0,0,2065,2067,5,9,0,0,2066,2065,1,0,0, + 0,2066,2067,1,0,0,0,2067,2068,1,0,0,0,2068,2069,3,390,195,0,2069, + 297,1,0,0,0,2070,2071,3,194,97,0,2071,299,1,0,0,0,2072,2073,3,330, + 165,0,2073,301,1,0,0,0,2074,2075,3,384,192,0,2075,2076,5,261,0,0, + 2076,2078,1,0,0,0,2077,2074,1,0,0,0,2077,2078,1,0,0,0,2078,2079, + 1,0,0,0,2079,2080,5,257,0,0,2080,303,1,0,0,0,2081,2082,6,152,-1, + 0,2082,2083,3,310,155,0,2083,2097,1,0,0,0,2084,2093,10,2,0,0,2085, + 2086,5,38,0,0,2086,2087,5,109,0,0,2087,2094,3,310,155,0,2088,2089, + 3,306,153,0,2089,2090,5,109,0,0,2090,2091,3,304,152,0,2091,2092, + 3,308,154,0,2092,2094,1,0,0,0,2093,2085,1,0,0,0,2093,2088,1,0,0, + 0,2094,2096,1,0,0,0,2095,2084,1,0,0,0,2096,2099,1,0,0,0,2097,2095, + 1,0,0,0,2097,2098,1,0,0,0,2098,305,1,0,0,0,2099,2097,1,0,0,0,2100, + 2102,5,97,0,0,2101,2100,1,0,0,0,2101,2102,1,0,0,0,2102,2132,1,0, + 0,0,2103,2105,5,114,0,0,2104,2106,5,97,0,0,2105,2104,1,0,0,0,2105, + 2106,1,0,0,0,2106,2132,1,0,0,0,2107,2109,5,165,0,0,2108,2110,5,97, + 0,0,2109,2108,1,0,0,0,2109,2110,1,0,0,0,2110,2132,1,0,0,0,2111,2113, + 5,114,0,0,2112,2114,5,141,0,0,2113,2112,1,0,0,0,2113,2114,1,0,0, + 0,2114,2132,1,0,0,0,2115,2117,5,165,0,0,2116,2118,5,141,0,0,2117, + 2116,1,0,0,0,2117,2118,1,0,0,0,2118,2132,1,0,0,0,2119,2121,5,83, + 0,0,2120,2122,5,141,0,0,2121,2120,1,0,0,0,2121,2122,1,0,0,0,2122, + 2132,1,0,0,0,2123,2124,5,114,0,0,2124,2132,5,177,0,0,2125,2126,5, + 165,0,0,2126,2132,5,177,0,0,2127,2128,5,114,0,0,2128,2132,5,7,0, + 0,2129,2130,5,165,0,0,2130,2132,5,7,0,0,2131,2101,1,0,0,0,2131,2103, + 1,0,0,0,2131,2107,1,0,0,0,2131,2111,1,0,0,0,2131,2115,1,0,0,0,2131, + 2119,1,0,0,0,2131,2123,1,0,0,0,2131,2125,1,0,0,0,2131,2127,1,0,0, + 0,2131,2129,1,0,0,0,2132,307,1,0,0,0,2133,2136,5,136,0,0,2134,2137, + 3,332,166,0,2135,2137,3,198,99,0,2136,2134,1,0,0,0,2136,2135,1,0, + 0,0,2137,2151,1,0,0,0,2138,2139,5,205,0,0,2139,2140,5,265,0,0,2140, + 2145,3,390,195,0,2141,2142,5,263,0,0,2142,2144,3,390,195,0,2143, + 2141,1,0,0,0,2144,2147,1,0,0,0,2145,2143,1,0,0,0,2145,2146,1,0,0, + 0,2146,2148,1,0,0,0,2147,2145,1,0,0,0,2148,2149,5,266,0,0,2149,2151, + 1,0,0,0,2150,2133,1,0,0,0,2150,2138,1,0,0,0,2151,309,1,0,0,0,2152, + 2165,3,314,157,0,2153,2154,5,190,0,0,2154,2155,3,312,156,0,2155, + 2156,5,265,0,0,2156,2157,3,330,165,0,2157,2163,5,266,0,0,2158,2159, + 5,157,0,0,2159,2160,5,265,0,0,2160,2161,3,330,165,0,2161,2162,5, + 266,0,0,2162,2164,1,0,0,0,2163,2158,1,0,0,0,2163,2164,1,0,0,0,2164, + 2166,1,0,0,0,2165,2153,1,0,0,0,2165,2166,1,0,0,0,2166,311,1,0,0, + 0,2167,2168,7,17,0,0,2168,313,1,0,0,0,2169,2177,3,318,159,0,2170, + 2172,5,9,0,0,2171,2170,1,0,0,0,2171,2172,1,0,0,0,2172,2173,1,0,0, + 0,2173,2175,3,390,195,0,2174,2176,3,316,158,0,2175,2174,1,0,0,0, + 2175,2176,1,0,0,0,2176,2178,1,0,0,0,2177,2171,1,0,0,0,2177,2178, + 1,0,0,0,2178,315,1,0,0,0,2179,2180,5,265,0,0,2180,2185,3,194,97, + 0,2181,2182,5,263,0,0,2182,2184,3,194,97,0,2183,2181,1,0,0,0,2184, + 2187,1,0,0,0,2185,2183,1,0,0,0,2185,2186,1,0,0,0,2186,2188,1,0,0, + 0,2187,2185,1,0,0,0,2188,2189,5,266,0,0,2189,317,1,0,0,0,2190,2195, + 3,200,100,0,2191,2195,3,320,160,0,2192,2195,3,324,162,0,2193,2195, + 3,326,163,0,2194,2190,1,0,0,0,2194,2191,1,0,0,0,2194,2192,1,0,0, + 0,2194,2193,1,0,0,0,2195,319,1,0,0,0,2196,2198,5,113,0,0,2197,2196, + 1,0,0,0,2197,2198,1,0,0,0,2198,2199,1,0,0,0,2199,2200,3,322,161, + 0,2200,321,1,0,0,0,2201,2202,5,265,0,0,2202,2203,3,212,106,0,2203, + 2204,5,266,0,0,2204,323,1,0,0,0,2205,2206,5,201,0,0,2206,2207,5, + 265,0,0,2207,2212,3,330,165,0,2208,2209,5,263,0,0,2209,2211,3,330, + 165,0,2210,2208,1,0,0,0,2211,2214,1,0,0,0,2212,2210,1,0,0,0,2212, + 2213,1,0,0,0,2213,2215,1,0,0,0,2214,2212,1,0,0,0,2215,2218,5,266, + 0,0,2216,2217,5,216,0,0,2217,2219,5,140,0,0,2218,2216,1,0,0,0,2218, + 2219,1,0,0,0,2219,325,1,0,0,0,2220,2221,5,265,0,0,2221,2222,3,304, + 152,0,2222,2223,5,266,0,0,2223,327,1,0,0,0,2224,2227,3,194,97,0, + 2225,2227,3,330,165,0,2226,2224,1,0,0,0,2226,2225,1,0,0,0,2227,329, + 1,0,0,0,2228,2229,3,332,166,0,2229,331,1,0,0,0,2230,2231,6,166,-1, + 0,2231,2233,3,336,168,0,2232,2234,3,334,167,0,2233,2232,1,0,0,0, + 2233,2234,1,0,0,0,2234,2238,1,0,0,0,2235,2236,5,132,0,0,2236,2238, + 3,332,166,3,2237,2230,1,0,0,0,2237,2235,1,0,0,0,2238,2247,1,0,0, + 0,2239,2240,10,2,0,0,2240,2241,5,5,0,0,2241,2246,3,332,166,3,2242, + 2243,10,1,0,0,2243,2244,5,138,0,0,2244,2246,3,332,166,2,2245,2239, + 1,0,0,0,2245,2242,1,0,0,0,2246,2249,1,0,0,0,2247,2245,1,0,0,0,2247, + 2248,1,0,0,0,2248,333,1,0,0,0,2249,2247,1,0,0,0,2250,2251,3,344, + 172,0,2251,2252,3,336,168,0,2252,2309,1,0,0,0,2253,2254,3,344,172, + 0,2254,2255,3,346,173,0,2255,2256,3,322,161,0,2256,2309,1,0,0,0, + 2257,2259,5,132,0,0,2258,2257,1,0,0,0,2258,2259,1,0,0,0,2259,2260, + 1,0,0,0,2260,2261,5,15,0,0,2261,2262,3,336,168,0,2262,2263,5,5,0, + 0,2263,2264,3,336,168,0,2264,2309,1,0,0,0,2265,2267,5,132,0,0,2266, + 2265,1,0,0,0,2266,2267,1,0,0,0,2267,2268,1,0,0,0,2268,2269,5,94, + 0,0,2269,2270,5,265,0,0,2270,2275,3,330,165,0,2271,2272,5,263,0, + 0,2272,2274,3,330,165,0,2273,2271,1,0,0,0,2274,2277,1,0,0,0,2275, + 2273,1,0,0,0,2275,2276,1,0,0,0,2276,2278,1,0,0,0,2277,2275,1,0,0, + 0,2278,2279,5,266,0,0,2279,2309,1,0,0,0,2280,2282,5,132,0,0,2281, + 2280,1,0,0,0,2281,2282,1,0,0,0,2282,2283,1,0,0,0,2283,2284,5,94, + 0,0,2284,2309,3,322,161,0,2285,2287,5,132,0,0,2286,2285,1,0,0,0, + 2286,2287,1,0,0,0,2287,2288,1,0,0,0,2288,2289,7,18,0,0,2289,2292, + 3,336,168,0,2290,2291,5,62,0,0,2291,2293,3,336,168,0,2292,2290,1, + 0,0,0,2292,2293,1,0,0,0,2293,2309,1,0,0,0,2294,2295,7,19,0,0,2295, + 2309,3,336,168,0,2296,2298,5,108,0,0,2297,2299,5,132,0,0,2298,2297, + 1,0,0,0,2298,2299,1,0,0,0,2299,2300,1,0,0,0,2300,2309,7,20,0,0,2301, + 2303,5,108,0,0,2302,2304,5,132,0,0,2303,2302,1,0,0,0,2303,2304,1, + 0,0,0,2304,2305,1,0,0,0,2305,2306,5,57,0,0,2306,2307,5,82,0,0,2307, + 2309,3,336,168,0,2308,2250,1,0,0,0,2308,2253,1,0,0,0,2308,2258,1, + 0,0,0,2308,2266,1,0,0,0,2308,2281,1,0,0,0,2308,2286,1,0,0,0,2308, + 2294,1,0,0,0,2308,2296,1,0,0,0,2308,2301,1,0,0,0,2309,335,1,0,0, + 0,2310,2311,6,168,-1,0,2311,2315,3,340,170,0,2312,2313,7,21,0,0, + 2313,2315,3,336,168,4,2314,2310,1,0,0,0,2314,2312,1,0,0,0,2315,2327, + 1,0,0,0,2316,2317,10,3,0,0,2317,2318,7,22,0,0,2318,2326,3,336,168, + 4,2319,2320,10,2,0,0,2320,2321,7,21,0,0,2321,2326,3,336,168,3,2322, + 2323,10,1,0,0,2323,2324,5,260,0,0,2324,2326,3,336,168,2,2325,2316, + 1,0,0,0,2325,2319,1,0,0,0,2325,2322,1,0,0,0,2326,2329,1,0,0,0,2327, + 2325,1,0,0,0,2327,2328,1,0,0,0,2328,337,1,0,0,0,2329,2327,1,0,0, + 0,2330,2331,3,190,95,0,2331,2343,5,265,0,0,2332,2334,3,292,146,0, + 2333,2332,1,0,0,0,2333,2334,1,0,0,0,2334,2335,1,0,0,0,2335,2340, + 3,330,165,0,2336,2337,5,263,0,0,2337,2339,3,330,165,0,2338,2336, + 1,0,0,0,2339,2342,1,0,0,0,2340,2338,1,0,0,0,2340,2341,1,0,0,0,2341, + 2344,1,0,0,0,2342,2340,1,0,0,0,2343,2333,1,0,0,0,2343,2344,1,0,0, + 0,2344,2355,1,0,0,0,2345,2346,5,139,0,0,2346,2347,5,26,0,0,2347, + 2352,3,274,137,0,2348,2349,5,263,0,0,2349,2351,3,274,137,0,2350, + 2348,1,0,0,0,2351,2354,1,0,0,0,2352,2350,1,0,0,0,2352,2353,1,0,0, + 0,2353,2356,1,0,0,0,2354,2352,1,0,0,0,2355,2345,1,0,0,0,2355,2356, + 1,0,0,0,2356,2357,1,0,0,0,2357,2359,5,266,0,0,2358,2360,3,366,183, + 0,2359,2358,1,0,0,0,2359,2360,1,0,0,0,2360,2362,1,0,0,0,2361,2363, + 3,370,185,0,2362,2361,1,0,0,0,2362,2363,1,0,0,0,2363,339,1,0,0,0, + 2364,2365,6,170,-1,0,2365,2578,5,133,0,0,2366,2578,3,350,175,0,2367, + 2368,3,390,195,0,2368,2369,3,342,171,0,2369,2578,1,0,0,0,2370,2371, + 5,286,0,0,2371,2578,3,342,171,0,2372,2578,3,392,196,0,2373,2578, + 3,348,174,0,2374,2578,3,342,171,0,2375,2578,5,276,0,0,2376,2578, + 5,272,0,0,2377,2378,5,148,0,0,2378,2379,5,265,0,0,2379,2380,3,336, + 168,0,2380,2381,5,94,0,0,2381,2382,3,336,168,0,2382,2383,5,266,0, + 0,2383,2578,1,0,0,0,2384,2385,5,265,0,0,2385,2388,3,330,165,0,2386, + 2387,5,9,0,0,2387,2389,3,356,178,0,2388,2386,1,0,0,0,2388,2389,1, + 0,0,0,2389,2398,1,0,0,0,2390,2391,5,263,0,0,2391,2394,3,330,165, + 0,2392,2393,5,9,0,0,2393,2395,3,356,178,0,2394,2392,1,0,0,0,2394, + 2395,1,0,0,0,2395,2397,1,0,0,0,2396,2390,1,0,0,0,2397,2400,1,0,0, + 0,2398,2399,1,0,0,0,2398,2396,1,0,0,0,2399,2401,1,0,0,0,2400,2398, + 1,0,0,0,2401,2402,5,266,0,0,2402,2578,1,0,0,0,2403,2404,5,168,0, + 0,2404,2405,5,265,0,0,2405,2410,3,330,165,0,2406,2407,5,263,0,0, + 2407,2409,3,330,165,0,2408,2406,1,0,0,0,2409,2412,1,0,0,0,2410,2408, + 1,0,0,0,2410,2411,1,0,0,0,2411,2413,1,0,0,0,2412,2410,1,0,0,0,2413, + 2414,5,266,0,0,2414,2578,1,0,0,0,2415,2416,3,190,95,0,2416,2417, + 5,265,0,0,2417,2418,5,257,0,0,2418,2420,5,266,0,0,2419,2421,3,366, + 183,0,2420,2419,1,0,0,0,2420,2421,1,0,0,0,2421,2423,1,0,0,0,2422, + 2424,3,370,185,0,2423,2422,1,0,0,0,2423,2424,1,0,0,0,2424,2578,1, + 0,0,0,2425,2578,3,338,169,0,2426,2427,3,390,195,0,2427,2428,5,273, + 0,0,2428,2429,3,330,165,0,2429,2578,1,0,0,0,2430,2439,5,265,0,0, + 2431,2436,3,390,195,0,2432,2433,5,263,0,0,2433,2435,3,390,195,0, + 2434,2432,1,0,0,0,2435,2438,1,0,0,0,2436,2434,1,0,0,0,2436,2437, + 1,0,0,0,2437,2440,1,0,0,0,2438,2436,1,0,0,0,2439,2431,1,0,0,0,2439, + 2440,1,0,0,0,2440,2441,1,0,0,0,2441,2442,5,266,0,0,2442,2443,5,273, + 0,0,2443,2578,3,330,165,0,2444,2445,5,265,0,0,2445,2446,3,212,106, + 0,2446,2447,5,266,0,0,2447,2578,1,0,0,0,2448,2449,5,66,0,0,2449, + 2450,5,265,0,0,2450,2451,3,212,106,0,2451,2452,5,266,0,0,2452,2578, + 1,0,0,0,2453,2454,5,28,0,0,2454,2456,3,336,168,0,2455,2457,3,364, + 182,0,2456,2455,1,0,0,0,2457,2458,1,0,0,0,2458,2456,1,0,0,0,2458, + 2459,1,0,0,0,2459,2462,1,0,0,0,2460,2461,5,59,0,0,2461,2463,3,330, + 165,0,2462,2460,1,0,0,0,2462,2463,1,0,0,0,2463,2464,1,0,0,0,2464, + 2465,5,61,0,0,2465,2578,1,0,0,0,2466,2468,5,28,0,0,2467,2469,3,364, + 182,0,2468,2467,1,0,0,0,2469,2470,1,0,0,0,2470,2468,1,0,0,0,2470, + 2471,1,0,0,0,2471,2474,1,0,0,0,2472,2473,5,59,0,0,2473,2475,3,330, + 165,0,2474,2472,1,0,0,0,2474,2475,1,0,0,0,2475,2476,1,0,0,0,2476, + 2477,5,61,0,0,2477,2578,1,0,0,0,2478,2479,5,29,0,0,2479,2480,5,265, + 0,0,2480,2481,3,330,165,0,2481,2482,5,9,0,0,2482,2483,3,356,178, + 0,2483,2484,5,266,0,0,2484,2578,1,0,0,0,2485,2486,5,195,0,0,2486, + 2487,5,265,0,0,2487,2488,3,330,165,0,2488,2489,5,9,0,0,2489,2490, + 3,356,178,0,2490,2491,5,266,0,0,2491,2578,1,0,0,0,2492,2493,5,8, + 0,0,2493,2502,5,267,0,0,2494,2499,3,330,165,0,2495,2496,5,263,0, + 0,2496,2498,3,330,165,0,2497,2495,1,0,0,0,2498,2501,1,0,0,0,2499, + 2497,1,0,0,0,2499,2500,1,0,0,0,2500,2503,1,0,0,0,2501,2499,1,0,0, + 0,2502,2494,1,0,0,0,2502,2503,1,0,0,0,2503,2504,1,0,0,0,2504,2578, + 5,268,0,0,2505,2578,3,196,98,0,2506,2578,5,40,0,0,2507,2511,5,42, + 0,0,2508,2509,5,265,0,0,2509,2510,5,277,0,0,2510,2512,5,266,0,0, + 2511,2508,1,0,0,0,2511,2512,1,0,0,0,2512,2578,1,0,0,0,2513,2517, + 5,43,0,0,2514,2515,5,265,0,0,2515,2516,5,277,0,0,2516,2518,5,266, + 0,0,2517,2514,1,0,0,0,2517,2518,1,0,0,0,2518,2578,1,0,0,0,2519,2523, + 5,119,0,0,2520,2521,5,265,0,0,2521,2522,5,277,0,0,2522,2524,5,266, + 0,0,2523,2520,1,0,0,0,2523,2524,1,0,0,0,2524,2578,1,0,0,0,2525,2529, + 5,120,0,0,2526,2527,5,265,0,0,2527,2528,5,277,0,0,2528,2530,5,266, + 0,0,2529,2526,1,0,0,0,2529,2530,1,0,0,0,2530,2578,1,0,0,0,2531,2578, + 5,44,0,0,2532,2578,5,41,0,0,2533,2534,5,184,0,0,2534,2535,5,265, + 0,0,2535,2536,3,336,168,0,2536,2537,5,82,0,0,2537,2540,3,336,168, + 0,2538,2539,5,78,0,0,2539,2541,3,336,168,0,2540,2538,1,0,0,0,2540, + 2541,1,0,0,0,2541,2542,1,0,0,0,2542,2543,5,266,0,0,2543,2578,1,0, + 0,0,2544,2545,5,131,0,0,2545,2546,5,265,0,0,2546,2549,3,336,168, + 0,2547,2548,5,263,0,0,2548,2550,3,354,177,0,2549,2547,1,0,0,0,2549, + 2550,1,0,0,0,2550,2551,1,0,0,0,2551,2552,5,266,0,0,2552,2578,1,0, + 0,0,2553,2554,5,68,0,0,2554,2555,5,265,0,0,2555,2556,3,390,195,0, + 2556,2557,5,82,0,0,2557,2558,3,336,168,0,2558,2559,5,266,0,0,2559, + 2578,1,0,0,0,2560,2561,5,265,0,0,2561,2562,3,330,165,0,2562,2563, + 5,266,0,0,2563,2578,1,0,0,0,2564,2565,5,88,0,0,2565,2574,5,265,0, + 0,2566,2571,3,384,192,0,2567,2568,5,263,0,0,2568,2570,3,384,192, + 0,2569,2567,1,0,0,0,2570,2573,1,0,0,0,2571,2569,1,0,0,0,2571,2572, + 1,0,0,0,2572,2575,1,0,0,0,2573,2571,1,0,0,0,2574,2566,1,0,0,0,2574, + 2575,1,0,0,0,2575,2576,1,0,0,0,2576,2578,5,266,0,0,2577,2364,1,0, + 0,0,2577,2366,1,0,0,0,2577,2367,1,0,0,0,2577,2370,1,0,0,0,2577,2372, + 1,0,0,0,2577,2373,1,0,0,0,2577,2374,1,0,0,0,2577,2375,1,0,0,0,2577, + 2376,1,0,0,0,2577,2377,1,0,0,0,2577,2384,1,0,0,0,2577,2403,1,0,0, + 0,2577,2415,1,0,0,0,2577,2425,1,0,0,0,2577,2426,1,0,0,0,2577,2430, + 1,0,0,0,2577,2444,1,0,0,0,2577,2448,1,0,0,0,2577,2453,1,0,0,0,2577, + 2466,1,0,0,0,2577,2478,1,0,0,0,2577,2485,1,0,0,0,2577,2492,1,0,0, + 0,2577,2505,1,0,0,0,2577,2506,1,0,0,0,2577,2507,1,0,0,0,2577,2513, + 1,0,0,0,2577,2519,1,0,0,0,2577,2525,1,0,0,0,2577,2531,1,0,0,0,2577, + 2532,1,0,0,0,2577,2533,1,0,0,0,2577,2544,1,0,0,0,2577,2553,1,0,0, + 0,2577,2560,1,0,0,0,2577,2564,1,0,0,0,2578,2589,1,0,0,0,2579,2580, + 10,15,0,0,2580,2581,5,267,0,0,2581,2582,3,336,168,0,2582,2583,5, + 268,0,0,2583,2588,1,0,0,0,2584,2585,10,13,0,0,2585,2586,5,261,0, + 0,2586,2588,3,390,195,0,2587,2579,1,0,0,0,2587,2584,1,0,0,0,2588, + 2591,1,0,0,0,2589,2587,1,0,0,0,2589,2590,1,0,0,0,2590,341,1,0,0, + 0,2591,2589,1,0,0,0,2592,2599,5,274,0,0,2593,2596,5,275,0,0,2594, + 2595,5,198,0,0,2595,2597,5,274,0,0,2596,2594,1,0,0,0,2596,2597,1, + 0,0,0,2597,2599,1,0,0,0,2598,2592,1,0,0,0,2598,2593,1,0,0,0,2599, + 343,1,0,0,0,2600,2601,7,23,0,0,2601,345,1,0,0,0,2602,2603,7,24,0, + 0,2603,347,1,0,0,0,2604,2605,7,25,0,0,2605,349,1,0,0,0,2606,2607, + 5,277,0,0,2607,2621,3,352,176,0,2608,2609,5,265,0,0,2609,2610,5, + 277,0,0,2610,2611,5,266,0,0,2611,2621,3,352,176,0,2612,2613,5,101, + 0,0,2613,2614,5,277,0,0,2614,2621,3,352,176,0,2615,2616,5,101,0, + 0,2616,2617,5,265,0,0,2617,2618,5,277,0,0,2618,2619,5,266,0,0,2619, + 2621,3,352,176,0,2620,2606,1,0,0,0,2620,2608,1,0,0,0,2620,2612,1, + 0,0,0,2620,2615,1,0,0,0,2621,351,1,0,0,0,2622,2623,7,26,0,0,2623, + 353,1,0,0,0,2624,2625,7,27,0,0,2625,355,1,0,0,0,2626,2627,6,178, + -1,0,2627,2628,5,8,0,0,2628,2629,5,251,0,0,2629,2630,3,356,178,0, + 2630,2631,5,253,0,0,2631,2672,1,0,0,0,2632,2633,5,235,0,0,2633,2634, + 5,251,0,0,2634,2635,3,356,178,0,2635,2636,5,263,0,0,2636,2637,3, + 356,178,0,2637,2638,5,253,0,0,2638,2672,1,0,0,0,2639,2640,5,240, + 0,0,2640,2641,5,251,0,0,2641,2642,3,390,195,0,2642,2649,3,356,178, + 0,2643,2644,5,263,0,0,2644,2645,3,390,195,0,2645,2646,3,356,178, + 0,2646,2648,1,0,0,0,2647,2643,1,0,0,0,2648,2651,1,0,0,0,2649,2647, + 1,0,0,0,2649,2650,1,0,0,0,2650,2652,1,0,0,0,2651,2649,1,0,0,0,2652, + 2653,5,253,0,0,2653,2672,1,0,0,0,2654,2657,3,362,181,0,2655,2657, + 3,358,179,0,2656,2654,1,0,0,0,2656,2655,1,0,0,0,2657,2669,1,0,0, + 0,2658,2659,5,265,0,0,2659,2664,3,360,180,0,2660,2661,5,263,0,0, + 2661,2663,3,360,180,0,2662,2660,1,0,0,0,2663,2666,1,0,0,0,2664,2662, + 1,0,0,0,2664,2665,1,0,0,0,2665,2667,1,0,0,0,2666,2664,1,0,0,0,2667, + 2668,5,266,0,0,2668,2670,1,0,0,0,2669,2658,1,0,0,0,2669,2670,1,0, + 0,0,2670,2672,1,0,0,0,2671,2626,1,0,0,0,2671,2632,1,0,0,0,2671,2639, + 1,0,0,0,2671,2656,1,0,0,0,2672,2677,1,0,0,0,2673,2674,10,5,0,0,2674, + 2676,5,8,0,0,2675,2673,1,0,0,0,2676,2679,1,0,0,0,2677,2675,1,0,0, + 0,2677,2678,1,0,0,0,2678,357,1,0,0,0,2679,2677,1,0,0,0,2680,2681, + 7,28,0,0,2681,359,1,0,0,0,2682,2685,5,277,0,0,2683,2685,3,356,178, + 0,2684,2682,1,0,0,0,2684,2683,1,0,0,0,2685,361,1,0,0,0,2686,2691, + 5,284,0,0,2687,2691,5,285,0,0,2688,2691,5,286,0,0,2689,2691,3,390, + 195,0,2690,2686,1,0,0,0,2690,2687,1,0,0,0,2690,2688,1,0,0,0,2690, + 2689,1,0,0,0,2691,363,1,0,0,0,2692,2693,5,214,0,0,2693,2694,3,330, + 165,0,2694,2695,5,192,0,0,2695,2696,3,330,165,0,2696,365,1,0,0,0, + 2697,2698,5,74,0,0,2698,2699,5,265,0,0,2699,2700,3,280,140,0,2700, + 2701,5,266,0,0,2701,367,1,0,0,0,2702,2707,3,330,165,0,2703,2704, + 5,263,0,0,2704,2706,3,330,165,0,2705,2703,1,0,0,0,2706,2709,1,0, + 0,0,2707,2705,1,0,0,0,2707,2708,1,0,0,0,2708,369,1,0,0,0,2709,2707, + 1,0,0,0,2710,2711,5,143,0,0,2711,2715,5,265,0,0,2712,2713,5,145, + 0,0,2713,2714,5,26,0,0,2714,2716,3,368,184,0,2715,2712,1,0,0,0,2715, + 2716,1,0,0,0,2716,2727,1,0,0,0,2717,2718,5,139,0,0,2718,2719,5,26, + 0,0,2719,2724,3,274,137,0,2720,2721,5,263,0,0,2721,2723,3,274,137, + 0,2722,2720,1,0,0,0,2723,2726,1,0,0,0,2724,2722,1,0,0,0,2724,2725, + 1,0,0,0,2725,2728,1,0,0,0,2726,2724,1,0,0,0,2727,2717,1,0,0,0,2727, + 2728,1,0,0,0,2728,2730,1,0,0,0,2729,2731,3,372,186,0,2730,2729,1, + 0,0,0,2730,2731,1,0,0,0,2731,2732,1,0,0,0,2732,2733,5,266,0,0,2733, + 371,1,0,0,0,2734,2735,5,154,0,0,2735,2751,3,374,187,0,2736,2737, + 5,169,0,0,2737,2751,3,374,187,0,2738,2739,5,154,0,0,2739,2740,5, + 15,0,0,2740,2741,3,374,187,0,2741,2742,5,5,0,0,2742,2743,3,374,187, + 0,2743,2751,1,0,0,0,2744,2745,5,169,0,0,2745,2746,5,15,0,0,2746, + 2747,3,374,187,0,2747,2748,5,5,0,0,2748,2749,3,374,187,0,2749,2751, + 1,0,0,0,2750,2734,1,0,0,0,2750,2736,1,0,0,0,2750,2738,1,0,0,0,2750, + 2744,1,0,0,0,2751,373,1,0,0,0,2752,2753,5,199,0,0,2753,2762,5,149, + 0,0,2754,2755,5,199,0,0,2755,2762,5,77,0,0,2756,2757,5,39,0,0,2757, + 2762,5,168,0,0,2758,2759,3,330,165,0,2759,2760,7,29,0,0,2760,2762, + 1,0,0,0,2761,2752,1,0,0,0,2761,2754,1,0,0,0,2761,2756,1,0,0,0,2761, + 2758,1,0,0,0,2762,375,1,0,0,0,2763,2764,3,390,195,0,2764,2765,5, + 261,0,0,2765,2766,3,390,195,0,2766,2769,1,0,0,0,2767,2769,3,390, + 195,0,2768,2763,1,0,0,0,2768,2767,1,0,0,0,2769,377,1,0,0,0,2770, + 2775,3,376,188,0,2771,2772,5,263,0,0,2772,2774,3,376,188,0,2773, + 2771,1,0,0,0,2774,2777,1,0,0,0,2775,2773,1,0,0,0,2775,2776,1,0,0, + 0,2776,379,1,0,0,0,2777,2775,1,0,0,0,2778,2792,5,2,0,0,2779,2792, + 5,4,0,0,2780,2792,5,58,0,0,2781,2792,5,37,0,0,2782,2792,5,99,0,0, + 2783,2792,5,162,0,0,2784,2789,5,174,0,0,2785,2786,5,265,0,0,2786, + 2787,3,390,195,0,2787,2788,5,266,0,0,2788,2790,1,0,0,0,2789,2785, + 1,0,0,0,2789,2790,1,0,0,0,2790,2792,1,0,0,0,2791,2778,1,0,0,0,2791, + 2779,1,0,0,0,2791,2780,1,0,0,0,2791,2781,1,0,0,0,2791,2782,1,0,0, + 0,2791,2783,1,0,0,0,2791,2784,1,0,0,0,2792,381,1,0,0,0,2793,2794, + 7,30,0,0,2794,383,1,0,0,0,2795,2800,3,390,195,0,2796,2797,5,261, + 0,0,2797,2799,3,390,195,0,2798,2796,1,0,0,0,2799,2802,1,0,0,0,2800, + 2798,1,0,0,0,2800,2801,1,0,0,0,2801,385,1,0,0,0,2802,2800,1,0,0, + 0,2803,2809,4,193,14,0,2804,2805,3,390,195,0,2805,2806,5,261,0,0, + 2806,2807,3,192,96,0,2807,2810,1,0,0,0,2808,2810,3,192,96,0,2809, + 2804,1,0,0,0,2809,2808,1,0,0,0,2810,2820,1,0,0,0,2811,2816,3,390, + 195,0,2812,2813,5,261,0,0,2813,2815,3,390,195,0,2814,2812,1,0,0, + 0,2815,2818,1,0,0,0,2816,2814,1,0,0,0,2816,2817,1,0,0,0,2817,2820, + 1,0,0,0,2818,2816,1,0,0,0,2819,2803,1,0,0,0,2819,2811,1,0,0,0,2820, + 387,1,0,0,0,2821,2822,5,166,0,0,2822,2828,3,390,195,0,2823,2824, + 5,204,0,0,2824,2828,3,390,195,0,2825,2826,5,87,0,0,2826,2828,3,390, + 195,0,2827,2821,1,0,0,0,2827,2823,1,0,0,0,2827,2825,1,0,0,0,2828, + 389,1,0,0,0,2829,2835,5,280,0,0,2830,2835,5,274,0,0,2831,2835,3, + 396,198,0,2832,2835,5,283,0,0,2833,2835,5,281,0,0,2834,2829,1,0, + 0,0,2834,2830,1,0,0,0,2834,2831,1,0,0,0,2834,2832,1,0,0,0,2834,2833, + 1,0,0,0,2835,391,1,0,0,0,2836,2838,5,256,0,0,2837,2836,1,0,0,0,2837, + 2838,1,0,0,0,2838,2839,1,0,0,0,2839,2849,5,278,0,0,2840,2842,5,256, + 0,0,2841,2840,1,0,0,0,2841,2842,1,0,0,0,2842,2843,1,0,0,0,2843,2849, + 5,279,0,0,2844,2846,5,256,0,0,2845,2844,1,0,0,0,2845,2846,1,0,0, + 0,2846,2847,1,0,0,0,2847,2849,5,277,0,0,2848,2837,1,0,0,0,2848,2841, + 1,0,0,0,2848,2845,1,0,0,0,2849,393,1,0,0,0,2850,2851,7,31,0,0,2851, + 395,1,0,0,0,2852,2853,7,32,0,0,2853,397,1,0,0,0,362,401,408,432, 445,449,453,462,467,471,477,479,484,488,492,499,504,510,514,523, 530,534,539,541,546,549,556,560,565,569,572,576,584,588,592,600, 604,613,616,619,625,632,643,648,653,658,663,672,675,678,682,708, @@ -14730,15 +14751,15 @@ export class ImpalaSqlParser extends SQLParserBase { 1810,1819,1822,1829,1839,1845,1853,1864,1874,1885,1887,1893,1898, 1908,1911,1917,1919,1927,1933,1936,1938,1950,1957,1961,1965,1969, 1972,1981,1984,1987,1992,1995,2002,2008,2013,2016,2023,2034,2037, - 2041,2045,2054,2058,2061,2064,2075,2091,2095,2099,2103,2107,2111, - 2115,2119,2129,2134,2143,2148,2161,2163,2169,2173,2175,2183,2192, - 2195,2210,2216,2224,2231,2235,2243,2245,2256,2264,2273,2279,2284, - 2290,2296,2301,2306,2312,2323,2325,2331,2338,2341,2350,2353,2357, - 2360,2386,2392,2396,2408,2418,2421,2434,2437,2456,2460,2468,2472, - 2497,2500,2509,2515,2521,2527,2538,2547,2569,2572,2575,2585,2587, - 2594,2596,2618,2647,2654,2662,2667,2669,2675,2682,2688,2705,2713, - 2722,2725,2728,2748,2759,2766,2773,2787,2789,2798,2807,2814,2817, - 2825,2832,2835,2839,2843,2846 + 2041,2045,2054,2058,2063,2066,2077,2093,2097,2101,2105,2109,2113, + 2117,2121,2131,2136,2145,2150,2163,2165,2171,2175,2177,2185,2194, + 2197,2212,2218,2226,2233,2237,2245,2247,2258,2266,2275,2281,2286, + 2292,2298,2303,2308,2314,2325,2327,2333,2340,2343,2352,2355,2359, + 2362,2388,2394,2398,2410,2420,2423,2436,2439,2458,2462,2470,2474, + 2499,2502,2511,2517,2523,2529,2540,2549,2571,2574,2577,2587,2589, + 2596,2598,2620,2649,2656,2664,2669,2671,2677,2684,2690,2707,2715, + 2724,2727,2730,2750,2761,2768,2775,2789,2791,2800,2809,2816,2819, + 2827,2834,2837,2841,2845,2848 ]; private static __ATN: antlr.ATN; @@ -22132,6 +22153,9 @@ export class SelectItemContext extends antlr.ParserRuleContext { public tableAllColumns(): TableAllColumnsContext | null { return this.getRuleContext(0, TableAllColumnsContext); } + public emptyColumn(): EmptyColumnContext | null { + return this.getRuleContext(0, EmptyColumnContext); + } public override get ruleIndex(): number { return ImpalaSqlParser.RULE_selectItem; } diff --git a/src/lib/mysql/MySqlParser.interp b/src/lib/mysql/MySqlParser.interp index de2f300a6..e675b0180 100644 --- a/src/lib/mysql/MySqlParser.interp +++ b/src/lib/mysql/MySqlParser.interp @@ -2159,7 +2159,6 @@ uidList uid simpleId dottedId -dottedIdAllowEmpty decimalLiteral fileSizeLiteral stringLiteral @@ -2226,4 +2225,4 @@ functionNameBase atn: -[4, 1, 895, 8138, 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, 1, 0, 5, 0, 858, 8, 0, 10, 0, 12, 0, 861, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 867, 8, 1, 1, 1, 3, 1, 870, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 879, 8, 2, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 923, 8, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 942, 8, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 953, 8, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 969, 8, 7, 1, 8, 1, 8, 1, 8, 3, 8, 974, 8, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 986, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1021, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1031, 8, 11, 1, 12, 1, 12, 1, 12, 3, 12, 1036, 8, 12, 1, 12, 1, 12, 5, 12, 1040, 8, 12, 10, 12, 12, 12, 1043, 9, 12, 1, 13, 1, 13, 3, 13, 1047, 8, 13, 1, 13, 1, 13, 3, 13, 1051, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 1060, 8, 13, 1, 13, 3, 13, 1063, 8, 13, 1, 13, 3, 13, 1066, 8, 13, 1, 13, 1, 13, 3, 13, 1070, 8, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 3, 14, 1077, 8, 14, 1, 14, 3, 14, 1080, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1085, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 5, 14, 1091, 8, 14, 10, 14, 12, 14, 1094, 9, 14, 1, 14, 1, 14, 3, 14, 1098, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1103, 8, 14, 1, 14, 5, 14, 1106, 8, 14, 10, 14, 12, 14, 1109, 9, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 1120, 8, 15, 1, 15, 3, 15, 1123, 8, 15, 1, 15, 1, 15, 3, 15, 1127, 8, 15, 1, 15, 3, 15, 1130, 8, 15, 1, 15, 1, 15, 3, 15, 1134, 8, 15, 1, 15, 3, 15, 1137, 8, 15, 1, 15, 1, 15, 3, 15, 1141, 8, 15, 1, 15, 3, 15, 1144, 8, 15, 1, 15, 3, 15, 1147, 8, 15, 1, 15, 1, 15, 3, 15, 1151, 8, 15, 1, 15, 3, 15, 1154, 8, 15, 1, 15, 1, 15, 3, 15, 1158, 8, 15, 1, 15, 1, 15, 1, 16, 1, 16, 3, 16, 1164, 8, 16, 1, 16, 1, 16, 3, 16, 1168, 8, 16, 1, 16, 1, 16, 1, 16, 3, 16, 1173, 8, 16, 1, 16, 1, 16, 5, 16, 1177, 8, 16, 10, 16, 12, 16, 1180, 9, 16, 1, 16, 1, 16, 5, 16, 1184, 8, 16, 10, 16, 12, 16, 1187, 9, 16, 1, 16, 1, 16, 1, 17, 1, 17, 3, 17, 1193, 8, 17, 1, 17, 3, 17, 1196, 8, 17, 1, 17, 1, 17, 3, 17, 1200, 8, 17, 1, 17, 1, 17, 1, 17, 3, 17, 1205, 8, 17, 1, 17, 1, 17, 5, 17, 1209, 8, 17, 10, 17, 12, 17, 1212, 9, 17, 1, 17, 1, 17, 1, 17, 1, 17, 5, 17, 1218, 8, 17, 10, 17, 12, 17, 1221, 9, 17, 1, 17, 1, 17, 3, 17, 1225, 8, 17, 1, 18, 1, 18, 3, 18, 1229, 8, 18, 1, 18, 1, 18, 3, 18, 1233, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 3, 19, 1244, 8, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 1260, 8, 20, 10, 20, 12, 20, 1263, 9, 20, 1, 20, 1, 20, 1, 21, 1, 21, 3, 21, 1269, 8, 21, 1, 21, 1, 21, 3, 21, 1273, 8, 21, 1, 21, 1, 21, 3, 21, 1277, 8, 21, 1, 21, 1, 21, 3, 21, 1281, 8, 21, 1, 21, 5, 21, 1284, 8, 21, 10, 21, 12, 21, 1287, 9, 21, 3, 21, 1289, 8, 21, 1, 21, 3, 21, 1292, 8, 21, 1, 21, 3, 21, 1295, 8, 21, 1, 21, 3, 21, 1298, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1304, 8, 21, 1, 21, 1, 21, 3, 21, 1308, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1318, 8, 21, 1, 21, 1, 21, 3, 21, 1322, 8, 21, 1, 21, 1, 21, 3, 21, 1326, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1332, 8, 21, 1, 21, 5, 21, 1335, 8, 21, 10, 21, 12, 21, 1338, 9, 21, 3, 21, 1340, 8, 21, 1, 21, 3, 21, 1343, 8, 21, 3, 21, 1345, 8, 21, 1, 22, 1, 22, 3, 22, 1349, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 1356, 8, 22, 1, 22, 1, 22, 3, 22, 1360, 8, 22, 1, 22, 3, 22, 1363, 8, 22, 1, 22, 1, 22, 1, 22, 3, 22, 1368, 8, 22, 1, 22, 1, 22, 3, 22, 1372, 8, 22, 1, 22, 3, 22, 1375, 8, 22, 1, 22, 1, 22, 3, 22, 1379, 8, 22, 1, 22, 3, 22, 1382, 8, 22, 1, 23, 1, 23, 3, 23, 1386, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 1399, 8, 23, 1, 23, 3, 23, 1402, 8, 23, 1, 23, 1, 23, 3, 23, 1406, 8, 23, 1, 23, 3, 23, 1409, 8, 23, 1, 23, 1, 23, 3, 23, 1413, 8, 23, 1, 23, 3, 23, 1416, 8, 23, 1, 23, 1, 23, 3, 23, 1420, 8, 23, 1, 23, 3, 23, 1423, 8, 23, 1, 23, 1, 23, 3, 23, 1427, 8, 23, 1, 23, 3, 23, 1430, 8, 23, 1, 23, 3, 23, 1433, 8, 23, 1, 23, 1, 23, 3, 23, 1437, 8, 23, 1, 23, 3, 23, 1440, 8, 23, 1, 23, 1, 23, 3, 23, 1444, 8, 23, 1, 23, 1, 23, 1, 24, 1, 24, 3, 24, 1450, 8, 24, 1, 24, 3, 24, 1453, 8, 24, 1, 24, 1, 24, 3, 24, 1457, 8, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 1469, 8, 24, 1, 24, 1, 24, 1, 25, 1, 25, 3, 25, 1475, 8, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1484, 8, 26, 10, 26, 12, 26, 1487, 9, 26, 1, 26, 1, 26, 3, 26, 1491, 8, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1499, 8, 26, 1, 27, 1, 27, 3, 27, 1503, 8, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1508, 8, 27, 1, 27, 3, 27, 1511, 8, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1516, 8, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 1524, 8, 27, 10, 27, 12, 27, 1527, 9, 27, 1, 27, 1, 27, 3, 27, 1531, 8, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1536, 8, 27, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1542, 8, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1547, 8, 27, 1, 27, 1, 27, 3, 27, 1551, 8, 27, 3, 27, 1553, 8, 27, 1, 28, 3, 28, 1556, 8, 28, 1, 28, 1, 28, 3, 28, 1560, 8, 28, 1, 28, 1, 28, 3, 28, 1564, 8, 28, 1, 28, 3, 28, 1567, 8, 28, 1, 28, 1, 28, 3, 28, 1571, 8, 28, 1, 28, 1, 28, 3, 28, 1575, 8, 28, 1, 28, 1, 28, 3, 28, 1579, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 1585, 8, 28, 1, 28, 3, 28, 1588, 8, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 1595, 8, 29, 1, 30, 1, 30, 1, 30, 3, 30, 1600, 8, 30, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 1606, 8, 31, 1, 32, 1, 32, 1, 32, 5, 32, 1611, 8, 32, 10, 32, 12, 32, 1614, 9, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1619, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 1625, 8, 32, 10, 32, 12, 32, 1628, 9, 32, 3, 32, 1630, 8, 32, 1, 32, 1, 32, 1, 32, 5, 32, 1635, 8, 32, 10, 32, 12, 32, 1638, 9, 32, 3, 32, 1640, 8, 32, 3, 32, 1642, 8, 32, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1648, 8, 33, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1654, 8, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 1671, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1678, 8, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 3, 38, 1685, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1697, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1702, 8, 38, 1, 38, 3, 38, 1705, 8, 38, 1, 39, 3, 39, 1708, 8, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1721, 8, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1734, 8, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1739, 8, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1755, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 5, 43, 1761, 8, 43, 10, 43, 12, 43, 1764, 9, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1773, 8, 44, 1, 44, 3, 44, 1776, 8, 44, 1, 44, 1, 44, 5, 44, 1780, 8, 44, 10, 44, 12, 44, 1783, 9, 44, 1, 44, 1, 44, 3, 44, 1787, 8, 44, 1, 44, 3, 44, 1790, 8, 44, 1, 44, 1, 44, 5, 44, 1794, 8, 44, 10, 44, 12, 44, 1797, 9, 44, 1, 44, 3, 44, 1800, 8, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1805, 8, 44, 1, 44, 1, 44, 5, 44, 1809, 8, 44, 10, 44, 12, 44, 1812, 9, 44, 1, 44, 3, 44, 1815, 8, 44, 1, 44, 1, 44, 3, 44, 1819, 8, 44, 1, 44, 3, 44, 1822, 8, 44, 1, 44, 3, 44, 1825, 8, 44, 1, 44, 1, 44, 5, 44, 1829, 8, 44, 10, 44, 12, 44, 1832, 9, 44, 1, 44, 3, 44, 1835, 8, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1840, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1851, 8, 44, 1, 45, 3, 45, 1854, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1861, 8, 45, 1, 45, 3, 45, 1864, 8, 45, 1, 46, 1, 46, 3, 46, 1868, 8, 46, 1, 47, 1, 47, 5, 47, 1872, 8, 47, 10, 47, 12, 47, 1875, 9, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1886, 8, 48, 1, 48, 3, 48, 1889, 8, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1894, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1907, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1914, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1920, 8, 48, 1, 49, 1, 49, 1, 49, 3, 49, 1925, 8, 49, 1, 49, 1, 49, 3, 49, 1929, 8, 49, 1, 49, 3, 49, 1932, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1940, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1948, 8, 50, 3, 50, 1950, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1960, 8, 51, 1, 52, 1, 52, 3, 52, 1964, 8, 52, 1, 52, 3, 52, 1967, 8, 52, 1, 52, 1, 52, 3, 52, 1971, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1976, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1981, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1986, 8, 52, 1, 52, 1, 52, 3, 52, 1990, 8, 52, 1, 52, 1, 52, 3, 52, 1994, 8, 52, 1, 52, 1, 52, 3, 52, 1998, 8, 52, 1, 52, 1, 52, 3, 52, 2002, 8, 52, 1, 52, 1, 52, 3, 52, 2006, 8, 52, 1, 52, 1, 52, 3, 52, 2010, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2015, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2020, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2025, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2031, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2036, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2041, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2046, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2051, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2056, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2062, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2067, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2072, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2077, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2082, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2087, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2092, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2097, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2104, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2109, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2114, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2119, 8, 52, 1, 52, 1, 52, 3, 52, 2123, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2128, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2136, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2141, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2147, 8, 52, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 2159, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 2166, 8, 55, 3, 55, 2168, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2174, 8, 55, 10, 55, 12, 55, 2177, 9, 55, 1, 55, 1, 55, 3, 55, 2181, 8, 55, 1, 56, 3, 56, 2184, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2192, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2198, 8, 56, 1, 56, 1, 56, 3, 56, 2202, 8, 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, 2215, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2227, 8, 56, 3, 56, 2229, 8, 56, 1, 57, 3, 57, 2232, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2240, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2246, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2252, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2263, 8, 58, 10, 58, 12, 58, 2266, 9, 58, 1, 58, 1, 58, 5, 58, 2270, 8, 58, 10, 58, 12, 58, 2273, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2279, 8, 58, 10, 58, 12, 58, 2282, 9, 58, 1, 58, 1, 58, 3, 58, 2286, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2295, 8, 58, 10, 58, 12, 58, 2298, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2304, 8, 58, 10, 58, 12, 58, 2307, 9, 58, 1, 58, 1, 58, 3, 58, 2311, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2321, 8, 58, 10, 58, 12, 58, 2324, 9, 58, 1, 58, 1, 58, 5, 58, 2328, 8, 58, 10, 58, 12, 58, 2331, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2337, 8, 58, 10, 58, 12, 58, 2340, 9, 58, 1, 58, 1, 58, 3, 58, 2344, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2354, 8, 58, 10, 58, 12, 58, 2357, 9, 58, 1, 58, 1, 58, 5, 58, 2361, 8, 58, 10, 58, 12, 58, 2364, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2370, 8, 58, 10, 58, 12, 58, 2373, 9, 58, 1, 58, 1, 58, 3, 58, 2377, 8, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2382, 8, 58, 10, 58, 12, 58, 2385, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2391, 8, 58, 10, 58, 12, 58, 2394, 9, 58, 1, 58, 1, 58, 3, 58, 2398, 8, 58, 3, 58, 2400, 8, 58, 1, 59, 1, 59, 1, 59, 3, 59, 2405, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 4, 60, 2411, 8, 60, 11, 60, 12, 60, 2412, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 5, 61, 2420, 8, 61, 10, 61, 12, 61, 2423, 9, 61, 1, 62, 3, 62, 2426, 8, 62, 1, 62, 3, 62, 2429, 8, 62, 1, 62, 1, 62, 3, 62, 2433, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2438, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2444, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2450, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2455, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2460, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2465, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2470, 8, 62, 1, 62, 3, 62, 2473, 8, 62, 1, 63, 1, 63, 1, 63, 3, 63, 2478, 8, 63, 1, 63, 4, 63, 2481, 8, 63, 11, 63, 12, 63, 2482, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 2493, 8, 63, 1, 64, 1, 64, 3, 64, 2497, 8, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2504, 8, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2509, 8, 64, 1, 64, 3, 64, 2512, 8, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2517, 8, 64, 1, 64, 3, 64, 2520, 8, 64, 1, 64, 1, 64, 3, 64, 2524, 8, 64, 1, 64, 1, 64, 3, 64, 2528, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 2534, 8, 65, 10, 65, 12, 65, 2537, 9, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 2555, 8, 67, 1, 67, 3, 67, 2558, 8, 67, 1, 67, 3, 67, 2561, 8, 67, 1, 67, 1, 67, 3, 67, 2565, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2573, 8, 68, 10, 68, 12, 68, 2576, 9, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 5, 69, 2586, 8, 69, 10, 69, 12, 69, 2589, 9, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 2599, 8, 70, 10, 70, 12, 70, 2602, 9, 70, 3, 70, 2604, 8, 70, 1, 70, 1, 70, 5, 70, 2608, 8, 70, 10, 70, 12, 70, 2611, 9, 70, 3, 70, 2613, 8, 70, 1, 71, 1, 71, 3, 71, 2617, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2626, 8, 71, 1, 71, 3, 71, 2629, 8, 71, 1, 71, 3, 71, 2632, 8, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2637, 8, 71, 1, 71, 1, 71, 3, 71, 2641, 8, 71, 1, 71, 3, 71, 2644, 8, 71, 1, 71, 1, 71, 3, 71, 2648, 8, 71, 1, 71, 1, 71, 3, 71, 2652, 8, 71, 1, 71, 3, 71, 2655, 8, 71, 1, 71, 1, 71, 3, 71, 2659, 8, 71, 1, 71, 3, 71, 2662, 8, 71, 1, 71, 1, 71, 3, 71, 2666, 8, 71, 1, 71, 3, 71, 2669, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2675, 8, 72, 1, 72, 3, 72, 2678, 8, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2683, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2691, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2697, 8, 72, 1, 72, 1, 72, 3, 72, 2701, 8, 72, 1, 73, 1, 73, 3, 73, 2705, 8, 73, 1, 73, 5, 73, 2708, 8, 73, 10, 73, 12, 73, 2711, 9, 73, 1, 73, 1, 73, 3, 73, 2715, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2722, 8, 73, 1, 73, 1, 73, 3, 73, 2726, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2735, 8, 73, 10, 73, 12, 73, 2738, 9, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2745, 8, 73, 1, 73, 3, 73, 2748, 8, 73, 1, 73, 1, 73, 5, 73, 2752, 8, 73, 10, 73, 12, 73, 2755, 9, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2760, 8, 73, 1, 73, 3, 73, 2763, 8, 73, 1, 73, 1, 73, 5, 73, 2767, 8, 73, 10, 73, 12, 73, 2770, 9, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2775, 8, 73, 3, 73, 2777, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2782, 8, 73, 1, 73, 1, 73, 5, 73, 2786, 8, 73, 10, 73, 12, 73, 2789, 9, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2794, 8, 73, 3, 73, 2796, 8, 73, 1, 73, 1, 73, 3, 73, 2800, 8, 73, 1, 73, 3, 73, 2803, 8, 73, 1, 73, 3, 73, 2806, 8, 73, 1, 73, 1, 73, 5, 73, 2810, 8, 73, 10, 73, 12, 73, 2813, 9, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2818, 8, 73, 3, 73, 2820, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2825, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2832, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2841, 8, 73, 1, 73, 3, 73, 2844, 8, 73, 1, 73, 1, 73, 3, 73, 2848, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2853, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2863, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2872, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2880, 8, 73, 1, 73, 3, 73, 2883, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2891, 8, 73, 1, 73, 3, 73, 2894, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2901, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2906, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2914, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2930, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2935, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2942, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2961, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2967, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 5, 74, 2975, 8, 74, 10, 74, 12, 74, 2978, 9, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2989, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2996, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3003, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 5, 74, 3016, 8, 74, 10, 74, 12, 74, 3019, 9, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3031, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3037, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3043, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3049, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3055, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3061, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3067, 8, 74, 1, 75, 1, 75, 1, 75, 3, 75, 3072, 8, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 3, 76, 3079, 8, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 3, 77, 3086, 8, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 3093, 8, 77, 1, 77, 1, 77, 1, 77, 3, 77, 3098, 8, 77, 1, 77, 5, 77, 3101, 8, 77, 10, 77, 12, 77, 3104, 9, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 3112, 8, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 3, 79, 3119, 8, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 3, 80, 3126, 8, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 3, 81, 3133, 8, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 3, 82, 3142, 8, 82, 1, 82, 1, 82, 1, 83, 1, 83, 3, 83, 3148, 8, 83, 1, 83, 1, 83, 3, 83, 3152, 8, 83, 1, 83, 1, 83, 3, 83, 3156, 8, 83, 1, 84, 1, 84, 3, 84, 3160, 8, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 3166, 8, 84, 1, 84, 3, 84, 3169, 8, 84, 1, 85, 1, 85, 1, 85, 3, 85, 3174, 8, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 3, 86, 3181, 8, 86, 1, 86, 1, 86, 1, 86, 5, 86, 3186, 8, 86, 10, 86, 12, 86, 3189, 9, 86, 1, 86, 3, 86, 3192, 8, 86, 1, 87, 1, 87, 1, 87, 3, 87, 3197, 8, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 3207, 8, 88, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 3213, 8, 88, 10, 88, 12, 88, 3216, 9, 88, 1, 88, 1, 88, 1, 88, 3, 88, 3221, 8, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 5, 89, 3228, 8, 89, 10, 89, 12, 89, 3231, 9, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 3, 91, 3239, 8, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 3248, 8, 92, 1, 92, 3, 92, 3251, 8, 92, 1, 93, 1, 93, 3, 93, 3255, 8, 93, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 3, 95, 3264, 8, 95, 1, 96, 1, 96, 3, 96, 3268, 8, 96, 1, 96, 3, 96, 3271, 8, 96, 1, 96, 3, 96, 3274, 8, 96, 1, 96, 1, 96, 1, 96, 1, 96, 3, 96, 3280, 8, 96, 1, 96, 3, 96, 3283, 8, 96, 1, 96, 3, 96, 3286, 8, 96, 1, 96, 1, 96, 3, 96, 3290, 8, 96, 1, 96, 3, 96, 3293, 8, 96, 1, 96, 3, 96, 3296, 8, 96, 1, 96, 3, 96, 3299, 8, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 5, 96, 3308, 8, 96, 10, 96, 12, 96, 3311, 9, 96, 3, 96, 3313, 8, 96, 1, 97, 1, 97, 1, 97, 3, 97, 3318, 8, 97, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 3324, 8, 98, 1, 99, 1, 99, 1, 99, 3, 99, 3329, 8, 99, 1, 99, 4, 99, 3332, 8, 99, 11, 99, 12, 99, 3333, 1, 100, 3, 100, 3337, 8, 100, 1, 100, 1, 100, 3, 100, 3341, 8, 100, 1, 101, 1, 101, 1, 101, 3, 101, 3346, 8, 101, 1, 101, 3, 101, 3349, 8, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3354, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3364, 8, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3369, 8, 101, 1, 101, 1, 101, 4, 101, 3373, 8, 101, 11, 101, 12, 101, 3374, 3, 101, 3377, 8, 101, 1, 101, 1, 101, 4, 101, 3381, 8, 101, 11, 101, 12, 101, 3382, 3, 101, 3385, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3391, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 5, 101, 3397, 8, 101, 10, 101, 12, 101, 3400, 9, 101, 1, 101, 1, 101, 3, 101, 3404, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 5, 101, 3410, 8, 101, 10, 101, 12, 101, 3413, 9, 101, 3, 101, 3415, 8, 101, 1, 102, 1, 102, 1, 102, 3, 102, 3420, 8, 102, 1, 102, 3, 102, 3423, 8, 102, 1, 102, 1, 102, 1, 102, 3, 102, 3428, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 3436, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 3442, 8, 102, 1, 102, 1, 102, 3, 102, 3446, 8, 102, 3, 102, 3448, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 3454, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 3460, 8, 102, 10, 102, 12, 102, 3463, 9, 102, 1, 102, 1, 102, 3, 102, 3467, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 3473, 8, 102, 10, 102, 12, 102, 3476, 9, 102, 3, 102, 3478, 8, 102, 1, 103, 1, 103, 1, 103, 3, 103, 3483, 8, 103, 1, 103, 3, 103, 3486, 8, 103, 1, 103, 1, 103, 3, 103, 3490, 8, 103, 1, 103, 3, 103, 3493, 8, 103, 1, 103, 3, 103, 3496, 8, 103, 1, 104, 1, 104, 3, 104, 3500, 8, 104, 1, 104, 3, 104, 3503, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 3511, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 3517, 8, 104, 1, 104, 1, 104, 3, 104, 3521, 8, 104, 1, 105, 1, 105, 5, 105, 3525, 8, 105, 10, 105, 12, 105, 3528, 9, 105, 1, 105, 1, 105, 3, 105, 3532, 8, 105, 1, 105, 1, 105, 3, 105, 3536, 8, 105, 3, 105, 3538, 8, 105, 1, 105, 1, 105, 5, 105, 3542, 8, 105, 10, 105, 12, 105, 3545, 9, 105, 1, 105, 3, 105, 3548, 8, 105, 1, 105, 3, 105, 3551, 8, 105, 1, 105, 3, 105, 3554, 8, 105, 1, 105, 3, 105, 3557, 8, 105, 1, 105, 1, 105, 5, 105, 3561, 8, 105, 10, 105, 12, 105, 3564, 9, 105, 1, 105, 1, 105, 3, 105, 3568, 8, 105, 1, 105, 3, 105, 3571, 8, 105, 1, 105, 3, 105, 3574, 8, 105, 1, 105, 3, 105, 3577, 8, 105, 1, 105, 3, 105, 3580, 8, 105, 3, 105, 3582, 8, 105, 1, 106, 3, 106, 3585, 8, 106, 1, 106, 1, 106, 3, 106, 3589, 8, 106, 1, 106, 3, 106, 3592, 8, 106, 1, 106, 3, 106, 3595, 8, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 3603, 8, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 3609, 8, 107, 1, 107, 5, 107, 3612, 8, 107, 10, 107, 12, 107, 3615, 9, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 3, 108, 3623, 8, 108, 1, 108, 5, 108, 3626, 8, 108, 10, 108, 12, 108, 3629, 9, 108, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 3635, 8, 109, 1, 109, 3, 109, 3638, 8, 109, 1, 109, 3, 109, 3641, 8, 109, 1, 109, 1, 109, 3, 109, 3645, 8, 109, 1, 110, 1, 110, 3, 110, 3649, 8, 110, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 3655, 8, 111, 1, 111, 1, 111, 3, 111, 3659, 8, 111, 1, 112, 1, 112, 1, 112, 5, 112, 3664, 8, 112, 10, 112, 12, 112, 3667, 9, 112, 1, 112, 3, 112, 3670, 8, 112, 1, 112, 3, 112, 3673, 8, 112, 1, 112, 3, 112, 3676, 8, 112, 1, 113, 1, 113, 1, 113, 3, 113, 3681, 8, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 3688, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 5, 115, 3696, 8, 115, 10, 115, 12, 115, 3699, 9, 115, 1, 116, 1, 116, 1, 116, 1, 116, 5, 116, 3705, 8, 116, 10, 116, 12, 116, 3708, 9, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 3, 118, 3716, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 5, 119, 3724, 8, 119, 10, 119, 12, 119, 3727, 9, 119, 3, 119, 3729, 8, 119, 1, 119, 1, 119, 3, 119, 3733, 8, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3739, 8, 119, 1, 120, 1, 120, 3, 120, 3743, 8, 120, 1, 120, 3, 120, 3746, 8, 120, 1, 120, 3, 120, 3749, 8, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3754, 8, 120, 1, 120, 3, 120, 3757, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3764, 8, 120, 1, 120, 1, 120, 3, 120, 3768, 8, 120, 1, 120, 3, 120, 3771, 8, 120, 1, 120, 1, 120, 3, 120, 3775, 8, 120, 1, 121, 1, 121, 3, 121, 3779, 8, 121, 1, 121, 3, 121, 3782, 8, 121, 1, 121, 3, 121, 3785, 8, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3790, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3796, 8, 121, 5, 121, 3798, 8, 121, 10, 121, 12, 121, 3801, 9, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3810, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3816, 8, 121, 5, 121, 3818, 8, 121, 10, 121, 12, 121, 3821, 9, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3826, 8, 121, 1, 121, 1, 121, 3, 121, 3830, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 3, 122, 3836, 8, 122, 1, 122, 3, 122, 3839, 8, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 3851, 8, 123, 1, 123, 1, 123, 3, 123, 3855, 8, 123, 1, 123, 1, 123, 3, 123, 3859, 8, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 3867, 8, 124, 1, 124, 1, 124, 3, 124, 3871, 8, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 5, 126, 3883, 8, 126, 10, 126, 12, 126, 3886, 9, 126, 1, 127, 1, 127, 3, 127, 3890, 8, 127, 1, 127, 3, 127, 3893, 8, 127, 1, 127, 1, 127, 3, 127, 3897, 8, 127, 1, 127, 3, 127, 3900, 8, 127, 1, 127, 1, 127, 1, 127, 1, 127, 5, 127, 3906, 8, 127, 10, 127, 12, 127, 3909, 9, 127, 1, 127, 1, 127, 3, 127, 3913, 8, 127, 1, 127, 3, 127, 3916, 8, 127, 1, 127, 3, 127, 3919, 8, 127, 1, 128, 1, 128, 3, 128, 3923, 8, 128, 1, 128, 3, 128, 3926, 8, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 5, 128, 3933, 8, 128, 10, 128, 12, 128, 3936, 9, 128, 1, 128, 1, 128, 3, 128, 3940, 8, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 5, 129, 3947, 8, 129, 10, 129, 12, 129, 3950, 9, 129, 1, 130, 1, 130, 3, 130, 3954, 8, 130, 1, 131, 1, 131, 1, 131, 5, 131, 3959, 8, 131, 10, 131, 12, 131, 3962, 9, 131, 1, 132, 1, 132, 5, 132, 3966, 8, 132, 10, 132, 12, 132, 3969, 9, 132, 1, 132, 1, 132, 1, 132, 5, 132, 3974, 8, 132, 10, 132, 12, 132, 3977, 9, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3982, 8, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 3990, 8, 133, 1, 133, 3, 133, 3993, 8, 133, 1, 133, 3, 133, 3996, 8, 133, 1, 133, 1, 133, 1, 133, 5, 133, 4001, 8, 133, 10, 133, 12, 133, 4004, 9, 133, 3, 133, 4006, 8, 133, 1, 133, 3, 133, 4009, 8, 133, 1, 133, 1, 133, 3, 133, 4013, 8, 133, 1, 133, 1, 133, 3, 133, 4017, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 4023, 8, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 4030, 8, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 4040, 8, 136, 1, 136, 1, 136, 3, 136, 4044, 8, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 3, 137, 4053, 8, 137, 1, 138, 3, 138, 4056, 8, 138, 1, 138, 1, 138, 3, 138, 4060, 8, 138, 1, 138, 1, 138, 5, 138, 4064, 8, 138, 10, 138, 12, 138, 4067, 9, 138, 1, 138, 1, 138, 1, 138, 5, 138, 4072, 8, 138, 10, 138, 12, 138, 4075, 9, 138, 1, 138, 1, 138, 3, 138, 4079, 8, 138, 1, 138, 1, 138, 3, 138, 4083, 8, 138, 1, 138, 1, 138, 5, 138, 4087, 8, 138, 10, 138, 12, 138, 4090, 9, 138, 1, 138, 1, 138, 1, 138, 3, 138, 4095, 8, 138, 1, 138, 3, 138, 4098, 8, 138, 3, 138, 4100, 8, 138, 1, 138, 1, 138, 3, 138, 4104, 8, 138, 1, 139, 1, 139, 1, 139, 3, 139, 4109, 8, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 4116, 8, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 4126, 8, 140, 1, 141, 1, 141, 5, 141, 4130, 8, 141, 10, 141, 12, 141, 4133, 9, 141, 1, 141, 1, 141, 3, 141, 4137, 8, 141, 1, 141, 1, 141, 3, 141, 4141, 8, 141, 1, 141, 3, 141, 4144, 8, 141, 1, 141, 3, 141, 4147, 8, 141, 1, 141, 3, 141, 4150, 8, 141, 1, 141, 3, 141, 4153, 8, 141, 1, 141, 3, 141, 4156, 8, 141, 1, 141, 3, 141, 4159, 8, 141, 1, 142, 1, 142, 3, 142, 4163, 8, 142, 1, 142, 1, 142, 3, 142, 4167, 8, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 4175, 8, 143, 1, 143, 1, 143, 3, 143, 4179, 8, 143, 1, 143, 3, 143, 4182, 8, 143, 3, 143, 4184, 8, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 3, 144, 4197, 8, 144, 1, 144, 3, 144, 4200, 8, 144, 1, 145, 1, 145, 1, 145, 5, 145, 4205, 8, 145, 10, 145, 12, 145, 4208, 9, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 4217, 8, 146, 1, 146, 3, 146, 4220, 8, 146, 1, 146, 1, 146, 1, 146, 3, 146, 4225, 8, 146, 3, 146, 4227, 8, 146, 1, 146, 1, 146, 3, 146, 4231, 8, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 4239, 8, 146, 1, 147, 1, 147, 1, 147, 1, 147, 3, 147, 4245, 8, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 4254, 8, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 3, 149, 4267, 8, 149, 1, 150, 1, 150, 3, 150, 4271, 8, 150, 1, 150, 1, 150, 5, 150, 4275, 8, 150, 10, 150, 12, 150, 4278, 9, 150, 1, 151, 1, 151, 1, 151, 3, 151, 4283, 8, 151, 1, 151, 3, 151, 4286, 8, 151, 1, 151, 1, 151, 3, 151, 4290, 8, 151, 1, 151, 3, 151, 4293, 8, 151, 3, 151, 4295, 8, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 1, 154, 1, 154, 1, 155, 1, 155, 3, 155, 4307, 8, 155, 1, 155, 1, 155, 3, 155, 4311, 8, 155, 1, 156, 1, 156, 1, 156, 1, 156, 5, 156, 4317, 8, 156, 10, 156, 12, 156, 4320, 9, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 4331, 8, 156, 1, 156, 1, 156, 4, 156, 4335, 8, 156, 11, 156, 12, 156, 4336, 3, 156, 4339, 8, 156, 1, 156, 1, 156, 4, 156, 4343, 8, 156, 11, 156, 12, 156, 4344, 3, 156, 4347, 8, 156, 3, 156, 4349, 8, 156, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 4355, 8, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 4363, 8, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 4371, 8, 158, 1, 159, 1, 159, 3, 159, 4375, 8, 159, 1, 159, 1, 159, 1, 159, 3, 159, 4380, 8, 159, 3, 159, 4382, 8, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 5, 160, 4389, 8, 160, 10, 160, 12, 160, 4392, 9, 160, 1, 160, 1, 160, 3, 160, 4396, 8, 160, 1, 161, 1, 161, 1, 161, 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, 5, 162, 4414, 8, 162, 10, 162, 12, 162, 4417, 9, 162, 1, 163, 1, 163, 3, 163, 4421, 8, 163, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 4427, 8, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 4434, 8, 164, 1, 165, 1, 165, 1, 165, 3, 165, 4439, 8, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 5, 166, 4446, 8, 166, 10, 166, 12, 166, 4449, 9, 166, 3, 166, 4451, 8, 166, 1, 167, 1, 167, 3, 167, 4455, 8, 167, 1, 168, 1, 168, 3, 168, 4459, 8, 168, 1, 168, 1, 168, 3, 168, 4463, 8, 168, 1, 168, 3, 168, 4466, 8, 168, 1, 168, 3, 168, 4469, 8, 168, 1, 168, 3, 168, 4472, 8, 168, 1, 169, 1, 169, 3, 169, 4476, 8, 169, 1, 169, 1, 169, 3, 169, 4480, 8, 169, 1, 169, 3, 169, 4483, 8, 169, 1, 169, 3, 169, 4486, 8, 169, 1, 169, 3, 169, 4489, 8, 169, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 3, 171, 4496, 8, 171, 1, 171, 1, 171, 3, 171, 4500, 8, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 5, 173, 4513, 8, 173, 10, 173, 12, 173, 4516, 9, 173, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 3, 176, 4528, 8, 176, 1, 176, 1, 176, 1, 176, 1, 176, 5, 176, 4534, 8, 176, 10, 176, 12, 176, 4537, 9, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 4546, 8, 177, 1, 178, 1, 178, 3, 178, 4550, 8, 178, 1, 178, 3, 178, 4553, 8, 178, 1, 178, 1, 178, 1, 179, 1, 179, 3, 179, 4559, 8, 179, 1, 179, 3, 179, 4562, 8, 179, 1, 179, 3, 179, 4565, 8, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 4574, 8, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 4583, 8, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 5, 182, 4591, 8, 182, 10, 182, 12, 182, 4594, 9, 182, 1, 182, 3, 182, 4597, 8, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 5, 183, 4605, 8, 183, 10, 183, 12, 183, 4608, 9, 183, 1, 183, 3, 183, 4611, 8, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 5, 184, 4620, 8, 184, 10, 184, 12, 184, 4623, 9, 184, 1, 184, 3, 184, 4626, 8, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 3, 185, 4635, 8, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 5, 186, 4642, 8, 186, 10, 186, 12, 186, 4645, 9, 186, 3, 186, 4647, 8, 186, 1, 186, 1, 186, 3, 186, 4651, 8, 186, 1, 186, 5, 186, 4654, 8, 186, 10, 186, 12, 186, 4657, 9, 186, 1, 186, 3, 186, 4660, 8, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 5, 187, 4667, 8, 187, 10, 187, 12, 187, 4670, 9, 187, 3, 187, 4672, 8, 187, 1, 187, 3, 187, 4675, 8, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 4682, 8, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 4688, 8, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 4694, 8, 188, 1, 189, 1, 189, 1, 189, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 5, 190, 4718, 8, 190, 10, 190, 12, 190, 4721, 9, 190, 3, 190, 4723, 8, 190, 1, 190, 3, 190, 4726, 8, 190, 1, 191, 1, 191, 1, 192, 1, 192, 1, 193, 1, 193, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 3, 194, 4745, 8, 194, 3, 194, 4747, 8, 194, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 5, 195, 4768, 8, 195, 10, 195, 12, 195, 4771, 9, 195, 3, 195, 4773, 8, 195, 1, 195, 3, 195, 4776, 8, 195, 1, 196, 1, 196, 1, 197, 1, 197, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 3, 199, 4795, 8, 199, 3, 199, 4797, 8, 199, 1, 200, 1, 200, 1, 200, 1, 200, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 5, 201, 4809, 8, 201, 10, 201, 12, 201, 4812, 9, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 5, 201, 4822, 8, 201, 10, 201, 12, 201, 4825, 9, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 5, 201, 4859, 8, 201, 10, 201, 12, 201, 4862, 9, 201, 1, 201, 1, 201, 3, 201, 4866, 8, 201, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 203, 1, 203, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 3, 204, 4901, 8, 204, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 3, 205, 4915, 8, 205, 1, 206, 1, 206, 1, 206, 5, 206, 4920, 8, 206, 10, 206, 12, 206, 4923, 9, 206, 1, 206, 3, 206, 4926, 8, 206, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 4932, 8, 207, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 4940, 8, 208, 3, 208, 4942, 8, 208, 1, 209, 1, 209, 1, 209, 1, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 4953, 8, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 212, 1, 212, 1, 212, 1, 212, 3, 212, 4963, 8, 212, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4970, 8, 213, 1, 214, 1, 214, 1, 214, 1, 214, 3, 214, 4976, 8, 214, 1, 215, 1, 215, 1, 215, 1, 215, 1, 216, 1, 216, 3, 216, 4984, 8, 216, 1, 217, 1, 217, 1, 217, 3, 217, 4989, 8, 217, 1, 217, 1, 217, 1, 217, 1, 217, 5, 217, 4995, 8, 217, 10, 217, 12, 217, 4998, 9, 217, 1, 217, 1, 217, 1, 217, 5, 217, 5003, 8, 217, 10, 217, 12, 217, 5006, 9, 217, 1, 217, 1, 217, 1, 217, 5, 217, 5011, 8, 217, 10, 217, 12, 217, 5014, 9, 217, 1, 217, 1, 217, 1, 217, 5, 217, 5019, 8, 217, 10, 217, 12, 217, 5022, 9, 217, 1, 217, 5, 217, 5025, 8, 217, 10, 217, 12, 217, 5028, 9, 217, 1, 217, 1, 217, 3, 217, 5032, 8, 217, 1, 218, 1, 218, 1, 218, 3, 218, 5037, 8, 218, 1, 218, 4, 218, 5040, 8, 218, 11, 218, 12, 218, 5041, 1, 218, 1, 218, 4, 218, 5046, 8, 218, 11, 218, 12, 218, 5047, 3, 218, 5050, 8, 218, 1, 218, 1, 218, 1, 218, 1, 219, 1, 219, 1, 219, 1, 219, 4, 219, 5059, 8, 219, 11, 219, 12, 219, 5060, 1, 219, 5, 219, 5064, 8, 219, 10, 219, 12, 219, 5067, 9, 219, 1, 219, 1, 219, 4, 219, 5071, 8, 219, 11, 219, 12, 219, 5072, 3, 219, 5075, 8, 219, 1, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 220, 1, 221, 1, 221, 1, 221, 1, 222, 1, 222, 1, 222, 3, 222, 5089, 8, 222, 1, 222, 1, 222, 4, 222, 5093, 8, 222, 11, 222, 12, 222, 5094, 1, 222, 1, 222, 1, 222, 3, 222, 5100, 8, 222, 1, 223, 1, 223, 1, 223, 3, 223, 5105, 8, 223, 1, 223, 1, 223, 4, 223, 5109, 8, 223, 11, 223, 12, 223, 5110, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 3, 223, 5118, 8, 223, 1, 224, 1, 224, 1, 224, 1, 225, 1, 225, 1, 225, 3, 225, 5126, 8, 225, 1, 225, 1, 225, 1, 225, 1, 225, 4, 225, 5132, 8, 225, 11, 225, 12, 225, 5133, 1, 225, 1, 225, 1, 225, 3, 225, 5139, 8, 225, 1, 226, 1, 226, 1, 226, 1, 226, 3, 226, 5145, 8, 226, 1, 226, 3, 226, 5148, 8, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 3, 226, 5156, 8, 226, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 3, 227, 5163, 8, 227, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 3, 228, 5172, 8, 228, 1, 228, 3, 228, 5175, 8, 228, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 5, 230, 5190, 8, 230, 10, 230, 12, 230, 5193, 9, 230, 1, 230, 1, 230, 1, 231, 1, 231, 1, 231, 3, 231, 5200, 8, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5208, 8, 231, 1, 232, 1, 232, 3, 232, 5212, 8, 232, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 3, 233, 5219, 8, 233, 1, 233, 1, 233, 4, 233, 5223, 8, 233, 11, 233, 12, 233, 5224, 1, 234, 1, 234, 1, 234, 1, 234, 4, 234, 5231, 8, 234, 11, 234, 12, 234, 5232, 1, 235, 1, 235, 1, 235, 3, 235, 5238, 8, 235, 1, 235, 1, 235, 1, 235, 5, 235, 5243, 8, 235, 10, 235, 12, 235, 5246, 9, 235, 1, 235, 1, 235, 1, 235, 5, 235, 5251, 8, 235, 10, 235, 12, 235, 5254, 9, 235, 1, 235, 1, 235, 1, 235, 1, 235, 3, 235, 5260, 8, 235, 1, 235, 5, 235, 5263, 8, 235, 10, 235, 12, 235, 5266, 9, 235, 3, 235, 5268, 8, 235, 3, 235, 5270, 8, 235, 1, 235, 1, 235, 4, 235, 5274, 8, 235, 11, 235, 12, 235, 5275, 3, 235, 5278, 8, 235, 1, 235, 1, 235, 5, 235, 5282, 8, 235, 10, 235, 12, 235, 5285, 9, 235, 1, 235, 1, 235, 3, 235, 5289, 8, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 3, 235, 5296, 8, 235, 1, 236, 1, 236, 1, 236, 3, 236, 5301, 8, 236, 1, 236, 1, 236, 3, 236, 5305, 8, 236, 1, 236, 1, 236, 1, 236, 3, 236, 5310, 8, 236, 5, 236, 5312, 8, 236, 10, 236, 12, 236, 5315, 9, 236, 1, 236, 1, 236, 1, 236, 3, 236, 5320, 8, 236, 1, 236, 1, 236, 1, 236, 1, 236, 3, 236, 5326, 8, 236, 1, 236, 5, 236, 5329, 8, 236, 10, 236, 12, 236, 5332, 9, 236, 3, 236, 5334, 8, 236, 3, 236, 5336, 8, 236, 1, 236, 1, 236, 4, 236, 5340, 8, 236, 11, 236, 12, 236, 5341, 3, 236, 5344, 8, 236, 1, 236, 1, 236, 5, 236, 5348, 8, 236, 10, 236, 12, 236, 5351, 9, 236, 1, 236, 1, 236, 3, 236, 5355, 8, 236, 1, 237, 1, 237, 1, 237, 3, 237, 5360, 8, 237, 1, 237, 1, 237, 1, 237, 5, 237, 5365, 8, 237, 10, 237, 12, 237, 5368, 9, 237, 1, 238, 1, 238, 1, 238, 1, 238, 5, 238, 5374, 8, 238, 10, 238, 12, 238, 5377, 9, 238, 1, 238, 1, 238, 3, 238, 5381, 8, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 5, 238, 5388, 8, 238, 10, 238, 12, 238, 5391, 9, 238, 1, 238, 3, 238, 5394, 8, 238, 1, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5400, 8, 238, 1, 238, 5, 238, 5403, 8, 238, 10, 238, 12, 238, 5406, 9, 238, 3, 238, 5408, 8, 238, 3, 238, 5410, 8, 238, 1, 238, 1, 238, 1, 238, 1, 238, 5, 238, 5416, 8, 238, 10, 238, 12, 238, 5419, 9, 238, 3, 238, 5421, 8, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5428, 8, 238, 3, 238, 5430, 8, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5435, 8, 238, 1, 238, 1, 238, 1, 238, 5, 238, 5440, 8, 238, 10, 238, 12, 238, 5443, 9, 238, 1, 238, 1, 238, 1, 238, 1, 238, 5, 238, 5449, 8, 238, 10, 238, 12, 238, 5452, 9, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5457, 8, 238, 3, 238, 5459, 8, 238, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 3, 239, 5466, 8, 239, 1, 239, 3, 239, 5469, 8, 239, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 5, 240, 5479, 8, 240, 10, 240, 12, 240, 5482, 9, 240, 1, 240, 1, 240, 1, 240, 3, 240, 5487, 8, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 3, 241, 5495, 8, 241, 1, 241, 3, 241, 5498, 8, 241, 1, 241, 1, 241, 3, 241, 5502, 8, 241, 1, 241, 3, 241, 5505, 8, 241, 1, 241, 1, 241, 3, 241, 5509, 8, 241, 3, 241, 5511, 8, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 3, 242, 5522, 8, 242, 1, 242, 3, 242, 5525, 8, 242, 1, 242, 1, 242, 3, 242, 5529, 8, 242, 1, 242, 3, 242, 5532, 8, 242, 1, 242, 3, 242, 5535, 8, 242, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 3, 243, 5542, 8, 243, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 5, 244, 5552, 8, 244, 10, 244, 12, 244, 5555, 9, 244, 3, 244, 5557, 8, 244, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 3, 245, 5564, 8, 245, 1, 245, 1, 245, 5, 245, 5568, 8, 245, 10, 245, 12, 245, 5571, 9, 245, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 5, 246, 5578, 8, 246, 10, 246, 12, 246, 5581, 9, 246, 1, 247, 1, 247, 3, 247, 5585, 8, 247, 1, 247, 1, 247, 1, 247, 5, 247, 5590, 8, 247, 10, 247, 12, 247, 5593, 9, 247, 1, 247, 1, 247, 3, 247, 5597, 8, 247, 1, 247, 1, 247, 1, 247, 1, 247, 3, 247, 5603, 8, 247, 1, 247, 1, 247, 3, 247, 5607, 8, 247, 1, 247, 1, 247, 3, 247, 5611, 8, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 3, 247, 5619, 8, 247, 1, 247, 1, 247, 3, 247, 5623, 8, 247, 1, 247, 1, 247, 3, 247, 5627, 8, 247, 1, 247, 1, 247, 1, 247, 1, 247, 3, 247, 5633, 8, 247, 3, 247, 5635, 8, 247, 1, 248, 1, 248, 1, 248, 1, 248, 1, 249, 1, 249, 1, 250, 1, 250, 1, 250, 1, 250, 3, 250, 5647, 8, 250, 1, 250, 1, 250, 1, 250, 3, 250, 5652, 8, 250, 1, 250, 1, 250, 1, 250, 1, 250, 3, 250, 5658, 8, 250, 1, 250, 1, 250, 1, 250, 1, 250, 3, 250, 5664, 8, 250, 1, 250, 1, 250, 3, 250, 5668, 8, 250, 1, 250, 1, 250, 1, 250, 3, 250, 5673, 8, 250, 3, 250, 5675, 8, 250, 1, 251, 1, 251, 1, 251, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 3, 252, 5699, 8, 252, 4, 252, 5701, 8, 252, 11, 252, 12, 252, 5702, 1, 252, 3, 252, 5706, 8, 252, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 3, 253, 5715, 8, 253, 1, 253, 1, 253, 3, 253, 5719, 8, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 3, 253, 5728, 8, 253, 1, 253, 1, 253, 3, 253, 5732, 8, 253, 1, 253, 1, 253, 3, 253, 5736, 8, 253, 1, 253, 1, 253, 1, 253, 1, 253, 3, 253, 5742, 8, 253, 3, 253, 5744, 8, 253, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 3, 254, 5753, 8, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 3, 254, 5763, 8, 254, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 3, 255, 5790, 8, 255, 1, 256, 1, 256, 3, 256, 5794, 8, 256, 1, 256, 1, 256, 1, 256, 3, 256, 5799, 8, 256, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 3, 257, 5806, 8, 257, 1, 257, 3, 257, 5809, 8, 257, 1, 257, 1, 257, 1, 257, 1, 257, 3, 257, 5815, 8, 257, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 3, 258, 5825, 8, 258, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 3, 259, 5835, 8, 259, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 5845, 8, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 5851, 8, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 5860, 8, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 5866, 8, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 5873, 8, 260, 3, 260, 5875, 8, 260, 1, 261, 1, 261, 1, 261, 1, 262, 1, 262, 1, 262, 3, 262, 5883, 8, 262, 1, 262, 1, 262, 1, 262, 1, 262, 3, 262, 5889, 8, 262, 1, 262, 1, 262, 3, 262, 5893, 8, 262, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 3, 263, 5910, 8, 263, 1, 264, 1, 264, 1, 264, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 3, 265, 5920, 8, 265, 1, 266, 1, 266, 3, 266, 5924, 8, 266, 1, 266, 1, 266, 3, 266, 5928, 8, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5938, 8, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5943, 8, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 6015, 8, 266, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 3, 267, 6033, 8, 267, 1, 268, 1, 268, 1, 268, 1, 268, 1, 269, 1, 269, 3, 269, 6041, 8, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 6047, 8, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 6059, 8, 269, 1, 269, 1, 269, 3, 269, 6063, 8, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 6074, 8, 269, 1, 269, 1, 269, 3, 269, 6078, 8, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 6087, 8, 269, 1, 270, 1, 270, 1, 270, 1, 270, 5, 270, 6093, 8, 270, 10, 270, 12, 270, 6096, 9, 270, 1, 271, 1, 271, 1, 271, 1, 271, 3, 271, 6102, 8, 271, 1, 272, 1, 272, 3, 272, 6106, 8, 272, 1, 272, 1, 272, 1, 272, 1, 273, 1, 273, 3, 273, 6113, 8, 273, 1, 273, 1, 273, 1, 273, 3, 273, 6118, 8, 273, 1, 273, 3, 273, 6121, 8, 273, 1, 273, 3, 273, 6124, 8, 273, 1, 274, 1, 274, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 6135, 8, 275, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 5, 276, 6142, 8, 276, 10, 276, 12, 276, 6145, 9, 276, 1, 276, 1, 276, 1, 276, 1, 276, 5, 276, 6151, 8, 276, 10, 276, 12, 276, 6154, 9, 276, 3, 276, 6156, 8, 276, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 5, 278, 6168, 8, 278, 10, 278, 12, 278, 6171, 9, 278, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 280, 1, 280, 1, 280, 1, 280, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 3, 281, 6188, 8, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 3, 281, 6201, 8, 281, 1, 281, 3, 281, 6204, 8, 281, 1, 281, 1, 281, 3, 281, 6208, 8, 281, 1, 281, 3, 281, 6211, 8, 281, 3, 281, 6213, 8, 281, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 6220, 8, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 6227, 8, 282, 5, 282, 6229, 8, 282, 10, 282, 12, 282, 6232, 9, 282, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 6238, 8, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 6245, 8, 282, 1, 282, 3, 282, 6248, 8, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 5, 282, 6262, 8, 282, 10, 282, 12, 282, 6265, 9, 282, 3, 282, 6267, 8, 282, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6277, 8, 283, 1, 283, 1, 283, 3, 283, 6281, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6287, 8, 283, 1, 283, 3, 283, 6290, 8, 283, 1, 283, 3, 283, 6293, 8, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6298, 8, 283, 1, 283, 1, 283, 3, 283, 6302, 8, 283, 1, 283, 3, 283, 6305, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6312, 8, 283, 1, 283, 3, 283, 6315, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6321, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6357, 8, 283, 1, 283, 3, 283, 6360, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6372, 8, 283, 1, 283, 3, 283, 6375, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6391, 8, 283, 3, 283, 6393, 8, 283, 1, 283, 1, 283, 3, 283, 6397, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6404, 8, 283, 1, 283, 1, 283, 3, 283, 6408, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6415, 8, 283, 1, 283, 3, 283, 6418, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 5, 283, 6425, 8, 283, 10, 283, 12, 283, 6428, 9, 283, 3, 283, 6430, 8, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6435, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6441, 8, 283, 3, 283, 6443, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6449, 8, 283, 1, 283, 1, 283, 3, 283, 6453, 8, 283, 1, 284, 1, 284, 1, 284, 1, 284, 3, 284, 6459, 8, 284, 1, 284, 3, 284, 6462, 8, 284, 1, 284, 3, 284, 6465, 8, 284, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 3, 285, 6478, 8, 285, 1, 285, 3, 285, 6481, 8, 285, 1, 286, 1, 286, 1, 286, 1, 286, 3, 286, 6487, 8, 286, 1, 287, 3, 287, 6490, 8, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 3, 287, 6498, 8, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 3, 287, 6506, 8, 287, 1, 288, 1, 288, 1, 288, 1, 288, 3, 288, 6512, 8, 288, 1, 288, 3, 288, 6515, 8, 288, 1, 288, 1, 288, 3, 288, 6519, 8, 288, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 6533, 8, 289, 1, 290, 1, 290, 1, 290, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 5, 291, 6543, 8, 291, 10, 291, 12, 291, 6546, 9, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 3, 291, 6553, 8, 291, 1, 291, 1, 291, 3, 291, 6557, 8, 291, 1, 291, 1, 291, 1, 291, 1, 292, 1, 292, 3, 292, 6564, 8, 292, 1, 292, 1, 292, 1, 292, 5, 292, 6569, 8, 292, 10, 292, 12, 292, 6572, 9, 292, 1, 293, 1, 293, 3, 293, 6576, 8, 293, 1, 293, 1, 293, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 5, 294, 6587, 8, 294, 10, 294, 12, 294, 6590, 9, 294, 1, 295, 1, 295, 1, 295, 1, 295, 5, 295, 6596, 8, 295, 10, 295, 12, 295, 6599, 9, 295, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 3, 296, 6606, 8, 296, 1, 297, 1, 297, 1, 297, 3, 297, 6611, 8, 297, 1, 297, 3, 297, 6614, 8, 297, 1, 298, 1, 298, 1, 298, 3, 298, 6619, 8, 298, 1, 298, 3, 298, 6622, 8, 298, 1, 299, 1, 299, 1, 300, 1, 300, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 3, 301, 6634, 8, 301, 1, 302, 1, 302, 1, 302, 3, 302, 6639, 8, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 3, 302, 6652, 8, 302, 3, 302, 6654, 8, 302, 1, 302, 1, 302, 1, 302, 3, 302, 6659, 8, 302, 1, 302, 1, 302, 3, 302, 6663, 8, 302, 1, 302, 3, 302, 6666, 8, 302, 3, 302, 6668, 8, 302, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 3, 303, 6675, 8, 303, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6682, 8, 304, 1, 304, 3, 304, 6685, 8, 304, 1, 304, 3, 304, 6688, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6694, 8, 304, 1, 304, 1, 304, 3, 304, 6698, 8, 304, 1, 305, 1, 305, 1, 305, 1, 305, 3, 305, 6704, 8, 305, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 3, 306, 6712, 8, 306, 1, 306, 1, 306, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 3, 307, 6721, 8, 307, 1, 307, 1, 307, 1, 308, 1, 308, 1, 308, 1, 309, 1, 309, 1, 309, 1, 310, 1, 310, 1, 310, 3, 310, 6734, 8, 310, 1, 310, 1, 310, 1, 310, 3, 310, 6739, 8, 310, 1, 310, 1, 310, 1, 310, 1, 310, 5, 310, 6745, 8, 310, 10, 310, 12, 310, 6748, 9, 310, 3, 310, 6750, 8, 310, 1, 311, 1, 311, 1, 311, 3, 311, 6755, 8, 311, 1, 311, 1, 311, 1, 311, 3, 311, 6760, 8, 311, 1, 311, 1, 311, 1, 311, 1, 311, 5, 311, 6766, 8, 311, 10, 311, 12, 311, 6769, 9, 311, 3, 311, 6771, 8, 311, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 3, 312, 6779, 8, 312, 1, 313, 1, 313, 3, 313, 6783, 8, 313, 1, 313, 1, 313, 1, 313, 5, 313, 6788, 8, 313, 10, 313, 12, 313, 6791, 9, 313, 1, 314, 1, 314, 1, 314, 3, 314, 6796, 8, 314, 1, 314, 3, 314, 6799, 8, 314, 1, 315, 1, 315, 3, 315, 6803, 8, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 5, 315, 6814, 8, 315, 10, 315, 12, 315, 6817, 9, 315, 1, 315, 1, 315, 1, 315, 3, 315, 6822, 8, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 5, 315, 6832, 8, 315, 10, 315, 12, 315, 6835, 9, 315, 3, 315, 6837, 8, 315, 1, 316, 1, 316, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 3, 317, 6846, 8, 317, 1, 317, 1, 317, 1, 317, 3, 317, 6851, 8, 317, 1, 318, 1, 318, 1, 319, 1, 319, 1, 320, 1, 320, 1, 321, 1, 321, 1, 322, 1, 322, 1, 323, 1, 323, 1, 324, 1, 324, 1, 325, 1, 325, 1, 325, 5, 325, 6870, 8, 325, 10, 325, 12, 325, 6873, 9, 325, 1, 326, 1, 326, 1, 327, 1, 327, 1, 328, 1, 328, 1, 329, 1, 329, 1, 330, 1, 330, 1, 330, 5, 330, 6886, 8, 330, 10, 330, 12, 330, 6889, 9, 330, 1, 331, 1, 331, 1, 332, 1, 332, 1, 332, 5, 332, 6896, 8, 332, 10, 332, 12, 332, 6899, 9, 332, 1, 333, 1, 333, 3, 333, 6903, 8, 333, 1, 334, 1, 334, 1, 334, 3, 334, 6908, 8, 334, 3, 334, 6910, 8, 334, 1, 334, 3, 334, 6913, 8, 334, 1, 334, 1, 334, 3, 334, 6917, 8, 334, 3, 334, 6919, 8, 334, 1, 335, 1, 335, 1, 335, 5, 335, 6924, 8, 335, 10, 335, 12, 335, 6927, 9, 335, 1, 336, 1, 336, 1, 337, 1, 337, 1, 337, 3, 337, 6934, 8, 337, 3, 337, 6936, 8, 337, 1, 337, 3, 337, 6939, 8, 337, 1, 337, 1, 337, 3, 337, 6943, 8, 337, 1, 337, 1, 337, 3, 337, 6947, 8, 337, 1, 338, 1, 338, 1, 338, 3, 338, 6952, 8, 338, 3, 338, 6954, 8, 338, 1, 338, 3, 338, 6957, 8, 338, 1, 338, 1, 338, 3, 338, 6961, 8, 338, 3, 338, 6963, 8, 338, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6970, 8, 339, 3, 339, 6972, 8, 339, 3, 339, 6974, 8, 339, 1, 340, 1, 340, 1, 341, 1, 341, 1, 342, 1, 342, 1, 343, 1, 343, 1, 343, 5, 343, 6985, 8, 343, 10, 343, 12, 343, 6988, 9, 343, 1, 344, 1, 344, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 6997, 8, 345, 1, 345, 3, 345, 7000, 8, 345, 1, 345, 3, 345, 7003, 8, 345, 1, 346, 1, 346, 1, 346, 1, 346, 1, 347, 1, 347, 1, 347, 1, 348, 1, 348, 1, 348, 1, 348, 3, 348, 7016, 8, 348, 1, 349, 1, 349, 1, 350, 1, 350, 3, 350, 7022, 8, 350, 1, 350, 3, 350, 7025, 8, 350, 1, 351, 1, 351, 1, 352, 1, 352, 1, 352, 1, 352, 3, 352, 7033, 8, 352, 1, 353, 1, 353, 1, 354, 1, 354, 1, 354, 3, 354, 7040, 8, 354, 1, 355, 1, 355, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 4, 356, 7058, 8, 356, 11, 356, 12, 356, 7059, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 3, 357, 7067, 8, 357, 3, 357, 7069, 8, 357, 1, 358, 1, 358, 1, 358, 4, 358, 7074, 8, 358, 11, 358, 12, 358, 7075, 3, 358, 7078, 8, 358, 1, 359, 1, 359, 3, 359, 7082, 8, 359, 1, 360, 1, 360, 1, 360, 5, 360, 7087, 8, 360, 10, 360, 12, 360, 7090, 9, 360, 1, 361, 1, 361, 1, 361, 3, 361, 7095, 8, 361, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 3, 362, 7106, 8, 362, 1, 363, 1, 363, 1, 363, 1, 363, 3, 363, 7112, 8, 363, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 1, 364, 3, 364, 7121, 8, 364, 1, 365, 1, 365, 1, 366, 1, 366, 3, 366, 7127, 8, 366, 1, 367, 3, 367, 7130, 8, 367, 1, 367, 1, 367, 3, 367, 7134, 8, 367, 1, 367, 4, 367, 7137, 8, 367, 11, 367, 12, 367, 7138, 1, 367, 3, 367, 7142, 8, 367, 1, 367, 1, 367, 3, 367, 7146, 8, 367, 1, 367, 1, 367, 3, 367, 7150, 8, 367, 3, 367, 7152, 8, 367, 1, 368, 1, 368, 1, 369, 3, 369, 7157, 8, 369, 1, 369, 1, 369, 1, 370, 3, 370, 7162, 8, 370, 1, 370, 1, 370, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 3, 371, 7175, 8, 371, 1, 371, 3, 371, 7178, 8, 371, 1, 372, 1, 372, 3, 372, 7182, 8, 372, 1, 372, 3, 372, 7185, 8, 372, 1, 372, 3, 372, 7188, 8, 372, 1, 372, 1, 372, 1, 372, 3, 372, 7193, 8, 372, 1, 372, 1, 372, 1, 372, 3, 372, 7198, 8, 372, 1, 372, 1, 372, 1, 372, 1, 372, 3, 372, 7204, 8, 372, 1, 372, 3, 372, 7207, 8, 372, 1, 372, 1, 372, 1, 372, 3, 372, 7212, 8, 372, 1, 372, 3, 372, 7215, 8, 372, 1, 372, 1, 372, 1, 372, 3, 372, 7220, 8, 372, 1, 372, 3, 372, 7223, 8, 372, 1, 372, 1, 372, 3, 372, 7227, 8, 372, 1, 372, 5, 372, 7230, 8, 372, 10, 372, 12, 372, 7233, 9, 372, 1, 372, 1, 372, 3, 372, 7237, 8, 372, 1, 372, 5, 372, 7240, 8, 372, 10, 372, 12, 372, 7243, 9, 372, 1, 372, 1, 372, 3, 372, 7247, 8, 372, 1, 372, 3, 372, 7250, 8, 372, 1, 372, 5, 372, 7253, 8, 372, 10, 372, 12, 372, 7256, 9, 372, 1, 372, 1, 372, 3, 372, 7260, 8, 372, 1, 372, 5, 372, 7263, 8, 372, 10, 372, 12, 372, 7266, 9, 372, 1, 372, 1, 372, 1, 372, 3, 372, 7271, 8, 372, 1, 372, 1, 372, 1, 372, 3, 372, 7276, 8, 372, 1, 372, 1, 372, 1, 372, 3, 372, 7281, 8, 372, 1, 372, 1, 372, 1, 372, 3, 372, 7286, 8, 372, 1, 372, 1, 372, 3, 372, 7290, 8, 372, 1, 372, 3, 372, 7293, 8, 372, 1, 372, 1, 372, 1, 372, 3, 372, 7298, 8, 372, 1, 372, 1, 372, 3, 372, 7302, 8, 372, 1, 372, 1, 372, 3, 372, 7306, 8, 372, 1, 373, 1, 373, 1, 373, 1, 373, 5, 373, 7312, 8, 373, 10, 373, 12, 373, 7315, 9, 373, 1, 373, 1, 373, 1, 374, 1, 374, 3, 374, 7321, 8, 374, 1, 374, 1, 374, 3, 374, 7325, 8, 374, 1, 374, 1, 374, 1, 374, 3, 374, 7330, 8, 374, 1, 374, 1, 374, 1, 374, 3, 374, 7335, 8, 374, 1, 374, 1, 374, 3, 374, 7339, 8, 374, 3, 374, 7341, 8, 374, 1, 374, 3, 374, 7344, 8, 374, 1, 375, 1, 375, 1, 375, 1, 375, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 377, 1, 377, 1, 377, 1, 377, 3, 377, 7360, 8, 377, 1, 377, 1, 377, 1, 378, 1, 378, 1, 378, 1, 378, 5, 378, 7368, 8, 378, 10, 378, 12, 378, 7371, 9, 378, 1, 378, 1, 378, 1, 379, 1, 379, 1, 379, 5, 379, 7378, 8, 379, 10, 379, 12, 379, 7381, 9, 379, 1, 380, 1, 380, 1, 380, 1, 380, 5, 380, 7387, 8, 380, 10, 380, 12, 380, 7390, 9, 380, 1, 381, 1, 381, 1, 381, 1, 381, 5, 381, 7396, 8, 381, 10, 381, 12, 381, 7399, 9, 381, 1, 381, 1, 381, 1, 382, 1, 382, 3, 382, 7405, 8, 382, 1, 383, 1, 383, 1, 383, 5, 383, 7410, 8, 383, 10, 383, 12, 383, 7413, 9, 383, 1, 384, 1, 384, 1, 384, 5, 384, 7418, 8, 384, 10, 384, 12, 384, 7421, 9, 384, 1, 385, 1, 385, 1, 385, 5, 385, 7426, 8, 385, 10, 385, 12, 385, 7429, 9, 385, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 3, 386, 7440, 8, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 3, 386, 7447, 8, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 1, 386, 3, 386, 7457, 8, 386, 1, 387, 1, 387, 1, 387, 3, 387, 7462, 8, 387, 1, 387, 3, 387, 7465, 8, 387, 1, 387, 1, 387, 1, 387, 3, 387, 7470, 8, 387, 1, 387, 3, 387, 7473, 8, 387, 1, 388, 1, 388, 1, 388, 1, 389, 1, 389, 1, 389, 1, 389, 1, 390, 1, 390, 1, 390, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 3, 391, 7495, 8, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 3, 391, 7504, 8, 391, 1, 391, 3, 391, 7507, 8, 391, 1, 392, 1, 392, 1, 392, 3, 392, 7512, 8, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 4, 392, 7543, 8, 392, 11, 392, 12, 392, 7544, 1, 392, 1, 392, 3, 392, 7549, 8, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 4, 392, 7556, 8, 392, 11, 392, 12, 392, 7557, 1, 392, 1, 392, 3, 392, 7562, 8, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7571, 8, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7579, 8, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7584, 8, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7592, 8, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7597, 8, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7602, 8, 392, 3, 392, 7604, 8, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7613, 8, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7618, 8, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7626, 8, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7631, 8, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7639, 8, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7647, 8, 392, 1, 392, 3, 392, 7650, 8, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7660, 8, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 3, 392, 7678, 8, 392, 1, 392, 3, 392, 7681, 8, 392, 1, 392, 3, 392, 7684, 8, 392, 1, 392, 1, 392, 3, 392, 7688, 8, 392, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 394, 1, 394, 1, 394, 1, 394, 5, 394, 7699, 8, 394, 10, 394, 12, 394, 7702, 9, 394, 1, 394, 1, 394, 1, 394, 1, 394, 1, 394, 3, 394, 7709, 8, 394, 1, 395, 1, 395, 3, 395, 7713, 8, 395, 1, 396, 1, 396, 1, 396, 3, 396, 7718, 8, 396, 1, 396, 1, 396, 1, 396, 3, 396, 7723, 8, 396, 1, 396, 1, 396, 1, 396, 1, 396, 3, 396, 7729, 8, 396, 1, 396, 1, 396, 1, 396, 3, 396, 7734, 8, 396, 1, 396, 1, 396, 3, 396, 7738, 8, 396, 1, 396, 1, 396, 1, 396, 3, 396, 7743, 8, 396, 1, 396, 1, 396, 1, 396, 3, 396, 7748, 8, 396, 1, 396, 1, 396, 1, 396, 3, 396, 7753, 8, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 5, 396, 7761, 8, 396, 10, 396, 12, 396, 7764, 9, 396, 3, 396, 7766, 8, 396, 1, 396, 1, 396, 3, 396, 7770, 8, 396, 1, 396, 1, 396, 3, 396, 7774, 8, 396, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 3, 397, 7781, 8, 397, 1, 397, 1, 397, 3, 397, 7785, 8, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 3, 397, 7814, 8, 397, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 1, 398, 3, 398, 7822, 8, 398, 1, 399, 3, 399, 7825, 8, 399, 1, 399, 3, 399, 7828, 8, 399, 1, 399, 3, 399, 7831, 8, 399, 1, 399, 3, 399, 7834, 8, 399, 1, 400, 1, 400, 1, 401, 1, 401, 1, 401, 1, 402, 1, 402, 1, 403, 1, 403, 3, 403, 7845, 8, 403, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 3, 405, 7859, 8, 405, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 5, 406, 7866, 8, 406, 10, 406, 12, 406, 7869, 9, 406, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 3, 407, 7895, 8, 407, 1, 408, 1, 408, 1, 408, 1, 408, 1, 408, 1, 409, 1, 409, 1, 409, 5, 409, 7905, 8, 409, 10, 409, 12, 409, 7908, 9, 409, 1, 410, 1, 410, 1, 410, 3, 410, 7913, 8, 410, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 3, 411, 7921, 8, 411, 1, 411, 1, 411, 1, 411, 3, 411, 7926, 8, 411, 1, 411, 1, 411, 1, 411, 1, 411, 5, 411, 7932, 8, 411, 10, 411, 12, 411, 7935, 9, 411, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 3, 412, 7942, 8, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 3, 412, 7955, 8, 412, 1, 412, 1, 412, 1, 412, 1, 412, 3, 412, 7961, 8, 412, 1, 412, 1, 412, 1, 412, 1, 412, 3, 412, 7967, 8, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 3, 412, 7982, 8, 412, 1, 412, 1, 412, 3, 412, 7986, 8, 412, 1, 412, 1, 412, 1, 412, 1, 412, 3, 412, 7992, 8, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 5, 412, 8001, 8, 412, 10, 412, 12, 412, 8004, 9, 412, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 5, 413, 8022, 8, 413, 10, 413, 12, 413, 8025, 9, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 4, 413, 8034, 8, 413, 11, 413, 12, 413, 8035, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 3, 413, 8054, 8, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 1, 413, 5, 413, 8071, 8, 413, 10, 413, 12, 413, 8074, 9, 413, 1, 414, 1, 414, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 3, 415, 8086, 8, 415, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 3, 416, 8095, 8, 416, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 3, 417, 8104, 8, 417, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 3, 418, 8113, 8, 418, 1, 419, 1, 419, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 3, 420, 8122, 8, 420, 1, 421, 1, 421, 1, 422, 1, 422, 1, 423, 1, 423, 1, 424, 1, 424, 1, 425, 1, 425, 1, 426, 1, 426, 1, 427, 1, 427, 1, 427, 0, 5, 214, 216, 822, 824, 826, 428, 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, 0, 160, 2, 0, 39, 39, 152, 152, 2, 0, 508, 508, 514, 514, 3, 0, 69, 69, 161, 161, 182, 182, 3, 0, 42, 42, 357, 357, 430, 430, 4, 0, 42, 42, 389, 389, 505, 505, 595, 595, 4, 0, 208, 208, 210, 210, 216, 216, 649, 649, 2, 0, 494, 494, 882, 882, 2, 0, 79, 79, 143, 143, 2, 0, 16, 16, 306, 306, 3, 0, 44, 44, 86, 86, 185, 185, 2, 0, 406, 406, 538, 538, 3, 0, 486, 486, 661, 661, 670, 670, 2, 0, 364, 364, 436, 436, 2, 0, 325, 325, 450, 450, 2, 0, 42, 42, 871, 872, 2, 0, 37, 37, 678, 678, 2, 0, 323, 323, 418, 418, 2, 0, 435, 435, 686, 686, 3, 0, 80, 80, 85, 85, 126, 126, 2, 0, 82, 82, 92, 92, 2, 0, 69, 69, 161, 161, 3, 0, 42, 42, 374, 374, 403, 403, 3, 0, 42, 42, 370, 370, 802, 802, 2, 0, 648, 648, 685, 685, 3, 0, 408, 408, 526, 526, 597, 597, 2, 0, 329, 329, 522, 522, 1, 0, 871, 872, 2, 0, 882, 882, 889, 889, 2, 0, 82, 82, 360, 360, 2, 0, 523, 523, 882, 882, 2, 0, 524, 524, 882, 882, 3, 0, 402, 402, 445, 445, 502, 502, 7, 0, 42, 42, 342, 342, 345, 345, 374, 374, 403, 403, 554, 554, 889, 889, 2, 0, 494, 494, 506, 506, 1, 0, 872, 873, 2, 0, 6, 6, 51, 51, 2, 0, 5, 5, 81, 81, 2, 0, 27, 27, 31, 31, 4, 0, 42, 42, 357, 357, 430, 430, 434, 434, 2, 0, 368, 368, 375, 375, 2, 0, 369, 369, 425, 425, 2, 0, 13, 13, 176, 176, 2, 0, 194, 194, 690, 690, 2, 0, 22, 22, 146, 146, 3, 0, 43, 43, 76, 76, 107, 107, 2, 0, 7, 7, 49, 49, 2, 0, 107, 107, 347, 347, 2, 0, 337, 337, 398, 398, 2, 0, 102, 102, 587, 587, 2, 0, 43, 43, 107, 107, 3, 0, 59, 59, 181, 181, 828, 828, 2, 0, 185, 185, 594, 594, 2, 0, 159, 159, 503, 503, 4, 0, 402, 402, 445, 445, 501, 501, 542, 542, 2, 0, 402, 402, 501, 501, 2, 0, 14, 14, 45, 45, 3, 0, 66, 66, 79, 79, 187, 187, 2, 0, 35, 35, 84, 84, 2, 0, 98, 98, 150, 150, 2, 0, 7, 7, 49, 50, 1, 0, 637, 638, 2, 0, 173, 173, 752, 752, 2, 0, 413, 413, 593, 593, 2, 0, 228, 228, 453, 453, 2, 0, 563, 563, 598, 598, 8, 0, 108, 108, 455, 455, 459, 460, 462, 462, 464, 464, 467, 476, 499, 499, 557, 557, 6, 0, 456, 458, 461, 461, 463, 463, 465, 465, 477, 477, 558, 558, 7, 0, 109, 109, 411, 411, 416, 416, 454, 454, 466, 466, 573, 573, 617, 617, 2, 0, 116, 116, 882, 882, 2, 0, 118, 119, 507, 507, 7, 0, 499, 499, 557, 557, 606, 609, 611, 611, 619, 619, 622, 628, 630, 632, 6, 0, 558, 558, 610, 610, 612, 612, 614, 616, 618, 618, 620, 620, 7, 0, 412, 412, 416, 416, 573, 573, 613, 613, 617, 617, 621, 621, 629, 629, 3, 0, 70, 70, 118, 119, 507, 507, 2, 0, 438, 438, 639, 639, 2, 0, 633, 633, 635, 635, 2, 0, 317, 317, 640, 640, 2, 0, 91, 91, 577, 577, 2, 0, 51, 51, 362, 362, 3, 0, 32, 32, 61, 61, 180, 180, 2, 0, 15, 15, 340, 340, 2, 0, 678, 678, 835, 835, 3, 0, 132, 132, 173, 173, 409, 409, 3, 0, 6, 6, 51, 51, 492, 492, 3, 0, 13, 13, 20, 20, 188, 188, 2, 0, 42, 42, 122, 122, 2, 0, 104, 104, 183, 183, 1, 0, 873, 874, 2, 0, 333, 333, 598, 598, 2, 0, 40, 40, 684, 684, 2, 0, 392, 392, 549, 549, 2, 0, 115, 115, 450, 450, 3, 0, 413, 413, 531, 531, 893, 894, 2, 0, 841, 841, 857, 857, 2, 0, 318, 318, 559, 559, 2, 0, 68, 68, 80, 80, 3, 0, 132, 132, 178, 178, 385, 385, 2, 0, 493, 493, 645, 645, 2, 0, 383, 383, 688, 688, 3, 0, 82, 82, 93, 93, 426, 426, 4, 0, 413, 413, 450, 450, 531, 532, 593, 593, 2, 0, 645, 645, 683, 683, 2, 0, 349, 349, 548, 548, 6, 0, 228, 228, 380, 380, 382, 382, 410, 410, 556, 556, 599, 599, 2, 0, 45, 46, 62, 62, 3, 0, 442, 442, 663, 663, 666, 666, 10, 0, 332, 332, 339, 339, 351, 353, 359, 359, 487, 487, 495, 495, 650, 650, 657, 657, 822, 822, 832, 832, 2, 0, 36, 36, 170, 170, 2, 0, 117, 117, 831, 831, 11, 0, 332, 332, 339, 339, 351, 353, 359, 359, 487, 487, 495, 495, 578, 578, 650, 650, 657, 657, 822, 822, 832, 832, 2, 0, 870, 870, 891, 892, 1, 0, 892, 893, 2, 0, 348, 348, 797, 808, 3, 0, 871, 874, 883, 883, 885, 885, 2, 0, 63, 63, 179, 179, 2, 0, 116, 116, 886, 886, 5, 0, 26, 26, 224, 226, 233, 233, 235, 238, 498, 498, 2, 0, 26, 26, 224, 224, 2, 0, 26, 26, 224, 225, 1, 0, 198, 209, 3, 0, 184, 184, 197, 197, 596, 596, 2, 0, 213, 218, 403, 403, 6, 0, 219, 219, 230, 230, 232, 232, 234, 234, 241, 241, 321, 322, 4, 0, 220, 223, 228, 229, 231, 231, 319, 319, 2, 0, 155, 155, 239, 239, 2, 0, 442, 442, 813, 821, 2, 0, 228, 228, 498, 498, 5, 0, 202, 202, 208, 208, 219, 220, 222, 222, 442, 442, 1, 0, 216, 217, 2, 0, 184, 184, 596, 596, 2, 0, 202, 202, 208, 208, 2, 0, 189, 189, 682, 682, 2, 0, 287, 288, 294, 294, 3, 0, 152, 152, 285, 288, 303, 303, 1, 0, 297, 298, 3, 0, 18, 18, 96, 96, 177, 177, 2, 0, 224, 224, 228, 228, 2, 0, 219, 220, 222, 222, 3, 0, 14, 14, 45, 45, 830, 830, 3, 0, 258, 258, 270, 271, 281, 281, 3, 0, 259, 261, 277, 280, 282, 284, 2, 0, 267, 267, 269, 269, 2, 0, 265, 265, 268, 268, 2, 0, 263, 264, 274, 276, 2, 0, 134, 134, 587, 587, 2, 0, 405, 405, 539, 539, 2, 0, 512, 512, 529, 529, 2, 0, 114, 114, 860, 860, 3, 0, 63, 63, 179, 179, 674, 674, 2, 0, 139, 139, 151, 151, 3, 0, 7, 7, 309, 309, 602, 602, 3, 0, 114, 114, 853, 854, 860, 861, 1, 0, 850, 856, 2, 0, 228, 228, 756, 796, 1, 0, 809, 812, 5, 0, 717, 718, 734, 736, 743, 743, 749, 750, 752, 752, 1, 0, 696, 703, 3, 0, 219, 223, 236, 236, 239, 239, 75, 0, 12, 12, 15, 15, 19, 19, 30, 30, 36, 37, 42, 42, 48, 48, 55, 55, 57, 57, 59, 59, 74, 74, 95, 95, 117, 117, 122, 122, 125, 125, 131, 131, 160, 160, 170, 170, 241, 241, 255, 262, 266, 266, 270, 271, 277, 284, 304, 309, 311, 329, 331, 343, 345, 376, 378, 393, 395, 400, 402, 404, 406, 410, 413, 415, 417, 426, 428, 428, 430, 434, 436, 454, 456, 463, 465, 473, 475, 476, 478, 498, 500, 506, 508, 510, 512, 522, 525, 530, 533, 538, 540, 542, 544, 554, 556, 562, 565, 572, 575, 575, 577, 605, 633, 647, 649, 665, 667, 674, 676, 685, 687, 688, 690, 695, 704, 704, 706, 707, 709, 712, 714, 716, 719, 721, 726, 727, 729, 733, 737, 738, 740, 742, 744, 744, 746, 748, 751, 751, 753, 755, 802, 802, 822, 822, 825, 825, 832, 833, 838, 838, 24, 0, 39, 39, 98, 98, 150, 150, 152, 152, 219, 221, 223, 223, 253, 254, 262, 265, 267, 269, 272, 276, 296, 296, 435, 435, 686, 686, 696, 703, 746, 746, 813, 813, 816, 821, 823, 824, 826, 827, 829, 831, 834, 834, 836, 836, 840, 840, 856, 856, 9507, 0, 859, 1, 0, 0, 0, 2, 869, 1, 0, 0, 0, 4, 878, 1, 0, 0, 0, 6, 880, 1, 0, 0, 0, 8, 922, 1, 0, 0, 0, 10, 941, 1, 0, 0, 0, 12, 952, 1, 0, 0, 0, 14, 968, 1, 0, 0, 0, 16, 973, 1, 0, 0, 0, 18, 985, 1, 0, 0, 0, 20, 1020, 1, 0, 0, 0, 22, 1030, 1, 0, 0, 0, 24, 1032, 1, 0, 0, 0, 26, 1044, 1, 0, 0, 0, 28, 1074, 1, 0, 0, 0, 30, 1110, 1, 0, 0, 0, 32, 1161, 1, 0, 0, 0, 34, 1190, 1, 0, 0, 0, 36, 1226, 1, 0, 0, 0, 38, 1240, 1, 0, 0, 0, 40, 1247, 1, 0, 0, 0, 42, 1344, 1, 0, 0, 0, 44, 1346, 1, 0, 0, 0, 46, 1383, 1, 0, 0, 0, 48, 1447, 1, 0, 0, 0, 50, 1472, 1, 0, 0, 0, 52, 1478, 1, 0, 0, 0, 54, 1500, 1, 0, 0, 0, 56, 1587, 1, 0, 0, 0, 58, 1594, 1, 0, 0, 0, 60, 1596, 1, 0, 0, 0, 62, 1601, 1, 0, 0, 0, 64, 1641, 1, 0, 0, 0, 66, 1647, 1, 0, 0, 0, 68, 1649, 1, 0, 0, 0, 70, 1670, 1, 0, 0, 0, 72, 1677, 1, 0, 0, 0, 74, 1679, 1, 0, 0, 0, 76, 1704, 1, 0, 0, 0, 78, 1707, 1, 0, 0, 0, 80, 1712, 1, 0, 0, 0, 82, 1738, 1, 0, 0, 0, 84, 1754, 1, 0, 0, 0, 86, 1756, 1, 0, 0, 0, 88, 1850, 1, 0, 0, 0, 90, 1853, 1, 0, 0, 0, 92, 1865, 1, 0, 0, 0, 94, 1869, 1, 0, 0, 0, 96, 1919, 1, 0, 0, 0, 98, 1921, 1, 0, 0, 0, 100, 1949, 1, 0, 0, 0, 102, 1959, 1, 0, 0, 0, 104, 2146, 1, 0, 0, 0, 106, 2148, 1, 0, 0, 0, 108, 2150, 1, 0, 0, 0, 110, 2153, 1, 0, 0, 0, 112, 2228, 1, 0, 0, 0, 114, 2251, 1, 0, 0, 0, 116, 2399, 1, 0, 0, 0, 118, 2404, 1, 0, 0, 0, 120, 2406, 1, 0, 0, 0, 122, 2416, 1, 0, 0, 0, 124, 2472, 1, 0, 0, 0, 126, 2492, 1, 0, 0, 0, 128, 2494, 1, 0, 0, 0, 130, 2529, 1, 0, 0, 0, 132, 2538, 1, 0, 0, 0, 134, 2545, 1, 0, 0, 0, 136, 2568, 1, 0, 0, 0, 138, 2577, 1, 0, 0, 0, 140, 2592, 1, 0, 0, 0, 142, 2614, 1, 0, 0, 0, 144, 2670, 1, 0, 0, 0, 146, 2966, 1, 0, 0, 0, 148, 3066, 1, 0, 0, 0, 150, 3068, 1, 0, 0, 0, 152, 3075, 1, 0, 0, 0, 154, 3082, 1, 0, 0, 0, 156, 3105, 1, 0, 0, 0, 158, 3115, 1, 0, 0, 0, 160, 3122, 1, 0, 0, 0, 162, 3129, 1, 0, 0, 0, 164, 3136, 1, 0, 0, 0, 166, 3145, 1, 0, 0, 0, 168, 3157, 1, 0, 0, 0, 170, 3170, 1, 0, 0, 0, 172, 3177, 1, 0, 0, 0, 174, 3193, 1, 0, 0, 0, 176, 3220, 1, 0, 0, 0, 178, 3222, 1, 0, 0, 0, 180, 3232, 1, 0, 0, 0, 182, 3236, 1, 0, 0, 0, 184, 3242, 1, 0, 0, 0, 186, 3254, 1, 0, 0, 0, 188, 3256, 1, 0, 0, 0, 190, 3263, 1, 0, 0, 0, 192, 3265, 1, 0, 0, 0, 194, 3314, 1, 0, 0, 0, 196, 3323, 1, 0, 0, 0, 198, 3325, 1, 0, 0, 0, 200, 3336, 1, 0, 0, 0, 202, 3342, 1, 0, 0, 0, 204, 3416, 1, 0, 0, 0, 206, 3479, 1, 0, 0, 0, 208, 3497, 1, 0, 0, 0, 210, 3581, 1, 0, 0, 0, 212, 3584, 1, 0, 0, 0, 214, 3596, 1, 0, 0, 0, 216, 3616, 1, 0, 0, 0, 218, 3644, 1, 0, 0, 0, 220, 3648, 1, 0, 0, 0, 222, 3650, 1, 0, 0, 0, 224, 3660, 1, 0, 0, 0, 226, 3680, 1, 0, 0, 0, 228, 3687, 1, 0, 0, 0, 230, 3689, 1, 0, 0, 0, 232, 3700, 1, 0, 0, 0, 234, 3709, 1, 0, 0, 0, 236, 3715, 1, 0, 0, 0, 238, 3738, 1, 0, 0, 0, 240, 3740, 1, 0, 0, 0, 242, 3776, 1, 0, 0, 0, 244, 3831, 1, 0, 0, 0, 246, 3840, 1, 0, 0, 0, 248, 3860, 1, 0, 0, 0, 250, 3872, 1, 0, 0, 0, 252, 3876, 1, 0, 0, 0, 254, 3887, 1, 0, 0, 0, 256, 3920, 1, 0, 0, 0, 258, 3941, 1, 0, 0, 0, 260, 3951, 1, 0, 0, 0, 262, 3955, 1, 0, 0, 0, 264, 3981, 1, 0, 0, 0, 266, 4022, 1, 0, 0, 0, 268, 4029, 1, 0, 0, 0, 270, 4031, 1, 0, 0, 0, 272, 4035, 1, 0, 0, 0, 274, 4052, 1, 0, 0, 0, 276, 4103, 1, 0, 0, 0, 278, 4115, 1, 0, 0, 0, 280, 4125, 1, 0, 0, 0, 282, 4127, 1, 0, 0, 0, 284, 4160, 1, 0, 0, 0, 286, 4168, 1, 0, 0, 0, 288, 4185, 1, 0, 0, 0, 290, 4201, 1, 0, 0, 0, 292, 4238, 1, 0, 0, 0, 294, 4244, 1, 0, 0, 0, 296, 4253, 1, 0, 0, 0, 298, 4266, 1, 0, 0, 0, 300, 4270, 1, 0, 0, 0, 302, 4294, 1, 0, 0, 0, 304, 4296, 1, 0, 0, 0, 306, 4300, 1, 0, 0, 0, 308, 4302, 1, 0, 0, 0, 310, 4310, 1, 0, 0, 0, 312, 4348, 1, 0, 0, 0, 314, 4362, 1, 0, 0, 0, 316, 4370, 1, 0, 0, 0, 318, 4374, 1, 0, 0, 0, 320, 4383, 1, 0, 0, 0, 322, 4397, 1, 0, 0, 0, 324, 4400, 1, 0, 0, 0, 326, 4418, 1, 0, 0, 0, 328, 4422, 1, 0, 0, 0, 330, 4438, 1, 0, 0, 0, 332, 4440, 1, 0, 0, 0, 334, 4452, 1, 0, 0, 0, 336, 4456, 1, 0, 0, 0, 338, 4473, 1, 0, 0, 0, 340, 4490, 1, 0, 0, 0, 342, 4493, 1, 0, 0, 0, 344, 4503, 1, 0, 0, 0, 346, 4507, 1, 0, 0, 0, 348, 4517, 1, 0, 0, 0, 350, 4520, 1, 0, 0, 0, 352, 4525, 1, 0, 0, 0, 354, 4545, 1, 0, 0, 0, 356, 4547, 1, 0, 0, 0, 358, 4564, 1, 0, 0, 0, 360, 4573, 1, 0, 0, 0, 362, 4582, 1, 0, 0, 0, 364, 4584, 1, 0, 0, 0, 366, 4598, 1, 0, 0, 0, 368, 4612, 1, 0, 0, 0, 370, 4627, 1, 0, 0, 0, 372, 4636, 1, 0, 0, 0, 374, 4661, 1, 0, 0, 0, 376, 4676, 1, 0, 0, 0, 378, 4695, 1, 0, 0, 0, 380, 4725, 1, 0, 0, 0, 382, 4727, 1, 0, 0, 0, 384, 4729, 1, 0, 0, 0, 386, 4731, 1, 0, 0, 0, 388, 4746, 1, 0, 0, 0, 390, 4775, 1, 0, 0, 0, 392, 4777, 1, 0, 0, 0, 394, 4779, 1, 0, 0, 0, 396, 4781, 1, 0, 0, 0, 398, 4796, 1, 0, 0, 0, 400, 4798, 1, 0, 0, 0, 402, 4865, 1, 0, 0, 0, 404, 4867, 1, 0, 0, 0, 406, 4873, 1, 0, 0, 0, 408, 4900, 1, 0, 0, 0, 410, 4914, 1, 0, 0, 0, 412, 4925, 1, 0, 0, 0, 414, 4927, 1, 0, 0, 0, 416, 4933, 1, 0, 0, 0, 418, 4943, 1, 0, 0, 0, 420, 4947, 1, 0, 0, 0, 422, 4954, 1, 0, 0, 0, 424, 4958, 1, 0, 0, 0, 426, 4964, 1, 0, 0, 0, 428, 4971, 1, 0, 0, 0, 430, 4977, 1, 0, 0, 0, 432, 4983, 1, 0, 0, 0, 434, 4988, 1, 0, 0, 0, 436, 5033, 1, 0, 0, 0, 438, 5054, 1, 0, 0, 0, 440, 5079, 1, 0, 0, 0, 442, 5082, 1, 0, 0, 0, 444, 5088, 1, 0, 0, 0, 446, 5104, 1, 0, 0, 0, 448, 5119, 1, 0, 0, 0, 450, 5125, 1, 0, 0, 0, 452, 5155, 1, 0, 0, 0, 454, 5157, 1, 0, 0, 0, 456, 5164, 1, 0, 0, 0, 458, 5176, 1, 0, 0, 0, 460, 5182, 1, 0, 0, 0, 462, 5207, 1, 0, 0, 0, 464, 5211, 1, 0, 0, 0, 466, 5215, 1, 0, 0, 0, 468, 5226, 1, 0, 0, 0, 470, 5234, 1, 0, 0, 0, 472, 5297, 1, 0, 0, 0, 474, 5356, 1, 0, 0, 0, 476, 5458, 1, 0, 0, 0, 478, 5468, 1, 0, 0, 0, 480, 5470, 1, 0, 0, 0, 482, 5488, 1, 0, 0, 0, 484, 5512, 1, 0, 0, 0, 486, 5536, 1, 0, 0, 0, 488, 5543, 1, 0, 0, 0, 490, 5563, 1, 0, 0, 0, 492, 5572, 1, 0, 0, 0, 494, 5634, 1, 0, 0, 0, 496, 5636, 1, 0, 0, 0, 498, 5640, 1, 0, 0, 0, 500, 5674, 1, 0, 0, 0, 502, 5676, 1, 0, 0, 0, 504, 5679, 1, 0, 0, 0, 506, 5743, 1, 0, 0, 0, 508, 5762, 1, 0, 0, 0, 510, 5789, 1, 0, 0, 0, 512, 5793, 1, 0, 0, 0, 514, 5814, 1, 0, 0, 0, 516, 5824, 1, 0, 0, 0, 518, 5834, 1, 0, 0, 0, 520, 5874, 1, 0, 0, 0, 522, 5876, 1, 0, 0, 0, 524, 5879, 1, 0, 0, 0, 526, 5909, 1, 0, 0, 0, 528, 5911, 1, 0, 0, 0, 530, 5914, 1, 0, 0, 0, 532, 6014, 1, 0, 0, 0, 534, 6032, 1, 0, 0, 0, 536, 6034, 1, 0, 0, 0, 538, 6086, 1, 0, 0, 0, 540, 6088, 1, 0, 0, 0, 542, 6097, 1, 0, 0, 0, 544, 6103, 1, 0, 0, 0, 546, 6110, 1, 0, 0, 0, 548, 6125, 1, 0, 0, 0, 550, 6134, 1, 0, 0, 0, 552, 6136, 1, 0, 0, 0, 554, 6157, 1, 0, 0, 0, 556, 6162, 1, 0, 0, 0, 558, 6172, 1, 0, 0, 0, 560, 6178, 1, 0, 0, 0, 562, 6212, 1, 0, 0, 0, 564, 6266, 1, 0, 0, 0, 566, 6452, 1, 0, 0, 0, 568, 6464, 1, 0, 0, 0, 570, 6480, 1, 0, 0, 0, 572, 6486, 1, 0, 0, 0, 574, 6505, 1, 0, 0, 0, 576, 6518, 1, 0, 0, 0, 578, 6532, 1, 0, 0, 0, 580, 6534, 1, 0, 0, 0, 582, 6537, 1, 0, 0, 0, 584, 6561, 1, 0, 0, 0, 586, 6573, 1, 0, 0, 0, 588, 6579, 1, 0, 0, 0, 590, 6591, 1, 0, 0, 0, 592, 6605, 1, 0, 0, 0, 594, 6607, 1, 0, 0, 0, 596, 6615, 1, 0, 0, 0, 598, 6623, 1, 0, 0, 0, 600, 6625, 1, 0, 0, 0, 602, 6627, 1, 0, 0, 0, 604, 6667, 1, 0, 0, 0, 606, 6674, 1, 0, 0, 0, 608, 6676, 1, 0, 0, 0, 610, 6699, 1, 0, 0, 0, 612, 6705, 1, 0, 0, 0, 614, 6715, 1, 0, 0, 0, 616, 6724, 1, 0, 0, 0, 618, 6727, 1, 0, 0, 0, 620, 6730, 1, 0, 0, 0, 622, 6751, 1, 0, 0, 0, 624, 6772, 1, 0, 0, 0, 626, 6780, 1, 0, 0, 0, 628, 6792, 1, 0, 0, 0, 630, 6800, 1, 0, 0, 0, 632, 6838, 1, 0, 0, 0, 634, 6850, 1, 0, 0, 0, 636, 6852, 1, 0, 0, 0, 638, 6854, 1, 0, 0, 0, 640, 6856, 1, 0, 0, 0, 642, 6858, 1, 0, 0, 0, 644, 6860, 1, 0, 0, 0, 646, 6862, 1, 0, 0, 0, 648, 6864, 1, 0, 0, 0, 650, 6866, 1, 0, 0, 0, 652, 6874, 1, 0, 0, 0, 654, 6876, 1, 0, 0, 0, 656, 6878, 1, 0, 0, 0, 658, 6880, 1, 0, 0, 0, 660, 6882, 1, 0, 0, 0, 662, 6890, 1, 0, 0, 0, 664, 6892, 1, 0, 0, 0, 666, 6902, 1, 0, 0, 0, 668, 6918, 1, 0, 0, 0, 670, 6920, 1, 0, 0, 0, 672, 6928, 1, 0, 0, 0, 674, 6946, 1, 0, 0, 0, 676, 6962, 1, 0, 0, 0, 678, 6973, 1, 0, 0, 0, 680, 6975, 1, 0, 0, 0, 682, 6977, 1, 0, 0, 0, 684, 6979, 1, 0, 0, 0, 686, 6981, 1, 0, 0, 0, 688, 6989, 1, 0, 0, 0, 690, 6999, 1, 0, 0, 0, 692, 7004, 1, 0, 0, 0, 694, 7008, 1, 0, 0, 0, 696, 7015, 1, 0, 0, 0, 698, 7017, 1, 0, 0, 0, 700, 7024, 1, 0, 0, 0, 702, 7026, 1, 0, 0, 0, 704, 7032, 1, 0, 0, 0, 706, 7034, 1, 0, 0, 0, 708, 7039, 1, 0, 0, 0, 710, 7041, 1, 0, 0, 0, 712, 7043, 1, 0, 0, 0, 714, 7061, 1, 0, 0, 0, 716, 7077, 1, 0, 0, 0, 718, 7079, 1, 0, 0, 0, 720, 7083, 1, 0, 0, 0, 722, 7094, 1, 0, 0, 0, 724, 7105, 1, 0, 0, 0, 726, 7111, 1, 0, 0, 0, 728, 7120, 1, 0, 0, 0, 730, 7122, 1, 0, 0, 0, 732, 7126, 1, 0, 0, 0, 734, 7151, 1, 0, 0, 0, 736, 7153, 1, 0, 0, 0, 738, 7156, 1, 0, 0, 0, 740, 7161, 1, 0, 0, 0, 742, 7177, 1, 0, 0, 0, 744, 7305, 1, 0, 0, 0, 746, 7307, 1, 0, 0, 0, 748, 7340, 1, 0, 0, 0, 750, 7345, 1, 0, 0, 0, 752, 7349, 1, 0, 0, 0, 754, 7355, 1, 0, 0, 0, 756, 7363, 1, 0, 0, 0, 758, 7374, 1, 0, 0, 0, 760, 7382, 1, 0, 0, 0, 762, 7391, 1, 0, 0, 0, 764, 7404, 1, 0, 0, 0, 766, 7406, 1, 0, 0, 0, 768, 7414, 1, 0, 0, 0, 770, 7422, 1, 0, 0, 0, 772, 7456, 1, 0, 0, 0, 774, 7472, 1, 0, 0, 0, 776, 7474, 1, 0, 0, 0, 778, 7477, 1, 0, 0, 0, 780, 7481, 1, 0, 0, 0, 782, 7506, 1, 0, 0, 0, 784, 7687, 1, 0, 0, 0, 786, 7689, 1, 0, 0, 0, 788, 7708, 1, 0, 0, 0, 790, 7710, 1, 0, 0, 0, 792, 7773, 1, 0, 0, 0, 794, 7813, 1, 0, 0, 0, 796, 7815, 1, 0, 0, 0, 798, 7824, 1, 0, 0, 0, 800, 7835, 1, 0, 0, 0, 802, 7837, 1, 0, 0, 0, 804, 7840, 1, 0, 0, 0, 806, 7844, 1, 0, 0, 0, 808, 7846, 1, 0, 0, 0, 810, 7858, 1, 0, 0, 0, 812, 7860, 1, 0, 0, 0, 814, 7894, 1, 0, 0, 0, 816, 7896, 1, 0, 0, 0, 818, 7901, 1, 0, 0, 0, 820, 7912, 1, 0, 0, 0, 822, 7925, 1, 0, 0, 0, 824, 7936, 1, 0, 0, 0, 826, 8053, 1, 0, 0, 0, 828, 8075, 1, 0, 0, 0, 830, 8085, 1, 0, 0, 0, 832, 8094, 1, 0, 0, 0, 834, 8103, 1, 0, 0, 0, 836, 8112, 1, 0, 0, 0, 838, 8114, 1, 0, 0, 0, 840, 8121, 1, 0, 0, 0, 842, 8123, 1, 0, 0, 0, 844, 8125, 1, 0, 0, 0, 846, 8127, 1, 0, 0, 0, 848, 8129, 1, 0, 0, 0, 850, 8131, 1, 0, 0, 0, 852, 8133, 1, 0, 0, 0, 854, 8135, 1, 0, 0, 0, 856, 858, 3, 2, 1, 0, 857, 856, 1, 0, 0, 0, 858, 861, 1, 0, 0, 0, 859, 857, 1, 0, 0, 0, 859, 860, 1, 0, 0, 0, 860, 862, 1, 0, 0, 0, 861, 859, 1, 0, 0, 0, 862, 863, 5, 0, 0, 1, 863, 1, 1, 0, 0, 0, 864, 866, 3, 4, 2, 0, 865, 867, 5, 869, 0, 0, 866, 865, 1, 0, 0, 0, 866, 867, 1, 0, 0, 0, 867, 870, 1, 0, 0, 0, 868, 870, 3, 6, 3, 0, 869, 864, 1, 0, 0, 0, 869, 868, 1, 0, 0, 0, 870, 3, 1, 0, 0, 0, 871, 879, 3, 8, 4, 0, 872, 879, 3, 10, 5, 0, 873, 879, 3, 12, 6, 0, 874, 879, 3, 14, 7, 0, 875, 879, 3, 16, 8, 0, 876, 879, 3, 20, 10, 0, 877, 879, 3, 22, 11, 0, 878, 871, 1, 0, 0, 0, 878, 872, 1, 0, 0, 0, 878, 873, 1, 0, 0, 0, 878, 874, 1, 0, 0, 0, 878, 875, 1, 0, 0, 0, 878, 876, 1, 0, 0, 0, 878, 877, 1, 0, 0, 0, 879, 5, 1, 0, 0, 0, 880, 881, 5, 869, 0, 0, 881, 7, 1, 0, 0, 0, 882, 923, 3, 24, 12, 0, 883, 923, 3, 26, 13, 0, 884, 923, 3, 28, 14, 0, 885, 923, 3, 30, 15, 0, 886, 923, 3, 32, 16, 0, 887, 923, 3, 34, 17, 0, 888, 923, 3, 36, 18, 0, 889, 923, 3, 40, 20, 0, 890, 923, 3, 42, 21, 0, 891, 923, 3, 44, 22, 0, 892, 923, 3, 46, 23, 0, 893, 923, 3, 48, 24, 0, 894, 923, 3, 54, 27, 0, 895, 923, 3, 38, 19, 0, 896, 923, 3, 126, 63, 0, 897, 923, 3, 128, 64, 0, 898, 923, 3, 130, 65, 0, 899, 923, 3, 132, 66, 0, 900, 923, 3, 134, 67, 0, 901, 923, 3, 136, 68, 0, 902, 923, 3, 138, 69, 0, 903, 923, 3, 140, 70, 0, 904, 923, 3, 142, 71, 0, 905, 923, 3, 144, 72, 0, 906, 923, 3, 150, 75, 0, 907, 923, 3, 152, 76, 0, 908, 923, 3, 154, 77, 0, 909, 923, 3, 156, 78, 0, 910, 923, 3, 158, 79, 0, 911, 923, 3, 160, 80, 0, 912, 923, 3, 162, 81, 0, 913, 923, 3, 164, 82, 0, 914, 923, 3, 166, 83, 0, 915, 923, 3, 168, 84, 0, 916, 923, 3, 170, 85, 0, 917, 923, 3, 172, 86, 0, 918, 923, 3, 174, 87, 0, 919, 923, 3, 176, 88, 0, 920, 923, 3, 178, 89, 0, 921, 923, 3, 182, 91, 0, 922, 882, 1, 0, 0, 0, 922, 883, 1, 0, 0, 0, 922, 884, 1, 0, 0, 0, 922, 885, 1, 0, 0, 0, 922, 886, 1, 0, 0, 0, 922, 887, 1, 0, 0, 0, 922, 888, 1, 0, 0, 0, 922, 889, 1, 0, 0, 0, 922, 890, 1, 0, 0, 0, 922, 891, 1, 0, 0, 0, 922, 892, 1, 0, 0, 0, 922, 893, 1, 0, 0, 0, 922, 894, 1, 0, 0, 0, 922, 895, 1, 0, 0, 0, 922, 896, 1, 0, 0, 0, 922, 897, 1, 0, 0, 0, 922, 898, 1, 0, 0, 0, 922, 899, 1, 0, 0, 0, 922, 900, 1, 0, 0, 0, 922, 901, 1, 0, 0, 0, 922, 902, 1, 0, 0, 0, 922, 903, 1, 0, 0, 0, 922, 904, 1, 0, 0, 0, 922, 905, 1, 0, 0, 0, 922, 906, 1, 0, 0, 0, 922, 907, 1, 0, 0, 0, 922, 908, 1, 0, 0, 0, 922, 909, 1, 0, 0, 0, 922, 910, 1, 0, 0, 0, 922, 911, 1, 0, 0, 0, 922, 912, 1, 0, 0, 0, 922, 913, 1, 0, 0, 0, 922, 914, 1, 0, 0, 0, 922, 915, 1, 0, 0, 0, 922, 916, 1, 0, 0, 0, 922, 917, 1, 0, 0, 0, 922, 918, 1, 0, 0, 0, 922, 919, 1, 0, 0, 0, 922, 920, 1, 0, 0, 0, 922, 921, 1, 0, 0, 0, 923, 9, 1, 0, 0, 0, 924, 942, 3, 210, 105, 0, 925, 942, 3, 212, 106, 0, 926, 942, 3, 192, 96, 0, 927, 942, 3, 220, 110, 0, 928, 942, 3, 186, 93, 0, 929, 942, 3, 208, 104, 0, 930, 942, 3, 184, 92, 0, 931, 942, 3, 198, 99, 0, 932, 942, 3, 202, 101, 0, 933, 942, 3, 204, 102, 0, 934, 942, 3, 206, 103, 0, 935, 942, 3, 188, 94, 0, 936, 942, 3, 190, 95, 0, 937, 942, 3, 252, 126, 0, 938, 942, 3, 222, 111, 0, 939, 942, 3, 626, 313, 0, 940, 942, 3, 628, 314, 0, 941, 924, 1, 0, 0, 0, 941, 925, 1, 0, 0, 0, 941, 926, 1, 0, 0, 0, 941, 927, 1, 0, 0, 0, 941, 928, 1, 0, 0, 0, 941, 929, 1, 0, 0, 0, 941, 930, 1, 0, 0, 0, 941, 931, 1, 0, 0, 0, 941, 932, 1, 0, 0, 0, 941, 933, 1, 0, 0, 0, 941, 934, 1, 0, 0, 0, 941, 935, 1, 0, 0, 0, 941, 936, 1, 0, 0, 0, 941, 937, 1, 0, 0, 0, 941, 938, 1, 0, 0, 0, 941, 939, 1, 0, 0, 0, 941, 940, 1, 0, 0, 0, 942, 11, 1, 0, 0, 0, 943, 953, 3, 332, 166, 0, 944, 953, 3, 334, 167, 0, 945, 953, 3, 336, 168, 0, 946, 953, 3, 338, 169, 0, 947, 953, 3, 340, 170, 0, 948, 953, 3, 342, 171, 0, 949, 953, 3, 344, 172, 0, 950, 953, 3, 346, 173, 0, 951, 953, 3, 348, 174, 0, 952, 943, 1, 0, 0, 0, 952, 944, 1, 0, 0, 0, 952, 945, 1, 0, 0, 0, 952, 946, 1, 0, 0, 0, 952, 947, 1, 0, 0, 0, 952, 948, 1, 0, 0, 0, 952, 949, 1, 0, 0, 0, 952, 950, 1, 0, 0, 0, 952, 951, 1, 0, 0, 0, 953, 13, 1, 0, 0, 0, 954, 969, 3, 364, 182, 0, 955, 969, 3, 366, 183, 0, 956, 969, 3, 368, 184, 0, 957, 969, 3, 370, 185, 0, 958, 969, 3, 372, 186, 0, 959, 969, 3, 374, 187, 0, 960, 969, 3, 376, 188, 0, 961, 969, 3, 378, 189, 0, 962, 969, 3, 414, 207, 0, 963, 969, 3, 416, 208, 0, 964, 969, 3, 418, 209, 0, 965, 969, 3, 420, 210, 0, 966, 969, 3, 422, 211, 0, 967, 969, 3, 424, 212, 0, 968, 954, 1, 0, 0, 0, 968, 955, 1, 0, 0, 0, 968, 956, 1, 0, 0, 0, 968, 957, 1, 0, 0, 0, 968, 958, 1, 0, 0, 0, 968, 959, 1, 0, 0, 0, 968, 960, 1, 0, 0, 0, 968, 961, 1, 0, 0, 0, 968, 962, 1, 0, 0, 0, 968, 963, 1, 0, 0, 0, 968, 964, 1, 0, 0, 0, 968, 965, 1, 0, 0, 0, 968, 966, 1, 0, 0, 0, 968, 967, 1, 0, 0, 0, 969, 15, 1, 0, 0, 0, 970, 974, 3, 426, 213, 0, 971, 974, 3, 428, 214, 0, 972, 974, 3, 430, 215, 0, 973, 970, 1, 0, 0, 0, 973, 971, 1, 0, 0, 0, 973, 972, 1, 0, 0, 0, 974, 17, 1, 0, 0, 0, 975, 986, 3, 434, 217, 0, 976, 986, 3, 436, 218, 0, 977, 986, 3, 438, 219, 0, 978, 986, 3, 442, 221, 0, 979, 986, 3, 444, 222, 0, 980, 986, 3, 446, 223, 0, 981, 986, 3, 450, 225, 0, 982, 986, 3, 440, 220, 0, 983, 986, 3, 448, 224, 0, 984, 986, 3, 452, 226, 0, 985, 975, 1, 0, 0, 0, 985, 976, 1, 0, 0, 0, 985, 977, 1, 0, 0, 0, 985, 978, 1, 0, 0, 0, 985, 979, 1, 0, 0, 0, 985, 980, 1, 0, 0, 0, 985, 981, 1, 0, 0, 0, 985, 982, 1, 0, 0, 0, 985, 983, 1, 0, 0, 0, 985, 984, 1, 0, 0, 0, 986, 19, 1, 0, 0, 0, 987, 1021, 3, 470, 235, 0, 988, 1021, 3, 472, 236, 0, 989, 1021, 3, 474, 237, 0, 990, 1021, 3, 476, 238, 0, 991, 1021, 3, 480, 240, 0, 992, 1021, 3, 492, 246, 0, 993, 1021, 3, 494, 247, 0, 994, 1021, 3, 482, 241, 0, 995, 1021, 3, 484, 242, 0, 996, 1021, 3, 486, 243, 0, 997, 1021, 3, 488, 244, 0, 998, 1021, 3, 538, 269, 0, 999, 1021, 3, 540, 270, 0, 1000, 1021, 3, 542, 271, 0, 1001, 1021, 3, 544, 272, 0, 1002, 1021, 3, 546, 273, 0, 1003, 1021, 3, 552, 276, 0, 1004, 1021, 3, 556, 278, 0, 1005, 1021, 3, 558, 279, 0, 1006, 1021, 3, 560, 280, 0, 1007, 1021, 3, 562, 281, 0, 1008, 1021, 3, 564, 282, 0, 1009, 1021, 3, 566, 283, 0, 1010, 1021, 3, 580, 290, 0, 1011, 1021, 3, 582, 291, 0, 1012, 1021, 3, 584, 292, 0, 1013, 1021, 3, 586, 293, 0, 1014, 1021, 3, 588, 294, 0, 1015, 1021, 3, 590, 295, 0, 1016, 1021, 3, 594, 297, 0, 1017, 1021, 3, 596, 298, 0, 1018, 1021, 3, 598, 299, 0, 1019, 1021, 3, 600, 300, 0, 1020, 987, 1, 0, 0, 0, 1020, 988, 1, 0, 0, 0, 1020, 989, 1, 0, 0, 0, 1020, 990, 1, 0, 0, 0, 1020, 991, 1, 0, 0, 0, 1020, 992, 1, 0, 0, 0, 1020, 993, 1, 0, 0, 0, 1020, 994, 1, 0, 0, 0, 1020, 995, 1, 0, 0, 0, 1020, 996, 1, 0, 0, 0, 1020, 997, 1, 0, 0, 0, 1020, 998, 1, 0, 0, 0, 1020, 999, 1, 0, 0, 0, 1020, 1000, 1, 0, 0, 0, 1020, 1001, 1, 0, 0, 0, 1020, 1002, 1, 0, 0, 0, 1020, 1003, 1, 0, 0, 0, 1020, 1004, 1, 0, 0, 0, 1020, 1005, 1, 0, 0, 0, 1020, 1006, 1, 0, 0, 0, 1020, 1007, 1, 0, 0, 0, 1020, 1008, 1, 0, 0, 0, 1020, 1009, 1, 0, 0, 0, 1020, 1010, 1, 0, 0, 0, 1020, 1011, 1, 0, 0, 0, 1020, 1012, 1, 0, 0, 0, 1020, 1013, 1, 0, 0, 0, 1020, 1014, 1, 0, 0, 0, 1020, 1015, 1, 0, 0, 0, 1020, 1016, 1, 0, 0, 0, 1020, 1017, 1, 0, 0, 0, 1020, 1018, 1, 0, 0, 0, 1020, 1019, 1, 0, 0, 0, 1021, 21, 1, 0, 0, 0, 1022, 1031, 3, 612, 306, 0, 1023, 1031, 3, 610, 305, 0, 1024, 1031, 3, 614, 307, 0, 1025, 1031, 3, 616, 308, 0, 1026, 1031, 3, 618, 309, 0, 1027, 1031, 3, 620, 310, 0, 1028, 1031, 3, 622, 311, 0, 1029, 1031, 3, 630, 315, 0, 1030, 1022, 1, 0, 0, 0, 1030, 1023, 1, 0, 0, 0, 1030, 1024, 1, 0, 0, 0, 1030, 1025, 1, 0, 0, 0, 1030, 1026, 1, 0, 0, 0, 1030, 1027, 1, 0, 0, 0, 1030, 1028, 1, 0, 0, 0, 1030, 1029, 1, 0, 0, 0, 1031, 23, 1, 0, 0, 0, 1032, 1033, 5, 34, 0, 0, 1033, 1035, 7, 0, 0, 0, 1034, 1036, 3, 778, 389, 0, 1035, 1034, 1, 0, 0, 0, 1035, 1036, 1, 0, 0, 0, 1036, 1037, 1, 0, 0, 0, 1037, 1041, 3, 636, 318, 0, 1038, 1040, 3, 56, 28, 0, 1039, 1038, 1, 0, 0, 0, 1040, 1043, 1, 0, 0, 0, 1041, 1039, 1, 0, 0, 0, 1041, 1042, 1, 0, 0, 0, 1042, 25, 1, 0, 0, 0, 1043, 1041, 1, 0, 0, 0, 1044, 1046, 5, 34, 0, 0, 1045, 1047, 3, 62, 31, 0, 1046, 1045, 1, 0, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, 1048, 1, 0, 0, 0, 1048, 1050, 5, 385, 0, 0, 1049, 1051, 3, 778, 389, 0, 1050, 1049, 1, 0, 0, 0, 1050, 1051, 1, 0, 0, 0, 1051, 1052, 1, 0, 0, 0, 1052, 1053, 3, 718, 359, 0, 1053, 1054, 5, 119, 0, 0, 1054, 1055, 5, 590, 0, 0, 1055, 1062, 3, 64, 32, 0, 1056, 1057, 5, 119, 0, 0, 1057, 1059, 5, 343, 0, 0, 1058, 1060, 5, 114, 0, 0, 1059, 1058, 1, 0, 0, 0, 1059, 1060, 1, 0, 0, 0, 1060, 1061, 1, 0, 0, 0, 1061, 1063, 5, 541, 0, 0, 1062, 1056, 1, 0, 0, 0, 1062, 1063, 1, 0, 0, 0, 1063, 1065, 1, 0, 0, 0, 1064, 1066, 3, 72, 36, 0, 1065, 1064, 1, 0, 0, 0, 1065, 1066, 1, 0, 0, 0, 1066, 1069, 1, 0, 0, 0, 1067, 1068, 5, 340, 0, 0, 1068, 1070, 5, 882, 0, 0, 1069, 1067, 1, 0, 0, 0, 1069, 1070, 1, 0, 0, 0, 1070, 1071, 1, 0, 0, 0, 1071, 1072, 5, 371, 0, 0, 1072, 1073, 3, 432, 216, 0, 1073, 27, 1, 0, 0, 0, 1074, 1076, 5, 34, 0, 0, 1075, 1077, 7, 1, 0, 0, 1076, 1075, 1, 0, 0, 0, 1076, 1077, 1, 0, 0, 0, 1077, 1079, 1, 0, 0, 0, 1078, 1080, 7, 2, 0, 0, 1079, 1078, 1, 0, 0, 0, 1079, 1080, 1, 0, 0, 0, 1080, 1081, 1, 0, 0, 0, 1081, 1082, 5, 82, 0, 0, 1082, 1084, 3, 648, 324, 0, 1083, 1085, 3, 74, 37, 0, 1084, 1083, 1, 0, 0, 0, 1084, 1085, 1, 0, 0, 0, 1085, 1086, 1, 0, 0, 0, 1086, 1087, 5, 119, 0, 0, 1087, 1088, 3, 662, 331, 0, 1088, 1092, 3, 756, 378, 0, 1089, 1091, 3, 76, 38, 0, 1090, 1089, 1, 0, 0, 0, 1091, 1094, 1, 0, 0, 0, 1092, 1090, 1, 0, 0, 0, 1092, 1093, 1, 0, 0, 0, 1093, 1107, 1, 0, 0, 0, 1094, 1092, 1, 0, 0, 0, 1095, 1097, 5, 308, 0, 0, 1096, 1098, 5, 857, 0, 0, 1097, 1096, 1, 0, 0, 0, 1097, 1098, 1, 0, 0, 0, 1098, 1099, 1, 0, 0, 0, 1099, 1106, 7, 3, 0, 0, 1100, 1102, 5, 104, 0, 0, 1101, 1103, 5, 857, 0, 0, 1102, 1101, 1, 0, 0, 0, 1102, 1103, 1, 0, 0, 0, 1103, 1104, 1, 0, 0, 0, 1104, 1106, 7, 4, 0, 0, 1105, 1095, 1, 0, 0, 0, 1105, 1100, 1, 0, 0, 0, 1106, 1109, 1, 0, 0, 0, 1107, 1105, 1, 0, 0, 0, 1107, 1108, 1, 0, 0, 0, 1108, 29, 1, 0, 0, 0, 1109, 1107, 1, 0, 0, 0, 1110, 1111, 5, 34, 0, 0, 1111, 1112, 5, 451, 0, 0, 1112, 1113, 5, 74, 0, 0, 1113, 1114, 3, 722, 361, 0, 1114, 1115, 5, 6, 0, 0, 1115, 1116, 5, 671, 0, 0, 1116, 1122, 5, 882, 0, 0, 1117, 1119, 5, 428, 0, 0, 1118, 1120, 5, 857, 0, 0, 1119, 1118, 1, 0, 0, 0, 1119, 1120, 1, 0, 0, 0, 1120, 1121, 1, 0, 0, 0, 1121, 1123, 3, 732, 366, 0, 1122, 1117, 1, 0, 0, 0, 1122, 1123, 1, 0, 0, 0, 1123, 1129, 1, 0, 0, 0, 1124, 1126, 5, 672, 0, 0, 1125, 1127, 5, 857, 0, 0, 1126, 1125, 1, 0, 0, 0, 1126, 1127, 1, 0, 0, 0, 1127, 1128, 1, 0, 0, 0, 1128, 1130, 3, 732, 366, 0, 1129, 1124, 1, 0, 0, 0, 1129, 1130, 1, 0, 0, 0, 1130, 1136, 1, 0, 0, 0, 1131, 1133, 5, 553, 0, 0, 1132, 1134, 5, 857, 0, 0, 1133, 1132, 1, 0, 0, 0, 1133, 1134, 1, 0, 0, 0, 1134, 1135, 1, 0, 0, 0, 1135, 1137, 3, 732, 366, 0, 1136, 1131, 1, 0, 0, 0, 1136, 1137, 1, 0, 0, 0, 1137, 1143, 1, 0, 0, 0, 1138, 1140, 5, 504, 0, 0, 1139, 1141, 5, 857, 0, 0, 1140, 1139, 1, 0, 0, 0, 1140, 1141, 1, 0, 0, 0, 1141, 1142, 1, 0, 0, 0, 1142, 1144, 3, 722, 361, 0, 1143, 1138, 1, 0, 0, 0, 1143, 1144, 1, 0, 0, 0, 1144, 1146, 1, 0, 0, 0, 1145, 1147, 5, 687, 0, 0, 1146, 1145, 1, 0, 0, 0, 1146, 1147, 1, 0, 0, 0, 1147, 1153, 1, 0, 0, 0, 1148, 1150, 5, 340, 0, 0, 1149, 1151, 5, 857, 0, 0, 1150, 1149, 1, 0, 0, 0, 1150, 1151, 1, 0, 0, 0, 1151, 1152, 1, 0, 0, 0, 1152, 1154, 5, 882, 0, 0, 1153, 1148, 1, 0, 0, 0, 1153, 1154, 1, 0, 0, 0, 1154, 1155, 1, 0, 0, 0, 1155, 1157, 5, 380, 0, 0, 1156, 1158, 5, 857, 0, 0, 1157, 1156, 1, 0, 0, 0, 1157, 1158, 1, 0, 0, 0, 1158, 1159, 1, 0, 0, 0, 1159, 1160, 3, 708, 354, 0, 1160, 31, 1, 0, 0, 0, 1161, 1163, 5, 34, 0, 0, 1162, 1164, 3, 62, 31, 0, 1163, 1162, 1, 0, 0, 0, 1163, 1164, 1, 0, 0, 0, 1164, 1165, 1, 0, 0, 0, 1165, 1167, 5, 132, 0, 0, 1166, 1168, 3, 778, 389, 0, 1167, 1166, 1, 0, 0, 0, 1167, 1168, 1, 0, 0, 0, 1168, 1169, 1, 0, 0, 0, 1169, 1170, 3, 718, 359, 0, 1170, 1172, 5, 866, 0, 0, 1171, 1173, 3, 78, 39, 0, 1172, 1171, 1, 0, 0, 0, 1172, 1173, 1, 0, 0, 0, 1173, 1178, 1, 0, 0, 0, 1174, 1175, 5, 868, 0, 0, 1175, 1177, 3, 78, 39, 0, 1176, 1174, 1, 0, 0, 0, 1177, 1180, 1, 0, 0, 0, 1178, 1176, 1, 0, 0, 0, 1178, 1179, 1, 0, 0, 0, 1179, 1181, 1, 0, 0, 0, 1180, 1178, 1, 0, 0, 0, 1181, 1185, 5, 867, 0, 0, 1182, 1184, 3, 82, 41, 0, 1183, 1182, 1, 0, 0, 0, 1184, 1187, 1, 0, 0, 0, 1185, 1183, 1, 0, 0, 0, 1185, 1186, 1, 0, 0, 0, 1186, 1188, 1, 0, 0, 0, 1187, 1185, 1, 0, 0, 0, 1188, 1189, 3, 432, 216, 0, 1189, 33, 1, 0, 0, 0, 1190, 1192, 5, 34, 0, 0, 1191, 1193, 3, 62, 31, 0, 1192, 1191, 1, 0, 0, 0, 1192, 1193, 1, 0, 0, 0, 1193, 1195, 1, 0, 0, 0, 1194, 1196, 5, 307, 0, 0, 1195, 1194, 1, 0, 0, 0, 1195, 1196, 1, 0, 0, 0, 1196, 1197, 1, 0, 0, 0, 1197, 1199, 5, 409, 0, 0, 1198, 1200, 3, 778, 389, 0, 1199, 1198, 1, 0, 0, 0, 1199, 1200, 1, 0, 0, 0, 1200, 1201, 1, 0, 0, 0, 1201, 1202, 3, 640, 320, 0, 1202, 1204, 5, 866, 0, 0, 1203, 1205, 3, 80, 40, 0, 1204, 1203, 1, 0, 0, 0, 1204, 1205, 1, 0, 0, 0, 1205, 1210, 1, 0, 0, 0, 1206, 1207, 5, 868, 0, 0, 1207, 1209, 3, 80, 40, 0, 1208, 1206, 1, 0, 0, 0, 1209, 1212, 1, 0, 0, 0, 1210, 1208, 1, 0, 0, 0, 1210, 1211, 1, 0, 0, 0, 1211, 1213, 1, 0, 0, 0, 1212, 1210, 1, 0, 0, 0, 1213, 1214, 5, 867, 0, 0, 1214, 1215, 5, 580, 0, 0, 1215, 1219, 3, 744, 372, 0, 1216, 1218, 3, 82, 41, 0, 1217, 1216, 1, 0, 0, 0, 1218, 1221, 1, 0, 0, 0, 1219, 1217, 1, 0, 0, 0, 1219, 1220, 1, 0, 0, 0, 1220, 1224, 1, 0, 0, 0, 1221, 1219, 1, 0, 0, 0, 1222, 1225, 3, 432, 216, 0, 1223, 1225, 3, 448, 224, 0, 1224, 1222, 1, 0, 0, 0, 1224, 1223, 1, 0, 0, 0, 1225, 35, 1, 0, 0, 0, 1226, 1228, 5, 34, 0, 0, 1227, 1229, 5, 307, 0, 0, 1228, 1227, 1, 0, 0, 0, 1228, 1229, 1, 0, 0, 0, 1229, 1230, 1, 0, 0, 0, 1230, 1232, 5, 409, 0, 0, 1231, 1233, 3, 778, 389, 0, 1232, 1231, 1, 0, 0, 0, 1232, 1233, 1, 0, 0, 0, 1233, 1234, 1, 0, 0, 0, 1234, 1235, 3, 640, 320, 0, 1235, 1236, 5, 580, 0, 0, 1236, 1237, 7, 5, 0, 0, 1237, 1238, 5, 603, 0, 0, 1238, 1239, 5, 882, 0, 0, 1239, 37, 1, 0, 0, 0, 1240, 1241, 5, 34, 0, 0, 1241, 1243, 5, 582, 0, 0, 1242, 1244, 3, 778, 389, 0, 1243, 1242, 1, 0, 0, 0, 1243, 1244, 1, 0, 0, 0, 1244, 1245, 1, 0, 0, 0, 1245, 1246, 3, 664, 332, 0, 1246, 39, 1, 0, 0, 0, 1247, 1248, 5, 34, 0, 0, 1248, 1249, 5, 592, 0, 0, 1249, 1250, 3, 722, 361, 0, 1250, 1251, 5, 67, 0, 0, 1251, 1252, 5, 360, 0, 0, 1252, 1253, 5, 692, 0, 0, 1253, 1254, 7, 6, 0, 0, 1254, 1255, 5, 518, 0, 0, 1255, 1256, 5, 866, 0, 0, 1256, 1261, 3, 84, 42, 0, 1257, 1258, 5, 868, 0, 0, 1258, 1260, 3, 84, 42, 0, 1259, 1257, 1, 0, 0, 0, 1260, 1263, 1, 0, 0, 0, 1261, 1259, 1, 0, 0, 0, 1261, 1262, 1, 0, 0, 0, 1262, 1264, 1, 0, 0, 0, 1263, 1261, 1, 0, 0, 0, 1264, 1265, 5, 867, 0, 0, 1265, 41, 1, 0, 0, 0, 1266, 1268, 5, 34, 0, 0, 1267, 1269, 5, 660, 0, 0, 1268, 1267, 1, 0, 0, 0, 1268, 1269, 1, 0, 0, 0, 1269, 1270, 1, 0, 0, 0, 1270, 1272, 5, 173, 0, 0, 1271, 1273, 3, 778, 389, 0, 1272, 1271, 1, 0, 0, 0, 1272, 1273, 1, 0, 0, 0, 1273, 1274, 1, 0, 0, 0, 1274, 1276, 3, 658, 329, 0, 1275, 1277, 3, 86, 43, 0, 1276, 1275, 1, 0, 0, 0, 1276, 1277, 1, 0, 0, 0, 1277, 1288, 1, 0, 0, 0, 1278, 1285, 3, 104, 52, 0, 1279, 1281, 5, 868, 0, 0, 1280, 1279, 1, 0, 0, 0, 1280, 1281, 1, 0, 0, 0, 1281, 1282, 1, 0, 0, 0, 1282, 1284, 3, 104, 52, 0, 1283, 1280, 1, 0, 0, 0, 1284, 1287, 1, 0, 0, 0, 1285, 1283, 1, 0, 0, 0, 1285, 1286, 1, 0, 0, 0, 1286, 1289, 1, 0, 0, 0, 1287, 1285, 1, 0, 0, 0, 1288, 1278, 1, 0, 0, 0, 1288, 1289, 1, 0, 0, 0, 1289, 1291, 1, 0, 0, 0, 1290, 1292, 3, 110, 55, 0, 1291, 1290, 1, 0, 0, 0, 1291, 1292, 1, 0, 0, 0, 1292, 1294, 1, 0, 0, 0, 1293, 1295, 7, 7, 0, 0, 1294, 1293, 1, 0, 0, 0, 1294, 1295, 1, 0, 0, 0, 1295, 1297, 1, 0, 0, 0, 1296, 1298, 5, 13, 0, 0, 1297, 1296, 1, 0, 0, 0, 1297, 1298, 1, 0, 0, 0, 1298, 1299, 1, 0, 0, 0, 1299, 1300, 3, 210, 105, 0, 1300, 1345, 1, 0, 0, 0, 1301, 1303, 5, 34, 0, 0, 1302, 1304, 5, 660, 0, 0, 1303, 1302, 1, 0, 0, 0, 1303, 1304, 1, 0, 0, 0, 1304, 1305, 1, 0, 0, 0, 1305, 1307, 5, 173, 0, 0, 1306, 1308, 3, 778, 389, 0, 1307, 1306, 1, 0, 0, 0, 1307, 1308, 1, 0, 0, 0, 1308, 1309, 1, 0, 0, 0, 1309, 1317, 3, 658, 329, 0, 1310, 1311, 5, 99, 0, 0, 1311, 1318, 3, 662, 331, 0, 1312, 1313, 5, 866, 0, 0, 1313, 1314, 5, 99, 0, 0, 1314, 1315, 3, 662, 331, 0, 1315, 1316, 5, 867, 0, 0, 1316, 1318, 1, 0, 0, 0, 1317, 1310, 1, 0, 0, 0, 1317, 1312, 1, 0, 0, 0, 1318, 1345, 1, 0, 0, 0, 1319, 1321, 5, 34, 0, 0, 1320, 1322, 5, 660, 0, 0, 1321, 1320, 1, 0, 0, 0, 1321, 1322, 1, 0, 0, 0, 1322, 1323, 1, 0, 0, 0, 1323, 1325, 5, 173, 0, 0, 1324, 1326, 3, 778, 389, 0, 1325, 1324, 1, 0, 0, 0, 1325, 1326, 1, 0, 0, 0, 1326, 1327, 1, 0, 0, 0, 1327, 1328, 3, 658, 329, 0, 1328, 1339, 3, 86, 43, 0, 1329, 1336, 3, 104, 52, 0, 1330, 1332, 5, 868, 0, 0, 1331, 1330, 1, 0, 0, 0, 1331, 1332, 1, 0, 0, 0, 1332, 1333, 1, 0, 0, 0, 1333, 1335, 3, 104, 52, 0, 1334, 1331, 1, 0, 0, 0, 1335, 1338, 1, 0, 0, 0, 1336, 1334, 1, 0, 0, 0, 1336, 1337, 1, 0, 0, 0, 1337, 1340, 1, 0, 0, 0, 1338, 1336, 1, 0, 0, 0, 1339, 1329, 1, 0, 0, 0, 1339, 1340, 1, 0, 0, 0, 1340, 1342, 1, 0, 0, 0, 1341, 1343, 3, 110, 55, 0, 1342, 1341, 1, 0, 0, 0, 1342, 1343, 1, 0, 0, 0, 1343, 1345, 1, 0, 0, 0, 1344, 1266, 1, 0, 0, 0, 1344, 1301, 1, 0, 0, 0, 1344, 1319, 1, 0, 0, 0, 1345, 43, 1, 0, 0, 0, 1346, 1348, 5, 34, 0, 0, 1347, 1349, 5, 180, 0, 0, 1348, 1347, 1, 0, 0, 0, 1348, 1349, 1, 0, 0, 0, 1349, 1350, 1, 0, 0, 0, 1350, 1351, 5, 658, 0, 0, 1351, 1355, 3, 680, 340, 0, 1352, 1353, 5, 6, 0, 0, 1353, 1354, 5, 361, 0, 0, 1354, 1356, 5, 882, 0, 0, 1355, 1352, 1, 0, 0, 0, 1355, 1356, 1, 0, 0, 0, 1356, 1362, 1, 0, 0, 0, 1357, 1359, 5, 314, 0, 0, 1358, 1360, 5, 857, 0, 0, 1359, 1358, 1, 0, 0, 0, 1359, 1360, 1, 0, 0, 0, 1360, 1361, 1, 0, 0, 0, 1361, 1363, 3, 732, 366, 0, 1362, 1357, 1, 0, 0, 0, 1362, 1363, 1, 0, 0, 0, 1363, 1367, 1, 0, 0, 0, 1364, 1365, 5, 399, 0, 0, 1365, 1366, 5, 857, 0, 0, 1366, 1368, 3, 732, 366, 0, 1367, 1364, 1, 0, 0, 0, 1367, 1368, 1, 0, 0, 0, 1368, 1374, 1, 0, 0, 0, 1369, 1371, 5, 380, 0, 0, 1370, 1372, 5, 857, 0, 0, 1371, 1370, 1, 0, 0, 0, 1371, 1372, 1, 0, 0, 0, 1372, 1373, 1, 0, 0, 0, 1373, 1375, 3, 708, 354, 0, 1374, 1369, 1, 0, 0, 0, 1374, 1375, 1, 0, 0, 0, 1375, 1381, 1, 0, 0, 0, 1376, 1378, 5, 825, 0, 0, 1377, 1379, 5, 857, 0, 0, 1378, 1377, 1, 0, 0, 0, 1378, 1379, 1, 0, 0, 0, 1379, 1380, 1, 0, 0, 0, 1380, 1382, 5, 882, 0, 0, 1381, 1376, 1, 0, 0, 0, 1381, 1382, 1, 0, 0, 0, 1382, 45, 1, 0, 0, 0, 1383, 1385, 5, 34, 0, 0, 1384, 1386, 5, 180, 0, 0, 1385, 1384, 1, 0, 0, 0, 1385, 1386, 1, 0, 0, 0, 1386, 1387, 1, 0, 0, 0, 1387, 1388, 5, 658, 0, 0, 1388, 1389, 3, 680, 340, 0, 1389, 1390, 5, 6, 0, 0, 1390, 1391, 5, 361, 0, 0, 1391, 1392, 5, 882, 0, 0, 1392, 1393, 5, 187, 0, 0, 1393, 1394, 5, 451, 0, 0, 1394, 1395, 5, 74, 0, 0, 1395, 1401, 3, 722, 361, 0, 1396, 1398, 5, 393, 0, 0, 1397, 1399, 5, 857, 0, 0, 1398, 1397, 1, 0, 0, 0, 1398, 1399, 1, 0, 0, 0, 1399, 1400, 1, 0, 0, 0, 1400, 1402, 3, 732, 366, 0, 1401, 1396, 1, 0, 0, 0, 1401, 1402, 1, 0, 0, 0, 1402, 1408, 1, 0, 0, 0, 1403, 1405, 5, 428, 0, 0, 1404, 1406, 5, 857, 0, 0, 1405, 1404, 1, 0, 0, 0, 1405, 1406, 1, 0, 0, 0, 1406, 1407, 1, 0, 0, 0, 1407, 1409, 3, 732, 366, 0, 1408, 1403, 1, 0, 0, 0, 1408, 1409, 1, 0, 0, 0, 1409, 1415, 1, 0, 0, 0, 1410, 1412, 5, 314, 0, 0, 1411, 1413, 5, 857, 0, 0, 1412, 1411, 1, 0, 0, 0, 1412, 1413, 1, 0, 0, 0, 1413, 1414, 1, 0, 0, 0, 1414, 1416, 3, 732, 366, 0, 1415, 1410, 1, 0, 0, 0, 1415, 1416, 1, 0, 0, 0, 1416, 1422, 1, 0, 0, 0, 1417, 1419, 5, 481, 0, 0, 1418, 1420, 5, 857, 0, 0, 1419, 1418, 1, 0, 0, 0, 1419, 1420, 1, 0, 0, 0, 1420, 1421, 1, 0, 0, 0, 1421, 1423, 3, 732, 366, 0, 1422, 1417, 1, 0, 0, 0, 1422, 1423, 1, 0, 0, 0, 1423, 1429, 1, 0, 0, 0, 1424, 1426, 5, 504, 0, 0, 1425, 1427, 5, 857, 0, 0, 1426, 1425, 1, 0, 0, 0, 1426, 1427, 1, 0, 0, 0, 1427, 1428, 1, 0, 0, 0, 1428, 1430, 3, 722, 361, 0, 1429, 1424, 1, 0, 0, 0, 1429, 1430, 1, 0, 0, 0, 1430, 1432, 1, 0, 0, 0, 1431, 1433, 5, 687, 0, 0, 1432, 1431, 1, 0, 0, 0, 1432, 1433, 1, 0, 0, 0, 1433, 1439, 1, 0, 0, 0, 1434, 1436, 5, 340, 0, 0, 1435, 1437, 5, 857, 0, 0, 1436, 1435, 1, 0, 0, 0, 1436, 1437, 1, 0, 0, 0, 1437, 1438, 1, 0, 0, 0, 1438, 1440, 5, 882, 0, 0, 1439, 1434, 1, 0, 0, 0, 1439, 1440, 1, 0, 0, 0, 1440, 1441, 1, 0, 0, 0, 1441, 1443, 5, 380, 0, 0, 1442, 1444, 5, 857, 0, 0, 1443, 1442, 1, 0, 0, 0, 1443, 1444, 1, 0, 0, 0, 1444, 1445, 1, 0, 0, 0, 1445, 1446, 3, 708, 354, 0, 1446, 47, 1, 0, 0, 0, 1447, 1449, 5, 34, 0, 0, 1448, 1450, 3, 62, 31, 0, 1449, 1448, 1, 0, 0, 0, 1449, 1450, 1, 0, 0, 0, 1450, 1452, 1, 0, 0, 0, 1451, 1453, 3, 778, 389, 0, 1452, 1451, 1, 0, 0, 0, 1452, 1453, 1, 0, 0, 0, 1453, 1454, 1, 0, 0, 0, 1454, 1456, 5, 178, 0, 0, 1455, 1457, 3, 778, 389, 0, 1456, 1455, 1, 0, 0, 0, 1456, 1457, 1, 0, 0, 0, 1457, 1458, 1, 0, 0, 0, 1458, 1459, 3, 718, 359, 0, 1459, 1460, 7, 8, 0, 0, 1460, 1461, 7, 9, 0, 0, 1461, 1462, 5, 119, 0, 0, 1462, 1463, 3, 662, 331, 0, 1463, 1464, 5, 65, 0, 0, 1464, 1465, 5, 52, 0, 0, 1465, 1468, 5, 586, 0, 0, 1466, 1467, 7, 10, 0, 0, 1467, 1469, 3, 718, 359, 0, 1468, 1466, 1, 0, 0, 0, 1468, 1469, 1, 0, 0, 0, 1469, 1470, 1, 0, 0, 0, 1470, 1471, 3, 432, 216, 0, 1471, 49, 1, 0, 0, 0, 1472, 1474, 5, 194, 0, 0, 1473, 1475, 5, 552, 0, 0, 1474, 1473, 1, 0, 0, 0, 1474, 1475, 1, 0, 0, 0, 1475, 1476, 1, 0, 0, 0, 1476, 1477, 3, 52, 26, 0, 1477, 51, 1, 0, 0, 0, 1478, 1490, 3, 722, 361, 0, 1479, 1480, 5, 866, 0, 0, 1480, 1485, 3, 722, 361, 0, 1481, 1482, 5, 868, 0, 0, 1482, 1484, 3, 722, 361, 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, 1488, 1, 0, 0, 0, 1487, 1485, 1, 0, 0, 0, 1488, 1489, 5, 867, 0, 0, 1489, 1491, 1, 0, 0, 0, 1490, 1479, 1, 0, 0, 0, 1490, 1491, 1, 0, 0, 0, 1491, 1492, 1, 0, 0, 0, 1492, 1493, 5, 13, 0, 0, 1493, 1494, 5, 866, 0, 0, 1494, 1495, 3, 10, 5, 0, 1495, 1498, 5, 867, 0, 0, 1496, 1497, 5, 868, 0, 0, 1497, 1499, 3, 52, 26, 0, 1498, 1496, 1, 0, 0, 0, 1498, 1499, 1, 0, 0, 0, 1499, 53, 1, 0, 0, 0, 1500, 1502, 5, 34, 0, 0, 1501, 1503, 3, 780, 390, 0, 1502, 1501, 1, 0, 0, 0, 1502, 1503, 1, 0, 0, 0, 1503, 1507, 1, 0, 0, 0, 1504, 1505, 5, 308, 0, 0, 1505, 1506, 5, 857, 0, 0, 1506, 1508, 7, 11, 0, 0, 1507, 1504, 1, 0, 0, 0, 1507, 1508, 1, 0, 0, 0, 1508, 1510, 1, 0, 0, 0, 1509, 1511, 3, 62, 31, 0, 1510, 1509, 1, 0, 0, 0, 1510, 1511, 1, 0, 0, 0, 1511, 1515, 1, 0, 0, 0, 1512, 1513, 5, 162, 0, 0, 1513, 1514, 5, 591, 0, 0, 1514, 1516, 7, 12, 0, 0, 1515, 1512, 1, 0, 0, 0, 1515, 1516, 1, 0, 0, 0, 1516, 1517, 1, 0, 0, 0, 1517, 1518, 5, 684, 0, 0, 1518, 1530, 3, 644, 322, 0, 1519, 1520, 5, 866, 0, 0, 1520, 1525, 3, 668, 334, 0, 1521, 1522, 5, 868, 0, 0, 1522, 1524, 3, 668, 334, 0, 1523, 1521, 1, 0, 0, 0, 1524, 1527, 1, 0, 0, 0, 1525, 1523, 1, 0, 0, 0, 1525, 1526, 1, 0, 0, 0, 1526, 1528, 1, 0, 0, 0, 1527, 1525, 1, 0, 0, 0, 1528, 1529, 5, 867, 0, 0, 1529, 1531, 1, 0, 0, 0, 1530, 1519, 1, 0, 0, 0, 1530, 1531, 1, 0, 0, 0, 1531, 1532, 1, 0, 0, 0, 1532, 1552, 5, 13, 0, 0, 1533, 1535, 5, 866, 0, 0, 1534, 1536, 3, 50, 25, 0, 1535, 1534, 1, 0, 0, 0, 1535, 1536, 1, 0, 0, 0, 1536, 1537, 1, 0, 0, 0, 1537, 1538, 3, 210, 105, 0, 1538, 1539, 5, 867, 0, 0, 1539, 1553, 1, 0, 0, 0, 1540, 1542, 3, 50, 25, 0, 1541, 1540, 1, 0, 0, 0, 1541, 1542, 1, 0, 0, 0, 1542, 1543, 1, 0, 0, 0, 1543, 1550, 3, 210, 105, 0, 1544, 1546, 5, 194, 0, 0, 1545, 1547, 7, 13, 0, 0, 1546, 1545, 1, 0, 0, 0, 1546, 1547, 1, 0, 0, 0, 1547, 1548, 1, 0, 0, 0, 1548, 1549, 5, 27, 0, 0, 1549, 1551, 5, 121, 0, 0, 1550, 1544, 1, 0, 0, 0, 1550, 1551, 1, 0, 0, 0, 1551, 1553, 1, 0, 0, 0, 1552, 1533, 1, 0, 0, 0, 1552, 1541, 1, 0, 0, 0, 1553, 55, 1, 0, 0, 0, 1554, 1556, 5, 42, 0, 0, 1555, 1554, 1, 0, 0, 0, 1555, 1556, 1, 0, 0, 0, 1556, 1557, 1, 0, 0, 0, 1557, 1559, 3, 58, 29, 0, 1558, 1560, 5, 857, 0, 0, 1559, 1558, 1, 0, 0, 0, 1559, 1560, 1, 0, 0, 0, 1560, 1563, 1, 0, 0, 0, 1561, 1564, 3, 704, 352, 0, 1562, 1564, 5, 42, 0, 0, 1563, 1561, 1, 0, 0, 0, 1563, 1562, 1, 0, 0, 0, 1564, 1588, 1, 0, 0, 0, 1565, 1567, 5, 42, 0, 0, 1566, 1565, 1, 0, 0, 0, 1566, 1567, 1, 0, 0, 0, 1567, 1568, 1, 0, 0, 0, 1568, 1570, 5, 28, 0, 0, 1569, 1571, 5, 857, 0, 0, 1570, 1569, 1, 0, 0, 0, 1570, 1571, 1, 0, 0, 0, 1571, 1572, 1, 0, 0, 0, 1572, 1588, 3, 706, 353, 0, 1573, 1575, 5, 42, 0, 0, 1574, 1573, 1, 0, 0, 0, 1574, 1575, 1, 0, 0, 0, 1575, 1576, 1, 0, 0, 0, 1576, 1578, 5, 376, 0, 0, 1577, 1579, 5, 857, 0, 0, 1578, 1577, 1, 0, 0, 0, 1578, 1579, 1, 0, 0, 0, 1579, 1580, 1, 0, 0, 0, 1580, 1588, 5, 882, 0, 0, 1581, 1582, 5, 135, 0, 0, 1582, 1584, 5, 515, 0, 0, 1583, 1585, 5, 857, 0, 0, 1584, 1583, 1, 0, 0, 0, 1584, 1585, 1, 0, 0, 0, 1585, 1586, 1, 0, 0, 0, 1586, 1588, 7, 14, 0, 0, 1587, 1555, 1, 0, 0, 0, 1587, 1566, 1, 0, 0, 0, 1587, 1574, 1, 0, 0, 0, 1587, 1581, 1, 0, 0, 0, 1588, 57, 1, 0, 0, 0, 1589, 1590, 5, 26, 0, 0, 1590, 1595, 5, 155, 0, 0, 1591, 1595, 5, 823, 0, 0, 1592, 1593, 5, 224, 0, 0, 1593, 1595, 5, 155, 0, 0, 1594, 1589, 1, 0, 0, 0, 1594, 1591, 1, 0, 0, 0, 1594, 1592, 1, 0, 0, 0, 1595, 59, 1, 0, 0, 0, 1596, 1599, 7, 15, 0, 0, 1597, 1598, 5, 866, 0, 0, 1598, 1600, 5, 867, 0, 0, 1599, 1597, 1, 0, 0, 0, 1599, 1600, 1, 0, 0, 0, 1600, 61, 1, 0, 0, 0, 1601, 1602, 5, 364, 0, 0, 1602, 1605, 5, 857, 0, 0, 1603, 1606, 3, 700, 350, 0, 1604, 1606, 3, 60, 30, 0, 1605, 1603, 1, 0, 0, 0, 1605, 1604, 1, 0, 0, 0, 1606, 63, 1, 0, 0, 0, 1607, 1608, 5, 311, 0, 0, 1608, 1612, 3, 66, 33, 0, 1609, 1611, 3, 68, 34, 0, 1610, 1609, 1, 0, 0, 0, 1611, 1614, 1, 0, 0, 0, 1612, 1610, 1, 0, 0, 0, 1612, 1613, 1, 0, 0, 0, 1613, 1642, 1, 0, 0, 0, 1614, 1612, 1, 0, 0, 0, 1615, 1618, 5, 387, 0, 0, 1616, 1619, 3, 730, 365, 0, 1617, 1619, 3, 822, 411, 0, 1618, 1616, 1, 0, 0, 0, 1618, 1617, 1, 0, 0, 0, 1619, 1620, 1, 0, 0, 0, 1620, 1629, 3, 70, 35, 0, 1621, 1622, 5, 641, 0, 0, 1622, 1626, 3, 66, 33, 0, 1623, 1625, 3, 68, 34, 0, 1624, 1623, 1, 0, 0, 0, 1625, 1628, 1, 0, 0, 0, 1626, 1624, 1, 0, 0, 0, 1626, 1627, 1, 0, 0, 0, 1627, 1630, 1, 0, 0, 0, 1628, 1626, 1, 0, 0, 0, 1629, 1621, 1, 0, 0, 0, 1629, 1630, 1, 0, 0, 0, 1630, 1639, 1, 0, 0, 0, 1631, 1632, 5, 379, 0, 0, 1632, 1636, 3, 66, 33, 0, 1633, 1635, 3, 68, 34, 0, 1634, 1633, 1, 0, 0, 0, 1635, 1638, 1, 0, 0, 0, 1636, 1634, 1, 0, 0, 0, 1636, 1637, 1, 0, 0, 0, 1637, 1640, 1, 0, 0, 0, 1638, 1636, 1, 0, 0, 0, 1639, 1631, 1, 0, 0, 0, 1639, 1640, 1, 0, 0, 0, 1640, 1642, 1, 0, 0, 0, 1641, 1607, 1, 0, 0, 0, 1641, 1615, 1, 0, 0, 0, 1642, 65, 1, 0, 0, 0, 1643, 1648, 5, 287, 0, 0, 1644, 1648, 3, 734, 367, 0, 1645, 1648, 3, 730, 365, 0, 1646, 1648, 3, 822, 411, 0, 1647, 1643, 1, 0, 0, 0, 1647, 1644, 1, 0, 0, 0, 1647, 1645, 1, 0, 0, 0, 1647, 1646, 1, 0, 0, 0, 1648, 67, 1, 0, 0, 0, 1649, 1650, 5, 853, 0, 0, 1650, 1653, 5, 87, 0, 0, 1651, 1654, 3, 730, 365, 0, 1652, 1654, 3, 822, 411, 0, 1653, 1651, 1, 0, 0, 0, 1653, 1652, 1, 0, 0, 0, 1654, 1655, 1, 0, 0, 0, 1655, 1656, 3, 70, 35, 0, 1656, 69, 1, 0, 0, 0, 1657, 1671, 3, 848, 424, 0, 1658, 1671, 5, 223, 0, 0, 1659, 1671, 5, 242, 0, 0, 1660, 1671, 5, 243, 0, 0, 1661, 1671, 5, 244, 0, 0, 1662, 1671, 5, 245, 0, 0, 1663, 1671, 5, 246, 0, 0, 1664, 1671, 5, 247, 0, 0, 1665, 1671, 5, 248, 0, 0, 1666, 1671, 5, 249, 0, 0, 1667, 1671, 5, 250, 0, 0, 1668, 1671, 5, 251, 0, 0, 1669, 1671, 5, 252, 0, 0, 1670, 1657, 1, 0, 0, 0, 1670, 1658, 1, 0, 0, 0, 1670, 1659, 1, 0, 0, 0, 1670, 1660, 1, 0, 0, 0, 1670, 1661, 1, 0, 0, 0, 1670, 1662, 1, 0, 0, 0, 1670, 1663, 1, 0, 0, 0, 1670, 1664, 1, 0, 0, 0, 1670, 1665, 1, 0, 0, 0, 1670, 1666, 1, 0, 0, 0, 1670, 1667, 1, 0, 0, 0, 1670, 1668, 1, 0, 0, 0, 1670, 1669, 1, 0, 0, 0, 1671, 71, 1, 0, 0, 0, 1672, 1678, 5, 375, 0, 0, 1673, 1678, 5, 368, 0, 0, 1674, 1675, 5, 368, 0, 0, 1675, 1676, 5, 119, 0, 0, 1676, 1678, 5, 598, 0, 0, 1677, 1672, 1, 0, 0, 0, 1677, 1673, 1, 0, 0, 0, 1677, 1674, 1, 0, 0, 0, 1678, 73, 1, 0, 0, 0, 1679, 1680, 5, 188, 0, 0, 1680, 1681, 7, 16, 0, 0, 1681, 75, 1, 0, 0, 0, 1682, 1684, 5, 443, 0, 0, 1683, 1685, 5, 857, 0, 0, 1684, 1683, 1, 0, 0, 0, 1684, 1685, 1, 0, 0, 0, 1685, 1686, 1, 0, 0, 0, 1686, 1705, 3, 732, 366, 0, 1687, 1705, 3, 74, 37, 0, 1688, 1689, 5, 194, 0, 0, 1689, 1690, 5, 525, 0, 0, 1690, 1705, 3, 722, 361, 0, 1691, 1692, 5, 340, 0, 0, 1692, 1705, 5, 882, 0, 0, 1693, 1705, 7, 17, 0, 0, 1694, 1696, 5, 825, 0, 0, 1695, 1697, 5, 857, 0, 0, 1696, 1695, 1, 0, 0, 0, 1696, 1697, 1, 0, 0, 0, 1697, 1698, 1, 0, 0, 0, 1698, 1705, 5, 882, 0, 0, 1699, 1701, 5, 833, 0, 0, 1700, 1702, 5, 857, 0, 0, 1701, 1700, 1, 0, 0, 0, 1701, 1702, 1, 0, 0, 0, 1702, 1703, 1, 0, 0, 0, 1703, 1705, 5, 882, 0, 0, 1704, 1682, 1, 0, 0, 0, 1704, 1687, 1, 0, 0, 0, 1704, 1688, 1, 0, 0, 0, 1704, 1691, 1, 0, 0, 0, 1704, 1693, 1, 0, 0, 0, 1704, 1694, 1, 0, 0, 0, 1704, 1699, 1, 0, 0, 0, 1705, 77, 1, 0, 0, 0, 1706, 1708, 7, 18, 0, 0, 1707, 1706, 1, 0, 0, 0, 1707, 1708, 1, 0, 0, 0, 1708, 1709, 1, 0, 0, 0, 1709, 1710, 3, 722, 361, 0, 1710, 1711, 3, 744, 372, 0, 1711, 79, 1, 0, 0, 0, 1712, 1713, 3, 722, 361, 0, 1713, 1714, 3, 744, 372, 0, 1714, 81, 1, 0, 0, 0, 1715, 1716, 5, 340, 0, 0, 1716, 1739, 5, 882, 0, 0, 1717, 1718, 5, 444, 0, 0, 1718, 1739, 5, 162, 0, 0, 1719, 1721, 5, 114, 0, 0, 1720, 1719, 1, 0, 0, 0, 1720, 1721, 1, 0, 0, 0, 1721, 1722, 1, 0, 0, 0, 1722, 1739, 5, 47, 0, 0, 1723, 1724, 5, 354, 0, 0, 1724, 1734, 5, 162, 0, 0, 1725, 1726, 5, 502, 0, 0, 1726, 1734, 5, 162, 0, 0, 1727, 1728, 5, 136, 0, 0, 1728, 1729, 5, 162, 0, 0, 1729, 1734, 5, 360, 0, 0, 1730, 1731, 5, 112, 0, 0, 1731, 1732, 5, 162, 0, 0, 1732, 1734, 5, 360, 0, 0, 1733, 1723, 1, 0, 0, 0, 1733, 1725, 1, 0, 0, 0, 1733, 1727, 1, 0, 0, 0, 1733, 1730, 1, 0, 0, 0, 1734, 1739, 1, 0, 0, 0, 1735, 1736, 5, 162, 0, 0, 1736, 1737, 5, 591, 0, 0, 1737, 1739, 7, 12, 0, 0, 1738, 1715, 1, 0, 0, 0, 1738, 1717, 1, 0, 0, 0, 1738, 1720, 1, 0, 0, 0, 1738, 1733, 1, 0, 0, 0, 1738, 1735, 1, 0, 0, 0, 1739, 83, 1, 0, 0, 0, 1740, 1741, 5, 421, 0, 0, 1741, 1755, 5, 882, 0, 0, 1742, 1743, 5, 39, 0, 0, 1743, 1755, 5, 882, 0, 0, 1744, 1745, 5, 678, 0, 0, 1745, 1755, 5, 882, 0, 0, 1746, 1747, 5, 529, 0, 0, 1747, 1755, 5, 882, 0, 0, 1748, 1749, 5, 601, 0, 0, 1749, 1755, 5, 882, 0, 0, 1750, 1751, 5, 519, 0, 0, 1751, 1755, 5, 882, 0, 0, 1752, 1753, 5, 537, 0, 0, 1753, 1755, 3, 730, 365, 0, 1754, 1740, 1, 0, 0, 0, 1754, 1742, 1, 0, 0, 0, 1754, 1744, 1, 0, 0, 0, 1754, 1746, 1, 0, 0, 0, 1754, 1748, 1, 0, 0, 0, 1754, 1750, 1, 0, 0, 0, 1754, 1752, 1, 0, 0, 0, 1755, 85, 1, 0, 0, 0, 1756, 1757, 5, 866, 0, 0, 1757, 1762, 3, 88, 44, 0, 1758, 1759, 5, 868, 0, 0, 1759, 1761, 3, 88, 44, 0, 1760, 1758, 1, 0, 0, 0, 1761, 1764, 1, 0, 0, 0, 1762, 1760, 1, 0, 0, 0, 1762, 1763, 1, 0, 0, 0, 1763, 1765, 1, 0, 0, 0, 1764, 1762, 1, 0, 0, 0, 1765, 1766, 5, 867, 0, 0, 1766, 87, 1, 0, 0, 0, 1767, 1768, 3, 668, 334, 0, 1768, 1769, 3, 94, 47, 0, 1769, 1851, 1, 0, 0, 0, 1770, 1772, 7, 19, 0, 0, 1771, 1773, 3, 652, 326, 0, 1772, 1771, 1, 0, 0, 0, 1772, 1773, 1, 0, 0, 0, 1773, 1775, 1, 0, 0, 0, 1774, 1776, 3, 74, 37, 0, 1775, 1774, 1, 0, 0, 0, 1775, 1776, 1, 0, 0, 0, 1776, 1777, 1, 0, 0, 0, 1777, 1781, 3, 756, 378, 0, 1778, 1780, 3, 76, 38, 0, 1779, 1778, 1, 0, 0, 0, 1780, 1783, 1, 0, 0, 0, 1781, 1779, 1, 0, 0, 0, 1781, 1782, 1, 0, 0, 0, 1782, 1851, 1, 0, 0, 0, 1783, 1781, 1, 0, 0, 0, 1784, 1786, 7, 20, 0, 0, 1785, 1787, 7, 19, 0, 0, 1786, 1785, 1, 0, 0, 0, 1786, 1787, 1, 0, 0, 0, 1787, 1789, 1, 0, 0, 0, 1788, 1790, 3, 652, 326, 0, 1789, 1788, 1, 0, 0, 0, 1789, 1790, 1, 0, 0, 0, 1790, 1791, 1, 0, 0, 0, 1791, 1795, 3, 756, 378, 0, 1792, 1794, 3, 76, 38, 0, 1793, 1792, 1, 0, 0, 0, 1794, 1797, 1, 0, 0, 0, 1795, 1793, 1, 0, 0, 0, 1795, 1796, 1, 0, 0, 0, 1796, 1851, 1, 0, 0, 0, 1797, 1795, 1, 0, 0, 0, 1798, 1800, 3, 92, 46, 0, 1799, 1798, 1, 0, 0, 0, 1799, 1800, 1, 0, 0, 0, 1800, 1801, 1, 0, 0, 0, 1801, 1802, 5, 131, 0, 0, 1802, 1804, 5, 92, 0, 0, 1803, 1805, 3, 74, 37, 0, 1804, 1803, 1, 0, 0, 0, 1804, 1805, 1, 0, 0, 0, 1805, 1806, 1, 0, 0, 0, 1806, 1810, 3, 756, 378, 0, 1807, 1809, 3, 76, 38, 0, 1808, 1807, 1, 0, 0, 0, 1809, 1812, 1, 0, 0, 0, 1810, 1808, 1, 0, 0, 0, 1810, 1811, 1, 0, 0, 0, 1811, 1851, 1, 0, 0, 0, 1812, 1810, 1, 0, 0, 0, 1813, 1815, 3, 92, 46, 0, 1814, 1813, 1, 0, 0, 0, 1814, 1815, 1, 0, 0, 0, 1815, 1816, 1, 0, 0, 0, 1816, 1818, 5, 182, 0, 0, 1817, 1819, 7, 19, 0, 0, 1818, 1817, 1, 0, 0, 0, 1818, 1819, 1, 0, 0, 0, 1819, 1821, 1, 0, 0, 0, 1820, 1822, 3, 652, 326, 0, 1821, 1820, 1, 0, 0, 0, 1821, 1822, 1, 0, 0, 0, 1822, 1824, 1, 0, 0, 0, 1823, 1825, 3, 74, 37, 0, 1824, 1823, 1, 0, 0, 0, 1824, 1825, 1, 0, 0, 0, 1825, 1826, 1, 0, 0, 0, 1826, 1830, 3, 756, 378, 0, 1827, 1829, 3, 76, 38, 0, 1828, 1827, 1, 0, 0, 0, 1829, 1832, 1, 0, 0, 0, 1830, 1828, 1, 0, 0, 0, 1830, 1831, 1, 0, 0, 0, 1831, 1851, 1, 0, 0, 0, 1832, 1830, 1, 0, 0, 0, 1833, 1835, 3, 92, 46, 0, 1834, 1833, 1, 0, 0, 0, 1834, 1835, 1, 0, 0, 0, 1835, 1836, 1, 0, 0, 0, 1836, 1837, 5, 67, 0, 0, 1837, 1839, 5, 92, 0, 0, 1838, 1840, 3, 652, 326, 0, 1839, 1838, 1, 0, 0, 0, 1839, 1840, 1, 0, 0, 0, 1840, 1841, 1, 0, 0, 0, 1841, 1842, 3, 756, 378, 0, 1842, 1843, 3, 98, 49, 0, 1843, 1851, 1, 0, 0, 0, 1844, 1845, 5, 27, 0, 0, 1845, 1846, 5, 866, 0, 0, 1846, 1847, 3, 822, 411, 0, 1847, 1848, 5, 867, 0, 0, 1848, 1851, 1, 0, 0, 0, 1849, 1851, 3, 90, 45, 0, 1850, 1767, 1, 0, 0, 0, 1850, 1770, 1, 0, 0, 0, 1850, 1784, 1, 0, 0, 0, 1850, 1799, 1, 0, 0, 0, 1850, 1814, 1, 0, 0, 0, 1850, 1834, 1, 0, 0, 0, 1850, 1844, 1, 0, 0, 0, 1850, 1849, 1, 0, 0, 0, 1851, 89, 1, 0, 0, 0, 1852, 1854, 3, 92, 46, 0, 1853, 1852, 1, 0, 0, 0, 1853, 1854, 1, 0, 0, 0, 1854, 1855, 1, 0, 0, 0, 1855, 1856, 5, 27, 0, 0, 1856, 1857, 5, 866, 0, 0, 1857, 1858, 3, 822, 411, 0, 1858, 1863, 5, 867, 0, 0, 1859, 1861, 5, 114, 0, 0, 1860, 1859, 1, 0, 0, 0, 1860, 1861, 1, 0, 0, 0, 1861, 1862, 1, 0, 0, 0, 1862, 1864, 5, 57, 0, 0, 1863, 1860, 1, 0, 0, 0, 1863, 1864, 1, 0, 0, 0, 1864, 91, 1, 0, 0, 0, 1865, 1867, 5, 31, 0, 0, 1866, 1868, 3, 722, 361, 0, 1867, 1866, 1, 0, 0, 0, 1867, 1868, 1, 0, 0, 0, 1868, 93, 1, 0, 0, 0, 1869, 1873, 3, 744, 372, 0, 1870, 1872, 3, 96, 48, 0, 1871, 1870, 1, 0, 0, 0, 1872, 1875, 1, 0, 0, 0, 1873, 1871, 1, 0, 0, 0, 1873, 1874, 1, 0, 0, 0, 1874, 95, 1, 0, 0, 0, 1875, 1873, 1, 0, 0, 0, 1876, 1920, 3, 740, 370, 0, 1877, 1878, 5, 42, 0, 0, 1878, 1920, 3, 772, 386, 0, 1879, 1920, 5, 686, 0, 0, 1880, 1920, 5, 435, 0, 0, 1881, 1886, 5, 315, 0, 0, 1882, 1883, 5, 119, 0, 0, 1883, 1884, 5, 185, 0, 0, 1884, 1886, 3, 774, 387, 0, 1885, 1881, 1, 0, 0, 0, 1885, 1882, 1, 0, 0, 0, 1886, 1920, 1, 0, 0, 0, 1887, 1889, 5, 131, 0, 0, 1888, 1887, 1, 0, 0, 0, 1888, 1889, 1, 0, 0, 0, 1889, 1890, 1, 0, 0, 0, 1890, 1920, 5, 92, 0, 0, 1891, 1893, 5, 182, 0, 0, 1892, 1894, 5, 92, 0, 0, 1893, 1892, 1, 0, 0, 0, 1893, 1894, 1, 0, 0, 0, 1894, 1920, 1, 0, 0, 0, 1895, 1896, 5, 340, 0, 0, 1896, 1920, 5, 882, 0, 0, 1897, 1898, 5, 338, 0, 0, 1898, 1920, 7, 21, 0, 0, 1899, 1900, 5, 647, 0, 0, 1900, 1920, 7, 22, 0, 0, 1901, 1920, 3, 98, 49, 0, 1902, 1903, 5, 28, 0, 0, 1903, 1920, 3, 706, 353, 0, 1904, 1905, 5, 71, 0, 0, 1905, 1907, 5, 9, 0, 0, 1906, 1904, 1, 0, 0, 0, 1906, 1907, 1, 0, 0, 0, 1907, 1908, 1, 0, 0, 0, 1908, 1909, 5, 13, 0, 0, 1909, 1910, 5, 866, 0, 0, 1910, 1911, 3, 822, 411, 0, 1911, 1913, 5, 867, 0, 0, 1912, 1914, 7, 23, 0, 0, 1913, 1912, 1, 0, 0, 0, 1913, 1914, 1, 0, 0, 0, 1914, 1920, 1, 0, 0, 0, 1915, 1916, 5, 241, 0, 0, 1916, 1917, 5, 42, 0, 0, 1917, 1920, 5, 682, 0, 0, 1918, 1920, 3, 90, 45, 0, 1919, 1876, 1, 0, 0, 0, 1919, 1877, 1, 0, 0, 0, 1919, 1879, 1, 0, 0, 0, 1919, 1880, 1, 0, 0, 0, 1919, 1885, 1, 0, 0, 0, 1919, 1888, 1, 0, 0, 0, 1919, 1891, 1, 0, 0, 0, 1919, 1895, 1, 0, 0, 0, 1919, 1897, 1, 0, 0, 0, 1919, 1899, 1, 0, 0, 0, 1919, 1901, 1, 0, 0, 0, 1919, 1902, 1, 0, 0, 0, 1919, 1906, 1, 0, 0, 0, 1919, 1915, 1, 0, 0, 0, 1919, 1918, 1, 0, 0, 0, 1920, 97, 1, 0, 0, 0, 1921, 1922, 5, 138, 0, 0, 1922, 1924, 3, 662, 331, 0, 1923, 1925, 3, 756, 378, 0, 1924, 1923, 1, 0, 0, 0, 1924, 1925, 1, 0, 0, 0, 1925, 1928, 1, 0, 0, 0, 1926, 1927, 5, 110, 0, 0, 1927, 1929, 7, 24, 0, 0, 1928, 1926, 1, 0, 0, 0, 1928, 1929, 1, 0, 0, 0, 1929, 1931, 1, 0, 0, 0, 1930, 1932, 3, 100, 50, 0, 1931, 1930, 1, 0, 0, 0, 1931, 1932, 1, 0, 0, 0, 1932, 99, 1, 0, 0, 0, 1933, 1934, 5, 119, 0, 0, 1934, 1935, 5, 44, 0, 0, 1935, 1939, 3, 102, 51, 0, 1936, 1937, 5, 119, 0, 0, 1937, 1938, 5, 185, 0, 0, 1938, 1940, 3, 102, 51, 0, 1939, 1936, 1, 0, 0, 0, 1939, 1940, 1, 0, 0, 0, 1940, 1950, 1, 0, 0, 0, 1941, 1942, 5, 119, 0, 0, 1942, 1943, 5, 185, 0, 0, 1943, 1947, 3, 102, 51, 0, 1944, 1945, 5, 119, 0, 0, 1945, 1946, 5, 44, 0, 0, 1946, 1948, 3, 102, 51, 0, 1947, 1944, 1, 0, 0, 0, 1947, 1948, 1, 0, 0, 0, 1948, 1950, 1, 0, 0, 0, 1949, 1933, 1, 0, 0, 0, 1949, 1941, 1, 0, 0, 0, 1950, 101, 1, 0, 0, 0, 1951, 1960, 5, 146, 0, 0, 1952, 1960, 5, 22, 0, 0, 1953, 1954, 5, 155, 0, 0, 1954, 1960, 5, 116, 0, 0, 1955, 1956, 5, 502, 0, 0, 1956, 1960, 5, 305, 0, 0, 1957, 1958, 5, 155, 0, 0, 1958, 1960, 5, 42, 0, 0, 1959, 1951, 1, 0, 0, 0, 1959, 1952, 1, 0, 0, 0, 1959, 1953, 1, 0, 0, 0, 1959, 1955, 1, 0, 0, 0, 1959, 1957, 1, 0, 0, 0, 1960, 103, 1, 0, 0, 0, 1961, 1963, 5, 380, 0, 0, 1962, 1964, 5, 857, 0, 0, 1963, 1962, 1, 0, 0, 0, 1963, 1964, 1, 0, 0, 0, 1964, 1966, 1, 0, 0, 0, 1965, 1967, 3, 708, 354, 0, 1966, 1965, 1, 0, 0, 0, 1966, 1967, 1, 0, 0, 0, 1967, 2147, 1, 0, 0, 0, 1968, 1970, 5, 825, 0, 0, 1969, 1971, 5, 857, 0, 0, 1970, 1969, 1, 0, 0, 0, 1970, 1971, 1, 0, 0, 0, 1971, 1972, 1, 0, 0, 0, 1972, 2147, 5, 882, 0, 0, 1973, 1975, 5, 314, 0, 0, 1974, 1976, 5, 857, 0, 0, 1975, 1974, 1, 0, 0, 0, 1975, 1976, 1, 0, 0, 0, 1976, 1977, 1, 0, 0, 0, 1977, 2147, 3, 730, 365, 0, 1978, 1980, 5, 315, 0, 0, 1979, 1981, 5, 857, 0, 0, 1980, 1979, 1, 0, 0, 0, 1980, 1981, 1, 0, 0, 0, 1981, 1982, 1, 0, 0, 0, 1982, 2147, 3, 730, 365, 0, 1983, 1985, 5, 316, 0, 0, 1984, 1986, 5, 857, 0, 0, 1985, 1984, 1, 0, 0, 0, 1985, 1986, 1, 0, 0, 0, 1986, 1987, 1, 0, 0, 0, 1987, 2147, 3, 730, 365, 0, 1988, 1990, 5, 42, 0, 0, 1989, 1988, 1, 0, 0, 0, 1989, 1990, 1, 0, 0, 0, 1990, 1991, 1, 0, 0, 0, 1991, 1993, 3, 58, 29, 0, 1992, 1994, 5, 857, 0, 0, 1993, 1992, 1, 0, 0, 0, 1993, 1994, 1, 0, 0, 0, 1994, 1997, 1, 0, 0, 0, 1995, 1998, 3, 704, 352, 0, 1996, 1998, 5, 42, 0, 0, 1997, 1995, 1, 0, 0, 0, 1997, 1996, 1, 0, 0, 0, 1998, 2147, 1, 0, 0, 0, 1999, 2001, 7, 25, 0, 0, 2000, 2002, 5, 857, 0, 0, 2001, 2000, 1, 0, 0, 0, 2001, 2002, 1, 0, 0, 0, 2002, 2003, 1, 0, 0, 0, 2003, 2147, 7, 26, 0, 0, 2004, 2006, 5, 42, 0, 0, 2005, 2004, 1, 0, 0, 0, 2005, 2006, 1, 0, 0, 0, 2006, 2007, 1, 0, 0, 0, 2007, 2009, 5, 28, 0, 0, 2008, 2010, 5, 857, 0, 0, 2009, 2008, 1, 0, 0, 0, 2009, 2010, 1, 0, 0, 0, 2010, 2011, 1, 0, 0, 0, 2011, 2147, 3, 706, 353, 0, 2012, 2014, 5, 340, 0, 0, 2013, 2015, 5, 857, 0, 0, 2014, 2013, 1, 0, 0, 0, 2014, 2015, 1, 0, 0, 0, 2015, 2016, 1, 0, 0, 0, 2016, 2147, 5, 882, 0, 0, 2017, 2019, 5, 346, 0, 0, 2018, 2020, 5, 857, 0, 0, 2019, 2018, 1, 0, 0, 0, 2019, 2020, 1, 0, 0, 0, 2020, 2021, 1, 0, 0, 0, 2021, 2147, 7, 27, 0, 0, 2022, 2024, 5, 349, 0, 0, 2023, 2025, 5, 857, 0, 0, 2024, 2023, 1, 0, 0, 0, 2024, 2025, 1, 0, 0, 0, 2025, 2026, 1, 0, 0, 0, 2026, 2147, 5, 882, 0, 0, 2027, 2028, 7, 28, 0, 0, 2028, 2030, 5, 367, 0, 0, 2029, 2031, 5, 857, 0, 0, 2030, 2029, 1, 0, 0, 0, 2030, 2031, 1, 0, 0, 0, 2031, 2032, 1, 0, 0, 0, 2032, 2147, 5, 882, 0, 0, 2033, 2035, 5, 365, 0, 0, 2034, 2036, 5, 857, 0, 0, 2035, 2034, 1, 0, 0, 0, 2035, 2036, 1, 0, 0, 0, 2036, 2037, 1, 0, 0, 0, 2037, 2147, 7, 26, 0, 0, 2038, 2040, 5, 376, 0, 0, 2039, 2041, 5, 857, 0, 0, 2040, 2039, 1, 0, 0, 0, 2040, 2041, 1, 0, 0, 0, 2041, 2042, 1, 0, 0, 0, 2042, 2147, 5, 882, 0, 0, 2043, 2045, 7, 29, 0, 0, 2044, 2046, 5, 857, 0, 0, 2045, 2044, 1, 0, 0, 0, 2045, 2046, 1, 0, 0, 0, 2046, 2047, 1, 0, 0, 0, 2047, 2147, 7, 26, 0, 0, 2048, 2050, 7, 30, 0, 0, 2049, 2051, 5, 857, 0, 0, 2050, 2049, 1, 0, 0, 0, 2050, 2051, 1, 0, 0, 0, 2051, 2052, 1, 0, 0, 0, 2052, 2147, 3, 730, 365, 0, 2053, 2055, 5, 377, 0, 0, 2054, 2056, 5, 857, 0, 0, 2055, 2054, 1, 0, 0, 0, 2055, 2056, 1, 0, 0, 0, 2056, 2057, 1, 0, 0, 0, 2057, 2147, 3, 730, 365, 0, 2058, 2059, 5, 82, 0, 0, 2059, 2061, 5, 367, 0, 0, 2060, 2062, 5, 857, 0, 0, 2061, 2060, 1, 0, 0, 0, 2061, 2062, 1, 0, 0, 0, 2062, 2063, 1, 0, 0, 0, 2063, 2147, 5, 882, 0, 0, 2064, 2066, 5, 431, 0, 0, 2065, 2067, 5, 857, 0, 0, 2066, 2065, 1, 0, 0, 0, 2066, 2067, 1, 0, 0, 0, 2067, 2068, 1, 0, 0, 0, 2068, 2147, 7, 31, 0, 0, 2069, 2071, 5, 443, 0, 0, 2070, 2072, 5, 857, 0, 0, 2071, 2070, 1, 0, 0, 0, 2071, 2072, 1, 0, 0, 0, 2072, 2073, 1, 0, 0, 0, 2073, 2147, 3, 732, 366, 0, 2074, 2076, 5, 480, 0, 0, 2075, 2077, 5, 857, 0, 0, 2076, 2075, 1, 0, 0, 0, 2076, 2077, 1, 0, 0, 0, 2077, 2078, 1, 0, 0, 0, 2078, 2147, 3, 730, 365, 0, 2079, 2081, 5, 490, 0, 0, 2080, 2082, 5, 857, 0, 0, 2081, 2080, 1, 0, 0, 0, 2081, 2082, 1, 0, 0, 0, 2082, 2083, 1, 0, 0, 0, 2083, 2147, 3, 730, 365, 0, 2084, 2086, 5, 520, 0, 0, 2085, 2087, 5, 857, 0, 0, 2086, 2085, 1, 0, 0, 0, 2086, 2087, 1, 0, 0, 0, 2087, 2088, 1, 0, 0, 0, 2088, 2147, 7, 14, 0, 0, 2089, 2091, 5, 529, 0, 0, 2090, 2092, 5, 857, 0, 0, 2091, 2090, 1, 0, 0, 0, 2091, 2092, 1, 0, 0, 0, 2092, 2093, 1, 0, 0, 0, 2093, 2147, 5, 882, 0, 0, 2094, 2096, 5, 588, 0, 0, 2095, 2097, 5, 857, 0, 0, 2096, 2095, 1, 0, 0, 0, 2096, 2097, 1, 0, 0, 0, 2097, 2098, 1, 0, 0, 0, 2098, 2147, 7, 32, 0, 0, 2099, 2100, 5, 640, 0, 0, 2100, 2147, 5, 664, 0, 0, 2101, 2103, 5, 833, 0, 0, 2102, 2104, 5, 857, 0, 0, 2103, 2102, 1, 0, 0, 0, 2103, 2104, 1, 0, 0, 0, 2104, 2105, 1, 0, 0, 0, 2105, 2147, 5, 882, 0, 0, 2106, 2108, 5, 642, 0, 0, 2107, 2109, 5, 857, 0, 0, 2108, 2107, 1, 0, 0, 0, 2108, 2109, 1, 0, 0, 0, 2109, 2110, 1, 0, 0, 0, 2110, 2147, 7, 14, 0, 0, 2111, 2113, 5, 643, 0, 0, 2112, 2114, 5, 857, 0, 0, 2113, 2112, 1, 0, 0, 0, 2113, 2114, 1, 0, 0, 0, 2114, 2115, 1, 0, 0, 0, 2115, 2147, 7, 14, 0, 0, 2116, 2118, 5, 644, 0, 0, 2117, 2119, 5, 857, 0, 0, 2118, 2117, 1, 0, 0, 0, 2118, 2119, 1, 0, 0, 0, 2119, 2122, 1, 0, 0, 0, 2120, 2123, 5, 42, 0, 0, 2121, 2123, 3, 730, 365, 0, 2122, 2120, 1, 0, 0, 0, 2122, 2121, 1, 0, 0, 0, 2123, 2147, 1, 0, 0, 0, 2124, 2125, 5, 658, 0, 0, 2125, 2127, 3, 682, 341, 0, 2126, 2128, 3, 108, 54, 0, 2127, 2126, 1, 0, 0, 0, 2127, 2128, 1, 0, 0, 0, 2128, 2147, 1, 0, 0, 0, 2129, 2130, 5, 659, 0, 0, 2130, 2131, 5, 857, 0, 0, 2131, 2147, 3, 106, 53, 0, 2132, 2147, 3, 108, 54, 0, 2133, 2135, 5, 665, 0, 0, 2134, 2136, 5, 857, 0, 0, 2135, 2134, 1, 0, 0, 0, 2135, 2136, 1, 0, 0, 0, 2136, 2137, 1, 0, 0, 0, 2137, 2147, 7, 26, 0, 0, 2138, 2140, 5, 181, 0, 0, 2139, 2141, 5, 857, 0, 0, 2140, 2139, 1, 0, 0, 0, 2140, 2141, 1, 0, 0, 0, 2141, 2142, 1, 0, 0, 0, 2142, 2143, 5, 866, 0, 0, 2143, 2144, 3, 660, 330, 0, 2144, 2145, 5, 867, 0, 0, 2145, 2147, 1, 0, 0, 0, 2146, 1961, 1, 0, 0, 0, 2146, 1968, 1, 0, 0, 0, 2146, 1973, 1, 0, 0, 0, 2146, 1978, 1, 0, 0, 0, 2146, 1983, 1, 0, 0, 0, 2146, 1989, 1, 0, 0, 0, 2146, 1999, 1, 0, 0, 0, 2146, 2005, 1, 0, 0, 0, 2146, 2012, 1, 0, 0, 0, 2146, 2017, 1, 0, 0, 0, 2146, 2022, 1, 0, 0, 0, 2146, 2027, 1, 0, 0, 0, 2146, 2033, 1, 0, 0, 0, 2146, 2038, 1, 0, 0, 0, 2146, 2043, 1, 0, 0, 0, 2146, 2048, 1, 0, 0, 0, 2146, 2053, 1, 0, 0, 0, 2146, 2058, 1, 0, 0, 0, 2146, 2064, 1, 0, 0, 0, 2146, 2069, 1, 0, 0, 0, 2146, 2074, 1, 0, 0, 0, 2146, 2079, 1, 0, 0, 0, 2146, 2084, 1, 0, 0, 0, 2146, 2089, 1, 0, 0, 0, 2146, 2094, 1, 0, 0, 0, 2146, 2099, 1, 0, 0, 0, 2146, 2101, 1, 0, 0, 0, 2146, 2106, 1, 0, 0, 0, 2146, 2111, 1, 0, 0, 0, 2146, 2116, 1, 0, 0, 0, 2146, 2124, 1, 0, 0, 0, 2146, 2129, 1, 0, 0, 0, 2146, 2132, 1, 0, 0, 0, 2146, 2133, 1, 0, 0, 0, 2146, 2138, 1, 0, 0, 0, 2147, 105, 1, 0, 0, 0, 2148, 2149, 7, 33, 0, 0, 2149, 107, 1, 0, 0, 0, 2150, 2151, 5, 647, 0, 0, 2151, 2152, 7, 22, 0, 0, 2152, 109, 1, 0, 0, 0, 2153, 2154, 5, 130, 0, 0, 2154, 2155, 5, 20, 0, 0, 2155, 2158, 3, 112, 56, 0, 2156, 2157, 5, 528, 0, 0, 2157, 2159, 3, 730, 365, 0, 2158, 2156, 1, 0, 0, 0, 2158, 2159, 1, 0, 0, 0, 2159, 2167, 1, 0, 0, 0, 2160, 2161, 5, 652, 0, 0, 2161, 2162, 5, 20, 0, 0, 2162, 2165, 3, 114, 57, 0, 2163, 2164, 5, 653, 0, 0, 2164, 2166, 3, 730, 365, 0, 2165, 2163, 1, 0, 0, 0, 2165, 2166, 1, 0, 0, 0, 2166, 2168, 1, 0, 0, 0, 2167, 2160, 1, 0, 0, 0, 2167, 2168, 1, 0, 0, 0, 2168, 2180, 1, 0, 0, 0, 2169, 2170, 5, 866, 0, 0, 2170, 2175, 3, 116, 58, 0, 2171, 2172, 5, 868, 0, 0, 2172, 2174, 3, 116, 58, 0, 2173, 2171, 1, 0, 0, 0, 2174, 2177, 1, 0, 0, 0, 2175, 2173, 1, 0, 0, 0, 2175, 2176, 1, 0, 0, 0, 2176, 2178, 1, 0, 0, 0, 2177, 2175, 1, 0, 0, 0, 2178, 2179, 5, 867, 0, 0, 2179, 2181, 1, 0, 0, 0, 2180, 2169, 1, 0, 0, 0, 2180, 2181, 1, 0, 0, 0, 2181, 111, 1, 0, 0, 0, 2182, 2184, 5, 101, 0, 0, 2183, 2182, 1, 0, 0, 0, 2183, 2184, 1, 0, 0, 0, 2184, 2185, 1, 0, 0, 0, 2185, 2186, 5, 418, 0, 0, 2186, 2187, 5, 866, 0, 0, 2187, 2188, 3, 822, 411, 0, 2188, 2189, 5, 867, 0, 0, 2189, 2229, 1, 0, 0, 0, 2190, 2192, 5, 101, 0, 0, 2191, 2190, 1, 0, 0, 0, 2191, 2192, 1, 0, 0, 0, 2192, 2193, 1, 0, 0, 0, 2193, 2197, 5, 92, 0, 0, 2194, 2195, 5, 308, 0, 0, 2195, 2196, 5, 857, 0, 0, 2196, 2198, 7, 34, 0, 0, 2197, 2194, 1, 0, 0, 0, 2197, 2198, 1, 0, 0, 0, 2198, 2199, 1, 0, 0, 0, 2199, 2201, 5, 866, 0, 0, 2200, 2202, 3, 670, 335, 0, 2201, 2200, 1, 0, 0, 0, 2201, 2202, 1, 0, 0, 0, 2202, 2203, 1, 0, 0, 0, 2203, 2229, 5, 867, 0, 0, 2204, 2214, 5, 134, 0, 0, 2205, 2206, 5, 866, 0, 0, 2206, 2207, 3, 822, 411, 0, 2207, 2208, 5, 867, 0, 0, 2208, 2215, 1, 0, 0, 0, 2209, 2210, 5, 337, 0, 0, 2210, 2211, 5, 866, 0, 0, 2211, 2212, 3, 670, 335, 0, 2212, 2213, 5, 867, 0, 0, 2213, 2215, 1, 0, 0, 0, 2214, 2205, 1, 0, 0, 0, 2214, 2209, 1, 0, 0, 0, 2215, 2229, 1, 0, 0, 0, 2216, 2226, 5, 449, 0, 0, 2217, 2218, 5, 866, 0, 0, 2218, 2219, 3, 822, 411, 0, 2219, 2220, 5, 867, 0, 0, 2220, 2227, 1, 0, 0, 0, 2221, 2222, 5, 337, 0, 0, 2222, 2223, 5, 866, 0, 0, 2223, 2224, 3, 670, 335, 0, 2224, 2225, 5, 867, 0, 0, 2225, 2227, 1, 0, 0, 0, 2226, 2217, 1, 0, 0, 0, 2226, 2221, 1, 0, 0, 0, 2227, 2229, 1, 0, 0, 0, 2228, 2183, 1, 0, 0, 0, 2228, 2191, 1, 0, 0, 0, 2228, 2204, 1, 0, 0, 0, 2228, 2216, 1, 0, 0, 0, 2229, 113, 1, 0, 0, 0, 2230, 2232, 5, 101, 0, 0, 2231, 2230, 1, 0, 0, 0, 2231, 2232, 1, 0, 0, 0, 2232, 2233, 1, 0, 0, 0, 2233, 2234, 5, 418, 0, 0, 2234, 2235, 5, 866, 0, 0, 2235, 2236, 3, 822, 411, 0, 2236, 2237, 5, 867, 0, 0, 2237, 2252, 1, 0, 0, 0, 2238, 2240, 5, 101, 0, 0, 2239, 2238, 1, 0, 0, 0, 2239, 2240, 1, 0, 0, 0, 2240, 2241, 1, 0, 0, 0, 2241, 2245, 5, 92, 0, 0, 2242, 2243, 5, 308, 0, 0, 2243, 2244, 5, 857, 0, 0, 2244, 2246, 7, 34, 0, 0, 2245, 2242, 1, 0, 0, 0, 2245, 2246, 1, 0, 0, 0, 2246, 2247, 1, 0, 0, 0, 2247, 2248, 5, 866, 0, 0, 2248, 2249, 3, 670, 335, 0, 2249, 2250, 5, 867, 0, 0, 2250, 2252, 1, 0, 0, 0, 2251, 2231, 1, 0, 0, 0, 2251, 2239, 1, 0, 0, 0, 2252, 115, 1, 0, 0, 0, 2253, 2254, 5, 130, 0, 0, 2254, 2255, 3, 688, 344, 0, 2255, 2256, 5, 189, 0, 0, 2256, 2257, 5, 447, 0, 0, 2257, 2258, 5, 662, 0, 0, 2258, 2259, 5, 866, 0, 0, 2259, 2264, 3, 118, 59, 0, 2260, 2261, 5, 868, 0, 0, 2261, 2263, 3, 118, 59, 0, 2262, 2260, 1, 0, 0, 0, 2263, 2266, 1, 0, 0, 0, 2264, 2262, 1, 0, 0, 0, 2264, 2265, 1, 0, 0, 0, 2265, 2267, 1, 0, 0, 0, 2266, 2264, 1, 0, 0, 0, 2267, 2271, 5, 867, 0, 0, 2268, 2270, 3, 124, 62, 0, 2269, 2268, 1, 0, 0, 0, 2270, 2273, 1, 0, 0, 0, 2271, 2269, 1, 0, 0, 0, 2271, 2272, 1, 0, 0, 0, 2272, 2285, 1, 0, 0, 0, 2273, 2271, 1, 0, 0, 0, 2274, 2275, 5, 866, 0, 0, 2275, 2280, 3, 122, 61, 0, 2276, 2277, 5, 868, 0, 0, 2277, 2279, 3, 122, 61, 0, 2278, 2276, 1, 0, 0, 0, 2279, 2282, 1, 0, 0, 0, 2280, 2278, 1, 0, 0, 0, 2280, 2281, 1, 0, 0, 0, 2281, 2283, 1, 0, 0, 0, 2282, 2280, 1, 0, 0, 0, 2283, 2284, 5, 867, 0, 0, 2284, 2286, 1, 0, 0, 0, 2285, 2274, 1, 0, 0, 0, 2285, 2286, 1, 0, 0, 0, 2286, 2400, 1, 0, 0, 0, 2287, 2288, 5, 130, 0, 0, 2288, 2289, 3, 688, 344, 0, 2289, 2290, 5, 189, 0, 0, 2290, 2291, 5, 447, 0, 0, 2291, 2292, 5, 662, 0, 0, 2292, 2296, 3, 118, 59, 0, 2293, 2295, 3, 124, 62, 0, 2294, 2293, 1, 0, 0, 0, 2295, 2298, 1, 0, 0, 0, 2296, 2294, 1, 0, 0, 0, 2296, 2297, 1, 0, 0, 0, 2297, 2310, 1, 0, 0, 0, 2298, 2296, 1, 0, 0, 0, 2299, 2300, 5, 866, 0, 0, 2300, 2305, 3, 122, 61, 0, 2301, 2302, 5, 868, 0, 0, 2302, 2304, 3, 122, 61, 0, 2303, 2301, 1, 0, 0, 0, 2304, 2307, 1, 0, 0, 0, 2305, 2303, 1, 0, 0, 0, 2305, 2306, 1, 0, 0, 0, 2306, 2308, 1, 0, 0, 0, 2307, 2305, 1, 0, 0, 0, 2308, 2309, 5, 867, 0, 0, 2309, 2311, 1, 0, 0, 0, 2310, 2299, 1, 0, 0, 0, 2310, 2311, 1, 0, 0, 0, 2311, 2400, 1, 0, 0, 0, 2312, 2313, 5, 130, 0, 0, 2313, 2314, 3, 688, 344, 0, 2314, 2315, 5, 189, 0, 0, 2315, 2316, 5, 80, 0, 0, 2316, 2317, 5, 866, 0, 0, 2317, 2322, 3, 118, 59, 0, 2318, 2319, 5, 868, 0, 0, 2319, 2321, 3, 118, 59, 0, 2320, 2318, 1, 0, 0, 0, 2321, 2324, 1, 0, 0, 0, 2322, 2320, 1, 0, 0, 0, 2322, 2323, 1, 0, 0, 0, 2323, 2325, 1, 0, 0, 0, 2324, 2322, 1, 0, 0, 0, 2325, 2329, 5, 867, 0, 0, 2326, 2328, 3, 124, 62, 0, 2327, 2326, 1, 0, 0, 0, 2328, 2331, 1, 0, 0, 0, 2329, 2327, 1, 0, 0, 0, 2329, 2330, 1, 0, 0, 0, 2330, 2343, 1, 0, 0, 0, 2331, 2329, 1, 0, 0, 0, 2332, 2333, 5, 866, 0, 0, 2333, 2338, 3, 122, 61, 0, 2334, 2335, 5, 868, 0, 0, 2335, 2337, 3, 122, 61, 0, 2336, 2334, 1, 0, 0, 0, 2337, 2340, 1, 0, 0, 0, 2338, 2336, 1, 0, 0, 0, 2338, 2339, 1, 0, 0, 0, 2339, 2341, 1, 0, 0, 0, 2340, 2338, 1, 0, 0, 0, 2341, 2342, 5, 867, 0, 0, 2342, 2344, 1, 0, 0, 0, 2343, 2332, 1, 0, 0, 0, 2343, 2344, 1, 0, 0, 0, 2344, 2400, 1, 0, 0, 0, 2345, 2346, 5, 130, 0, 0, 2346, 2347, 3, 688, 344, 0, 2347, 2348, 5, 189, 0, 0, 2348, 2349, 5, 80, 0, 0, 2349, 2350, 5, 866, 0, 0, 2350, 2355, 3, 120, 60, 0, 2351, 2352, 5, 868, 0, 0, 2352, 2354, 3, 120, 60, 0, 2353, 2351, 1, 0, 0, 0, 2354, 2357, 1, 0, 0, 0, 2355, 2353, 1, 0, 0, 0, 2355, 2356, 1, 0, 0, 0, 2356, 2358, 1, 0, 0, 0, 2357, 2355, 1, 0, 0, 0, 2358, 2362, 5, 867, 0, 0, 2359, 2361, 3, 124, 62, 0, 2360, 2359, 1, 0, 0, 0, 2361, 2364, 1, 0, 0, 0, 2362, 2360, 1, 0, 0, 0, 2362, 2363, 1, 0, 0, 0, 2363, 2376, 1, 0, 0, 0, 2364, 2362, 1, 0, 0, 0, 2365, 2366, 5, 866, 0, 0, 2366, 2371, 3, 122, 61, 0, 2367, 2368, 5, 868, 0, 0, 2368, 2370, 3, 122, 61, 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, 2374, 1, 0, 0, 0, 2373, 2371, 1, 0, 0, 0, 2374, 2375, 5, 867, 0, 0, 2375, 2377, 1, 0, 0, 0, 2376, 2365, 1, 0, 0, 0, 2376, 2377, 1, 0, 0, 0, 2377, 2400, 1, 0, 0, 0, 2378, 2379, 5, 130, 0, 0, 2379, 2383, 3, 688, 344, 0, 2380, 2382, 3, 124, 62, 0, 2381, 2380, 1, 0, 0, 0, 2382, 2385, 1, 0, 0, 0, 2383, 2381, 1, 0, 0, 0, 2383, 2384, 1, 0, 0, 0, 2384, 2397, 1, 0, 0, 0, 2385, 2383, 1, 0, 0, 0, 2386, 2387, 5, 866, 0, 0, 2387, 2392, 3, 122, 61, 0, 2388, 2389, 5, 868, 0, 0, 2389, 2391, 3, 122, 61, 0, 2390, 2388, 1, 0, 0, 0, 2391, 2394, 1, 0, 0, 0, 2392, 2390, 1, 0, 0, 0, 2392, 2393, 1, 0, 0, 0, 2393, 2395, 1, 0, 0, 0, 2394, 2392, 1, 0, 0, 0, 2395, 2396, 5, 867, 0, 0, 2396, 2398, 1, 0, 0, 0, 2397, 2386, 1, 0, 0, 0, 2397, 2398, 1, 0, 0, 0, 2398, 2400, 1, 0, 0, 0, 2399, 2253, 1, 0, 0, 0, 2399, 2287, 1, 0, 0, 0, 2399, 2312, 1, 0, 0, 0, 2399, 2345, 1, 0, 0, 0, 2399, 2378, 1, 0, 0, 0, 2400, 117, 1, 0, 0, 0, 2401, 2405, 3, 742, 371, 0, 2402, 2405, 3, 822, 411, 0, 2403, 2405, 5, 111, 0, 0, 2404, 2401, 1, 0, 0, 0, 2404, 2402, 1, 0, 0, 0, 2404, 2403, 1, 0, 0, 0, 2405, 119, 1, 0, 0, 0, 2406, 2407, 5, 866, 0, 0, 2407, 2410, 3, 118, 59, 0, 2408, 2409, 5, 868, 0, 0, 2409, 2411, 3, 118, 59, 0, 2410, 2408, 1, 0, 0, 0, 2411, 2412, 1, 0, 0, 0, 2412, 2410, 1, 0, 0, 0, 2412, 2413, 1, 0, 0, 0, 2413, 2414, 1, 0, 0, 0, 2414, 2415, 5, 867, 0, 0, 2415, 121, 1, 0, 0, 0, 2416, 2417, 5, 652, 0, 0, 2417, 2421, 3, 722, 361, 0, 2418, 2420, 3, 124, 62, 0, 2419, 2418, 1, 0, 0, 0, 2420, 2423, 1, 0, 0, 0, 2421, 2419, 1, 0, 0, 0, 2421, 2422, 1, 0, 0, 0, 2422, 123, 1, 0, 0, 0, 2423, 2421, 1, 0, 0, 0, 2424, 2426, 5, 42, 0, 0, 2425, 2424, 1, 0, 0, 0, 2425, 2426, 1, 0, 0, 0, 2426, 2428, 1, 0, 0, 0, 2427, 2429, 5, 647, 0, 0, 2428, 2427, 1, 0, 0, 0, 2428, 2429, 1, 0, 0, 0, 2429, 2430, 1, 0, 0, 0, 2430, 2432, 5, 380, 0, 0, 2431, 2433, 5, 857, 0, 0, 2432, 2431, 1, 0, 0, 0, 2432, 2433, 1, 0, 0, 0, 2433, 2434, 1, 0, 0, 0, 2434, 2473, 3, 708, 354, 0, 2435, 2437, 5, 340, 0, 0, 2436, 2438, 5, 857, 0, 0, 2437, 2436, 1, 0, 0, 0, 2437, 2438, 1, 0, 0, 0, 2438, 2439, 1, 0, 0, 0, 2439, 2473, 5, 882, 0, 0, 2440, 2441, 5, 360, 0, 0, 2441, 2443, 5, 367, 0, 0, 2442, 2444, 5, 857, 0, 0, 2443, 2442, 1, 0, 0, 0, 2443, 2444, 1, 0, 0, 0, 2444, 2445, 1, 0, 0, 0, 2445, 2473, 5, 882, 0, 0, 2446, 2447, 5, 82, 0, 0, 2447, 2449, 5, 367, 0, 0, 2448, 2450, 5, 857, 0, 0, 2449, 2448, 1, 0, 0, 0, 2449, 2450, 1, 0, 0, 0, 2450, 2451, 1, 0, 0, 0, 2451, 2473, 5, 882, 0, 0, 2452, 2454, 5, 480, 0, 0, 2453, 2455, 5, 857, 0, 0, 2454, 2453, 1, 0, 0, 0, 2454, 2455, 1, 0, 0, 0, 2455, 2456, 1, 0, 0, 0, 2456, 2473, 3, 730, 365, 0, 2457, 2459, 5, 490, 0, 0, 2458, 2460, 5, 857, 0, 0, 2459, 2458, 1, 0, 0, 0, 2459, 2460, 1, 0, 0, 0, 2460, 2461, 1, 0, 0, 0, 2461, 2473, 3, 730, 365, 0, 2462, 2464, 5, 658, 0, 0, 2463, 2465, 5, 857, 0, 0, 2464, 2463, 1, 0, 0, 0, 2464, 2465, 1, 0, 0, 0, 2465, 2466, 1, 0, 0, 0, 2466, 2473, 3, 682, 341, 0, 2467, 2469, 5, 504, 0, 0, 2468, 2470, 5, 857, 0, 0, 2469, 2468, 1, 0, 0, 0, 2469, 2470, 1, 0, 0, 0, 2470, 2471, 1, 0, 0, 0, 2471, 2473, 3, 722, 361, 0, 2472, 2425, 1, 0, 0, 0, 2472, 2435, 1, 0, 0, 0, 2472, 2440, 1, 0, 0, 0, 2472, 2446, 1, 0, 0, 0, 2472, 2452, 1, 0, 0, 0, 2472, 2457, 1, 0, 0, 0, 2472, 2462, 1, 0, 0, 0, 2472, 2467, 1, 0, 0, 0, 2473, 125, 1, 0, 0, 0, 2474, 2475, 5, 8, 0, 0, 2475, 2477, 7, 0, 0, 0, 2476, 2478, 3, 638, 319, 0, 2477, 2476, 1, 0, 0, 0, 2477, 2478, 1, 0, 0, 0, 2478, 2480, 1, 0, 0, 0, 2479, 2481, 3, 56, 28, 0, 2480, 2479, 1, 0, 0, 0, 2481, 2482, 1, 0, 0, 0, 2482, 2480, 1, 0, 0, 0, 2482, 2483, 1, 0, 0, 0, 2483, 2493, 1, 0, 0, 0, 2484, 2485, 5, 8, 0, 0, 2485, 2486, 7, 0, 0, 0, 2486, 2487, 3, 638, 319, 0, 2487, 2488, 5, 677, 0, 0, 2488, 2489, 5, 360, 0, 0, 2489, 2490, 5, 367, 0, 0, 2490, 2491, 5, 496, 0, 0, 2491, 2493, 1, 0, 0, 0, 2492, 2474, 1, 0, 0, 0, 2492, 2484, 1, 0, 0, 0, 2493, 127, 1, 0, 0, 0, 2494, 2496, 5, 8, 0, 0, 2495, 2497, 3, 62, 31, 0, 2496, 2495, 1, 0, 0, 0, 2496, 2497, 1, 0, 0, 0, 2497, 2498, 1, 0, 0, 0, 2498, 2499, 5, 385, 0, 0, 2499, 2503, 3, 718, 359, 0, 2500, 2501, 5, 119, 0, 0, 2501, 2502, 5, 590, 0, 0, 2502, 2504, 3, 64, 32, 0, 2503, 2500, 1, 0, 0, 0, 2503, 2504, 1, 0, 0, 0, 2504, 2511, 1, 0, 0, 0, 2505, 2506, 5, 119, 0, 0, 2506, 2508, 5, 343, 0, 0, 2507, 2509, 5, 114, 0, 0, 2508, 2507, 1, 0, 0, 0, 2508, 2509, 1, 0, 0, 0, 2509, 2510, 1, 0, 0, 0, 2510, 2512, 5, 541, 0, 0, 2511, 2505, 1, 0, 0, 0, 2511, 2512, 1, 0, 0, 0, 2512, 2516, 1, 0, 0, 0, 2513, 2514, 5, 141, 0, 0, 2514, 2515, 5, 176, 0, 0, 2515, 2517, 3, 718, 359, 0, 2516, 2513, 1, 0, 0, 0, 2516, 2517, 1, 0, 0, 0, 2517, 2519, 1, 0, 0, 0, 2518, 2520, 3, 72, 36, 0, 2519, 2518, 1, 0, 0, 0, 2519, 2520, 1, 0, 0, 0, 2520, 2523, 1, 0, 0, 0, 2521, 2522, 5, 340, 0, 0, 2522, 2524, 5, 882, 0, 0, 2523, 2521, 1, 0, 0, 0, 2523, 2524, 1, 0, 0, 0, 2524, 2527, 1, 0, 0, 0, 2525, 2526, 5, 371, 0, 0, 2526, 2528, 3, 432, 216, 0, 2527, 2525, 1, 0, 0, 0, 2527, 2528, 1, 0, 0, 0, 2528, 129, 1, 0, 0, 0, 2529, 2530, 5, 8, 0, 0, 2530, 2531, 5, 409, 0, 0, 2531, 2535, 3, 642, 321, 0, 2532, 2534, 3, 82, 41, 0, 2533, 2532, 1, 0, 0, 0, 2534, 2537, 1, 0, 0, 0, 2535, 2533, 1, 0, 0, 0, 2535, 2536, 1, 0, 0, 0, 2536, 131, 1, 0, 0, 0, 2537, 2535, 1, 0, 0, 0, 2538, 2539, 5, 8, 0, 0, 2539, 2540, 5, 433, 0, 0, 2540, 2541, 5, 585, 0, 0, 2541, 2542, 5, 801, 0, 0, 2542, 2543, 5, 453, 0, 0, 2543, 2544, 5, 92, 0, 0, 2544, 133, 1, 0, 0, 0, 2545, 2546, 5, 8, 0, 0, 2546, 2547, 5, 451, 0, 0, 2547, 2548, 5, 74, 0, 0, 2548, 2549, 3, 722, 361, 0, 2549, 2550, 5, 6, 0, 0, 2550, 2551, 5, 671, 0, 0, 2551, 2557, 5, 882, 0, 0, 2552, 2554, 5, 428, 0, 0, 2553, 2555, 5, 857, 0, 0, 2554, 2553, 1, 0, 0, 0, 2554, 2555, 1, 0, 0, 0, 2555, 2556, 1, 0, 0, 0, 2556, 2558, 3, 732, 366, 0, 2557, 2552, 1, 0, 0, 0, 2557, 2558, 1, 0, 0, 0, 2558, 2560, 1, 0, 0, 0, 2559, 2561, 5, 687, 0, 0, 2560, 2559, 1, 0, 0, 0, 2560, 2561, 1, 0, 0, 0, 2561, 2562, 1, 0, 0, 0, 2562, 2564, 5, 380, 0, 0, 2563, 2565, 5, 857, 0, 0, 2564, 2563, 1, 0, 0, 0, 2564, 2565, 1, 0, 0, 0, 2565, 2566, 1, 0, 0, 0, 2566, 2567, 3, 708, 354, 0, 2567, 135, 1, 0, 0, 0, 2568, 2569, 5, 8, 0, 0, 2569, 2570, 5, 132, 0, 0, 2570, 2574, 3, 718, 359, 0, 2571, 2573, 3, 82, 41, 0, 2572, 2571, 1, 0, 0, 0, 2573, 2576, 1, 0, 0, 0, 2574, 2572, 1, 0, 0, 0, 2574, 2575, 1, 0, 0, 0, 2575, 137, 1, 0, 0, 0, 2576, 2574, 1, 0, 0, 0, 2577, 2578, 5, 8, 0, 0, 2578, 2579, 5, 592, 0, 0, 2579, 2580, 3, 722, 361, 0, 2580, 2581, 5, 518, 0, 0, 2581, 2582, 5, 866, 0, 0, 2582, 2587, 3, 84, 42, 0, 2583, 2584, 5, 868, 0, 0, 2584, 2586, 3, 84, 42, 0, 2585, 2583, 1, 0, 0, 0, 2586, 2589, 1, 0, 0, 0, 2587, 2585, 1, 0, 0, 0, 2587, 2588, 1, 0, 0, 0, 2588, 2590, 1, 0, 0, 0, 2589, 2587, 1, 0, 0, 0, 2590, 2591, 5, 867, 0, 0, 2591, 139, 1, 0, 0, 0, 2592, 2593, 5, 8, 0, 0, 2593, 2594, 5, 173, 0, 0, 2594, 2603, 3, 662, 331, 0, 2595, 2600, 3, 146, 73, 0, 2596, 2597, 5, 868, 0, 0, 2597, 2599, 3, 146, 73, 0, 2598, 2596, 1, 0, 0, 0, 2599, 2602, 1, 0, 0, 0, 2600, 2598, 1, 0, 0, 0, 2600, 2601, 1, 0, 0, 0, 2601, 2604, 1, 0, 0, 0, 2602, 2600, 1, 0, 0, 0, 2603, 2595, 1, 0, 0, 0, 2603, 2604, 1, 0, 0, 0, 2604, 2612, 1, 0, 0, 0, 2605, 2609, 3, 148, 74, 0, 2606, 2608, 3, 148, 74, 0, 2607, 2606, 1, 0, 0, 0, 2608, 2611, 1, 0, 0, 0, 2609, 2607, 1, 0, 0, 0, 2609, 2610, 1, 0, 0, 0, 2610, 2613, 1, 0, 0, 0, 2611, 2609, 1, 0, 0, 0, 2612, 2605, 1, 0, 0, 0, 2612, 2613, 1, 0, 0, 0, 2613, 141, 1, 0, 0, 0, 2614, 2616, 5, 8, 0, 0, 2615, 2617, 5, 180, 0, 0, 2616, 2615, 1, 0, 0, 0, 2616, 2617, 1, 0, 0, 0, 2617, 2618, 1, 0, 0, 0, 2618, 2619, 5, 658, 0, 0, 2619, 2620, 3, 682, 341, 0, 2620, 2621, 7, 35, 0, 0, 2621, 2622, 5, 361, 0, 0, 2622, 2628, 5, 882, 0, 0, 2623, 2625, 5, 428, 0, 0, 2624, 2626, 5, 857, 0, 0, 2625, 2624, 1, 0, 0, 0, 2625, 2626, 1, 0, 0, 0, 2626, 2627, 1, 0, 0, 0, 2627, 2629, 3, 732, 366, 0, 2628, 2623, 1, 0, 0, 0, 2628, 2629, 1, 0, 0, 0, 2629, 2631, 1, 0, 0, 0, 2630, 2632, 5, 687, 0, 0, 2631, 2630, 1, 0, 0, 0, 2631, 2632, 1, 0, 0, 0, 2632, 2636, 1, 0, 0, 0, 2633, 2634, 5, 141, 0, 0, 2634, 2635, 5, 176, 0, 0, 2635, 2637, 3, 680, 340, 0, 2636, 2633, 1, 0, 0, 0, 2636, 2637, 1, 0, 0, 0, 2637, 2643, 1, 0, 0, 0, 2638, 2640, 5, 314, 0, 0, 2639, 2641, 5, 857, 0, 0, 2640, 2639, 1, 0, 0, 0, 2640, 2641, 1, 0, 0, 0, 2641, 2642, 1, 0, 0, 0, 2642, 2644, 3, 732, 366, 0, 2643, 2638, 1, 0, 0, 0, 2643, 2644, 1, 0, 0, 0, 2644, 2647, 1, 0, 0, 0, 2645, 2646, 5, 155, 0, 0, 2646, 2648, 7, 36, 0, 0, 2647, 2645, 1, 0, 0, 0, 2647, 2648, 1, 0, 0, 0, 2648, 2654, 1, 0, 0, 0, 2649, 2651, 5, 376, 0, 0, 2650, 2652, 5, 857, 0, 0, 2651, 2650, 1, 0, 0, 0, 2651, 2652, 1, 0, 0, 0, 2652, 2653, 1, 0, 0, 0, 2653, 2655, 5, 882, 0, 0, 2654, 2649, 1, 0, 0, 0, 2654, 2655, 1, 0, 0, 0, 2655, 2661, 1, 0, 0, 0, 2656, 2658, 5, 380, 0, 0, 2657, 2659, 5, 857, 0, 0, 2658, 2657, 1, 0, 0, 0, 2658, 2659, 1, 0, 0, 0, 2659, 2660, 1, 0, 0, 0, 2660, 2662, 3, 708, 354, 0, 2661, 2656, 1, 0, 0, 0, 2661, 2662, 1, 0, 0, 0, 2662, 2668, 1, 0, 0, 0, 2663, 2665, 5, 825, 0, 0, 2664, 2666, 5, 857, 0, 0, 2665, 2664, 1, 0, 0, 0, 2665, 2666, 1, 0, 0, 0, 2666, 2667, 1, 0, 0, 0, 2667, 2669, 5, 882, 0, 0, 2668, 2663, 1, 0, 0, 0, 2668, 2669, 1, 0, 0, 0, 2669, 143, 1, 0, 0, 0, 2670, 2674, 5, 8, 0, 0, 2671, 2672, 5, 308, 0, 0, 2672, 2673, 5, 857, 0, 0, 2673, 2675, 7, 11, 0, 0, 2674, 2671, 1, 0, 0, 0, 2674, 2675, 1, 0, 0, 0, 2675, 2677, 1, 0, 0, 0, 2676, 2678, 3, 62, 31, 0, 2677, 2676, 1, 0, 0, 0, 2677, 2678, 1, 0, 0, 0, 2678, 2682, 1, 0, 0, 0, 2679, 2680, 5, 162, 0, 0, 2680, 2681, 5, 591, 0, 0, 2681, 2683, 7, 12, 0, 0, 2682, 2679, 1, 0, 0, 0, 2682, 2683, 1, 0, 0, 0, 2683, 2684, 1, 0, 0, 0, 2684, 2685, 5, 684, 0, 0, 2685, 2690, 3, 646, 323, 0, 2686, 2687, 5, 866, 0, 0, 2687, 2688, 3, 670, 335, 0, 2688, 2689, 5, 867, 0, 0, 2689, 2691, 1, 0, 0, 0, 2690, 2686, 1, 0, 0, 0, 2690, 2691, 1, 0, 0, 0, 2691, 2692, 1, 0, 0, 0, 2692, 2693, 5, 13, 0, 0, 2693, 2700, 3, 210, 105, 0, 2694, 2696, 5, 194, 0, 0, 2695, 2697, 7, 13, 0, 0, 2696, 2695, 1, 0, 0, 0, 2696, 2697, 1, 0, 0, 0, 2697, 2698, 1, 0, 0, 0, 2698, 2699, 5, 27, 0, 0, 2699, 2701, 5, 121, 0, 0, 2700, 2694, 1, 0, 0, 0, 2700, 2701, 1, 0, 0, 0, 2701, 145, 1, 0, 0, 0, 2702, 2709, 3, 104, 52, 0, 2703, 2705, 5, 868, 0, 0, 2704, 2703, 1, 0, 0, 0, 2704, 2705, 1, 0, 0, 0, 2705, 2706, 1, 0, 0, 0, 2706, 2708, 3, 104, 52, 0, 2707, 2704, 1, 0, 0, 0, 2708, 2711, 1, 0, 0, 0, 2709, 2707, 1, 0, 0, 0, 2709, 2710, 1, 0, 0, 0, 2710, 2967, 1, 0, 0, 0, 2711, 2709, 1, 0, 0, 0, 2712, 2714, 5, 6, 0, 0, 2713, 2715, 5, 29, 0, 0, 2714, 2713, 1, 0, 0, 0, 2714, 2715, 1, 0, 0, 0, 2715, 2716, 1, 0, 0, 0, 2716, 2717, 3, 674, 337, 0, 2717, 2721, 3, 94, 47, 0, 2718, 2722, 5, 402, 0, 0, 2719, 2720, 5, 306, 0, 0, 2720, 2722, 3, 674, 337, 0, 2721, 2718, 1, 0, 0, 0, 2721, 2719, 1, 0, 0, 0, 2721, 2722, 1, 0, 0, 0, 2722, 2967, 1, 0, 0, 0, 2723, 2725, 5, 6, 0, 0, 2724, 2726, 5, 29, 0, 0, 2725, 2724, 1, 0, 0, 0, 2725, 2726, 1, 0, 0, 0, 2726, 2727, 1, 0, 0, 0, 2727, 2728, 5, 866, 0, 0, 2728, 2729, 3, 674, 337, 0, 2729, 2736, 3, 94, 47, 0, 2730, 2731, 5, 868, 0, 0, 2731, 2732, 3, 674, 337, 0, 2732, 2733, 3, 94, 47, 0, 2733, 2735, 1, 0, 0, 0, 2734, 2730, 1, 0, 0, 0, 2735, 2738, 1, 0, 0, 0, 2736, 2734, 1, 0, 0, 0, 2736, 2737, 1, 0, 0, 0, 2737, 2739, 1, 0, 0, 0, 2738, 2736, 1, 0, 0, 0, 2739, 2740, 5, 867, 0, 0, 2740, 2967, 1, 0, 0, 0, 2741, 2742, 5, 6, 0, 0, 2742, 2744, 7, 19, 0, 0, 2743, 2745, 3, 652, 326, 0, 2744, 2743, 1, 0, 0, 0, 2744, 2745, 1, 0, 0, 0, 2745, 2747, 1, 0, 0, 0, 2746, 2748, 3, 74, 37, 0, 2747, 2746, 1, 0, 0, 0, 2747, 2748, 1, 0, 0, 0, 2748, 2749, 1, 0, 0, 0, 2749, 2753, 3, 756, 378, 0, 2750, 2752, 3, 76, 38, 0, 2751, 2750, 1, 0, 0, 0, 2752, 2755, 1, 0, 0, 0, 2753, 2751, 1, 0, 0, 0, 2753, 2754, 1, 0, 0, 0, 2754, 2967, 1, 0, 0, 0, 2755, 2753, 1, 0, 0, 0, 2756, 2757, 5, 6, 0, 0, 2757, 2759, 7, 20, 0, 0, 2758, 2760, 7, 19, 0, 0, 2759, 2758, 1, 0, 0, 0, 2759, 2760, 1, 0, 0, 0, 2760, 2762, 1, 0, 0, 0, 2761, 2763, 3, 652, 326, 0, 2762, 2761, 1, 0, 0, 0, 2762, 2763, 1, 0, 0, 0, 2763, 2764, 1, 0, 0, 0, 2764, 2768, 3, 756, 378, 0, 2765, 2767, 3, 76, 38, 0, 2766, 2765, 1, 0, 0, 0, 2767, 2770, 1, 0, 0, 0, 2768, 2766, 1, 0, 0, 0, 2768, 2769, 1, 0, 0, 0, 2769, 2967, 1, 0, 0, 0, 2770, 2768, 1, 0, 0, 0, 2771, 2776, 5, 6, 0, 0, 2772, 2774, 5, 31, 0, 0, 2773, 2775, 3, 722, 361, 0, 2774, 2773, 1, 0, 0, 0, 2774, 2775, 1, 0, 0, 0, 2775, 2777, 1, 0, 0, 0, 2776, 2772, 1, 0, 0, 0, 2776, 2777, 1, 0, 0, 0, 2777, 2778, 1, 0, 0, 0, 2778, 2779, 5, 131, 0, 0, 2779, 2781, 5, 92, 0, 0, 2780, 2782, 3, 74, 37, 0, 2781, 2780, 1, 0, 0, 0, 2781, 2782, 1, 0, 0, 0, 2782, 2783, 1, 0, 0, 0, 2783, 2787, 3, 756, 378, 0, 2784, 2786, 3, 76, 38, 0, 2785, 2784, 1, 0, 0, 0, 2786, 2789, 1, 0, 0, 0, 2787, 2785, 1, 0, 0, 0, 2787, 2788, 1, 0, 0, 0, 2788, 2967, 1, 0, 0, 0, 2789, 2787, 1, 0, 0, 0, 2790, 2795, 5, 6, 0, 0, 2791, 2793, 5, 31, 0, 0, 2792, 2794, 3, 722, 361, 0, 2793, 2792, 1, 0, 0, 0, 2793, 2794, 1, 0, 0, 0, 2794, 2796, 1, 0, 0, 0, 2795, 2791, 1, 0, 0, 0, 2795, 2796, 1, 0, 0, 0, 2796, 2797, 1, 0, 0, 0, 2797, 2799, 5, 182, 0, 0, 2798, 2800, 7, 19, 0, 0, 2799, 2798, 1, 0, 0, 0, 2799, 2800, 1, 0, 0, 0, 2800, 2802, 1, 0, 0, 0, 2801, 2803, 3, 652, 326, 0, 2802, 2801, 1, 0, 0, 0, 2802, 2803, 1, 0, 0, 0, 2803, 2805, 1, 0, 0, 0, 2804, 2806, 3, 74, 37, 0, 2805, 2804, 1, 0, 0, 0, 2805, 2806, 1, 0, 0, 0, 2806, 2807, 1, 0, 0, 0, 2807, 2811, 3, 756, 378, 0, 2808, 2810, 3, 76, 38, 0, 2809, 2808, 1, 0, 0, 0, 2810, 2813, 1, 0, 0, 0, 2811, 2809, 1, 0, 0, 0, 2811, 2812, 1, 0, 0, 0, 2812, 2967, 1, 0, 0, 0, 2813, 2811, 1, 0, 0, 0, 2814, 2819, 5, 6, 0, 0, 2815, 2817, 5, 31, 0, 0, 2816, 2818, 3, 722, 361, 0, 2817, 2816, 1, 0, 0, 0, 2817, 2818, 1, 0, 0, 0, 2818, 2820, 1, 0, 0, 0, 2819, 2815, 1, 0, 0, 0, 2819, 2820, 1, 0, 0, 0, 2820, 2821, 1, 0, 0, 0, 2821, 2822, 5, 67, 0, 0, 2822, 2824, 5, 92, 0, 0, 2823, 2825, 3, 652, 326, 0, 2824, 2823, 1, 0, 0, 0, 2824, 2825, 1, 0, 0, 0, 2825, 2826, 1, 0, 0, 0, 2826, 2827, 3, 756, 378, 0, 2827, 2828, 3, 98, 49, 0, 2828, 2967, 1, 0, 0, 0, 2829, 2831, 5, 6, 0, 0, 2830, 2832, 3, 90, 45, 0, 2831, 2830, 1, 0, 0, 0, 2831, 2832, 1, 0, 0, 0, 2832, 2967, 1, 0, 0, 0, 2833, 2834, 5, 51, 0, 0, 2834, 2835, 7, 37, 0, 0, 2835, 2967, 3, 722, 361, 0, 2836, 2837, 5, 8, 0, 0, 2837, 2838, 7, 37, 0, 0, 2838, 2840, 3, 722, 361, 0, 2839, 2841, 5, 114, 0, 0, 2840, 2839, 1, 0, 0, 0, 2840, 2841, 1, 0, 0, 0, 2841, 2843, 1, 0, 0, 0, 2842, 2844, 5, 57, 0, 0, 2843, 2842, 1, 0, 0, 0, 2843, 2844, 1, 0, 0, 0, 2844, 2967, 1, 0, 0, 0, 2845, 2847, 5, 308, 0, 0, 2846, 2848, 5, 857, 0, 0, 2847, 2846, 1, 0, 0, 0, 2847, 2848, 1, 0, 0, 0, 2848, 2849, 1, 0, 0, 0, 2849, 2967, 7, 38, 0, 0, 2850, 2852, 5, 8, 0, 0, 2851, 2853, 5, 29, 0, 0, 2852, 2851, 1, 0, 0, 0, 2852, 2853, 1, 0, 0, 0, 2853, 2854, 1, 0, 0, 0, 2854, 2862, 3, 674, 337, 0, 2855, 2856, 5, 155, 0, 0, 2856, 2857, 5, 42, 0, 0, 2857, 2863, 3, 772, 386, 0, 2858, 2859, 5, 155, 0, 0, 2859, 2863, 7, 17, 0, 0, 2860, 2861, 5, 51, 0, 0, 2861, 2863, 5, 42, 0, 0, 2862, 2855, 1, 0, 0, 0, 2862, 2858, 1, 0, 0, 0, 2862, 2860, 1, 0, 0, 0, 2863, 2967, 1, 0, 0, 0, 2864, 2865, 5, 8, 0, 0, 2865, 2866, 5, 82, 0, 0, 2866, 2867, 3, 652, 326, 0, 2867, 2868, 7, 17, 0, 0, 2868, 2967, 1, 0, 0, 0, 2869, 2871, 5, 25, 0, 0, 2870, 2872, 5, 29, 0, 0, 2871, 2870, 1, 0, 0, 0, 2871, 2872, 1, 0, 0, 0, 2872, 2873, 1, 0, 0, 0, 2873, 2874, 3, 674, 337, 0, 2874, 2875, 3, 668, 334, 0, 2875, 2879, 3, 94, 47, 0, 2876, 2880, 5, 402, 0, 0, 2877, 2878, 5, 306, 0, 0, 2878, 2880, 3, 674, 337, 0, 2879, 2876, 1, 0, 0, 0, 2879, 2877, 1, 0, 0, 0, 2879, 2880, 1, 0, 0, 0, 2880, 2967, 1, 0, 0, 0, 2881, 2883, 5, 42, 0, 0, 2882, 2881, 1, 0, 0, 0, 2882, 2883, 1, 0, 0, 0, 2883, 2884, 1, 0, 0, 0, 2884, 2885, 5, 26, 0, 0, 2885, 2886, 5, 155, 0, 0, 2886, 2887, 5, 857, 0, 0, 2887, 2893, 3, 704, 352, 0, 2888, 2890, 5, 28, 0, 0, 2889, 2891, 5, 857, 0, 0, 2890, 2889, 1, 0, 0, 0, 2890, 2891, 1, 0, 0, 0, 2891, 2892, 1, 0, 0, 0, 2892, 2894, 3, 706, 353, 0, 2893, 2888, 1, 0, 0, 0, 2893, 2894, 1, 0, 0, 0, 2894, 2967, 1, 0, 0, 0, 2895, 2896, 5, 33, 0, 0, 2896, 2900, 5, 176, 0, 0, 2897, 2901, 5, 823, 0, 0, 2898, 2899, 5, 26, 0, 0, 2899, 2901, 5, 155, 0, 0, 2900, 2897, 1, 0, 0, 0, 2900, 2898, 1, 0, 0, 0, 2901, 2902, 1, 0, 0, 0, 2902, 2905, 3, 704, 352, 0, 2903, 2904, 5, 28, 0, 0, 2904, 2906, 3, 706, 353, 0, 2905, 2903, 1, 0, 0, 0, 2905, 2906, 1, 0, 0, 0, 2906, 2967, 1, 0, 0, 0, 2907, 2908, 7, 39, 0, 0, 2908, 2967, 5, 93, 0, 0, 2909, 2910, 7, 40, 0, 0, 2910, 2967, 5, 658, 0, 0, 2911, 2913, 5, 51, 0, 0, 2912, 2914, 5, 29, 0, 0, 2913, 2912, 1, 0, 0, 0, 2913, 2914, 1, 0, 0, 0, 2914, 2915, 1, 0, 0, 0, 2915, 2967, 3, 674, 337, 0, 2916, 2917, 5, 51, 0, 0, 2917, 2918, 7, 19, 0, 0, 2918, 2967, 3, 652, 326, 0, 2919, 2920, 5, 51, 0, 0, 2920, 2921, 5, 131, 0, 0, 2921, 2967, 5, 92, 0, 0, 2922, 2923, 5, 51, 0, 0, 2923, 2924, 5, 67, 0, 0, 2924, 2925, 5, 92, 0, 0, 2925, 2967, 3, 722, 361, 0, 2926, 2967, 5, 66, 0, 0, 2927, 2929, 5, 104, 0, 0, 2928, 2930, 5, 857, 0, 0, 2929, 2928, 1, 0, 0, 0, 2929, 2930, 1, 0, 0, 0, 2930, 2931, 1, 0, 0, 0, 2931, 2967, 7, 4, 0, 0, 2932, 2934, 5, 492, 0, 0, 2933, 2935, 5, 29, 0, 0, 2934, 2933, 1, 0, 0, 0, 2934, 2935, 1, 0, 0, 0, 2935, 2936, 1, 0, 0, 0, 2936, 2937, 3, 674, 337, 0, 2937, 2941, 3, 94, 47, 0, 2938, 2942, 5, 402, 0, 0, 2939, 2940, 5, 306, 0, 0, 2940, 2942, 3, 674, 337, 0, 2941, 2938, 1, 0, 0, 0, 2941, 2939, 1, 0, 0, 0, 2941, 2942, 1, 0, 0, 0, 2942, 2967, 1, 0, 0, 0, 2943, 2944, 5, 125, 0, 0, 2944, 2945, 5, 20, 0, 0, 2945, 2967, 3, 670, 335, 0, 2946, 2947, 5, 141, 0, 0, 2947, 2948, 5, 29, 0, 0, 2948, 2949, 3, 674, 337, 0, 2949, 2950, 5, 176, 0, 0, 2950, 2951, 3, 668, 334, 0, 2951, 2967, 1, 0, 0, 0, 2952, 2953, 5, 141, 0, 0, 2953, 2954, 7, 19, 0, 0, 2954, 2955, 3, 652, 326, 0, 2955, 2956, 5, 176, 0, 0, 2956, 2957, 3, 648, 324, 0, 2957, 2967, 1, 0, 0, 0, 2958, 2960, 5, 141, 0, 0, 2959, 2961, 7, 41, 0, 0, 2960, 2959, 1, 0, 0, 0, 2960, 2961, 1, 0, 0, 0, 2961, 2962, 1, 0, 0, 0, 2962, 2967, 3, 658, 329, 0, 2963, 2964, 7, 42, 0, 0, 2964, 2967, 5, 681, 0, 0, 2965, 2967, 3, 148, 74, 0, 2966, 2702, 1, 0, 0, 0, 2966, 2712, 1, 0, 0, 0, 2966, 2723, 1, 0, 0, 0, 2966, 2741, 1, 0, 0, 0, 2966, 2756, 1, 0, 0, 0, 2966, 2771, 1, 0, 0, 0, 2966, 2790, 1, 0, 0, 0, 2966, 2814, 1, 0, 0, 0, 2966, 2829, 1, 0, 0, 0, 2966, 2833, 1, 0, 0, 0, 2966, 2836, 1, 0, 0, 0, 2966, 2845, 1, 0, 0, 0, 2966, 2850, 1, 0, 0, 0, 2966, 2864, 1, 0, 0, 0, 2966, 2869, 1, 0, 0, 0, 2966, 2882, 1, 0, 0, 0, 2966, 2895, 1, 0, 0, 0, 2966, 2907, 1, 0, 0, 0, 2966, 2909, 1, 0, 0, 0, 2966, 2911, 1, 0, 0, 0, 2966, 2916, 1, 0, 0, 0, 2966, 2919, 1, 0, 0, 0, 2966, 2922, 1, 0, 0, 0, 2966, 2926, 1, 0, 0, 0, 2966, 2927, 1, 0, 0, 0, 2966, 2932, 1, 0, 0, 0, 2966, 2943, 1, 0, 0, 0, 2966, 2946, 1, 0, 0, 0, 2966, 2952, 1, 0, 0, 0, 2966, 2958, 1, 0, 0, 0, 2966, 2963, 1, 0, 0, 0, 2966, 2965, 1, 0, 0, 0, 2967, 147, 1, 0, 0, 0, 2968, 2969, 5, 6, 0, 0, 2969, 2970, 5, 130, 0, 0, 2970, 2971, 5, 866, 0, 0, 2971, 2976, 3, 116, 58, 0, 2972, 2973, 5, 868, 0, 0, 2973, 2975, 3, 116, 58, 0, 2974, 2972, 1, 0, 0, 0, 2975, 2978, 1, 0, 0, 0, 2976, 2974, 1, 0, 0, 0, 2976, 2977, 1, 0, 0, 0, 2977, 2979, 1, 0, 0, 0, 2978, 2976, 1, 0, 0, 0, 2979, 2980, 5, 867, 0, 0, 2980, 3067, 1, 0, 0, 0, 2981, 2982, 5, 51, 0, 0, 2982, 2983, 5, 130, 0, 0, 2983, 3067, 3, 686, 343, 0, 2984, 2985, 5, 369, 0, 0, 2985, 2988, 5, 130, 0, 0, 2986, 2989, 3, 686, 343, 0, 2987, 2989, 5, 7, 0, 0, 2988, 2986, 1, 0, 0, 0, 2988, 2987, 1, 0, 0, 0, 2989, 2990, 1, 0, 0, 0, 2990, 3067, 5, 658, 0, 0, 2991, 2992, 5, 425, 0, 0, 2992, 2995, 5, 130, 0, 0, 2993, 2996, 3, 686, 343, 0, 2994, 2996, 5, 7, 0, 0, 2995, 2993, 1, 0, 0, 0, 2995, 2994, 1, 0, 0, 0, 2996, 2997, 1, 0, 0, 0, 2997, 3067, 5, 658, 0, 0, 2998, 2999, 5, 668, 0, 0, 2999, 3002, 5, 130, 0, 0, 3000, 3003, 3, 686, 343, 0, 3001, 3003, 5, 7, 0, 0, 3002, 3000, 1, 0, 0, 0, 3002, 3001, 1, 0, 0, 0, 3003, 3067, 1, 0, 0, 0, 3004, 3005, 5, 335, 0, 0, 3005, 3006, 5, 130, 0, 0, 3006, 3067, 3, 730, 365, 0, 3007, 3008, 5, 561, 0, 0, 3008, 3009, 5, 130, 0, 0, 3009, 3010, 3, 686, 343, 0, 3010, 3011, 5, 88, 0, 0, 3011, 3012, 5, 866, 0, 0, 3012, 3017, 3, 116, 58, 0, 3013, 3014, 5, 868, 0, 0, 3014, 3016, 3, 116, 58, 0, 3015, 3013, 1, 0, 0, 0, 3016, 3019, 1, 0, 0, 0, 3017, 3015, 1, 0, 0, 0, 3017, 3018, 1, 0, 0, 0, 3018, 3020, 1, 0, 0, 0, 3019, 3017, 1, 0, 0, 0, 3020, 3021, 5, 867, 0, 0, 3021, 3067, 1, 0, 0, 0, 3022, 3023, 5, 388, 0, 0, 3023, 3024, 5, 130, 0, 0, 3024, 3025, 3, 688, 344, 0, 3025, 3026, 5, 194, 0, 0, 3026, 3027, 5, 173, 0, 0, 3027, 3030, 3, 662, 331, 0, 3028, 3029, 7, 42, 0, 0, 3029, 3031, 5, 681, 0, 0, 3030, 3028, 1, 0, 0, 0, 3030, 3031, 1, 0, 0, 0, 3031, 3067, 1, 0, 0, 0, 3032, 3033, 5, 10, 0, 0, 3033, 3036, 5, 130, 0, 0, 3034, 3037, 3, 686, 343, 0, 3035, 3037, 5, 7, 0, 0, 3036, 3034, 1, 0, 0, 0, 3036, 3035, 1, 0, 0, 0, 3037, 3067, 1, 0, 0, 0, 3038, 3039, 5, 27, 0, 0, 3039, 3042, 5, 130, 0, 0, 3040, 3043, 3, 686, 343, 0, 3041, 3043, 5, 7, 0, 0, 3042, 3040, 1, 0, 0, 0, 3042, 3041, 1, 0, 0, 0, 3043, 3067, 1, 0, 0, 0, 3044, 3045, 5, 120, 0, 0, 3045, 3048, 5, 130, 0, 0, 3046, 3049, 3, 686, 343, 0, 3047, 3049, 5, 7, 0, 0, 3048, 3046, 1, 0, 0, 0, 3048, 3047, 1, 0, 0, 0, 3049, 3067, 1, 0, 0, 0, 3050, 3051, 5, 550, 0, 0, 3051, 3054, 5, 130, 0, 0, 3052, 3055, 3, 686, 343, 0, 3053, 3055, 5, 7, 0, 0, 3054, 3052, 1, 0, 0, 0, 3054, 3053, 1, 0, 0, 0, 3055, 3067, 1, 0, 0, 0, 3056, 3057, 5, 562, 0, 0, 3057, 3060, 5, 130, 0, 0, 3058, 3061, 3, 686, 343, 0, 3059, 3061, 5, 7, 0, 0, 3060, 3058, 1, 0, 0, 0, 3060, 3059, 1, 0, 0, 0, 3061, 3067, 1, 0, 0, 0, 3062, 3063, 5, 560, 0, 0, 3063, 3067, 5, 527, 0, 0, 3064, 3065, 5, 677, 0, 0, 3065, 3067, 5, 527, 0, 0, 3066, 2968, 1, 0, 0, 0, 3066, 2981, 1, 0, 0, 0, 3066, 2984, 1, 0, 0, 0, 3066, 2991, 1, 0, 0, 0, 3066, 2998, 1, 0, 0, 0, 3066, 3004, 1, 0, 0, 0, 3066, 3007, 1, 0, 0, 0, 3066, 3022, 1, 0, 0, 0, 3066, 3032, 1, 0, 0, 0, 3066, 3038, 1, 0, 0, 0, 3066, 3044, 1, 0, 0, 0, 3066, 3050, 1, 0, 0, 0, 3066, 3056, 1, 0, 0, 0, 3066, 3062, 1, 0, 0, 0, 3066, 3064, 1, 0, 0, 0, 3067, 149, 1, 0, 0, 0, 3068, 3069, 5, 51, 0, 0, 3069, 3071, 7, 0, 0, 0, 3070, 3072, 3, 776, 388, 0, 3071, 3070, 1, 0, 0, 0, 3071, 3072, 1, 0, 0, 0, 3072, 3073, 1, 0, 0, 0, 3073, 3074, 3, 638, 319, 0, 3074, 151, 1, 0, 0, 0, 3075, 3076, 5, 51, 0, 0, 3076, 3078, 5, 385, 0, 0, 3077, 3079, 3, 776, 388, 0, 3078, 3077, 1, 0, 0, 0, 3078, 3079, 1, 0, 0, 0, 3079, 3080, 1, 0, 0, 0, 3080, 3081, 3, 718, 359, 0, 3081, 153, 1, 0, 0, 0, 3082, 3083, 5, 51, 0, 0, 3083, 3085, 5, 82, 0, 0, 3084, 3086, 7, 1, 0, 0, 3085, 3084, 1, 0, 0, 0, 3085, 3086, 1, 0, 0, 0, 3086, 3087, 1, 0, 0, 0, 3087, 3088, 3, 652, 326, 0, 3088, 3089, 5, 119, 0, 0, 3089, 3102, 3, 662, 331, 0, 3090, 3092, 5, 308, 0, 0, 3091, 3093, 5, 857, 0, 0, 3092, 3091, 1, 0, 0, 0, 3092, 3093, 1, 0, 0, 0, 3093, 3094, 1, 0, 0, 0, 3094, 3101, 7, 3, 0, 0, 3095, 3097, 5, 104, 0, 0, 3096, 3098, 5, 857, 0, 0, 3097, 3096, 1, 0, 0, 0, 3097, 3098, 1, 0, 0, 0, 3098, 3099, 1, 0, 0, 0, 3099, 3101, 7, 4, 0, 0, 3100, 3090, 1, 0, 0, 0, 3100, 3095, 1, 0, 0, 0, 3101, 3104, 1, 0, 0, 0, 3102, 3100, 1, 0, 0, 0, 3102, 3103, 1, 0, 0, 0, 3103, 155, 1, 0, 0, 0, 3104, 3102, 1, 0, 0, 0, 3105, 3106, 5, 51, 0, 0, 3106, 3107, 5, 451, 0, 0, 3107, 3108, 5, 74, 0, 0, 3108, 3109, 3, 722, 361, 0, 3109, 3111, 5, 380, 0, 0, 3110, 3112, 5, 857, 0, 0, 3111, 3110, 1, 0, 0, 0, 3111, 3112, 1, 0, 0, 0, 3112, 3113, 1, 0, 0, 0, 3113, 3114, 3, 708, 354, 0, 3114, 157, 1, 0, 0, 0, 3115, 3116, 5, 51, 0, 0, 3116, 3118, 5, 132, 0, 0, 3117, 3119, 3, 776, 388, 0, 3118, 3117, 1, 0, 0, 0, 3118, 3119, 1, 0, 0, 0, 3119, 3120, 1, 0, 0, 0, 3120, 3121, 3, 718, 359, 0, 3121, 159, 1, 0, 0, 0, 3122, 3123, 5, 51, 0, 0, 3123, 3125, 5, 409, 0, 0, 3124, 3126, 3, 776, 388, 0, 3125, 3124, 1, 0, 0, 0, 3125, 3126, 1, 0, 0, 0, 3126, 3127, 1, 0, 0, 0, 3127, 3128, 3, 642, 321, 0, 3128, 161, 1, 0, 0, 0, 3129, 3130, 5, 51, 0, 0, 3130, 3132, 5, 592, 0, 0, 3131, 3133, 3, 776, 388, 0, 3132, 3131, 1, 0, 0, 0, 3132, 3133, 1, 0, 0, 0, 3133, 3134, 1, 0, 0, 0, 3134, 3135, 3, 722, 361, 0, 3135, 163, 1, 0, 0, 0, 3136, 3137, 5, 51, 0, 0, 3137, 3138, 5, 161, 0, 0, 3138, 3139, 5, 137, 0, 0, 3139, 3141, 5, 835, 0, 0, 3140, 3142, 3, 776, 388, 0, 3141, 3140, 1, 0, 0, 0, 3141, 3142, 1, 0, 0, 0, 3142, 3143, 1, 0, 0, 0, 3143, 3144, 5, 883, 0, 0, 3144, 165, 1, 0, 0, 0, 3145, 3147, 5, 51, 0, 0, 3146, 3148, 5, 660, 0, 0, 3147, 3146, 1, 0, 0, 0, 3147, 3148, 1, 0, 0, 0, 3148, 3149, 1, 0, 0, 0, 3149, 3151, 5, 173, 0, 0, 3150, 3152, 3, 776, 388, 0, 3151, 3150, 1, 0, 0, 0, 3151, 3152, 1, 0, 0, 0, 3152, 3153, 1, 0, 0, 0, 3153, 3155, 3, 660, 330, 0, 3154, 3156, 7, 43, 0, 0, 3155, 3154, 1, 0, 0, 0, 3155, 3156, 1, 0, 0, 0, 3156, 167, 1, 0, 0, 0, 3157, 3159, 5, 51, 0, 0, 3158, 3160, 5, 180, 0, 0, 3159, 3158, 1, 0, 0, 0, 3159, 3160, 1, 0, 0, 0, 3160, 3161, 1, 0, 0, 0, 3161, 3162, 5, 658, 0, 0, 3162, 3168, 3, 682, 341, 0, 3163, 3165, 5, 380, 0, 0, 3164, 3166, 5, 857, 0, 0, 3165, 3164, 1, 0, 0, 0, 3165, 3166, 1, 0, 0, 0, 3166, 3167, 1, 0, 0, 0, 3167, 3169, 3, 708, 354, 0, 3168, 3163, 1, 0, 0, 0, 3168, 3169, 1, 0, 0, 0, 3169, 169, 1, 0, 0, 0, 3170, 3171, 5, 51, 0, 0, 3171, 3173, 5, 178, 0, 0, 3172, 3174, 3, 776, 388, 0, 3173, 3172, 1, 0, 0, 0, 3173, 3174, 1, 0, 0, 0, 3174, 3175, 1, 0, 0, 0, 3175, 3176, 3, 718, 359, 0, 3176, 171, 1, 0, 0, 0, 3177, 3178, 5, 51, 0, 0, 3178, 3180, 5, 684, 0, 0, 3179, 3181, 3, 776, 388, 0, 3180, 3179, 1, 0, 0, 0, 3180, 3181, 1, 0, 0, 0, 3181, 3182, 1, 0, 0, 0, 3182, 3187, 3, 646, 323, 0, 3183, 3184, 5, 868, 0, 0, 3184, 3186, 3, 646, 323, 0, 3185, 3183, 1, 0, 0, 0, 3186, 3189, 1, 0, 0, 0, 3187, 3185, 1, 0, 0, 0, 3187, 3188, 1, 0, 0, 0, 3188, 3191, 1, 0, 0, 0, 3189, 3187, 1, 0, 0, 0, 3190, 3192, 7, 43, 0, 0, 3191, 3190, 1, 0, 0, 0, 3191, 3192, 1, 0, 0, 0, 3192, 173, 1, 0, 0, 0, 3193, 3194, 5, 51, 0, 0, 3194, 3196, 5, 582, 0, 0, 3195, 3197, 3, 776, 388, 0, 3196, 3195, 1, 0, 0, 0, 3196, 3197, 1, 0, 0, 0, 3197, 3198, 1, 0, 0, 0, 3198, 3199, 3, 664, 332, 0, 3199, 175, 1, 0, 0, 0, 3200, 3201, 5, 155, 0, 0, 3201, 3202, 5, 42, 0, 0, 3202, 3206, 5, 582, 0, 0, 3203, 3207, 5, 505, 0, 0, 3204, 3207, 5, 7, 0, 0, 3205, 3207, 3, 664, 332, 0, 3206, 3203, 1, 0, 0, 0, 3206, 3204, 1, 0, 0, 0, 3206, 3205, 1, 0, 0, 0, 3207, 3208, 1, 0, 0, 0, 3208, 3209, 5, 176, 0, 0, 3209, 3214, 3, 666, 333, 0, 3210, 3211, 5, 868, 0, 0, 3211, 3213, 3, 666, 333, 0, 3212, 3210, 1, 0, 0, 0, 3213, 3216, 1, 0, 0, 0, 3214, 3212, 1, 0, 0, 0, 3214, 3215, 1, 0, 0, 0, 3215, 3221, 1, 0, 0, 0, 3216, 3214, 1, 0, 0, 0, 3217, 3218, 5, 155, 0, 0, 3218, 3219, 5, 582, 0, 0, 3219, 3221, 3, 478, 239, 0, 3220, 3200, 1, 0, 0, 0, 3220, 3217, 1, 0, 0, 0, 3221, 177, 1, 0, 0, 0, 3222, 3223, 5, 141, 0, 0, 3223, 3224, 5, 173, 0, 0, 3224, 3229, 3, 180, 90, 0, 3225, 3226, 5, 868, 0, 0, 3226, 3228, 3, 180, 90, 0, 3227, 3225, 1, 0, 0, 0, 3228, 3231, 1, 0, 0, 0, 3229, 3227, 1, 0, 0, 0, 3229, 3230, 1, 0, 0, 0, 3230, 179, 1, 0, 0, 0, 3231, 3229, 1, 0, 0, 0, 3232, 3233, 3, 662, 331, 0, 3233, 3234, 5, 176, 0, 0, 3234, 3235, 3, 658, 329, 0, 3235, 181, 1, 0, 0, 0, 3236, 3238, 5, 668, 0, 0, 3237, 3239, 5, 173, 0, 0, 3238, 3237, 1, 0, 0, 0, 3238, 3239, 1, 0, 0, 0, 3239, 3240, 1, 0, 0, 0, 3240, 3241, 3, 662, 331, 0, 3241, 183, 1, 0, 0, 0, 3242, 3243, 5, 21, 0, 0, 3243, 3250, 3, 718, 359, 0, 3244, 3247, 5, 866, 0, 0, 3245, 3248, 3, 766, 383, 0, 3246, 3248, 3, 758, 379, 0, 3247, 3245, 1, 0, 0, 0, 3247, 3246, 1, 0, 0, 0, 3247, 3248, 1, 0, 0, 0, 3248, 3249, 1, 0, 0, 0, 3249, 3251, 5, 867, 0, 0, 3250, 3244, 1, 0, 0, 0, 3250, 3251, 1, 0, 0, 0, 3251, 185, 1, 0, 0, 0, 3252, 3255, 3, 240, 120, 0, 3253, 3255, 3, 242, 121, 0, 3254, 3252, 1, 0, 0, 0, 3254, 3253, 1, 0, 0, 0, 3255, 187, 1, 0, 0, 0, 3256, 3257, 5, 371, 0, 0, 3257, 3258, 3, 758, 379, 0, 3258, 189, 1, 0, 0, 0, 3259, 3264, 3, 244, 122, 0, 3260, 3264, 3, 246, 123, 0, 3261, 3264, 3, 248, 124, 0, 3262, 3264, 3, 250, 125, 0, 3263, 3259, 1, 0, 0, 0, 3263, 3260, 1, 0, 0, 0, 3263, 3261, 1, 0, 0, 0, 3263, 3262, 1, 0, 0, 0, 3264, 191, 1, 0, 0, 0, 3265, 3267, 5, 86, 0, 0, 3266, 3268, 7, 44, 0, 0, 3267, 3266, 1, 0, 0, 0, 3267, 3268, 1, 0, 0, 0, 3268, 3270, 1, 0, 0, 0, 3269, 3271, 5, 79, 0, 0, 3270, 3269, 1, 0, 0, 0, 3270, 3271, 1, 0, 0, 0, 3271, 3273, 1, 0, 0, 0, 3272, 3274, 5, 88, 0, 0, 3273, 3272, 1, 0, 0, 0, 3273, 3274, 1, 0, 0, 0, 3274, 3275, 1, 0, 0, 0, 3275, 3282, 3, 662, 331, 0, 3276, 3277, 5, 130, 0, 0, 3277, 3279, 5, 866, 0, 0, 3278, 3280, 3, 686, 343, 0, 3279, 3278, 1, 0, 0, 0, 3279, 3280, 1, 0, 0, 0, 3280, 3281, 1, 0, 0, 0, 3281, 3283, 5, 867, 0, 0, 3282, 3276, 1, 0, 0, 0, 3282, 3283, 1, 0, 0, 0, 3283, 3295, 1, 0, 0, 0, 3284, 3286, 3, 270, 135, 0, 3285, 3284, 1, 0, 0, 0, 3285, 3286, 1, 0, 0, 0, 3286, 3289, 1, 0, 0, 0, 3287, 3290, 3, 760, 380, 0, 3288, 3290, 3, 196, 98, 0, 3289, 3287, 1, 0, 0, 0, 3289, 3288, 1, 0, 0, 0, 3289, 3290, 1, 0, 0, 0, 3290, 3292, 1, 0, 0, 0, 3291, 3293, 3, 194, 97, 0, 3292, 3291, 1, 0, 0, 0, 3292, 3293, 1, 0, 0, 0, 3293, 3296, 1, 0, 0, 0, 3294, 3296, 3, 232, 116, 0, 3295, 3285, 1, 0, 0, 0, 3295, 3294, 1, 0, 0, 0, 3296, 3298, 1, 0, 0, 0, 3297, 3299, 3, 194, 97, 0, 3298, 3297, 1, 0, 0, 0, 3298, 3299, 1, 0, 0, 0, 3299, 3312, 1, 0, 0, 0, 3300, 3301, 5, 119, 0, 0, 3301, 3302, 5, 373, 0, 0, 3302, 3303, 5, 92, 0, 0, 3303, 3304, 5, 185, 0, 0, 3304, 3309, 3, 234, 117, 0, 3305, 3306, 5, 868, 0, 0, 3306, 3308, 3, 234, 117, 0, 3307, 3305, 1, 0, 0, 0, 3308, 3311, 1, 0, 0, 0, 3309, 3307, 1, 0, 0, 0, 3309, 3310, 1, 0, 0, 0, 3310, 3313, 1, 0, 0, 0, 3311, 3309, 1, 0, 0, 0, 3312, 3300, 1, 0, 0, 0, 3312, 3313, 1, 0, 0, 0, 3313, 193, 1, 0, 0, 0, 3314, 3315, 5, 13, 0, 0, 3315, 3317, 3, 722, 361, 0, 3316, 3318, 3, 270, 135, 0, 3317, 3316, 1, 0, 0, 0, 3317, 3318, 1, 0, 0, 0, 3318, 195, 1, 0, 0, 0, 3319, 3324, 3, 210, 105, 0, 3320, 3321, 5, 173, 0, 0, 3321, 3324, 3, 662, 331, 0, 3322, 3324, 3, 230, 115, 0, 3323, 3319, 1, 0, 0, 0, 3323, 3320, 1, 0, 0, 0, 3323, 3322, 1, 0, 0, 0, 3324, 197, 1, 0, 0, 0, 3325, 3331, 3, 200, 100, 0, 3326, 3328, 5, 828, 0, 0, 3327, 3329, 7, 45, 0, 0, 3328, 3327, 1, 0, 0, 0, 3328, 3329, 1, 0, 0, 0, 3329, 3330, 1, 0, 0, 0, 3330, 3332, 3, 200, 100, 0, 3331, 3326, 1, 0, 0, 0, 3332, 3333, 1, 0, 0, 0, 3333, 3331, 1, 0, 0, 0, 3333, 3334, 1, 0, 0, 0, 3334, 199, 1, 0, 0, 0, 3335, 3337, 5, 866, 0, 0, 3336, 3335, 1, 0, 0, 0, 3336, 3337, 1, 0, 0, 0, 3337, 3338, 1, 0, 0, 0, 3338, 3340, 3, 282, 141, 0, 3339, 3341, 5, 867, 0, 0, 3340, 3339, 1, 0, 0, 0, 3340, 3341, 1, 0, 0, 0, 3341, 201, 1, 0, 0, 0, 3342, 3343, 5, 103, 0, 0, 3343, 3345, 5, 360, 0, 0, 3344, 3346, 7, 46, 0, 0, 3345, 3344, 1, 0, 0, 0, 3345, 3346, 1, 0, 0, 0, 3346, 3348, 1, 0, 0, 0, 3347, 3349, 5, 450, 0, 0, 3348, 3347, 1, 0, 0, 0, 3348, 3349, 1, 0, 0, 0, 3349, 3350, 1, 0, 0, 0, 3350, 3351, 5, 83, 0, 0, 3351, 3353, 5, 882, 0, 0, 3352, 3354, 7, 7, 0, 0, 3353, 3352, 1, 0, 0, 0, 3353, 3354, 1, 0, 0, 0, 3354, 3355, 1, 0, 0, 0, 3355, 3356, 5, 88, 0, 0, 3356, 3357, 5, 173, 0, 0, 3357, 3363, 3, 662, 331, 0, 3358, 3359, 5, 130, 0, 0, 3359, 3360, 5, 866, 0, 0, 3360, 3361, 3, 686, 343, 0, 3361, 3362, 5, 867, 0, 0, 3362, 3364, 1, 0, 0, 0, 3363, 3358, 1, 0, 0, 0, 3363, 3364, 1, 0, 0, 0, 3364, 3368, 1, 0, 0, 0, 3365, 3366, 5, 26, 0, 0, 3366, 3367, 5, 155, 0, 0, 3367, 3369, 3, 704, 352, 0, 3368, 3365, 1, 0, 0, 0, 3368, 3369, 1, 0, 0, 0, 3369, 3376, 1, 0, 0, 0, 3370, 3372, 7, 47, 0, 0, 3371, 3373, 3, 314, 157, 0, 3372, 3371, 1, 0, 0, 0, 3373, 3374, 1, 0, 0, 0, 3374, 3372, 1, 0, 0, 0, 3374, 3375, 1, 0, 0, 0, 3375, 3377, 1, 0, 0, 0, 3376, 3370, 1, 0, 0, 0, 3376, 3377, 1, 0, 0, 0, 3377, 3384, 1, 0, 0, 0, 3378, 3380, 5, 102, 0, 0, 3379, 3381, 3, 316, 158, 0, 3380, 3379, 1, 0, 0, 0, 3381, 3382, 1, 0, 0, 0, 3382, 3380, 1, 0, 0, 0, 3382, 3383, 1, 0, 0, 0, 3383, 3385, 1, 0, 0, 0, 3384, 3378, 1, 0, 0, 0, 3384, 3385, 1, 0, 0, 0, 3385, 3390, 1, 0, 0, 0, 3386, 3387, 5, 79, 0, 0, 3387, 3388, 3, 730, 365, 0, 3388, 3389, 7, 48, 0, 0, 3389, 3391, 1, 0, 0, 0, 3390, 3386, 1, 0, 0, 0, 3390, 3391, 1, 0, 0, 0, 3391, 3403, 1, 0, 0, 0, 3392, 3393, 5, 866, 0, 0, 3393, 3398, 3, 236, 118, 0, 3394, 3395, 5, 868, 0, 0, 3395, 3397, 3, 236, 118, 0, 3396, 3394, 1, 0, 0, 0, 3397, 3400, 1, 0, 0, 0, 3398, 3396, 1, 0, 0, 0, 3398, 3399, 1, 0, 0, 0, 3399, 3401, 1, 0, 0, 0, 3400, 3398, 1, 0, 0, 0, 3401, 3402, 5, 867, 0, 0, 3402, 3404, 1, 0, 0, 0, 3403, 3392, 1, 0, 0, 0, 3403, 3404, 1, 0, 0, 0, 3404, 3414, 1, 0, 0, 0, 3405, 3406, 5, 155, 0, 0, 3406, 3411, 3, 234, 117, 0, 3407, 3408, 5, 868, 0, 0, 3408, 3410, 3, 234, 117, 0, 3409, 3407, 1, 0, 0, 0, 3410, 3413, 1, 0, 0, 0, 3411, 3409, 1, 0, 0, 0, 3411, 3412, 1, 0, 0, 0, 3412, 3415, 1, 0, 0, 0, 3413, 3411, 1, 0, 0, 0, 3414, 3405, 1, 0, 0, 0, 3414, 3415, 1, 0, 0, 0, 3415, 203, 1, 0, 0, 0, 3416, 3417, 5, 103, 0, 0, 3417, 3419, 5, 695, 0, 0, 3418, 3420, 7, 46, 0, 0, 3419, 3418, 1, 0, 0, 0, 3419, 3420, 1, 0, 0, 0, 3420, 3422, 1, 0, 0, 0, 3421, 3423, 5, 450, 0, 0, 3422, 3421, 1, 0, 0, 0, 3422, 3423, 1, 0, 0, 0, 3423, 3424, 1, 0, 0, 0, 3424, 3425, 5, 83, 0, 0, 3425, 3427, 5, 882, 0, 0, 3426, 3428, 7, 7, 0, 0, 3427, 3426, 1, 0, 0, 0, 3427, 3428, 1, 0, 0, 0, 3428, 3429, 1, 0, 0, 0, 3429, 3430, 5, 88, 0, 0, 3430, 3431, 5, 173, 0, 0, 3431, 3435, 3, 662, 331, 0, 3432, 3433, 5, 26, 0, 0, 3433, 3434, 5, 155, 0, 0, 3434, 3436, 3, 704, 352, 0, 3435, 3432, 1, 0, 0, 0, 3435, 3436, 1, 0, 0, 0, 3436, 3447, 1, 0, 0, 0, 3437, 3438, 5, 587, 0, 0, 3438, 3439, 5, 423, 0, 0, 3439, 3441, 5, 20, 0, 0, 3440, 3442, 5, 859, 0, 0, 3441, 3440, 1, 0, 0, 0, 3441, 3442, 1, 0, 0, 0, 3442, 3443, 1, 0, 0, 0, 3443, 3445, 5, 882, 0, 0, 3444, 3446, 5, 858, 0, 0, 3445, 3444, 1, 0, 0, 0, 3445, 3446, 1, 0, 0, 0, 3446, 3448, 1, 0, 0, 0, 3447, 3437, 1, 0, 0, 0, 3447, 3448, 1, 0, 0, 0, 3448, 3453, 1, 0, 0, 0, 3449, 3450, 5, 79, 0, 0, 3450, 3451, 3, 730, 365, 0, 3451, 3452, 7, 48, 0, 0, 3452, 3454, 1, 0, 0, 0, 3453, 3449, 1, 0, 0, 0, 3453, 3454, 1, 0, 0, 0, 3454, 3466, 1, 0, 0, 0, 3455, 3456, 5, 866, 0, 0, 3456, 3461, 3, 236, 118, 0, 3457, 3458, 5, 868, 0, 0, 3458, 3460, 3, 236, 118, 0, 3459, 3457, 1, 0, 0, 0, 3460, 3463, 1, 0, 0, 0, 3461, 3459, 1, 0, 0, 0, 3461, 3462, 1, 0, 0, 0, 3462, 3464, 1, 0, 0, 0, 3463, 3461, 1, 0, 0, 0, 3464, 3465, 5, 867, 0, 0, 3465, 3467, 1, 0, 0, 0, 3466, 3455, 1, 0, 0, 0, 3466, 3467, 1, 0, 0, 0, 3467, 3477, 1, 0, 0, 0, 3468, 3469, 5, 155, 0, 0, 3469, 3474, 3, 234, 117, 0, 3470, 3471, 5, 868, 0, 0, 3471, 3473, 3, 234, 117, 0, 3472, 3470, 1, 0, 0, 0, 3473, 3476, 1, 0, 0, 0, 3474, 3472, 1, 0, 0, 0, 3474, 3475, 1, 0, 0, 0, 3475, 3478, 1, 0, 0, 0, 3476, 3474, 1, 0, 0, 0, 3477, 3468, 1, 0, 0, 0, 3477, 3478, 1, 0, 0, 0, 3478, 205, 1, 0, 0, 0, 3479, 3480, 5, 866, 0, 0, 3480, 3482, 3, 224, 112, 0, 3481, 3483, 3, 258, 129, 0, 3482, 3481, 1, 0, 0, 0, 3482, 3483, 1, 0, 0, 0, 3483, 3485, 1, 0, 0, 0, 3484, 3486, 3, 328, 164, 0, 3485, 3484, 1, 0, 0, 0, 3485, 3486, 1, 0, 0, 0, 3486, 3487, 1, 0, 0, 0, 3487, 3489, 5, 867, 0, 0, 3488, 3490, 3, 258, 129, 0, 3489, 3488, 1, 0, 0, 0, 3489, 3490, 1, 0, 0, 0, 3490, 3492, 1, 0, 0, 0, 3491, 3493, 3, 328, 164, 0, 3492, 3491, 1, 0, 0, 0, 3492, 3493, 1, 0, 0, 0, 3493, 3495, 1, 0, 0, 0, 3494, 3496, 3, 312, 156, 0, 3495, 3494, 1, 0, 0, 0, 3495, 3496, 1, 0, 0, 0, 3496, 207, 1, 0, 0, 0, 3497, 3499, 5, 143, 0, 0, 3498, 3500, 7, 49, 0, 0, 3499, 3498, 1, 0, 0, 0, 3499, 3500, 1, 0, 0, 0, 3500, 3502, 1, 0, 0, 0, 3501, 3503, 5, 88, 0, 0, 3502, 3501, 1, 0, 0, 0, 3502, 3503, 1, 0, 0, 0, 3503, 3504, 1, 0, 0, 0, 3504, 3510, 3, 662, 331, 0, 3505, 3506, 5, 130, 0, 0, 3506, 3507, 5, 866, 0, 0, 3507, 3508, 3, 686, 343, 0, 3508, 3509, 5, 867, 0, 0, 3509, 3511, 1, 0, 0, 0, 3510, 3505, 1, 0, 0, 0, 3510, 3511, 1, 0, 0, 0, 3511, 3520, 1, 0, 0, 0, 3512, 3513, 5, 866, 0, 0, 3513, 3514, 3, 670, 335, 0, 3514, 3515, 5, 867, 0, 0, 3515, 3517, 1, 0, 0, 0, 3516, 3512, 1, 0, 0, 0, 3516, 3517, 1, 0, 0, 0, 3517, 3518, 1, 0, 0, 0, 3518, 3521, 3, 228, 114, 0, 3519, 3521, 3, 232, 116, 0, 3520, 3516, 1, 0, 0, 0, 3520, 3519, 1, 0, 0, 0, 3521, 209, 1, 0, 0, 0, 3522, 3526, 3, 282, 141, 0, 3523, 3525, 3, 284, 142, 0, 3524, 3523, 1, 0, 0, 0, 3525, 3528, 1, 0, 0, 0, 3526, 3524, 1, 0, 0, 0, 3526, 3527, 1, 0, 0, 0, 3527, 3537, 1, 0, 0, 0, 3528, 3526, 1, 0, 0, 0, 3529, 3531, 5, 181, 0, 0, 3530, 3532, 7, 45, 0, 0, 3531, 3530, 1, 0, 0, 0, 3531, 3532, 1, 0, 0, 0, 3532, 3535, 1, 0, 0, 0, 3533, 3536, 3, 282, 141, 0, 3534, 3536, 3, 280, 140, 0, 3535, 3533, 1, 0, 0, 0, 3535, 3534, 1, 0, 0, 0, 3536, 3538, 1, 0, 0, 0, 3537, 3529, 1, 0, 0, 0, 3537, 3538, 1, 0, 0, 0, 3538, 3543, 1, 0, 0, 0, 3539, 3540, 5, 868, 0, 0, 3540, 3542, 3, 286, 143, 0, 3541, 3539, 1, 0, 0, 0, 3542, 3545, 1, 0, 0, 0, 3543, 3541, 1, 0, 0, 0, 3543, 3544, 1, 0, 0, 0, 3544, 3547, 1, 0, 0, 0, 3545, 3543, 1, 0, 0, 0, 3546, 3548, 3, 258, 129, 0, 3547, 3546, 1, 0, 0, 0, 3547, 3548, 1, 0, 0, 0, 3548, 3550, 1, 0, 0, 0, 3549, 3551, 3, 328, 164, 0, 3550, 3549, 1, 0, 0, 0, 3550, 3551, 1, 0, 0, 0, 3551, 3553, 1, 0, 0, 0, 3552, 3554, 3, 238, 119, 0, 3553, 3552, 1, 0, 0, 0, 3553, 3554, 1, 0, 0, 0, 3554, 3556, 1, 0, 0, 0, 3555, 3557, 3, 312, 156, 0, 3556, 3555, 1, 0, 0, 0, 3556, 3557, 1, 0, 0, 0, 3557, 3582, 1, 0, 0, 0, 3558, 3562, 3, 280, 140, 0, 3559, 3561, 3, 284, 142, 0, 3560, 3559, 1, 0, 0, 0, 3561, 3564, 1, 0, 0, 0, 3562, 3560, 1, 0, 0, 0, 3562, 3563, 1, 0, 0, 0, 3563, 3570, 1, 0, 0, 0, 3564, 3562, 1, 0, 0, 0, 3565, 3567, 5, 181, 0, 0, 3566, 3568, 7, 45, 0, 0, 3567, 3566, 1, 0, 0, 0, 3567, 3568, 1, 0, 0, 0, 3568, 3569, 1, 0, 0, 0, 3569, 3571, 3, 280, 140, 0, 3570, 3565, 1, 0, 0, 0, 3570, 3571, 1, 0, 0, 0, 3571, 3573, 1, 0, 0, 0, 3572, 3574, 3, 258, 129, 0, 3573, 3572, 1, 0, 0, 0, 3573, 3574, 1, 0, 0, 0, 3574, 3576, 1, 0, 0, 0, 3575, 3577, 3, 328, 164, 0, 3576, 3575, 1, 0, 0, 0, 3576, 3577, 1, 0, 0, 0, 3577, 3579, 1, 0, 0, 0, 3578, 3580, 3, 238, 119, 0, 3579, 3578, 1, 0, 0, 0, 3579, 3580, 1, 0, 0, 0, 3580, 3582, 1, 0, 0, 0, 3581, 3522, 1, 0, 0, 0, 3581, 3558, 1, 0, 0, 0, 3582, 211, 1, 0, 0, 0, 3583, 3585, 3, 50, 25, 0, 3584, 3583, 1, 0, 0, 0, 3584, 3585, 1, 0, 0, 0, 3585, 3586, 1, 0, 0, 0, 3586, 3588, 3, 214, 107, 0, 3587, 3589, 3, 258, 129, 0, 3588, 3587, 1, 0, 0, 0, 3588, 3589, 1, 0, 0, 0, 3589, 3591, 1, 0, 0, 0, 3590, 3592, 3, 328, 164, 0, 3591, 3590, 1, 0, 0, 0, 3591, 3592, 1, 0, 0, 0, 3592, 3594, 1, 0, 0, 0, 3593, 3595, 3, 312, 156, 0, 3594, 3593, 1, 0, 0, 0, 3594, 3595, 1, 0, 0, 0, 3595, 213, 1, 0, 0, 0, 3596, 3597, 6, 107, -1, 0, 3597, 3598, 3, 216, 108, 0, 3598, 3613, 1, 0, 0, 0, 3599, 3600, 10, 2, 0, 0, 3600, 3602, 5, 181, 0, 0, 3601, 3603, 7, 45, 0, 0, 3602, 3601, 1, 0, 0, 0, 3602, 3603, 1, 0, 0, 0, 3603, 3604, 1, 0, 0, 0, 3604, 3612, 3, 216, 108, 0, 3605, 3606, 10, 1, 0, 0, 3606, 3608, 5, 59, 0, 0, 3607, 3609, 7, 45, 0, 0, 3608, 3607, 1, 0, 0, 0, 3608, 3609, 1, 0, 0, 0, 3609, 3610, 1, 0, 0, 0, 3610, 3612, 3, 216, 108, 0, 3611, 3599, 1, 0, 0, 0, 3611, 3605, 1, 0, 0, 0, 3612, 3615, 1, 0, 0, 0, 3613, 3611, 1, 0, 0, 0, 3613, 3614, 1, 0, 0, 0, 3614, 215, 1, 0, 0, 0, 3615, 3613, 1, 0, 0, 0, 3616, 3617, 6, 108, -1, 0, 3617, 3618, 3, 218, 109, 0, 3618, 3627, 1, 0, 0, 0, 3619, 3620, 10, 1, 0, 0, 3620, 3622, 5, 828, 0, 0, 3621, 3623, 7, 45, 0, 0, 3622, 3621, 1, 0, 0, 0, 3622, 3623, 1, 0, 0, 0, 3623, 3624, 1, 0, 0, 0, 3624, 3626, 3, 218, 109, 0, 3625, 3619, 1, 0, 0, 0, 3626, 3629, 1, 0, 0, 0, 3627, 3625, 1, 0, 0, 0, 3627, 3628, 1, 0, 0, 0, 3628, 217, 1, 0, 0, 0, 3629, 3627, 1, 0, 0, 0, 3630, 3645, 3, 226, 113, 0, 3631, 3632, 5, 866, 0, 0, 3632, 3634, 3, 214, 107, 0, 3633, 3635, 3, 258, 129, 0, 3634, 3633, 1, 0, 0, 0, 3634, 3635, 1, 0, 0, 0, 3635, 3637, 1, 0, 0, 0, 3636, 3638, 3, 328, 164, 0, 3637, 3636, 1, 0, 0, 0, 3637, 3638, 1, 0, 0, 0, 3638, 3640, 1, 0, 0, 0, 3639, 3641, 3, 312, 156, 0, 3640, 3639, 1, 0, 0, 0, 3640, 3641, 1, 0, 0, 0, 3641, 3642, 1, 0, 0, 0, 3642, 3643, 5, 867, 0, 0, 3643, 3645, 1, 0, 0, 0, 3644, 3630, 1, 0, 0, 0, 3644, 3631, 1, 0, 0, 0, 3645, 219, 1, 0, 0, 0, 3646, 3649, 3, 254, 127, 0, 3647, 3649, 3, 256, 128, 0, 3648, 3646, 1, 0, 0, 0, 3648, 3647, 1, 0, 0, 0, 3649, 221, 1, 0, 0, 0, 3650, 3654, 3, 230, 115, 0, 3651, 3652, 5, 125, 0, 0, 3652, 3653, 5, 20, 0, 0, 3653, 3655, 3, 690, 345, 0, 3654, 3651, 1, 0, 0, 0, 3654, 3655, 1, 0, 0, 0, 3655, 3658, 1, 0, 0, 0, 3656, 3657, 5, 100, 0, 0, 3657, 3659, 3, 330, 165, 0, 3658, 3656, 1, 0, 0, 0, 3658, 3659, 1, 0, 0, 0, 3659, 223, 1, 0, 0, 0, 3660, 3665, 3, 226, 113, 0, 3661, 3662, 7, 50, 0, 0, 3662, 3664, 3, 226, 113, 0, 3663, 3661, 1, 0, 0, 0, 3664, 3667, 1, 0, 0, 0, 3665, 3663, 1, 0, 0, 0, 3665, 3666, 1, 0, 0, 0, 3666, 3669, 1, 0, 0, 0, 3667, 3665, 1, 0, 0, 0, 3668, 3670, 3, 258, 129, 0, 3669, 3668, 1, 0, 0, 0, 3669, 3670, 1, 0, 0, 0, 3670, 3672, 1, 0, 0, 0, 3671, 3673, 3, 328, 164, 0, 3672, 3671, 1, 0, 0, 0, 3672, 3673, 1, 0, 0, 0, 3673, 3675, 1, 0, 0, 0, 3674, 3676, 3, 312, 156, 0, 3675, 3674, 1, 0, 0, 0, 3675, 3676, 1, 0, 0, 0, 3676, 225, 1, 0, 0, 0, 3677, 3681, 3, 210, 105, 0, 3678, 3681, 3, 628, 314, 0, 3679, 3681, 3, 222, 111, 0, 3680, 3677, 1, 0, 0, 0, 3680, 3678, 1, 0, 0, 0, 3680, 3679, 1, 0, 0, 0, 3681, 227, 1, 0, 0, 0, 3682, 3688, 3, 210, 105, 0, 3683, 3684, 5, 173, 0, 0, 3684, 3688, 3, 662, 331, 0, 3685, 3688, 3, 760, 380, 0, 3686, 3688, 3, 230, 115, 0, 3687, 3682, 1, 0, 0, 0, 3687, 3683, 1, 0, 0, 0, 3687, 3685, 1, 0, 0, 0, 3687, 3686, 1, 0, 0, 0, 3688, 229, 1, 0, 0, 0, 3689, 3690, 5, 189, 0, 0, 3690, 3691, 5, 586, 0, 0, 3691, 3697, 3, 762, 381, 0, 3692, 3693, 5, 868, 0, 0, 3693, 3694, 5, 586, 0, 0, 3694, 3696, 3, 762, 381, 0, 3695, 3692, 1, 0, 0, 0, 3696, 3699, 1, 0, 0, 0, 3697, 3695, 1, 0, 0, 0, 3697, 3698, 1, 0, 0, 0, 3698, 231, 1, 0, 0, 0, 3699, 3697, 1, 0, 0, 0, 3700, 3701, 5, 155, 0, 0, 3701, 3706, 3, 234, 117, 0, 3702, 3703, 5, 868, 0, 0, 3703, 3705, 3, 234, 117, 0, 3704, 3702, 1, 0, 0, 0, 3705, 3708, 1, 0, 0, 0, 3706, 3704, 1, 0, 0, 0, 3706, 3707, 1, 0, 0, 0, 3707, 233, 1, 0, 0, 0, 3708, 3706, 1, 0, 0, 0, 3709, 3710, 3, 674, 337, 0, 3710, 3711, 5, 857, 0, 0, 3711, 3712, 3, 764, 382, 0, 3712, 235, 1, 0, 0, 0, 3713, 3716, 3, 722, 361, 0, 3714, 3716, 5, 892, 0, 0, 3715, 3713, 1, 0, 0, 0, 3715, 3714, 1, 0, 0, 0, 3716, 237, 1, 0, 0, 0, 3717, 3718, 5, 65, 0, 0, 3718, 3728, 7, 51, 0, 0, 3719, 3720, 5, 510, 0, 0, 3720, 3725, 3, 662, 331, 0, 3721, 3722, 5, 868, 0, 0, 3722, 3724, 3, 662, 331, 0, 3723, 3721, 1, 0, 0, 0, 3724, 3727, 1, 0, 0, 0, 3725, 3723, 1, 0, 0, 0, 3725, 3726, 1, 0, 0, 0, 3726, 3729, 1, 0, 0, 0, 3727, 3725, 1, 0, 0, 0, 3728, 3719, 1, 0, 0, 0, 3728, 3729, 1, 0, 0, 0, 3729, 3732, 1, 0, 0, 0, 3730, 3731, 7, 52, 0, 0, 3731, 3733, 5, 105, 0, 0, 3732, 3730, 1, 0, 0, 0, 3732, 3733, 1, 0, 0, 0, 3733, 3739, 1, 0, 0, 0, 3734, 3735, 5, 104, 0, 0, 3735, 3736, 5, 80, 0, 0, 3736, 3737, 5, 594, 0, 0, 3737, 3739, 5, 491, 0, 0, 3738, 3717, 1, 0, 0, 0, 3738, 3734, 1, 0, 0, 0, 3739, 239, 1, 0, 0, 0, 3740, 3742, 5, 44, 0, 0, 3741, 3743, 5, 107, 0, 0, 3742, 3741, 1, 0, 0, 0, 3742, 3743, 1, 0, 0, 0, 3743, 3745, 1, 0, 0, 0, 3744, 3746, 5, 549, 0, 0, 3745, 3744, 1, 0, 0, 0, 3745, 3746, 1, 0, 0, 0, 3746, 3748, 1, 0, 0, 0, 3747, 3749, 5, 79, 0, 0, 3748, 3747, 1, 0, 0, 0, 3748, 3749, 1, 0, 0, 0, 3749, 3750, 1, 0, 0, 0, 3750, 3751, 5, 68, 0, 0, 3751, 3756, 3, 662, 331, 0, 3752, 3754, 5, 13, 0, 0, 3753, 3752, 1, 0, 0, 0, 3753, 3754, 1, 0, 0, 0, 3754, 3755, 1, 0, 0, 0, 3755, 3757, 3, 722, 361, 0, 3756, 3753, 1, 0, 0, 0, 3756, 3757, 1, 0, 0, 0, 3757, 3763, 1, 0, 0, 0, 3758, 3759, 5, 130, 0, 0, 3759, 3760, 5, 866, 0, 0, 3760, 3761, 3, 686, 343, 0, 3761, 3762, 5, 867, 0, 0, 3762, 3764, 1, 0, 0, 0, 3763, 3758, 1, 0, 0, 0, 3763, 3764, 1, 0, 0, 0, 3764, 3767, 1, 0, 0, 0, 3765, 3766, 5, 192, 0, 0, 3766, 3768, 3, 822, 411, 0, 3767, 3765, 1, 0, 0, 0, 3767, 3768, 1, 0, 0, 0, 3768, 3770, 1, 0, 0, 0, 3769, 3771, 3, 258, 129, 0, 3770, 3769, 1, 0, 0, 0, 3770, 3771, 1, 0, 0, 0, 3771, 3774, 1, 0, 0, 0, 3772, 3773, 5, 100, 0, 0, 3773, 3775, 3, 330, 165, 0, 3774, 3772, 1, 0, 0, 0, 3774, 3775, 1, 0, 0, 0, 3775, 241, 1, 0, 0, 0, 3776, 3778, 5, 44, 0, 0, 3777, 3779, 5, 107, 0, 0, 3778, 3777, 1, 0, 0, 0, 3778, 3779, 1, 0, 0, 0, 3779, 3781, 1, 0, 0, 0, 3780, 3782, 5, 549, 0, 0, 3781, 3780, 1, 0, 0, 0, 3781, 3782, 1, 0, 0, 0, 3782, 3784, 1, 0, 0, 0, 3783, 3785, 5, 79, 0, 0, 3784, 3783, 1, 0, 0, 0, 3784, 3785, 1, 0, 0, 0, 3785, 3825, 1, 0, 0, 0, 3786, 3789, 3, 662, 331, 0, 3787, 3788, 5, 865, 0, 0, 3788, 3790, 5, 850, 0, 0, 3789, 3787, 1, 0, 0, 0, 3789, 3790, 1, 0, 0, 0, 3790, 3799, 1, 0, 0, 0, 3791, 3792, 5, 868, 0, 0, 3792, 3795, 3, 662, 331, 0, 3793, 3794, 5, 865, 0, 0, 3794, 3796, 5, 850, 0, 0, 3795, 3793, 1, 0, 0, 0, 3795, 3796, 1, 0, 0, 0, 3796, 3798, 1, 0, 0, 0, 3797, 3791, 1, 0, 0, 0, 3798, 3801, 1, 0, 0, 0, 3799, 3797, 1, 0, 0, 0, 3799, 3800, 1, 0, 0, 0, 3800, 3802, 1, 0, 0, 0, 3801, 3799, 1, 0, 0, 0, 3802, 3803, 5, 68, 0, 0, 3803, 3804, 3, 262, 131, 0, 3804, 3826, 1, 0, 0, 0, 3805, 3806, 5, 68, 0, 0, 3806, 3809, 3, 662, 331, 0, 3807, 3808, 5, 865, 0, 0, 3808, 3810, 5, 850, 0, 0, 3809, 3807, 1, 0, 0, 0, 3809, 3810, 1, 0, 0, 0, 3810, 3819, 1, 0, 0, 0, 3811, 3812, 5, 868, 0, 0, 3812, 3815, 3, 662, 331, 0, 3813, 3814, 5, 865, 0, 0, 3814, 3816, 5, 850, 0, 0, 3815, 3813, 1, 0, 0, 0, 3815, 3816, 1, 0, 0, 0, 3816, 3818, 1, 0, 0, 0, 3817, 3811, 1, 0, 0, 0, 3818, 3821, 1, 0, 0, 0, 3819, 3817, 1, 0, 0, 0, 3819, 3820, 1, 0, 0, 0, 3820, 3822, 1, 0, 0, 0, 3821, 3819, 1, 0, 0, 0, 3822, 3823, 5, 188, 0, 0, 3823, 3824, 3, 262, 131, 0, 3824, 3826, 1, 0, 0, 0, 3825, 3786, 1, 0, 0, 0, 3825, 3805, 1, 0, 0, 0, 3826, 3829, 1, 0, 0, 0, 3827, 3828, 5, 192, 0, 0, 3828, 3830, 3, 822, 411, 0, 3829, 3827, 1, 0, 0, 0, 3829, 3830, 1, 0, 0, 0, 3830, 243, 1, 0, 0, 0, 3831, 3832, 5, 417, 0, 0, 3832, 3833, 3, 662, 331, 0, 3833, 3838, 5, 516, 0, 0, 3834, 3836, 5, 13, 0, 0, 3835, 3834, 1, 0, 0, 0, 3835, 3836, 1, 0, 0, 0, 3836, 3837, 1, 0, 0, 0, 3837, 3839, 3, 722, 361, 0, 3838, 3835, 1, 0, 0, 0, 3838, 3839, 1, 0, 0, 0, 3839, 245, 1, 0, 0, 0, 3840, 3841, 5, 417, 0, 0, 3841, 3842, 3, 662, 331, 0, 3842, 3843, 5, 135, 0, 0, 3843, 3850, 3, 652, 326, 0, 3844, 3845, 3, 832, 416, 0, 3845, 3846, 5, 866, 0, 0, 3846, 3847, 3, 766, 383, 0, 3847, 3848, 5, 867, 0, 0, 3848, 3851, 1, 0, 0, 0, 3849, 3851, 7, 53, 0, 0, 3850, 3844, 1, 0, 0, 0, 3850, 3849, 1, 0, 0, 0, 3851, 3854, 1, 0, 0, 0, 3852, 3853, 5, 192, 0, 0, 3853, 3855, 3, 822, 411, 0, 3854, 3852, 1, 0, 0, 0, 3854, 3855, 1, 0, 0, 0, 3855, 3858, 1, 0, 0, 0, 3856, 3857, 5, 100, 0, 0, 3857, 3859, 3, 330, 165, 0, 3858, 3856, 1, 0, 0, 0, 3858, 3859, 1, 0, 0, 0, 3859, 247, 1, 0, 0, 0, 3860, 3861, 5, 417, 0, 0, 3861, 3862, 3, 662, 331, 0, 3862, 3863, 5, 135, 0, 0, 3863, 3866, 7, 54, 0, 0, 3864, 3865, 5, 192, 0, 0, 3865, 3867, 3, 822, 411, 0, 3866, 3864, 1, 0, 0, 0, 3866, 3867, 1, 0, 0, 0, 3867, 3870, 1, 0, 0, 0, 3868, 3869, 5, 100, 0, 0, 3869, 3871, 3, 330, 165, 0, 3870, 3868, 1, 0, 0, 0, 3870, 3871, 1, 0, 0, 0, 3871, 249, 1, 0, 0, 0, 3872, 3873, 5, 417, 0, 0, 3873, 3874, 3, 662, 331, 0, 3874, 3875, 5, 334, 0, 0, 3875, 251, 1, 0, 0, 0, 3876, 3877, 5, 425, 0, 0, 3877, 3878, 5, 173, 0, 0, 3878, 3879, 5, 68, 0, 0, 3879, 3884, 3, 734, 367, 0, 3880, 3881, 5, 868, 0, 0, 3881, 3883, 3, 734, 367, 0, 3882, 3880, 1, 0, 0, 0, 3883, 3886, 1, 0, 0, 0, 3884, 3882, 1, 0, 0, 0, 3884, 3885, 1, 0, 0, 0, 3885, 253, 1, 0, 0, 0, 3886, 3884, 1, 0, 0, 0, 3887, 3889, 5, 185, 0, 0, 3888, 3890, 5, 107, 0, 0, 3889, 3888, 1, 0, 0, 0, 3889, 3890, 1, 0, 0, 0, 3890, 3892, 1, 0, 0, 0, 3891, 3893, 5, 79, 0, 0, 3892, 3891, 1, 0, 0, 0, 3892, 3893, 1, 0, 0, 0, 3893, 3894, 1, 0, 0, 0, 3894, 3899, 3, 662, 331, 0, 3895, 3897, 5, 13, 0, 0, 3896, 3895, 1, 0, 0, 0, 3896, 3897, 1, 0, 0, 0, 3897, 3898, 1, 0, 0, 0, 3898, 3900, 3, 722, 361, 0, 3899, 3896, 1, 0, 0, 0, 3899, 3900, 1, 0, 0, 0, 3900, 3901, 1, 0, 0, 0, 3901, 3902, 5, 155, 0, 0, 3902, 3907, 3, 234, 117, 0, 3903, 3904, 5, 868, 0, 0, 3904, 3906, 3, 234, 117, 0, 3905, 3903, 1, 0, 0, 0, 3906, 3909, 1, 0, 0, 0, 3907, 3905, 1, 0, 0, 0, 3907, 3908, 1, 0, 0, 0, 3908, 3912, 1, 0, 0, 0, 3909, 3907, 1, 0, 0, 0, 3910, 3911, 5, 192, 0, 0, 3911, 3913, 3, 822, 411, 0, 3912, 3910, 1, 0, 0, 0, 3912, 3913, 1, 0, 0, 0, 3913, 3915, 1, 0, 0, 0, 3914, 3916, 3, 258, 129, 0, 3915, 3914, 1, 0, 0, 0, 3915, 3916, 1, 0, 0, 0, 3916, 3918, 1, 0, 0, 0, 3917, 3919, 3, 328, 164, 0, 3918, 3917, 1, 0, 0, 0, 3918, 3919, 1, 0, 0, 0, 3919, 255, 1, 0, 0, 0, 3920, 3922, 5, 185, 0, 0, 3921, 3923, 5, 107, 0, 0, 3922, 3921, 1, 0, 0, 0, 3922, 3923, 1, 0, 0, 0, 3923, 3925, 1, 0, 0, 0, 3924, 3926, 5, 79, 0, 0, 3925, 3924, 1, 0, 0, 0, 3925, 3926, 1, 0, 0, 0, 3926, 3927, 1, 0, 0, 0, 3927, 3928, 3, 262, 131, 0, 3928, 3929, 5, 155, 0, 0, 3929, 3934, 3, 234, 117, 0, 3930, 3931, 5, 868, 0, 0, 3931, 3933, 3, 234, 117, 0, 3932, 3930, 1, 0, 0, 0, 3933, 3936, 1, 0, 0, 0, 3934, 3932, 1, 0, 0, 0, 3934, 3935, 1, 0, 0, 0, 3935, 3939, 1, 0, 0, 0, 3936, 3934, 1, 0, 0, 0, 3937, 3938, 5, 192, 0, 0, 3938, 3940, 3, 822, 411, 0, 3939, 3937, 1, 0, 0, 0, 3939, 3940, 1, 0, 0, 0, 3940, 257, 1, 0, 0, 0, 3941, 3942, 5, 125, 0, 0, 3942, 3943, 5, 20, 0, 0, 3943, 3948, 3, 260, 130, 0, 3944, 3945, 5, 868, 0, 0, 3945, 3947, 3, 260, 130, 0, 3946, 3944, 1, 0, 0, 0, 3947, 3950, 1, 0, 0, 0, 3948, 3946, 1, 0, 0, 0, 3948, 3949, 1, 0, 0, 0, 3949, 259, 1, 0, 0, 0, 3950, 3948, 1, 0, 0, 0, 3951, 3953, 3, 822, 411, 0, 3952, 3954, 7, 55, 0, 0, 3953, 3952, 1, 0, 0, 0, 3953, 3954, 1, 0, 0, 0, 3954, 261, 1, 0, 0, 0, 3955, 3960, 3, 264, 132, 0, 3956, 3957, 5, 868, 0, 0, 3957, 3959, 3, 264, 132, 0, 3958, 3956, 1, 0, 0, 0, 3959, 3962, 1, 0, 0, 0, 3960, 3958, 1, 0, 0, 0, 3960, 3961, 1, 0, 0, 0, 3961, 263, 1, 0, 0, 0, 3962, 3960, 1, 0, 0, 0, 3963, 3967, 3, 266, 133, 0, 3964, 3966, 3, 276, 138, 0, 3965, 3964, 1, 0, 0, 0, 3966, 3969, 1, 0, 0, 0, 3967, 3965, 1, 0, 0, 0, 3967, 3968, 1, 0, 0, 0, 3968, 3982, 1, 0, 0, 0, 3969, 3967, 1, 0, 0, 0, 3970, 3971, 5, 866, 0, 0, 3971, 3975, 3, 266, 133, 0, 3972, 3974, 3, 276, 138, 0, 3973, 3972, 1, 0, 0, 0, 3974, 3977, 1, 0, 0, 0, 3975, 3973, 1, 0, 0, 0, 3975, 3976, 1, 0, 0, 0, 3976, 3978, 1, 0, 0, 0, 3977, 3975, 1, 0, 0, 0, 3978, 3979, 5, 867, 0, 0, 3979, 3982, 1, 0, 0, 0, 3980, 3982, 3, 288, 144, 0, 3981, 3963, 1, 0, 0, 0, 3981, 3970, 1, 0, 0, 0, 3981, 3980, 1, 0, 0, 0, 3982, 265, 1, 0, 0, 0, 3983, 3989, 3, 662, 331, 0, 3984, 3985, 5, 130, 0, 0, 3985, 3986, 5, 866, 0, 0, 3986, 3987, 3, 686, 343, 0, 3987, 3988, 5, 867, 0, 0, 3988, 3990, 1, 0, 0, 0, 3989, 3984, 1, 0, 0, 0, 3989, 3990, 1, 0, 0, 0, 3990, 3995, 1, 0, 0, 0, 3991, 3993, 5, 13, 0, 0, 3992, 3991, 1, 0, 0, 0, 3992, 3993, 1, 0, 0, 0, 3993, 3994, 1, 0, 0, 0, 3994, 3996, 3, 722, 361, 0, 3995, 3992, 1, 0, 0, 0, 3995, 3996, 1, 0, 0, 0, 3996, 4005, 1, 0, 0, 0, 3997, 4002, 3, 272, 136, 0, 3998, 3999, 5, 868, 0, 0, 3999, 4001, 3, 272, 136, 0, 4000, 3998, 1, 0, 0, 0, 4001, 4004, 1, 0, 0, 0, 4002, 4000, 1, 0, 0, 0, 4002, 4003, 1, 0, 0, 0, 4003, 4006, 1, 0, 0, 0, 4004, 4002, 1, 0, 0, 0, 4005, 3997, 1, 0, 0, 0, 4005, 4006, 1, 0, 0, 0, 4006, 4023, 1, 0, 0, 0, 4007, 4009, 5, 95, 0, 0, 4008, 4007, 1, 0, 0, 0, 4008, 4009, 1, 0, 0, 0, 4009, 4010, 1, 0, 0, 0, 4010, 4012, 3, 268, 134, 0, 4011, 4013, 5, 13, 0, 0, 4012, 4011, 1, 0, 0, 0, 4012, 4013, 1, 0, 0, 0, 4013, 4014, 1, 0, 0, 0, 4014, 4016, 3, 722, 361, 0, 4015, 4017, 3, 270, 135, 0, 4016, 4015, 1, 0, 0, 0, 4016, 4017, 1, 0, 0, 0, 4017, 4023, 1, 0, 0, 0, 4018, 4019, 5, 866, 0, 0, 4019, 4020, 3, 262, 131, 0, 4020, 4021, 5, 867, 0, 0, 4021, 4023, 1, 0, 0, 0, 4022, 3983, 1, 0, 0, 0, 4022, 4008, 1, 0, 0, 0, 4022, 4018, 1, 0, 0, 0, 4023, 267, 1, 0, 0, 0, 4024, 4030, 3, 210, 105, 0, 4025, 4026, 5, 866, 0, 0, 4026, 4027, 3, 210, 105, 0, 4027, 4028, 5, 867, 0, 0, 4028, 4030, 1, 0, 0, 0, 4029, 4024, 1, 0, 0, 0, 4029, 4025, 1, 0, 0, 0, 4030, 269, 1, 0, 0, 0, 4031, 4032, 5, 866, 0, 0, 4032, 4033, 3, 670, 335, 0, 4033, 4034, 5, 867, 0, 0, 4034, 271, 1, 0, 0, 0, 4035, 4036, 7, 56, 0, 0, 4036, 4039, 7, 19, 0, 0, 4037, 4038, 5, 65, 0, 0, 4038, 4040, 3, 274, 137, 0, 4039, 4037, 1, 0, 0, 0, 4039, 4040, 1, 0, 0, 0, 4040, 4041, 1, 0, 0, 0, 4041, 4043, 5, 866, 0, 0, 4042, 4044, 3, 650, 325, 0, 4043, 4042, 1, 0, 0, 0, 4043, 4044, 1, 0, 0, 0, 4044, 4045, 1, 0, 0, 0, 4045, 4046, 5, 867, 0, 0, 4046, 273, 1, 0, 0, 0, 4047, 4053, 5, 91, 0, 0, 4048, 4049, 5, 125, 0, 0, 4049, 4053, 5, 20, 0, 0, 4050, 4051, 5, 74, 0, 0, 4051, 4053, 5, 20, 0, 0, 4052, 4047, 1, 0, 0, 0, 4052, 4048, 1, 0, 0, 0, 4052, 4050, 1, 0, 0, 0, 4053, 275, 1, 0, 0, 0, 4054, 4056, 7, 57, 0, 0, 4055, 4054, 1, 0, 0, 0, 4055, 4056, 1, 0, 0, 0, 4056, 4057, 1, 0, 0, 0, 4057, 4059, 5, 91, 0, 0, 4058, 4060, 5, 95, 0, 0, 4059, 4058, 1, 0, 0, 0, 4059, 4060, 1, 0, 0, 0, 4060, 4061, 1, 0, 0, 0, 4061, 4065, 3, 266, 133, 0, 4062, 4064, 3, 278, 139, 0, 4063, 4062, 1, 0, 0, 0, 4064, 4067, 1, 0, 0, 0, 4065, 4063, 1, 0, 0, 0, 4065, 4066, 1, 0, 0, 0, 4066, 4104, 1, 0, 0, 0, 4067, 4065, 1, 0, 0, 0, 4068, 4069, 5, 172, 0, 0, 4069, 4073, 3, 266, 133, 0, 4070, 4072, 3, 278, 139, 0, 4071, 4070, 1, 0, 0, 0, 4072, 4075, 1, 0, 0, 0, 4073, 4071, 1, 0, 0, 0, 4073, 4074, 1, 0, 0, 0, 4074, 4104, 1, 0, 0, 0, 4075, 4073, 1, 0, 0, 0, 4076, 4078, 7, 58, 0, 0, 4077, 4079, 5, 127, 0, 0, 4078, 4077, 1, 0, 0, 0, 4078, 4079, 1, 0, 0, 0, 4079, 4080, 1, 0, 0, 0, 4080, 4082, 5, 91, 0, 0, 4081, 4083, 5, 95, 0, 0, 4082, 4081, 1, 0, 0, 0, 4082, 4083, 1, 0, 0, 0, 4083, 4084, 1, 0, 0, 0, 4084, 4088, 3, 266, 133, 0, 4085, 4087, 3, 278, 139, 0, 4086, 4085, 1, 0, 0, 0, 4087, 4090, 1, 0, 0, 0, 4088, 4086, 1, 0, 0, 0, 4088, 4089, 1, 0, 0, 0, 4089, 4104, 1, 0, 0, 0, 4090, 4088, 1, 0, 0, 0, 4091, 4099, 5, 113, 0, 0, 4092, 4095, 5, 84, 0, 0, 4093, 4095, 7, 58, 0, 0, 4094, 4092, 1, 0, 0, 0, 4094, 4093, 1, 0, 0, 0, 4095, 4097, 1, 0, 0, 0, 4096, 4098, 5, 127, 0, 0, 4097, 4096, 1, 0, 0, 0, 4097, 4098, 1, 0, 0, 0, 4098, 4100, 1, 0, 0, 0, 4099, 4094, 1, 0, 0, 0, 4099, 4100, 1, 0, 0, 0, 4100, 4101, 1, 0, 0, 0, 4101, 4102, 5, 91, 0, 0, 4102, 4104, 3, 266, 133, 0, 4103, 4055, 1, 0, 0, 0, 4103, 4068, 1, 0, 0, 0, 4103, 4076, 1, 0, 0, 0, 4103, 4091, 1, 0, 0, 0, 4104, 277, 1, 0, 0, 0, 4105, 4108, 5, 119, 0, 0, 4106, 4109, 3, 822, 411, 0, 4107, 4109, 3, 678, 339, 0, 4108, 4106, 1, 0, 0, 0, 4108, 4107, 1, 0, 0, 0, 4109, 4116, 1, 0, 0, 0, 4110, 4111, 5, 188, 0, 0, 4111, 4112, 5, 866, 0, 0, 4112, 4113, 3, 670, 335, 0, 4113, 4114, 5, 867, 0, 0, 4114, 4116, 1, 0, 0, 0, 4115, 4105, 1, 0, 0, 0, 4115, 4110, 1, 0, 0, 0, 4116, 279, 1, 0, 0, 0, 4117, 4118, 5, 866, 0, 0, 4118, 4119, 3, 282, 141, 0, 4119, 4120, 5, 867, 0, 0, 4120, 4126, 1, 0, 0, 0, 4121, 4122, 5, 866, 0, 0, 4122, 4123, 3, 280, 140, 0, 4123, 4124, 5, 867, 0, 0, 4124, 4126, 1, 0, 0, 0, 4125, 4117, 1, 0, 0, 0, 4125, 4121, 1, 0, 0, 0, 4126, 281, 1, 0, 0, 0, 4127, 4131, 5, 154, 0, 0, 4128, 4130, 3, 298, 149, 0, 4129, 4128, 1, 0, 0, 0, 4130, 4133, 1, 0, 0, 0, 4131, 4129, 1, 0, 0, 0, 4131, 4132, 1, 0, 0, 0, 4132, 4134, 1, 0, 0, 0, 4133, 4131, 1, 0, 0, 0, 4134, 4136, 3, 300, 150, 0, 4135, 4137, 3, 312, 156, 0, 4136, 4135, 1, 0, 0, 0, 4136, 4137, 1, 0, 0, 0, 4137, 4138, 1, 0, 0, 0, 4138, 4140, 3, 318, 159, 0, 4139, 4141, 3, 320, 160, 0, 4140, 4139, 1, 0, 0, 0, 4140, 4141, 1, 0, 0, 0, 4141, 4143, 1, 0, 0, 0, 4142, 4144, 3, 322, 161, 0, 4143, 4142, 1, 0, 0, 0, 4143, 4144, 1, 0, 0, 0, 4144, 4146, 1, 0, 0, 0, 4145, 4147, 3, 324, 162, 0, 4146, 4145, 1, 0, 0, 0, 4146, 4147, 1, 0, 0, 0, 4147, 4149, 1, 0, 0, 0, 4148, 4150, 3, 258, 129, 0, 4149, 4148, 1, 0, 0, 0, 4149, 4150, 1, 0, 0, 0, 4150, 4152, 1, 0, 0, 0, 4151, 4153, 3, 328, 164, 0, 4152, 4151, 1, 0, 0, 0, 4152, 4153, 1, 0, 0, 0, 4153, 4155, 1, 0, 0, 0, 4154, 4156, 3, 312, 156, 0, 4155, 4154, 1, 0, 0, 0, 4155, 4156, 1, 0, 0, 0, 4156, 4158, 1, 0, 0, 0, 4157, 4159, 3, 284, 142, 0, 4158, 4157, 1, 0, 0, 0, 4158, 4159, 1, 0, 0, 0, 4159, 283, 1, 0, 0, 0, 4160, 4162, 5, 181, 0, 0, 4161, 4163, 7, 45, 0, 0, 4162, 4161, 1, 0, 0, 0, 4162, 4163, 1, 0, 0, 0, 4163, 4166, 1, 0, 0, 0, 4164, 4167, 3, 282, 141, 0, 4165, 4167, 3, 280, 140, 0, 4166, 4164, 1, 0, 0, 0, 4166, 4165, 1, 0, 0, 0, 4167, 285, 1, 0, 0, 0, 4168, 4183, 5, 95, 0, 0, 4169, 4184, 3, 282, 141, 0, 4170, 4184, 3, 280, 140, 0, 4171, 4174, 5, 866, 0, 0, 4172, 4175, 3, 282, 141, 0, 4173, 4175, 3, 280, 140, 0, 4174, 4172, 1, 0, 0, 0, 4174, 4173, 1, 0, 0, 0, 4175, 4176, 1, 0, 0, 0, 4176, 4181, 5, 867, 0, 0, 4177, 4179, 5, 13, 0, 0, 4178, 4177, 1, 0, 0, 0, 4178, 4179, 1, 0, 0, 0, 4179, 4180, 1, 0, 0, 0, 4180, 4182, 3, 722, 361, 0, 4181, 4178, 1, 0, 0, 0, 4181, 4182, 1, 0, 0, 0, 4182, 4184, 1, 0, 0, 0, 4183, 4169, 1, 0, 0, 0, 4183, 4170, 1, 0, 0, 0, 4183, 4171, 1, 0, 0, 0, 4184, 287, 1, 0, 0, 0, 4185, 4186, 5, 253, 0, 0, 4186, 4187, 5, 866, 0, 0, 4187, 4188, 5, 882, 0, 0, 4188, 4189, 5, 868, 0, 0, 4189, 4190, 5, 882, 0, 0, 4190, 4191, 5, 337, 0, 0, 4191, 4192, 5, 866, 0, 0, 4192, 4193, 3, 290, 145, 0, 4193, 4194, 5, 867, 0, 0, 4194, 4199, 5, 867, 0, 0, 4195, 4197, 5, 13, 0, 0, 4196, 4195, 1, 0, 0, 0, 4196, 4197, 1, 0, 0, 0, 4197, 4198, 1, 0, 0, 0, 4198, 4200, 3, 722, 361, 0, 4199, 4196, 1, 0, 0, 0, 4199, 4200, 1, 0, 0, 0, 4200, 289, 1, 0, 0, 0, 4201, 4206, 3, 292, 146, 0, 4202, 4203, 5, 868, 0, 0, 4203, 4205, 3, 292, 146, 0, 4204, 4202, 1, 0, 0, 0, 4205, 4208, 1, 0, 0, 0, 4206, 4204, 1, 0, 0, 0, 4206, 4207, 1, 0, 0, 0, 4207, 291, 1, 0, 0, 0, 4208, 4206, 1, 0, 0, 0, 4209, 4226, 3, 674, 337, 0, 4210, 4211, 5, 65, 0, 0, 4211, 4227, 5, 256, 0, 0, 4212, 4224, 3, 744, 372, 0, 4213, 4214, 5, 257, 0, 0, 4214, 4216, 5, 882, 0, 0, 4215, 4217, 3, 294, 147, 0, 4216, 4215, 1, 0, 0, 0, 4216, 4217, 1, 0, 0, 0, 4217, 4219, 1, 0, 0, 0, 4218, 4220, 3, 296, 148, 0, 4219, 4218, 1, 0, 0, 0, 4219, 4220, 1, 0, 0, 0, 4220, 4225, 1, 0, 0, 0, 4221, 4222, 5, 60, 0, 0, 4222, 4223, 5, 257, 0, 0, 4223, 4225, 5, 882, 0, 0, 4224, 4213, 1, 0, 0, 0, 4224, 4221, 1, 0, 0, 0, 4225, 4227, 1, 0, 0, 0, 4226, 4210, 1, 0, 0, 0, 4226, 4212, 1, 0, 0, 0, 4227, 4239, 1, 0, 0, 0, 4228, 4230, 5, 255, 0, 0, 4229, 4231, 5, 257, 0, 0, 4230, 4229, 1, 0, 0, 0, 4230, 4231, 1, 0, 0, 0, 4231, 4232, 1, 0, 0, 0, 4232, 4233, 5, 882, 0, 0, 4233, 4234, 5, 337, 0, 0, 4234, 4235, 5, 866, 0, 0, 4235, 4236, 3, 290, 145, 0, 4236, 4237, 5, 867, 0, 0, 4237, 4239, 1, 0, 0, 0, 4238, 4209, 1, 0, 0, 0, 4238, 4228, 1, 0, 0, 0, 4239, 293, 1, 0, 0, 0, 4240, 4245, 5, 116, 0, 0, 4241, 4245, 5, 382, 0, 0, 4242, 4243, 5, 42, 0, 0, 4243, 4245, 3, 772, 386, 0, 4244, 4240, 1, 0, 0, 0, 4244, 4241, 1, 0, 0, 0, 4244, 4242, 1, 0, 0, 0, 4245, 4246, 1, 0, 0, 0, 4246, 4247, 5, 119, 0, 0, 4247, 4248, 5, 55, 0, 0, 4248, 295, 1, 0, 0, 0, 4249, 4254, 5, 116, 0, 0, 4250, 4254, 5, 382, 0, 0, 4251, 4252, 5, 42, 0, 0, 4252, 4254, 3, 772, 386, 0, 4253, 4249, 1, 0, 0, 0, 4253, 4250, 1, 0, 0, 0, 4253, 4251, 1, 0, 0, 0, 4254, 4255, 1, 0, 0, 0, 4255, 4256, 5, 119, 0, 0, 4256, 4257, 5, 382, 0, 0, 4257, 297, 1, 0, 0, 0, 4258, 4267, 7, 59, 0, 0, 4259, 4267, 5, 76, 0, 0, 4260, 4267, 5, 172, 0, 0, 4261, 4267, 5, 168, 0, 0, 4262, 4267, 5, 166, 0, 0, 4263, 4267, 5, 636, 0, 0, 4264, 4267, 7, 60, 0, 0, 4265, 4267, 5, 167, 0, 0, 4266, 4258, 1, 0, 0, 0, 4266, 4259, 1, 0, 0, 0, 4266, 4260, 1, 0, 0, 0, 4266, 4261, 1, 0, 0, 0, 4266, 4262, 1, 0, 0, 0, 4266, 4263, 1, 0, 0, 0, 4266, 4264, 1, 0, 0, 0, 4266, 4265, 1, 0, 0, 0, 4267, 299, 1, 0, 0, 0, 4268, 4271, 3, 306, 153, 0, 4269, 4271, 3, 302, 151, 0, 4270, 4268, 1, 0, 0, 0, 4270, 4269, 1, 0, 0, 0, 4271, 4276, 1, 0, 0, 0, 4272, 4273, 5, 868, 0, 0, 4273, 4275, 3, 302, 151, 0, 4274, 4272, 1, 0, 0, 0, 4275, 4278, 1, 0, 0, 0, 4276, 4274, 1, 0, 0, 0, 4276, 4277, 1, 0, 0, 0, 4277, 301, 1, 0, 0, 0, 4278, 4276, 1, 0, 0, 0, 4279, 4295, 3, 304, 152, 0, 4280, 4285, 3, 308, 154, 0, 4281, 4283, 5, 13, 0, 0, 4282, 4281, 1, 0, 0, 0, 4282, 4283, 1, 0, 0, 0, 4283, 4284, 1, 0, 0, 0, 4284, 4286, 3, 722, 361, 0, 4285, 4282, 1, 0, 0, 0, 4285, 4286, 1, 0, 0, 0, 4286, 4295, 1, 0, 0, 0, 4287, 4292, 3, 310, 155, 0, 4288, 4290, 5, 13, 0, 0, 4289, 4288, 1, 0, 0, 0, 4289, 4290, 1, 0, 0, 0, 4290, 4291, 1, 0, 0, 0, 4291, 4293, 3, 722, 361, 0, 4292, 4289, 1, 0, 0, 0, 4292, 4293, 1, 0, 0, 0, 4293, 4295, 1, 0, 0, 0, 4294, 4279, 1, 0, 0, 0, 4294, 4280, 1, 0, 0, 0, 4294, 4287, 1, 0, 0, 0, 4295, 303, 1, 0, 0, 0, 4296, 4297, 3, 718, 359, 0, 4297, 4298, 5, 865, 0, 0, 4298, 4299, 5, 850, 0, 0, 4299, 305, 1, 0, 0, 0, 4300, 4301, 5, 850, 0, 0, 4301, 307, 1, 0, 0, 0, 4302, 4303, 3, 674, 337, 0, 4303, 309, 1, 0, 0, 0, 4304, 4305, 5, 892, 0, 0, 4305, 4307, 5, 841, 0, 0, 4306, 4304, 1, 0, 0, 0, 4306, 4307, 1, 0, 0, 0, 4307, 4308, 1, 0, 0, 0, 4308, 4311, 3, 822, 411, 0, 4309, 4311, 3, 782, 391, 0, 4310, 4306, 1, 0, 0, 0, 4310, 4309, 1, 0, 0, 0, 4311, 311, 1, 0, 0, 0, 4312, 4313, 5, 88, 0, 0, 4313, 4318, 3, 236, 118, 0, 4314, 4315, 5, 868, 0, 0, 4315, 4317, 3, 236, 118, 0, 4316, 4314, 1, 0, 0, 0, 4317, 4320, 1, 0, 0, 0, 4318, 4316, 1, 0, 0, 0, 4318, 4319, 1, 0, 0, 0, 4319, 4349, 1, 0, 0, 0, 4320, 4318, 1, 0, 0, 0, 4321, 4322, 5, 88, 0, 0, 4322, 4323, 5, 372, 0, 0, 4323, 4349, 5, 882, 0, 0, 4324, 4325, 5, 88, 0, 0, 4325, 4326, 5, 128, 0, 0, 4326, 4330, 5, 882, 0, 0, 4327, 4328, 5, 26, 0, 0, 4328, 4329, 5, 155, 0, 0, 4329, 4331, 3, 704, 352, 0, 4330, 4327, 1, 0, 0, 0, 4330, 4331, 1, 0, 0, 0, 4331, 4338, 1, 0, 0, 0, 4332, 4334, 7, 47, 0, 0, 4333, 4335, 3, 314, 157, 0, 4334, 4333, 1, 0, 0, 0, 4335, 4336, 1, 0, 0, 0, 4336, 4334, 1, 0, 0, 0, 4336, 4337, 1, 0, 0, 0, 4337, 4339, 1, 0, 0, 0, 4338, 4332, 1, 0, 0, 0, 4338, 4339, 1, 0, 0, 0, 4339, 4346, 1, 0, 0, 0, 4340, 4342, 5, 102, 0, 0, 4341, 4343, 3, 316, 158, 0, 4342, 4341, 1, 0, 0, 0, 4343, 4344, 1, 0, 0, 0, 4344, 4342, 1, 0, 0, 0, 4344, 4345, 1, 0, 0, 0, 4345, 4347, 1, 0, 0, 0, 4346, 4340, 1, 0, 0, 0, 4346, 4347, 1, 0, 0, 0, 4347, 4349, 1, 0, 0, 0, 4348, 4312, 1, 0, 0, 0, 4348, 4321, 1, 0, 0, 0, 4348, 4324, 1, 0, 0, 0, 4349, 313, 1, 0, 0, 0, 4350, 4351, 5, 174, 0, 0, 4351, 4352, 5, 20, 0, 0, 4352, 4363, 5, 882, 0, 0, 4353, 4355, 5, 123, 0, 0, 4354, 4353, 1, 0, 0, 0, 4354, 4355, 1, 0, 0, 0, 4355, 4356, 1, 0, 0, 0, 4356, 4357, 5, 56, 0, 0, 4357, 4358, 5, 20, 0, 0, 4358, 4363, 5, 882, 0, 0, 4359, 4360, 5, 58, 0, 0, 4360, 4361, 5, 20, 0, 0, 4361, 4363, 5, 882, 0, 0, 4362, 4350, 1, 0, 0, 0, 4362, 4354, 1, 0, 0, 0, 4362, 4359, 1, 0, 0, 0, 4363, 315, 1, 0, 0, 0, 4364, 4365, 5, 171, 0, 0, 4365, 4366, 5, 20, 0, 0, 4366, 4371, 5, 882, 0, 0, 4367, 4368, 5, 174, 0, 0, 4368, 4369, 5, 20, 0, 0, 4369, 4371, 5, 882, 0, 0, 4370, 4364, 1, 0, 0, 0, 4370, 4367, 1, 0, 0, 0, 4371, 317, 1, 0, 0, 0, 4372, 4373, 5, 68, 0, 0, 4373, 4375, 3, 262, 131, 0, 4374, 4372, 1, 0, 0, 0, 4374, 4375, 1, 0, 0, 0, 4375, 4381, 1, 0, 0, 0, 4376, 4379, 5, 192, 0, 0, 4377, 4380, 3, 822, 411, 0, 4378, 4380, 3, 678, 339, 0, 4379, 4377, 1, 0, 0, 0, 4379, 4378, 1, 0, 0, 0, 4380, 4382, 1, 0, 0, 0, 4381, 4376, 1, 0, 0, 0, 4381, 4382, 1, 0, 0, 0, 4382, 319, 1, 0, 0, 0, 4383, 4384, 5, 74, 0, 0, 4384, 4385, 5, 20, 0, 0, 4385, 4390, 3, 326, 163, 0, 4386, 4387, 5, 868, 0, 0, 4387, 4389, 3, 326, 163, 0, 4388, 4386, 1, 0, 0, 0, 4389, 4392, 1, 0, 0, 0, 4390, 4388, 1, 0, 0, 0, 4390, 4391, 1, 0, 0, 0, 4391, 4395, 1, 0, 0, 0, 4392, 4390, 1, 0, 0, 0, 4393, 4394, 5, 194, 0, 0, 4394, 4396, 5, 584, 0, 0, 4395, 4393, 1, 0, 0, 0, 4395, 4396, 1, 0, 0, 0, 4396, 321, 1, 0, 0, 0, 4397, 4398, 5, 75, 0, 0, 4398, 4399, 3, 822, 411, 0, 4399, 323, 1, 0, 0, 0, 4400, 4401, 5, 689, 0, 0, 4401, 4402, 3, 800, 400, 0, 4402, 4403, 5, 13, 0, 0, 4403, 4404, 5, 866, 0, 0, 4404, 4405, 3, 798, 399, 0, 4405, 4415, 5, 867, 0, 0, 4406, 4407, 5, 868, 0, 0, 4407, 4408, 3, 800, 400, 0, 4408, 4409, 5, 13, 0, 0, 4409, 4410, 5, 866, 0, 0, 4410, 4411, 3, 798, 399, 0, 4411, 4412, 5, 867, 0, 0, 4412, 4414, 1, 0, 0, 0, 4413, 4406, 1, 0, 0, 0, 4414, 4417, 1, 0, 0, 0, 4415, 4413, 1, 0, 0, 0, 4415, 4416, 1, 0, 0, 0, 4416, 325, 1, 0, 0, 0, 4417, 4415, 1, 0, 0, 0, 4418, 4420, 3, 822, 411, 0, 4419, 4421, 7, 55, 0, 0, 4420, 4419, 1, 0, 0, 0, 4420, 4421, 1, 0, 0, 0, 4421, 327, 1, 0, 0, 0, 4422, 4433, 5, 100, 0, 0, 4423, 4424, 3, 330, 165, 0, 4424, 4425, 5, 868, 0, 0, 4425, 4427, 1, 0, 0, 0, 4426, 4423, 1, 0, 0, 0, 4426, 4427, 1, 0, 0, 0, 4427, 4428, 1, 0, 0, 0, 4428, 4434, 3, 330, 165, 0, 4429, 4430, 3, 330, 165, 0, 4430, 4431, 5, 509, 0, 0, 4431, 4432, 3, 330, 165, 0, 4432, 4434, 1, 0, 0, 0, 4433, 4426, 1, 0, 0, 0, 4433, 4429, 1, 0, 0, 0, 4434, 329, 1, 0, 0, 0, 4435, 4439, 3, 730, 365, 0, 4436, 4439, 3, 702, 351, 0, 4437, 4439, 3, 724, 362, 0, 4438, 4435, 1, 0, 0, 0, 4438, 4436, 1, 0, 0, 0, 4438, 4437, 1, 0, 0, 0, 4439, 331, 1, 0, 0, 0, 4440, 4441, 5, 640, 0, 0, 4441, 4450, 5, 664, 0, 0, 4442, 4447, 3, 354, 177, 0, 4443, 4444, 5, 868, 0, 0, 4444, 4446, 3, 354, 177, 0, 4445, 4443, 1, 0, 0, 0, 4446, 4449, 1, 0, 0, 0, 4447, 4445, 1, 0, 0, 0, 4447, 4448, 1, 0, 0, 0, 4448, 4451, 1, 0, 0, 0, 4449, 4447, 1, 0, 0, 0, 4450, 4442, 1, 0, 0, 0, 4450, 4451, 1, 0, 0, 0, 4451, 333, 1, 0, 0, 0, 4452, 4454, 5, 317, 0, 0, 4453, 4455, 5, 691, 0, 0, 4454, 4453, 1, 0, 0, 0, 4454, 4455, 1, 0, 0, 0, 4455, 335, 1, 0, 0, 0, 4456, 4458, 5, 341, 0, 0, 4457, 4459, 5, 691, 0, 0, 4458, 4457, 1, 0, 0, 0, 4458, 4459, 1, 0, 0, 0, 4459, 4465, 1, 0, 0, 0, 4460, 4462, 5, 11, 0, 0, 4461, 4463, 5, 502, 0, 0, 4462, 4461, 1, 0, 0, 0, 4462, 4463, 1, 0, 0, 0, 4463, 4464, 1, 0, 0, 0, 4464, 4466, 5, 326, 0, 0, 4465, 4460, 1, 0, 0, 0, 4465, 4466, 1, 0, 0, 0, 4466, 4471, 1, 0, 0, 0, 4467, 4469, 5, 502, 0, 0, 4468, 4467, 1, 0, 0, 0, 4468, 4469, 1, 0, 0, 0, 4469, 4470, 1, 0, 0, 0, 4470, 4472, 5, 140, 0, 0, 4471, 4468, 1, 0, 0, 0, 4471, 4472, 1, 0, 0, 0, 4472, 337, 1, 0, 0, 0, 4473, 4475, 5, 583, 0, 0, 4474, 4476, 5, 691, 0, 0, 4475, 4474, 1, 0, 0, 0, 4475, 4476, 1, 0, 0, 0, 4476, 4482, 1, 0, 0, 0, 4477, 4479, 5, 11, 0, 0, 4478, 4480, 5, 502, 0, 0, 4479, 4478, 1, 0, 0, 0, 4479, 4480, 1, 0, 0, 0, 4480, 4481, 1, 0, 0, 0, 4481, 4483, 5, 326, 0, 0, 4482, 4477, 1, 0, 0, 0, 4482, 4483, 1, 0, 0, 0, 4483, 4488, 1, 0, 0, 0, 4484, 4486, 5, 502, 0, 0, 4485, 4484, 1, 0, 0, 0, 4485, 4486, 1, 0, 0, 0, 4486, 4487, 1, 0, 0, 0, 4487, 4489, 5, 140, 0, 0, 4488, 4485, 1, 0, 0, 0, 4488, 4489, 1, 0, 0, 0, 4489, 339, 1, 0, 0, 0, 4490, 4491, 5, 589, 0, 0, 4491, 4492, 3, 722, 361, 0, 4492, 341, 1, 0, 0, 0, 4493, 4495, 5, 583, 0, 0, 4494, 4496, 5, 691, 0, 0, 4495, 4494, 1, 0, 0, 0, 4495, 4496, 1, 0, 0, 0, 4496, 4497, 1, 0, 0, 0, 4497, 4499, 5, 176, 0, 0, 4498, 4500, 5, 589, 0, 0, 4499, 4498, 1, 0, 0, 0, 4499, 4500, 1, 0, 0, 0, 4500, 4501, 1, 0, 0, 0, 4501, 4502, 3, 722, 361, 0, 4502, 343, 1, 0, 0, 0, 4503, 4504, 5, 140, 0, 0, 4504, 4505, 5, 589, 0, 0, 4505, 4506, 3, 722, 361, 0, 4506, 345, 1, 0, 0, 0, 4507, 4508, 5, 104, 0, 0, 4508, 4509, 7, 61, 0, 0, 4509, 4514, 3, 356, 178, 0, 4510, 4511, 5, 868, 0, 0, 4511, 4513, 3, 356, 178, 0, 4512, 4510, 1, 0, 0, 0, 4513, 4516, 1, 0, 0, 0, 4514, 4512, 1, 0, 0, 0, 4514, 4515, 1, 0, 0, 0, 4515, 347, 1, 0, 0, 0, 4516, 4514, 1, 0, 0, 0, 4517, 4518, 5, 183, 0, 0, 4518, 4519, 5, 752, 0, 0, 4519, 349, 1, 0, 0, 0, 4520, 4521, 5, 155, 0, 0, 4521, 4522, 5, 313, 0, 0, 4522, 4523, 5, 857, 0, 0, 4523, 4524, 7, 26, 0, 0, 4524, 351, 1, 0, 0, 0, 4525, 4527, 5, 155, 0, 0, 4526, 4528, 7, 62, 0, 0, 4527, 4526, 1, 0, 0, 0, 4527, 4528, 1, 0, 0, 0, 4528, 4529, 1, 0, 0, 0, 4529, 4530, 5, 664, 0, 0, 4530, 4535, 3, 360, 180, 0, 4531, 4532, 5, 868, 0, 0, 4532, 4534, 3, 360, 180, 0, 4533, 4531, 1, 0, 0, 0, 4534, 4537, 1, 0, 0, 0, 4535, 4533, 1, 0, 0, 0, 4535, 4536, 1, 0, 0, 0, 4536, 353, 1, 0, 0, 0, 4537, 4535, 1, 0, 0, 0, 4538, 4539, 5, 194, 0, 0, 4539, 4540, 5, 350, 0, 0, 4540, 4546, 5, 600, 0, 0, 4541, 4542, 5, 135, 0, 0, 4542, 4546, 5, 195, 0, 0, 4543, 4544, 5, 135, 0, 0, 4544, 4546, 5, 515, 0, 0, 4545, 4538, 1, 0, 0, 0, 4545, 4541, 1, 0, 0, 0, 4545, 4543, 1, 0, 0, 0, 4546, 355, 1, 0, 0, 0, 4547, 4552, 3, 662, 331, 0, 4548, 4550, 5, 13, 0, 0, 4549, 4548, 1, 0, 0, 0, 4549, 4550, 1, 0, 0, 0, 4550, 4551, 1, 0, 0, 0, 4551, 4553, 3, 722, 361, 0, 4552, 4549, 1, 0, 0, 0, 4552, 4553, 1, 0, 0, 0, 4553, 4554, 1, 0, 0, 0, 4554, 4555, 3, 358, 179, 0, 4555, 357, 1, 0, 0, 0, 4556, 4558, 5, 135, 0, 0, 4557, 4559, 5, 450, 0, 0, 4558, 4557, 1, 0, 0, 0, 4558, 4559, 1, 0, 0, 0, 4559, 4565, 1, 0, 0, 0, 4560, 4562, 5, 107, 0, 0, 4561, 4560, 1, 0, 0, 0, 4561, 4562, 1, 0, 0, 0, 4562, 4563, 1, 0, 0, 0, 4563, 4565, 5, 195, 0, 0, 4564, 4556, 1, 0, 0, 0, 4564, 4561, 1, 0, 0, 0, 4565, 359, 1, 0, 0, 0, 4566, 4567, 5, 440, 0, 0, 4567, 4568, 5, 448, 0, 0, 4568, 4574, 3, 362, 181, 0, 4569, 4570, 5, 135, 0, 0, 4570, 4574, 5, 195, 0, 0, 4571, 4572, 5, 135, 0, 0, 4572, 4574, 5, 515, 0, 0, 4573, 4566, 1, 0, 0, 0, 4573, 4569, 1, 0, 0, 0, 4573, 4571, 1, 0, 0, 0, 4574, 361, 1, 0, 0, 0, 4575, 4576, 5, 809, 0, 0, 4576, 4583, 5, 135, 0, 0, 4577, 4578, 5, 135, 0, 0, 4578, 4583, 5, 810, 0, 0, 4579, 4580, 5, 135, 0, 0, 4580, 4583, 5, 811, 0, 0, 4581, 4583, 5, 812, 0, 0, 4582, 4575, 1, 0, 0, 0, 4582, 4577, 1, 0, 0, 0, 4582, 4579, 1, 0, 0, 0, 4582, 4581, 1, 0, 0, 0, 4583, 363, 1, 0, 0, 0, 4584, 4585, 5, 25, 0, 0, 4585, 4586, 5, 453, 0, 0, 4586, 4587, 5, 176, 0, 0, 4587, 4592, 3, 380, 190, 0, 4588, 4589, 5, 868, 0, 0, 4589, 4591, 3, 380, 190, 0, 4590, 4588, 1, 0, 0, 0, 4591, 4594, 1, 0, 0, 0, 4592, 4590, 1, 0, 0, 0, 4592, 4593, 1, 0, 0, 0, 4593, 4596, 1, 0, 0, 0, 4594, 4592, 1, 0, 0, 0, 4595, 4597, 3, 400, 200, 0, 4596, 4595, 1, 0, 0, 0, 4596, 4597, 1, 0, 0, 0, 4597, 365, 1, 0, 0, 0, 4598, 4599, 5, 25, 0, 0, 4599, 4600, 5, 572, 0, 0, 4600, 4601, 5, 400, 0, 0, 4601, 4606, 3, 402, 201, 0, 4602, 4603, 5, 868, 0, 0, 4603, 4605, 3, 402, 201, 0, 4604, 4602, 1, 0, 0, 0, 4605, 4608, 1, 0, 0, 0, 4606, 4604, 1, 0, 0, 0, 4606, 4607, 1, 0, 0, 0, 4607, 4610, 1, 0, 0, 0, 4608, 4606, 1, 0, 0, 0, 4609, 4611, 3, 400, 200, 0, 4610, 4609, 1, 0, 0, 0, 4610, 4611, 1, 0, 0, 0, 4611, 367, 1, 0, 0, 0, 4612, 4613, 5, 25, 0, 0, 4613, 4614, 5, 572, 0, 0, 4614, 4615, 5, 605, 0, 0, 4615, 4616, 5, 176, 0, 0, 4616, 4621, 3, 390, 195, 0, 4617, 4618, 5, 868, 0, 0, 4618, 4620, 3, 390, 195, 0, 4619, 4617, 1, 0, 0, 0, 4620, 4623, 1, 0, 0, 0, 4621, 4619, 1, 0, 0, 0, 4621, 4622, 1, 0, 0, 0, 4622, 4625, 1, 0, 0, 0, 4623, 4621, 1, 0, 0, 0, 4624, 4626, 3, 400, 200, 0, 4625, 4624, 1, 0, 0, 0, 4625, 4626, 1, 0, 0, 0, 4626, 369, 1, 0, 0, 0, 4627, 4628, 5, 133, 0, 0, 4628, 4629, 7, 63, 0, 0, 4629, 4634, 5, 452, 0, 0, 4630, 4631, 5, 176, 0, 0, 4631, 4635, 5, 882, 0, 0, 4632, 4633, 5, 16, 0, 0, 4633, 4635, 5, 882, 0, 0, 4634, 4630, 1, 0, 0, 0, 4634, 4632, 1, 0, 0, 0, 4635, 371, 1, 0, 0, 0, 4636, 4637, 5, 640, 0, 0, 4637, 4646, 7, 64, 0, 0, 4638, 4643, 3, 406, 203, 0, 4639, 4640, 5, 868, 0, 0, 4640, 4642, 3, 406, 203, 0, 4641, 4639, 1, 0, 0, 0, 4642, 4645, 1, 0, 0, 0, 4643, 4641, 1, 0, 0, 0, 4643, 4644, 1, 0, 0, 0, 4644, 4647, 1, 0, 0, 0, 4645, 4643, 1, 0, 0, 0, 4646, 4638, 1, 0, 0, 0, 4646, 4647, 1, 0, 0, 0, 4647, 4650, 1, 0, 0, 0, 4648, 4649, 5, 676, 0, 0, 4649, 4651, 3, 408, 204, 0, 4650, 4648, 1, 0, 0, 0, 4650, 4651, 1, 0, 0, 0, 4651, 4655, 1, 0, 0, 0, 4652, 4654, 3, 410, 205, 0, 4653, 4652, 1, 0, 0, 0, 4654, 4657, 1, 0, 0, 0, 4655, 4653, 1, 0, 0, 0, 4655, 4656, 1, 0, 0, 0, 4656, 4659, 1, 0, 0, 0, 4657, 4655, 1, 0, 0, 0, 4658, 4660, 3, 400, 200, 0, 4659, 4658, 1, 0, 0, 0, 4659, 4660, 1, 0, 0, 0, 4660, 373, 1, 0, 0, 0, 4661, 4662, 5, 646, 0, 0, 4662, 4671, 7, 64, 0, 0, 4663, 4668, 3, 406, 203, 0, 4664, 4665, 5, 868, 0, 0, 4665, 4667, 3, 406, 203, 0, 4666, 4664, 1, 0, 0, 0, 4667, 4670, 1, 0, 0, 0, 4668, 4666, 1, 0, 0, 0, 4668, 4669, 1, 0, 0, 0, 4669, 4672, 1, 0, 0, 0, 4670, 4668, 1, 0, 0, 0, 4671, 4663, 1, 0, 0, 0, 4671, 4672, 1, 0, 0, 0, 4672, 4674, 1, 0, 0, 0, 4673, 4675, 3, 400, 200, 0, 4674, 4673, 1, 0, 0, 0, 4674, 4675, 1, 0, 0, 0, 4675, 375, 1, 0, 0, 0, 4676, 4677, 5, 640, 0, 0, 4677, 4681, 5, 415, 0, 0, 4678, 4679, 5, 678, 0, 0, 4679, 4680, 5, 857, 0, 0, 4680, 4682, 5, 882, 0, 0, 4681, 4678, 1, 0, 0, 0, 4681, 4682, 1, 0, 0, 0, 4682, 4687, 1, 0, 0, 0, 4683, 4684, 5, 868, 0, 0, 4684, 4685, 5, 529, 0, 0, 4685, 4686, 5, 857, 0, 0, 4686, 4688, 5, 882, 0, 0, 4687, 4683, 1, 0, 0, 0, 4687, 4688, 1, 0, 0, 0, 4688, 4693, 1, 0, 0, 0, 4689, 4690, 5, 868, 0, 0, 4690, 4691, 5, 363, 0, 0, 4691, 4692, 5, 857, 0, 0, 4692, 4694, 5, 882, 0, 0, 4693, 4689, 1, 0, 0, 0, 4693, 4694, 1, 0, 0, 0, 4694, 377, 1, 0, 0, 0, 4695, 4696, 5, 646, 0, 0, 4696, 4697, 5, 415, 0, 0, 4697, 379, 1, 0, 0, 0, 4698, 4699, 3, 382, 191, 0, 4699, 4700, 5, 857, 0, 0, 4700, 4701, 5, 882, 0, 0, 4701, 4726, 1, 0, 0, 0, 4702, 4703, 3, 384, 192, 0, 4703, 4704, 5, 857, 0, 0, 4704, 4705, 3, 730, 365, 0, 4705, 4726, 1, 0, 0, 0, 4706, 4707, 3, 386, 193, 0, 4707, 4708, 5, 857, 0, 0, 4708, 4709, 7, 26, 0, 0, 4709, 4726, 1, 0, 0, 0, 4710, 4726, 3, 388, 194, 0, 4711, 4712, 5, 424, 0, 0, 4712, 4713, 5, 857, 0, 0, 4713, 4722, 5, 866, 0, 0, 4714, 4719, 3, 722, 361, 0, 4715, 4716, 5, 868, 0, 0, 4716, 4718, 3, 722, 361, 0, 4717, 4715, 1, 0, 0, 0, 4718, 4721, 1, 0, 0, 0, 4719, 4717, 1, 0, 0, 0, 4719, 4720, 1, 0, 0, 0, 4720, 4723, 1, 0, 0, 0, 4721, 4719, 1, 0, 0, 0, 4722, 4714, 1, 0, 0, 0, 4722, 4723, 1, 0, 0, 0, 4723, 4724, 1, 0, 0, 0, 4724, 4726, 5, 867, 0, 0, 4725, 4698, 1, 0, 0, 0, 4725, 4702, 1, 0, 0, 0, 4725, 4706, 1, 0, 0, 0, 4725, 4710, 1, 0, 0, 0, 4725, 4711, 1, 0, 0, 0, 4726, 381, 1, 0, 0, 0, 4727, 4728, 7, 65, 0, 0, 4728, 383, 1, 0, 0, 0, 4729, 4730, 7, 66, 0, 0, 4730, 385, 1, 0, 0, 0, 4731, 4732, 7, 67, 0, 0, 4732, 387, 1, 0, 0, 0, 4733, 4734, 5, 543, 0, 0, 4734, 4735, 5, 857, 0, 0, 4735, 4747, 7, 68, 0, 0, 4736, 4737, 5, 574, 0, 0, 4737, 4738, 5, 857, 0, 0, 4738, 4747, 7, 69, 0, 0, 4739, 4740, 5, 310, 0, 0, 4740, 4744, 5, 857, 0, 0, 4741, 4745, 5, 507, 0, 0, 4742, 4745, 5, 450, 0, 0, 4743, 4745, 3, 412, 206, 0, 4744, 4741, 1, 0, 0, 0, 4744, 4742, 1, 0, 0, 0, 4744, 4743, 1, 0, 0, 0, 4745, 4747, 1, 0, 0, 0, 4746, 4733, 1, 0, 0, 0, 4746, 4736, 1, 0, 0, 0, 4746, 4739, 1, 0, 0, 0, 4747, 389, 1, 0, 0, 0, 4748, 4749, 3, 392, 196, 0, 4749, 4750, 5, 857, 0, 0, 4750, 4751, 5, 882, 0, 0, 4751, 4776, 1, 0, 0, 0, 4752, 4753, 3, 394, 197, 0, 4753, 4754, 5, 857, 0, 0, 4754, 4755, 3, 730, 365, 0, 4755, 4776, 1, 0, 0, 0, 4756, 4757, 3, 396, 198, 0, 4757, 4758, 5, 857, 0, 0, 4758, 4759, 7, 26, 0, 0, 4759, 4776, 1, 0, 0, 0, 4760, 4776, 3, 398, 199, 0, 4761, 4762, 5, 424, 0, 0, 4762, 4763, 5, 857, 0, 0, 4763, 4772, 5, 866, 0, 0, 4764, 4769, 3, 722, 361, 0, 4765, 4766, 5, 868, 0, 0, 4766, 4768, 3, 722, 361, 0, 4767, 4765, 1, 0, 0, 0, 4768, 4771, 1, 0, 0, 0, 4769, 4767, 1, 0, 0, 0, 4769, 4770, 1, 0, 0, 0, 4770, 4773, 1, 0, 0, 0, 4771, 4769, 1, 0, 0, 0, 4772, 4764, 1, 0, 0, 0, 4772, 4773, 1, 0, 0, 0, 4773, 4774, 1, 0, 0, 0, 4774, 4776, 5, 867, 0, 0, 4775, 4748, 1, 0, 0, 0, 4775, 4752, 1, 0, 0, 0, 4775, 4756, 1, 0, 0, 0, 4775, 4760, 1, 0, 0, 0, 4775, 4761, 1, 0, 0, 0, 4776, 391, 1, 0, 0, 0, 4777, 4778, 7, 70, 0, 0, 4778, 393, 1, 0, 0, 0, 4779, 4780, 7, 71, 0, 0, 4780, 395, 1, 0, 0, 0, 4781, 4782, 7, 72, 0, 0, 4782, 397, 1, 0, 0, 0, 4783, 4784, 5, 543, 0, 0, 4784, 4785, 5, 857, 0, 0, 4785, 4797, 7, 68, 0, 0, 4786, 4787, 5, 574, 0, 0, 4787, 4788, 5, 857, 0, 0, 4788, 4797, 7, 73, 0, 0, 4789, 4790, 5, 310, 0, 0, 4790, 4794, 5, 857, 0, 0, 4791, 4795, 5, 507, 0, 0, 4792, 4795, 5, 450, 0, 0, 4793, 4795, 3, 412, 206, 0, 4794, 4791, 1, 0, 0, 0, 4794, 4792, 1, 0, 0, 0, 4794, 4793, 1, 0, 0, 0, 4795, 4797, 1, 0, 0, 0, 4796, 4783, 1, 0, 0, 0, 4796, 4786, 1, 0, 0, 0, 4796, 4789, 1, 0, 0, 0, 4797, 399, 1, 0, 0, 0, 4798, 4799, 5, 65, 0, 0, 4799, 4800, 5, 328, 0, 0, 4800, 4801, 5, 882, 0, 0, 4801, 401, 1, 0, 0, 0, 4802, 4803, 5, 565, 0, 0, 4803, 4804, 5, 857, 0, 0, 4804, 4805, 5, 866, 0, 0, 4805, 4810, 3, 638, 319, 0, 4806, 4807, 5, 868, 0, 0, 4807, 4809, 3, 638, 319, 0, 4808, 4806, 1, 0, 0, 0, 4809, 4812, 1, 0, 0, 0, 4810, 4808, 1, 0, 0, 0, 4810, 4811, 1, 0, 0, 0, 4811, 4813, 1, 0, 0, 0, 4812, 4810, 1, 0, 0, 0, 4813, 4814, 5, 867, 0, 0, 4814, 4866, 1, 0, 0, 0, 4815, 4816, 5, 567, 0, 0, 4816, 4817, 5, 857, 0, 0, 4817, 4818, 5, 866, 0, 0, 4818, 4823, 3, 638, 319, 0, 4819, 4820, 5, 868, 0, 0, 4820, 4822, 3, 638, 319, 0, 4821, 4819, 1, 0, 0, 0, 4822, 4825, 1, 0, 0, 0, 4823, 4821, 1, 0, 0, 0, 4823, 4824, 1, 0, 0, 0, 4824, 4826, 1, 0, 0, 0, 4825, 4823, 1, 0, 0, 0, 4826, 4827, 5, 867, 0, 0, 4827, 4866, 1, 0, 0, 0, 4828, 4829, 5, 566, 0, 0, 4829, 4830, 5, 857, 0, 0, 4830, 4831, 5, 866, 0, 0, 4831, 4832, 3, 660, 330, 0, 4832, 4833, 5, 867, 0, 0, 4833, 4866, 1, 0, 0, 0, 4834, 4835, 5, 568, 0, 0, 4835, 4836, 5, 857, 0, 0, 4836, 4837, 5, 866, 0, 0, 4837, 4838, 3, 660, 330, 0, 4838, 4839, 5, 867, 0, 0, 4839, 4866, 1, 0, 0, 0, 4840, 4841, 5, 570, 0, 0, 4841, 4842, 5, 857, 0, 0, 4842, 4843, 5, 866, 0, 0, 4843, 4844, 3, 768, 384, 0, 4844, 4845, 5, 867, 0, 0, 4845, 4866, 1, 0, 0, 0, 4846, 4847, 5, 571, 0, 0, 4847, 4848, 5, 857, 0, 0, 4848, 4849, 5, 866, 0, 0, 4849, 4850, 3, 768, 384, 0, 4850, 4851, 5, 867, 0, 0, 4851, 4866, 1, 0, 0, 0, 4852, 4853, 5, 569, 0, 0, 4853, 4854, 5, 857, 0, 0, 4854, 4855, 5, 866, 0, 0, 4855, 4860, 3, 404, 202, 0, 4856, 4857, 5, 868, 0, 0, 4857, 4859, 3, 404, 202, 0, 4858, 4856, 1, 0, 0, 0, 4859, 4862, 1, 0, 0, 0, 4860, 4858, 1, 0, 0, 0, 4860, 4861, 1, 0, 0, 0, 4861, 4863, 1, 0, 0, 0, 4862, 4860, 1, 0, 0, 0, 4863, 4864, 5, 867, 0, 0, 4864, 4866, 1, 0, 0, 0, 4865, 4802, 1, 0, 0, 0, 4865, 4815, 1, 0, 0, 0, 4865, 4828, 1, 0, 0, 0, 4865, 4834, 1, 0, 0, 0, 4865, 4840, 1, 0, 0, 0, 4865, 4846, 1, 0, 0, 0, 4865, 4852, 1, 0, 0, 0, 4866, 403, 1, 0, 0, 0, 4867, 4868, 5, 866, 0, 0, 4868, 4869, 3, 662, 331, 0, 4869, 4870, 5, 868, 0, 0, 4870, 4871, 3, 662, 331, 0, 4871, 4872, 5, 867, 0, 0, 4872, 405, 1, 0, 0, 0, 4873, 4874, 7, 74, 0, 0, 4874, 407, 1, 0, 0, 0, 4875, 4876, 7, 75, 0, 0, 4876, 4877, 5, 857, 0, 0, 4877, 4901, 3, 412, 206, 0, 4878, 4879, 5, 460, 0, 0, 4879, 4880, 5, 857, 0, 0, 4880, 4881, 5, 882, 0, 0, 4881, 4882, 5, 868, 0, 0, 4882, 4883, 5, 461, 0, 0, 4883, 4884, 5, 857, 0, 0, 4884, 4901, 3, 730, 365, 0, 4885, 4886, 5, 611, 0, 0, 4886, 4887, 5, 857, 0, 0, 4887, 4888, 5, 882, 0, 0, 4888, 4889, 5, 868, 0, 0, 4889, 4890, 5, 612, 0, 0, 4890, 4891, 5, 857, 0, 0, 4891, 4901, 3, 730, 365, 0, 4892, 4893, 5, 557, 0, 0, 4893, 4894, 5, 857, 0, 0, 4894, 4895, 5, 882, 0, 0, 4895, 4896, 5, 868, 0, 0, 4896, 4897, 5, 558, 0, 0, 4897, 4898, 5, 857, 0, 0, 4898, 4901, 3, 730, 365, 0, 4899, 4901, 5, 634, 0, 0, 4900, 4875, 1, 0, 0, 0, 4900, 4878, 1, 0, 0, 0, 4900, 4885, 1, 0, 0, 0, 4900, 4892, 1, 0, 0, 0, 4900, 4899, 1, 0, 0, 0, 4901, 409, 1, 0, 0, 0, 4902, 4903, 5, 678, 0, 0, 4903, 4904, 5, 857, 0, 0, 4904, 4915, 5, 882, 0, 0, 4905, 4906, 5, 529, 0, 0, 4906, 4907, 5, 857, 0, 0, 4907, 4915, 5, 882, 0, 0, 4908, 4909, 5, 363, 0, 0, 4909, 4910, 5, 857, 0, 0, 4910, 4915, 5, 882, 0, 0, 4911, 4912, 5, 535, 0, 0, 4912, 4913, 5, 857, 0, 0, 4913, 4915, 5, 882, 0, 0, 4914, 4902, 1, 0, 0, 0, 4914, 4905, 1, 0, 0, 0, 4914, 4908, 1, 0, 0, 0, 4914, 4911, 1, 0, 0, 0, 4915, 411, 1, 0, 0, 0, 4916, 4921, 3, 712, 356, 0, 4917, 4918, 5, 868, 0, 0, 4918, 4920, 3, 712, 356, 0, 4919, 4917, 1, 0, 0, 0, 4920, 4923, 1, 0, 0, 0, 4921, 4919, 1, 0, 0, 0, 4921, 4922, 1, 0, 0, 0, 4922, 4926, 1, 0, 0, 0, 4923, 4921, 1, 0, 0, 0, 4924, 4926, 5, 882, 0, 0, 4925, 4916, 1, 0, 0, 0, 4925, 4924, 1, 0, 0, 0, 4926, 413, 1, 0, 0, 0, 4927, 4928, 5, 694, 0, 0, 4928, 4929, 7, 76, 0, 0, 4929, 4931, 3, 714, 357, 0, 4930, 4932, 7, 77, 0, 0, 4931, 4930, 1, 0, 0, 0, 4931, 4932, 1, 0, 0, 0, 4932, 415, 1, 0, 0, 0, 4933, 4934, 5, 694, 0, 0, 4934, 4935, 5, 378, 0, 0, 4935, 4941, 3, 714, 357, 0, 4936, 4939, 5, 654, 0, 0, 4937, 4938, 5, 65, 0, 0, 4938, 4940, 5, 489, 0, 0, 4939, 4937, 1, 0, 0, 0, 4939, 4940, 1, 0, 0, 0, 4940, 4942, 1, 0, 0, 0, 4941, 4936, 1, 0, 0, 0, 4941, 4942, 1, 0, 0, 0, 4942, 417, 1, 0, 0, 0, 4943, 4944, 5, 694, 0, 0, 4944, 4945, 5, 540, 0, 0, 4945, 4946, 3, 714, 357, 0, 4946, 419, 1, 0, 0, 0, 4947, 4948, 5, 694, 0, 0, 4948, 4949, 5, 341, 0, 0, 4949, 4952, 3, 714, 357, 0, 4950, 4951, 5, 513, 0, 0, 4951, 4953, 5, 533, 0, 0, 4952, 4950, 1, 0, 0, 0, 4952, 4953, 1, 0, 0, 0, 4953, 421, 1, 0, 0, 0, 4954, 4955, 5, 694, 0, 0, 4955, 4956, 5, 583, 0, 0, 4956, 4957, 3, 714, 357, 0, 4957, 423, 1, 0, 0, 0, 4958, 4959, 5, 694, 0, 0, 4959, 4962, 5, 551, 0, 0, 4960, 4961, 5, 33, 0, 0, 4961, 4963, 3, 714, 357, 0, 4962, 4960, 1, 0, 0, 0, 4962, 4963, 1, 0, 0, 0, 4963, 425, 1, 0, 0, 0, 4964, 4965, 5, 540, 0, 0, 4965, 4966, 3, 722, 361, 0, 4966, 4969, 5, 68, 0, 0, 4967, 4970, 5, 882, 0, 0, 4968, 4970, 5, 892, 0, 0, 4969, 4967, 1, 0, 0, 0, 4969, 4968, 1, 0, 0, 0, 4970, 427, 1, 0, 0, 0, 4971, 4972, 5, 717, 0, 0, 4972, 4975, 3, 722, 361, 0, 4973, 4974, 5, 188, 0, 0, 4974, 4976, 3, 770, 385, 0, 4975, 4973, 1, 0, 0, 0, 4975, 4976, 1, 0, 0, 0, 4976, 429, 1, 0, 0, 0, 4977, 4978, 7, 78, 0, 0, 4978, 4979, 5, 540, 0, 0, 4979, 4980, 3, 722, 361, 0, 4980, 431, 1, 0, 0, 0, 4981, 4984, 3, 434, 217, 0, 4982, 4984, 3, 4, 2, 0, 4983, 4981, 1, 0, 0, 0, 4983, 4982, 1, 0, 0, 0, 4984, 433, 1, 0, 0, 0, 4985, 4986, 3, 722, 361, 0, 4986, 4987, 5, 878, 0, 0, 4987, 4989, 1, 0, 0, 0, 4988, 4985, 1, 0, 0, 0, 4988, 4989, 1, 0, 0, 0, 4989, 4990, 1, 0, 0, 0, 4990, 4996, 5, 317, 0, 0, 4991, 4992, 3, 454, 227, 0, 4992, 4993, 5, 869, 0, 0, 4993, 4995, 1, 0, 0, 0, 4994, 4991, 1, 0, 0, 0, 4995, 4998, 1, 0, 0, 0, 4996, 4994, 1, 0, 0, 0, 4996, 4997, 1, 0, 0, 0, 4997, 5004, 1, 0, 0, 0, 4998, 4996, 1, 0, 0, 0, 4999, 5000, 3, 456, 228, 0, 5000, 5001, 5, 869, 0, 0, 5001, 5003, 1, 0, 0, 0, 5002, 4999, 1, 0, 0, 0, 5003, 5006, 1, 0, 0, 0, 5004, 5002, 1, 0, 0, 0, 5004, 5005, 1, 0, 0, 0, 5005, 5012, 1, 0, 0, 0, 5006, 5004, 1, 0, 0, 0, 5007, 5008, 3, 458, 229, 0, 5008, 5009, 5, 869, 0, 0, 5009, 5011, 1, 0, 0, 0, 5010, 5007, 1, 0, 0, 0, 5011, 5014, 1, 0, 0, 0, 5012, 5010, 1, 0, 0, 0, 5012, 5013, 1, 0, 0, 0, 5013, 5020, 1, 0, 0, 0, 5014, 5012, 1, 0, 0, 0, 5015, 5016, 3, 460, 230, 0, 5016, 5017, 5, 869, 0, 0, 5017, 5019, 1, 0, 0, 0, 5018, 5015, 1, 0, 0, 0, 5019, 5022, 1, 0, 0, 0, 5020, 5018, 1, 0, 0, 0, 5020, 5021, 1, 0, 0, 0, 5021, 5026, 1, 0, 0, 0, 5022, 5020, 1, 0, 0, 0, 5023, 5025, 3, 464, 232, 0, 5024, 5023, 1, 0, 0, 0, 5025, 5028, 1, 0, 0, 0, 5026, 5024, 1, 0, 0, 0, 5026, 5027, 1, 0, 0, 0, 5027, 5029, 1, 0, 0, 0, 5028, 5026, 1, 0, 0, 0, 5029, 5031, 5, 378, 0, 0, 5030, 5032, 3, 722, 361, 0, 5031, 5030, 1, 0, 0, 0, 5031, 5032, 1, 0, 0, 0, 5032, 435, 1, 0, 0, 0, 5033, 5036, 5, 23, 0, 0, 5034, 5037, 3, 722, 361, 0, 5035, 5037, 3, 822, 411, 0, 5036, 5034, 1, 0, 0, 0, 5036, 5035, 1, 0, 0, 0, 5036, 5037, 1, 0, 0, 0, 5037, 5039, 1, 0, 0, 0, 5038, 5040, 3, 466, 233, 0, 5039, 5038, 1, 0, 0, 0, 5040, 5041, 1, 0, 0, 0, 5041, 5039, 1, 0, 0, 0, 5041, 5042, 1, 0, 0, 0, 5042, 5049, 1, 0, 0, 0, 5043, 5045, 5, 53, 0, 0, 5044, 5046, 3, 464, 232, 0, 5045, 5044, 1, 0, 0, 0, 5046, 5047, 1, 0, 0, 0, 5047, 5045, 1, 0, 0, 0, 5047, 5048, 1, 0, 0, 0, 5048, 5050, 1, 0, 0, 0, 5049, 5043, 1, 0, 0, 0, 5049, 5050, 1, 0, 0, 0, 5050, 5051, 1, 0, 0, 0, 5051, 5052, 5, 378, 0, 0, 5052, 5053, 5, 23, 0, 0, 5053, 437, 1, 0, 0, 0, 5054, 5055, 5, 78, 0, 0, 5055, 5056, 3, 822, 411, 0, 5056, 5058, 5, 175, 0, 0, 5057, 5059, 3, 464, 232, 0, 5058, 5057, 1, 0, 0, 0, 5059, 5060, 1, 0, 0, 0, 5060, 5058, 1, 0, 0, 0, 5060, 5061, 1, 0, 0, 0, 5061, 5065, 1, 0, 0, 0, 5062, 5064, 3, 468, 234, 0, 5063, 5062, 1, 0, 0, 0, 5064, 5067, 1, 0, 0, 0, 5065, 5063, 1, 0, 0, 0, 5065, 5066, 1, 0, 0, 0, 5066, 5074, 1, 0, 0, 0, 5067, 5065, 1, 0, 0, 0, 5068, 5070, 5, 53, 0, 0, 5069, 5071, 3, 464, 232, 0, 5070, 5069, 1, 0, 0, 0, 5071, 5072, 1, 0, 0, 0, 5072, 5070, 1, 0, 0, 0, 5072, 5073, 1, 0, 0, 0, 5073, 5075, 1, 0, 0, 0, 5074, 5068, 1, 0, 0, 0, 5074, 5075, 1, 0, 0, 0, 5075, 5076, 1, 0, 0, 0, 5076, 5077, 5, 378, 0, 0, 5077, 5078, 5, 78, 0, 0, 5078, 439, 1, 0, 0, 0, 5079, 5080, 5, 90, 0, 0, 5080, 5081, 3, 722, 361, 0, 5081, 441, 1, 0, 0, 0, 5082, 5083, 5, 97, 0, 0, 5083, 5084, 3, 722, 361, 0, 5084, 443, 1, 0, 0, 0, 5085, 5086, 3, 722, 361, 0, 5086, 5087, 5, 878, 0, 0, 5087, 5089, 1, 0, 0, 0, 5088, 5085, 1, 0, 0, 0, 5088, 5089, 1, 0, 0, 0, 5089, 5090, 1, 0, 0, 0, 5090, 5092, 5, 106, 0, 0, 5091, 5093, 3, 464, 232, 0, 5092, 5091, 1, 0, 0, 0, 5093, 5094, 1, 0, 0, 0, 5094, 5092, 1, 0, 0, 0, 5094, 5095, 1, 0, 0, 0, 5095, 5096, 1, 0, 0, 0, 5096, 5097, 5, 378, 0, 0, 5097, 5099, 5, 106, 0, 0, 5098, 5100, 3, 722, 361, 0, 5099, 5098, 1, 0, 0, 0, 5099, 5100, 1, 0, 0, 0, 5100, 445, 1, 0, 0, 0, 5101, 5102, 3, 722, 361, 0, 5102, 5103, 5, 878, 0, 0, 5103, 5105, 1, 0, 0, 0, 5104, 5101, 1, 0, 0, 0, 5104, 5105, 1, 0, 0, 0, 5105, 5106, 1, 0, 0, 0, 5106, 5108, 5, 142, 0, 0, 5107, 5109, 3, 464, 232, 0, 5108, 5107, 1, 0, 0, 0, 5109, 5110, 1, 0, 0, 0, 5110, 5108, 1, 0, 0, 0, 5110, 5111, 1, 0, 0, 0, 5111, 5112, 1, 0, 0, 0, 5112, 5113, 5, 676, 0, 0, 5113, 5114, 3, 822, 411, 0, 5114, 5115, 5, 378, 0, 0, 5115, 5117, 5, 142, 0, 0, 5116, 5118, 3, 722, 361, 0, 5117, 5116, 1, 0, 0, 0, 5117, 5118, 1, 0, 0, 0, 5118, 447, 1, 0, 0, 0, 5119, 5120, 5, 148, 0, 0, 5120, 5121, 3, 822, 411, 0, 5121, 449, 1, 0, 0, 0, 5122, 5123, 3, 722, 361, 0, 5123, 5124, 5, 878, 0, 0, 5124, 5126, 1, 0, 0, 0, 5125, 5122, 1, 0, 0, 0, 5125, 5126, 1, 0, 0, 0, 5126, 5127, 1, 0, 0, 0, 5127, 5128, 5, 193, 0, 0, 5128, 5129, 3, 822, 411, 0, 5129, 5131, 5, 371, 0, 0, 5130, 5132, 3, 464, 232, 0, 5131, 5130, 1, 0, 0, 0, 5132, 5133, 1, 0, 0, 0, 5133, 5131, 1, 0, 0, 0, 5133, 5134, 1, 0, 0, 0, 5134, 5135, 1, 0, 0, 0, 5135, 5136, 5, 378, 0, 0, 5136, 5138, 5, 193, 0, 0, 5137, 5139, 3, 722, 361, 0, 5138, 5137, 1, 0, 0, 0, 5138, 5139, 1, 0, 0, 0, 5139, 451, 1, 0, 0, 0, 5140, 5141, 5, 334, 0, 0, 5141, 5156, 3, 722, 361, 0, 5142, 5147, 5, 64, 0, 0, 5143, 5145, 5, 501, 0, 0, 5144, 5143, 1, 0, 0, 0, 5144, 5145, 1, 0, 0, 0, 5145, 5146, 1, 0, 0, 0, 5146, 5148, 5, 68, 0, 0, 5147, 5144, 1, 0, 0, 0, 5147, 5148, 1, 0, 0, 0, 5148, 5149, 1, 0, 0, 0, 5149, 5150, 3, 722, 361, 0, 5150, 5151, 5, 88, 0, 0, 5151, 5152, 3, 720, 360, 0, 5152, 5156, 1, 0, 0, 0, 5153, 5154, 5, 516, 0, 0, 5154, 5156, 3, 722, 361, 0, 5155, 5140, 1, 0, 0, 0, 5155, 5142, 1, 0, 0, 0, 5155, 5153, 1, 0, 0, 0, 5156, 453, 1, 0, 0, 0, 5157, 5158, 5, 41, 0, 0, 5158, 5159, 3, 720, 360, 0, 5159, 5162, 3, 744, 372, 0, 5160, 5161, 5, 42, 0, 0, 5161, 5163, 3, 822, 411, 0, 5162, 5160, 1, 0, 0, 0, 5162, 5163, 1, 0, 0, 0, 5163, 455, 1, 0, 0, 0, 5164, 5165, 5, 41, 0, 0, 5165, 5166, 3, 722, 361, 0, 5166, 5167, 5, 30, 0, 0, 5167, 5174, 5, 65, 0, 0, 5168, 5175, 3, 730, 365, 0, 5169, 5171, 5, 164, 0, 0, 5170, 5172, 5, 682, 0, 0, 5171, 5170, 1, 0, 0, 0, 5171, 5172, 1, 0, 0, 0, 5172, 5173, 1, 0, 0, 0, 5173, 5175, 5, 882, 0, 0, 5174, 5168, 1, 0, 0, 0, 5174, 5169, 1, 0, 0, 0, 5175, 457, 1, 0, 0, 0, 5176, 5177, 5, 41, 0, 0, 5177, 5178, 3, 722, 361, 0, 5178, 5179, 5, 38, 0, 0, 5179, 5180, 5, 65, 0, 0, 5180, 5181, 3, 210, 105, 0, 5181, 459, 1, 0, 0, 0, 5182, 5183, 5, 41, 0, 0, 5183, 5184, 7, 79, 0, 0, 5184, 5185, 5, 417, 0, 0, 5185, 5186, 5, 65, 0, 0, 5186, 5191, 3, 462, 231, 0, 5187, 5188, 5, 868, 0, 0, 5188, 5190, 3, 462, 231, 0, 5189, 5187, 1, 0, 0, 0, 5190, 5193, 1, 0, 0, 0, 5191, 5189, 1, 0, 0, 0, 5191, 5192, 1, 0, 0, 0, 5192, 5194, 1, 0, 0, 0, 5193, 5191, 1, 0, 0, 0, 5194, 5195, 3, 432, 216, 0, 5195, 461, 1, 0, 0, 0, 5196, 5208, 3, 730, 365, 0, 5197, 5199, 5, 164, 0, 0, 5198, 5200, 5, 682, 0, 0, 5199, 5198, 1, 0, 0, 0, 5199, 5200, 1, 0, 0, 0, 5200, 5201, 1, 0, 0, 0, 5201, 5208, 5, 882, 0, 0, 5202, 5208, 3, 722, 361, 0, 5203, 5208, 5, 165, 0, 0, 5204, 5205, 5, 114, 0, 0, 5205, 5208, 5, 407, 0, 0, 5206, 5208, 5, 163, 0, 0, 5207, 5196, 1, 0, 0, 0, 5207, 5197, 1, 0, 0, 0, 5207, 5202, 1, 0, 0, 0, 5207, 5203, 1, 0, 0, 0, 5207, 5204, 1, 0, 0, 0, 5207, 5206, 1, 0, 0, 0, 5208, 463, 1, 0, 0, 0, 5209, 5212, 3, 18, 9, 0, 5210, 5212, 3, 4, 2, 0, 5211, 5209, 1, 0, 0, 0, 5211, 5210, 1, 0, 0, 0, 5212, 5213, 1, 0, 0, 0, 5213, 5214, 5, 869, 0, 0, 5214, 465, 1, 0, 0, 0, 5215, 5218, 5, 191, 0, 0, 5216, 5219, 3, 742, 371, 0, 5217, 5219, 3, 822, 411, 0, 5218, 5216, 1, 0, 0, 0, 5218, 5217, 1, 0, 0, 0, 5219, 5220, 1, 0, 0, 0, 5220, 5222, 5, 175, 0, 0, 5221, 5223, 3, 464, 232, 0, 5222, 5221, 1, 0, 0, 0, 5223, 5224, 1, 0, 0, 0, 5224, 5222, 1, 0, 0, 0, 5224, 5225, 1, 0, 0, 0, 5225, 467, 1, 0, 0, 0, 5226, 5227, 5, 54, 0, 0, 5227, 5228, 3, 822, 411, 0, 5228, 5230, 5, 175, 0, 0, 5229, 5231, 3, 464, 232, 0, 5230, 5229, 1, 0, 0, 0, 5231, 5232, 1, 0, 0, 0, 5232, 5230, 1, 0, 0, 0, 5232, 5233, 1, 0, 0, 0, 5233, 469, 1, 0, 0, 0, 5234, 5235, 5, 8, 0, 0, 5235, 5237, 5, 678, 0, 0, 5236, 5238, 3, 776, 388, 0, 5237, 5236, 1, 0, 0, 0, 5237, 5238, 1, 0, 0, 0, 5238, 5295, 1, 0, 0, 0, 5239, 5244, 3, 502, 251, 0, 5240, 5241, 5, 868, 0, 0, 5241, 5243, 3, 502, 251, 0, 5242, 5240, 1, 0, 0, 0, 5243, 5246, 1, 0, 0, 0, 5244, 5242, 1, 0, 0, 0, 5244, 5245, 1, 0, 0, 0, 5245, 5296, 1, 0, 0, 0, 5246, 5244, 1, 0, 0, 0, 5247, 5252, 3, 504, 252, 0, 5248, 5249, 5, 868, 0, 0, 5249, 5251, 3, 504, 252, 0, 5250, 5248, 1, 0, 0, 0, 5251, 5254, 1, 0, 0, 0, 5252, 5250, 1, 0, 0, 0, 5252, 5253, 1, 0, 0, 0, 5253, 5269, 1, 0, 0, 0, 5254, 5252, 1, 0, 0, 0, 5255, 5267, 5, 144, 0, 0, 5256, 5268, 5, 505, 0, 0, 5257, 5264, 3, 516, 258, 0, 5258, 5260, 5, 11, 0, 0, 5259, 5258, 1, 0, 0, 0, 5259, 5260, 1, 0, 0, 0, 5260, 5261, 1, 0, 0, 0, 5261, 5263, 3, 516, 258, 0, 5262, 5259, 1, 0, 0, 0, 5263, 5266, 1, 0, 0, 0, 5264, 5262, 1, 0, 0, 0, 5264, 5265, 1, 0, 0, 0, 5265, 5268, 1, 0, 0, 0, 5266, 5264, 1, 0, 0, 0, 5267, 5256, 1, 0, 0, 0, 5267, 5257, 1, 0, 0, 0, 5268, 5270, 1, 0, 0, 0, 5269, 5255, 1, 0, 0, 0, 5269, 5270, 1, 0, 0, 0, 5270, 5277, 1, 0, 0, 0, 5271, 5273, 5, 194, 0, 0, 5272, 5274, 3, 518, 259, 0, 5273, 5272, 1, 0, 0, 0, 5274, 5275, 1, 0, 0, 0, 5275, 5273, 1, 0, 0, 0, 5275, 5276, 1, 0, 0, 0, 5276, 5278, 1, 0, 0, 0, 5277, 5271, 1, 0, 0, 0, 5277, 5278, 1, 0, 0, 0, 5278, 5283, 1, 0, 0, 0, 5279, 5282, 3, 520, 260, 0, 5280, 5282, 3, 522, 261, 0, 5281, 5279, 1, 0, 0, 0, 5281, 5280, 1, 0, 0, 0, 5282, 5285, 1, 0, 0, 0, 5283, 5281, 1, 0, 0, 0, 5283, 5284, 1, 0, 0, 0, 5284, 5288, 1, 0, 0, 0, 5285, 5283, 1, 0, 0, 0, 5286, 5287, 7, 80, 0, 0, 5287, 5289, 5, 882, 0, 0, 5288, 5286, 1, 0, 0, 0, 5288, 5289, 1, 0, 0, 0, 5289, 5296, 1, 0, 0, 0, 5290, 5291, 3, 666, 333, 0, 5291, 5292, 5, 42, 0, 0, 5292, 5293, 5, 582, 0, 0, 5293, 5294, 3, 478, 239, 0, 5294, 5296, 1, 0, 0, 0, 5295, 5239, 1, 0, 0, 0, 5295, 5247, 1, 0, 0, 0, 5295, 5290, 1, 0, 0, 0, 5296, 471, 1, 0, 0, 0, 5297, 5298, 5, 34, 0, 0, 5298, 5300, 5, 678, 0, 0, 5299, 5301, 3, 778, 389, 0, 5300, 5299, 1, 0, 0, 0, 5300, 5301, 1, 0, 0, 0, 5301, 5302, 1, 0, 0, 0, 5302, 5304, 3, 700, 350, 0, 5303, 5305, 3, 506, 253, 0, 5304, 5303, 1, 0, 0, 0, 5304, 5305, 1, 0, 0, 0, 5305, 5313, 1, 0, 0, 0, 5306, 5307, 5, 868, 0, 0, 5307, 5309, 3, 700, 350, 0, 5308, 5310, 3, 506, 253, 0, 5309, 5308, 1, 0, 0, 0, 5309, 5310, 1, 0, 0, 0, 5310, 5312, 1, 0, 0, 0, 5311, 5306, 1, 0, 0, 0, 5312, 5315, 1, 0, 0, 0, 5313, 5311, 1, 0, 0, 0, 5313, 5314, 1, 0, 0, 0, 5314, 5319, 1, 0, 0, 0, 5315, 5313, 1, 0, 0, 0, 5316, 5317, 5, 42, 0, 0, 5317, 5318, 5, 582, 0, 0, 5318, 5320, 3, 478, 239, 0, 5319, 5316, 1, 0, 0, 0, 5319, 5320, 1, 0, 0, 0, 5320, 5335, 1, 0, 0, 0, 5321, 5333, 5, 144, 0, 0, 5322, 5334, 5, 505, 0, 0, 5323, 5330, 3, 516, 258, 0, 5324, 5326, 5, 11, 0, 0, 5325, 5324, 1, 0, 0, 0, 5325, 5326, 1, 0, 0, 0, 5326, 5327, 1, 0, 0, 0, 5327, 5329, 3, 516, 258, 0, 5328, 5325, 1, 0, 0, 0, 5329, 5332, 1, 0, 0, 0, 5330, 5328, 1, 0, 0, 0, 5330, 5331, 1, 0, 0, 0, 5331, 5334, 1, 0, 0, 0, 5332, 5330, 1, 0, 0, 0, 5333, 5322, 1, 0, 0, 0, 5333, 5323, 1, 0, 0, 0, 5334, 5336, 1, 0, 0, 0, 5335, 5321, 1, 0, 0, 0, 5335, 5336, 1, 0, 0, 0, 5336, 5343, 1, 0, 0, 0, 5337, 5339, 5, 194, 0, 0, 5338, 5340, 3, 518, 259, 0, 5339, 5338, 1, 0, 0, 0, 5340, 5341, 1, 0, 0, 0, 5341, 5339, 1, 0, 0, 0, 5341, 5342, 1, 0, 0, 0, 5342, 5344, 1, 0, 0, 0, 5343, 5337, 1, 0, 0, 0, 5343, 5344, 1, 0, 0, 0, 5344, 5349, 1, 0, 0, 0, 5345, 5348, 3, 520, 260, 0, 5346, 5348, 3, 522, 261, 0, 5347, 5345, 1, 0, 0, 0, 5347, 5346, 1, 0, 0, 0, 5348, 5351, 1, 0, 0, 0, 5349, 5347, 1, 0, 0, 0, 5349, 5350, 1, 0, 0, 0, 5350, 5354, 1, 0, 0, 0, 5351, 5349, 1, 0, 0, 0, 5352, 5353, 7, 80, 0, 0, 5353, 5355, 5, 882, 0, 0, 5354, 5352, 1, 0, 0, 0, 5354, 5355, 1, 0, 0, 0, 5355, 473, 1, 0, 0, 0, 5356, 5357, 5, 51, 0, 0, 5357, 5359, 5, 678, 0, 0, 5358, 5360, 3, 776, 388, 0, 5359, 5358, 1, 0, 0, 0, 5359, 5360, 1, 0, 0, 0, 5360, 5361, 1, 0, 0, 0, 5361, 5366, 3, 700, 350, 0, 5362, 5363, 5, 868, 0, 0, 5363, 5365, 3, 700, 350, 0, 5364, 5362, 1, 0, 0, 0, 5365, 5368, 1, 0, 0, 0, 5366, 5364, 1, 0, 0, 0, 5366, 5367, 1, 0, 0, 0, 5367, 475, 1, 0, 0, 0, 5368, 5366, 1, 0, 0, 0, 5369, 5370, 5, 73, 0, 0, 5370, 5375, 3, 530, 265, 0, 5371, 5372, 5, 868, 0, 0, 5372, 5374, 3, 530, 265, 0, 5373, 5371, 1, 0, 0, 0, 5374, 5377, 1, 0, 0, 0, 5375, 5373, 1, 0, 0, 0, 5375, 5376, 1, 0, 0, 0, 5376, 5378, 1, 0, 0, 0, 5377, 5375, 1, 0, 0, 0, 5378, 5380, 5, 119, 0, 0, 5379, 5381, 3, 498, 249, 0, 5380, 5379, 1, 0, 0, 0, 5380, 5381, 1, 0, 0, 0, 5381, 5382, 1, 0, 0, 0, 5382, 5383, 3, 534, 267, 0, 5383, 5393, 5, 176, 0, 0, 5384, 5389, 3, 510, 255, 0, 5385, 5386, 5, 868, 0, 0, 5386, 5388, 3, 510, 255, 0, 5387, 5385, 1, 0, 0, 0, 5388, 5391, 1, 0, 0, 0, 5389, 5387, 1, 0, 0, 0, 5389, 5390, 1, 0, 0, 0, 5390, 5394, 1, 0, 0, 0, 5391, 5389, 1, 0, 0, 0, 5392, 5394, 3, 664, 332, 0, 5393, 5384, 1, 0, 0, 0, 5393, 5392, 1, 0, 0, 0, 5394, 5409, 1, 0, 0, 0, 5395, 5407, 5, 144, 0, 0, 5396, 5408, 5, 505, 0, 0, 5397, 5404, 3, 516, 258, 0, 5398, 5400, 5, 11, 0, 0, 5399, 5398, 1, 0, 0, 0, 5399, 5400, 1, 0, 0, 0, 5400, 5401, 1, 0, 0, 0, 5401, 5403, 3, 516, 258, 0, 5402, 5399, 1, 0, 0, 0, 5403, 5406, 1, 0, 0, 0, 5404, 5402, 1, 0, 0, 0, 5404, 5405, 1, 0, 0, 0, 5405, 5408, 1, 0, 0, 0, 5406, 5404, 1, 0, 0, 0, 5407, 5396, 1, 0, 0, 0, 5407, 5397, 1, 0, 0, 0, 5408, 5410, 1, 0, 0, 0, 5409, 5395, 1, 0, 0, 0, 5409, 5410, 1, 0, 0, 0, 5410, 5420, 1, 0, 0, 0, 5411, 5417, 5, 194, 0, 0, 5412, 5413, 5, 73, 0, 0, 5413, 5416, 5, 121, 0, 0, 5414, 5416, 3, 518, 259, 0, 5415, 5412, 1, 0, 0, 0, 5415, 5414, 1, 0, 0, 0, 5416, 5419, 1, 0, 0, 0, 5417, 5415, 1, 0, 0, 0, 5417, 5418, 1, 0, 0, 0, 5418, 5421, 1, 0, 0, 0, 5419, 5417, 1, 0, 0, 0, 5420, 5411, 1, 0, 0, 0, 5420, 5421, 1, 0, 0, 0, 5421, 5429, 1, 0, 0, 0, 5422, 5423, 5, 13, 0, 0, 5423, 5427, 3, 700, 350, 0, 5424, 5425, 5, 194, 0, 0, 5425, 5426, 5, 582, 0, 0, 5426, 5428, 3, 478, 239, 0, 5427, 5424, 1, 0, 0, 0, 5427, 5428, 1, 0, 0, 0, 5428, 5430, 1, 0, 0, 0, 5429, 5422, 1, 0, 0, 0, 5429, 5430, 1, 0, 0, 0, 5430, 5459, 1, 0, 0, 0, 5431, 5434, 5, 73, 0, 0, 5432, 5433, 5, 547, 0, 0, 5433, 5435, 5, 119, 0, 0, 5434, 5432, 1, 0, 0, 0, 5434, 5435, 1, 0, 0, 0, 5435, 5436, 1, 0, 0, 0, 5436, 5441, 3, 666, 333, 0, 5437, 5438, 5, 868, 0, 0, 5438, 5440, 3, 666, 333, 0, 5439, 5437, 1, 0, 0, 0, 5440, 5443, 1, 0, 0, 0, 5441, 5439, 1, 0, 0, 0, 5441, 5442, 1, 0, 0, 0, 5442, 5444, 1, 0, 0, 0, 5443, 5441, 1, 0, 0, 0, 5444, 5445, 5, 176, 0, 0, 5445, 5450, 3, 666, 333, 0, 5446, 5447, 5, 868, 0, 0, 5447, 5449, 3, 666, 333, 0, 5448, 5446, 1, 0, 0, 0, 5449, 5452, 1, 0, 0, 0, 5450, 5448, 1, 0, 0, 0, 5450, 5451, 1, 0, 0, 0, 5451, 5456, 1, 0, 0, 0, 5452, 5450, 1, 0, 0, 0, 5453, 5454, 5, 194, 0, 0, 5454, 5455, 5, 704, 0, 0, 5455, 5457, 5, 121, 0, 0, 5456, 5453, 1, 0, 0, 0, 5456, 5457, 1, 0, 0, 0, 5457, 5459, 1, 0, 0, 0, 5458, 5369, 1, 0, 0, 0, 5458, 5431, 1, 0, 0, 0, 5459, 477, 1, 0, 0, 0, 5460, 5469, 5, 42, 0, 0, 5461, 5469, 5, 505, 0, 0, 5462, 5465, 5, 7, 0, 0, 5463, 5464, 5, 59, 0, 0, 5464, 5466, 3, 664, 332, 0, 5465, 5463, 1, 0, 0, 0, 5465, 5466, 1, 0, 0, 0, 5466, 5469, 1, 0, 0, 0, 5467, 5469, 3, 664, 332, 0, 5468, 5460, 1, 0, 0, 0, 5468, 5461, 1, 0, 0, 0, 5468, 5462, 1, 0, 0, 0, 5468, 5467, 1, 0, 0, 0, 5469, 479, 1, 0, 0, 0, 5470, 5471, 5, 73, 0, 0, 5471, 5472, 5, 547, 0, 0, 5472, 5473, 5, 119, 0, 0, 5473, 5474, 3, 700, 350, 0, 5474, 5475, 5, 176, 0, 0, 5475, 5480, 3, 700, 350, 0, 5476, 5477, 5, 868, 0, 0, 5477, 5479, 3, 700, 350, 0, 5478, 5476, 1, 0, 0, 0, 5479, 5482, 1, 0, 0, 0, 5480, 5478, 1, 0, 0, 0, 5480, 5481, 1, 0, 0, 0, 5481, 5486, 1, 0, 0, 0, 5482, 5480, 1, 0, 0, 0, 5483, 5484, 5, 194, 0, 0, 5484, 5485, 5, 73, 0, 0, 5485, 5487, 5, 121, 0, 0, 5486, 5483, 1, 0, 0, 0, 5486, 5487, 1, 0, 0, 0, 5487, 481, 1, 0, 0, 0, 5488, 5489, 5, 8, 0, 0, 5489, 5490, 5, 739, 0, 0, 5490, 5491, 5, 74, 0, 0, 5491, 5497, 3, 656, 328, 0, 5492, 5494, 5, 190, 0, 0, 5493, 5495, 5, 857, 0, 0, 5494, 5493, 1, 0, 0, 0, 5494, 5495, 1, 0, 0, 0, 5495, 5496, 1, 0, 0, 0, 5496, 5498, 3, 490, 245, 0, 5497, 5492, 1, 0, 0, 0, 5497, 5498, 1, 0, 0, 0, 5498, 5504, 1, 0, 0, 0, 5499, 5501, 5, 837, 0, 0, 5500, 5502, 5, 857, 0, 0, 5501, 5500, 1, 0, 0, 0, 5501, 5502, 1, 0, 0, 0, 5502, 5503, 1, 0, 0, 0, 5503, 5505, 3, 730, 365, 0, 5504, 5499, 1, 0, 0, 0, 5504, 5505, 1, 0, 0, 0, 5505, 5510, 1, 0, 0, 0, 5506, 5508, 7, 39, 0, 0, 5507, 5509, 5, 66, 0, 0, 5508, 5507, 1, 0, 0, 0, 5508, 5509, 1, 0, 0, 0, 5509, 5511, 1, 0, 0, 0, 5510, 5506, 1, 0, 0, 0, 5510, 5511, 1, 0, 0, 0, 5511, 483, 1, 0, 0, 0, 5512, 5513, 5, 34, 0, 0, 5513, 5514, 5, 739, 0, 0, 5514, 5515, 5, 74, 0, 0, 5515, 5516, 3, 654, 327, 0, 5516, 5517, 5, 839, 0, 0, 5517, 5518, 5, 857, 0, 0, 5518, 5524, 7, 81, 0, 0, 5519, 5521, 5, 190, 0, 0, 5520, 5522, 5, 857, 0, 0, 5521, 5520, 1, 0, 0, 0, 5521, 5522, 1, 0, 0, 0, 5522, 5523, 1, 0, 0, 0, 5523, 5525, 3, 490, 245, 0, 5524, 5519, 1, 0, 0, 0, 5524, 5525, 1, 0, 0, 0, 5525, 5531, 1, 0, 0, 0, 5526, 5528, 5, 837, 0, 0, 5527, 5529, 5, 857, 0, 0, 5528, 5527, 1, 0, 0, 0, 5528, 5529, 1, 0, 0, 0, 5529, 5530, 1, 0, 0, 0, 5530, 5532, 3, 730, 365, 0, 5531, 5526, 1, 0, 0, 0, 5531, 5532, 1, 0, 0, 0, 5532, 5534, 1, 0, 0, 0, 5533, 5535, 7, 39, 0, 0, 5534, 5533, 1, 0, 0, 0, 5534, 5535, 1, 0, 0, 0, 5535, 485, 1, 0, 0, 0, 5536, 5537, 5, 51, 0, 0, 5537, 5538, 5, 739, 0, 0, 5538, 5539, 5, 74, 0, 0, 5539, 5541, 3, 656, 328, 0, 5540, 5542, 5, 66, 0, 0, 5541, 5540, 1, 0, 0, 0, 5541, 5542, 1, 0, 0, 0, 5542, 487, 1, 0, 0, 0, 5543, 5544, 5, 155, 0, 0, 5544, 5545, 5, 739, 0, 0, 5545, 5546, 5, 74, 0, 0, 5546, 5556, 3, 656, 328, 0, 5547, 5548, 5, 65, 0, 0, 5548, 5553, 3, 730, 365, 0, 5549, 5550, 5, 868, 0, 0, 5550, 5552, 3, 730, 365, 0, 5551, 5549, 1, 0, 0, 0, 5552, 5555, 1, 0, 0, 0, 5553, 5551, 1, 0, 0, 0, 5553, 5554, 1, 0, 0, 0, 5554, 5557, 1, 0, 0, 0, 5555, 5553, 1, 0, 0, 0, 5556, 5547, 1, 0, 0, 0, 5556, 5557, 1, 0, 0, 0, 5557, 489, 1, 0, 0, 0, 5558, 5564, 3, 730, 365, 0, 5559, 5560, 3, 730, 365, 0, 5560, 5561, 5, 854, 0, 0, 5561, 5562, 3, 730, 365, 0, 5562, 5564, 1, 0, 0, 0, 5563, 5558, 1, 0, 0, 0, 5563, 5559, 1, 0, 0, 0, 5564, 5569, 1, 0, 0, 0, 5565, 5566, 5, 868, 0, 0, 5566, 5568, 3, 490, 245, 0, 5567, 5565, 1, 0, 0, 0, 5568, 5571, 1, 0, 0, 0, 5569, 5567, 1, 0, 0, 0, 5569, 5570, 1, 0, 0, 0, 5570, 491, 1, 0, 0, 0, 5571, 5569, 1, 0, 0, 0, 5572, 5573, 5, 141, 0, 0, 5573, 5574, 5, 678, 0, 0, 5574, 5579, 3, 536, 268, 0, 5575, 5576, 5, 868, 0, 0, 5576, 5578, 3, 536, 268, 0, 5577, 5575, 1, 0, 0, 0, 5578, 5581, 1, 0, 0, 0, 5579, 5577, 1, 0, 0, 0, 5579, 5580, 1, 0, 0, 0, 5580, 493, 1, 0, 0, 0, 5581, 5579, 1, 0, 0, 0, 5582, 5584, 5, 149, 0, 0, 5583, 5585, 3, 776, 388, 0, 5584, 5583, 1, 0, 0, 0, 5584, 5585, 1, 0, 0, 0, 5585, 5586, 1, 0, 0, 0, 5586, 5591, 3, 530, 265, 0, 5587, 5588, 5, 868, 0, 0, 5588, 5590, 3, 530, 265, 0, 5589, 5587, 1, 0, 0, 0, 5590, 5593, 1, 0, 0, 0, 5591, 5589, 1, 0, 0, 0, 5591, 5592, 1, 0, 0, 0, 5592, 5594, 1, 0, 0, 0, 5593, 5591, 1, 0, 0, 0, 5594, 5596, 5, 119, 0, 0, 5595, 5597, 3, 498, 249, 0, 5596, 5595, 1, 0, 0, 0, 5596, 5597, 1, 0, 0, 0, 5597, 5598, 1, 0, 0, 0, 5598, 5599, 3, 534, 267, 0, 5599, 5600, 5, 68, 0, 0, 5600, 5602, 3, 664, 332, 0, 5601, 5603, 3, 496, 248, 0, 5602, 5601, 1, 0, 0, 0, 5602, 5603, 1, 0, 0, 0, 5603, 5635, 1, 0, 0, 0, 5604, 5606, 5, 149, 0, 0, 5605, 5607, 3, 776, 388, 0, 5606, 5605, 1, 0, 0, 0, 5606, 5607, 1, 0, 0, 0, 5607, 5608, 1, 0, 0, 0, 5608, 5610, 5, 7, 0, 0, 5609, 5611, 5, 734, 0, 0, 5610, 5609, 1, 0, 0, 0, 5610, 5611, 1, 0, 0, 0, 5611, 5612, 1, 0, 0, 0, 5612, 5613, 5, 868, 0, 0, 5613, 5614, 5, 73, 0, 0, 5614, 5615, 5, 121, 0, 0, 5615, 5616, 5, 68, 0, 0, 5616, 5618, 3, 664, 332, 0, 5617, 5619, 3, 496, 248, 0, 5618, 5617, 1, 0, 0, 0, 5618, 5619, 1, 0, 0, 0, 5619, 5635, 1, 0, 0, 0, 5620, 5622, 5, 149, 0, 0, 5621, 5623, 3, 776, 388, 0, 5622, 5621, 1, 0, 0, 0, 5622, 5623, 1, 0, 0, 0, 5623, 5626, 1, 0, 0, 0, 5624, 5625, 5, 547, 0, 0, 5625, 5627, 5, 119, 0, 0, 5626, 5624, 1, 0, 0, 0, 5626, 5627, 1, 0, 0, 0, 5627, 5628, 1, 0, 0, 0, 5628, 5629, 3, 664, 332, 0, 5629, 5630, 5, 68, 0, 0, 5630, 5632, 3, 664, 332, 0, 5631, 5633, 3, 496, 248, 0, 5632, 5631, 1, 0, 0, 0, 5632, 5633, 1, 0, 0, 0, 5633, 5635, 1, 0, 0, 0, 5634, 5582, 1, 0, 0, 0, 5634, 5604, 1, 0, 0, 0, 5634, 5620, 1, 0, 0, 0, 5635, 495, 1, 0, 0, 0, 5636, 5637, 5, 79, 0, 0, 5637, 5638, 5, 674, 0, 0, 5638, 5639, 5, 678, 0, 0, 5639, 497, 1, 0, 0, 0, 5640, 5641, 7, 82, 0, 0, 5641, 499, 1, 0, 0, 0, 5642, 5643, 5, 155, 0, 0, 5643, 5646, 5, 529, 0, 0, 5644, 5645, 5, 65, 0, 0, 5645, 5647, 3, 700, 350, 0, 5646, 5644, 1, 0, 0, 0, 5646, 5647, 1, 0, 0, 0, 5647, 5648, 1, 0, 0, 0, 5648, 5651, 5, 857, 0, 0, 5649, 5652, 3, 816, 408, 0, 5650, 5652, 5, 882, 0, 0, 5651, 5649, 1, 0, 0, 0, 5651, 5650, 1, 0, 0, 0, 5652, 5675, 1, 0, 0, 0, 5653, 5654, 5, 155, 0, 0, 5654, 5657, 5, 529, 0, 0, 5655, 5656, 5, 65, 0, 0, 5656, 5658, 3, 700, 350, 0, 5657, 5655, 1, 0, 0, 0, 5657, 5658, 1, 0, 0, 0, 5658, 5663, 1, 0, 0, 0, 5659, 5660, 5, 176, 0, 0, 5660, 5664, 5, 829, 0, 0, 5661, 5662, 5, 857, 0, 0, 5662, 5664, 5, 882, 0, 0, 5663, 5659, 1, 0, 0, 0, 5663, 5661, 1, 0, 0, 0, 5664, 5667, 1, 0, 0, 0, 5665, 5666, 5, 143, 0, 0, 5666, 5668, 5, 882, 0, 0, 5667, 5665, 1, 0, 0, 0, 5667, 5668, 1, 0, 0, 0, 5668, 5672, 1, 0, 0, 0, 5669, 5670, 5, 147, 0, 0, 5670, 5671, 5, 36, 0, 0, 5671, 5673, 5, 529, 0, 0, 5672, 5669, 1, 0, 0, 0, 5672, 5673, 1, 0, 0, 0, 5673, 5675, 1, 0, 0, 0, 5674, 5642, 1, 0, 0, 0, 5674, 5653, 1, 0, 0, 0, 5675, 501, 1, 0, 0, 0, 5676, 5677, 3, 700, 350, 0, 5677, 5678, 3, 520, 260, 0, 5678, 503, 1, 0, 0, 0, 5679, 5705, 3, 700, 350, 0, 5680, 5681, 5, 423, 0, 0, 5681, 5682, 5, 20, 0, 0, 5682, 5683, 5, 882, 0, 0, 5683, 5706, 3, 512, 256, 0, 5684, 5685, 5, 423, 0, 0, 5685, 5686, 5, 20, 0, 0, 5686, 5687, 5, 829, 0, 0, 5687, 5688, 5, 529, 0, 0, 5688, 5706, 3, 512, 256, 0, 5689, 5690, 5, 423, 0, 0, 5690, 5691, 5, 194, 0, 0, 5691, 5706, 3, 514, 257, 0, 5692, 5693, 5, 369, 0, 0, 5693, 5694, 5, 511, 0, 0, 5694, 5706, 5, 529, 0, 0, 5695, 5696, 7, 83, 0, 0, 5696, 5698, 3, 528, 264, 0, 5697, 5699, 3, 524, 262, 0, 5698, 5697, 1, 0, 0, 0, 5698, 5699, 1, 0, 0, 0, 5699, 5701, 1, 0, 0, 0, 5700, 5695, 1, 0, 0, 0, 5701, 5702, 1, 0, 0, 0, 5702, 5700, 1, 0, 0, 0, 5702, 5703, 1, 0, 0, 0, 5703, 5706, 1, 0, 0, 0, 5704, 5706, 3, 526, 263, 0, 5705, 5680, 1, 0, 0, 0, 5705, 5684, 1, 0, 0, 0, 5705, 5689, 1, 0, 0, 0, 5705, 5692, 1, 0, 0, 0, 5705, 5700, 1, 0, 0, 0, 5705, 5704, 1, 0, 0, 0, 5705, 5706, 1, 0, 0, 0, 5706, 505, 1, 0, 0, 0, 5707, 5708, 5, 423, 0, 0, 5708, 5714, 5, 20, 0, 0, 5709, 5715, 5, 882, 0, 0, 5710, 5711, 5, 829, 0, 0, 5711, 5715, 5, 529, 0, 0, 5712, 5713, 5, 529, 0, 0, 5713, 5715, 5, 882, 0, 0, 5714, 5709, 1, 0, 0, 0, 5714, 5710, 1, 0, 0, 0, 5714, 5712, 1, 0, 0, 0, 5715, 5718, 1, 0, 0, 0, 5716, 5717, 5, 11, 0, 0, 5717, 5719, 3, 506, 253, 0, 5718, 5716, 1, 0, 0, 0, 5718, 5719, 1, 0, 0, 0, 5719, 5744, 1, 0, 0, 0, 5720, 5721, 5, 423, 0, 0, 5721, 5722, 5, 194, 0, 0, 5722, 5731, 3, 722, 361, 0, 5723, 5727, 5, 20, 0, 0, 5724, 5728, 5, 882, 0, 0, 5725, 5726, 5, 829, 0, 0, 5726, 5728, 5, 529, 0, 0, 5727, 5724, 1, 0, 0, 0, 5727, 5725, 1, 0, 0, 0, 5728, 5732, 1, 0, 0, 0, 5729, 5730, 5, 13, 0, 0, 5730, 5732, 5, 882, 0, 0, 5731, 5723, 1, 0, 0, 0, 5731, 5729, 1, 0, 0, 0, 5731, 5732, 1, 0, 0, 0, 5732, 5735, 1, 0, 0, 0, 5733, 5734, 5, 11, 0, 0, 5734, 5736, 3, 506, 253, 0, 5735, 5733, 1, 0, 0, 0, 5735, 5736, 1, 0, 0, 0, 5736, 5744, 1, 0, 0, 0, 5737, 5738, 5, 423, 0, 0, 5738, 5739, 5, 194, 0, 0, 5739, 5741, 3, 722, 361, 0, 5740, 5742, 3, 508, 254, 0, 5741, 5740, 1, 0, 0, 0, 5741, 5742, 1, 0, 0, 0, 5742, 5744, 1, 0, 0, 0, 5743, 5707, 1, 0, 0, 0, 5743, 5720, 1, 0, 0, 0, 5743, 5737, 1, 0, 0, 0, 5744, 507, 1, 0, 0, 0, 5745, 5746, 5, 427, 0, 0, 5746, 5747, 5, 708, 0, 0, 5747, 5748, 5, 423, 0, 0, 5748, 5752, 5, 20, 0, 0, 5749, 5750, 5, 829, 0, 0, 5750, 5753, 5, 529, 0, 0, 5751, 5753, 5, 882, 0, 0, 5752, 5749, 1, 0, 0, 0, 5752, 5751, 1, 0, 0, 0, 5753, 5763, 1, 0, 0, 0, 5754, 5755, 5, 427, 0, 0, 5755, 5756, 5, 708, 0, 0, 5756, 5757, 5, 423, 0, 0, 5757, 5758, 5, 194, 0, 0, 5758, 5759, 3, 722, 361, 0, 5759, 5760, 5, 13, 0, 0, 5760, 5761, 5, 882, 0, 0, 5761, 5763, 1, 0, 0, 0, 5762, 5745, 1, 0, 0, 0, 5762, 5754, 1, 0, 0, 0, 5763, 509, 1, 0, 0, 0, 5764, 5765, 3, 700, 350, 0, 5765, 5766, 5, 423, 0, 0, 5766, 5767, 5, 20, 0, 0, 5767, 5768, 5, 529, 0, 0, 5768, 5769, 5, 882, 0, 0, 5769, 5790, 1, 0, 0, 0, 5770, 5771, 3, 700, 350, 0, 5771, 5772, 5, 423, 0, 0, 5772, 5773, 5, 20, 0, 0, 5773, 5774, 5, 829, 0, 0, 5774, 5775, 5, 529, 0, 0, 5775, 5776, 3, 512, 256, 0, 5776, 5790, 1, 0, 0, 0, 5777, 5778, 3, 700, 350, 0, 5778, 5779, 5, 423, 0, 0, 5779, 5780, 5, 20, 0, 0, 5780, 5781, 5, 882, 0, 0, 5781, 5782, 3, 512, 256, 0, 5782, 5790, 1, 0, 0, 0, 5783, 5784, 3, 700, 350, 0, 5784, 5785, 5, 423, 0, 0, 5785, 5786, 5, 194, 0, 0, 5786, 5787, 3, 514, 257, 0, 5787, 5790, 1, 0, 0, 0, 5788, 5790, 3, 700, 350, 0, 5789, 5764, 1, 0, 0, 0, 5789, 5770, 1, 0, 0, 0, 5789, 5777, 1, 0, 0, 0, 5789, 5783, 1, 0, 0, 0, 5789, 5788, 1, 0, 0, 0, 5790, 511, 1, 0, 0, 0, 5791, 5792, 5, 143, 0, 0, 5792, 5794, 5, 882, 0, 0, 5793, 5791, 1, 0, 0, 0, 5793, 5794, 1, 0, 0, 0, 5794, 5798, 1, 0, 0, 0, 5795, 5796, 5, 147, 0, 0, 5796, 5797, 5, 36, 0, 0, 5797, 5799, 5, 529, 0, 0, 5798, 5795, 1, 0, 0, 0, 5798, 5799, 1, 0, 0, 0, 5799, 513, 1, 0, 0, 0, 5800, 5808, 3, 722, 361, 0, 5801, 5805, 7, 84, 0, 0, 5802, 5806, 5, 882, 0, 0, 5803, 5804, 5, 829, 0, 0, 5804, 5806, 5, 529, 0, 0, 5805, 5802, 1, 0, 0, 0, 5805, 5803, 1, 0, 0, 0, 5806, 5807, 1, 0, 0, 0, 5807, 5809, 3, 512, 256, 0, 5808, 5801, 1, 0, 0, 0, 5808, 5809, 1, 0, 0, 0, 5809, 5815, 1, 0, 0, 0, 5810, 5811, 3, 722, 361, 0, 5811, 5812, 5, 188, 0, 0, 5812, 5813, 3, 816, 408, 0, 5813, 5815, 1, 0, 0, 0, 5814, 5800, 1, 0, 0, 0, 5814, 5810, 1, 0, 0, 0, 5815, 515, 1, 0, 0, 0, 5816, 5825, 5, 169, 0, 0, 5817, 5825, 5, 693, 0, 0, 5818, 5819, 5, 331, 0, 0, 5819, 5825, 5, 882, 0, 0, 5820, 5821, 5, 441, 0, 0, 5821, 5825, 5, 882, 0, 0, 5822, 5823, 5, 651, 0, 0, 5823, 5825, 5, 882, 0, 0, 5824, 5816, 1, 0, 0, 0, 5824, 5817, 1, 0, 0, 0, 5824, 5818, 1, 0, 0, 0, 5824, 5820, 1, 0, 0, 0, 5824, 5822, 1, 0, 0, 0, 5825, 517, 1, 0, 0, 0, 5826, 5827, 5, 479, 0, 0, 5827, 5835, 3, 730, 365, 0, 5828, 5829, 5, 482, 0, 0, 5829, 5835, 3, 730, 365, 0, 5830, 5831, 5, 478, 0, 0, 5831, 5835, 3, 730, 365, 0, 5832, 5833, 5, 483, 0, 0, 5833, 5835, 3, 730, 365, 0, 5834, 5826, 1, 0, 0, 0, 5834, 5828, 1, 0, 0, 0, 5834, 5830, 1, 0, 0, 0, 5834, 5832, 1, 0, 0, 0, 5835, 519, 1, 0, 0, 0, 5836, 5837, 5, 529, 0, 0, 5837, 5844, 5, 390, 0, 0, 5838, 5845, 5, 42, 0, 0, 5839, 5845, 5, 500, 0, 0, 5840, 5841, 5, 87, 0, 0, 5841, 5842, 3, 730, 365, 0, 5842, 5843, 5, 698, 0, 0, 5843, 5845, 1, 0, 0, 0, 5844, 5838, 1, 0, 0, 0, 5844, 5839, 1, 0, 0, 0, 5844, 5840, 1, 0, 0, 0, 5844, 5845, 1, 0, 0, 0, 5845, 5875, 1, 0, 0, 0, 5846, 5847, 5, 529, 0, 0, 5847, 5850, 5, 420, 0, 0, 5848, 5851, 5, 42, 0, 0, 5849, 5851, 3, 730, 365, 0, 5850, 5848, 1, 0, 0, 0, 5850, 5849, 1, 0, 0, 0, 5851, 5875, 1, 0, 0, 0, 5852, 5853, 5, 529, 0, 0, 5853, 5854, 5, 581, 0, 0, 5854, 5859, 5, 87, 0, 0, 5855, 5860, 5, 42, 0, 0, 5856, 5857, 3, 730, 365, 0, 5857, 5858, 5, 698, 0, 0, 5858, 5860, 1, 0, 0, 0, 5859, 5855, 1, 0, 0, 0, 5859, 5856, 1, 0, 0, 0, 5860, 5875, 1, 0, 0, 0, 5861, 5862, 5, 529, 0, 0, 5862, 5863, 5, 144, 0, 0, 5863, 5865, 5, 36, 0, 0, 5864, 5866, 7, 85, 0, 0, 5865, 5864, 1, 0, 0, 0, 5865, 5866, 1, 0, 0, 0, 5866, 5875, 1, 0, 0, 0, 5867, 5868, 5, 395, 0, 0, 5868, 5875, 3, 730, 365, 0, 5869, 5872, 5, 530, 0, 0, 5870, 5873, 3, 730, 365, 0, 5871, 5873, 5, 669, 0, 0, 5872, 5870, 1, 0, 0, 0, 5872, 5871, 1, 0, 0, 0, 5873, 5875, 1, 0, 0, 0, 5874, 5836, 1, 0, 0, 0, 5874, 5846, 1, 0, 0, 0, 5874, 5852, 1, 0, 0, 0, 5874, 5861, 1, 0, 0, 0, 5874, 5867, 1, 0, 0, 0, 5874, 5869, 1, 0, 0, 0, 5875, 521, 1, 0, 0, 0, 5876, 5877, 5, 304, 0, 0, 5877, 5878, 7, 86, 0, 0, 5878, 523, 1, 0, 0, 0, 5879, 5882, 5, 423, 0, 0, 5880, 5881, 5, 194, 0, 0, 5881, 5883, 3, 722, 361, 0, 5882, 5880, 1, 0, 0, 0, 5882, 5883, 1, 0, 0, 0, 5883, 5892, 1, 0, 0, 0, 5884, 5888, 5, 20, 0, 0, 5885, 5889, 5, 882, 0, 0, 5886, 5887, 5, 829, 0, 0, 5887, 5889, 5, 529, 0, 0, 5888, 5885, 1, 0, 0, 0, 5888, 5886, 1, 0, 0, 0, 5889, 5893, 1, 0, 0, 0, 5890, 5891, 5, 13, 0, 0, 5891, 5893, 5, 882, 0, 0, 5892, 5884, 1, 0, 0, 0, 5892, 5890, 1, 0, 0, 0, 5893, 525, 1, 0, 0, 0, 5894, 5895, 3, 528, 264, 0, 5895, 5896, 5, 429, 0, 0, 5896, 5897, 5, 555, 0, 0, 5897, 5910, 1, 0, 0, 0, 5898, 5899, 3, 528, 264, 0, 5899, 5900, 5, 401, 0, 0, 5900, 5901, 5, 555, 0, 0, 5901, 5902, 5, 155, 0, 0, 5902, 5903, 5, 330, 0, 0, 5903, 5904, 5, 13, 0, 0, 5904, 5905, 5, 882, 0, 0, 5905, 5910, 1, 0, 0, 0, 5906, 5907, 3, 528, 264, 0, 5907, 5908, 5, 675, 0, 0, 5908, 5910, 1, 0, 0, 0, 5909, 5894, 1, 0, 0, 0, 5909, 5898, 1, 0, 0, 0, 5909, 5906, 1, 0, 0, 0, 5910, 527, 1, 0, 0, 0, 5911, 5912, 7, 87, 0, 0, 5912, 5913, 5, 394, 0, 0, 5913, 529, 1, 0, 0, 0, 5914, 5919, 3, 532, 266, 0, 5915, 5916, 5, 866, 0, 0, 5916, 5917, 3, 670, 335, 0, 5917, 5918, 5, 867, 0, 0, 5918, 5920, 1, 0, 0, 0, 5919, 5915, 1, 0, 0, 0, 5919, 5920, 1, 0, 0, 0, 5920, 531, 1, 0, 0, 0, 5921, 5923, 5, 7, 0, 0, 5922, 5924, 5, 734, 0, 0, 5923, 5922, 1, 0, 0, 0, 5923, 5924, 1, 0, 0, 0, 5924, 6015, 1, 0, 0, 0, 5925, 5927, 5, 8, 0, 0, 5926, 5928, 5, 743, 0, 0, 5927, 5926, 1, 0, 0, 0, 5927, 5928, 1, 0, 0, 0, 5928, 6015, 1, 0, 0, 0, 5929, 5937, 5, 34, 0, 0, 5930, 5931, 5, 660, 0, 0, 5931, 5938, 5, 752, 0, 0, 5932, 5938, 5, 743, 0, 0, 5933, 5938, 5, 684, 0, 0, 5934, 5938, 5, 678, 0, 0, 5935, 5938, 5, 658, 0, 0, 5936, 5938, 5, 582, 0, 0, 5937, 5930, 1, 0, 0, 0, 5937, 5932, 1, 0, 0, 0, 5937, 5933, 1, 0, 0, 0, 5937, 5934, 1, 0, 0, 0, 5937, 5935, 1, 0, 0, 0, 5937, 5936, 1, 0, 0, 0, 5937, 5938, 1, 0, 0, 0, 5938, 6015, 1, 0, 0, 0, 5939, 6015, 5, 44, 0, 0, 5940, 5942, 5, 51, 0, 0, 5941, 5943, 5, 582, 0, 0, 5942, 5941, 1, 0, 0, 0, 5942, 5943, 1, 0, 0, 0, 5943, 6015, 1, 0, 0, 0, 5944, 6015, 5, 385, 0, 0, 5945, 6015, 5, 717, 0, 0, 5946, 6015, 5, 718, 0, 0, 5947, 5948, 5, 73, 0, 0, 5948, 6015, 5, 121, 0, 0, 5949, 6015, 5, 82, 0, 0, 5950, 6015, 5, 86, 0, 0, 5951, 5952, 5, 104, 0, 0, 5952, 6015, 5, 752, 0, 0, 5953, 6015, 5, 735, 0, 0, 5954, 6015, 5, 547, 0, 0, 5955, 6015, 5, 138, 0, 0, 5956, 6015, 5, 736, 0, 0, 5957, 5958, 5, 572, 0, 0, 5958, 6015, 7, 88, 0, 0, 5959, 6015, 5, 154, 0, 0, 5960, 5961, 5, 157, 0, 0, 5961, 6015, 7, 89, 0, 0, 5962, 6015, 5, 749, 0, 0, 5963, 6015, 5, 750, 0, 0, 5964, 6015, 5, 178, 0, 0, 5965, 6015, 5, 185, 0, 0, 5966, 6015, 5, 186, 0, 0, 5967, 6015, 5, 705, 0, 0, 5968, 6015, 5, 706, 0, 0, 5969, 6015, 5, 707, 0, 0, 5970, 6015, 5, 709, 0, 0, 5971, 6015, 5, 710, 0, 0, 5972, 6015, 5, 711, 0, 0, 5973, 6015, 5, 712, 0, 0, 5974, 6015, 5, 714, 0, 0, 5975, 6015, 5, 715, 0, 0, 5976, 6015, 5, 716, 0, 0, 5977, 6015, 5, 719, 0, 0, 5978, 6015, 5, 720, 0, 0, 5979, 6015, 5, 721, 0, 0, 5980, 6015, 5, 722, 0, 0, 5981, 6015, 5, 723, 0, 0, 5982, 6015, 5, 724, 0, 0, 5983, 6015, 5, 725, 0, 0, 5984, 6015, 5, 726, 0, 0, 5985, 6015, 5, 727, 0, 0, 5986, 6015, 5, 728, 0, 0, 5987, 6015, 5, 731, 0, 0, 5988, 6015, 5, 732, 0, 0, 5989, 6015, 5, 733, 0, 0, 5990, 6015, 5, 737, 0, 0, 5991, 6015, 5, 738, 0, 0, 5992, 6015, 5, 740, 0, 0, 5993, 6015, 5, 741, 0, 0, 5994, 6015, 5, 742, 0, 0, 5995, 6015, 5, 745, 0, 0, 5996, 6015, 5, 746, 0, 0, 5997, 6015, 5, 747, 0, 0, 5998, 6015, 5, 160, 0, 0, 5999, 6015, 5, 748, 0, 0, 6000, 6015, 5, 836, 0, 0, 6001, 6015, 5, 751, 0, 0, 6002, 6015, 5, 753, 0, 0, 6003, 6015, 5, 838, 0, 0, 6004, 6015, 5, 754, 0, 0, 6005, 6015, 5, 755, 0, 0, 6006, 6007, 5, 103, 0, 0, 6007, 6008, 5, 68, 0, 0, 6008, 6015, 5, 744, 0, 0, 6009, 6010, 5, 154, 0, 0, 6010, 6011, 5, 88, 0, 0, 6011, 6015, 5, 744, 0, 0, 6012, 6013, 5, 729, 0, 0, 6013, 6015, 5, 730, 0, 0, 6014, 5921, 1, 0, 0, 0, 6014, 5925, 1, 0, 0, 0, 6014, 5929, 1, 0, 0, 0, 6014, 5939, 1, 0, 0, 0, 6014, 5940, 1, 0, 0, 0, 6014, 5944, 1, 0, 0, 0, 6014, 5945, 1, 0, 0, 0, 6014, 5946, 1, 0, 0, 0, 6014, 5947, 1, 0, 0, 0, 6014, 5949, 1, 0, 0, 0, 6014, 5950, 1, 0, 0, 0, 6014, 5951, 1, 0, 0, 0, 6014, 5953, 1, 0, 0, 0, 6014, 5954, 1, 0, 0, 0, 6014, 5955, 1, 0, 0, 0, 6014, 5956, 1, 0, 0, 0, 6014, 5957, 1, 0, 0, 0, 6014, 5959, 1, 0, 0, 0, 6014, 5960, 1, 0, 0, 0, 6014, 5962, 1, 0, 0, 0, 6014, 5963, 1, 0, 0, 0, 6014, 5964, 1, 0, 0, 0, 6014, 5965, 1, 0, 0, 0, 6014, 5966, 1, 0, 0, 0, 6014, 5967, 1, 0, 0, 0, 6014, 5968, 1, 0, 0, 0, 6014, 5969, 1, 0, 0, 0, 6014, 5970, 1, 0, 0, 0, 6014, 5971, 1, 0, 0, 0, 6014, 5972, 1, 0, 0, 0, 6014, 5973, 1, 0, 0, 0, 6014, 5974, 1, 0, 0, 0, 6014, 5975, 1, 0, 0, 0, 6014, 5976, 1, 0, 0, 0, 6014, 5977, 1, 0, 0, 0, 6014, 5978, 1, 0, 0, 0, 6014, 5979, 1, 0, 0, 0, 6014, 5980, 1, 0, 0, 0, 6014, 5981, 1, 0, 0, 0, 6014, 5982, 1, 0, 0, 0, 6014, 5983, 1, 0, 0, 0, 6014, 5984, 1, 0, 0, 0, 6014, 5985, 1, 0, 0, 0, 6014, 5986, 1, 0, 0, 0, 6014, 5987, 1, 0, 0, 0, 6014, 5988, 1, 0, 0, 0, 6014, 5989, 1, 0, 0, 0, 6014, 5990, 1, 0, 0, 0, 6014, 5991, 1, 0, 0, 0, 6014, 5992, 1, 0, 0, 0, 6014, 5993, 1, 0, 0, 0, 6014, 5994, 1, 0, 0, 0, 6014, 5995, 1, 0, 0, 0, 6014, 5996, 1, 0, 0, 0, 6014, 5997, 1, 0, 0, 0, 6014, 5998, 1, 0, 0, 0, 6014, 5999, 1, 0, 0, 0, 6014, 6000, 1, 0, 0, 0, 6014, 6001, 1, 0, 0, 0, 6014, 6002, 1, 0, 0, 0, 6014, 6003, 1, 0, 0, 0, 6014, 6004, 1, 0, 0, 0, 6014, 6005, 1, 0, 0, 0, 6014, 6006, 1, 0, 0, 0, 6014, 6009, 1, 0, 0, 0, 6014, 6012, 1, 0, 0, 0, 6015, 533, 1, 0, 0, 0, 6016, 6033, 5, 850, 0, 0, 6017, 6018, 5, 850, 0, 0, 6018, 6019, 5, 865, 0, 0, 6019, 6033, 5, 850, 0, 0, 6020, 6021, 3, 722, 361, 0, 6021, 6022, 5, 865, 0, 0, 6022, 6023, 5, 850, 0, 0, 6023, 6033, 1, 0, 0, 0, 6024, 6025, 3, 722, 361, 0, 6025, 6026, 5, 865, 0, 0, 6026, 6027, 3, 722, 361, 0, 6027, 6033, 1, 0, 0, 0, 6028, 6029, 3, 722, 361, 0, 6029, 6030, 3, 726, 363, 0, 6030, 6033, 1, 0, 0, 0, 6031, 6033, 3, 722, 361, 0, 6032, 6016, 1, 0, 0, 0, 6032, 6017, 1, 0, 0, 0, 6032, 6020, 1, 0, 0, 0, 6032, 6024, 1, 0, 0, 0, 6032, 6028, 1, 0, 0, 0, 6032, 6031, 1, 0, 0, 0, 6033, 535, 1, 0, 0, 0, 6034, 6035, 3, 700, 350, 0, 6035, 6036, 5, 176, 0, 0, 6036, 6037, 3, 700, 350, 0, 6037, 537, 1, 0, 0, 0, 6038, 6040, 5, 10, 0, 0, 6039, 6041, 3, 548, 274, 0, 6040, 6039, 1, 0, 0, 0, 6040, 6041, 1, 0, 0, 0, 6041, 6042, 1, 0, 0, 0, 6042, 6043, 5, 173, 0, 0, 6043, 6087, 3, 660, 330, 0, 6044, 6046, 5, 10, 0, 0, 6045, 6047, 3, 548, 274, 0, 6046, 6045, 1, 0, 0, 0, 6046, 6047, 1, 0, 0, 0, 6047, 6048, 1, 0, 0, 0, 6048, 6049, 5, 173, 0, 0, 6049, 6050, 3, 662, 331, 0, 6050, 6051, 5, 185, 0, 0, 6051, 6052, 5, 77, 0, 0, 6052, 6053, 5, 119, 0, 0, 6053, 6058, 3, 670, 335, 0, 6054, 6055, 5, 194, 0, 0, 6055, 6056, 3, 730, 365, 0, 6056, 6057, 5, 19, 0, 0, 6057, 6059, 1, 0, 0, 0, 6058, 6054, 1, 0, 0, 0, 6058, 6059, 1, 0, 0, 0, 6059, 6087, 1, 0, 0, 0, 6060, 6062, 5, 10, 0, 0, 6061, 6063, 3, 548, 274, 0, 6062, 6061, 1, 0, 0, 0, 6062, 6063, 1, 0, 0, 0, 6063, 6064, 1, 0, 0, 0, 6064, 6065, 5, 173, 0, 0, 6065, 6066, 3, 662, 331, 0, 6066, 6067, 5, 185, 0, 0, 6067, 6068, 5, 77, 0, 0, 6068, 6069, 5, 119, 0, 0, 6069, 6073, 3, 674, 337, 0, 6070, 6071, 5, 188, 0, 0, 6071, 6072, 5, 360, 0, 0, 6072, 6074, 5, 882, 0, 0, 6073, 6070, 1, 0, 0, 0, 6073, 6074, 1, 0, 0, 0, 6074, 6087, 1, 0, 0, 0, 6075, 6077, 5, 10, 0, 0, 6076, 6078, 3, 548, 274, 0, 6077, 6076, 1, 0, 0, 0, 6077, 6078, 1, 0, 0, 0, 6078, 6079, 1, 0, 0, 0, 6079, 6080, 5, 173, 0, 0, 6080, 6081, 3, 662, 331, 0, 6081, 6082, 5, 51, 0, 0, 6082, 6083, 5, 77, 0, 0, 6083, 6084, 5, 119, 0, 0, 6084, 6085, 3, 670, 335, 0, 6085, 6087, 1, 0, 0, 0, 6086, 6038, 1, 0, 0, 0, 6086, 6044, 1, 0, 0, 0, 6086, 6060, 1, 0, 0, 0, 6086, 6075, 1, 0, 0, 0, 6087, 539, 1, 0, 0, 0, 6088, 6089, 5, 27, 0, 0, 6089, 6090, 5, 173, 0, 0, 6090, 6094, 3, 660, 330, 0, 6091, 6093, 3, 550, 275, 0, 6092, 6091, 1, 0, 0, 0, 6093, 6096, 1, 0, 0, 0, 6094, 6092, 1, 0, 0, 0, 6094, 6095, 1, 0, 0, 0, 6095, 541, 1, 0, 0, 0, 6096, 6094, 1, 0, 0, 0, 6097, 6098, 5, 329, 0, 0, 6098, 6099, 5, 173, 0, 0, 6099, 6101, 3, 660, 330, 0, 6100, 6102, 7, 90, 0, 0, 6101, 6100, 1, 0, 0, 0, 6101, 6102, 1, 0, 0, 0, 6102, 543, 1, 0, 0, 0, 6103, 6105, 5, 120, 0, 0, 6104, 6106, 3, 548, 274, 0, 6105, 6104, 1, 0, 0, 0, 6105, 6106, 1, 0, 0, 0, 6106, 6107, 1, 0, 0, 0, 6107, 6108, 7, 61, 0, 0, 6108, 6109, 3, 660, 330, 0, 6109, 545, 1, 0, 0, 0, 6110, 6112, 5, 562, 0, 0, 6111, 6113, 3, 548, 274, 0, 6112, 6111, 1, 0, 0, 0, 6112, 6113, 1, 0, 0, 0, 6113, 6114, 1, 0, 0, 0, 6114, 6115, 5, 173, 0, 0, 6115, 6117, 3, 660, 330, 0, 6116, 6118, 5, 549, 0, 0, 6117, 6116, 1, 0, 0, 0, 6117, 6118, 1, 0, 0, 0, 6118, 6120, 1, 0, 0, 0, 6119, 6121, 5, 392, 0, 0, 6120, 6119, 1, 0, 0, 0, 6120, 6121, 1, 0, 0, 0, 6121, 6123, 1, 0, 0, 0, 6122, 6124, 5, 679, 0, 0, 6123, 6122, 1, 0, 0, 0, 6123, 6124, 1, 0, 0, 0, 6124, 547, 1, 0, 0, 0, 6125, 6126, 7, 91, 0, 0, 6126, 549, 1, 0, 0, 0, 6127, 6128, 5, 65, 0, 0, 6128, 6135, 5, 677, 0, 0, 6129, 6135, 5, 549, 0, 0, 6130, 6135, 5, 396, 0, 0, 6131, 6135, 5, 484, 0, 0, 6132, 6135, 5, 392, 0, 0, 6133, 6135, 5, 327, 0, 0, 6134, 6127, 1, 0, 0, 0, 6134, 6129, 1, 0, 0, 0, 6134, 6130, 1, 0, 0, 0, 6134, 6131, 1, 0, 0, 0, 6134, 6132, 1, 0, 0, 0, 6134, 6133, 1, 0, 0, 0, 6135, 551, 1, 0, 0, 0, 6136, 6137, 5, 432, 0, 0, 6137, 6138, 5, 344, 0, 0, 6138, 6143, 3, 722, 361, 0, 6139, 6140, 5, 868, 0, 0, 6140, 6142, 3, 722, 361, 0, 6141, 6139, 1, 0, 0, 0, 6142, 6145, 1, 0, 0, 0, 6143, 6141, 1, 0, 0, 0, 6143, 6144, 1, 0, 0, 0, 6144, 6155, 1, 0, 0, 0, 6145, 6143, 1, 0, 0, 0, 6146, 6147, 5, 155, 0, 0, 6147, 6152, 3, 554, 277, 0, 6148, 6149, 5, 868, 0, 0, 6149, 6151, 3, 554, 277, 0, 6150, 6148, 1, 0, 0, 0, 6151, 6154, 1, 0, 0, 0, 6152, 6150, 1, 0, 0, 0, 6152, 6153, 1, 0, 0, 0, 6153, 6156, 1, 0, 0, 0, 6154, 6152, 1, 0, 0, 0, 6155, 6146, 1, 0, 0, 0, 6155, 6156, 1, 0, 0, 0, 6156, 553, 1, 0, 0, 0, 6157, 6158, 7, 92, 0, 0, 6158, 6159, 3, 718, 359, 0, 6159, 6160, 5, 857, 0, 0, 6160, 6161, 3, 822, 411, 0, 6161, 555, 1, 0, 0, 0, 6162, 6163, 5, 673, 0, 0, 6163, 6164, 5, 344, 0, 0, 6164, 6169, 3, 722, 361, 0, 6165, 6166, 5, 868, 0, 0, 6166, 6168, 3, 722, 361, 0, 6167, 6165, 1, 0, 0, 0, 6168, 6171, 1, 0, 0, 0, 6169, 6167, 1, 0, 0, 0, 6169, 6170, 1, 0, 0, 0, 6170, 557, 1, 0, 0, 0, 6171, 6169, 1, 0, 0, 0, 6172, 6173, 5, 432, 0, 0, 6173, 6174, 5, 534, 0, 0, 6174, 6175, 3, 722, 361, 0, 6175, 6176, 5, 603, 0, 0, 6176, 6177, 5, 882, 0, 0, 6177, 559, 1, 0, 0, 0, 6178, 6179, 5, 673, 0, 0, 6179, 6180, 5, 534, 0, 0, 6180, 6181, 3, 722, 361, 0, 6181, 561, 1, 0, 0, 0, 6182, 6183, 5, 713, 0, 0, 6183, 6184, 5, 450, 0, 0, 6184, 6185, 5, 360, 0, 0, 6185, 6187, 5, 367, 0, 0, 6186, 6188, 5, 857, 0, 0, 6187, 6186, 1, 0, 0, 0, 6187, 6188, 1, 0, 0, 0, 6188, 6189, 1, 0, 0, 0, 6189, 6213, 5, 882, 0, 0, 6190, 6191, 5, 713, 0, 0, 6191, 6192, 5, 433, 0, 0, 6192, 6193, 5, 68, 0, 0, 6193, 6194, 3, 692, 346, 0, 6194, 6195, 5, 423, 0, 0, 6195, 6196, 5, 20, 0, 0, 6196, 6203, 5, 882, 0, 0, 6197, 6198, 5, 360, 0, 0, 6198, 6200, 5, 367, 0, 0, 6199, 6201, 5, 857, 0, 0, 6200, 6199, 1, 0, 0, 0, 6200, 6201, 1, 0, 0, 0, 6201, 6202, 1, 0, 0, 0, 6202, 6204, 5, 882, 0, 0, 6203, 6197, 1, 0, 0, 0, 6203, 6204, 1, 0, 0, 0, 6204, 6210, 1, 0, 0, 0, 6205, 6207, 5, 144, 0, 0, 6206, 6208, 5, 502, 0, 0, 6207, 6206, 1, 0, 0, 0, 6207, 6208, 1, 0, 0, 0, 6208, 6209, 1, 0, 0, 0, 6209, 6211, 5, 169, 0, 0, 6210, 6205, 1, 0, 0, 0, 6210, 6211, 1, 0, 0, 0, 6211, 6213, 1, 0, 0, 0, 6212, 6182, 1, 0, 0, 0, 6212, 6190, 1, 0, 0, 0, 6213, 563, 1, 0, 0, 0, 6214, 6215, 5, 155, 0, 0, 6215, 6216, 3, 568, 284, 0, 6216, 6219, 7, 93, 0, 0, 6217, 6220, 3, 822, 411, 0, 6218, 6220, 5, 119, 0, 0, 6219, 6217, 1, 0, 0, 0, 6219, 6218, 1, 0, 0, 0, 6220, 6230, 1, 0, 0, 0, 6221, 6222, 5, 868, 0, 0, 6222, 6223, 3, 568, 284, 0, 6223, 6226, 7, 93, 0, 0, 6224, 6227, 3, 822, 411, 0, 6225, 6227, 5, 119, 0, 0, 6226, 6224, 1, 0, 0, 0, 6226, 6225, 1, 0, 0, 0, 6227, 6229, 1, 0, 0, 0, 6228, 6221, 1, 0, 0, 0, 6229, 6232, 1, 0, 0, 0, 6230, 6228, 1, 0, 0, 0, 6230, 6231, 1, 0, 0, 0, 6231, 6267, 1, 0, 0, 0, 6232, 6230, 1, 0, 0, 0, 6233, 6234, 5, 155, 0, 0, 6234, 6237, 3, 58, 29, 0, 6235, 6238, 3, 704, 352, 0, 6236, 6238, 5, 42, 0, 0, 6237, 6235, 1, 0, 0, 0, 6237, 6236, 1, 0, 0, 0, 6238, 6267, 1, 0, 0, 0, 6239, 6240, 5, 155, 0, 0, 6240, 6247, 5, 497, 0, 0, 6241, 6244, 3, 704, 352, 0, 6242, 6243, 5, 28, 0, 0, 6243, 6245, 3, 706, 353, 0, 6244, 6242, 1, 0, 0, 0, 6244, 6245, 1, 0, 0, 0, 6245, 6248, 1, 0, 0, 0, 6246, 6248, 5, 42, 0, 0, 6247, 6241, 1, 0, 0, 0, 6247, 6246, 1, 0, 0, 0, 6248, 6267, 1, 0, 0, 0, 6249, 6267, 3, 500, 250, 0, 6250, 6267, 3, 352, 176, 0, 6251, 6267, 3, 350, 175, 0, 6252, 6253, 5, 155, 0, 0, 6253, 6254, 3, 718, 359, 0, 6254, 6255, 7, 93, 0, 0, 6255, 6263, 3, 822, 411, 0, 6256, 6257, 5, 868, 0, 0, 6257, 6258, 3, 718, 359, 0, 6258, 6259, 7, 93, 0, 0, 6259, 6260, 3, 822, 411, 0, 6260, 6262, 1, 0, 0, 0, 6261, 6256, 1, 0, 0, 0, 6262, 6265, 1, 0, 0, 0, 6263, 6261, 1, 0, 0, 0, 6263, 6264, 1, 0, 0, 0, 6264, 6267, 1, 0, 0, 0, 6265, 6263, 1, 0, 0, 0, 6266, 6214, 1, 0, 0, 0, 6266, 6233, 1, 0, 0, 0, 6266, 6239, 1, 0, 0, 0, 6266, 6249, 1, 0, 0, 0, 6266, 6250, 1, 0, 0, 0, 6266, 6251, 1, 0, 0, 0, 6266, 6252, 1, 0, 0, 0, 6267, 565, 1, 0, 0, 0, 6268, 6269, 5, 157, 0, 0, 6269, 6270, 7, 63, 0, 0, 6270, 6453, 5, 452, 0, 0, 6271, 6272, 5, 157, 0, 0, 6272, 6273, 7, 94, 0, 0, 6273, 6276, 5, 386, 0, 0, 6274, 6275, 5, 80, 0, 0, 6275, 6277, 5, 882, 0, 0, 6276, 6274, 1, 0, 0, 0, 6276, 6277, 1, 0, 0, 0, 6277, 6280, 1, 0, 0, 0, 6278, 6279, 5, 68, 0, 0, 6279, 6281, 3, 730, 365, 0, 6280, 6278, 1, 0, 0, 0, 6280, 6281, 1, 0, 0, 0, 6281, 6289, 1, 0, 0, 0, 6282, 6286, 5, 100, 0, 0, 6283, 6284, 3, 730, 365, 0, 6284, 6285, 5, 868, 0, 0, 6285, 6287, 1, 0, 0, 0, 6286, 6283, 1, 0, 0, 0, 6286, 6287, 1, 0, 0, 0, 6287, 6288, 1, 0, 0, 0, 6288, 6290, 3, 730, 365, 0, 6289, 6282, 1, 0, 0, 0, 6289, 6290, 1, 0, 0, 0, 6290, 6292, 1, 0, 0, 0, 6291, 6293, 3, 400, 200, 0, 6292, 6291, 1, 0, 0, 0, 6292, 6293, 1, 0, 0, 0, 6293, 6453, 1, 0, 0, 0, 6294, 6295, 5, 157, 0, 0, 6295, 6297, 3, 570, 285, 0, 6296, 6298, 3, 572, 286, 0, 6297, 6296, 1, 0, 0, 0, 6297, 6298, 1, 0, 0, 0, 6298, 6453, 1, 0, 0, 0, 6299, 6301, 5, 157, 0, 0, 6300, 6302, 5, 392, 0, 0, 6301, 6300, 1, 0, 0, 0, 6301, 6302, 1, 0, 0, 0, 6302, 6304, 1, 0, 0, 0, 6303, 6305, 5, 408, 0, 0, 6304, 6303, 1, 0, 0, 0, 6304, 6305, 1, 0, 0, 0, 6305, 6306, 1, 0, 0, 0, 6306, 6307, 7, 47, 0, 0, 6307, 6308, 7, 95, 0, 0, 6308, 6311, 3, 662, 331, 0, 6309, 6310, 7, 95, 0, 0, 6310, 6312, 3, 638, 319, 0, 6311, 6309, 1, 0, 0, 0, 6311, 6312, 1, 0, 0, 0, 6312, 6314, 1, 0, 0, 0, 6313, 6315, 3, 572, 286, 0, 6314, 6313, 1, 0, 0, 0, 6314, 6315, 1, 0, 0, 0, 6315, 6453, 1, 0, 0, 0, 6316, 6317, 5, 157, 0, 0, 6317, 6318, 5, 34, 0, 0, 6318, 6320, 7, 0, 0, 0, 6319, 6321, 3, 778, 389, 0, 6320, 6319, 1, 0, 0, 0, 6320, 6321, 1, 0, 0, 0, 6321, 6322, 1, 0, 0, 0, 6322, 6453, 3, 638, 319, 0, 6323, 6324, 5, 157, 0, 0, 6324, 6325, 5, 34, 0, 0, 6325, 6326, 7, 96, 0, 0, 6326, 6453, 3, 718, 359, 0, 6327, 6328, 5, 157, 0, 0, 6328, 6329, 5, 34, 0, 0, 6329, 6330, 5, 409, 0, 0, 6330, 6453, 3, 642, 321, 0, 6331, 6332, 5, 157, 0, 0, 6332, 6333, 5, 34, 0, 0, 6333, 6334, 5, 684, 0, 0, 6334, 6453, 3, 646, 323, 0, 6335, 6336, 5, 157, 0, 0, 6336, 6337, 5, 34, 0, 0, 6337, 6338, 5, 173, 0, 0, 6338, 6453, 3, 662, 331, 0, 6339, 6340, 5, 157, 0, 0, 6340, 6341, 5, 34, 0, 0, 6341, 6342, 5, 678, 0, 0, 6342, 6453, 3, 700, 350, 0, 6343, 6344, 5, 157, 0, 0, 6344, 6345, 5, 380, 0, 0, 6345, 6346, 3, 708, 354, 0, 6346, 6347, 7, 97, 0, 0, 6347, 6453, 1, 0, 0, 0, 6348, 6349, 5, 157, 0, 0, 6349, 6453, 3, 574, 287, 0, 6350, 6351, 5, 157, 0, 0, 6351, 6359, 7, 98, 0, 0, 6352, 6356, 5, 100, 0, 0, 6353, 6354, 3, 730, 365, 0, 6354, 6355, 5, 868, 0, 0, 6355, 6357, 1, 0, 0, 0, 6356, 6353, 1, 0, 0, 0, 6356, 6357, 1, 0, 0, 0, 6357, 6358, 1, 0, 0, 0, 6358, 6360, 3, 730, 365, 0, 6359, 6352, 1, 0, 0, 0, 6359, 6360, 1, 0, 0, 0, 6360, 6453, 1, 0, 0, 0, 6361, 6362, 5, 157, 0, 0, 6362, 6363, 5, 262, 0, 0, 6363, 6364, 5, 866, 0, 0, 6364, 6365, 5, 850, 0, 0, 6365, 6366, 5, 867, 0, 0, 6366, 6453, 7, 98, 0, 0, 6367, 6368, 5, 157, 0, 0, 6368, 6371, 3, 576, 288, 0, 6369, 6370, 7, 95, 0, 0, 6370, 6372, 3, 638, 319, 0, 6371, 6369, 1, 0, 0, 0, 6371, 6372, 1, 0, 0, 0, 6372, 6374, 1, 0, 0, 0, 6373, 6375, 3, 572, 286, 0, 6374, 6373, 1, 0, 0, 0, 6374, 6375, 1, 0, 0, 0, 6375, 6453, 1, 0, 0, 0, 6376, 6377, 5, 157, 0, 0, 6377, 6378, 5, 132, 0, 0, 6378, 6379, 5, 336, 0, 0, 6379, 6453, 3, 718, 359, 0, 6380, 6381, 5, 157, 0, 0, 6381, 6382, 5, 409, 0, 0, 6382, 6383, 5, 336, 0, 0, 6383, 6453, 3, 642, 321, 0, 6384, 6385, 5, 157, 0, 0, 6385, 6392, 5, 414, 0, 0, 6386, 6387, 5, 65, 0, 0, 6387, 6390, 3, 666, 333, 0, 6388, 6389, 5, 188, 0, 0, 6389, 6391, 3, 664, 332, 0, 6390, 6388, 1, 0, 0, 0, 6390, 6391, 1, 0, 0, 0, 6391, 6393, 1, 0, 0, 0, 6392, 6386, 1, 0, 0, 0, 6392, 6393, 1, 0, 0, 0, 6393, 6453, 1, 0, 0, 0, 6394, 6396, 5, 157, 0, 0, 6395, 6397, 5, 392, 0, 0, 6396, 6395, 1, 0, 0, 0, 6396, 6397, 1, 0, 0, 0, 6397, 6398, 1, 0, 0, 0, 6398, 6399, 7, 99, 0, 0, 6399, 6400, 7, 95, 0, 0, 6400, 6403, 3, 662, 331, 0, 6401, 6402, 7, 95, 0, 0, 6402, 6404, 3, 638, 319, 0, 6403, 6401, 1, 0, 0, 0, 6403, 6404, 1, 0, 0, 0, 6404, 6407, 1, 0, 0, 0, 6405, 6406, 5, 192, 0, 0, 6406, 6408, 3, 822, 411, 0, 6407, 6405, 1, 0, 0, 0, 6407, 6408, 1, 0, 0, 0, 6408, 6453, 1, 0, 0, 0, 6409, 6410, 5, 157, 0, 0, 6410, 6411, 5, 516, 0, 0, 6411, 6414, 5, 752, 0, 0, 6412, 6413, 7, 95, 0, 0, 6413, 6415, 3, 638, 319, 0, 6414, 6412, 1, 0, 0, 0, 6414, 6415, 1, 0, 0, 0, 6415, 6417, 1, 0, 0, 0, 6416, 6418, 3, 572, 286, 0, 6417, 6416, 1, 0, 0, 0, 6417, 6418, 1, 0, 0, 0, 6418, 6453, 1, 0, 0, 0, 6419, 6420, 5, 157, 0, 0, 6420, 6429, 5, 545, 0, 0, 6421, 6426, 3, 578, 289, 0, 6422, 6423, 5, 868, 0, 0, 6423, 6425, 3, 578, 289, 0, 6424, 6422, 1, 0, 0, 0, 6425, 6428, 1, 0, 0, 0, 6426, 6424, 1, 0, 0, 0, 6426, 6427, 1, 0, 0, 0, 6427, 6430, 1, 0, 0, 0, 6428, 6426, 1, 0, 0, 0, 6429, 6421, 1, 0, 0, 0, 6429, 6430, 1, 0, 0, 0, 6430, 6434, 1, 0, 0, 0, 6431, 6432, 5, 65, 0, 0, 6432, 6433, 5, 548, 0, 0, 6433, 6435, 3, 730, 365, 0, 6434, 6431, 1, 0, 0, 0, 6434, 6435, 1, 0, 0, 0, 6435, 6442, 1, 0, 0, 0, 6436, 6437, 5, 100, 0, 0, 6437, 6440, 3, 730, 365, 0, 6438, 6439, 5, 509, 0, 0, 6439, 6441, 3, 730, 365, 0, 6440, 6438, 1, 0, 0, 0, 6440, 6441, 1, 0, 0, 0, 6441, 6443, 1, 0, 0, 0, 6442, 6436, 1, 0, 0, 0, 6442, 6443, 1, 0, 0, 0, 6443, 6453, 1, 0, 0, 0, 6444, 6445, 5, 157, 0, 0, 6445, 6446, 7, 64, 0, 0, 6446, 6448, 5, 645, 0, 0, 6447, 6449, 3, 400, 200, 0, 6448, 6447, 1, 0, 0, 0, 6448, 6449, 1, 0, 0, 0, 6449, 6453, 1, 0, 0, 0, 6450, 6451, 5, 157, 0, 0, 6451, 6453, 5, 564, 0, 0, 6452, 6268, 1, 0, 0, 0, 6452, 6271, 1, 0, 0, 0, 6452, 6294, 1, 0, 0, 0, 6452, 6299, 1, 0, 0, 0, 6452, 6316, 1, 0, 0, 0, 6452, 6323, 1, 0, 0, 0, 6452, 6327, 1, 0, 0, 0, 6452, 6331, 1, 0, 0, 0, 6452, 6335, 1, 0, 0, 0, 6452, 6339, 1, 0, 0, 0, 6452, 6343, 1, 0, 0, 0, 6452, 6348, 1, 0, 0, 0, 6452, 6350, 1, 0, 0, 0, 6452, 6361, 1, 0, 0, 0, 6452, 6367, 1, 0, 0, 0, 6452, 6376, 1, 0, 0, 0, 6452, 6380, 1, 0, 0, 0, 6452, 6384, 1, 0, 0, 0, 6452, 6394, 1, 0, 0, 0, 6452, 6409, 1, 0, 0, 0, 6452, 6419, 1, 0, 0, 0, 6452, 6444, 1, 0, 0, 0, 6452, 6450, 1, 0, 0, 0, 6453, 567, 1, 0, 0, 0, 6454, 6465, 5, 892, 0, 0, 6455, 6465, 5, 893, 0, 0, 6456, 6457, 5, 870, 0, 0, 6457, 6459, 5, 870, 0, 0, 6458, 6456, 1, 0, 0, 0, 6458, 6459, 1, 0, 0, 0, 6459, 6460, 1, 0, 0, 0, 6460, 6462, 7, 100, 0, 0, 6461, 6458, 1, 0, 0, 0, 6461, 6462, 1, 0, 0, 0, 6462, 6463, 1, 0, 0, 0, 6463, 6465, 3, 722, 361, 0, 6464, 6454, 1, 0, 0, 0, 6464, 6455, 1, 0, 0, 0, 6464, 6461, 1, 0, 0, 0, 6465, 569, 1, 0, 0, 0, 6466, 6467, 5, 26, 0, 0, 6467, 6481, 5, 155, 0, 0, 6468, 6481, 5, 823, 0, 0, 6469, 6481, 5, 824, 0, 0, 6470, 6481, 5, 40, 0, 0, 6471, 6481, 5, 153, 0, 0, 6472, 6473, 5, 409, 0, 0, 6473, 6481, 5, 645, 0, 0, 6474, 6475, 5, 132, 0, 0, 6475, 6481, 5, 645, 0, 0, 6476, 6478, 7, 62, 0, 0, 6477, 6476, 1, 0, 0, 0, 6477, 6478, 1, 0, 0, 0, 6478, 6479, 1, 0, 0, 0, 6479, 6481, 7, 101, 0, 0, 6480, 6466, 1, 0, 0, 0, 6480, 6468, 1, 0, 0, 0, 6480, 6469, 1, 0, 0, 0, 6480, 6470, 1, 0, 0, 0, 6480, 6471, 1, 0, 0, 0, 6480, 6472, 1, 0, 0, 0, 6480, 6474, 1, 0, 0, 0, 6480, 6477, 1, 0, 0, 0, 6481, 571, 1, 0, 0, 0, 6482, 6483, 5, 99, 0, 0, 6483, 6487, 5, 882, 0, 0, 6484, 6485, 5, 192, 0, 0, 6485, 6487, 3, 822, 411, 0, 6486, 6482, 1, 0, 0, 0, 6486, 6484, 1, 0, 0, 0, 6487, 573, 1, 0, 0, 0, 6488, 6490, 5, 647, 0, 0, 6489, 6488, 1, 0, 0, 0, 6489, 6490, 1, 0, 0, 0, 6490, 6491, 1, 0, 0, 0, 6491, 6506, 5, 381, 0, 0, 6492, 6493, 5, 453, 0, 0, 6493, 6506, 5, 645, 0, 0, 6494, 6506, 5, 536, 0, 0, 6495, 6506, 5, 734, 0, 0, 6496, 6498, 5, 408, 0, 0, 6497, 6496, 1, 0, 0, 0, 6497, 6498, 1, 0, 0, 0, 6498, 6499, 1, 0, 0, 0, 6499, 6506, 5, 544, 0, 0, 6500, 6506, 5, 546, 0, 0, 6501, 6502, 5, 598, 0, 0, 6502, 6506, 5, 422, 0, 0, 6503, 6506, 5, 312, 0, 0, 6504, 6506, 5, 356, 0, 0, 6505, 6489, 1, 0, 0, 0, 6505, 6492, 1, 0, 0, 0, 6505, 6494, 1, 0, 0, 0, 6505, 6495, 1, 0, 0, 0, 6505, 6497, 1, 0, 0, 0, 6505, 6500, 1, 0, 0, 0, 6505, 6501, 1, 0, 0, 0, 6505, 6503, 1, 0, 0, 0, 6505, 6504, 1, 0, 0, 0, 6506, 575, 1, 0, 0, 0, 6507, 6519, 5, 386, 0, 0, 6508, 6509, 5, 173, 0, 0, 6509, 6519, 5, 645, 0, 0, 6510, 6512, 5, 392, 0, 0, 6511, 6510, 1, 0, 0, 0, 6511, 6512, 1, 0, 0, 0, 6512, 6514, 1, 0, 0, 0, 6513, 6515, 5, 408, 0, 0, 6514, 6513, 1, 0, 0, 0, 6514, 6515, 1, 0, 0, 0, 6515, 6516, 1, 0, 0, 0, 6516, 6519, 5, 752, 0, 0, 6517, 6519, 5, 667, 0, 0, 6518, 6507, 1, 0, 0, 0, 6518, 6508, 1, 0, 0, 0, 6518, 6511, 1, 0, 0, 0, 6518, 6517, 1, 0, 0, 0, 6519, 577, 1, 0, 0, 0, 6520, 6533, 5, 7, 0, 0, 6521, 6522, 5, 320, 0, 0, 6522, 6533, 5, 437, 0, 0, 6523, 6524, 5, 355, 0, 0, 6524, 6533, 5, 656, 0, 0, 6525, 6533, 5, 358, 0, 0, 6526, 6533, 5, 439, 0, 0, 6527, 6533, 5, 802, 0, 0, 6528, 6529, 5, 521, 0, 0, 6529, 6533, 5, 397, 0, 0, 6530, 6533, 5, 605, 0, 0, 6531, 6533, 5, 655, 0, 0, 6532, 6520, 1, 0, 0, 0, 6532, 6521, 1, 0, 0, 0, 6532, 6523, 1, 0, 0, 0, 6532, 6525, 1, 0, 0, 0, 6532, 6526, 1, 0, 0, 0, 6532, 6527, 1, 0, 0, 0, 6532, 6528, 1, 0, 0, 0, 6532, 6530, 1, 0, 0, 0, 6532, 6531, 1, 0, 0, 0, 6533, 579, 1, 0, 0, 0, 6534, 6535, 5, 318, 0, 0, 6535, 6536, 5, 882, 0, 0, 6536, 581, 1, 0, 0, 0, 6537, 6538, 5, 324, 0, 0, 6538, 6556, 5, 82, 0, 0, 6539, 6544, 3, 602, 301, 0, 6540, 6541, 5, 868, 0, 0, 6541, 6543, 3, 602, 301, 0, 6542, 6540, 1, 0, 0, 0, 6543, 6546, 1, 0, 0, 0, 6544, 6542, 1, 0, 0, 0, 6544, 6545, 1, 0, 0, 0, 6545, 6557, 1, 0, 0, 0, 6546, 6544, 1, 0, 0, 0, 6547, 6548, 3, 662, 331, 0, 6548, 6549, 5, 130, 0, 0, 6549, 6552, 5, 866, 0, 0, 6550, 6553, 3, 686, 343, 0, 6551, 6553, 5, 7, 0, 0, 6552, 6550, 1, 0, 0, 0, 6552, 6551, 1, 0, 0, 0, 6553, 6554, 1, 0, 0, 0, 6554, 6555, 5, 867, 0, 0, 6555, 6557, 1, 0, 0, 0, 6556, 6539, 1, 0, 0, 0, 6556, 6547, 1, 0, 0, 0, 6557, 6558, 1, 0, 0, 0, 6558, 6559, 5, 80, 0, 0, 6559, 6560, 3, 638, 319, 0, 6560, 583, 1, 0, 0, 0, 6561, 6563, 5, 404, 0, 0, 6562, 6564, 3, 548, 274, 0, 6563, 6562, 1, 0, 0, 0, 6563, 6564, 1, 0, 0, 0, 6564, 6565, 1, 0, 0, 0, 6565, 6570, 3, 604, 302, 0, 6566, 6567, 5, 868, 0, 0, 6567, 6569, 3, 604, 302, 0, 6568, 6566, 1, 0, 0, 0, 6569, 6572, 1, 0, 0, 0, 6570, 6568, 1, 0, 0, 0, 6570, 6571, 1, 0, 0, 0, 6571, 585, 1, 0, 0, 0, 6572, 6570, 1, 0, 0, 0, 6573, 6575, 5, 94, 0, 0, 6574, 6576, 7, 102, 0, 0, 6575, 6574, 1, 0, 0, 0, 6575, 6576, 1, 0, 0, 0, 6576, 6577, 1, 0, 0, 0, 6577, 6578, 3, 822, 411, 0, 6578, 587, 1, 0, 0, 0, 6579, 6580, 5, 103, 0, 0, 6580, 6581, 5, 82, 0, 0, 6581, 6582, 5, 88, 0, 0, 6582, 6583, 5, 324, 0, 0, 6583, 6588, 3, 608, 304, 0, 6584, 6585, 5, 868, 0, 0, 6585, 6587, 3, 608, 304, 0, 6586, 6584, 1, 0, 0, 0, 6587, 6590, 1, 0, 0, 0, 6588, 6586, 1, 0, 0, 0, 6588, 6589, 1, 0, 0, 0, 6589, 589, 1, 0, 0, 0, 6590, 6588, 1, 0, 0, 0, 6591, 6592, 5, 575, 0, 0, 6592, 6597, 3, 592, 296, 0, 6593, 6594, 5, 868, 0, 0, 6594, 6596, 3, 592, 296, 0, 6595, 6593, 1, 0, 0, 0, 6596, 6599, 1, 0, 0, 0, 6597, 6595, 1, 0, 0, 0, 6597, 6598, 1, 0, 0, 0, 6598, 591, 1, 0, 0, 0, 6599, 6597, 1, 0, 0, 0, 6600, 6606, 5, 453, 0, 0, 6601, 6606, 5, 563, 0, 0, 6602, 6603, 5, 548, 0, 0, 6603, 6606, 5, 324, 0, 0, 6604, 6606, 5, 598, 0, 0, 6605, 6600, 1, 0, 0, 0, 6605, 6601, 1, 0, 0, 0, 6605, 6602, 1, 0, 0, 0, 6605, 6604, 1, 0, 0, 0, 6606, 593, 1, 0, 0, 0, 6607, 6608, 5, 575, 0, 0, 6608, 6613, 5, 531, 0, 0, 6609, 6611, 3, 776, 388, 0, 6610, 6609, 1, 0, 0, 0, 6610, 6611, 1, 0, 0, 0, 6611, 6612, 1, 0, 0, 0, 6612, 6614, 3, 722, 361, 0, 6613, 6610, 1, 0, 0, 0, 6613, 6614, 1, 0, 0, 0, 6614, 595, 1, 0, 0, 0, 6615, 6616, 5, 575, 0, 0, 6616, 6618, 7, 64, 0, 0, 6617, 6619, 5, 7, 0, 0, 6618, 6617, 1, 0, 0, 0, 6618, 6619, 1, 0, 0, 0, 6619, 6621, 1, 0, 0, 0, 6620, 6622, 3, 400, 200, 0, 6621, 6620, 1, 0, 0, 0, 6621, 6622, 1, 0, 0, 0, 6622, 597, 1, 0, 0, 0, 6623, 6624, 5, 576, 0, 0, 6624, 599, 1, 0, 0, 0, 6625, 6626, 5, 749, 0, 0, 6626, 601, 1, 0, 0, 0, 6627, 6633, 3, 662, 331, 0, 6628, 6629, 7, 19, 0, 0, 6629, 6630, 5, 866, 0, 0, 6630, 6631, 3, 650, 325, 0, 6631, 6632, 5, 867, 0, 0, 6632, 6634, 1, 0, 0, 0, 6633, 6628, 1, 0, 0, 0, 6633, 6634, 1, 0, 0, 0, 6634, 603, 1, 0, 0, 0, 6635, 6654, 5, 366, 0, 0, 6636, 6654, 5, 422, 0, 0, 6637, 6639, 7, 103, 0, 0, 6638, 6637, 1, 0, 0, 0, 6638, 6639, 1, 0, 0, 0, 6639, 6640, 1, 0, 0, 0, 6640, 6654, 5, 452, 0, 0, 6641, 6654, 5, 517, 0, 0, 6642, 6654, 5, 734, 0, 0, 6643, 6644, 5, 548, 0, 0, 6644, 6654, 5, 324, 0, 0, 6645, 6654, 5, 645, 0, 0, 6646, 6654, 5, 680, 0, 0, 6647, 6651, 5, 752, 0, 0, 6648, 6649, 5, 194, 0, 0, 6649, 6650, 5, 135, 0, 0, 6650, 6652, 5, 104, 0, 0, 6651, 6648, 1, 0, 0, 0, 6651, 6652, 1, 0, 0, 0, 6652, 6654, 1, 0, 0, 0, 6653, 6635, 1, 0, 0, 0, 6653, 6636, 1, 0, 0, 0, 6653, 6638, 1, 0, 0, 0, 6653, 6641, 1, 0, 0, 0, 6653, 6642, 1, 0, 0, 0, 6653, 6643, 1, 0, 0, 0, 6653, 6645, 1, 0, 0, 0, 6653, 6646, 1, 0, 0, 0, 6653, 6647, 1, 0, 0, 0, 6654, 6668, 1, 0, 0, 0, 6655, 6656, 5, 556, 0, 0, 6656, 6658, 5, 452, 0, 0, 6657, 6659, 3, 400, 200, 0, 6658, 6657, 1, 0, 0, 0, 6658, 6659, 1, 0, 0, 0, 6659, 6668, 1, 0, 0, 0, 6660, 6662, 7, 61, 0, 0, 6661, 6663, 3, 660, 330, 0, 6662, 6661, 1, 0, 0, 0, 6662, 6663, 1, 0, 0, 0, 6663, 6665, 1, 0, 0, 0, 6664, 6666, 3, 606, 303, 0, 6665, 6664, 1, 0, 0, 0, 6665, 6666, 1, 0, 0, 0, 6666, 6668, 1, 0, 0, 0, 6667, 6653, 1, 0, 0, 0, 6667, 6655, 1, 0, 0, 0, 6667, 6660, 1, 0, 0, 0, 6668, 605, 1, 0, 0, 0, 6669, 6670, 5, 194, 0, 0, 6670, 6671, 5, 135, 0, 0, 6671, 6675, 5, 104, 0, 0, 6672, 6673, 5, 65, 0, 0, 6673, 6675, 5, 391, 0, 0, 6674, 6669, 1, 0, 0, 0, 6674, 6672, 1, 0, 0, 0, 6675, 607, 1, 0, 0, 0, 6676, 6684, 3, 662, 331, 0, 6677, 6678, 5, 130, 0, 0, 6678, 6681, 5, 866, 0, 0, 6679, 6682, 3, 686, 343, 0, 6680, 6682, 5, 7, 0, 0, 6681, 6679, 1, 0, 0, 0, 6681, 6680, 1, 0, 0, 0, 6682, 6683, 1, 0, 0, 0, 6683, 6685, 5, 867, 0, 0, 6684, 6677, 1, 0, 0, 0, 6684, 6685, 1, 0, 0, 0, 6685, 6693, 1, 0, 0, 0, 6686, 6688, 7, 19, 0, 0, 6687, 6686, 1, 0, 0, 0, 6687, 6688, 1, 0, 0, 0, 6688, 6689, 1, 0, 0, 0, 6689, 6690, 5, 866, 0, 0, 6690, 6691, 3, 650, 325, 0, 6691, 6692, 5, 867, 0, 0, 6692, 6694, 1, 0, 0, 0, 6693, 6687, 1, 0, 0, 0, 6693, 6694, 1, 0, 0, 0, 6694, 6697, 1, 0, 0, 0, 6695, 6696, 5, 79, 0, 0, 6696, 6698, 5, 446, 0, 0, 6697, 6695, 1, 0, 0, 0, 6697, 6698, 1, 0, 0, 0, 6698, 609, 1, 0, 0, 0, 6699, 6700, 7, 104, 0, 0, 6700, 6703, 3, 662, 331, 0, 6701, 6704, 3, 674, 337, 0, 6702, 6704, 5, 882, 0, 0, 6703, 6701, 1, 0, 0, 0, 6703, 6702, 1, 0, 0, 0, 6703, 6704, 1, 0, 0, 0, 6704, 611, 1, 0, 0, 0, 6705, 6711, 7, 104, 0, 0, 6706, 6712, 5, 392, 0, 0, 6707, 6712, 5, 528, 0, 0, 6708, 6709, 5, 826, 0, 0, 6709, 6710, 5, 857, 0, 0, 6710, 6712, 7, 105, 0, 0, 6711, 6706, 1, 0, 0, 0, 6711, 6707, 1, 0, 0, 0, 6711, 6708, 1, 0, 0, 0, 6711, 6712, 1, 0, 0, 0, 6712, 6713, 1, 0, 0, 0, 6713, 6714, 3, 634, 317, 0, 6714, 613, 1, 0, 0, 0, 6715, 6716, 7, 104, 0, 0, 6716, 6720, 5, 10, 0, 0, 6717, 6718, 5, 826, 0, 0, 6718, 6719, 5, 857, 0, 0, 6719, 6721, 5, 666, 0, 0, 6720, 6717, 1, 0, 0, 0, 6720, 6721, 1, 0, 0, 0, 6721, 6722, 1, 0, 0, 0, 6722, 6723, 3, 210, 105, 0, 6723, 615, 1, 0, 0, 0, 6724, 6725, 5, 419, 0, 0, 6725, 6726, 5, 882, 0, 0, 6726, 617, 1, 0, 0, 0, 6727, 6728, 5, 187, 0, 0, 6728, 6729, 3, 638, 319, 0, 6729, 619, 1, 0, 0, 0, 6730, 6738, 5, 158, 0, 0, 6731, 6733, 5, 164, 0, 0, 6732, 6734, 5, 682, 0, 0, 6733, 6732, 1, 0, 0, 0, 6733, 6734, 1, 0, 0, 0, 6734, 6735, 1, 0, 0, 0, 6735, 6739, 3, 734, 367, 0, 6736, 6739, 5, 889, 0, 0, 6737, 6739, 5, 890, 0, 0, 6738, 6731, 1, 0, 0, 0, 6738, 6736, 1, 0, 0, 0, 6738, 6737, 1, 0, 0, 0, 6739, 6749, 1, 0, 0, 0, 6740, 6741, 5, 155, 0, 0, 6741, 6746, 3, 624, 312, 0, 6742, 6743, 5, 868, 0, 0, 6743, 6745, 3, 624, 312, 0, 6744, 6742, 1, 0, 0, 0, 6745, 6748, 1, 0, 0, 0, 6746, 6744, 1, 0, 0, 0, 6746, 6747, 1, 0, 0, 0, 6747, 6750, 1, 0, 0, 0, 6748, 6746, 1, 0, 0, 0, 6749, 6740, 1, 0, 0, 0, 6749, 6750, 1, 0, 0, 0, 6750, 621, 1, 0, 0, 0, 6751, 6759, 5, 145, 0, 0, 6752, 6754, 5, 164, 0, 0, 6753, 6755, 5, 682, 0, 0, 6754, 6753, 1, 0, 0, 0, 6754, 6755, 1, 0, 0, 0, 6755, 6756, 1, 0, 0, 0, 6756, 6760, 3, 734, 367, 0, 6757, 6760, 5, 889, 0, 0, 6758, 6760, 5, 890, 0, 0, 6759, 6752, 1, 0, 0, 0, 6759, 6757, 1, 0, 0, 0, 6759, 6758, 1, 0, 0, 0, 6759, 6760, 1, 0, 0, 0, 6760, 6770, 1, 0, 0, 0, 6761, 6762, 5, 155, 0, 0, 6762, 6767, 3, 624, 312, 0, 6763, 6764, 5, 868, 0, 0, 6764, 6766, 3, 624, 312, 0, 6765, 6763, 1, 0, 0, 0, 6766, 6769, 1, 0, 0, 0, 6767, 6765, 1, 0, 0, 0, 6767, 6768, 1, 0, 0, 0, 6768, 6771, 1, 0, 0, 0, 6769, 6767, 1, 0, 0, 0, 6770, 6761, 1, 0, 0, 0, 6770, 6771, 1, 0, 0, 0, 6771, 623, 1, 0, 0, 0, 6772, 6773, 7, 106, 0, 0, 6773, 6778, 5, 857, 0, 0, 6774, 6779, 3, 734, 367, 0, 6775, 6779, 5, 883, 0, 0, 6776, 6779, 3, 702, 351, 0, 6777, 6779, 3, 724, 362, 0, 6778, 6774, 1, 0, 0, 0, 6778, 6775, 1, 0, 0, 0, 6778, 6776, 1, 0, 0, 0, 6778, 6777, 1, 0, 0, 0, 6779, 625, 1, 0, 0, 0, 6780, 6782, 5, 194, 0, 0, 6781, 6783, 5, 552, 0, 0, 6782, 6781, 1, 0, 0, 0, 6782, 6783, 1, 0, 0, 0, 6783, 6784, 1, 0, 0, 0, 6784, 6789, 3, 52, 26, 0, 6785, 6786, 5, 868, 0, 0, 6786, 6788, 3, 52, 26, 0, 6787, 6785, 1, 0, 0, 0, 6788, 6791, 1, 0, 0, 0, 6789, 6787, 1, 0, 0, 0, 6789, 6790, 1, 0, 0, 0, 6790, 627, 1, 0, 0, 0, 6791, 6789, 1, 0, 0, 0, 6792, 6793, 5, 173, 0, 0, 6793, 6795, 3, 662, 331, 0, 6794, 6796, 3, 258, 129, 0, 6795, 6794, 1, 0, 0, 0, 6795, 6796, 1, 0, 0, 0, 6796, 6798, 1, 0, 0, 0, 6797, 6799, 3, 328, 164, 0, 6798, 6797, 1, 0, 0, 0, 6798, 6799, 1, 0, 0, 0, 6799, 629, 1, 0, 0, 0, 6800, 6802, 5, 72, 0, 0, 6801, 6803, 7, 107, 0, 0, 6802, 6801, 1, 0, 0, 0, 6802, 6803, 1, 0, 0, 0, 6803, 6804, 1, 0, 0, 0, 6804, 6836, 5, 48, 0, 0, 6805, 6806, 3, 568, 284, 0, 6806, 6807, 5, 857, 0, 0, 6807, 6815, 7, 108, 0, 0, 6808, 6809, 5, 868, 0, 0, 6809, 6810, 3, 568, 284, 0, 6810, 6811, 5, 857, 0, 0, 6811, 6812, 7, 108, 0, 0, 6812, 6814, 1, 0, 0, 0, 6813, 6808, 1, 0, 0, 0, 6814, 6817, 1, 0, 0, 0, 6815, 6813, 1, 0, 0, 0, 6815, 6816, 1, 0, 0, 0, 6816, 6837, 1, 0, 0, 0, 6817, 6815, 1, 0, 0, 0, 6818, 6821, 5, 30, 0, 0, 6819, 6822, 3, 730, 365, 0, 6820, 6822, 3, 568, 284, 0, 6821, 6819, 1, 0, 0, 0, 6821, 6820, 1, 0, 0, 0, 6822, 6823, 1, 0, 0, 0, 6823, 6824, 3, 568, 284, 0, 6824, 6825, 5, 857, 0, 0, 6825, 6833, 3, 632, 316, 0, 6826, 6827, 5, 868, 0, 0, 6827, 6828, 3, 568, 284, 0, 6828, 6829, 5, 857, 0, 0, 6829, 6830, 3, 632, 316, 0, 6830, 6832, 1, 0, 0, 0, 6831, 6826, 1, 0, 0, 0, 6832, 6835, 1, 0, 0, 0, 6833, 6831, 1, 0, 0, 0, 6833, 6834, 1, 0, 0, 0, 6834, 6837, 1, 0, 0, 0, 6835, 6833, 1, 0, 0, 0, 6836, 6805, 1, 0, 0, 0, 6836, 6818, 1, 0, 0, 0, 6837, 631, 1, 0, 0, 0, 6838, 6839, 7, 109, 0, 0, 6839, 633, 1, 0, 0, 0, 6840, 6846, 3, 210, 105, 0, 6841, 6846, 3, 186, 93, 0, 6842, 6846, 3, 192, 96, 0, 6843, 6846, 3, 208, 104, 0, 6844, 6846, 3, 220, 110, 0, 6845, 6840, 1, 0, 0, 0, 6845, 6841, 1, 0, 0, 0, 6845, 6842, 1, 0, 0, 0, 6845, 6843, 1, 0, 0, 0, 6845, 6844, 1, 0, 0, 0, 6846, 6851, 1, 0, 0, 0, 6847, 6848, 5, 65, 0, 0, 6848, 6849, 5, 349, 0, 0, 6849, 6851, 3, 722, 361, 0, 6850, 6845, 1, 0, 0, 0, 6850, 6847, 1, 0, 0, 0, 6851, 635, 1, 0, 0, 0, 6852, 6853, 3, 718, 359, 0, 6853, 637, 1, 0, 0, 0, 6854, 6855, 3, 718, 359, 0, 6855, 639, 1, 0, 0, 0, 6856, 6857, 3, 718, 359, 0, 6857, 641, 1, 0, 0, 0, 6858, 6859, 3, 718, 359, 0, 6859, 643, 1, 0, 0, 0, 6860, 6861, 3, 718, 359, 0, 6861, 645, 1, 0, 0, 0, 6862, 6863, 3, 718, 359, 0, 6863, 647, 1, 0, 0, 0, 6864, 6865, 3, 722, 361, 0, 6865, 649, 1, 0, 0, 0, 6866, 6871, 3, 652, 326, 0, 6867, 6868, 5, 868, 0, 0, 6868, 6870, 3, 652, 326, 0, 6869, 6867, 1, 0, 0, 0, 6870, 6873, 1, 0, 0, 0, 6871, 6869, 1, 0, 0, 0, 6871, 6872, 1, 0, 0, 0, 6872, 651, 1, 0, 0, 0, 6873, 6871, 1, 0, 0, 0, 6874, 6875, 3, 722, 361, 0, 6875, 653, 1, 0, 0, 0, 6876, 6877, 3, 722, 361, 0, 6877, 655, 1, 0, 0, 0, 6878, 6879, 3, 722, 361, 0, 6879, 657, 1, 0, 0, 0, 6880, 6881, 3, 718, 359, 0, 6881, 659, 1, 0, 0, 0, 6882, 6887, 3, 662, 331, 0, 6883, 6884, 5, 868, 0, 0, 6884, 6886, 3, 662, 331, 0, 6885, 6883, 1, 0, 0, 0, 6886, 6889, 1, 0, 0, 0, 6887, 6885, 1, 0, 0, 0, 6887, 6888, 1, 0, 0, 0, 6888, 661, 1, 0, 0, 0, 6889, 6887, 1, 0, 0, 0, 6890, 6891, 3, 718, 359, 0, 6891, 663, 1, 0, 0, 0, 6892, 6897, 3, 666, 333, 0, 6893, 6894, 5, 868, 0, 0, 6894, 6896, 3, 666, 333, 0, 6895, 6893, 1, 0, 0, 0, 6896, 6899, 1, 0, 0, 0, 6897, 6895, 1, 0, 0, 0, 6897, 6898, 1, 0, 0, 0, 6898, 665, 1, 0, 0, 0, 6899, 6897, 1, 0, 0, 0, 6900, 6903, 3, 700, 350, 0, 6901, 6903, 3, 722, 361, 0, 6902, 6900, 1, 0, 0, 0, 6902, 6901, 1, 0, 0, 0, 6903, 667, 1, 0, 0, 0, 6904, 6909, 3, 722, 361, 0, 6905, 6907, 3, 726, 363, 0, 6906, 6908, 3, 726, 363, 0, 6907, 6906, 1, 0, 0, 0, 6907, 6908, 1, 0, 0, 0, 6908, 6910, 1, 0, 0, 0, 6909, 6905, 1, 0, 0, 0, 6909, 6910, 1, 0, 0, 0, 6910, 6919, 1, 0, 0, 0, 6911, 6913, 9, 0, 0, 0, 6912, 6911, 1, 0, 0, 0, 6912, 6913, 1, 0, 0, 0, 6913, 6914, 1, 0, 0, 0, 6914, 6916, 3, 726, 363, 0, 6915, 6917, 3, 726, 363, 0, 6916, 6915, 1, 0, 0, 0, 6916, 6917, 1, 0, 0, 0, 6917, 6919, 1, 0, 0, 0, 6918, 6904, 1, 0, 0, 0, 6918, 6912, 1, 0, 0, 0, 6919, 669, 1, 0, 0, 0, 6920, 6925, 3, 674, 337, 0, 6921, 6922, 5, 868, 0, 0, 6922, 6924, 3, 674, 337, 0, 6923, 6921, 1, 0, 0, 0, 6924, 6927, 1, 0, 0, 0, 6925, 6923, 1, 0, 0, 0, 6925, 6926, 1, 0, 0, 0, 6926, 671, 1, 0, 0, 0, 6927, 6925, 1, 0, 0, 0, 6928, 6929, 1, 0, 0, 0, 6929, 673, 1, 0, 0, 0, 6930, 6935, 3, 722, 361, 0, 6931, 6933, 3, 728, 364, 0, 6932, 6934, 3, 728, 364, 0, 6933, 6932, 1, 0, 0, 0, 6933, 6934, 1, 0, 0, 0, 6934, 6936, 1, 0, 0, 0, 6935, 6931, 1, 0, 0, 0, 6935, 6936, 1, 0, 0, 0, 6936, 6947, 1, 0, 0, 0, 6937, 6939, 9, 0, 0, 0, 6938, 6937, 1, 0, 0, 0, 6938, 6939, 1, 0, 0, 0, 6939, 6940, 1, 0, 0, 0, 6940, 6942, 3, 726, 363, 0, 6941, 6943, 3, 726, 363, 0, 6942, 6941, 1, 0, 0, 0, 6942, 6943, 1, 0, 0, 0, 6943, 6947, 1, 0, 0, 0, 6944, 6945, 4, 337, 3, 0, 6945, 6947, 3, 672, 336, 0, 6946, 6930, 1, 0, 0, 0, 6946, 6938, 1, 0, 0, 0, 6946, 6944, 1, 0, 0, 0, 6947, 675, 1, 0, 0, 0, 6948, 6953, 3, 722, 361, 0, 6949, 6951, 3, 726, 363, 0, 6950, 6952, 3, 726, 363, 0, 6951, 6950, 1, 0, 0, 0, 6951, 6952, 1, 0, 0, 0, 6952, 6954, 1, 0, 0, 0, 6953, 6949, 1, 0, 0, 0, 6953, 6954, 1, 0, 0, 0, 6954, 6963, 1, 0, 0, 0, 6955, 6957, 9, 0, 0, 0, 6956, 6955, 1, 0, 0, 0, 6956, 6957, 1, 0, 0, 0, 6957, 6958, 1, 0, 0, 0, 6958, 6960, 3, 726, 363, 0, 6959, 6961, 3, 726, 363, 0, 6960, 6959, 1, 0, 0, 0, 6960, 6961, 1, 0, 0, 0, 6961, 6963, 1, 0, 0, 0, 6962, 6948, 1, 0, 0, 0, 6962, 6956, 1, 0, 0, 0, 6963, 677, 1, 0, 0, 0, 6964, 6965, 4, 339, 4, 0, 6965, 6974, 3, 672, 336, 0, 6966, 6971, 3, 722, 361, 0, 6967, 6969, 3, 728, 364, 0, 6968, 6970, 3, 728, 364, 0, 6969, 6968, 1, 0, 0, 0, 6969, 6970, 1, 0, 0, 0, 6970, 6972, 1, 0, 0, 0, 6971, 6967, 1, 0, 0, 0, 6971, 6972, 1, 0, 0, 0, 6972, 6974, 1, 0, 0, 0, 6973, 6964, 1, 0, 0, 0, 6973, 6966, 1, 0, 0, 0, 6974, 679, 1, 0, 0, 0, 6975, 6976, 3, 722, 361, 0, 6976, 681, 1, 0, 0, 0, 6977, 6978, 3, 722, 361, 0, 6978, 683, 1, 0, 0, 0, 6979, 6980, 3, 722, 361, 0, 6980, 685, 1, 0, 0, 0, 6981, 6986, 3, 688, 344, 0, 6982, 6983, 5, 868, 0, 0, 6983, 6985, 3, 688, 344, 0, 6984, 6982, 1, 0, 0, 0, 6985, 6988, 1, 0, 0, 0, 6986, 6984, 1, 0, 0, 0, 6986, 6987, 1, 0, 0, 0, 6987, 687, 1, 0, 0, 0, 6988, 6986, 1, 0, 0, 0, 6989, 6990, 3, 722, 361, 0, 6990, 689, 1, 0, 0, 0, 6991, 6996, 3, 722, 361, 0, 6992, 6993, 5, 866, 0, 0, 6993, 6994, 3, 730, 365, 0, 6994, 6995, 5, 867, 0, 0, 6995, 6997, 1, 0, 0, 0, 6996, 6992, 1, 0, 0, 0, 6996, 6997, 1, 0, 0, 0, 6997, 7000, 1, 0, 0, 0, 6998, 7000, 3, 822, 411, 0, 6999, 6991, 1, 0, 0, 0, 6999, 6998, 1, 0, 0, 0, 7000, 7002, 1, 0, 0, 0, 7001, 7003, 7, 55, 0, 0, 7002, 7001, 1, 0, 0, 0, 7002, 7003, 1, 0, 0, 0, 7003, 691, 1, 0, 0, 0, 7004, 7005, 3, 694, 347, 0, 7005, 7006, 5, 878, 0, 0, 7006, 7007, 3, 730, 365, 0, 7007, 693, 1, 0, 0, 0, 7008, 7009, 3, 696, 348, 0, 7009, 7010, 5, 891, 0, 0, 7010, 695, 1, 0, 0, 0, 7011, 7016, 5, 882, 0, 0, 7012, 7016, 5, 889, 0, 0, 7013, 7016, 5, 704, 0, 0, 7014, 7016, 3, 852, 426, 0, 7015, 7011, 1, 0, 0, 0, 7015, 7012, 1, 0, 0, 0, 7015, 7013, 1, 0, 0, 0, 7015, 7014, 1, 0, 0, 0, 7016, 697, 1, 0, 0, 0, 7017, 7018, 7, 110, 0, 0, 7018, 699, 1, 0, 0, 0, 7019, 7021, 3, 696, 348, 0, 7020, 7022, 3, 698, 349, 0, 7021, 7020, 1, 0, 0, 0, 7021, 7022, 1, 0, 0, 0, 7022, 7025, 1, 0, 0, 0, 7023, 7025, 3, 60, 30, 0, 7024, 7019, 1, 0, 0, 0, 7024, 7023, 1, 0, 0, 0, 7025, 701, 1, 0, 0, 0, 7026, 7027, 7, 111, 0, 0, 7027, 703, 1, 0, 0, 0, 7028, 7033, 5, 228, 0, 0, 7029, 7033, 3, 842, 421, 0, 7030, 7033, 5, 882, 0, 0, 7031, 7033, 5, 879, 0, 0, 7032, 7028, 1, 0, 0, 0, 7032, 7029, 1, 0, 0, 0, 7032, 7030, 1, 0, 0, 0, 7032, 7031, 1, 0, 0, 0, 7033, 705, 1, 0, 0, 0, 7034, 7035, 3, 722, 361, 0, 7035, 707, 1, 0, 0, 0, 7036, 7040, 3, 710, 355, 0, 7037, 7040, 5, 889, 0, 0, 7038, 7040, 5, 882, 0, 0, 7039, 7036, 1, 0, 0, 0, 7039, 7037, 1, 0, 0, 0, 7039, 7038, 1, 0, 0, 0, 7040, 709, 1, 0, 0, 0, 7041, 7042, 7, 112, 0, 0, 7042, 711, 1, 0, 0, 0, 7043, 7044, 3, 730, 365, 0, 7044, 7045, 5, 854, 0, 0, 7045, 7046, 3, 730, 365, 0, 7046, 7047, 5, 854, 0, 0, 7047, 7048, 3, 730, 365, 0, 7048, 7049, 5, 854, 0, 0, 7049, 7050, 3, 730, 365, 0, 7050, 7051, 5, 854, 0, 0, 7051, 7057, 3, 730, 365, 0, 7052, 7053, 5, 878, 0, 0, 7053, 7054, 3, 730, 365, 0, 7054, 7055, 5, 854, 0, 0, 7055, 7056, 3, 730, 365, 0, 7056, 7058, 1, 0, 0, 0, 7057, 7052, 1, 0, 0, 0, 7058, 7059, 1, 0, 0, 0, 7059, 7057, 1, 0, 0, 0, 7059, 7060, 1, 0, 0, 0, 7060, 713, 1, 0, 0, 0, 7061, 7068, 3, 716, 358, 0, 7062, 7063, 5, 868, 0, 0, 7063, 7066, 3, 716, 358, 0, 7064, 7065, 5, 868, 0, 0, 7065, 7067, 3, 730, 365, 0, 7066, 7064, 1, 0, 0, 0, 7066, 7067, 1, 0, 0, 0, 7067, 7069, 1, 0, 0, 0, 7068, 7062, 1, 0, 0, 0, 7068, 7069, 1, 0, 0, 0, 7069, 715, 1, 0, 0, 0, 7070, 7078, 5, 882, 0, 0, 7071, 7078, 5, 887, 0, 0, 7072, 7074, 5, 884, 0, 0, 7073, 7072, 1, 0, 0, 0, 7074, 7075, 1, 0, 0, 0, 7075, 7073, 1, 0, 0, 0, 7075, 7076, 1, 0, 0, 0, 7076, 7078, 1, 0, 0, 0, 7077, 7070, 1, 0, 0, 0, 7077, 7071, 1, 0, 0, 0, 7077, 7073, 1, 0, 0, 0, 7078, 717, 1, 0, 0, 0, 7079, 7081, 3, 722, 361, 0, 7080, 7082, 3, 726, 363, 0, 7081, 7080, 1, 0, 0, 0, 7081, 7082, 1, 0, 0, 0, 7082, 719, 1, 0, 0, 0, 7083, 7088, 3, 722, 361, 0, 7084, 7085, 5, 868, 0, 0, 7085, 7087, 3, 722, 361, 0, 7086, 7084, 1, 0, 0, 0, 7087, 7090, 1, 0, 0, 0, 7088, 7086, 1, 0, 0, 0, 7088, 7089, 1, 0, 0, 0, 7089, 721, 1, 0, 0, 0, 7090, 7088, 1, 0, 0, 0, 7091, 7095, 3, 724, 362, 0, 7092, 7095, 5, 879, 0, 0, 7093, 7095, 5, 882, 0, 0, 7094, 7091, 1, 0, 0, 0, 7094, 7092, 1, 0, 0, 0, 7094, 7093, 1, 0, 0, 0, 7095, 723, 1, 0, 0, 0, 7096, 7106, 5, 889, 0, 0, 7097, 7106, 3, 842, 421, 0, 7098, 7106, 3, 844, 422, 0, 7099, 7106, 3, 710, 355, 0, 7100, 7106, 3, 846, 423, 0, 7101, 7106, 3, 848, 424, 0, 7102, 7106, 3, 850, 425, 0, 7103, 7106, 3, 852, 426, 0, 7104, 7106, 3, 814, 407, 0, 7105, 7096, 1, 0, 0, 0, 7105, 7097, 1, 0, 0, 0, 7105, 7098, 1, 0, 0, 0, 7105, 7099, 1, 0, 0, 0, 7105, 7100, 1, 0, 0, 0, 7105, 7101, 1, 0, 0, 0, 7105, 7102, 1, 0, 0, 0, 7105, 7103, 1, 0, 0, 0, 7105, 7104, 1, 0, 0, 0, 7106, 725, 1, 0, 0, 0, 7107, 7108, 5, 865, 0, 0, 7108, 7112, 5, 889, 0, 0, 7109, 7110, 5, 865, 0, 0, 7110, 7112, 3, 722, 361, 0, 7111, 7107, 1, 0, 0, 0, 7111, 7109, 1, 0, 0, 0, 7112, 727, 1, 0, 0, 0, 7113, 7114, 5, 865, 0, 0, 7114, 7121, 5, 889, 0, 0, 7115, 7116, 5, 865, 0, 0, 7116, 7121, 3, 722, 361, 0, 7117, 7118, 4, 364, 5, 0, 7118, 7119, 5, 865, 0, 0, 7119, 7121, 3, 672, 336, 0, 7120, 7113, 1, 0, 0, 0, 7120, 7115, 1, 0, 0, 0, 7120, 7117, 1, 0, 0, 0, 7121, 729, 1, 0, 0, 0, 7122, 7123, 7, 113, 0, 0, 7123, 731, 1, 0, 0, 0, 7124, 7127, 5, 880, 0, 0, 7125, 7127, 3, 730, 365, 0, 7126, 7124, 1, 0, 0, 0, 7126, 7125, 1, 0, 0, 0, 7127, 733, 1, 0, 0, 0, 7128, 7130, 5, 888, 0, 0, 7129, 7128, 1, 0, 0, 0, 7129, 7130, 1, 0, 0, 0, 7130, 7131, 1, 0, 0, 0, 7131, 7134, 5, 882, 0, 0, 7132, 7134, 5, 881, 0, 0, 7133, 7129, 1, 0, 0, 0, 7133, 7132, 1, 0, 0, 0, 7134, 7136, 1, 0, 0, 0, 7135, 7137, 5, 882, 0, 0, 7136, 7135, 1, 0, 0, 0, 7137, 7138, 1, 0, 0, 0, 7138, 7136, 1, 0, 0, 0, 7138, 7139, 1, 0, 0, 0, 7139, 7152, 1, 0, 0, 0, 7140, 7142, 5, 888, 0, 0, 7141, 7140, 1, 0, 0, 0, 7141, 7142, 1, 0, 0, 0, 7142, 7143, 1, 0, 0, 0, 7143, 7146, 5, 882, 0, 0, 7144, 7146, 5, 881, 0, 0, 7145, 7141, 1, 0, 0, 0, 7145, 7144, 1, 0, 0, 0, 7146, 7149, 1, 0, 0, 0, 7147, 7148, 5, 28, 0, 0, 7148, 7150, 3, 706, 353, 0, 7149, 7147, 1, 0, 0, 0, 7149, 7150, 1, 0, 0, 0, 7150, 7152, 1, 0, 0, 0, 7151, 7133, 1, 0, 0, 0, 7151, 7145, 1, 0, 0, 0, 7152, 735, 1, 0, 0, 0, 7153, 7154, 7, 114, 0, 0, 7154, 737, 1, 0, 0, 0, 7155, 7157, 5, 888, 0, 0, 7156, 7155, 1, 0, 0, 0, 7156, 7157, 1, 0, 0, 0, 7157, 7158, 1, 0, 0, 0, 7158, 7159, 5, 884, 0, 0, 7159, 739, 1, 0, 0, 0, 7160, 7162, 5, 114, 0, 0, 7161, 7160, 1, 0, 0, 0, 7161, 7162, 1, 0, 0, 0, 7162, 7163, 1, 0, 0, 0, 7163, 7164, 7, 115, 0, 0, 7164, 741, 1, 0, 0, 0, 7165, 7178, 3, 734, 367, 0, 7166, 7178, 3, 730, 365, 0, 7167, 7168, 5, 854, 0, 0, 7168, 7178, 3, 730, 365, 0, 7169, 7178, 3, 738, 369, 0, 7170, 7178, 3, 736, 368, 0, 7171, 7178, 5, 885, 0, 0, 7172, 7178, 5, 887, 0, 0, 7173, 7175, 5, 114, 0, 0, 7174, 7173, 1, 0, 0, 0, 7174, 7175, 1, 0, 0, 0, 7175, 7176, 1, 0, 0, 0, 7176, 7178, 7, 115, 0, 0, 7177, 7165, 1, 0, 0, 0, 7177, 7166, 1, 0, 0, 0, 7177, 7167, 1, 0, 0, 0, 7177, 7169, 1, 0, 0, 0, 7177, 7170, 1, 0, 0, 0, 7177, 7171, 1, 0, 0, 0, 7177, 7172, 1, 0, 0, 0, 7177, 7174, 1, 0, 0, 0, 7178, 743, 1, 0, 0, 0, 7179, 7181, 7, 116, 0, 0, 7180, 7182, 5, 240, 0, 0, 7181, 7180, 1, 0, 0, 0, 7181, 7182, 1, 0, 0, 0, 7182, 7184, 1, 0, 0, 0, 7183, 7185, 3, 750, 375, 0, 7184, 7183, 1, 0, 0, 0, 7184, 7185, 1, 0, 0, 0, 7185, 7187, 1, 0, 0, 0, 7186, 7188, 5, 228, 0, 0, 7187, 7186, 1, 0, 0, 0, 7187, 7188, 1, 0, 0, 0, 7188, 7192, 1, 0, 0, 0, 7189, 7190, 3, 58, 29, 0, 7190, 7191, 3, 704, 352, 0, 7191, 7193, 1, 0, 0, 0, 7192, 7189, 1, 0, 0, 0, 7192, 7193, 1, 0, 0, 0, 7193, 7197, 1, 0, 0, 0, 7194, 7195, 5, 28, 0, 0, 7195, 7198, 3, 706, 353, 0, 7196, 7198, 5, 228, 0, 0, 7197, 7194, 1, 0, 0, 0, 7197, 7196, 1, 0, 0, 0, 7197, 7198, 1, 0, 0, 0, 7198, 7306, 1, 0, 0, 0, 7199, 7200, 5, 227, 0, 0, 7200, 7201, 7, 117, 0, 0, 7201, 7203, 5, 240, 0, 0, 7202, 7204, 3, 750, 375, 0, 7203, 7202, 1, 0, 0, 0, 7203, 7204, 1, 0, 0, 0, 7204, 7206, 1, 0, 0, 0, 7205, 7207, 5, 228, 0, 0, 7206, 7205, 1, 0, 0, 0, 7206, 7207, 1, 0, 0, 0, 7207, 7306, 1, 0, 0, 0, 7208, 7209, 5, 227, 0, 0, 7209, 7211, 7, 118, 0, 0, 7210, 7212, 3, 750, 375, 0, 7211, 7210, 1, 0, 0, 0, 7211, 7212, 1, 0, 0, 0, 7212, 7214, 1, 0, 0, 0, 7213, 7215, 5, 228, 0, 0, 7214, 7213, 1, 0, 0, 0, 7214, 7215, 1, 0, 0, 0, 7215, 7306, 1, 0, 0, 0, 7216, 7217, 5, 498, 0, 0, 7217, 7219, 5, 225, 0, 0, 7218, 7220, 3, 750, 375, 0, 7219, 7218, 1, 0, 0, 0, 7219, 7220, 1, 0, 0, 0, 7220, 7222, 1, 0, 0, 0, 7221, 7223, 5, 228, 0, 0, 7222, 7221, 1, 0, 0, 0, 7222, 7223, 1, 0, 0, 0, 7223, 7306, 1, 0, 0, 0, 7224, 7226, 7, 119, 0, 0, 7225, 7227, 3, 750, 375, 0, 7226, 7225, 1, 0, 0, 0, 7226, 7227, 1, 0, 0, 0, 7227, 7231, 1, 0, 0, 0, 7228, 7230, 7, 120, 0, 0, 7229, 7228, 1, 0, 0, 0, 7230, 7233, 1, 0, 0, 0, 7231, 7229, 1, 0, 0, 0, 7231, 7232, 1, 0, 0, 0, 7232, 7306, 1, 0, 0, 0, 7233, 7231, 1, 0, 0, 0, 7234, 7236, 5, 210, 0, 0, 7235, 7237, 3, 752, 376, 0, 7236, 7235, 1, 0, 0, 0, 7236, 7237, 1, 0, 0, 0, 7237, 7241, 1, 0, 0, 0, 7238, 7240, 7, 120, 0, 0, 7239, 7238, 1, 0, 0, 0, 7240, 7243, 1, 0, 0, 0, 7241, 7239, 1, 0, 0, 0, 7241, 7242, 1, 0, 0, 0, 7242, 7306, 1, 0, 0, 0, 7243, 7241, 1, 0, 0, 0, 7244, 7246, 5, 211, 0, 0, 7245, 7247, 5, 212, 0, 0, 7246, 7245, 1, 0, 0, 0, 7246, 7247, 1, 0, 0, 0, 7247, 7249, 1, 0, 0, 0, 7248, 7250, 3, 752, 376, 0, 7249, 7248, 1, 0, 0, 0, 7249, 7250, 1, 0, 0, 0, 7250, 7254, 1, 0, 0, 0, 7251, 7253, 7, 120, 0, 0, 7252, 7251, 1, 0, 0, 0, 7253, 7256, 1, 0, 0, 0, 7254, 7252, 1, 0, 0, 0, 7254, 7255, 1, 0, 0, 0, 7255, 7306, 1, 0, 0, 0, 7256, 7254, 1, 0, 0, 0, 7257, 7259, 7, 121, 0, 0, 7258, 7260, 3, 754, 377, 0, 7259, 7258, 1, 0, 0, 0, 7259, 7260, 1, 0, 0, 0, 7260, 7264, 1, 0, 0, 0, 7261, 7263, 7, 120, 0, 0, 7262, 7261, 1, 0, 0, 0, 7263, 7266, 1, 0, 0, 0, 7264, 7262, 1, 0, 0, 0, 7264, 7265, 1, 0, 0, 0, 7265, 7306, 1, 0, 0, 0, 7266, 7264, 1, 0, 0, 0, 7267, 7306, 7, 122, 0, 0, 7268, 7270, 7, 123, 0, 0, 7269, 7271, 3, 750, 375, 0, 7270, 7269, 1, 0, 0, 0, 7270, 7271, 1, 0, 0, 0, 7271, 7306, 1, 0, 0, 0, 7272, 7273, 7, 124, 0, 0, 7273, 7275, 3, 746, 373, 0, 7274, 7276, 5, 228, 0, 0, 7275, 7274, 1, 0, 0, 0, 7275, 7276, 1, 0, 0, 0, 7276, 7280, 1, 0, 0, 0, 7277, 7278, 3, 58, 29, 0, 7278, 7279, 3, 704, 352, 0, 7279, 7281, 1, 0, 0, 0, 7280, 7277, 1, 0, 0, 0, 7280, 7281, 1, 0, 0, 0, 7281, 7306, 1, 0, 0, 0, 7282, 7285, 7, 125, 0, 0, 7283, 7284, 5, 834, 0, 0, 7284, 7286, 3, 730, 365, 0, 7285, 7283, 1, 0, 0, 0, 7285, 7286, 1, 0, 0, 0, 7286, 7306, 1, 0, 0, 0, 7287, 7289, 5, 233, 0, 0, 7288, 7290, 5, 225, 0, 0, 7289, 7288, 1, 0, 0, 0, 7289, 7290, 1, 0, 0, 0, 7290, 7292, 1, 0, 0, 0, 7291, 7293, 5, 228, 0, 0, 7292, 7291, 1, 0, 0, 0, 7292, 7293, 1, 0, 0, 0, 7293, 7297, 1, 0, 0, 0, 7294, 7295, 3, 58, 29, 0, 7295, 7296, 3, 704, 352, 0, 7296, 7298, 1, 0, 0, 0, 7297, 7294, 1, 0, 0, 0, 7297, 7298, 1, 0, 0, 0, 7298, 7301, 1, 0, 0, 0, 7299, 7300, 5, 28, 0, 0, 7300, 7302, 3, 706, 353, 0, 7301, 7299, 1, 0, 0, 0, 7301, 7302, 1, 0, 0, 0, 7302, 7306, 1, 0, 0, 0, 7303, 7304, 5, 233, 0, 0, 7304, 7306, 5, 229, 0, 0, 7305, 7179, 1, 0, 0, 0, 7305, 7199, 1, 0, 0, 0, 7305, 7208, 1, 0, 0, 0, 7305, 7216, 1, 0, 0, 0, 7305, 7224, 1, 0, 0, 0, 7305, 7234, 1, 0, 0, 0, 7305, 7244, 1, 0, 0, 0, 7305, 7257, 1, 0, 0, 0, 7305, 7267, 1, 0, 0, 0, 7305, 7268, 1, 0, 0, 0, 7305, 7272, 1, 0, 0, 0, 7305, 7282, 1, 0, 0, 0, 7305, 7287, 1, 0, 0, 0, 7305, 7303, 1, 0, 0, 0, 7306, 745, 1, 0, 0, 0, 7307, 7308, 5, 866, 0, 0, 7308, 7313, 5, 882, 0, 0, 7309, 7310, 5, 868, 0, 0, 7310, 7312, 5, 882, 0, 0, 7311, 7309, 1, 0, 0, 0, 7312, 7315, 1, 0, 0, 0, 7313, 7311, 1, 0, 0, 0, 7313, 7314, 1, 0, 0, 0, 7314, 7316, 1, 0, 0, 0, 7315, 7313, 1, 0, 0, 0, 7316, 7317, 5, 867, 0, 0, 7317, 747, 1, 0, 0, 0, 7318, 7320, 7, 126, 0, 0, 7319, 7321, 3, 750, 375, 0, 7320, 7319, 1, 0, 0, 0, 7320, 7321, 1, 0, 0, 0, 7321, 7341, 1, 0, 0, 0, 7322, 7324, 5, 224, 0, 0, 7323, 7325, 3, 750, 375, 0, 7324, 7323, 1, 0, 0, 0, 7324, 7325, 1, 0, 0, 0, 7325, 7329, 1, 0, 0, 0, 7326, 7327, 3, 58, 29, 0, 7327, 7328, 3, 704, 352, 0, 7328, 7330, 1, 0, 0, 0, 7329, 7326, 1, 0, 0, 0, 7329, 7330, 1, 0, 0, 0, 7330, 7341, 1, 0, 0, 0, 7331, 7341, 7, 127, 0, 0, 7332, 7334, 7, 128, 0, 0, 7333, 7335, 3, 754, 377, 0, 7334, 7333, 1, 0, 0, 0, 7334, 7335, 1, 0, 0, 0, 7335, 7341, 1, 0, 0, 0, 7336, 7338, 7, 129, 0, 0, 7337, 7339, 7, 130, 0, 0, 7338, 7337, 1, 0, 0, 0, 7338, 7339, 1, 0, 0, 0, 7339, 7341, 1, 0, 0, 0, 7340, 7318, 1, 0, 0, 0, 7340, 7322, 1, 0, 0, 0, 7340, 7331, 1, 0, 0, 0, 7340, 7332, 1, 0, 0, 0, 7340, 7336, 1, 0, 0, 0, 7341, 7343, 1, 0, 0, 0, 7342, 7344, 5, 12, 0, 0, 7343, 7342, 1, 0, 0, 0, 7343, 7344, 1, 0, 0, 0, 7344, 749, 1, 0, 0, 0, 7345, 7346, 5, 866, 0, 0, 7346, 7347, 3, 730, 365, 0, 7347, 7348, 5, 867, 0, 0, 7348, 751, 1, 0, 0, 0, 7349, 7350, 5, 866, 0, 0, 7350, 7351, 3, 730, 365, 0, 7351, 7352, 5, 868, 0, 0, 7352, 7353, 3, 730, 365, 0, 7353, 7354, 5, 867, 0, 0, 7354, 753, 1, 0, 0, 0, 7355, 7356, 5, 866, 0, 0, 7356, 7359, 3, 730, 365, 0, 7357, 7358, 5, 868, 0, 0, 7358, 7360, 3, 730, 365, 0, 7359, 7357, 1, 0, 0, 0, 7359, 7360, 1, 0, 0, 0, 7360, 7361, 1, 0, 0, 0, 7361, 7362, 5, 867, 0, 0, 7362, 755, 1, 0, 0, 0, 7363, 7364, 5, 866, 0, 0, 7364, 7369, 3, 690, 345, 0, 7365, 7366, 5, 868, 0, 0, 7366, 7368, 3, 690, 345, 0, 7367, 7365, 1, 0, 0, 0, 7368, 7371, 1, 0, 0, 0, 7369, 7367, 1, 0, 0, 0, 7369, 7370, 1, 0, 0, 0, 7370, 7372, 1, 0, 0, 0, 7371, 7369, 1, 0, 0, 0, 7372, 7373, 5, 867, 0, 0, 7373, 757, 1, 0, 0, 0, 7374, 7379, 3, 822, 411, 0, 7375, 7376, 5, 868, 0, 0, 7376, 7378, 3, 822, 411, 0, 7377, 7375, 1, 0, 0, 0, 7378, 7381, 1, 0, 0, 0, 7379, 7377, 1, 0, 0, 0, 7379, 7380, 1, 0, 0, 0, 7380, 759, 1, 0, 0, 0, 7381, 7379, 1, 0, 0, 0, 7382, 7383, 7, 131, 0, 0, 7383, 7388, 3, 762, 381, 0, 7384, 7385, 5, 868, 0, 0, 7385, 7387, 3, 762, 381, 0, 7386, 7384, 1, 0, 0, 0, 7387, 7390, 1, 0, 0, 0, 7388, 7386, 1, 0, 0, 0, 7388, 7389, 1, 0, 0, 0, 7389, 761, 1, 0, 0, 0, 7390, 7388, 1, 0, 0, 0, 7391, 7392, 5, 866, 0, 0, 7392, 7397, 3, 764, 382, 0, 7393, 7394, 5, 868, 0, 0, 7394, 7396, 3, 764, 382, 0, 7395, 7393, 1, 0, 0, 0, 7396, 7399, 1, 0, 0, 0, 7397, 7395, 1, 0, 0, 0, 7397, 7398, 1, 0, 0, 0, 7398, 7400, 1, 0, 0, 0, 7399, 7397, 1, 0, 0, 0, 7400, 7401, 5, 867, 0, 0, 7401, 763, 1, 0, 0, 0, 7402, 7405, 3, 822, 411, 0, 7403, 7405, 5, 42, 0, 0, 7404, 7402, 1, 0, 0, 0, 7404, 7403, 1, 0, 0, 0, 7405, 765, 1, 0, 0, 0, 7406, 7411, 3, 742, 371, 0, 7407, 7408, 5, 868, 0, 0, 7408, 7410, 3, 742, 371, 0, 7409, 7407, 1, 0, 0, 0, 7410, 7413, 1, 0, 0, 0, 7411, 7409, 1, 0, 0, 0, 7411, 7412, 1, 0, 0, 0, 7412, 767, 1, 0, 0, 0, 7413, 7411, 1, 0, 0, 0, 7414, 7419, 5, 882, 0, 0, 7415, 7416, 5, 868, 0, 0, 7416, 7418, 5, 882, 0, 0, 7417, 7415, 1, 0, 0, 0, 7418, 7421, 1, 0, 0, 0, 7419, 7417, 1, 0, 0, 0, 7419, 7420, 1, 0, 0, 0, 7420, 769, 1, 0, 0, 0, 7421, 7419, 1, 0, 0, 0, 7422, 7427, 5, 892, 0, 0, 7423, 7424, 5, 868, 0, 0, 7424, 7426, 5, 892, 0, 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, 771, 1, 0, 0, 0, 7429, 7427, 1, 0, 0, 0, 7430, 7457, 5, 116, 0, 0, 7431, 7432, 5, 24, 0, 0, 7432, 7433, 5, 866, 0, 0, 7433, 7434, 3, 822, 411, 0, 7434, 7435, 5, 13, 0, 0, 7435, 7436, 3, 748, 374, 0, 7436, 7437, 5, 867, 0, 0, 7437, 7457, 1, 0, 0, 0, 7438, 7440, 3, 828, 414, 0, 7439, 7438, 1, 0, 0, 0, 7439, 7440, 1, 0, 0, 0, 7440, 7441, 1, 0, 0, 0, 7441, 7457, 3, 742, 371, 0, 7442, 7446, 3, 774, 387, 0, 7443, 7444, 5, 119, 0, 0, 7444, 7445, 5, 185, 0, 0, 7445, 7447, 3, 774, 387, 0, 7446, 7443, 1, 0, 0, 0, 7446, 7447, 1, 0, 0, 0, 7447, 7457, 1, 0, 0, 0, 7448, 7449, 5, 866, 0, 0, 7449, 7450, 3, 822, 411, 0, 7450, 7451, 5, 867, 0, 0, 7451, 7457, 1, 0, 0, 0, 7452, 7453, 5, 866, 0, 0, 7453, 7454, 3, 718, 359, 0, 7454, 7455, 5, 867, 0, 0, 7455, 7457, 1, 0, 0, 0, 7456, 7430, 1, 0, 0, 0, 7456, 7431, 1, 0, 0, 0, 7456, 7439, 1, 0, 0, 0, 7456, 7442, 1, 0, 0, 0, 7456, 7448, 1, 0, 0, 0, 7456, 7452, 1, 0, 0, 0, 7457, 773, 1, 0, 0, 0, 7458, 7464, 7, 132, 0, 0, 7459, 7461, 5, 866, 0, 0, 7460, 7462, 3, 730, 365, 0, 7461, 7460, 1, 0, 0, 0, 7461, 7462, 1, 0, 0, 0, 7462, 7463, 1, 0, 0, 0, 7463, 7465, 5, 867, 0, 0, 7464, 7459, 1, 0, 0, 0, 7464, 7465, 1, 0, 0, 0, 7465, 7473, 1, 0, 0, 0, 7466, 7467, 5, 295, 0, 0, 7467, 7469, 5, 866, 0, 0, 7468, 7470, 3, 730, 365, 0, 7469, 7468, 1, 0, 0, 0, 7469, 7470, 1, 0, 0, 0, 7470, 7471, 1, 0, 0, 0, 7471, 7473, 5, 867, 0, 0, 7472, 7458, 1, 0, 0, 0, 7472, 7466, 1, 0, 0, 0, 7473, 775, 1, 0, 0, 0, 7474, 7475, 5, 78, 0, 0, 7475, 7476, 5, 60, 0, 0, 7476, 777, 1, 0, 0, 0, 7477, 7478, 5, 78, 0, 0, 7478, 7479, 5, 114, 0, 0, 7479, 7480, 5, 60, 0, 0, 7480, 779, 1, 0, 0, 0, 7481, 7482, 5, 124, 0, 0, 7482, 7483, 5, 143, 0, 0, 7483, 781, 1, 0, 0, 0, 7484, 7507, 3, 784, 392, 0, 7485, 7507, 3, 792, 396, 0, 7486, 7507, 3, 794, 397, 0, 7487, 7494, 3, 814, 407, 0, 7488, 7489, 5, 866, 0, 0, 7489, 7495, 5, 867, 0, 0, 7490, 7491, 5, 866, 0, 0, 7491, 7492, 3, 818, 409, 0, 7492, 7493, 5, 867, 0, 0, 7493, 7495, 1, 0, 0, 0, 7494, 7488, 1, 0, 0, 0, 7494, 7490, 1, 0, 0, 0, 7495, 7507, 1, 0, 0, 0, 7496, 7503, 3, 642, 321, 0, 7497, 7498, 5, 866, 0, 0, 7498, 7504, 5, 867, 0, 0, 7499, 7500, 5, 866, 0, 0, 7500, 7501, 3, 818, 409, 0, 7501, 7502, 5, 867, 0, 0, 7502, 7504, 1, 0, 0, 0, 7503, 7497, 1, 0, 0, 0, 7503, 7499, 1, 0, 0, 0, 7504, 7507, 1, 0, 0, 0, 7505, 7507, 3, 816, 408, 0, 7506, 7484, 1, 0, 0, 0, 7506, 7485, 1, 0, 0, 0, 7506, 7486, 1, 0, 0, 0, 7506, 7487, 1, 0, 0, 0, 7506, 7496, 1, 0, 0, 0, 7506, 7505, 1, 0, 0, 0, 7507, 783, 1, 0, 0, 0, 7508, 7511, 7, 133, 0, 0, 7509, 7510, 5, 866, 0, 0, 7510, 7512, 5, 867, 0, 0, 7511, 7509, 1, 0, 0, 0, 7511, 7512, 1, 0, 0, 0, 7512, 7688, 1, 0, 0, 0, 7513, 7688, 3, 60, 30, 0, 7514, 7515, 5, 33, 0, 0, 7515, 7516, 5, 866, 0, 0, 7516, 7517, 3, 822, 411, 0, 7517, 7518, 5, 868, 0, 0, 7518, 7519, 3, 748, 374, 0, 7519, 7520, 5, 867, 0, 0, 7520, 7688, 1, 0, 0, 0, 7521, 7522, 5, 33, 0, 0, 7522, 7523, 5, 866, 0, 0, 7523, 7524, 3, 822, 411, 0, 7524, 7525, 5, 188, 0, 0, 7525, 7526, 3, 704, 352, 0, 7526, 7527, 5, 867, 0, 0, 7527, 7688, 1, 0, 0, 0, 7528, 7529, 5, 24, 0, 0, 7529, 7530, 5, 866, 0, 0, 7530, 7531, 3, 822, 411, 0, 7531, 7532, 5, 13, 0, 0, 7532, 7533, 3, 748, 374, 0, 7533, 7534, 5, 867, 0, 0, 7534, 7688, 1, 0, 0, 0, 7535, 7536, 5, 189, 0, 0, 7536, 7537, 5, 866, 0, 0, 7537, 7538, 3, 674, 337, 0, 7538, 7539, 5, 867, 0, 0, 7539, 7688, 1, 0, 0, 0, 7540, 7542, 5, 23, 0, 0, 7541, 7543, 3, 786, 393, 0, 7542, 7541, 1, 0, 0, 0, 7543, 7544, 1, 0, 0, 0, 7544, 7542, 1, 0, 0, 0, 7544, 7545, 1, 0, 0, 0, 7545, 7548, 1, 0, 0, 0, 7546, 7547, 5, 53, 0, 0, 7547, 7549, 3, 820, 410, 0, 7548, 7546, 1, 0, 0, 0, 7548, 7549, 1, 0, 0, 0, 7549, 7550, 1, 0, 0, 0, 7550, 7551, 5, 378, 0, 0, 7551, 7688, 1, 0, 0, 0, 7552, 7553, 5, 23, 0, 0, 7553, 7555, 3, 822, 411, 0, 7554, 7556, 3, 786, 393, 0, 7555, 7554, 1, 0, 0, 0, 7556, 7557, 1, 0, 0, 0, 7557, 7555, 1, 0, 0, 0, 7557, 7558, 1, 0, 0, 0, 7558, 7561, 1, 0, 0, 0, 7559, 7560, 5, 53, 0, 0, 7560, 7562, 3, 820, 410, 0, 7561, 7559, 1, 0, 0, 0, 7561, 7562, 1, 0, 0, 0, 7562, 7563, 1, 0, 0, 0, 7563, 7564, 5, 378, 0, 0, 7564, 7688, 1, 0, 0, 0, 7565, 7566, 5, 224, 0, 0, 7566, 7567, 5, 866, 0, 0, 7567, 7570, 3, 818, 409, 0, 7568, 7569, 5, 188, 0, 0, 7569, 7571, 3, 704, 352, 0, 7570, 7568, 1, 0, 0, 0, 7570, 7571, 1, 0, 0, 0, 7571, 7572, 1, 0, 0, 0, 7572, 7573, 5, 867, 0, 0, 7573, 7688, 1, 0, 0, 0, 7574, 7575, 5, 296, 0, 0, 7575, 7578, 5, 866, 0, 0, 7576, 7579, 3, 734, 367, 0, 7577, 7579, 3, 822, 411, 0, 7578, 7576, 1, 0, 0, 0, 7578, 7577, 1, 0, 0, 0, 7579, 7580, 1, 0, 0, 0, 7580, 7583, 5, 80, 0, 0, 7581, 7584, 3, 734, 367, 0, 7582, 7584, 3, 822, 411, 0, 7583, 7581, 1, 0, 0, 0, 7583, 7582, 1, 0, 0, 0, 7584, 7585, 1, 0, 0, 0, 7585, 7586, 5, 867, 0, 0, 7586, 7688, 1, 0, 0, 0, 7587, 7588, 7, 134, 0, 0, 7588, 7591, 5, 866, 0, 0, 7589, 7592, 3, 734, 367, 0, 7590, 7592, 3, 822, 411, 0, 7591, 7589, 1, 0, 0, 0, 7591, 7590, 1, 0, 0, 0, 7592, 7593, 1, 0, 0, 0, 7593, 7596, 5, 68, 0, 0, 7594, 7597, 3, 730, 365, 0, 7595, 7597, 3, 822, 411, 0, 7596, 7594, 1, 0, 0, 0, 7596, 7595, 1, 0, 0, 0, 7597, 7603, 1, 0, 0, 0, 7598, 7601, 5, 65, 0, 0, 7599, 7602, 3, 730, 365, 0, 7600, 7602, 3, 822, 411, 0, 7601, 7599, 1, 0, 0, 0, 7601, 7600, 1, 0, 0, 0, 7602, 7604, 1, 0, 0, 0, 7603, 7598, 1, 0, 0, 0, 7603, 7604, 1, 0, 0, 0, 7604, 7605, 1, 0, 0, 0, 7605, 7606, 5, 867, 0, 0, 7606, 7688, 1, 0, 0, 0, 7607, 7608, 5, 300, 0, 0, 7608, 7609, 5, 866, 0, 0, 7609, 7612, 7, 135, 0, 0, 7610, 7613, 3, 734, 367, 0, 7611, 7613, 3, 822, 411, 0, 7612, 7610, 1, 0, 0, 0, 7612, 7611, 1, 0, 0, 0, 7612, 7613, 1, 0, 0, 0, 7613, 7614, 1, 0, 0, 0, 7614, 7617, 5, 68, 0, 0, 7615, 7618, 3, 734, 367, 0, 7616, 7618, 3, 822, 411, 0, 7617, 7615, 1, 0, 0, 0, 7617, 7616, 1, 0, 0, 0, 7618, 7619, 1, 0, 0, 0, 7619, 7620, 5, 867, 0, 0, 7620, 7688, 1, 0, 0, 0, 7621, 7622, 5, 300, 0, 0, 7622, 7625, 5, 866, 0, 0, 7623, 7626, 3, 734, 367, 0, 7624, 7626, 3, 822, 411, 0, 7625, 7623, 1, 0, 0, 0, 7625, 7624, 1, 0, 0, 0, 7626, 7627, 1, 0, 0, 0, 7627, 7630, 5, 68, 0, 0, 7628, 7631, 3, 734, 367, 0, 7629, 7631, 3, 822, 411, 0, 7630, 7628, 1, 0, 0, 0, 7630, 7629, 1, 0, 0, 0, 7631, 7632, 1, 0, 0, 0, 7632, 7633, 5, 867, 0, 0, 7633, 7688, 1, 0, 0, 0, 7634, 7635, 5, 840, 0, 0, 7635, 7638, 5, 866, 0, 0, 7636, 7639, 3, 734, 367, 0, 7637, 7639, 3, 822, 411, 0, 7638, 7636, 1, 0, 0, 0, 7638, 7637, 1, 0, 0, 0, 7639, 7646, 1, 0, 0, 0, 7640, 7641, 5, 13, 0, 0, 7641, 7642, 7, 136, 0, 0, 7642, 7643, 5, 866, 0, 0, 7643, 7644, 3, 730, 365, 0, 7644, 7645, 5, 867, 0, 0, 7645, 7647, 1, 0, 0, 0, 7646, 7640, 1, 0, 0, 0, 7646, 7647, 1, 0, 0, 0, 7647, 7649, 1, 0, 0, 0, 7648, 7650, 3, 788, 394, 0, 7649, 7648, 1, 0, 0, 0, 7649, 7650, 1, 0, 0, 0, 7650, 7651, 1, 0, 0, 0, 7651, 7652, 5, 867, 0, 0, 7652, 7688, 1, 0, 0, 0, 7653, 7654, 5, 293, 0, 0, 7654, 7655, 5, 866, 0, 0, 7655, 7656, 3, 70, 35, 0, 7656, 7659, 5, 68, 0, 0, 7657, 7660, 3, 734, 367, 0, 7658, 7660, 3, 822, 411, 0, 7659, 7657, 1, 0, 0, 0, 7659, 7658, 1, 0, 0, 0, 7660, 7661, 1, 0, 0, 0, 7661, 7662, 5, 867, 0, 0, 7662, 7688, 1, 0, 0, 0, 7663, 7664, 5, 827, 0, 0, 7664, 7665, 5, 866, 0, 0, 7665, 7666, 7, 137, 0, 0, 7666, 7667, 5, 868, 0, 0, 7667, 7668, 3, 734, 367, 0, 7668, 7669, 5, 867, 0, 0, 7669, 7688, 1, 0, 0, 0, 7670, 7671, 5, 254, 0, 0, 7671, 7672, 5, 866, 0, 0, 7672, 7673, 3, 822, 411, 0, 7673, 7674, 5, 868, 0, 0, 7674, 7677, 3, 822, 411, 0, 7675, 7676, 5, 579, 0, 0, 7676, 7678, 3, 748, 374, 0, 7677, 7675, 1, 0, 0, 0, 7677, 7678, 1, 0, 0, 0, 7678, 7680, 1, 0, 0, 0, 7679, 7681, 3, 294, 147, 0, 7680, 7679, 1, 0, 0, 0, 7680, 7681, 1, 0, 0, 0, 7681, 7683, 1, 0, 0, 0, 7682, 7684, 3, 296, 148, 0, 7683, 7682, 1, 0, 0, 0, 7683, 7684, 1, 0, 0, 0, 7684, 7685, 1, 0, 0, 0, 7685, 7686, 5, 867, 0, 0, 7686, 7688, 1, 0, 0, 0, 7687, 7508, 1, 0, 0, 0, 7687, 7513, 1, 0, 0, 0, 7687, 7514, 1, 0, 0, 0, 7687, 7521, 1, 0, 0, 0, 7687, 7528, 1, 0, 0, 0, 7687, 7535, 1, 0, 0, 0, 7687, 7540, 1, 0, 0, 0, 7687, 7552, 1, 0, 0, 0, 7687, 7565, 1, 0, 0, 0, 7687, 7574, 1, 0, 0, 0, 7687, 7587, 1, 0, 0, 0, 7687, 7607, 1, 0, 0, 0, 7687, 7621, 1, 0, 0, 0, 7687, 7634, 1, 0, 0, 0, 7687, 7653, 1, 0, 0, 0, 7687, 7663, 1, 0, 0, 0, 7687, 7670, 1, 0, 0, 0, 7688, 785, 1, 0, 0, 0, 7689, 7690, 5, 191, 0, 0, 7690, 7691, 3, 820, 410, 0, 7691, 7692, 5, 175, 0, 0, 7692, 7693, 3, 820, 410, 0, 7693, 787, 1, 0, 0, 0, 7694, 7695, 5, 448, 0, 0, 7695, 7700, 3, 790, 395, 0, 7696, 7697, 5, 868, 0, 0, 7697, 7699, 3, 790, 395, 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, 7709, 1, 0, 0, 0, 7702, 7700, 1, 0, 0, 0, 7703, 7704, 5, 448, 0, 0, 7704, 7705, 3, 730, 365, 0, 7705, 7706, 5, 854, 0, 0, 7706, 7707, 3, 730, 365, 0, 7707, 7709, 1, 0, 0, 0, 7708, 7694, 1, 0, 0, 0, 7708, 7703, 1, 0, 0, 0, 7709, 789, 1, 0, 0, 0, 7710, 7712, 3, 730, 365, 0, 7711, 7713, 7, 138, 0, 0, 7712, 7711, 1, 0, 0, 0, 7712, 7713, 1, 0, 0, 0, 7713, 791, 1, 0, 0, 0, 7714, 7715, 7, 139, 0, 0, 7715, 7717, 5, 866, 0, 0, 7716, 7718, 7, 45, 0, 0, 7717, 7716, 1, 0, 0, 0, 7717, 7718, 1, 0, 0, 0, 7718, 7719, 1, 0, 0, 0, 7719, 7720, 3, 820, 410, 0, 7720, 7722, 5, 867, 0, 0, 7721, 7723, 3, 796, 398, 0, 7722, 7721, 1, 0, 0, 0, 7722, 7723, 1, 0, 0, 0, 7723, 7774, 1, 0, 0, 0, 7724, 7725, 5, 262, 0, 0, 7725, 7733, 5, 866, 0, 0, 7726, 7734, 5, 850, 0, 0, 7727, 7729, 5, 7, 0, 0, 7728, 7727, 1, 0, 0, 0, 7728, 7729, 1, 0, 0, 0, 7729, 7730, 1, 0, 0, 0, 7730, 7734, 3, 820, 410, 0, 7731, 7732, 5, 49, 0, 0, 7732, 7734, 3, 818, 409, 0, 7733, 7726, 1, 0, 0, 0, 7733, 7728, 1, 0, 0, 0, 7733, 7731, 1, 0, 0, 0, 7734, 7735, 1, 0, 0, 0, 7735, 7737, 5, 867, 0, 0, 7736, 7738, 3, 796, 398, 0, 7737, 7736, 1, 0, 0, 0, 7737, 7738, 1, 0, 0, 0, 7738, 7774, 1, 0, 0, 0, 7739, 7740, 7, 140, 0, 0, 7740, 7742, 5, 866, 0, 0, 7741, 7743, 5, 7, 0, 0, 7742, 7741, 1, 0, 0, 0, 7742, 7743, 1, 0, 0, 0, 7743, 7744, 1, 0, 0, 0, 7744, 7745, 3, 820, 410, 0, 7745, 7747, 5, 867, 0, 0, 7746, 7748, 3, 796, 398, 0, 7747, 7746, 1, 0, 0, 0, 7747, 7748, 1, 0, 0, 0, 7748, 7774, 1, 0, 0, 0, 7749, 7750, 5, 266, 0, 0, 7750, 7752, 5, 866, 0, 0, 7751, 7753, 5, 49, 0, 0, 7752, 7751, 1, 0, 0, 0, 7752, 7753, 1, 0, 0, 0, 7753, 7754, 1, 0, 0, 0, 7754, 7765, 3, 818, 409, 0, 7755, 7756, 5, 125, 0, 0, 7756, 7757, 5, 20, 0, 0, 7757, 7762, 3, 260, 130, 0, 7758, 7759, 5, 868, 0, 0, 7759, 7761, 3, 260, 130, 0, 7760, 7758, 1, 0, 0, 0, 7761, 7764, 1, 0, 0, 0, 7762, 7760, 1, 0, 0, 0, 7762, 7763, 1, 0, 0, 0, 7763, 7766, 1, 0, 0, 0, 7764, 7762, 1, 0, 0, 0, 7765, 7755, 1, 0, 0, 0, 7765, 7766, 1, 0, 0, 0, 7766, 7769, 1, 0, 0, 0, 7767, 7768, 5, 156, 0, 0, 7768, 7770, 5, 882, 0, 0, 7769, 7767, 1, 0, 0, 0, 7769, 7770, 1, 0, 0, 0, 7770, 7771, 1, 0, 0, 0, 7771, 7772, 5, 867, 0, 0, 7772, 7774, 1, 0, 0, 0, 7773, 7714, 1, 0, 0, 0, 7773, 7724, 1, 0, 0, 0, 7773, 7739, 1, 0, 0, 0, 7773, 7749, 1, 0, 0, 0, 7774, 793, 1, 0, 0, 0, 7775, 7776, 7, 141, 0, 0, 7776, 7777, 5, 866, 0, 0, 7777, 7780, 3, 822, 411, 0, 7778, 7779, 5, 868, 0, 0, 7779, 7781, 3, 730, 365, 0, 7780, 7778, 1, 0, 0, 0, 7780, 7781, 1, 0, 0, 0, 7781, 7784, 1, 0, 0, 0, 7782, 7783, 5, 868, 0, 0, 7783, 7785, 3, 730, 365, 0, 7784, 7782, 1, 0, 0, 0, 7784, 7785, 1, 0, 0, 0, 7785, 7786, 1, 0, 0, 0, 7786, 7787, 5, 867, 0, 0, 7787, 7788, 3, 796, 398, 0, 7788, 7814, 1, 0, 0, 0, 7789, 7790, 7, 142, 0, 0, 7790, 7791, 5, 866, 0, 0, 7791, 7792, 3, 822, 411, 0, 7792, 7793, 5, 867, 0, 0, 7793, 7794, 3, 796, 398, 0, 7794, 7814, 1, 0, 0, 0, 7795, 7796, 7, 143, 0, 0, 7796, 7797, 5, 866, 0, 0, 7797, 7798, 5, 867, 0, 0, 7798, 7814, 3, 796, 398, 0, 7799, 7800, 5, 273, 0, 0, 7800, 7801, 5, 866, 0, 0, 7801, 7802, 3, 822, 411, 0, 7802, 7803, 5, 868, 0, 0, 7803, 7804, 3, 730, 365, 0, 7804, 7805, 5, 867, 0, 0, 7805, 7806, 3, 796, 398, 0, 7806, 7814, 1, 0, 0, 0, 7807, 7808, 5, 272, 0, 0, 7808, 7809, 5, 866, 0, 0, 7809, 7810, 3, 730, 365, 0, 7810, 7811, 5, 867, 0, 0, 7811, 7812, 3, 796, 398, 0, 7812, 7814, 1, 0, 0, 0, 7813, 7775, 1, 0, 0, 0, 7813, 7789, 1, 0, 0, 0, 7813, 7795, 1, 0, 0, 0, 7813, 7799, 1, 0, 0, 0, 7813, 7807, 1, 0, 0, 0, 7814, 795, 1, 0, 0, 0, 7815, 7821, 5, 129, 0, 0, 7816, 7817, 5, 866, 0, 0, 7817, 7818, 3, 798, 399, 0, 7818, 7819, 5, 867, 0, 0, 7819, 7822, 1, 0, 0, 0, 7820, 7822, 3, 800, 400, 0, 7821, 7816, 1, 0, 0, 0, 7821, 7820, 1, 0, 0, 0, 7822, 797, 1, 0, 0, 0, 7823, 7825, 3, 800, 400, 0, 7824, 7823, 1, 0, 0, 0, 7824, 7825, 1, 0, 0, 0, 7825, 7827, 1, 0, 0, 0, 7826, 7828, 3, 812, 406, 0, 7827, 7826, 1, 0, 0, 0, 7827, 7828, 1, 0, 0, 0, 7828, 7830, 1, 0, 0, 0, 7829, 7831, 3, 258, 129, 0, 7830, 7829, 1, 0, 0, 0, 7830, 7831, 1, 0, 0, 0, 7831, 7833, 1, 0, 0, 0, 7832, 7834, 3, 802, 401, 0, 7833, 7832, 1, 0, 0, 0, 7833, 7834, 1, 0, 0, 0, 7834, 799, 1, 0, 0, 0, 7835, 7836, 3, 722, 361, 0, 7836, 801, 1, 0, 0, 0, 7837, 7838, 3, 804, 402, 0, 7838, 7839, 3, 806, 403, 0, 7839, 803, 1, 0, 0, 0, 7840, 7841, 7, 144, 0, 0, 7841, 805, 1, 0, 0, 0, 7842, 7845, 3, 810, 405, 0, 7843, 7845, 3, 808, 404, 0, 7844, 7842, 1, 0, 0, 0, 7844, 7843, 1, 0, 0, 0, 7845, 807, 1, 0, 0, 0, 7846, 7847, 5, 17, 0, 0, 7847, 7848, 3, 810, 405, 0, 7848, 7849, 5, 11, 0, 0, 7849, 7850, 3, 810, 405, 0, 7850, 809, 1, 0, 0, 0, 7851, 7852, 5, 36, 0, 0, 7852, 7859, 5, 586, 0, 0, 7853, 7854, 5, 669, 0, 0, 7854, 7859, 7, 145, 0, 0, 7855, 7856, 3, 822, 411, 0, 7856, 7857, 7, 145, 0, 0, 7857, 7859, 1, 0, 0, 0, 7858, 7851, 1, 0, 0, 0, 7858, 7853, 1, 0, 0, 0, 7858, 7855, 1, 0, 0, 0, 7859, 811, 1, 0, 0, 0, 7860, 7861, 5, 130, 0, 0, 7861, 7862, 5, 20, 0, 0, 7862, 7867, 3, 822, 411, 0, 7863, 7864, 5, 868, 0, 0, 7864, 7866, 3, 822, 411, 0, 7865, 7863, 1, 0, 0, 0, 7866, 7869, 1, 0, 0, 0, 7867, 7865, 1, 0, 0, 0, 7867, 7868, 1, 0, 0, 0, 7868, 813, 1, 0, 0, 0, 7869, 7867, 1, 0, 0, 0, 7870, 7895, 3, 854, 427, 0, 7871, 7895, 5, 757, 0, 0, 7872, 7895, 5, 289, 0, 0, 7873, 7895, 5, 285, 0, 0, 7874, 7895, 5, 286, 0, 0, 7875, 7895, 5, 287, 0, 0, 7876, 7895, 5, 290, 0, 0, 7877, 7895, 5, 291, 0, 0, 7878, 7895, 5, 292, 0, 0, 7879, 7895, 5, 78, 0, 0, 7880, 7895, 5, 86, 0, 0, 7881, 7895, 5, 288, 0, 0, 7882, 7895, 5, 294, 0, 0, 7883, 7895, 5, 488, 0, 0, 7884, 7895, 5, 295, 0, 0, 7885, 7895, 5, 142, 0, 0, 7886, 7895, 5, 143, 0, 0, 7887, 7895, 5, 297, 0, 0, 7888, 7895, 5, 298, 0, 0, 7889, 7895, 5, 299, 0, 0, 7890, 7895, 5, 300, 0, 0, 7891, 7895, 5, 301, 0, 0, 7892, 7895, 5, 302, 0, 0, 7893, 7895, 5, 303, 0, 0, 7894, 7870, 1, 0, 0, 0, 7894, 7871, 1, 0, 0, 0, 7894, 7872, 1, 0, 0, 0, 7894, 7873, 1, 0, 0, 0, 7894, 7874, 1, 0, 0, 0, 7894, 7875, 1, 0, 0, 0, 7894, 7876, 1, 0, 0, 0, 7894, 7877, 1, 0, 0, 0, 7894, 7878, 1, 0, 0, 0, 7894, 7879, 1, 0, 0, 0, 7894, 7880, 1, 0, 0, 0, 7894, 7881, 1, 0, 0, 0, 7894, 7882, 1, 0, 0, 0, 7894, 7883, 1, 0, 0, 0, 7894, 7884, 1, 0, 0, 0, 7894, 7885, 1, 0, 0, 0, 7894, 7886, 1, 0, 0, 0, 7894, 7887, 1, 0, 0, 0, 7894, 7888, 1, 0, 0, 0, 7894, 7889, 1, 0, 0, 0, 7894, 7890, 1, 0, 0, 0, 7894, 7891, 1, 0, 0, 0, 7894, 7892, 1, 0, 0, 0, 7894, 7893, 1, 0, 0, 0, 7895, 815, 1, 0, 0, 0, 7896, 7897, 7, 146, 0, 0, 7897, 7898, 5, 866, 0, 0, 7898, 7899, 3, 820, 410, 0, 7899, 7900, 5, 867, 0, 0, 7900, 817, 1, 0, 0, 0, 7901, 7906, 3, 820, 410, 0, 7902, 7903, 5, 868, 0, 0, 7903, 7905, 3, 820, 410, 0, 7904, 7902, 1, 0, 0, 0, 7905, 7908, 1, 0, 0, 0, 7906, 7904, 1, 0, 0, 0, 7906, 7907, 1, 0, 0, 0, 7907, 819, 1, 0, 0, 0, 7908, 7906, 1, 0, 0, 0, 7909, 7913, 3, 742, 371, 0, 7910, 7913, 3, 782, 391, 0, 7911, 7913, 3, 822, 411, 0, 7912, 7909, 1, 0, 0, 0, 7912, 7910, 1, 0, 0, 0, 7912, 7911, 1, 0, 0, 0, 7913, 821, 1, 0, 0, 0, 7914, 7915, 6, 411, -1, 0, 7915, 7916, 7, 147, 0, 0, 7916, 7926, 3, 822, 411, 4, 7917, 7918, 3, 824, 412, 0, 7918, 7920, 5, 89, 0, 0, 7919, 7921, 5, 114, 0, 0, 7920, 7919, 1, 0, 0, 0, 7920, 7921, 1, 0, 0, 0, 7921, 7922, 1, 0, 0, 0, 7922, 7923, 7, 148, 0, 0, 7923, 7926, 1, 0, 0, 0, 7924, 7926, 3, 824, 412, 0, 7925, 7914, 1, 0, 0, 0, 7925, 7917, 1, 0, 0, 0, 7925, 7924, 1, 0, 0, 0, 7926, 7933, 1, 0, 0, 0, 7927, 7928, 10, 3, 0, 0, 7928, 7929, 3, 834, 417, 0, 7929, 7930, 3, 822, 411, 4, 7930, 7932, 1, 0, 0, 0, 7931, 7927, 1, 0, 0, 0, 7932, 7935, 1, 0, 0, 0, 7933, 7931, 1, 0, 0, 0, 7933, 7934, 1, 0, 0, 0, 7934, 823, 1, 0, 0, 0, 7935, 7933, 1, 0, 0, 0, 7936, 7937, 6, 412, -1, 0, 7937, 7938, 3, 826, 413, 0, 7938, 8002, 1, 0, 0, 0, 7939, 7941, 10, 6, 0, 0, 7940, 7942, 5, 114, 0, 0, 7941, 7940, 1, 0, 0, 0, 7941, 7942, 1, 0, 0, 0, 7942, 7943, 1, 0, 0, 0, 7943, 7944, 5, 17, 0, 0, 7944, 7945, 3, 824, 412, 0, 7945, 7946, 5, 11, 0, 0, 7946, 7947, 3, 824, 412, 7, 7947, 8001, 1, 0, 0, 0, 7948, 7949, 10, 5, 0, 0, 7949, 7950, 5, 604, 0, 0, 7950, 7951, 5, 99, 0, 0, 7951, 8001, 3, 824, 412, 6, 7952, 7954, 10, 3, 0, 0, 7953, 7955, 5, 114, 0, 0, 7954, 7953, 1, 0, 0, 0, 7954, 7955, 1, 0, 0, 0, 7955, 7956, 1, 0, 0, 0, 7956, 7957, 7, 149, 0, 0, 7957, 8001, 3, 824, 412, 4, 7958, 7960, 10, 9, 0, 0, 7959, 7961, 5, 114, 0, 0, 7960, 7959, 1, 0, 0, 0, 7960, 7961, 1, 0, 0, 0, 7961, 7962, 1, 0, 0, 0, 7962, 7963, 5, 80, 0, 0, 7963, 7966, 5, 866, 0, 0, 7964, 7967, 3, 210, 105, 0, 7965, 7967, 3, 758, 379, 0, 7966, 7964, 1, 0, 0, 0, 7966, 7965, 1, 0, 0, 0, 7967, 7968, 1, 0, 0, 0, 7968, 7969, 5, 867, 0, 0, 7969, 8001, 1, 0, 0, 0, 7970, 7971, 10, 8, 0, 0, 7971, 7972, 5, 89, 0, 0, 7972, 8001, 3, 740, 370, 0, 7973, 7974, 10, 7, 0, 0, 7974, 7981, 3, 830, 415, 0, 7975, 7976, 7, 150, 0, 0, 7976, 7977, 5, 866, 0, 0, 7977, 7978, 3, 210, 105, 0, 7978, 7979, 5, 867, 0, 0, 7979, 7982, 1, 0, 0, 0, 7980, 7982, 3, 824, 412, 0, 7981, 7975, 1, 0, 0, 0, 7981, 7980, 1, 0, 0, 0, 7982, 8001, 1, 0, 0, 0, 7983, 7985, 10, 4, 0, 0, 7984, 7986, 5, 114, 0, 0, 7985, 7984, 1, 0, 0, 0, 7985, 7986, 1, 0, 0, 0, 7986, 7987, 1, 0, 0, 0, 7987, 7988, 5, 99, 0, 0, 7988, 7991, 3, 824, 412, 0, 7989, 7990, 5, 384, 0, 0, 7990, 7992, 5, 882, 0, 0, 7991, 7989, 1, 0, 0, 0, 7991, 7992, 1, 0, 0, 0, 7992, 8001, 1, 0, 0, 0, 7993, 7994, 10, 2, 0, 0, 7994, 7995, 5, 485, 0, 0, 7995, 7996, 5, 510, 0, 0, 7996, 7997, 5, 866, 0, 0, 7997, 7998, 3, 824, 412, 0, 7998, 7999, 5, 867, 0, 0, 7999, 8001, 1, 0, 0, 0, 8000, 7939, 1, 0, 0, 0, 8000, 7948, 1, 0, 0, 0, 8000, 7952, 1, 0, 0, 0, 8000, 7958, 1, 0, 0, 0, 8000, 7970, 1, 0, 0, 0, 8000, 7973, 1, 0, 0, 0, 8000, 7983, 1, 0, 0, 0, 8000, 7993, 1, 0, 0, 0, 8001, 8004, 1, 0, 0, 0, 8002, 8000, 1, 0, 0, 0, 8002, 8003, 1, 0, 0, 0, 8003, 825, 1, 0, 0, 0, 8004, 8002, 1, 0, 0, 0, 8005, 8006, 6, 413, -1, 0, 8006, 8054, 3, 742, 371, 0, 8007, 8054, 3, 782, 391, 0, 8008, 8054, 3, 702, 351, 0, 8009, 8010, 3, 828, 414, 0, 8010, 8011, 3, 826, 413, 12, 8011, 8054, 1, 0, 0, 0, 8012, 8013, 5, 228, 0, 0, 8013, 8054, 3, 826, 413, 11, 8014, 8015, 5, 892, 0, 0, 8015, 8016, 5, 841, 0, 0, 8016, 8054, 3, 826, 413, 10, 8017, 8018, 5, 866, 0, 0, 8018, 8023, 3, 822, 411, 0, 8019, 8020, 5, 868, 0, 0, 8020, 8022, 3, 822, 411, 0, 8021, 8019, 1, 0, 0, 0, 8022, 8025, 1, 0, 0, 0, 8023, 8021, 1, 0, 0, 0, 8023, 8024, 1, 0, 0, 0, 8024, 8026, 1, 0, 0, 0, 8025, 8023, 1, 0, 0, 0, 8026, 8027, 5, 867, 0, 0, 8027, 8054, 1, 0, 0, 0, 8028, 8029, 5, 586, 0, 0, 8029, 8030, 5, 866, 0, 0, 8030, 8033, 3, 822, 411, 0, 8031, 8032, 5, 868, 0, 0, 8032, 8034, 3, 822, 411, 0, 8033, 8031, 1, 0, 0, 0, 8034, 8035, 1, 0, 0, 0, 8035, 8033, 1, 0, 0, 0, 8035, 8036, 1, 0, 0, 0, 8036, 8037, 1, 0, 0, 0, 8037, 8038, 5, 867, 0, 0, 8038, 8054, 1, 0, 0, 0, 8039, 8040, 5, 60, 0, 0, 8040, 8041, 5, 866, 0, 0, 8041, 8042, 3, 210, 105, 0, 8042, 8043, 5, 867, 0, 0, 8043, 8054, 1, 0, 0, 0, 8044, 8045, 5, 866, 0, 0, 8045, 8046, 3, 210, 105, 0, 8046, 8047, 5, 867, 0, 0, 8047, 8054, 1, 0, 0, 0, 8048, 8049, 5, 87, 0, 0, 8049, 8050, 3, 822, 411, 0, 8050, 8051, 3, 70, 35, 0, 8051, 8054, 1, 0, 0, 0, 8052, 8054, 3, 676, 338, 0, 8053, 8005, 1, 0, 0, 0, 8053, 8007, 1, 0, 0, 0, 8053, 8008, 1, 0, 0, 0, 8053, 8009, 1, 0, 0, 0, 8053, 8012, 1, 0, 0, 0, 8053, 8014, 1, 0, 0, 0, 8053, 8017, 1, 0, 0, 0, 8053, 8028, 1, 0, 0, 0, 8053, 8039, 1, 0, 0, 0, 8053, 8044, 1, 0, 0, 0, 8053, 8048, 1, 0, 0, 0, 8053, 8052, 1, 0, 0, 0, 8054, 8072, 1, 0, 0, 0, 8055, 8056, 10, 4, 0, 0, 8056, 8057, 3, 840, 420, 0, 8057, 8058, 3, 826, 413, 5, 8058, 8071, 1, 0, 0, 0, 8059, 8060, 10, 3, 0, 0, 8060, 8061, 3, 836, 418, 0, 8061, 8062, 3, 826, 413, 4, 8062, 8071, 1, 0, 0, 0, 8063, 8064, 10, 2, 0, 0, 8064, 8065, 3, 838, 419, 0, 8065, 8066, 3, 826, 413, 3, 8066, 8071, 1, 0, 0, 0, 8067, 8068, 10, 14, 0, 0, 8068, 8069, 5, 28, 0, 0, 8069, 8071, 3, 706, 353, 0, 8070, 8055, 1, 0, 0, 0, 8070, 8059, 1, 0, 0, 0, 8070, 8063, 1, 0, 0, 0, 8070, 8067, 1, 0, 0, 0, 8071, 8074, 1, 0, 0, 0, 8072, 8070, 1, 0, 0, 0, 8072, 8073, 1, 0, 0, 0, 8073, 827, 1, 0, 0, 0, 8074, 8072, 1, 0, 0, 0, 8075, 8076, 7, 151, 0, 0, 8076, 829, 1, 0, 0, 0, 8077, 8078, 5, 859, 0, 0, 8078, 8086, 5, 858, 0, 0, 8079, 8080, 5, 860, 0, 0, 8080, 8086, 5, 857, 0, 0, 8081, 8082, 5, 859, 0, 0, 8082, 8083, 5, 857, 0, 0, 8083, 8086, 5, 858, 0, 0, 8084, 8086, 3, 832, 416, 0, 8085, 8077, 1, 0, 0, 0, 8085, 8079, 1, 0, 0, 0, 8085, 8081, 1, 0, 0, 0, 8085, 8084, 1, 0, 0, 0, 8086, 831, 1, 0, 0, 0, 8087, 8088, 5, 859, 0, 0, 8088, 8095, 5, 857, 0, 0, 8089, 8090, 5, 858, 0, 0, 8090, 8095, 5, 857, 0, 0, 8091, 8095, 5, 857, 0, 0, 8092, 8095, 5, 858, 0, 0, 8093, 8095, 5, 859, 0, 0, 8094, 8087, 1, 0, 0, 0, 8094, 8089, 1, 0, 0, 0, 8094, 8091, 1, 0, 0, 0, 8094, 8092, 1, 0, 0, 0, 8094, 8093, 1, 0, 0, 0, 8095, 833, 1, 0, 0, 0, 8096, 8104, 5, 11, 0, 0, 8097, 8098, 5, 863, 0, 0, 8098, 8104, 5, 863, 0, 0, 8099, 8104, 5, 196, 0, 0, 8100, 8104, 5, 124, 0, 0, 8101, 8102, 5, 862, 0, 0, 8102, 8104, 5, 862, 0, 0, 8103, 8096, 1, 0, 0, 0, 8103, 8097, 1, 0, 0, 0, 8103, 8099, 1, 0, 0, 0, 8103, 8100, 1, 0, 0, 0, 8103, 8101, 1, 0, 0, 0, 8104, 835, 1, 0, 0, 0, 8105, 8106, 5, 859, 0, 0, 8106, 8113, 5, 859, 0, 0, 8107, 8108, 5, 858, 0, 0, 8108, 8113, 5, 858, 0, 0, 8109, 8113, 5, 863, 0, 0, 8110, 8113, 5, 864, 0, 0, 8111, 8113, 5, 862, 0, 0, 8112, 8105, 1, 0, 0, 0, 8112, 8107, 1, 0, 0, 0, 8112, 8109, 1, 0, 0, 0, 8112, 8110, 1, 0, 0, 0, 8112, 8111, 1, 0, 0, 0, 8113, 837, 1, 0, 0, 0, 8114, 8115, 7, 152, 0, 0, 8115, 839, 1, 0, 0, 0, 8116, 8117, 5, 854, 0, 0, 8117, 8122, 5, 858, 0, 0, 8118, 8119, 5, 854, 0, 0, 8119, 8120, 5, 858, 0, 0, 8120, 8122, 5, 858, 0, 0, 8121, 8116, 1, 0, 0, 0, 8121, 8118, 1, 0, 0, 0, 8122, 841, 1, 0, 0, 0, 8123, 8124, 7, 153, 0, 0, 8124, 843, 1, 0, 0, 0, 8125, 8126, 7, 154, 0, 0, 8126, 845, 1, 0, 0, 0, 8127, 8128, 7, 155, 0, 0, 8128, 847, 1, 0, 0, 0, 8129, 8130, 7, 156, 0, 0, 8130, 849, 1, 0, 0, 0, 8131, 8132, 7, 157, 0, 0, 8132, 851, 1, 0, 0, 0, 8133, 8134, 7, 158, 0, 0, 8134, 853, 1, 0, 0, 0, 8135, 8136, 7, 159, 0, 0, 8136, 855, 1, 0, 0, 0, 1173, 859, 866, 869, 878, 922, 941, 952, 968, 973, 985, 1020, 1030, 1035, 1041, 1046, 1050, 1059, 1062, 1065, 1069, 1076, 1079, 1084, 1092, 1097, 1102, 1105, 1107, 1119, 1122, 1126, 1129, 1133, 1136, 1140, 1143, 1146, 1150, 1153, 1157, 1163, 1167, 1172, 1178, 1185, 1192, 1195, 1199, 1204, 1210, 1219, 1224, 1228, 1232, 1243, 1261, 1268, 1272, 1276, 1280, 1285, 1288, 1291, 1294, 1297, 1303, 1307, 1317, 1321, 1325, 1331, 1336, 1339, 1342, 1344, 1348, 1355, 1359, 1362, 1367, 1371, 1374, 1378, 1381, 1385, 1398, 1401, 1405, 1408, 1412, 1415, 1419, 1422, 1426, 1429, 1432, 1436, 1439, 1443, 1449, 1452, 1456, 1468, 1474, 1485, 1490, 1498, 1502, 1507, 1510, 1515, 1525, 1530, 1535, 1541, 1546, 1550, 1552, 1555, 1559, 1563, 1566, 1570, 1574, 1578, 1584, 1587, 1594, 1599, 1605, 1612, 1618, 1626, 1629, 1636, 1639, 1641, 1647, 1653, 1670, 1677, 1684, 1696, 1701, 1704, 1707, 1720, 1733, 1738, 1754, 1762, 1772, 1775, 1781, 1786, 1789, 1795, 1799, 1804, 1810, 1814, 1818, 1821, 1824, 1830, 1834, 1839, 1850, 1853, 1860, 1863, 1867, 1873, 1885, 1888, 1893, 1906, 1913, 1919, 1924, 1928, 1931, 1939, 1947, 1949, 1959, 1963, 1966, 1970, 1975, 1980, 1985, 1989, 1993, 1997, 2001, 2005, 2009, 2014, 2019, 2024, 2030, 2035, 2040, 2045, 2050, 2055, 2061, 2066, 2071, 2076, 2081, 2086, 2091, 2096, 2103, 2108, 2113, 2118, 2122, 2127, 2135, 2140, 2146, 2158, 2165, 2167, 2175, 2180, 2183, 2191, 2197, 2201, 2214, 2226, 2228, 2231, 2239, 2245, 2251, 2264, 2271, 2280, 2285, 2296, 2305, 2310, 2322, 2329, 2338, 2343, 2355, 2362, 2371, 2376, 2383, 2392, 2397, 2399, 2404, 2412, 2421, 2425, 2428, 2432, 2437, 2443, 2449, 2454, 2459, 2464, 2469, 2472, 2477, 2482, 2492, 2496, 2503, 2508, 2511, 2516, 2519, 2523, 2527, 2535, 2554, 2557, 2560, 2564, 2574, 2587, 2600, 2603, 2609, 2612, 2616, 2625, 2628, 2631, 2636, 2640, 2643, 2647, 2651, 2654, 2658, 2661, 2665, 2668, 2674, 2677, 2682, 2690, 2696, 2700, 2704, 2709, 2714, 2721, 2725, 2736, 2744, 2747, 2753, 2759, 2762, 2768, 2774, 2776, 2781, 2787, 2793, 2795, 2799, 2802, 2805, 2811, 2817, 2819, 2824, 2831, 2840, 2843, 2847, 2852, 2862, 2871, 2879, 2882, 2890, 2893, 2900, 2905, 2913, 2929, 2934, 2941, 2960, 2966, 2976, 2988, 2995, 3002, 3017, 3030, 3036, 3042, 3048, 3054, 3060, 3066, 3071, 3078, 3085, 3092, 3097, 3100, 3102, 3111, 3118, 3125, 3132, 3141, 3147, 3151, 3155, 3159, 3165, 3168, 3173, 3180, 3187, 3191, 3196, 3206, 3214, 3220, 3229, 3238, 3247, 3250, 3254, 3263, 3267, 3270, 3273, 3279, 3282, 3285, 3289, 3292, 3295, 3298, 3309, 3312, 3317, 3323, 3328, 3333, 3336, 3340, 3345, 3348, 3353, 3363, 3368, 3374, 3376, 3382, 3384, 3390, 3398, 3403, 3411, 3414, 3419, 3422, 3427, 3435, 3441, 3445, 3447, 3453, 3461, 3466, 3474, 3477, 3482, 3485, 3489, 3492, 3495, 3499, 3502, 3510, 3516, 3520, 3526, 3531, 3535, 3537, 3543, 3547, 3550, 3553, 3556, 3562, 3567, 3570, 3573, 3576, 3579, 3581, 3584, 3588, 3591, 3594, 3602, 3608, 3611, 3613, 3622, 3627, 3634, 3637, 3640, 3644, 3648, 3654, 3658, 3665, 3669, 3672, 3675, 3680, 3687, 3697, 3706, 3715, 3725, 3728, 3732, 3738, 3742, 3745, 3748, 3753, 3756, 3763, 3767, 3770, 3774, 3778, 3781, 3784, 3789, 3795, 3799, 3809, 3815, 3819, 3825, 3829, 3835, 3838, 3850, 3854, 3858, 3866, 3870, 3884, 3889, 3892, 3896, 3899, 3907, 3912, 3915, 3918, 3922, 3925, 3934, 3939, 3948, 3953, 3960, 3967, 3975, 3981, 3989, 3992, 3995, 4002, 4005, 4008, 4012, 4016, 4022, 4029, 4039, 4043, 4052, 4055, 4059, 4065, 4073, 4078, 4082, 4088, 4094, 4097, 4099, 4103, 4108, 4115, 4125, 4131, 4136, 4140, 4143, 4146, 4149, 4152, 4155, 4158, 4162, 4166, 4174, 4178, 4181, 4183, 4196, 4199, 4206, 4216, 4219, 4224, 4226, 4230, 4238, 4244, 4253, 4266, 4270, 4276, 4282, 4285, 4289, 4292, 4294, 4306, 4310, 4318, 4330, 4336, 4338, 4344, 4346, 4348, 4354, 4362, 4370, 4374, 4379, 4381, 4390, 4395, 4415, 4420, 4426, 4433, 4438, 4447, 4450, 4454, 4458, 4462, 4465, 4468, 4471, 4475, 4479, 4482, 4485, 4488, 4495, 4499, 4514, 4527, 4535, 4545, 4549, 4552, 4558, 4561, 4564, 4573, 4582, 4592, 4596, 4606, 4610, 4621, 4625, 4634, 4643, 4646, 4650, 4655, 4659, 4668, 4671, 4674, 4681, 4687, 4693, 4719, 4722, 4725, 4744, 4746, 4769, 4772, 4775, 4794, 4796, 4810, 4823, 4860, 4865, 4900, 4914, 4921, 4925, 4931, 4939, 4941, 4952, 4962, 4969, 4975, 4983, 4988, 4996, 5004, 5012, 5020, 5026, 5031, 5036, 5041, 5047, 5049, 5060, 5065, 5072, 5074, 5088, 5094, 5099, 5104, 5110, 5117, 5125, 5133, 5138, 5144, 5147, 5155, 5162, 5171, 5174, 5191, 5199, 5207, 5211, 5218, 5224, 5232, 5237, 5244, 5252, 5259, 5264, 5267, 5269, 5275, 5277, 5281, 5283, 5288, 5295, 5300, 5304, 5309, 5313, 5319, 5325, 5330, 5333, 5335, 5341, 5343, 5347, 5349, 5354, 5359, 5366, 5375, 5380, 5389, 5393, 5399, 5404, 5407, 5409, 5415, 5417, 5420, 5427, 5429, 5434, 5441, 5450, 5456, 5458, 5465, 5468, 5480, 5486, 5494, 5497, 5501, 5504, 5508, 5510, 5521, 5524, 5528, 5531, 5534, 5541, 5553, 5556, 5563, 5569, 5579, 5584, 5591, 5596, 5602, 5606, 5610, 5618, 5622, 5626, 5632, 5634, 5646, 5651, 5657, 5663, 5667, 5672, 5674, 5698, 5702, 5705, 5714, 5718, 5727, 5731, 5735, 5741, 5743, 5752, 5762, 5789, 5793, 5798, 5805, 5808, 5814, 5824, 5834, 5844, 5850, 5859, 5865, 5872, 5874, 5882, 5888, 5892, 5909, 5919, 5923, 5927, 5937, 5942, 6014, 6032, 6040, 6046, 6058, 6062, 6073, 6077, 6086, 6094, 6101, 6105, 6112, 6117, 6120, 6123, 6134, 6143, 6152, 6155, 6169, 6187, 6200, 6203, 6207, 6210, 6212, 6219, 6226, 6230, 6237, 6244, 6247, 6263, 6266, 6276, 6280, 6286, 6289, 6292, 6297, 6301, 6304, 6311, 6314, 6320, 6356, 6359, 6371, 6374, 6390, 6392, 6396, 6403, 6407, 6414, 6417, 6426, 6429, 6434, 6440, 6442, 6448, 6452, 6458, 6461, 6464, 6477, 6480, 6486, 6489, 6497, 6505, 6511, 6514, 6518, 6532, 6544, 6552, 6556, 6563, 6570, 6575, 6588, 6597, 6605, 6610, 6613, 6618, 6621, 6633, 6638, 6651, 6653, 6658, 6662, 6665, 6667, 6674, 6681, 6684, 6687, 6693, 6697, 6703, 6711, 6720, 6733, 6738, 6746, 6749, 6754, 6759, 6767, 6770, 6778, 6782, 6789, 6795, 6798, 6802, 6815, 6821, 6833, 6836, 6845, 6850, 6871, 6887, 6897, 6902, 6907, 6909, 6912, 6916, 6918, 6925, 6933, 6935, 6938, 6942, 6946, 6951, 6953, 6956, 6960, 6962, 6969, 6971, 6973, 6986, 6996, 6999, 7002, 7015, 7021, 7024, 7032, 7039, 7059, 7066, 7068, 7075, 7077, 7081, 7088, 7094, 7105, 7111, 7120, 7126, 7129, 7133, 7138, 7141, 7145, 7149, 7151, 7156, 7161, 7174, 7177, 7181, 7184, 7187, 7192, 7197, 7203, 7206, 7211, 7214, 7219, 7222, 7226, 7231, 7236, 7241, 7246, 7249, 7254, 7259, 7264, 7270, 7275, 7280, 7285, 7289, 7292, 7297, 7301, 7305, 7313, 7320, 7324, 7329, 7334, 7338, 7340, 7343, 7359, 7369, 7379, 7388, 7397, 7404, 7411, 7419, 7427, 7439, 7446, 7456, 7461, 7464, 7469, 7472, 7494, 7503, 7506, 7511, 7544, 7548, 7557, 7561, 7570, 7578, 7583, 7591, 7596, 7601, 7603, 7612, 7617, 7625, 7630, 7638, 7646, 7649, 7659, 7677, 7680, 7683, 7687, 7700, 7708, 7712, 7717, 7722, 7728, 7733, 7737, 7742, 7747, 7752, 7762, 7765, 7769, 7773, 7780, 7784, 7813, 7821, 7824, 7827, 7830, 7833, 7844, 7858, 7867, 7894, 7906, 7912, 7920, 7925, 7933, 7941, 7954, 7960, 7966, 7981, 7985, 7991, 8000, 8002, 8023, 8035, 8053, 8070, 8072, 8085, 8094, 8103, 8112, 8121] \ No newline at end of file +[4, 1, 895, 8132, 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, 1, 0, 5, 0, 856, 8, 0, 10, 0, 12, 0, 859, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 865, 8, 1, 1, 1, 3, 1, 868, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 877, 8, 2, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 921, 8, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 940, 8, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 951, 8, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 967, 8, 7, 1, 8, 1, 8, 1, 8, 3, 8, 972, 8, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 984, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1019, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1029, 8, 11, 1, 12, 1, 12, 1, 12, 3, 12, 1034, 8, 12, 1, 12, 1, 12, 5, 12, 1038, 8, 12, 10, 12, 12, 12, 1041, 9, 12, 1, 13, 1, 13, 3, 13, 1045, 8, 13, 1, 13, 1, 13, 3, 13, 1049, 8, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 1058, 8, 13, 1, 13, 3, 13, 1061, 8, 13, 1, 13, 3, 13, 1064, 8, 13, 1, 13, 1, 13, 3, 13, 1068, 8, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 3, 14, 1075, 8, 14, 1, 14, 3, 14, 1078, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1083, 8, 14, 1, 14, 1, 14, 1, 14, 1, 14, 5, 14, 1089, 8, 14, 10, 14, 12, 14, 1092, 9, 14, 1, 14, 1, 14, 3, 14, 1096, 8, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1101, 8, 14, 1, 14, 5, 14, 1104, 8, 14, 10, 14, 12, 14, 1107, 9, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 1118, 8, 15, 1, 15, 3, 15, 1121, 8, 15, 1, 15, 1, 15, 3, 15, 1125, 8, 15, 1, 15, 3, 15, 1128, 8, 15, 1, 15, 1, 15, 3, 15, 1132, 8, 15, 1, 15, 3, 15, 1135, 8, 15, 1, 15, 1, 15, 3, 15, 1139, 8, 15, 1, 15, 3, 15, 1142, 8, 15, 1, 15, 3, 15, 1145, 8, 15, 1, 15, 1, 15, 3, 15, 1149, 8, 15, 1, 15, 3, 15, 1152, 8, 15, 1, 15, 1, 15, 3, 15, 1156, 8, 15, 1, 15, 1, 15, 1, 16, 1, 16, 3, 16, 1162, 8, 16, 1, 16, 1, 16, 3, 16, 1166, 8, 16, 1, 16, 1, 16, 1, 16, 3, 16, 1171, 8, 16, 1, 16, 1, 16, 5, 16, 1175, 8, 16, 10, 16, 12, 16, 1178, 9, 16, 1, 16, 1, 16, 5, 16, 1182, 8, 16, 10, 16, 12, 16, 1185, 9, 16, 1, 16, 1, 16, 1, 17, 1, 17, 3, 17, 1191, 8, 17, 1, 17, 3, 17, 1194, 8, 17, 1, 17, 1, 17, 3, 17, 1198, 8, 17, 1, 17, 1, 17, 1, 17, 3, 17, 1203, 8, 17, 1, 17, 1, 17, 5, 17, 1207, 8, 17, 10, 17, 12, 17, 1210, 9, 17, 1, 17, 1, 17, 1, 17, 1, 17, 5, 17, 1216, 8, 17, 10, 17, 12, 17, 1219, 9, 17, 1, 17, 1, 17, 3, 17, 1223, 8, 17, 1, 18, 1, 18, 3, 18, 1227, 8, 18, 1, 18, 1, 18, 3, 18, 1231, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 3, 19, 1242, 8, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 1258, 8, 20, 10, 20, 12, 20, 1261, 9, 20, 1, 20, 1, 20, 1, 21, 1, 21, 3, 21, 1267, 8, 21, 1, 21, 1, 21, 3, 21, 1271, 8, 21, 1, 21, 1, 21, 3, 21, 1275, 8, 21, 1, 21, 1, 21, 3, 21, 1279, 8, 21, 1, 21, 5, 21, 1282, 8, 21, 10, 21, 12, 21, 1285, 9, 21, 3, 21, 1287, 8, 21, 1, 21, 3, 21, 1290, 8, 21, 1, 21, 3, 21, 1293, 8, 21, 1, 21, 3, 21, 1296, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1302, 8, 21, 1, 21, 1, 21, 3, 21, 1306, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1316, 8, 21, 1, 21, 1, 21, 3, 21, 1320, 8, 21, 1, 21, 1, 21, 3, 21, 1324, 8, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1330, 8, 21, 1, 21, 5, 21, 1333, 8, 21, 10, 21, 12, 21, 1336, 9, 21, 3, 21, 1338, 8, 21, 1, 21, 3, 21, 1341, 8, 21, 3, 21, 1343, 8, 21, 1, 22, 1, 22, 3, 22, 1347, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 1354, 8, 22, 1, 22, 1, 22, 3, 22, 1358, 8, 22, 1, 22, 3, 22, 1361, 8, 22, 1, 22, 1, 22, 1, 22, 3, 22, 1366, 8, 22, 1, 22, 1, 22, 3, 22, 1370, 8, 22, 1, 22, 3, 22, 1373, 8, 22, 1, 22, 1, 22, 3, 22, 1377, 8, 22, 1, 22, 3, 22, 1380, 8, 22, 1, 23, 1, 23, 3, 23, 1384, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 1397, 8, 23, 1, 23, 3, 23, 1400, 8, 23, 1, 23, 1, 23, 3, 23, 1404, 8, 23, 1, 23, 3, 23, 1407, 8, 23, 1, 23, 1, 23, 3, 23, 1411, 8, 23, 1, 23, 3, 23, 1414, 8, 23, 1, 23, 1, 23, 3, 23, 1418, 8, 23, 1, 23, 3, 23, 1421, 8, 23, 1, 23, 1, 23, 3, 23, 1425, 8, 23, 1, 23, 3, 23, 1428, 8, 23, 1, 23, 3, 23, 1431, 8, 23, 1, 23, 1, 23, 3, 23, 1435, 8, 23, 1, 23, 3, 23, 1438, 8, 23, 1, 23, 1, 23, 3, 23, 1442, 8, 23, 1, 23, 1, 23, 1, 24, 1, 24, 3, 24, 1448, 8, 24, 1, 24, 3, 24, 1451, 8, 24, 1, 24, 1, 24, 3, 24, 1455, 8, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 1467, 8, 24, 1, 24, 1, 24, 1, 25, 1, 25, 3, 25, 1473, 8, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 5, 26, 1482, 8, 26, 10, 26, 12, 26, 1485, 9, 26, 1, 26, 1, 26, 3, 26, 1489, 8, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1497, 8, 26, 1, 27, 1, 27, 3, 27, 1501, 8, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1506, 8, 27, 1, 27, 3, 27, 1509, 8, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1514, 8, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 1522, 8, 27, 10, 27, 12, 27, 1525, 9, 27, 1, 27, 1, 27, 3, 27, 1529, 8, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1534, 8, 27, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1540, 8, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1545, 8, 27, 1, 27, 1, 27, 3, 27, 1549, 8, 27, 3, 27, 1551, 8, 27, 1, 28, 3, 28, 1554, 8, 28, 1, 28, 1, 28, 3, 28, 1558, 8, 28, 1, 28, 1, 28, 3, 28, 1562, 8, 28, 1, 28, 3, 28, 1565, 8, 28, 1, 28, 1, 28, 3, 28, 1569, 8, 28, 1, 28, 1, 28, 3, 28, 1573, 8, 28, 1, 28, 1, 28, 3, 28, 1577, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 1583, 8, 28, 1, 28, 3, 28, 1586, 8, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 1593, 8, 29, 1, 30, 1, 30, 1, 30, 3, 30, 1598, 8, 30, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 1604, 8, 31, 1, 32, 1, 32, 1, 32, 5, 32, 1609, 8, 32, 10, 32, 12, 32, 1612, 9, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1617, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 1623, 8, 32, 10, 32, 12, 32, 1626, 9, 32, 3, 32, 1628, 8, 32, 1, 32, 1, 32, 1, 32, 5, 32, 1633, 8, 32, 10, 32, 12, 32, 1636, 9, 32, 3, 32, 1638, 8, 32, 3, 32, 1640, 8, 32, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 1646, 8, 33, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1652, 8, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 1669, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 1676, 8, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 3, 38, 1683, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1695, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1700, 8, 38, 1, 38, 3, 38, 1703, 8, 38, 1, 39, 3, 39, 1706, 8, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1719, 8, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1732, 8, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1737, 8, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1753, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 5, 43, 1759, 8, 43, 10, 43, 12, 43, 1762, 9, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1771, 8, 44, 1, 44, 3, 44, 1774, 8, 44, 1, 44, 1, 44, 5, 44, 1778, 8, 44, 10, 44, 12, 44, 1781, 9, 44, 1, 44, 1, 44, 3, 44, 1785, 8, 44, 1, 44, 3, 44, 1788, 8, 44, 1, 44, 1, 44, 5, 44, 1792, 8, 44, 10, 44, 12, 44, 1795, 9, 44, 1, 44, 3, 44, 1798, 8, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1803, 8, 44, 1, 44, 1, 44, 5, 44, 1807, 8, 44, 10, 44, 12, 44, 1810, 9, 44, 1, 44, 3, 44, 1813, 8, 44, 1, 44, 1, 44, 3, 44, 1817, 8, 44, 1, 44, 3, 44, 1820, 8, 44, 1, 44, 3, 44, 1823, 8, 44, 1, 44, 1, 44, 5, 44, 1827, 8, 44, 10, 44, 12, 44, 1830, 9, 44, 1, 44, 3, 44, 1833, 8, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1838, 8, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 3, 44, 1849, 8, 44, 1, 45, 3, 45, 1852, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1859, 8, 45, 1, 45, 3, 45, 1862, 8, 45, 1, 46, 1, 46, 3, 46, 1866, 8, 46, 1, 47, 1, 47, 5, 47, 1870, 8, 47, 10, 47, 12, 47, 1873, 9, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1884, 8, 48, 1, 48, 3, 48, 1887, 8, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1892, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1905, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1912, 8, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1918, 8, 48, 1, 49, 1, 49, 1, 49, 3, 49, 1923, 8, 49, 1, 49, 1, 49, 3, 49, 1927, 8, 49, 1, 49, 3, 49, 1930, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1938, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1946, 8, 50, 3, 50, 1948, 8, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1958, 8, 51, 1, 52, 1, 52, 3, 52, 1962, 8, 52, 1, 52, 3, 52, 1965, 8, 52, 1, 52, 1, 52, 3, 52, 1969, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1974, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1979, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1984, 8, 52, 1, 52, 1, 52, 3, 52, 1988, 8, 52, 1, 52, 1, 52, 3, 52, 1992, 8, 52, 1, 52, 1, 52, 3, 52, 1996, 8, 52, 1, 52, 1, 52, 3, 52, 2000, 8, 52, 1, 52, 1, 52, 3, 52, 2004, 8, 52, 1, 52, 1, 52, 3, 52, 2008, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2013, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2018, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2023, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2029, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2034, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2039, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2044, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2049, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2054, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2060, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2065, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2070, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2075, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2080, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2085, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2090, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2095, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2102, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2107, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2112, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2117, 8, 52, 1, 52, 1, 52, 3, 52, 2121, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2126, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2134, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2139, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 2145, 8, 52, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 2157, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 2164, 8, 55, 3, 55, 2166, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 5, 55, 2172, 8, 55, 10, 55, 12, 55, 2175, 9, 55, 1, 55, 1, 55, 3, 55, 2179, 8, 55, 1, 56, 3, 56, 2182, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2190, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2196, 8, 56, 1, 56, 1, 56, 3, 56, 2200, 8, 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, 2213, 8, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 2225, 8, 56, 3, 56, 2227, 8, 56, 1, 57, 3, 57, 2230, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2238, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2244, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2250, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2261, 8, 58, 10, 58, 12, 58, 2264, 9, 58, 1, 58, 1, 58, 5, 58, 2268, 8, 58, 10, 58, 12, 58, 2271, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2277, 8, 58, 10, 58, 12, 58, 2280, 9, 58, 1, 58, 1, 58, 3, 58, 2284, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2293, 8, 58, 10, 58, 12, 58, 2296, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2302, 8, 58, 10, 58, 12, 58, 2305, 9, 58, 1, 58, 1, 58, 3, 58, 2309, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2319, 8, 58, 10, 58, 12, 58, 2322, 9, 58, 1, 58, 1, 58, 5, 58, 2326, 8, 58, 10, 58, 12, 58, 2329, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2335, 8, 58, 10, 58, 12, 58, 2338, 9, 58, 1, 58, 1, 58, 3, 58, 2342, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2352, 8, 58, 10, 58, 12, 58, 2355, 9, 58, 1, 58, 1, 58, 5, 58, 2359, 8, 58, 10, 58, 12, 58, 2362, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2368, 8, 58, 10, 58, 12, 58, 2371, 9, 58, 1, 58, 1, 58, 3, 58, 2375, 8, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2380, 8, 58, 10, 58, 12, 58, 2383, 9, 58, 1, 58, 1, 58, 1, 58, 1, 58, 5, 58, 2389, 8, 58, 10, 58, 12, 58, 2392, 9, 58, 1, 58, 1, 58, 3, 58, 2396, 8, 58, 3, 58, 2398, 8, 58, 1, 59, 1, 59, 1, 59, 3, 59, 2403, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 4, 60, 2409, 8, 60, 11, 60, 12, 60, 2410, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 5, 61, 2418, 8, 61, 10, 61, 12, 61, 2421, 9, 61, 1, 62, 3, 62, 2424, 8, 62, 1, 62, 3, 62, 2427, 8, 62, 1, 62, 1, 62, 3, 62, 2431, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2436, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2442, 8, 62, 1, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2448, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2453, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2458, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2463, 8, 62, 1, 62, 1, 62, 1, 62, 3, 62, 2468, 8, 62, 1, 62, 3, 62, 2471, 8, 62, 1, 63, 1, 63, 1, 63, 3, 63, 2476, 8, 63, 1, 63, 4, 63, 2479, 8, 63, 11, 63, 12, 63, 2480, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 2491, 8, 63, 1, 64, 1, 64, 3, 64, 2495, 8, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2502, 8, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2507, 8, 64, 1, 64, 3, 64, 2510, 8, 64, 1, 64, 1, 64, 1, 64, 3, 64, 2515, 8, 64, 1, 64, 3, 64, 2518, 8, 64, 1, 64, 1, 64, 3, 64, 2522, 8, 64, 1, 64, 1, 64, 3, 64, 2526, 8, 64, 1, 65, 1, 65, 1, 65, 1, 65, 5, 65, 2532, 8, 65, 10, 65, 12, 65, 2535, 9, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 3, 67, 2553, 8, 67, 1, 67, 3, 67, 2556, 8, 67, 1, 67, 3, 67, 2559, 8, 67, 1, 67, 1, 67, 3, 67, 2563, 8, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2571, 8, 68, 10, 68, 12, 68, 2574, 9, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 5, 69, 2584, 8, 69, 10, 69, 12, 69, 2587, 9, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 2597, 8, 70, 10, 70, 12, 70, 2600, 9, 70, 3, 70, 2602, 8, 70, 1, 70, 1, 70, 5, 70, 2606, 8, 70, 10, 70, 12, 70, 2609, 9, 70, 3, 70, 2611, 8, 70, 1, 71, 1, 71, 3, 71, 2615, 8, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2624, 8, 71, 1, 71, 3, 71, 2627, 8, 71, 1, 71, 3, 71, 2630, 8, 71, 1, 71, 1, 71, 1, 71, 3, 71, 2635, 8, 71, 1, 71, 1, 71, 3, 71, 2639, 8, 71, 1, 71, 3, 71, 2642, 8, 71, 1, 71, 1, 71, 3, 71, 2646, 8, 71, 1, 71, 1, 71, 3, 71, 2650, 8, 71, 1, 71, 3, 71, 2653, 8, 71, 1, 71, 1, 71, 3, 71, 2657, 8, 71, 1, 71, 3, 71, 2660, 8, 71, 1, 71, 1, 71, 3, 71, 2664, 8, 71, 1, 71, 3, 71, 2667, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2673, 8, 72, 1, 72, 3, 72, 2676, 8, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2681, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2689, 8, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2695, 8, 72, 1, 72, 1, 72, 3, 72, 2699, 8, 72, 1, 73, 1, 73, 3, 73, 2703, 8, 73, 1, 73, 5, 73, 2706, 8, 73, 10, 73, 12, 73, 2709, 9, 73, 1, 73, 1, 73, 3, 73, 2713, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2720, 8, 73, 1, 73, 1, 73, 3, 73, 2724, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 5, 73, 2733, 8, 73, 10, 73, 12, 73, 2736, 9, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2743, 8, 73, 1, 73, 3, 73, 2746, 8, 73, 1, 73, 1, 73, 5, 73, 2750, 8, 73, 10, 73, 12, 73, 2753, 9, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2758, 8, 73, 1, 73, 3, 73, 2761, 8, 73, 1, 73, 1, 73, 5, 73, 2765, 8, 73, 10, 73, 12, 73, 2768, 9, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2773, 8, 73, 3, 73, 2775, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2780, 8, 73, 1, 73, 1, 73, 5, 73, 2784, 8, 73, 10, 73, 12, 73, 2787, 9, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2792, 8, 73, 3, 73, 2794, 8, 73, 1, 73, 1, 73, 3, 73, 2798, 8, 73, 1, 73, 3, 73, 2801, 8, 73, 1, 73, 3, 73, 2804, 8, 73, 1, 73, 1, 73, 5, 73, 2808, 8, 73, 10, 73, 12, 73, 2811, 9, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2816, 8, 73, 3, 73, 2818, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2823, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2830, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2839, 8, 73, 1, 73, 3, 73, 2842, 8, 73, 1, 73, 1, 73, 3, 73, 2846, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2851, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2861, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2870, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2878, 8, 73, 1, 73, 3, 73, 2881, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2889, 8, 73, 1, 73, 3, 73, 2892, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2899, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2904, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2912, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2928, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2933, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2940, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2959, 8, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2965, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 5, 74, 2973, 8, 74, 10, 74, 12, 74, 2976, 9, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2987, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2994, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3001, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 5, 74, 3014, 8, 74, 10, 74, 12, 74, 3017, 9, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3029, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3035, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3041, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3047, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3053, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3059, 8, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 3065, 8, 74, 1, 75, 1, 75, 1, 75, 3, 75, 3070, 8, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 3, 76, 3077, 8, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 3, 77, 3084, 8, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 3091, 8, 77, 1, 77, 1, 77, 1, 77, 3, 77, 3096, 8, 77, 1, 77, 5, 77, 3099, 8, 77, 10, 77, 12, 77, 3102, 9, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 3110, 8, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 3, 79, 3117, 8, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 3, 80, 3124, 8, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 3, 81, 3131, 8, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 3, 82, 3140, 8, 82, 1, 82, 1, 82, 1, 83, 1, 83, 3, 83, 3146, 8, 83, 1, 83, 1, 83, 3, 83, 3150, 8, 83, 1, 83, 1, 83, 3, 83, 3154, 8, 83, 1, 84, 1, 84, 3, 84, 3158, 8, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 3164, 8, 84, 1, 84, 3, 84, 3167, 8, 84, 1, 85, 1, 85, 1, 85, 3, 85, 3172, 8, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 3, 86, 3179, 8, 86, 1, 86, 1, 86, 1, 86, 5, 86, 3184, 8, 86, 10, 86, 12, 86, 3187, 9, 86, 1, 86, 3, 86, 3190, 8, 86, 1, 87, 1, 87, 1, 87, 3, 87, 3195, 8, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 3, 88, 3205, 8, 88, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 3211, 8, 88, 10, 88, 12, 88, 3214, 9, 88, 1, 88, 1, 88, 1, 88, 3, 88, 3219, 8, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 5, 89, 3226, 8, 89, 10, 89, 12, 89, 3229, 9, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 3, 91, 3237, 8, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 3246, 8, 92, 1, 92, 3, 92, 3249, 8, 92, 1, 93, 1, 93, 3, 93, 3253, 8, 93, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 3, 95, 3262, 8, 95, 1, 96, 1, 96, 3, 96, 3266, 8, 96, 1, 96, 3, 96, 3269, 8, 96, 1, 96, 3, 96, 3272, 8, 96, 1, 96, 1, 96, 1, 96, 1, 96, 3, 96, 3278, 8, 96, 1, 96, 3, 96, 3281, 8, 96, 1, 96, 3, 96, 3284, 8, 96, 1, 96, 1, 96, 3, 96, 3288, 8, 96, 1, 96, 3, 96, 3291, 8, 96, 1, 96, 3, 96, 3294, 8, 96, 1, 96, 3, 96, 3297, 8, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 5, 96, 3306, 8, 96, 10, 96, 12, 96, 3309, 9, 96, 3, 96, 3311, 8, 96, 1, 97, 1, 97, 1, 97, 3, 97, 3316, 8, 97, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 3322, 8, 98, 1, 99, 1, 99, 1, 99, 3, 99, 3327, 8, 99, 1, 99, 4, 99, 3330, 8, 99, 11, 99, 12, 99, 3331, 1, 100, 3, 100, 3335, 8, 100, 1, 100, 1, 100, 3, 100, 3339, 8, 100, 1, 101, 1, 101, 1, 101, 3, 101, 3344, 8, 101, 1, 101, 3, 101, 3347, 8, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3352, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3362, 8, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3367, 8, 101, 1, 101, 1, 101, 4, 101, 3371, 8, 101, 11, 101, 12, 101, 3372, 3, 101, 3375, 8, 101, 1, 101, 1, 101, 4, 101, 3379, 8, 101, 11, 101, 12, 101, 3380, 3, 101, 3383, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 3389, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 5, 101, 3395, 8, 101, 10, 101, 12, 101, 3398, 9, 101, 1, 101, 1, 101, 3, 101, 3402, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 5, 101, 3408, 8, 101, 10, 101, 12, 101, 3411, 9, 101, 3, 101, 3413, 8, 101, 1, 102, 1, 102, 1, 102, 3, 102, 3418, 8, 102, 1, 102, 3, 102, 3421, 8, 102, 1, 102, 1, 102, 1, 102, 3, 102, 3426, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 3434, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 3440, 8, 102, 1, 102, 1, 102, 3, 102, 3444, 8, 102, 3, 102, 3446, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 3452, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 3458, 8, 102, 10, 102, 12, 102, 3461, 9, 102, 1, 102, 1, 102, 3, 102, 3465, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 3471, 8, 102, 10, 102, 12, 102, 3474, 9, 102, 3, 102, 3476, 8, 102, 1, 103, 1, 103, 1, 103, 3, 103, 3481, 8, 103, 1, 103, 3, 103, 3484, 8, 103, 1, 103, 1, 103, 3, 103, 3488, 8, 103, 1, 103, 3, 103, 3491, 8, 103, 1, 103, 3, 103, 3494, 8, 103, 1, 104, 1, 104, 3, 104, 3498, 8, 104, 1, 104, 3, 104, 3501, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 3509, 8, 104, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 3515, 8, 104, 1, 104, 1, 104, 3, 104, 3519, 8, 104, 1, 105, 1, 105, 5, 105, 3523, 8, 105, 10, 105, 12, 105, 3526, 9, 105, 1, 105, 1, 105, 3, 105, 3530, 8, 105, 1, 105, 1, 105, 3, 105, 3534, 8, 105, 3, 105, 3536, 8, 105, 1, 105, 1, 105, 5, 105, 3540, 8, 105, 10, 105, 12, 105, 3543, 9, 105, 1, 105, 3, 105, 3546, 8, 105, 1, 105, 3, 105, 3549, 8, 105, 1, 105, 3, 105, 3552, 8, 105, 1, 105, 3, 105, 3555, 8, 105, 1, 105, 1, 105, 5, 105, 3559, 8, 105, 10, 105, 12, 105, 3562, 9, 105, 1, 105, 1, 105, 3, 105, 3566, 8, 105, 1, 105, 3, 105, 3569, 8, 105, 1, 105, 3, 105, 3572, 8, 105, 1, 105, 3, 105, 3575, 8, 105, 1, 105, 3, 105, 3578, 8, 105, 3, 105, 3580, 8, 105, 1, 106, 3, 106, 3583, 8, 106, 1, 106, 1, 106, 3, 106, 3587, 8, 106, 1, 106, 3, 106, 3590, 8, 106, 1, 106, 3, 106, 3593, 8, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 3601, 8, 107, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 3607, 8, 107, 1, 107, 5, 107, 3610, 8, 107, 10, 107, 12, 107, 3613, 9, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 3, 108, 3621, 8, 108, 1, 108, 5, 108, 3624, 8, 108, 10, 108, 12, 108, 3627, 9, 108, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 3633, 8, 109, 1, 109, 3, 109, 3636, 8, 109, 1, 109, 3, 109, 3639, 8, 109, 1, 109, 1, 109, 3, 109, 3643, 8, 109, 1, 110, 1, 110, 3, 110, 3647, 8, 110, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 3653, 8, 111, 1, 111, 1, 111, 3, 111, 3657, 8, 111, 1, 112, 1, 112, 1, 112, 5, 112, 3662, 8, 112, 10, 112, 12, 112, 3665, 9, 112, 1, 112, 3, 112, 3668, 8, 112, 1, 112, 3, 112, 3671, 8, 112, 1, 112, 3, 112, 3674, 8, 112, 1, 113, 1, 113, 1, 113, 3, 113, 3679, 8, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 3686, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 5, 115, 3694, 8, 115, 10, 115, 12, 115, 3697, 9, 115, 1, 116, 1, 116, 1, 116, 1, 116, 5, 116, 3703, 8, 116, 10, 116, 12, 116, 3706, 9, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 3, 118, 3714, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 5, 119, 3722, 8, 119, 10, 119, 12, 119, 3725, 9, 119, 3, 119, 3727, 8, 119, 1, 119, 1, 119, 3, 119, 3731, 8, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3737, 8, 119, 1, 120, 1, 120, 3, 120, 3741, 8, 120, 1, 120, 3, 120, 3744, 8, 120, 1, 120, 3, 120, 3747, 8, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3752, 8, 120, 1, 120, 3, 120, 3755, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3762, 8, 120, 1, 120, 1, 120, 3, 120, 3766, 8, 120, 1, 120, 3, 120, 3769, 8, 120, 1, 120, 1, 120, 3, 120, 3773, 8, 120, 1, 121, 1, 121, 3, 121, 3777, 8, 121, 1, 121, 3, 121, 3780, 8, 121, 1, 121, 3, 121, 3783, 8, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3788, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3794, 8, 121, 5, 121, 3796, 8, 121, 10, 121, 12, 121, 3799, 9, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3808, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3814, 8, 121, 5, 121, 3816, 8, 121, 10, 121, 12, 121, 3819, 9, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3824, 8, 121, 1, 121, 1, 121, 3, 121, 3828, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 3, 122, 3834, 8, 122, 1, 122, 3, 122, 3837, 8, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 3849, 8, 123, 1, 123, 1, 123, 3, 123, 3853, 8, 123, 1, 123, 1, 123, 3, 123, 3857, 8, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 3, 124, 3865, 8, 124, 1, 124, 1, 124, 3, 124, 3869, 8, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 5, 126, 3881, 8, 126, 10, 126, 12, 126, 3884, 9, 126, 1, 127, 1, 127, 3, 127, 3888, 8, 127, 1, 127, 3, 127, 3891, 8, 127, 1, 127, 1, 127, 3, 127, 3895, 8, 127, 1, 127, 3, 127, 3898, 8, 127, 1, 127, 1, 127, 1, 127, 1, 127, 5, 127, 3904, 8, 127, 10, 127, 12, 127, 3907, 9, 127, 1, 127, 1, 127, 3, 127, 3911, 8, 127, 1, 127, 3, 127, 3914, 8, 127, 1, 127, 3, 127, 3917, 8, 127, 1, 128, 1, 128, 3, 128, 3921, 8, 128, 1, 128, 3, 128, 3924, 8, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 5, 128, 3931, 8, 128, 10, 128, 12, 128, 3934, 9, 128, 1, 128, 1, 128, 3, 128, 3938, 8, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 5, 129, 3945, 8, 129, 10, 129, 12, 129, 3948, 9, 129, 1, 130, 1, 130, 3, 130, 3952, 8, 130, 1, 131, 1, 131, 1, 131, 5, 131, 3957, 8, 131, 10, 131, 12, 131, 3960, 9, 131, 1, 132, 1, 132, 5, 132, 3964, 8, 132, 10, 132, 12, 132, 3967, 9, 132, 1, 132, 1, 132, 1, 132, 5, 132, 3972, 8, 132, 10, 132, 12, 132, 3975, 9, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3980, 8, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 3988, 8, 133, 1, 133, 3, 133, 3991, 8, 133, 1, 133, 3, 133, 3994, 8, 133, 1, 133, 1, 133, 1, 133, 5, 133, 3999, 8, 133, 10, 133, 12, 133, 4002, 9, 133, 3, 133, 4004, 8, 133, 1, 133, 3, 133, 4007, 8, 133, 1, 133, 1, 133, 3, 133, 4011, 8, 133, 1, 133, 1, 133, 3, 133, 4015, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 4021, 8, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 3, 134, 4028, 8, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 4038, 8, 136, 1, 136, 1, 136, 3, 136, 4042, 8, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 3, 137, 4051, 8, 137, 1, 138, 3, 138, 4054, 8, 138, 1, 138, 1, 138, 3, 138, 4058, 8, 138, 1, 138, 1, 138, 5, 138, 4062, 8, 138, 10, 138, 12, 138, 4065, 9, 138, 1, 138, 1, 138, 1, 138, 5, 138, 4070, 8, 138, 10, 138, 12, 138, 4073, 9, 138, 1, 138, 1, 138, 3, 138, 4077, 8, 138, 1, 138, 1, 138, 3, 138, 4081, 8, 138, 1, 138, 1, 138, 5, 138, 4085, 8, 138, 10, 138, 12, 138, 4088, 9, 138, 1, 138, 1, 138, 1, 138, 3, 138, 4093, 8, 138, 1, 138, 3, 138, 4096, 8, 138, 3, 138, 4098, 8, 138, 1, 138, 1, 138, 3, 138, 4102, 8, 138, 1, 139, 1, 139, 1, 139, 3, 139, 4107, 8, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 4114, 8, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 4124, 8, 140, 1, 141, 1, 141, 5, 141, 4128, 8, 141, 10, 141, 12, 141, 4131, 9, 141, 1, 141, 1, 141, 3, 141, 4135, 8, 141, 1, 141, 1, 141, 3, 141, 4139, 8, 141, 1, 141, 3, 141, 4142, 8, 141, 1, 141, 3, 141, 4145, 8, 141, 1, 141, 3, 141, 4148, 8, 141, 1, 141, 3, 141, 4151, 8, 141, 1, 141, 3, 141, 4154, 8, 141, 1, 141, 3, 141, 4157, 8, 141, 1, 142, 1, 142, 3, 142, 4161, 8, 142, 1, 142, 1, 142, 3, 142, 4165, 8, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 4173, 8, 143, 1, 143, 1, 143, 3, 143, 4177, 8, 143, 1, 143, 3, 143, 4180, 8, 143, 3, 143, 4182, 8, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 3, 144, 4195, 8, 144, 1, 144, 3, 144, 4198, 8, 144, 1, 145, 1, 145, 1, 145, 5, 145, 4203, 8, 145, 10, 145, 12, 145, 4206, 9, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 4215, 8, 146, 1, 146, 3, 146, 4218, 8, 146, 1, 146, 1, 146, 1, 146, 3, 146, 4223, 8, 146, 3, 146, 4225, 8, 146, 1, 146, 1, 146, 3, 146, 4229, 8, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 4237, 8, 146, 1, 147, 1, 147, 1, 147, 1, 147, 3, 147, 4243, 8, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 3, 148, 4252, 8, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 3, 149, 4265, 8, 149, 1, 150, 1, 150, 3, 150, 4269, 8, 150, 1, 150, 1, 150, 5, 150, 4273, 8, 150, 10, 150, 12, 150, 4276, 9, 150, 1, 151, 1, 151, 1, 151, 3, 151, 4281, 8, 151, 1, 151, 3, 151, 4284, 8, 151, 1, 151, 1, 151, 3, 151, 4288, 8, 151, 1, 151, 3, 151, 4291, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 4298, 8, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 1, 154, 1, 154, 1, 155, 1, 155, 3, 155, 4310, 8, 155, 1, 155, 1, 155, 3, 155, 4314, 8, 155, 1, 156, 1, 156, 1, 156, 1, 156, 5, 156, 4320, 8, 156, 10, 156, 12, 156, 4323, 9, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 4334, 8, 156, 1, 156, 1, 156, 4, 156, 4338, 8, 156, 11, 156, 12, 156, 4339, 3, 156, 4342, 8, 156, 1, 156, 1, 156, 4, 156, 4346, 8, 156, 11, 156, 12, 156, 4347, 3, 156, 4350, 8, 156, 3, 156, 4352, 8, 156, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 4358, 8, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 4366, 8, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 3, 158, 4374, 8, 158, 1, 159, 1, 159, 3, 159, 4378, 8, 159, 1, 159, 1, 159, 1, 159, 3, 159, 4383, 8, 159, 3, 159, 4385, 8, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 5, 160, 4392, 8, 160, 10, 160, 12, 160, 4395, 9, 160, 1, 160, 1, 160, 3, 160, 4399, 8, 160, 1, 161, 1, 161, 1, 161, 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, 5, 162, 4417, 8, 162, 10, 162, 12, 162, 4420, 9, 162, 1, 163, 1, 163, 3, 163, 4424, 8, 163, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 4430, 8, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 4437, 8, 164, 1, 165, 1, 165, 1, 165, 3, 165, 4442, 8, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 5, 166, 4449, 8, 166, 10, 166, 12, 166, 4452, 9, 166, 3, 166, 4454, 8, 166, 1, 167, 1, 167, 3, 167, 4458, 8, 167, 1, 168, 1, 168, 3, 168, 4462, 8, 168, 1, 168, 1, 168, 3, 168, 4466, 8, 168, 1, 168, 3, 168, 4469, 8, 168, 1, 168, 3, 168, 4472, 8, 168, 1, 168, 3, 168, 4475, 8, 168, 1, 169, 1, 169, 3, 169, 4479, 8, 169, 1, 169, 1, 169, 3, 169, 4483, 8, 169, 1, 169, 3, 169, 4486, 8, 169, 1, 169, 3, 169, 4489, 8, 169, 1, 169, 3, 169, 4492, 8, 169, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 3, 171, 4499, 8, 171, 1, 171, 1, 171, 3, 171, 4503, 8, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 5, 173, 4516, 8, 173, 10, 173, 12, 173, 4519, 9, 173, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 3, 176, 4531, 8, 176, 1, 176, 1, 176, 1, 176, 1, 176, 5, 176, 4537, 8, 176, 10, 176, 12, 176, 4540, 9, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 4549, 8, 177, 1, 178, 1, 178, 3, 178, 4553, 8, 178, 1, 178, 3, 178, 4556, 8, 178, 1, 178, 1, 178, 1, 179, 1, 179, 3, 179, 4562, 8, 179, 1, 179, 3, 179, 4565, 8, 179, 1, 179, 3, 179, 4568, 8, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 3, 180, 4577, 8, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 4586, 8, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 5, 182, 4594, 8, 182, 10, 182, 12, 182, 4597, 9, 182, 1, 182, 3, 182, 4600, 8, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 5, 183, 4608, 8, 183, 10, 183, 12, 183, 4611, 9, 183, 1, 183, 3, 183, 4614, 8, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 5, 184, 4623, 8, 184, 10, 184, 12, 184, 4626, 9, 184, 1, 184, 3, 184, 4629, 8, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 3, 185, 4638, 8, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 5, 186, 4645, 8, 186, 10, 186, 12, 186, 4648, 9, 186, 3, 186, 4650, 8, 186, 1, 186, 1, 186, 3, 186, 4654, 8, 186, 1, 186, 5, 186, 4657, 8, 186, 10, 186, 12, 186, 4660, 9, 186, 1, 186, 3, 186, 4663, 8, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 5, 187, 4670, 8, 187, 10, 187, 12, 187, 4673, 9, 187, 3, 187, 4675, 8, 187, 1, 187, 3, 187, 4678, 8, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 4685, 8, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 4691, 8, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 4697, 8, 188, 1, 189, 1, 189, 1, 189, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 5, 190, 4721, 8, 190, 10, 190, 12, 190, 4724, 9, 190, 3, 190, 4726, 8, 190, 1, 190, 3, 190, 4729, 8, 190, 1, 191, 1, 191, 1, 192, 1, 192, 1, 193, 1, 193, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 3, 194, 4748, 8, 194, 3, 194, 4750, 8, 194, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 5, 195, 4771, 8, 195, 10, 195, 12, 195, 4774, 9, 195, 3, 195, 4776, 8, 195, 1, 195, 3, 195, 4779, 8, 195, 1, 196, 1, 196, 1, 197, 1, 197, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 3, 199, 4798, 8, 199, 3, 199, 4800, 8, 199, 1, 200, 1, 200, 1, 200, 1, 200, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 5, 201, 4812, 8, 201, 10, 201, 12, 201, 4815, 9, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 5, 201, 4825, 8, 201, 10, 201, 12, 201, 4828, 9, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 5, 201, 4862, 8, 201, 10, 201, 12, 201, 4865, 9, 201, 1, 201, 1, 201, 3, 201, 4869, 8, 201, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 203, 1, 203, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 3, 204, 4904, 8, 204, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 3, 205, 4918, 8, 205, 1, 206, 1, 206, 1, 206, 5, 206, 4923, 8, 206, 10, 206, 12, 206, 4926, 9, 206, 1, 206, 3, 206, 4929, 8, 206, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 4935, 8, 207, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 3, 208, 4943, 8, 208, 3, 208, 4945, 8, 208, 1, 209, 1, 209, 1, 209, 1, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 3, 210, 4956, 8, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 212, 1, 212, 1, 212, 1, 212, 3, 212, 4966, 8, 212, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4973, 8, 213, 1, 214, 1, 214, 1, 214, 1, 214, 3, 214, 4979, 8, 214, 1, 215, 1, 215, 1, 215, 1, 215, 1, 216, 1, 216, 3, 216, 4987, 8, 216, 1, 217, 1, 217, 1, 217, 3, 217, 4992, 8, 217, 1, 217, 1, 217, 1, 217, 1, 217, 5, 217, 4998, 8, 217, 10, 217, 12, 217, 5001, 9, 217, 1, 217, 1, 217, 1, 217, 5, 217, 5006, 8, 217, 10, 217, 12, 217, 5009, 9, 217, 1, 217, 1, 217, 1, 217, 5, 217, 5014, 8, 217, 10, 217, 12, 217, 5017, 9, 217, 1, 217, 1, 217, 1, 217, 5, 217, 5022, 8, 217, 10, 217, 12, 217, 5025, 9, 217, 1, 217, 5, 217, 5028, 8, 217, 10, 217, 12, 217, 5031, 9, 217, 1, 217, 1, 217, 3, 217, 5035, 8, 217, 1, 218, 1, 218, 1, 218, 3, 218, 5040, 8, 218, 1, 218, 4, 218, 5043, 8, 218, 11, 218, 12, 218, 5044, 1, 218, 1, 218, 4, 218, 5049, 8, 218, 11, 218, 12, 218, 5050, 3, 218, 5053, 8, 218, 1, 218, 1, 218, 1, 218, 1, 219, 1, 219, 1, 219, 1, 219, 4, 219, 5062, 8, 219, 11, 219, 12, 219, 5063, 1, 219, 5, 219, 5067, 8, 219, 10, 219, 12, 219, 5070, 9, 219, 1, 219, 1, 219, 4, 219, 5074, 8, 219, 11, 219, 12, 219, 5075, 3, 219, 5078, 8, 219, 1, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 220, 1, 221, 1, 221, 1, 221, 1, 222, 1, 222, 1, 222, 3, 222, 5092, 8, 222, 1, 222, 1, 222, 4, 222, 5096, 8, 222, 11, 222, 12, 222, 5097, 1, 222, 1, 222, 1, 222, 3, 222, 5103, 8, 222, 1, 223, 1, 223, 1, 223, 3, 223, 5108, 8, 223, 1, 223, 1, 223, 4, 223, 5112, 8, 223, 11, 223, 12, 223, 5113, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 3, 223, 5121, 8, 223, 1, 224, 1, 224, 1, 224, 1, 225, 1, 225, 1, 225, 3, 225, 5129, 8, 225, 1, 225, 1, 225, 1, 225, 1, 225, 4, 225, 5135, 8, 225, 11, 225, 12, 225, 5136, 1, 225, 1, 225, 1, 225, 3, 225, 5142, 8, 225, 1, 226, 1, 226, 1, 226, 1, 226, 3, 226, 5148, 8, 226, 1, 226, 3, 226, 5151, 8, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 3, 226, 5159, 8, 226, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 3, 227, 5166, 8, 227, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 3, 228, 5175, 8, 228, 1, 228, 3, 228, 5178, 8, 228, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 5, 230, 5193, 8, 230, 10, 230, 12, 230, 5196, 9, 230, 1, 230, 1, 230, 1, 231, 1, 231, 1, 231, 3, 231, 5203, 8, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5211, 8, 231, 1, 232, 1, 232, 3, 232, 5215, 8, 232, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 3, 233, 5222, 8, 233, 1, 233, 1, 233, 4, 233, 5226, 8, 233, 11, 233, 12, 233, 5227, 1, 234, 1, 234, 1, 234, 1, 234, 4, 234, 5234, 8, 234, 11, 234, 12, 234, 5235, 1, 235, 1, 235, 1, 235, 3, 235, 5241, 8, 235, 1, 235, 1, 235, 1, 235, 5, 235, 5246, 8, 235, 10, 235, 12, 235, 5249, 9, 235, 1, 235, 1, 235, 1, 235, 5, 235, 5254, 8, 235, 10, 235, 12, 235, 5257, 9, 235, 1, 235, 1, 235, 1, 235, 1, 235, 3, 235, 5263, 8, 235, 1, 235, 5, 235, 5266, 8, 235, 10, 235, 12, 235, 5269, 9, 235, 3, 235, 5271, 8, 235, 3, 235, 5273, 8, 235, 1, 235, 1, 235, 4, 235, 5277, 8, 235, 11, 235, 12, 235, 5278, 3, 235, 5281, 8, 235, 1, 235, 1, 235, 5, 235, 5285, 8, 235, 10, 235, 12, 235, 5288, 9, 235, 1, 235, 1, 235, 3, 235, 5292, 8, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 3, 235, 5299, 8, 235, 1, 236, 1, 236, 1, 236, 3, 236, 5304, 8, 236, 1, 236, 1, 236, 3, 236, 5308, 8, 236, 1, 236, 1, 236, 1, 236, 3, 236, 5313, 8, 236, 5, 236, 5315, 8, 236, 10, 236, 12, 236, 5318, 9, 236, 1, 236, 1, 236, 1, 236, 3, 236, 5323, 8, 236, 1, 236, 1, 236, 1, 236, 1, 236, 3, 236, 5329, 8, 236, 1, 236, 5, 236, 5332, 8, 236, 10, 236, 12, 236, 5335, 9, 236, 3, 236, 5337, 8, 236, 3, 236, 5339, 8, 236, 1, 236, 1, 236, 4, 236, 5343, 8, 236, 11, 236, 12, 236, 5344, 3, 236, 5347, 8, 236, 1, 236, 1, 236, 5, 236, 5351, 8, 236, 10, 236, 12, 236, 5354, 9, 236, 1, 236, 1, 236, 3, 236, 5358, 8, 236, 1, 237, 1, 237, 1, 237, 3, 237, 5363, 8, 237, 1, 237, 1, 237, 1, 237, 5, 237, 5368, 8, 237, 10, 237, 12, 237, 5371, 9, 237, 1, 238, 1, 238, 1, 238, 1, 238, 5, 238, 5377, 8, 238, 10, 238, 12, 238, 5380, 9, 238, 1, 238, 1, 238, 3, 238, 5384, 8, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 5, 238, 5391, 8, 238, 10, 238, 12, 238, 5394, 9, 238, 1, 238, 3, 238, 5397, 8, 238, 1, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5403, 8, 238, 1, 238, 5, 238, 5406, 8, 238, 10, 238, 12, 238, 5409, 9, 238, 3, 238, 5411, 8, 238, 3, 238, 5413, 8, 238, 1, 238, 1, 238, 1, 238, 1, 238, 5, 238, 5419, 8, 238, 10, 238, 12, 238, 5422, 9, 238, 3, 238, 5424, 8, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5431, 8, 238, 3, 238, 5433, 8, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5438, 8, 238, 1, 238, 1, 238, 1, 238, 5, 238, 5443, 8, 238, 10, 238, 12, 238, 5446, 9, 238, 1, 238, 1, 238, 1, 238, 1, 238, 5, 238, 5452, 8, 238, 10, 238, 12, 238, 5455, 9, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5460, 8, 238, 3, 238, 5462, 8, 238, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 3, 239, 5469, 8, 239, 1, 239, 3, 239, 5472, 8, 239, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 5, 240, 5482, 8, 240, 10, 240, 12, 240, 5485, 9, 240, 1, 240, 1, 240, 1, 240, 3, 240, 5490, 8, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 3, 241, 5498, 8, 241, 1, 241, 3, 241, 5501, 8, 241, 1, 241, 1, 241, 3, 241, 5505, 8, 241, 1, 241, 3, 241, 5508, 8, 241, 1, 241, 1, 241, 3, 241, 5512, 8, 241, 3, 241, 5514, 8, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 3, 242, 5525, 8, 242, 1, 242, 3, 242, 5528, 8, 242, 1, 242, 1, 242, 3, 242, 5532, 8, 242, 1, 242, 3, 242, 5535, 8, 242, 1, 242, 3, 242, 5538, 8, 242, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 3, 243, 5545, 8, 243, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 5, 244, 5555, 8, 244, 10, 244, 12, 244, 5558, 9, 244, 3, 244, 5560, 8, 244, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 3, 245, 5567, 8, 245, 1, 245, 1, 245, 5, 245, 5571, 8, 245, 10, 245, 12, 245, 5574, 9, 245, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 5, 246, 5581, 8, 246, 10, 246, 12, 246, 5584, 9, 246, 1, 247, 1, 247, 3, 247, 5588, 8, 247, 1, 247, 1, 247, 1, 247, 5, 247, 5593, 8, 247, 10, 247, 12, 247, 5596, 9, 247, 1, 247, 1, 247, 3, 247, 5600, 8, 247, 1, 247, 1, 247, 1, 247, 1, 247, 3, 247, 5606, 8, 247, 1, 247, 1, 247, 3, 247, 5610, 8, 247, 1, 247, 1, 247, 3, 247, 5614, 8, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 3, 247, 5622, 8, 247, 1, 247, 1, 247, 3, 247, 5626, 8, 247, 1, 247, 1, 247, 3, 247, 5630, 8, 247, 1, 247, 1, 247, 1, 247, 1, 247, 3, 247, 5636, 8, 247, 3, 247, 5638, 8, 247, 1, 248, 1, 248, 1, 248, 1, 248, 1, 249, 1, 249, 1, 250, 1, 250, 1, 250, 1, 250, 3, 250, 5650, 8, 250, 1, 250, 1, 250, 1, 250, 3, 250, 5655, 8, 250, 1, 250, 1, 250, 1, 250, 1, 250, 3, 250, 5661, 8, 250, 1, 250, 1, 250, 1, 250, 1, 250, 3, 250, 5667, 8, 250, 1, 250, 1, 250, 3, 250, 5671, 8, 250, 1, 250, 1, 250, 1, 250, 3, 250, 5676, 8, 250, 3, 250, 5678, 8, 250, 1, 251, 1, 251, 1, 251, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 1, 252, 3, 252, 5702, 8, 252, 4, 252, 5704, 8, 252, 11, 252, 12, 252, 5705, 1, 252, 3, 252, 5709, 8, 252, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 3, 253, 5718, 8, 253, 1, 253, 1, 253, 3, 253, 5722, 8, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 1, 253, 3, 253, 5731, 8, 253, 1, 253, 1, 253, 3, 253, 5735, 8, 253, 1, 253, 1, 253, 3, 253, 5739, 8, 253, 1, 253, 1, 253, 1, 253, 1, 253, 3, 253, 5745, 8, 253, 3, 253, 5747, 8, 253, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 3, 254, 5756, 8, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 1, 254, 3, 254, 5766, 8, 254, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 1, 255, 3, 255, 5793, 8, 255, 1, 256, 1, 256, 3, 256, 5797, 8, 256, 1, 256, 1, 256, 1, 256, 3, 256, 5802, 8, 256, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 3, 257, 5809, 8, 257, 1, 257, 3, 257, 5812, 8, 257, 1, 257, 1, 257, 1, 257, 1, 257, 3, 257, 5818, 8, 257, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 3, 258, 5828, 8, 258, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 1, 259, 3, 259, 5838, 8, 259, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 5848, 8, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 5854, 8, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 5863, 8, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 5869, 8, 260, 1, 260, 1, 260, 1, 260, 1, 260, 1, 260, 3, 260, 5876, 8, 260, 3, 260, 5878, 8, 260, 1, 261, 1, 261, 1, 261, 1, 262, 1, 262, 1, 262, 3, 262, 5886, 8, 262, 1, 262, 1, 262, 1, 262, 1, 262, 3, 262, 5892, 8, 262, 1, 262, 1, 262, 3, 262, 5896, 8, 262, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 3, 263, 5913, 8, 263, 1, 264, 1, 264, 1, 264, 1, 265, 1, 265, 1, 265, 1, 265, 1, 265, 3, 265, 5923, 8, 265, 1, 266, 1, 266, 3, 266, 5927, 8, 266, 1, 266, 1, 266, 3, 266, 5931, 8, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5941, 8, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5946, 8, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 6018, 8, 266, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 3, 267, 6036, 8, 267, 1, 268, 1, 268, 1, 268, 1, 268, 1, 269, 1, 269, 3, 269, 6044, 8, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 6050, 8, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 6062, 8, 269, 1, 269, 1, 269, 3, 269, 6066, 8, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 6077, 8, 269, 1, 269, 1, 269, 3, 269, 6081, 8, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 3, 269, 6090, 8, 269, 1, 270, 1, 270, 1, 270, 1, 270, 5, 270, 6096, 8, 270, 10, 270, 12, 270, 6099, 9, 270, 1, 271, 1, 271, 1, 271, 1, 271, 3, 271, 6105, 8, 271, 1, 272, 1, 272, 3, 272, 6109, 8, 272, 1, 272, 1, 272, 1, 272, 1, 273, 1, 273, 3, 273, 6116, 8, 273, 1, 273, 1, 273, 1, 273, 3, 273, 6121, 8, 273, 1, 273, 3, 273, 6124, 8, 273, 1, 273, 3, 273, 6127, 8, 273, 1, 274, 1, 274, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 6138, 8, 275, 1, 276, 1, 276, 1, 276, 1, 276, 1, 276, 5, 276, 6145, 8, 276, 10, 276, 12, 276, 6148, 9, 276, 1, 276, 1, 276, 1, 276, 1, 276, 5, 276, 6154, 8, 276, 10, 276, 12, 276, 6157, 9, 276, 3, 276, 6159, 8, 276, 1, 277, 1, 277, 1, 277, 1, 277, 1, 277, 1, 278, 1, 278, 1, 278, 1, 278, 1, 278, 5, 278, 6171, 8, 278, 10, 278, 12, 278, 6174, 9, 278, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 279, 1, 280, 1, 280, 1, 280, 1, 280, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 3, 281, 6191, 8, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 3, 281, 6204, 8, 281, 1, 281, 3, 281, 6207, 8, 281, 1, 281, 1, 281, 3, 281, 6211, 8, 281, 1, 281, 3, 281, 6214, 8, 281, 3, 281, 6216, 8, 281, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 6223, 8, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 6230, 8, 282, 5, 282, 6232, 8, 282, 10, 282, 12, 282, 6235, 9, 282, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 6241, 8, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 3, 282, 6248, 8, 282, 1, 282, 3, 282, 6251, 8, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 1, 282, 5, 282, 6265, 8, 282, 10, 282, 12, 282, 6268, 9, 282, 3, 282, 6270, 8, 282, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6280, 8, 283, 1, 283, 1, 283, 3, 283, 6284, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6290, 8, 283, 1, 283, 3, 283, 6293, 8, 283, 1, 283, 3, 283, 6296, 8, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6301, 8, 283, 1, 283, 1, 283, 3, 283, 6305, 8, 283, 1, 283, 3, 283, 6308, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6315, 8, 283, 1, 283, 3, 283, 6318, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6324, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6360, 8, 283, 1, 283, 3, 283, 6363, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6375, 8, 283, 1, 283, 3, 283, 6378, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6394, 8, 283, 3, 283, 6396, 8, 283, 1, 283, 1, 283, 3, 283, 6400, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6407, 8, 283, 1, 283, 1, 283, 3, 283, 6411, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6418, 8, 283, 1, 283, 3, 283, 6421, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 5, 283, 6428, 8, 283, 10, 283, 12, 283, 6431, 9, 283, 3, 283, 6433, 8, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6438, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6444, 8, 283, 3, 283, 6446, 8, 283, 1, 283, 1, 283, 1, 283, 1, 283, 3, 283, 6452, 8, 283, 1, 283, 1, 283, 3, 283, 6456, 8, 283, 1, 284, 1, 284, 1, 284, 1, 284, 3, 284, 6462, 8, 284, 1, 284, 3, 284, 6465, 8, 284, 1, 284, 3, 284, 6468, 8, 284, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 3, 285, 6481, 8, 285, 1, 285, 3, 285, 6484, 8, 285, 1, 286, 1, 286, 1, 286, 1, 286, 3, 286, 6490, 8, 286, 1, 287, 3, 287, 6493, 8, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 3, 287, 6501, 8, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 1, 287, 3, 287, 6509, 8, 287, 1, 288, 1, 288, 1, 288, 1, 288, 3, 288, 6515, 8, 288, 1, 288, 3, 288, 6518, 8, 288, 1, 288, 1, 288, 3, 288, 6522, 8, 288, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 1, 289, 3, 289, 6536, 8, 289, 1, 290, 1, 290, 1, 290, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 5, 291, 6546, 8, 291, 10, 291, 12, 291, 6549, 9, 291, 1, 291, 1, 291, 1, 291, 1, 291, 1, 291, 3, 291, 6556, 8, 291, 1, 291, 1, 291, 3, 291, 6560, 8, 291, 1, 291, 1, 291, 1, 291, 1, 292, 1, 292, 3, 292, 6567, 8, 292, 1, 292, 1, 292, 1, 292, 5, 292, 6572, 8, 292, 10, 292, 12, 292, 6575, 9, 292, 1, 293, 1, 293, 3, 293, 6579, 8, 293, 1, 293, 1, 293, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 1, 294, 5, 294, 6590, 8, 294, 10, 294, 12, 294, 6593, 9, 294, 1, 295, 1, 295, 1, 295, 1, 295, 5, 295, 6599, 8, 295, 10, 295, 12, 295, 6602, 9, 295, 1, 296, 1, 296, 1, 296, 1, 296, 1, 296, 3, 296, 6609, 8, 296, 1, 297, 1, 297, 1, 297, 3, 297, 6614, 8, 297, 1, 297, 3, 297, 6617, 8, 297, 1, 298, 1, 298, 1, 298, 3, 298, 6622, 8, 298, 1, 298, 3, 298, 6625, 8, 298, 1, 299, 1, 299, 1, 300, 1, 300, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 1, 301, 3, 301, 6637, 8, 301, 1, 302, 1, 302, 1, 302, 3, 302, 6642, 8, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 1, 302, 3, 302, 6655, 8, 302, 3, 302, 6657, 8, 302, 1, 302, 1, 302, 1, 302, 3, 302, 6662, 8, 302, 1, 302, 1, 302, 3, 302, 6666, 8, 302, 1, 302, 3, 302, 6669, 8, 302, 3, 302, 6671, 8, 302, 1, 303, 1, 303, 1, 303, 1, 303, 1, 303, 3, 303, 6678, 8, 303, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6685, 8, 304, 1, 304, 3, 304, 6688, 8, 304, 1, 304, 3, 304, 6691, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6697, 8, 304, 1, 304, 1, 304, 3, 304, 6701, 8, 304, 1, 305, 1, 305, 1, 305, 1, 305, 3, 305, 6707, 8, 305, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 3, 306, 6715, 8, 306, 1, 306, 1, 306, 1, 307, 1, 307, 1, 307, 1, 307, 1, 307, 3, 307, 6724, 8, 307, 1, 307, 1, 307, 1, 308, 1, 308, 1, 308, 1, 309, 1, 309, 1, 309, 1, 310, 1, 310, 1, 310, 3, 310, 6737, 8, 310, 1, 310, 1, 310, 1, 310, 3, 310, 6742, 8, 310, 1, 310, 1, 310, 1, 310, 1, 310, 5, 310, 6748, 8, 310, 10, 310, 12, 310, 6751, 9, 310, 3, 310, 6753, 8, 310, 1, 311, 1, 311, 1, 311, 3, 311, 6758, 8, 311, 1, 311, 1, 311, 1, 311, 3, 311, 6763, 8, 311, 1, 311, 1, 311, 1, 311, 1, 311, 5, 311, 6769, 8, 311, 10, 311, 12, 311, 6772, 9, 311, 3, 311, 6774, 8, 311, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 1, 312, 3, 312, 6782, 8, 312, 1, 313, 1, 313, 3, 313, 6786, 8, 313, 1, 313, 1, 313, 1, 313, 5, 313, 6791, 8, 313, 10, 313, 12, 313, 6794, 9, 313, 1, 314, 1, 314, 1, 314, 3, 314, 6799, 8, 314, 1, 314, 3, 314, 6802, 8, 314, 1, 315, 1, 315, 3, 315, 6806, 8, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 5, 315, 6817, 8, 315, 10, 315, 12, 315, 6820, 9, 315, 1, 315, 1, 315, 1, 315, 3, 315, 6825, 8, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 5, 315, 6835, 8, 315, 10, 315, 12, 315, 6838, 9, 315, 3, 315, 6840, 8, 315, 1, 316, 1, 316, 1, 317, 1, 317, 1, 317, 1, 317, 1, 317, 3, 317, 6849, 8, 317, 1, 317, 1, 317, 1, 317, 3, 317, 6854, 8, 317, 1, 318, 1, 318, 1, 319, 1, 319, 1, 320, 1, 320, 1, 321, 1, 321, 1, 322, 1, 322, 1, 323, 1, 323, 1, 324, 1, 324, 1, 325, 1, 325, 1, 325, 5, 325, 6873, 8, 325, 10, 325, 12, 325, 6876, 9, 325, 1, 326, 1, 326, 1, 327, 1, 327, 1, 328, 1, 328, 1, 329, 1, 329, 1, 330, 1, 330, 1, 330, 5, 330, 6889, 8, 330, 10, 330, 12, 330, 6892, 9, 330, 1, 331, 1, 331, 1, 332, 1, 332, 1, 332, 5, 332, 6899, 8, 332, 10, 332, 12, 332, 6902, 9, 332, 1, 333, 1, 333, 3, 333, 6906, 8, 333, 1, 334, 1, 334, 1, 334, 3, 334, 6911, 8, 334, 3, 334, 6913, 8, 334, 1, 334, 3, 334, 6916, 8, 334, 1, 334, 1, 334, 3, 334, 6920, 8, 334, 3, 334, 6922, 8, 334, 1, 335, 1, 335, 1, 335, 5, 335, 6927, 8, 335, 10, 335, 12, 335, 6930, 9, 335, 1, 336, 1, 336, 1, 337, 1, 337, 1, 337, 3, 337, 6937, 8, 337, 3, 337, 6939, 8, 337, 1, 337, 3, 337, 6942, 8, 337, 1, 337, 1, 337, 3, 337, 6946, 8, 337, 1, 337, 1, 337, 3, 337, 6950, 8, 337, 1, 338, 1, 338, 1, 338, 3, 338, 6955, 8, 338, 3, 338, 6957, 8, 338, 1, 338, 3, 338, 6960, 8, 338, 1, 338, 1, 338, 3, 338, 6964, 8, 338, 3, 338, 6966, 8, 338, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6973, 8, 339, 3, 339, 6975, 8, 339, 3, 339, 6977, 8, 339, 1, 340, 1, 340, 1, 341, 1, 341, 1, 342, 1, 342, 1, 343, 1, 343, 1, 343, 5, 343, 6988, 8, 343, 10, 343, 12, 343, 6991, 9, 343, 1, 344, 1, 344, 1, 345, 1, 345, 1, 345, 1, 345, 1, 345, 3, 345, 7000, 8, 345, 1, 345, 3, 345, 7003, 8, 345, 1, 345, 3, 345, 7006, 8, 345, 1, 346, 1, 346, 1, 346, 1, 346, 1, 347, 1, 347, 1, 347, 1, 348, 1, 348, 1, 348, 1, 348, 3, 348, 7019, 8, 348, 1, 349, 1, 349, 1, 350, 1, 350, 3, 350, 7025, 8, 350, 1, 350, 3, 350, 7028, 8, 350, 1, 351, 1, 351, 1, 352, 1, 352, 1, 352, 1, 352, 3, 352, 7036, 8, 352, 1, 353, 1, 353, 1, 354, 1, 354, 1, 354, 3, 354, 7043, 8, 354, 1, 355, 1, 355, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 4, 356, 7061, 8, 356, 11, 356, 12, 356, 7062, 1, 357, 1, 357, 1, 357, 1, 357, 1, 357, 3, 357, 7070, 8, 357, 3, 357, 7072, 8, 357, 1, 358, 1, 358, 1, 358, 4, 358, 7077, 8, 358, 11, 358, 12, 358, 7078, 3, 358, 7081, 8, 358, 1, 359, 1, 359, 3, 359, 7085, 8, 359, 1, 360, 1, 360, 1, 360, 5, 360, 7090, 8, 360, 10, 360, 12, 360, 7093, 9, 360, 1, 361, 1, 361, 1, 361, 3, 361, 7098, 8, 361, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 3, 362, 7109, 8, 362, 1, 363, 1, 363, 1, 363, 1, 363, 3, 363, 7115, 8, 363, 1, 364, 1, 364, 1, 365, 1, 365, 3, 365, 7121, 8, 365, 1, 366, 3, 366, 7124, 8, 366, 1, 366, 1, 366, 3, 366, 7128, 8, 366, 1, 366, 4, 366, 7131, 8, 366, 11, 366, 12, 366, 7132, 1, 366, 3, 366, 7136, 8, 366, 1, 366, 1, 366, 3, 366, 7140, 8, 366, 1, 366, 1, 366, 3, 366, 7144, 8, 366, 3, 366, 7146, 8, 366, 1, 367, 1, 367, 1, 368, 3, 368, 7151, 8, 368, 1, 368, 1, 368, 1, 369, 3, 369, 7156, 8, 369, 1, 369, 1, 369, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 3, 370, 7169, 8, 370, 1, 370, 3, 370, 7172, 8, 370, 1, 371, 1, 371, 3, 371, 7176, 8, 371, 1, 371, 3, 371, 7179, 8, 371, 1, 371, 3, 371, 7182, 8, 371, 1, 371, 1, 371, 1, 371, 3, 371, 7187, 8, 371, 1, 371, 1, 371, 1, 371, 3, 371, 7192, 8, 371, 1, 371, 1, 371, 1, 371, 1, 371, 3, 371, 7198, 8, 371, 1, 371, 3, 371, 7201, 8, 371, 1, 371, 1, 371, 1, 371, 3, 371, 7206, 8, 371, 1, 371, 3, 371, 7209, 8, 371, 1, 371, 1, 371, 1, 371, 3, 371, 7214, 8, 371, 1, 371, 3, 371, 7217, 8, 371, 1, 371, 1, 371, 3, 371, 7221, 8, 371, 1, 371, 5, 371, 7224, 8, 371, 10, 371, 12, 371, 7227, 9, 371, 1, 371, 1, 371, 3, 371, 7231, 8, 371, 1, 371, 5, 371, 7234, 8, 371, 10, 371, 12, 371, 7237, 9, 371, 1, 371, 1, 371, 3, 371, 7241, 8, 371, 1, 371, 3, 371, 7244, 8, 371, 1, 371, 5, 371, 7247, 8, 371, 10, 371, 12, 371, 7250, 9, 371, 1, 371, 1, 371, 3, 371, 7254, 8, 371, 1, 371, 5, 371, 7257, 8, 371, 10, 371, 12, 371, 7260, 9, 371, 1, 371, 1, 371, 1, 371, 3, 371, 7265, 8, 371, 1, 371, 1, 371, 1, 371, 3, 371, 7270, 8, 371, 1, 371, 1, 371, 1, 371, 3, 371, 7275, 8, 371, 1, 371, 1, 371, 1, 371, 3, 371, 7280, 8, 371, 1, 371, 1, 371, 3, 371, 7284, 8, 371, 1, 371, 3, 371, 7287, 8, 371, 1, 371, 1, 371, 1, 371, 3, 371, 7292, 8, 371, 1, 371, 1, 371, 3, 371, 7296, 8, 371, 1, 371, 1, 371, 3, 371, 7300, 8, 371, 1, 372, 1, 372, 1, 372, 1, 372, 5, 372, 7306, 8, 372, 10, 372, 12, 372, 7309, 9, 372, 1, 372, 1, 372, 1, 373, 1, 373, 3, 373, 7315, 8, 373, 1, 373, 1, 373, 3, 373, 7319, 8, 373, 1, 373, 1, 373, 1, 373, 3, 373, 7324, 8, 373, 1, 373, 1, 373, 1, 373, 3, 373, 7329, 8, 373, 1, 373, 1, 373, 3, 373, 7333, 8, 373, 3, 373, 7335, 8, 373, 1, 373, 3, 373, 7338, 8, 373, 1, 374, 1, 374, 1, 374, 1, 374, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 376, 1, 376, 1, 376, 1, 376, 3, 376, 7354, 8, 376, 1, 376, 1, 376, 1, 377, 1, 377, 1, 377, 1, 377, 5, 377, 7362, 8, 377, 10, 377, 12, 377, 7365, 9, 377, 1, 377, 1, 377, 1, 378, 1, 378, 1, 378, 5, 378, 7372, 8, 378, 10, 378, 12, 378, 7375, 9, 378, 1, 379, 1, 379, 1, 379, 1, 379, 5, 379, 7381, 8, 379, 10, 379, 12, 379, 7384, 9, 379, 1, 380, 1, 380, 1, 380, 1, 380, 5, 380, 7390, 8, 380, 10, 380, 12, 380, 7393, 9, 380, 1, 380, 1, 380, 1, 381, 1, 381, 3, 381, 7399, 8, 381, 1, 382, 1, 382, 1, 382, 5, 382, 7404, 8, 382, 10, 382, 12, 382, 7407, 9, 382, 1, 383, 1, 383, 1, 383, 5, 383, 7412, 8, 383, 10, 383, 12, 383, 7415, 9, 383, 1, 384, 1, 384, 1, 384, 5, 384, 7420, 8, 384, 10, 384, 12, 384, 7423, 9, 384, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 3, 385, 7434, 8, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 3, 385, 7441, 8, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 1, 385, 3, 385, 7451, 8, 385, 1, 386, 1, 386, 1, 386, 3, 386, 7456, 8, 386, 1, 386, 3, 386, 7459, 8, 386, 1, 386, 1, 386, 1, 386, 3, 386, 7464, 8, 386, 1, 386, 3, 386, 7467, 8, 386, 1, 387, 1, 387, 1, 387, 1, 388, 1, 388, 1, 388, 1, 388, 1, 389, 1, 389, 1, 389, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 3, 390, 7489, 8, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 1, 390, 3, 390, 7498, 8, 390, 1, 390, 3, 390, 7501, 8, 390, 1, 391, 1, 391, 1, 391, 3, 391, 7506, 8, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 4, 391, 7537, 8, 391, 11, 391, 12, 391, 7538, 1, 391, 1, 391, 3, 391, 7543, 8, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 4, 391, 7550, 8, 391, 11, 391, 12, 391, 7551, 1, 391, 1, 391, 3, 391, 7556, 8, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 3, 391, 7565, 8, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 3, 391, 7573, 8, 391, 1, 391, 1, 391, 1, 391, 3, 391, 7578, 8, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 3, 391, 7586, 8, 391, 1, 391, 1, 391, 1, 391, 3, 391, 7591, 8, 391, 1, 391, 1, 391, 1, 391, 3, 391, 7596, 8, 391, 3, 391, 7598, 8, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 3, 391, 7607, 8, 391, 1, 391, 1, 391, 1, 391, 3, 391, 7612, 8, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 3, 391, 7620, 8, 391, 1, 391, 1, 391, 1, 391, 3, 391, 7625, 8, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 3, 391, 7633, 8, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 3, 391, 7641, 8, 391, 1, 391, 3, 391, 7644, 8, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 3, 391, 7654, 8, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 1, 391, 3, 391, 7672, 8, 391, 1, 391, 3, 391, 7675, 8, 391, 1, 391, 3, 391, 7678, 8, 391, 1, 391, 1, 391, 3, 391, 7682, 8, 391, 1, 392, 1, 392, 1, 392, 1, 392, 1, 392, 1, 393, 1, 393, 1, 393, 1, 393, 5, 393, 7693, 8, 393, 10, 393, 12, 393, 7696, 9, 393, 1, 393, 1, 393, 1, 393, 1, 393, 1, 393, 3, 393, 7703, 8, 393, 1, 394, 1, 394, 3, 394, 7707, 8, 394, 1, 395, 1, 395, 1, 395, 3, 395, 7712, 8, 395, 1, 395, 1, 395, 1, 395, 3, 395, 7717, 8, 395, 1, 395, 1, 395, 1, 395, 1, 395, 3, 395, 7723, 8, 395, 1, 395, 1, 395, 1, 395, 3, 395, 7728, 8, 395, 1, 395, 1, 395, 3, 395, 7732, 8, 395, 1, 395, 1, 395, 1, 395, 3, 395, 7737, 8, 395, 1, 395, 1, 395, 1, 395, 3, 395, 7742, 8, 395, 1, 395, 1, 395, 1, 395, 3, 395, 7747, 8, 395, 1, 395, 1, 395, 1, 395, 1, 395, 1, 395, 1, 395, 5, 395, 7755, 8, 395, 10, 395, 12, 395, 7758, 9, 395, 3, 395, 7760, 8, 395, 1, 395, 1, 395, 3, 395, 7764, 8, 395, 1, 395, 1, 395, 3, 395, 7768, 8, 395, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 3, 396, 7775, 8, 396, 1, 396, 1, 396, 3, 396, 7779, 8, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 1, 396, 3, 396, 7808, 8, 396, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 1, 397, 3, 397, 7816, 8, 397, 1, 398, 3, 398, 7819, 8, 398, 1, 398, 3, 398, 7822, 8, 398, 1, 398, 3, 398, 7825, 8, 398, 1, 398, 3, 398, 7828, 8, 398, 1, 399, 1, 399, 1, 400, 1, 400, 1, 400, 1, 401, 1, 401, 1, 402, 1, 402, 3, 402, 7839, 8, 402, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 3, 404, 7853, 8, 404, 1, 405, 1, 405, 1, 405, 1, 405, 1, 405, 5, 405, 7860, 8, 405, 10, 405, 12, 405, 7863, 9, 405, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 1, 406, 3, 406, 7889, 8, 406, 1, 407, 1, 407, 1, 407, 1, 407, 1, 407, 1, 408, 1, 408, 1, 408, 5, 408, 7899, 8, 408, 10, 408, 12, 408, 7902, 9, 408, 1, 409, 1, 409, 1, 409, 3, 409, 7907, 8, 409, 1, 410, 1, 410, 1, 410, 1, 410, 1, 410, 1, 410, 3, 410, 7915, 8, 410, 1, 410, 1, 410, 1, 410, 3, 410, 7920, 8, 410, 1, 410, 1, 410, 1, 410, 1, 410, 5, 410, 7926, 8, 410, 10, 410, 12, 410, 7929, 9, 410, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 3, 411, 7936, 8, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 3, 411, 7949, 8, 411, 1, 411, 1, 411, 1, 411, 1, 411, 3, 411, 7955, 8, 411, 1, 411, 1, 411, 1, 411, 1, 411, 3, 411, 7961, 8, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 3, 411, 7976, 8, 411, 1, 411, 1, 411, 3, 411, 7980, 8, 411, 1, 411, 1, 411, 1, 411, 1, 411, 3, 411, 7986, 8, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 5, 411, 7995, 8, 411, 10, 411, 12, 411, 7998, 9, 411, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 5, 412, 8016, 8, 412, 10, 412, 12, 412, 8019, 9, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 4, 412, 8028, 8, 412, 11, 412, 12, 412, 8029, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 3, 412, 8048, 8, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 1, 412, 5, 412, 8065, 8, 412, 10, 412, 12, 412, 8068, 9, 412, 1, 413, 1, 413, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 1, 414, 3, 414, 8080, 8, 414, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 1, 415, 3, 415, 8089, 8, 415, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 1, 416, 3, 416, 8098, 8, 416, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 3, 417, 8107, 8, 417, 1, 418, 1, 418, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 3, 419, 8116, 8, 419, 1, 420, 1, 420, 1, 421, 1, 421, 1, 422, 1, 422, 1, 423, 1, 423, 1, 424, 1, 424, 1, 425, 1, 425, 1, 426, 1, 426, 1, 426, 0, 5, 214, 216, 820, 822, 824, 427, 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, 0, 160, 2, 0, 39, 39, 152, 152, 2, 0, 508, 508, 514, 514, 3, 0, 69, 69, 161, 161, 182, 182, 3, 0, 42, 42, 357, 357, 430, 430, 4, 0, 42, 42, 389, 389, 505, 505, 595, 595, 4, 0, 208, 208, 210, 210, 216, 216, 649, 649, 2, 0, 494, 494, 882, 882, 2, 0, 79, 79, 143, 143, 2, 0, 16, 16, 306, 306, 3, 0, 44, 44, 86, 86, 185, 185, 2, 0, 406, 406, 538, 538, 3, 0, 486, 486, 661, 661, 670, 670, 2, 0, 364, 364, 436, 436, 2, 0, 325, 325, 450, 450, 2, 0, 42, 42, 871, 872, 2, 0, 37, 37, 678, 678, 2, 0, 323, 323, 418, 418, 2, 0, 435, 435, 686, 686, 3, 0, 80, 80, 85, 85, 126, 126, 2, 0, 82, 82, 92, 92, 2, 0, 69, 69, 161, 161, 3, 0, 42, 42, 374, 374, 403, 403, 3, 0, 42, 42, 370, 370, 802, 802, 2, 0, 648, 648, 685, 685, 3, 0, 408, 408, 526, 526, 597, 597, 2, 0, 329, 329, 522, 522, 1, 0, 871, 872, 2, 0, 882, 882, 889, 889, 2, 0, 82, 82, 360, 360, 2, 0, 523, 523, 882, 882, 2, 0, 524, 524, 882, 882, 3, 0, 402, 402, 445, 445, 502, 502, 7, 0, 42, 42, 342, 342, 345, 345, 374, 374, 403, 403, 554, 554, 889, 889, 2, 0, 494, 494, 506, 506, 1, 0, 872, 873, 2, 0, 6, 6, 51, 51, 2, 0, 5, 5, 81, 81, 2, 0, 27, 27, 31, 31, 4, 0, 42, 42, 357, 357, 430, 430, 434, 434, 2, 0, 368, 368, 375, 375, 2, 0, 369, 369, 425, 425, 2, 0, 13, 13, 176, 176, 2, 0, 194, 194, 690, 690, 2, 0, 22, 22, 146, 146, 3, 0, 43, 43, 76, 76, 107, 107, 2, 0, 7, 7, 49, 49, 2, 0, 107, 107, 347, 347, 2, 0, 337, 337, 398, 398, 2, 0, 102, 102, 587, 587, 2, 0, 43, 43, 107, 107, 3, 0, 59, 59, 181, 181, 828, 828, 2, 0, 185, 185, 594, 594, 2, 0, 159, 159, 503, 503, 4, 0, 402, 402, 445, 445, 501, 501, 542, 542, 2, 0, 402, 402, 501, 501, 2, 0, 14, 14, 45, 45, 3, 0, 66, 66, 79, 79, 187, 187, 2, 0, 35, 35, 84, 84, 2, 0, 98, 98, 150, 150, 2, 0, 7, 7, 49, 50, 1, 0, 637, 638, 2, 0, 173, 173, 752, 752, 2, 0, 413, 413, 593, 593, 2, 0, 228, 228, 453, 453, 2, 0, 563, 563, 598, 598, 8, 0, 108, 108, 455, 455, 459, 460, 462, 462, 464, 464, 467, 476, 499, 499, 557, 557, 6, 0, 456, 458, 461, 461, 463, 463, 465, 465, 477, 477, 558, 558, 7, 0, 109, 109, 411, 411, 416, 416, 454, 454, 466, 466, 573, 573, 617, 617, 2, 0, 116, 116, 882, 882, 2, 0, 118, 119, 507, 507, 7, 0, 499, 499, 557, 557, 606, 609, 611, 611, 619, 619, 622, 628, 630, 632, 6, 0, 558, 558, 610, 610, 612, 612, 614, 616, 618, 618, 620, 620, 7, 0, 412, 412, 416, 416, 573, 573, 613, 613, 617, 617, 621, 621, 629, 629, 3, 0, 70, 70, 118, 119, 507, 507, 2, 0, 438, 438, 639, 639, 2, 0, 633, 633, 635, 635, 2, 0, 317, 317, 640, 640, 2, 0, 91, 91, 577, 577, 2, 0, 51, 51, 362, 362, 3, 0, 32, 32, 61, 61, 180, 180, 2, 0, 15, 15, 340, 340, 2, 0, 678, 678, 835, 835, 3, 0, 132, 132, 173, 173, 409, 409, 3, 0, 6, 6, 51, 51, 492, 492, 3, 0, 13, 13, 20, 20, 188, 188, 2, 0, 42, 42, 122, 122, 2, 0, 104, 104, 183, 183, 1, 0, 873, 874, 2, 0, 333, 333, 598, 598, 2, 0, 40, 40, 684, 684, 2, 0, 392, 392, 549, 549, 2, 0, 115, 115, 450, 450, 3, 0, 413, 413, 531, 531, 893, 894, 2, 0, 841, 841, 857, 857, 2, 0, 318, 318, 559, 559, 2, 0, 68, 68, 80, 80, 3, 0, 132, 132, 178, 178, 385, 385, 2, 0, 493, 493, 645, 645, 2, 0, 383, 383, 688, 688, 3, 0, 82, 82, 93, 93, 426, 426, 4, 0, 413, 413, 450, 450, 531, 532, 593, 593, 2, 0, 645, 645, 683, 683, 2, 0, 349, 349, 548, 548, 6, 0, 228, 228, 380, 380, 382, 382, 410, 410, 556, 556, 599, 599, 2, 0, 45, 46, 62, 62, 3, 0, 442, 442, 663, 663, 666, 666, 10, 0, 332, 332, 339, 339, 351, 353, 359, 359, 487, 487, 495, 495, 650, 650, 657, 657, 822, 822, 832, 832, 2, 0, 36, 36, 170, 170, 2, 0, 117, 117, 831, 831, 11, 0, 332, 332, 339, 339, 351, 353, 359, 359, 487, 487, 495, 495, 578, 578, 650, 650, 657, 657, 822, 822, 832, 832, 2, 0, 870, 870, 891, 892, 1, 0, 892, 893, 2, 0, 348, 348, 797, 808, 3, 0, 871, 874, 883, 883, 885, 885, 2, 0, 63, 63, 179, 179, 2, 0, 116, 116, 886, 886, 5, 0, 26, 26, 224, 226, 233, 233, 235, 238, 498, 498, 2, 0, 26, 26, 224, 224, 2, 0, 26, 26, 224, 225, 1, 0, 198, 209, 3, 0, 184, 184, 197, 197, 596, 596, 2, 0, 213, 218, 403, 403, 6, 0, 219, 219, 230, 230, 232, 232, 234, 234, 241, 241, 321, 322, 4, 0, 220, 223, 228, 229, 231, 231, 319, 319, 2, 0, 155, 155, 239, 239, 2, 0, 442, 442, 813, 821, 2, 0, 228, 228, 498, 498, 5, 0, 202, 202, 208, 208, 219, 220, 222, 222, 442, 442, 1, 0, 216, 217, 2, 0, 184, 184, 596, 596, 2, 0, 202, 202, 208, 208, 2, 0, 189, 189, 682, 682, 2, 0, 287, 288, 294, 294, 3, 0, 152, 152, 285, 288, 303, 303, 1, 0, 297, 298, 3, 0, 18, 18, 96, 96, 177, 177, 2, 0, 224, 224, 228, 228, 2, 0, 219, 220, 222, 222, 3, 0, 14, 14, 45, 45, 830, 830, 3, 0, 258, 258, 270, 271, 281, 281, 3, 0, 259, 261, 277, 280, 282, 284, 2, 0, 267, 267, 269, 269, 2, 0, 265, 265, 268, 268, 2, 0, 263, 264, 274, 276, 2, 0, 134, 134, 587, 587, 2, 0, 405, 405, 539, 539, 2, 0, 512, 512, 529, 529, 2, 0, 114, 114, 860, 860, 3, 0, 63, 63, 179, 179, 674, 674, 2, 0, 139, 139, 151, 151, 3, 0, 7, 7, 309, 309, 602, 602, 3, 0, 114, 114, 853, 854, 860, 861, 1, 0, 850, 856, 2, 0, 228, 228, 756, 796, 1, 0, 809, 812, 5, 0, 717, 718, 734, 736, 743, 743, 749, 750, 752, 752, 1, 0, 696, 703, 3, 0, 219, 223, 236, 236, 239, 239, 75, 0, 12, 12, 15, 15, 19, 19, 30, 30, 36, 37, 42, 42, 48, 48, 55, 55, 57, 57, 59, 59, 74, 74, 95, 95, 117, 117, 122, 122, 125, 125, 131, 131, 160, 160, 170, 170, 241, 241, 255, 262, 266, 266, 270, 271, 277, 284, 304, 309, 311, 329, 331, 343, 345, 376, 378, 393, 395, 400, 402, 404, 406, 410, 413, 415, 417, 426, 428, 428, 430, 434, 436, 454, 456, 463, 465, 473, 475, 476, 478, 498, 500, 506, 508, 510, 512, 522, 525, 530, 533, 538, 540, 542, 544, 554, 556, 562, 565, 572, 575, 575, 577, 605, 633, 647, 649, 665, 667, 674, 676, 685, 687, 688, 690, 695, 704, 704, 706, 707, 709, 712, 714, 716, 719, 721, 726, 727, 729, 733, 737, 738, 740, 742, 744, 744, 746, 748, 751, 751, 753, 755, 802, 802, 822, 822, 825, 825, 832, 833, 838, 838, 24, 0, 39, 39, 98, 98, 150, 150, 152, 152, 219, 221, 223, 223, 253, 254, 262, 265, 267, 269, 272, 276, 296, 296, 435, 435, 686, 686, 696, 703, 746, 746, 813, 813, 816, 821, 823, 824, 826, 827, 829, 831, 834, 834, 836, 836, 840, 840, 856, 856, 9501, 0, 857, 1, 0, 0, 0, 2, 867, 1, 0, 0, 0, 4, 876, 1, 0, 0, 0, 6, 878, 1, 0, 0, 0, 8, 920, 1, 0, 0, 0, 10, 939, 1, 0, 0, 0, 12, 950, 1, 0, 0, 0, 14, 966, 1, 0, 0, 0, 16, 971, 1, 0, 0, 0, 18, 983, 1, 0, 0, 0, 20, 1018, 1, 0, 0, 0, 22, 1028, 1, 0, 0, 0, 24, 1030, 1, 0, 0, 0, 26, 1042, 1, 0, 0, 0, 28, 1072, 1, 0, 0, 0, 30, 1108, 1, 0, 0, 0, 32, 1159, 1, 0, 0, 0, 34, 1188, 1, 0, 0, 0, 36, 1224, 1, 0, 0, 0, 38, 1238, 1, 0, 0, 0, 40, 1245, 1, 0, 0, 0, 42, 1342, 1, 0, 0, 0, 44, 1344, 1, 0, 0, 0, 46, 1381, 1, 0, 0, 0, 48, 1445, 1, 0, 0, 0, 50, 1470, 1, 0, 0, 0, 52, 1476, 1, 0, 0, 0, 54, 1498, 1, 0, 0, 0, 56, 1585, 1, 0, 0, 0, 58, 1592, 1, 0, 0, 0, 60, 1594, 1, 0, 0, 0, 62, 1599, 1, 0, 0, 0, 64, 1639, 1, 0, 0, 0, 66, 1645, 1, 0, 0, 0, 68, 1647, 1, 0, 0, 0, 70, 1668, 1, 0, 0, 0, 72, 1675, 1, 0, 0, 0, 74, 1677, 1, 0, 0, 0, 76, 1702, 1, 0, 0, 0, 78, 1705, 1, 0, 0, 0, 80, 1710, 1, 0, 0, 0, 82, 1736, 1, 0, 0, 0, 84, 1752, 1, 0, 0, 0, 86, 1754, 1, 0, 0, 0, 88, 1848, 1, 0, 0, 0, 90, 1851, 1, 0, 0, 0, 92, 1863, 1, 0, 0, 0, 94, 1867, 1, 0, 0, 0, 96, 1917, 1, 0, 0, 0, 98, 1919, 1, 0, 0, 0, 100, 1947, 1, 0, 0, 0, 102, 1957, 1, 0, 0, 0, 104, 2144, 1, 0, 0, 0, 106, 2146, 1, 0, 0, 0, 108, 2148, 1, 0, 0, 0, 110, 2151, 1, 0, 0, 0, 112, 2226, 1, 0, 0, 0, 114, 2249, 1, 0, 0, 0, 116, 2397, 1, 0, 0, 0, 118, 2402, 1, 0, 0, 0, 120, 2404, 1, 0, 0, 0, 122, 2414, 1, 0, 0, 0, 124, 2470, 1, 0, 0, 0, 126, 2490, 1, 0, 0, 0, 128, 2492, 1, 0, 0, 0, 130, 2527, 1, 0, 0, 0, 132, 2536, 1, 0, 0, 0, 134, 2543, 1, 0, 0, 0, 136, 2566, 1, 0, 0, 0, 138, 2575, 1, 0, 0, 0, 140, 2590, 1, 0, 0, 0, 142, 2612, 1, 0, 0, 0, 144, 2668, 1, 0, 0, 0, 146, 2964, 1, 0, 0, 0, 148, 3064, 1, 0, 0, 0, 150, 3066, 1, 0, 0, 0, 152, 3073, 1, 0, 0, 0, 154, 3080, 1, 0, 0, 0, 156, 3103, 1, 0, 0, 0, 158, 3113, 1, 0, 0, 0, 160, 3120, 1, 0, 0, 0, 162, 3127, 1, 0, 0, 0, 164, 3134, 1, 0, 0, 0, 166, 3143, 1, 0, 0, 0, 168, 3155, 1, 0, 0, 0, 170, 3168, 1, 0, 0, 0, 172, 3175, 1, 0, 0, 0, 174, 3191, 1, 0, 0, 0, 176, 3218, 1, 0, 0, 0, 178, 3220, 1, 0, 0, 0, 180, 3230, 1, 0, 0, 0, 182, 3234, 1, 0, 0, 0, 184, 3240, 1, 0, 0, 0, 186, 3252, 1, 0, 0, 0, 188, 3254, 1, 0, 0, 0, 190, 3261, 1, 0, 0, 0, 192, 3263, 1, 0, 0, 0, 194, 3312, 1, 0, 0, 0, 196, 3321, 1, 0, 0, 0, 198, 3323, 1, 0, 0, 0, 200, 3334, 1, 0, 0, 0, 202, 3340, 1, 0, 0, 0, 204, 3414, 1, 0, 0, 0, 206, 3477, 1, 0, 0, 0, 208, 3495, 1, 0, 0, 0, 210, 3579, 1, 0, 0, 0, 212, 3582, 1, 0, 0, 0, 214, 3594, 1, 0, 0, 0, 216, 3614, 1, 0, 0, 0, 218, 3642, 1, 0, 0, 0, 220, 3646, 1, 0, 0, 0, 222, 3648, 1, 0, 0, 0, 224, 3658, 1, 0, 0, 0, 226, 3678, 1, 0, 0, 0, 228, 3685, 1, 0, 0, 0, 230, 3687, 1, 0, 0, 0, 232, 3698, 1, 0, 0, 0, 234, 3707, 1, 0, 0, 0, 236, 3713, 1, 0, 0, 0, 238, 3736, 1, 0, 0, 0, 240, 3738, 1, 0, 0, 0, 242, 3774, 1, 0, 0, 0, 244, 3829, 1, 0, 0, 0, 246, 3838, 1, 0, 0, 0, 248, 3858, 1, 0, 0, 0, 250, 3870, 1, 0, 0, 0, 252, 3874, 1, 0, 0, 0, 254, 3885, 1, 0, 0, 0, 256, 3918, 1, 0, 0, 0, 258, 3939, 1, 0, 0, 0, 260, 3949, 1, 0, 0, 0, 262, 3953, 1, 0, 0, 0, 264, 3979, 1, 0, 0, 0, 266, 4020, 1, 0, 0, 0, 268, 4027, 1, 0, 0, 0, 270, 4029, 1, 0, 0, 0, 272, 4033, 1, 0, 0, 0, 274, 4050, 1, 0, 0, 0, 276, 4101, 1, 0, 0, 0, 278, 4113, 1, 0, 0, 0, 280, 4123, 1, 0, 0, 0, 282, 4125, 1, 0, 0, 0, 284, 4158, 1, 0, 0, 0, 286, 4166, 1, 0, 0, 0, 288, 4183, 1, 0, 0, 0, 290, 4199, 1, 0, 0, 0, 292, 4236, 1, 0, 0, 0, 294, 4242, 1, 0, 0, 0, 296, 4251, 1, 0, 0, 0, 298, 4264, 1, 0, 0, 0, 300, 4268, 1, 0, 0, 0, 302, 4297, 1, 0, 0, 0, 304, 4299, 1, 0, 0, 0, 306, 4303, 1, 0, 0, 0, 308, 4305, 1, 0, 0, 0, 310, 4313, 1, 0, 0, 0, 312, 4351, 1, 0, 0, 0, 314, 4365, 1, 0, 0, 0, 316, 4373, 1, 0, 0, 0, 318, 4377, 1, 0, 0, 0, 320, 4386, 1, 0, 0, 0, 322, 4400, 1, 0, 0, 0, 324, 4403, 1, 0, 0, 0, 326, 4421, 1, 0, 0, 0, 328, 4425, 1, 0, 0, 0, 330, 4441, 1, 0, 0, 0, 332, 4443, 1, 0, 0, 0, 334, 4455, 1, 0, 0, 0, 336, 4459, 1, 0, 0, 0, 338, 4476, 1, 0, 0, 0, 340, 4493, 1, 0, 0, 0, 342, 4496, 1, 0, 0, 0, 344, 4506, 1, 0, 0, 0, 346, 4510, 1, 0, 0, 0, 348, 4520, 1, 0, 0, 0, 350, 4523, 1, 0, 0, 0, 352, 4528, 1, 0, 0, 0, 354, 4548, 1, 0, 0, 0, 356, 4550, 1, 0, 0, 0, 358, 4567, 1, 0, 0, 0, 360, 4576, 1, 0, 0, 0, 362, 4585, 1, 0, 0, 0, 364, 4587, 1, 0, 0, 0, 366, 4601, 1, 0, 0, 0, 368, 4615, 1, 0, 0, 0, 370, 4630, 1, 0, 0, 0, 372, 4639, 1, 0, 0, 0, 374, 4664, 1, 0, 0, 0, 376, 4679, 1, 0, 0, 0, 378, 4698, 1, 0, 0, 0, 380, 4728, 1, 0, 0, 0, 382, 4730, 1, 0, 0, 0, 384, 4732, 1, 0, 0, 0, 386, 4734, 1, 0, 0, 0, 388, 4749, 1, 0, 0, 0, 390, 4778, 1, 0, 0, 0, 392, 4780, 1, 0, 0, 0, 394, 4782, 1, 0, 0, 0, 396, 4784, 1, 0, 0, 0, 398, 4799, 1, 0, 0, 0, 400, 4801, 1, 0, 0, 0, 402, 4868, 1, 0, 0, 0, 404, 4870, 1, 0, 0, 0, 406, 4876, 1, 0, 0, 0, 408, 4903, 1, 0, 0, 0, 410, 4917, 1, 0, 0, 0, 412, 4928, 1, 0, 0, 0, 414, 4930, 1, 0, 0, 0, 416, 4936, 1, 0, 0, 0, 418, 4946, 1, 0, 0, 0, 420, 4950, 1, 0, 0, 0, 422, 4957, 1, 0, 0, 0, 424, 4961, 1, 0, 0, 0, 426, 4967, 1, 0, 0, 0, 428, 4974, 1, 0, 0, 0, 430, 4980, 1, 0, 0, 0, 432, 4986, 1, 0, 0, 0, 434, 4991, 1, 0, 0, 0, 436, 5036, 1, 0, 0, 0, 438, 5057, 1, 0, 0, 0, 440, 5082, 1, 0, 0, 0, 442, 5085, 1, 0, 0, 0, 444, 5091, 1, 0, 0, 0, 446, 5107, 1, 0, 0, 0, 448, 5122, 1, 0, 0, 0, 450, 5128, 1, 0, 0, 0, 452, 5158, 1, 0, 0, 0, 454, 5160, 1, 0, 0, 0, 456, 5167, 1, 0, 0, 0, 458, 5179, 1, 0, 0, 0, 460, 5185, 1, 0, 0, 0, 462, 5210, 1, 0, 0, 0, 464, 5214, 1, 0, 0, 0, 466, 5218, 1, 0, 0, 0, 468, 5229, 1, 0, 0, 0, 470, 5237, 1, 0, 0, 0, 472, 5300, 1, 0, 0, 0, 474, 5359, 1, 0, 0, 0, 476, 5461, 1, 0, 0, 0, 478, 5471, 1, 0, 0, 0, 480, 5473, 1, 0, 0, 0, 482, 5491, 1, 0, 0, 0, 484, 5515, 1, 0, 0, 0, 486, 5539, 1, 0, 0, 0, 488, 5546, 1, 0, 0, 0, 490, 5566, 1, 0, 0, 0, 492, 5575, 1, 0, 0, 0, 494, 5637, 1, 0, 0, 0, 496, 5639, 1, 0, 0, 0, 498, 5643, 1, 0, 0, 0, 500, 5677, 1, 0, 0, 0, 502, 5679, 1, 0, 0, 0, 504, 5682, 1, 0, 0, 0, 506, 5746, 1, 0, 0, 0, 508, 5765, 1, 0, 0, 0, 510, 5792, 1, 0, 0, 0, 512, 5796, 1, 0, 0, 0, 514, 5817, 1, 0, 0, 0, 516, 5827, 1, 0, 0, 0, 518, 5837, 1, 0, 0, 0, 520, 5877, 1, 0, 0, 0, 522, 5879, 1, 0, 0, 0, 524, 5882, 1, 0, 0, 0, 526, 5912, 1, 0, 0, 0, 528, 5914, 1, 0, 0, 0, 530, 5917, 1, 0, 0, 0, 532, 6017, 1, 0, 0, 0, 534, 6035, 1, 0, 0, 0, 536, 6037, 1, 0, 0, 0, 538, 6089, 1, 0, 0, 0, 540, 6091, 1, 0, 0, 0, 542, 6100, 1, 0, 0, 0, 544, 6106, 1, 0, 0, 0, 546, 6113, 1, 0, 0, 0, 548, 6128, 1, 0, 0, 0, 550, 6137, 1, 0, 0, 0, 552, 6139, 1, 0, 0, 0, 554, 6160, 1, 0, 0, 0, 556, 6165, 1, 0, 0, 0, 558, 6175, 1, 0, 0, 0, 560, 6181, 1, 0, 0, 0, 562, 6215, 1, 0, 0, 0, 564, 6269, 1, 0, 0, 0, 566, 6455, 1, 0, 0, 0, 568, 6467, 1, 0, 0, 0, 570, 6483, 1, 0, 0, 0, 572, 6489, 1, 0, 0, 0, 574, 6508, 1, 0, 0, 0, 576, 6521, 1, 0, 0, 0, 578, 6535, 1, 0, 0, 0, 580, 6537, 1, 0, 0, 0, 582, 6540, 1, 0, 0, 0, 584, 6564, 1, 0, 0, 0, 586, 6576, 1, 0, 0, 0, 588, 6582, 1, 0, 0, 0, 590, 6594, 1, 0, 0, 0, 592, 6608, 1, 0, 0, 0, 594, 6610, 1, 0, 0, 0, 596, 6618, 1, 0, 0, 0, 598, 6626, 1, 0, 0, 0, 600, 6628, 1, 0, 0, 0, 602, 6630, 1, 0, 0, 0, 604, 6670, 1, 0, 0, 0, 606, 6677, 1, 0, 0, 0, 608, 6679, 1, 0, 0, 0, 610, 6702, 1, 0, 0, 0, 612, 6708, 1, 0, 0, 0, 614, 6718, 1, 0, 0, 0, 616, 6727, 1, 0, 0, 0, 618, 6730, 1, 0, 0, 0, 620, 6733, 1, 0, 0, 0, 622, 6754, 1, 0, 0, 0, 624, 6775, 1, 0, 0, 0, 626, 6783, 1, 0, 0, 0, 628, 6795, 1, 0, 0, 0, 630, 6803, 1, 0, 0, 0, 632, 6841, 1, 0, 0, 0, 634, 6853, 1, 0, 0, 0, 636, 6855, 1, 0, 0, 0, 638, 6857, 1, 0, 0, 0, 640, 6859, 1, 0, 0, 0, 642, 6861, 1, 0, 0, 0, 644, 6863, 1, 0, 0, 0, 646, 6865, 1, 0, 0, 0, 648, 6867, 1, 0, 0, 0, 650, 6869, 1, 0, 0, 0, 652, 6877, 1, 0, 0, 0, 654, 6879, 1, 0, 0, 0, 656, 6881, 1, 0, 0, 0, 658, 6883, 1, 0, 0, 0, 660, 6885, 1, 0, 0, 0, 662, 6893, 1, 0, 0, 0, 664, 6895, 1, 0, 0, 0, 666, 6905, 1, 0, 0, 0, 668, 6921, 1, 0, 0, 0, 670, 6923, 1, 0, 0, 0, 672, 6931, 1, 0, 0, 0, 674, 6949, 1, 0, 0, 0, 676, 6965, 1, 0, 0, 0, 678, 6976, 1, 0, 0, 0, 680, 6978, 1, 0, 0, 0, 682, 6980, 1, 0, 0, 0, 684, 6982, 1, 0, 0, 0, 686, 6984, 1, 0, 0, 0, 688, 6992, 1, 0, 0, 0, 690, 7002, 1, 0, 0, 0, 692, 7007, 1, 0, 0, 0, 694, 7011, 1, 0, 0, 0, 696, 7018, 1, 0, 0, 0, 698, 7020, 1, 0, 0, 0, 700, 7027, 1, 0, 0, 0, 702, 7029, 1, 0, 0, 0, 704, 7035, 1, 0, 0, 0, 706, 7037, 1, 0, 0, 0, 708, 7042, 1, 0, 0, 0, 710, 7044, 1, 0, 0, 0, 712, 7046, 1, 0, 0, 0, 714, 7064, 1, 0, 0, 0, 716, 7080, 1, 0, 0, 0, 718, 7082, 1, 0, 0, 0, 720, 7086, 1, 0, 0, 0, 722, 7097, 1, 0, 0, 0, 724, 7108, 1, 0, 0, 0, 726, 7114, 1, 0, 0, 0, 728, 7116, 1, 0, 0, 0, 730, 7120, 1, 0, 0, 0, 732, 7145, 1, 0, 0, 0, 734, 7147, 1, 0, 0, 0, 736, 7150, 1, 0, 0, 0, 738, 7155, 1, 0, 0, 0, 740, 7171, 1, 0, 0, 0, 742, 7299, 1, 0, 0, 0, 744, 7301, 1, 0, 0, 0, 746, 7334, 1, 0, 0, 0, 748, 7339, 1, 0, 0, 0, 750, 7343, 1, 0, 0, 0, 752, 7349, 1, 0, 0, 0, 754, 7357, 1, 0, 0, 0, 756, 7368, 1, 0, 0, 0, 758, 7376, 1, 0, 0, 0, 760, 7385, 1, 0, 0, 0, 762, 7398, 1, 0, 0, 0, 764, 7400, 1, 0, 0, 0, 766, 7408, 1, 0, 0, 0, 768, 7416, 1, 0, 0, 0, 770, 7450, 1, 0, 0, 0, 772, 7466, 1, 0, 0, 0, 774, 7468, 1, 0, 0, 0, 776, 7471, 1, 0, 0, 0, 778, 7475, 1, 0, 0, 0, 780, 7500, 1, 0, 0, 0, 782, 7681, 1, 0, 0, 0, 784, 7683, 1, 0, 0, 0, 786, 7702, 1, 0, 0, 0, 788, 7704, 1, 0, 0, 0, 790, 7767, 1, 0, 0, 0, 792, 7807, 1, 0, 0, 0, 794, 7809, 1, 0, 0, 0, 796, 7818, 1, 0, 0, 0, 798, 7829, 1, 0, 0, 0, 800, 7831, 1, 0, 0, 0, 802, 7834, 1, 0, 0, 0, 804, 7838, 1, 0, 0, 0, 806, 7840, 1, 0, 0, 0, 808, 7852, 1, 0, 0, 0, 810, 7854, 1, 0, 0, 0, 812, 7888, 1, 0, 0, 0, 814, 7890, 1, 0, 0, 0, 816, 7895, 1, 0, 0, 0, 818, 7906, 1, 0, 0, 0, 820, 7919, 1, 0, 0, 0, 822, 7930, 1, 0, 0, 0, 824, 8047, 1, 0, 0, 0, 826, 8069, 1, 0, 0, 0, 828, 8079, 1, 0, 0, 0, 830, 8088, 1, 0, 0, 0, 832, 8097, 1, 0, 0, 0, 834, 8106, 1, 0, 0, 0, 836, 8108, 1, 0, 0, 0, 838, 8115, 1, 0, 0, 0, 840, 8117, 1, 0, 0, 0, 842, 8119, 1, 0, 0, 0, 844, 8121, 1, 0, 0, 0, 846, 8123, 1, 0, 0, 0, 848, 8125, 1, 0, 0, 0, 850, 8127, 1, 0, 0, 0, 852, 8129, 1, 0, 0, 0, 854, 856, 3, 2, 1, 0, 855, 854, 1, 0, 0, 0, 856, 859, 1, 0, 0, 0, 857, 855, 1, 0, 0, 0, 857, 858, 1, 0, 0, 0, 858, 860, 1, 0, 0, 0, 859, 857, 1, 0, 0, 0, 860, 861, 5, 0, 0, 1, 861, 1, 1, 0, 0, 0, 862, 864, 3, 4, 2, 0, 863, 865, 5, 869, 0, 0, 864, 863, 1, 0, 0, 0, 864, 865, 1, 0, 0, 0, 865, 868, 1, 0, 0, 0, 866, 868, 3, 6, 3, 0, 867, 862, 1, 0, 0, 0, 867, 866, 1, 0, 0, 0, 868, 3, 1, 0, 0, 0, 869, 877, 3, 8, 4, 0, 870, 877, 3, 10, 5, 0, 871, 877, 3, 12, 6, 0, 872, 877, 3, 14, 7, 0, 873, 877, 3, 16, 8, 0, 874, 877, 3, 20, 10, 0, 875, 877, 3, 22, 11, 0, 876, 869, 1, 0, 0, 0, 876, 870, 1, 0, 0, 0, 876, 871, 1, 0, 0, 0, 876, 872, 1, 0, 0, 0, 876, 873, 1, 0, 0, 0, 876, 874, 1, 0, 0, 0, 876, 875, 1, 0, 0, 0, 877, 5, 1, 0, 0, 0, 878, 879, 5, 869, 0, 0, 879, 7, 1, 0, 0, 0, 880, 921, 3, 24, 12, 0, 881, 921, 3, 26, 13, 0, 882, 921, 3, 28, 14, 0, 883, 921, 3, 30, 15, 0, 884, 921, 3, 32, 16, 0, 885, 921, 3, 34, 17, 0, 886, 921, 3, 36, 18, 0, 887, 921, 3, 40, 20, 0, 888, 921, 3, 42, 21, 0, 889, 921, 3, 44, 22, 0, 890, 921, 3, 46, 23, 0, 891, 921, 3, 48, 24, 0, 892, 921, 3, 54, 27, 0, 893, 921, 3, 38, 19, 0, 894, 921, 3, 126, 63, 0, 895, 921, 3, 128, 64, 0, 896, 921, 3, 130, 65, 0, 897, 921, 3, 132, 66, 0, 898, 921, 3, 134, 67, 0, 899, 921, 3, 136, 68, 0, 900, 921, 3, 138, 69, 0, 901, 921, 3, 140, 70, 0, 902, 921, 3, 142, 71, 0, 903, 921, 3, 144, 72, 0, 904, 921, 3, 150, 75, 0, 905, 921, 3, 152, 76, 0, 906, 921, 3, 154, 77, 0, 907, 921, 3, 156, 78, 0, 908, 921, 3, 158, 79, 0, 909, 921, 3, 160, 80, 0, 910, 921, 3, 162, 81, 0, 911, 921, 3, 164, 82, 0, 912, 921, 3, 166, 83, 0, 913, 921, 3, 168, 84, 0, 914, 921, 3, 170, 85, 0, 915, 921, 3, 172, 86, 0, 916, 921, 3, 174, 87, 0, 917, 921, 3, 176, 88, 0, 918, 921, 3, 178, 89, 0, 919, 921, 3, 182, 91, 0, 920, 880, 1, 0, 0, 0, 920, 881, 1, 0, 0, 0, 920, 882, 1, 0, 0, 0, 920, 883, 1, 0, 0, 0, 920, 884, 1, 0, 0, 0, 920, 885, 1, 0, 0, 0, 920, 886, 1, 0, 0, 0, 920, 887, 1, 0, 0, 0, 920, 888, 1, 0, 0, 0, 920, 889, 1, 0, 0, 0, 920, 890, 1, 0, 0, 0, 920, 891, 1, 0, 0, 0, 920, 892, 1, 0, 0, 0, 920, 893, 1, 0, 0, 0, 920, 894, 1, 0, 0, 0, 920, 895, 1, 0, 0, 0, 920, 896, 1, 0, 0, 0, 920, 897, 1, 0, 0, 0, 920, 898, 1, 0, 0, 0, 920, 899, 1, 0, 0, 0, 920, 900, 1, 0, 0, 0, 920, 901, 1, 0, 0, 0, 920, 902, 1, 0, 0, 0, 920, 903, 1, 0, 0, 0, 920, 904, 1, 0, 0, 0, 920, 905, 1, 0, 0, 0, 920, 906, 1, 0, 0, 0, 920, 907, 1, 0, 0, 0, 920, 908, 1, 0, 0, 0, 920, 909, 1, 0, 0, 0, 920, 910, 1, 0, 0, 0, 920, 911, 1, 0, 0, 0, 920, 912, 1, 0, 0, 0, 920, 913, 1, 0, 0, 0, 920, 914, 1, 0, 0, 0, 920, 915, 1, 0, 0, 0, 920, 916, 1, 0, 0, 0, 920, 917, 1, 0, 0, 0, 920, 918, 1, 0, 0, 0, 920, 919, 1, 0, 0, 0, 921, 9, 1, 0, 0, 0, 922, 940, 3, 210, 105, 0, 923, 940, 3, 212, 106, 0, 924, 940, 3, 192, 96, 0, 925, 940, 3, 220, 110, 0, 926, 940, 3, 186, 93, 0, 927, 940, 3, 208, 104, 0, 928, 940, 3, 184, 92, 0, 929, 940, 3, 198, 99, 0, 930, 940, 3, 202, 101, 0, 931, 940, 3, 204, 102, 0, 932, 940, 3, 206, 103, 0, 933, 940, 3, 188, 94, 0, 934, 940, 3, 190, 95, 0, 935, 940, 3, 252, 126, 0, 936, 940, 3, 222, 111, 0, 937, 940, 3, 626, 313, 0, 938, 940, 3, 628, 314, 0, 939, 922, 1, 0, 0, 0, 939, 923, 1, 0, 0, 0, 939, 924, 1, 0, 0, 0, 939, 925, 1, 0, 0, 0, 939, 926, 1, 0, 0, 0, 939, 927, 1, 0, 0, 0, 939, 928, 1, 0, 0, 0, 939, 929, 1, 0, 0, 0, 939, 930, 1, 0, 0, 0, 939, 931, 1, 0, 0, 0, 939, 932, 1, 0, 0, 0, 939, 933, 1, 0, 0, 0, 939, 934, 1, 0, 0, 0, 939, 935, 1, 0, 0, 0, 939, 936, 1, 0, 0, 0, 939, 937, 1, 0, 0, 0, 939, 938, 1, 0, 0, 0, 940, 11, 1, 0, 0, 0, 941, 951, 3, 332, 166, 0, 942, 951, 3, 334, 167, 0, 943, 951, 3, 336, 168, 0, 944, 951, 3, 338, 169, 0, 945, 951, 3, 340, 170, 0, 946, 951, 3, 342, 171, 0, 947, 951, 3, 344, 172, 0, 948, 951, 3, 346, 173, 0, 949, 951, 3, 348, 174, 0, 950, 941, 1, 0, 0, 0, 950, 942, 1, 0, 0, 0, 950, 943, 1, 0, 0, 0, 950, 944, 1, 0, 0, 0, 950, 945, 1, 0, 0, 0, 950, 946, 1, 0, 0, 0, 950, 947, 1, 0, 0, 0, 950, 948, 1, 0, 0, 0, 950, 949, 1, 0, 0, 0, 951, 13, 1, 0, 0, 0, 952, 967, 3, 364, 182, 0, 953, 967, 3, 366, 183, 0, 954, 967, 3, 368, 184, 0, 955, 967, 3, 370, 185, 0, 956, 967, 3, 372, 186, 0, 957, 967, 3, 374, 187, 0, 958, 967, 3, 376, 188, 0, 959, 967, 3, 378, 189, 0, 960, 967, 3, 414, 207, 0, 961, 967, 3, 416, 208, 0, 962, 967, 3, 418, 209, 0, 963, 967, 3, 420, 210, 0, 964, 967, 3, 422, 211, 0, 965, 967, 3, 424, 212, 0, 966, 952, 1, 0, 0, 0, 966, 953, 1, 0, 0, 0, 966, 954, 1, 0, 0, 0, 966, 955, 1, 0, 0, 0, 966, 956, 1, 0, 0, 0, 966, 957, 1, 0, 0, 0, 966, 958, 1, 0, 0, 0, 966, 959, 1, 0, 0, 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, 15, 1, 0, 0, 0, 968, 972, 3, 426, 213, 0, 969, 972, 3, 428, 214, 0, 970, 972, 3, 430, 215, 0, 971, 968, 1, 0, 0, 0, 971, 969, 1, 0, 0, 0, 971, 970, 1, 0, 0, 0, 972, 17, 1, 0, 0, 0, 973, 984, 3, 434, 217, 0, 974, 984, 3, 436, 218, 0, 975, 984, 3, 438, 219, 0, 976, 984, 3, 442, 221, 0, 977, 984, 3, 444, 222, 0, 978, 984, 3, 446, 223, 0, 979, 984, 3, 450, 225, 0, 980, 984, 3, 440, 220, 0, 981, 984, 3, 448, 224, 0, 982, 984, 3, 452, 226, 0, 983, 973, 1, 0, 0, 0, 983, 974, 1, 0, 0, 0, 983, 975, 1, 0, 0, 0, 983, 976, 1, 0, 0, 0, 983, 977, 1, 0, 0, 0, 983, 978, 1, 0, 0, 0, 983, 979, 1, 0, 0, 0, 983, 980, 1, 0, 0, 0, 983, 981, 1, 0, 0, 0, 983, 982, 1, 0, 0, 0, 984, 19, 1, 0, 0, 0, 985, 1019, 3, 470, 235, 0, 986, 1019, 3, 472, 236, 0, 987, 1019, 3, 474, 237, 0, 988, 1019, 3, 476, 238, 0, 989, 1019, 3, 480, 240, 0, 990, 1019, 3, 492, 246, 0, 991, 1019, 3, 494, 247, 0, 992, 1019, 3, 482, 241, 0, 993, 1019, 3, 484, 242, 0, 994, 1019, 3, 486, 243, 0, 995, 1019, 3, 488, 244, 0, 996, 1019, 3, 538, 269, 0, 997, 1019, 3, 540, 270, 0, 998, 1019, 3, 542, 271, 0, 999, 1019, 3, 544, 272, 0, 1000, 1019, 3, 546, 273, 0, 1001, 1019, 3, 552, 276, 0, 1002, 1019, 3, 556, 278, 0, 1003, 1019, 3, 558, 279, 0, 1004, 1019, 3, 560, 280, 0, 1005, 1019, 3, 562, 281, 0, 1006, 1019, 3, 564, 282, 0, 1007, 1019, 3, 566, 283, 0, 1008, 1019, 3, 580, 290, 0, 1009, 1019, 3, 582, 291, 0, 1010, 1019, 3, 584, 292, 0, 1011, 1019, 3, 586, 293, 0, 1012, 1019, 3, 588, 294, 0, 1013, 1019, 3, 590, 295, 0, 1014, 1019, 3, 594, 297, 0, 1015, 1019, 3, 596, 298, 0, 1016, 1019, 3, 598, 299, 0, 1017, 1019, 3, 600, 300, 0, 1018, 985, 1, 0, 0, 0, 1018, 986, 1, 0, 0, 0, 1018, 987, 1, 0, 0, 0, 1018, 988, 1, 0, 0, 0, 1018, 989, 1, 0, 0, 0, 1018, 990, 1, 0, 0, 0, 1018, 991, 1, 0, 0, 0, 1018, 992, 1, 0, 0, 0, 1018, 993, 1, 0, 0, 0, 1018, 994, 1, 0, 0, 0, 1018, 995, 1, 0, 0, 0, 1018, 996, 1, 0, 0, 0, 1018, 997, 1, 0, 0, 0, 1018, 998, 1, 0, 0, 0, 1018, 999, 1, 0, 0, 0, 1018, 1000, 1, 0, 0, 0, 1018, 1001, 1, 0, 0, 0, 1018, 1002, 1, 0, 0, 0, 1018, 1003, 1, 0, 0, 0, 1018, 1004, 1, 0, 0, 0, 1018, 1005, 1, 0, 0, 0, 1018, 1006, 1, 0, 0, 0, 1018, 1007, 1, 0, 0, 0, 1018, 1008, 1, 0, 0, 0, 1018, 1009, 1, 0, 0, 0, 1018, 1010, 1, 0, 0, 0, 1018, 1011, 1, 0, 0, 0, 1018, 1012, 1, 0, 0, 0, 1018, 1013, 1, 0, 0, 0, 1018, 1014, 1, 0, 0, 0, 1018, 1015, 1, 0, 0, 0, 1018, 1016, 1, 0, 0, 0, 1018, 1017, 1, 0, 0, 0, 1019, 21, 1, 0, 0, 0, 1020, 1029, 3, 612, 306, 0, 1021, 1029, 3, 610, 305, 0, 1022, 1029, 3, 614, 307, 0, 1023, 1029, 3, 616, 308, 0, 1024, 1029, 3, 618, 309, 0, 1025, 1029, 3, 620, 310, 0, 1026, 1029, 3, 622, 311, 0, 1027, 1029, 3, 630, 315, 0, 1028, 1020, 1, 0, 0, 0, 1028, 1021, 1, 0, 0, 0, 1028, 1022, 1, 0, 0, 0, 1028, 1023, 1, 0, 0, 0, 1028, 1024, 1, 0, 0, 0, 1028, 1025, 1, 0, 0, 0, 1028, 1026, 1, 0, 0, 0, 1028, 1027, 1, 0, 0, 0, 1029, 23, 1, 0, 0, 0, 1030, 1031, 5, 34, 0, 0, 1031, 1033, 7, 0, 0, 0, 1032, 1034, 3, 776, 388, 0, 1033, 1032, 1, 0, 0, 0, 1033, 1034, 1, 0, 0, 0, 1034, 1035, 1, 0, 0, 0, 1035, 1039, 3, 636, 318, 0, 1036, 1038, 3, 56, 28, 0, 1037, 1036, 1, 0, 0, 0, 1038, 1041, 1, 0, 0, 0, 1039, 1037, 1, 0, 0, 0, 1039, 1040, 1, 0, 0, 0, 1040, 25, 1, 0, 0, 0, 1041, 1039, 1, 0, 0, 0, 1042, 1044, 5, 34, 0, 0, 1043, 1045, 3, 62, 31, 0, 1044, 1043, 1, 0, 0, 0, 1044, 1045, 1, 0, 0, 0, 1045, 1046, 1, 0, 0, 0, 1046, 1048, 5, 385, 0, 0, 1047, 1049, 3, 776, 388, 0, 1048, 1047, 1, 0, 0, 0, 1048, 1049, 1, 0, 0, 0, 1049, 1050, 1, 0, 0, 0, 1050, 1051, 3, 718, 359, 0, 1051, 1052, 5, 119, 0, 0, 1052, 1053, 5, 590, 0, 0, 1053, 1060, 3, 64, 32, 0, 1054, 1055, 5, 119, 0, 0, 1055, 1057, 5, 343, 0, 0, 1056, 1058, 5, 114, 0, 0, 1057, 1056, 1, 0, 0, 0, 1057, 1058, 1, 0, 0, 0, 1058, 1059, 1, 0, 0, 0, 1059, 1061, 5, 541, 0, 0, 1060, 1054, 1, 0, 0, 0, 1060, 1061, 1, 0, 0, 0, 1061, 1063, 1, 0, 0, 0, 1062, 1064, 3, 72, 36, 0, 1063, 1062, 1, 0, 0, 0, 1063, 1064, 1, 0, 0, 0, 1064, 1067, 1, 0, 0, 0, 1065, 1066, 5, 340, 0, 0, 1066, 1068, 5, 882, 0, 0, 1067, 1065, 1, 0, 0, 0, 1067, 1068, 1, 0, 0, 0, 1068, 1069, 1, 0, 0, 0, 1069, 1070, 5, 371, 0, 0, 1070, 1071, 3, 432, 216, 0, 1071, 27, 1, 0, 0, 0, 1072, 1074, 5, 34, 0, 0, 1073, 1075, 7, 1, 0, 0, 1074, 1073, 1, 0, 0, 0, 1074, 1075, 1, 0, 0, 0, 1075, 1077, 1, 0, 0, 0, 1076, 1078, 7, 2, 0, 0, 1077, 1076, 1, 0, 0, 0, 1077, 1078, 1, 0, 0, 0, 1078, 1079, 1, 0, 0, 0, 1079, 1080, 5, 82, 0, 0, 1080, 1082, 3, 648, 324, 0, 1081, 1083, 3, 74, 37, 0, 1082, 1081, 1, 0, 0, 0, 1082, 1083, 1, 0, 0, 0, 1083, 1084, 1, 0, 0, 0, 1084, 1085, 5, 119, 0, 0, 1085, 1086, 3, 662, 331, 0, 1086, 1090, 3, 754, 377, 0, 1087, 1089, 3, 76, 38, 0, 1088, 1087, 1, 0, 0, 0, 1089, 1092, 1, 0, 0, 0, 1090, 1088, 1, 0, 0, 0, 1090, 1091, 1, 0, 0, 0, 1091, 1105, 1, 0, 0, 0, 1092, 1090, 1, 0, 0, 0, 1093, 1095, 5, 308, 0, 0, 1094, 1096, 5, 857, 0, 0, 1095, 1094, 1, 0, 0, 0, 1095, 1096, 1, 0, 0, 0, 1096, 1097, 1, 0, 0, 0, 1097, 1104, 7, 3, 0, 0, 1098, 1100, 5, 104, 0, 0, 1099, 1101, 5, 857, 0, 0, 1100, 1099, 1, 0, 0, 0, 1100, 1101, 1, 0, 0, 0, 1101, 1102, 1, 0, 0, 0, 1102, 1104, 7, 4, 0, 0, 1103, 1093, 1, 0, 0, 0, 1103, 1098, 1, 0, 0, 0, 1104, 1107, 1, 0, 0, 0, 1105, 1103, 1, 0, 0, 0, 1105, 1106, 1, 0, 0, 0, 1106, 29, 1, 0, 0, 0, 1107, 1105, 1, 0, 0, 0, 1108, 1109, 5, 34, 0, 0, 1109, 1110, 5, 451, 0, 0, 1110, 1111, 5, 74, 0, 0, 1111, 1112, 3, 722, 361, 0, 1112, 1113, 5, 6, 0, 0, 1113, 1114, 5, 671, 0, 0, 1114, 1120, 5, 882, 0, 0, 1115, 1117, 5, 428, 0, 0, 1116, 1118, 5, 857, 0, 0, 1117, 1116, 1, 0, 0, 0, 1117, 1118, 1, 0, 0, 0, 1118, 1119, 1, 0, 0, 0, 1119, 1121, 3, 730, 365, 0, 1120, 1115, 1, 0, 0, 0, 1120, 1121, 1, 0, 0, 0, 1121, 1127, 1, 0, 0, 0, 1122, 1124, 5, 672, 0, 0, 1123, 1125, 5, 857, 0, 0, 1124, 1123, 1, 0, 0, 0, 1124, 1125, 1, 0, 0, 0, 1125, 1126, 1, 0, 0, 0, 1126, 1128, 3, 730, 365, 0, 1127, 1122, 1, 0, 0, 0, 1127, 1128, 1, 0, 0, 0, 1128, 1134, 1, 0, 0, 0, 1129, 1131, 5, 553, 0, 0, 1130, 1132, 5, 857, 0, 0, 1131, 1130, 1, 0, 0, 0, 1131, 1132, 1, 0, 0, 0, 1132, 1133, 1, 0, 0, 0, 1133, 1135, 3, 730, 365, 0, 1134, 1129, 1, 0, 0, 0, 1134, 1135, 1, 0, 0, 0, 1135, 1141, 1, 0, 0, 0, 1136, 1138, 5, 504, 0, 0, 1137, 1139, 5, 857, 0, 0, 1138, 1137, 1, 0, 0, 0, 1138, 1139, 1, 0, 0, 0, 1139, 1140, 1, 0, 0, 0, 1140, 1142, 3, 722, 361, 0, 1141, 1136, 1, 0, 0, 0, 1141, 1142, 1, 0, 0, 0, 1142, 1144, 1, 0, 0, 0, 1143, 1145, 5, 687, 0, 0, 1144, 1143, 1, 0, 0, 0, 1144, 1145, 1, 0, 0, 0, 1145, 1151, 1, 0, 0, 0, 1146, 1148, 5, 340, 0, 0, 1147, 1149, 5, 857, 0, 0, 1148, 1147, 1, 0, 0, 0, 1148, 1149, 1, 0, 0, 0, 1149, 1150, 1, 0, 0, 0, 1150, 1152, 5, 882, 0, 0, 1151, 1146, 1, 0, 0, 0, 1151, 1152, 1, 0, 0, 0, 1152, 1153, 1, 0, 0, 0, 1153, 1155, 5, 380, 0, 0, 1154, 1156, 5, 857, 0, 0, 1155, 1154, 1, 0, 0, 0, 1155, 1156, 1, 0, 0, 0, 1156, 1157, 1, 0, 0, 0, 1157, 1158, 3, 708, 354, 0, 1158, 31, 1, 0, 0, 0, 1159, 1161, 5, 34, 0, 0, 1160, 1162, 3, 62, 31, 0, 1161, 1160, 1, 0, 0, 0, 1161, 1162, 1, 0, 0, 0, 1162, 1163, 1, 0, 0, 0, 1163, 1165, 5, 132, 0, 0, 1164, 1166, 3, 776, 388, 0, 1165, 1164, 1, 0, 0, 0, 1165, 1166, 1, 0, 0, 0, 1166, 1167, 1, 0, 0, 0, 1167, 1168, 3, 718, 359, 0, 1168, 1170, 5, 866, 0, 0, 1169, 1171, 3, 78, 39, 0, 1170, 1169, 1, 0, 0, 0, 1170, 1171, 1, 0, 0, 0, 1171, 1176, 1, 0, 0, 0, 1172, 1173, 5, 868, 0, 0, 1173, 1175, 3, 78, 39, 0, 1174, 1172, 1, 0, 0, 0, 1175, 1178, 1, 0, 0, 0, 1176, 1174, 1, 0, 0, 0, 1176, 1177, 1, 0, 0, 0, 1177, 1179, 1, 0, 0, 0, 1178, 1176, 1, 0, 0, 0, 1179, 1183, 5, 867, 0, 0, 1180, 1182, 3, 82, 41, 0, 1181, 1180, 1, 0, 0, 0, 1182, 1185, 1, 0, 0, 0, 1183, 1181, 1, 0, 0, 0, 1183, 1184, 1, 0, 0, 0, 1184, 1186, 1, 0, 0, 0, 1185, 1183, 1, 0, 0, 0, 1186, 1187, 3, 432, 216, 0, 1187, 33, 1, 0, 0, 0, 1188, 1190, 5, 34, 0, 0, 1189, 1191, 3, 62, 31, 0, 1190, 1189, 1, 0, 0, 0, 1190, 1191, 1, 0, 0, 0, 1191, 1193, 1, 0, 0, 0, 1192, 1194, 5, 307, 0, 0, 1193, 1192, 1, 0, 0, 0, 1193, 1194, 1, 0, 0, 0, 1194, 1195, 1, 0, 0, 0, 1195, 1197, 5, 409, 0, 0, 1196, 1198, 3, 776, 388, 0, 1197, 1196, 1, 0, 0, 0, 1197, 1198, 1, 0, 0, 0, 1198, 1199, 1, 0, 0, 0, 1199, 1200, 3, 640, 320, 0, 1200, 1202, 5, 866, 0, 0, 1201, 1203, 3, 80, 40, 0, 1202, 1201, 1, 0, 0, 0, 1202, 1203, 1, 0, 0, 0, 1203, 1208, 1, 0, 0, 0, 1204, 1205, 5, 868, 0, 0, 1205, 1207, 3, 80, 40, 0, 1206, 1204, 1, 0, 0, 0, 1207, 1210, 1, 0, 0, 0, 1208, 1206, 1, 0, 0, 0, 1208, 1209, 1, 0, 0, 0, 1209, 1211, 1, 0, 0, 0, 1210, 1208, 1, 0, 0, 0, 1211, 1212, 5, 867, 0, 0, 1212, 1213, 5, 580, 0, 0, 1213, 1217, 3, 742, 371, 0, 1214, 1216, 3, 82, 41, 0, 1215, 1214, 1, 0, 0, 0, 1216, 1219, 1, 0, 0, 0, 1217, 1215, 1, 0, 0, 0, 1217, 1218, 1, 0, 0, 0, 1218, 1222, 1, 0, 0, 0, 1219, 1217, 1, 0, 0, 0, 1220, 1223, 3, 432, 216, 0, 1221, 1223, 3, 448, 224, 0, 1222, 1220, 1, 0, 0, 0, 1222, 1221, 1, 0, 0, 0, 1223, 35, 1, 0, 0, 0, 1224, 1226, 5, 34, 0, 0, 1225, 1227, 5, 307, 0, 0, 1226, 1225, 1, 0, 0, 0, 1226, 1227, 1, 0, 0, 0, 1227, 1228, 1, 0, 0, 0, 1228, 1230, 5, 409, 0, 0, 1229, 1231, 3, 776, 388, 0, 1230, 1229, 1, 0, 0, 0, 1230, 1231, 1, 0, 0, 0, 1231, 1232, 1, 0, 0, 0, 1232, 1233, 3, 640, 320, 0, 1233, 1234, 5, 580, 0, 0, 1234, 1235, 7, 5, 0, 0, 1235, 1236, 5, 603, 0, 0, 1236, 1237, 5, 882, 0, 0, 1237, 37, 1, 0, 0, 0, 1238, 1239, 5, 34, 0, 0, 1239, 1241, 5, 582, 0, 0, 1240, 1242, 3, 776, 388, 0, 1241, 1240, 1, 0, 0, 0, 1241, 1242, 1, 0, 0, 0, 1242, 1243, 1, 0, 0, 0, 1243, 1244, 3, 664, 332, 0, 1244, 39, 1, 0, 0, 0, 1245, 1246, 5, 34, 0, 0, 1246, 1247, 5, 592, 0, 0, 1247, 1248, 3, 722, 361, 0, 1248, 1249, 5, 67, 0, 0, 1249, 1250, 5, 360, 0, 0, 1250, 1251, 5, 692, 0, 0, 1251, 1252, 7, 6, 0, 0, 1252, 1253, 5, 518, 0, 0, 1253, 1254, 5, 866, 0, 0, 1254, 1259, 3, 84, 42, 0, 1255, 1256, 5, 868, 0, 0, 1256, 1258, 3, 84, 42, 0, 1257, 1255, 1, 0, 0, 0, 1258, 1261, 1, 0, 0, 0, 1259, 1257, 1, 0, 0, 0, 1259, 1260, 1, 0, 0, 0, 1260, 1262, 1, 0, 0, 0, 1261, 1259, 1, 0, 0, 0, 1262, 1263, 5, 867, 0, 0, 1263, 41, 1, 0, 0, 0, 1264, 1266, 5, 34, 0, 0, 1265, 1267, 5, 660, 0, 0, 1266, 1265, 1, 0, 0, 0, 1266, 1267, 1, 0, 0, 0, 1267, 1268, 1, 0, 0, 0, 1268, 1270, 5, 173, 0, 0, 1269, 1271, 3, 776, 388, 0, 1270, 1269, 1, 0, 0, 0, 1270, 1271, 1, 0, 0, 0, 1271, 1272, 1, 0, 0, 0, 1272, 1274, 3, 658, 329, 0, 1273, 1275, 3, 86, 43, 0, 1274, 1273, 1, 0, 0, 0, 1274, 1275, 1, 0, 0, 0, 1275, 1286, 1, 0, 0, 0, 1276, 1283, 3, 104, 52, 0, 1277, 1279, 5, 868, 0, 0, 1278, 1277, 1, 0, 0, 0, 1278, 1279, 1, 0, 0, 0, 1279, 1280, 1, 0, 0, 0, 1280, 1282, 3, 104, 52, 0, 1281, 1278, 1, 0, 0, 0, 1282, 1285, 1, 0, 0, 0, 1283, 1281, 1, 0, 0, 0, 1283, 1284, 1, 0, 0, 0, 1284, 1287, 1, 0, 0, 0, 1285, 1283, 1, 0, 0, 0, 1286, 1276, 1, 0, 0, 0, 1286, 1287, 1, 0, 0, 0, 1287, 1289, 1, 0, 0, 0, 1288, 1290, 3, 110, 55, 0, 1289, 1288, 1, 0, 0, 0, 1289, 1290, 1, 0, 0, 0, 1290, 1292, 1, 0, 0, 0, 1291, 1293, 7, 7, 0, 0, 1292, 1291, 1, 0, 0, 0, 1292, 1293, 1, 0, 0, 0, 1293, 1295, 1, 0, 0, 0, 1294, 1296, 5, 13, 0, 0, 1295, 1294, 1, 0, 0, 0, 1295, 1296, 1, 0, 0, 0, 1296, 1297, 1, 0, 0, 0, 1297, 1298, 3, 210, 105, 0, 1298, 1343, 1, 0, 0, 0, 1299, 1301, 5, 34, 0, 0, 1300, 1302, 5, 660, 0, 0, 1301, 1300, 1, 0, 0, 0, 1301, 1302, 1, 0, 0, 0, 1302, 1303, 1, 0, 0, 0, 1303, 1305, 5, 173, 0, 0, 1304, 1306, 3, 776, 388, 0, 1305, 1304, 1, 0, 0, 0, 1305, 1306, 1, 0, 0, 0, 1306, 1307, 1, 0, 0, 0, 1307, 1315, 3, 658, 329, 0, 1308, 1309, 5, 99, 0, 0, 1309, 1316, 3, 662, 331, 0, 1310, 1311, 5, 866, 0, 0, 1311, 1312, 5, 99, 0, 0, 1312, 1313, 3, 662, 331, 0, 1313, 1314, 5, 867, 0, 0, 1314, 1316, 1, 0, 0, 0, 1315, 1308, 1, 0, 0, 0, 1315, 1310, 1, 0, 0, 0, 1316, 1343, 1, 0, 0, 0, 1317, 1319, 5, 34, 0, 0, 1318, 1320, 5, 660, 0, 0, 1319, 1318, 1, 0, 0, 0, 1319, 1320, 1, 0, 0, 0, 1320, 1321, 1, 0, 0, 0, 1321, 1323, 5, 173, 0, 0, 1322, 1324, 3, 776, 388, 0, 1323, 1322, 1, 0, 0, 0, 1323, 1324, 1, 0, 0, 0, 1324, 1325, 1, 0, 0, 0, 1325, 1326, 3, 658, 329, 0, 1326, 1337, 3, 86, 43, 0, 1327, 1334, 3, 104, 52, 0, 1328, 1330, 5, 868, 0, 0, 1329, 1328, 1, 0, 0, 0, 1329, 1330, 1, 0, 0, 0, 1330, 1331, 1, 0, 0, 0, 1331, 1333, 3, 104, 52, 0, 1332, 1329, 1, 0, 0, 0, 1333, 1336, 1, 0, 0, 0, 1334, 1332, 1, 0, 0, 0, 1334, 1335, 1, 0, 0, 0, 1335, 1338, 1, 0, 0, 0, 1336, 1334, 1, 0, 0, 0, 1337, 1327, 1, 0, 0, 0, 1337, 1338, 1, 0, 0, 0, 1338, 1340, 1, 0, 0, 0, 1339, 1341, 3, 110, 55, 0, 1340, 1339, 1, 0, 0, 0, 1340, 1341, 1, 0, 0, 0, 1341, 1343, 1, 0, 0, 0, 1342, 1264, 1, 0, 0, 0, 1342, 1299, 1, 0, 0, 0, 1342, 1317, 1, 0, 0, 0, 1343, 43, 1, 0, 0, 0, 1344, 1346, 5, 34, 0, 0, 1345, 1347, 5, 180, 0, 0, 1346, 1345, 1, 0, 0, 0, 1346, 1347, 1, 0, 0, 0, 1347, 1348, 1, 0, 0, 0, 1348, 1349, 5, 658, 0, 0, 1349, 1353, 3, 680, 340, 0, 1350, 1351, 5, 6, 0, 0, 1351, 1352, 5, 361, 0, 0, 1352, 1354, 5, 882, 0, 0, 1353, 1350, 1, 0, 0, 0, 1353, 1354, 1, 0, 0, 0, 1354, 1360, 1, 0, 0, 0, 1355, 1357, 5, 314, 0, 0, 1356, 1358, 5, 857, 0, 0, 1357, 1356, 1, 0, 0, 0, 1357, 1358, 1, 0, 0, 0, 1358, 1359, 1, 0, 0, 0, 1359, 1361, 3, 730, 365, 0, 1360, 1355, 1, 0, 0, 0, 1360, 1361, 1, 0, 0, 0, 1361, 1365, 1, 0, 0, 0, 1362, 1363, 5, 399, 0, 0, 1363, 1364, 5, 857, 0, 0, 1364, 1366, 3, 730, 365, 0, 1365, 1362, 1, 0, 0, 0, 1365, 1366, 1, 0, 0, 0, 1366, 1372, 1, 0, 0, 0, 1367, 1369, 5, 380, 0, 0, 1368, 1370, 5, 857, 0, 0, 1369, 1368, 1, 0, 0, 0, 1369, 1370, 1, 0, 0, 0, 1370, 1371, 1, 0, 0, 0, 1371, 1373, 3, 708, 354, 0, 1372, 1367, 1, 0, 0, 0, 1372, 1373, 1, 0, 0, 0, 1373, 1379, 1, 0, 0, 0, 1374, 1376, 5, 825, 0, 0, 1375, 1377, 5, 857, 0, 0, 1376, 1375, 1, 0, 0, 0, 1376, 1377, 1, 0, 0, 0, 1377, 1378, 1, 0, 0, 0, 1378, 1380, 5, 882, 0, 0, 1379, 1374, 1, 0, 0, 0, 1379, 1380, 1, 0, 0, 0, 1380, 45, 1, 0, 0, 0, 1381, 1383, 5, 34, 0, 0, 1382, 1384, 5, 180, 0, 0, 1383, 1382, 1, 0, 0, 0, 1383, 1384, 1, 0, 0, 0, 1384, 1385, 1, 0, 0, 0, 1385, 1386, 5, 658, 0, 0, 1386, 1387, 3, 680, 340, 0, 1387, 1388, 5, 6, 0, 0, 1388, 1389, 5, 361, 0, 0, 1389, 1390, 5, 882, 0, 0, 1390, 1391, 5, 187, 0, 0, 1391, 1392, 5, 451, 0, 0, 1392, 1393, 5, 74, 0, 0, 1393, 1399, 3, 722, 361, 0, 1394, 1396, 5, 393, 0, 0, 1395, 1397, 5, 857, 0, 0, 1396, 1395, 1, 0, 0, 0, 1396, 1397, 1, 0, 0, 0, 1397, 1398, 1, 0, 0, 0, 1398, 1400, 3, 730, 365, 0, 1399, 1394, 1, 0, 0, 0, 1399, 1400, 1, 0, 0, 0, 1400, 1406, 1, 0, 0, 0, 1401, 1403, 5, 428, 0, 0, 1402, 1404, 5, 857, 0, 0, 1403, 1402, 1, 0, 0, 0, 1403, 1404, 1, 0, 0, 0, 1404, 1405, 1, 0, 0, 0, 1405, 1407, 3, 730, 365, 0, 1406, 1401, 1, 0, 0, 0, 1406, 1407, 1, 0, 0, 0, 1407, 1413, 1, 0, 0, 0, 1408, 1410, 5, 314, 0, 0, 1409, 1411, 5, 857, 0, 0, 1410, 1409, 1, 0, 0, 0, 1410, 1411, 1, 0, 0, 0, 1411, 1412, 1, 0, 0, 0, 1412, 1414, 3, 730, 365, 0, 1413, 1408, 1, 0, 0, 0, 1413, 1414, 1, 0, 0, 0, 1414, 1420, 1, 0, 0, 0, 1415, 1417, 5, 481, 0, 0, 1416, 1418, 5, 857, 0, 0, 1417, 1416, 1, 0, 0, 0, 1417, 1418, 1, 0, 0, 0, 1418, 1419, 1, 0, 0, 0, 1419, 1421, 3, 730, 365, 0, 1420, 1415, 1, 0, 0, 0, 1420, 1421, 1, 0, 0, 0, 1421, 1427, 1, 0, 0, 0, 1422, 1424, 5, 504, 0, 0, 1423, 1425, 5, 857, 0, 0, 1424, 1423, 1, 0, 0, 0, 1424, 1425, 1, 0, 0, 0, 1425, 1426, 1, 0, 0, 0, 1426, 1428, 3, 722, 361, 0, 1427, 1422, 1, 0, 0, 0, 1427, 1428, 1, 0, 0, 0, 1428, 1430, 1, 0, 0, 0, 1429, 1431, 5, 687, 0, 0, 1430, 1429, 1, 0, 0, 0, 1430, 1431, 1, 0, 0, 0, 1431, 1437, 1, 0, 0, 0, 1432, 1434, 5, 340, 0, 0, 1433, 1435, 5, 857, 0, 0, 1434, 1433, 1, 0, 0, 0, 1434, 1435, 1, 0, 0, 0, 1435, 1436, 1, 0, 0, 0, 1436, 1438, 5, 882, 0, 0, 1437, 1432, 1, 0, 0, 0, 1437, 1438, 1, 0, 0, 0, 1438, 1439, 1, 0, 0, 0, 1439, 1441, 5, 380, 0, 0, 1440, 1442, 5, 857, 0, 0, 1441, 1440, 1, 0, 0, 0, 1441, 1442, 1, 0, 0, 0, 1442, 1443, 1, 0, 0, 0, 1443, 1444, 3, 708, 354, 0, 1444, 47, 1, 0, 0, 0, 1445, 1447, 5, 34, 0, 0, 1446, 1448, 3, 62, 31, 0, 1447, 1446, 1, 0, 0, 0, 1447, 1448, 1, 0, 0, 0, 1448, 1450, 1, 0, 0, 0, 1449, 1451, 3, 776, 388, 0, 1450, 1449, 1, 0, 0, 0, 1450, 1451, 1, 0, 0, 0, 1451, 1452, 1, 0, 0, 0, 1452, 1454, 5, 178, 0, 0, 1453, 1455, 3, 776, 388, 0, 1454, 1453, 1, 0, 0, 0, 1454, 1455, 1, 0, 0, 0, 1455, 1456, 1, 0, 0, 0, 1456, 1457, 3, 718, 359, 0, 1457, 1458, 7, 8, 0, 0, 1458, 1459, 7, 9, 0, 0, 1459, 1460, 5, 119, 0, 0, 1460, 1461, 3, 662, 331, 0, 1461, 1462, 5, 65, 0, 0, 1462, 1463, 5, 52, 0, 0, 1463, 1466, 5, 586, 0, 0, 1464, 1465, 7, 10, 0, 0, 1465, 1467, 3, 718, 359, 0, 1466, 1464, 1, 0, 0, 0, 1466, 1467, 1, 0, 0, 0, 1467, 1468, 1, 0, 0, 0, 1468, 1469, 3, 432, 216, 0, 1469, 49, 1, 0, 0, 0, 1470, 1472, 5, 194, 0, 0, 1471, 1473, 5, 552, 0, 0, 1472, 1471, 1, 0, 0, 0, 1472, 1473, 1, 0, 0, 0, 1473, 1474, 1, 0, 0, 0, 1474, 1475, 3, 52, 26, 0, 1475, 51, 1, 0, 0, 0, 1476, 1488, 3, 722, 361, 0, 1477, 1478, 5, 866, 0, 0, 1478, 1483, 3, 722, 361, 0, 1479, 1480, 5, 868, 0, 0, 1480, 1482, 3, 722, 361, 0, 1481, 1479, 1, 0, 0, 0, 1482, 1485, 1, 0, 0, 0, 1483, 1481, 1, 0, 0, 0, 1483, 1484, 1, 0, 0, 0, 1484, 1486, 1, 0, 0, 0, 1485, 1483, 1, 0, 0, 0, 1486, 1487, 5, 867, 0, 0, 1487, 1489, 1, 0, 0, 0, 1488, 1477, 1, 0, 0, 0, 1488, 1489, 1, 0, 0, 0, 1489, 1490, 1, 0, 0, 0, 1490, 1491, 5, 13, 0, 0, 1491, 1492, 5, 866, 0, 0, 1492, 1493, 3, 10, 5, 0, 1493, 1496, 5, 867, 0, 0, 1494, 1495, 5, 868, 0, 0, 1495, 1497, 3, 52, 26, 0, 1496, 1494, 1, 0, 0, 0, 1496, 1497, 1, 0, 0, 0, 1497, 53, 1, 0, 0, 0, 1498, 1500, 5, 34, 0, 0, 1499, 1501, 3, 778, 389, 0, 1500, 1499, 1, 0, 0, 0, 1500, 1501, 1, 0, 0, 0, 1501, 1505, 1, 0, 0, 0, 1502, 1503, 5, 308, 0, 0, 1503, 1504, 5, 857, 0, 0, 1504, 1506, 7, 11, 0, 0, 1505, 1502, 1, 0, 0, 0, 1505, 1506, 1, 0, 0, 0, 1506, 1508, 1, 0, 0, 0, 1507, 1509, 3, 62, 31, 0, 1508, 1507, 1, 0, 0, 0, 1508, 1509, 1, 0, 0, 0, 1509, 1513, 1, 0, 0, 0, 1510, 1511, 5, 162, 0, 0, 1511, 1512, 5, 591, 0, 0, 1512, 1514, 7, 12, 0, 0, 1513, 1510, 1, 0, 0, 0, 1513, 1514, 1, 0, 0, 0, 1514, 1515, 1, 0, 0, 0, 1515, 1516, 5, 684, 0, 0, 1516, 1528, 3, 644, 322, 0, 1517, 1518, 5, 866, 0, 0, 1518, 1523, 3, 668, 334, 0, 1519, 1520, 5, 868, 0, 0, 1520, 1522, 3, 668, 334, 0, 1521, 1519, 1, 0, 0, 0, 1522, 1525, 1, 0, 0, 0, 1523, 1521, 1, 0, 0, 0, 1523, 1524, 1, 0, 0, 0, 1524, 1526, 1, 0, 0, 0, 1525, 1523, 1, 0, 0, 0, 1526, 1527, 5, 867, 0, 0, 1527, 1529, 1, 0, 0, 0, 1528, 1517, 1, 0, 0, 0, 1528, 1529, 1, 0, 0, 0, 1529, 1530, 1, 0, 0, 0, 1530, 1550, 5, 13, 0, 0, 1531, 1533, 5, 866, 0, 0, 1532, 1534, 3, 50, 25, 0, 1533, 1532, 1, 0, 0, 0, 1533, 1534, 1, 0, 0, 0, 1534, 1535, 1, 0, 0, 0, 1535, 1536, 3, 210, 105, 0, 1536, 1537, 5, 867, 0, 0, 1537, 1551, 1, 0, 0, 0, 1538, 1540, 3, 50, 25, 0, 1539, 1538, 1, 0, 0, 0, 1539, 1540, 1, 0, 0, 0, 1540, 1541, 1, 0, 0, 0, 1541, 1548, 3, 210, 105, 0, 1542, 1544, 5, 194, 0, 0, 1543, 1545, 7, 13, 0, 0, 1544, 1543, 1, 0, 0, 0, 1544, 1545, 1, 0, 0, 0, 1545, 1546, 1, 0, 0, 0, 1546, 1547, 5, 27, 0, 0, 1547, 1549, 5, 121, 0, 0, 1548, 1542, 1, 0, 0, 0, 1548, 1549, 1, 0, 0, 0, 1549, 1551, 1, 0, 0, 0, 1550, 1531, 1, 0, 0, 0, 1550, 1539, 1, 0, 0, 0, 1551, 55, 1, 0, 0, 0, 1552, 1554, 5, 42, 0, 0, 1553, 1552, 1, 0, 0, 0, 1553, 1554, 1, 0, 0, 0, 1554, 1555, 1, 0, 0, 0, 1555, 1557, 3, 58, 29, 0, 1556, 1558, 5, 857, 0, 0, 1557, 1556, 1, 0, 0, 0, 1557, 1558, 1, 0, 0, 0, 1558, 1561, 1, 0, 0, 0, 1559, 1562, 3, 704, 352, 0, 1560, 1562, 5, 42, 0, 0, 1561, 1559, 1, 0, 0, 0, 1561, 1560, 1, 0, 0, 0, 1562, 1586, 1, 0, 0, 0, 1563, 1565, 5, 42, 0, 0, 1564, 1563, 1, 0, 0, 0, 1564, 1565, 1, 0, 0, 0, 1565, 1566, 1, 0, 0, 0, 1566, 1568, 5, 28, 0, 0, 1567, 1569, 5, 857, 0, 0, 1568, 1567, 1, 0, 0, 0, 1568, 1569, 1, 0, 0, 0, 1569, 1570, 1, 0, 0, 0, 1570, 1586, 3, 706, 353, 0, 1571, 1573, 5, 42, 0, 0, 1572, 1571, 1, 0, 0, 0, 1572, 1573, 1, 0, 0, 0, 1573, 1574, 1, 0, 0, 0, 1574, 1576, 5, 376, 0, 0, 1575, 1577, 5, 857, 0, 0, 1576, 1575, 1, 0, 0, 0, 1576, 1577, 1, 0, 0, 0, 1577, 1578, 1, 0, 0, 0, 1578, 1586, 5, 882, 0, 0, 1579, 1580, 5, 135, 0, 0, 1580, 1582, 5, 515, 0, 0, 1581, 1583, 5, 857, 0, 0, 1582, 1581, 1, 0, 0, 0, 1582, 1583, 1, 0, 0, 0, 1583, 1584, 1, 0, 0, 0, 1584, 1586, 7, 14, 0, 0, 1585, 1553, 1, 0, 0, 0, 1585, 1564, 1, 0, 0, 0, 1585, 1572, 1, 0, 0, 0, 1585, 1579, 1, 0, 0, 0, 1586, 57, 1, 0, 0, 0, 1587, 1588, 5, 26, 0, 0, 1588, 1593, 5, 155, 0, 0, 1589, 1593, 5, 823, 0, 0, 1590, 1591, 5, 224, 0, 0, 1591, 1593, 5, 155, 0, 0, 1592, 1587, 1, 0, 0, 0, 1592, 1589, 1, 0, 0, 0, 1592, 1590, 1, 0, 0, 0, 1593, 59, 1, 0, 0, 0, 1594, 1597, 7, 15, 0, 0, 1595, 1596, 5, 866, 0, 0, 1596, 1598, 5, 867, 0, 0, 1597, 1595, 1, 0, 0, 0, 1597, 1598, 1, 0, 0, 0, 1598, 61, 1, 0, 0, 0, 1599, 1600, 5, 364, 0, 0, 1600, 1603, 5, 857, 0, 0, 1601, 1604, 3, 700, 350, 0, 1602, 1604, 3, 60, 30, 0, 1603, 1601, 1, 0, 0, 0, 1603, 1602, 1, 0, 0, 0, 1604, 63, 1, 0, 0, 0, 1605, 1606, 5, 311, 0, 0, 1606, 1610, 3, 66, 33, 0, 1607, 1609, 3, 68, 34, 0, 1608, 1607, 1, 0, 0, 0, 1609, 1612, 1, 0, 0, 0, 1610, 1608, 1, 0, 0, 0, 1610, 1611, 1, 0, 0, 0, 1611, 1640, 1, 0, 0, 0, 1612, 1610, 1, 0, 0, 0, 1613, 1616, 5, 387, 0, 0, 1614, 1617, 3, 728, 364, 0, 1615, 1617, 3, 820, 410, 0, 1616, 1614, 1, 0, 0, 0, 1616, 1615, 1, 0, 0, 0, 1617, 1618, 1, 0, 0, 0, 1618, 1627, 3, 70, 35, 0, 1619, 1620, 5, 641, 0, 0, 1620, 1624, 3, 66, 33, 0, 1621, 1623, 3, 68, 34, 0, 1622, 1621, 1, 0, 0, 0, 1623, 1626, 1, 0, 0, 0, 1624, 1622, 1, 0, 0, 0, 1624, 1625, 1, 0, 0, 0, 1625, 1628, 1, 0, 0, 0, 1626, 1624, 1, 0, 0, 0, 1627, 1619, 1, 0, 0, 0, 1627, 1628, 1, 0, 0, 0, 1628, 1637, 1, 0, 0, 0, 1629, 1630, 5, 379, 0, 0, 1630, 1634, 3, 66, 33, 0, 1631, 1633, 3, 68, 34, 0, 1632, 1631, 1, 0, 0, 0, 1633, 1636, 1, 0, 0, 0, 1634, 1632, 1, 0, 0, 0, 1634, 1635, 1, 0, 0, 0, 1635, 1638, 1, 0, 0, 0, 1636, 1634, 1, 0, 0, 0, 1637, 1629, 1, 0, 0, 0, 1637, 1638, 1, 0, 0, 0, 1638, 1640, 1, 0, 0, 0, 1639, 1605, 1, 0, 0, 0, 1639, 1613, 1, 0, 0, 0, 1640, 65, 1, 0, 0, 0, 1641, 1646, 5, 287, 0, 0, 1642, 1646, 3, 732, 366, 0, 1643, 1646, 3, 728, 364, 0, 1644, 1646, 3, 820, 410, 0, 1645, 1641, 1, 0, 0, 0, 1645, 1642, 1, 0, 0, 0, 1645, 1643, 1, 0, 0, 0, 1645, 1644, 1, 0, 0, 0, 1646, 67, 1, 0, 0, 0, 1647, 1648, 5, 853, 0, 0, 1648, 1651, 5, 87, 0, 0, 1649, 1652, 3, 728, 364, 0, 1650, 1652, 3, 820, 410, 0, 1651, 1649, 1, 0, 0, 0, 1651, 1650, 1, 0, 0, 0, 1652, 1653, 1, 0, 0, 0, 1653, 1654, 3, 70, 35, 0, 1654, 69, 1, 0, 0, 0, 1655, 1669, 3, 846, 423, 0, 1656, 1669, 5, 223, 0, 0, 1657, 1669, 5, 242, 0, 0, 1658, 1669, 5, 243, 0, 0, 1659, 1669, 5, 244, 0, 0, 1660, 1669, 5, 245, 0, 0, 1661, 1669, 5, 246, 0, 0, 1662, 1669, 5, 247, 0, 0, 1663, 1669, 5, 248, 0, 0, 1664, 1669, 5, 249, 0, 0, 1665, 1669, 5, 250, 0, 0, 1666, 1669, 5, 251, 0, 0, 1667, 1669, 5, 252, 0, 0, 1668, 1655, 1, 0, 0, 0, 1668, 1656, 1, 0, 0, 0, 1668, 1657, 1, 0, 0, 0, 1668, 1658, 1, 0, 0, 0, 1668, 1659, 1, 0, 0, 0, 1668, 1660, 1, 0, 0, 0, 1668, 1661, 1, 0, 0, 0, 1668, 1662, 1, 0, 0, 0, 1668, 1663, 1, 0, 0, 0, 1668, 1664, 1, 0, 0, 0, 1668, 1665, 1, 0, 0, 0, 1668, 1666, 1, 0, 0, 0, 1668, 1667, 1, 0, 0, 0, 1669, 71, 1, 0, 0, 0, 1670, 1676, 5, 375, 0, 0, 1671, 1676, 5, 368, 0, 0, 1672, 1673, 5, 368, 0, 0, 1673, 1674, 5, 119, 0, 0, 1674, 1676, 5, 598, 0, 0, 1675, 1670, 1, 0, 0, 0, 1675, 1671, 1, 0, 0, 0, 1675, 1672, 1, 0, 0, 0, 1676, 73, 1, 0, 0, 0, 1677, 1678, 5, 188, 0, 0, 1678, 1679, 7, 16, 0, 0, 1679, 75, 1, 0, 0, 0, 1680, 1682, 5, 443, 0, 0, 1681, 1683, 5, 857, 0, 0, 1682, 1681, 1, 0, 0, 0, 1682, 1683, 1, 0, 0, 0, 1683, 1684, 1, 0, 0, 0, 1684, 1703, 3, 730, 365, 0, 1685, 1703, 3, 74, 37, 0, 1686, 1687, 5, 194, 0, 0, 1687, 1688, 5, 525, 0, 0, 1688, 1703, 3, 722, 361, 0, 1689, 1690, 5, 340, 0, 0, 1690, 1703, 5, 882, 0, 0, 1691, 1703, 7, 17, 0, 0, 1692, 1694, 5, 825, 0, 0, 1693, 1695, 5, 857, 0, 0, 1694, 1693, 1, 0, 0, 0, 1694, 1695, 1, 0, 0, 0, 1695, 1696, 1, 0, 0, 0, 1696, 1703, 5, 882, 0, 0, 1697, 1699, 5, 833, 0, 0, 1698, 1700, 5, 857, 0, 0, 1699, 1698, 1, 0, 0, 0, 1699, 1700, 1, 0, 0, 0, 1700, 1701, 1, 0, 0, 0, 1701, 1703, 5, 882, 0, 0, 1702, 1680, 1, 0, 0, 0, 1702, 1685, 1, 0, 0, 0, 1702, 1686, 1, 0, 0, 0, 1702, 1689, 1, 0, 0, 0, 1702, 1691, 1, 0, 0, 0, 1702, 1692, 1, 0, 0, 0, 1702, 1697, 1, 0, 0, 0, 1703, 77, 1, 0, 0, 0, 1704, 1706, 7, 18, 0, 0, 1705, 1704, 1, 0, 0, 0, 1705, 1706, 1, 0, 0, 0, 1706, 1707, 1, 0, 0, 0, 1707, 1708, 3, 722, 361, 0, 1708, 1709, 3, 742, 371, 0, 1709, 79, 1, 0, 0, 0, 1710, 1711, 3, 722, 361, 0, 1711, 1712, 3, 742, 371, 0, 1712, 81, 1, 0, 0, 0, 1713, 1714, 5, 340, 0, 0, 1714, 1737, 5, 882, 0, 0, 1715, 1716, 5, 444, 0, 0, 1716, 1737, 5, 162, 0, 0, 1717, 1719, 5, 114, 0, 0, 1718, 1717, 1, 0, 0, 0, 1718, 1719, 1, 0, 0, 0, 1719, 1720, 1, 0, 0, 0, 1720, 1737, 5, 47, 0, 0, 1721, 1722, 5, 354, 0, 0, 1722, 1732, 5, 162, 0, 0, 1723, 1724, 5, 502, 0, 0, 1724, 1732, 5, 162, 0, 0, 1725, 1726, 5, 136, 0, 0, 1726, 1727, 5, 162, 0, 0, 1727, 1732, 5, 360, 0, 0, 1728, 1729, 5, 112, 0, 0, 1729, 1730, 5, 162, 0, 0, 1730, 1732, 5, 360, 0, 0, 1731, 1721, 1, 0, 0, 0, 1731, 1723, 1, 0, 0, 0, 1731, 1725, 1, 0, 0, 0, 1731, 1728, 1, 0, 0, 0, 1732, 1737, 1, 0, 0, 0, 1733, 1734, 5, 162, 0, 0, 1734, 1735, 5, 591, 0, 0, 1735, 1737, 7, 12, 0, 0, 1736, 1713, 1, 0, 0, 0, 1736, 1715, 1, 0, 0, 0, 1736, 1718, 1, 0, 0, 0, 1736, 1731, 1, 0, 0, 0, 1736, 1733, 1, 0, 0, 0, 1737, 83, 1, 0, 0, 0, 1738, 1739, 5, 421, 0, 0, 1739, 1753, 5, 882, 0, 0, 1740, 1741, 5, 39, 0, 0, 1741, 1753, 5, 882, 0, 0, 1742, 1743, 5, 678, 0, 0, 1743, 1753, 5, 882, 0, 0, 1744, 1745, 5, 529, 0, 0, 1745, 1753, 5, 882, 0, 0, 1746, 1747, 5, 601, 0, 0, 1747, 1753, 5, 882, 0, 0, 1748, 1749, 5, 519, 0, 0, 1749, 1753, 5, 882, 0, 0, 1750, 1751, 5, 537, 0, 0, 1751, 1753, 3, 728, 364, 0, 1752, 1738, 1, 0, 0, 0, 1752, 1740, 1, 0, 0, 0, 1752, 1742, 1, 0, 0, 0, 1752, 1744, 1, 0, 0, 0, 1752, 1746, 1, 0, 0, 0, 1752, 1748, 1, 0, 0, 0, 1752, 1750, 1, 0, 0, 0, 1753, 85, 1, 0, 0, 0, 1754, 1755, 5, 866, 0, 0, 1755, 1760, 3, 88, 44, 0, 1756, 1757, 5, 868, 0, 0, 1757, 1759, 3, 88, 44, 0, 1758, 1756, 1, 0, 0, 0, 1759, 1762, 1, 0, 0, 0, 1760, 1758, 1, 0, 0, 0, 1760, 1761, 1, 0, 0, 0, 1761, 1763, 1, 0, 0, 0, 1762, 1760, 1, 0, 0, 0, 1763, 1764, 5, 867, 0, 0, 1764, 87, 1, 0, 0, 0, 1765, 1766, 3, 668, 334, 0, 1766, 1767, 3, 94, 47, 0, 1767, 1849, 1, 0, 0, 0, 1768, 1770, 7, 19, 0, 0, 1769, 1771, 3, 652, 326, 0, 1770, 1769, 1, 0, 0, 0, 1770, 1771, 1, 0, 0, 0, 1771, 1773, 1, 0, 0, 0, 1772, 1774, 3, 74, 37, 0, 1773, 1772, 1, 0, 0, 0, 1773, 1774, 1, 0, 0, 0, 1774, 1775, 1, 0, 0, 0, 1775, 1779, 3, 754, 377, 0, 1776, 1778, 3, 76, 38, 0, 1777, 1776, 1, 0, 0, 0, 1778, 1781, 1, 0, 0, 0, 1779, 1777, 1, 0, 0, 0, 1779, 1780, 1, 0, 0, 0, 1780, 1849, 1, 0, 0, 0, 1781, 1779, 1, 0, 0, 0, 1782, 1784, 7, 20, 0, 0, 1783, 1785, 7, 19, 0, 0, 1784, 1783, 1, 0, 0, 0, 1784, 1785, 1, 0, 0, 0, 1785, 1787, 1, 0, 0, 0, 1786, 1788, 3, 652, 326, 0, 1787, 1786, 1, 0, 0, 0, 1787, 1788, 1, 0, 0, 0, 1788, 1789, 1, 0, 0, 0, 1789, 1793, 3, 754, 377, 0, 1790, 1792, 3, 76, 38, 0, 1791, 1790, 1, 0, 0, 0, 1792, 1795, 1, 0, 0, 0, 1793, 1791, 1, 0, 0, 0, 1793, 1794, 1, 0, 0, 0, 1794, 1849, 1, 0, 0, 0, 1795, 1793, 1, 0, 0, 0, 1796, 1798, 3, 92, 46, 0, 1797, 1796, 1, 0, 0, 0, 1797, 1798, 1, 0, 0, 0, 1798, 1799, 1, 0, 0, 0, 1799, 1800, 5, 131, 0, 0, 1800, 1802, 5, 92, 0, 0, 1801, 1803, 3, 74, 37, 0, 1802, 1801, 1, 0, 0, 0, 1802, 1803, 1, 0, 0, 0, 1803, 1804, 1, 0, 0, 0, 1804, 1808, 3, 754, 377, 0, 1805, 1807, 3, 76, 38, 0, 1806, 1805, 1, 0, 0, 0, 1807, 1810, 1, 0, 0, 0, 1808, 1806, 1, 0, 0, 0, 1808, 1809, 1, 0, 0, 0, 1809, 1849, 1, 0, 0, 0, 1810, 1808, 1, 0, 0, 0, 1811, 1813, 3, 92, 46, 0, 1812, 1811, 1, 0, 0, 0, 1812, 1813, 1, 0, 0, 0, 1813, 1814, 1, 0, 0, 0, 1814, 1816, 5, 182, 0, 0, 1815, 1817, 7, 19, 0, 0, 1816, 1815, 1, 0, 0, 0, 1816, 1817, 1, 0, 0, 0, 1817, 1819, 1, 0, 0, 0, 1818, 1820, 3, 652, 326, 0, 1819, 1818, 1, 0, 0, 0, 1819, 1820, 1, 0, 0, 0, 1820, 1822, 1, 0, 0, 0, 1821, 1823, 3, 74, 37, 0, 1822, 1821, 1, 0, 0, 0, 1822, 1823, 1, 0, 0, 0, 1823, 1824, 1, 0, 0, 0, 1824, 1828, 3, 754, 377, 0, 1825, 1827, 3, 76, 38, 0, 1826, 1825, 1, 0, 0, 0, 1827, 1830, 1, 0, 0, 0, 1828, 1826, 1, 0, 0, 0, 1828, 1829, 1, 0, 0, 0, 1829, 1849, 1, 0, 0, 0, 1830, 1828, 1, 0, 0, 0, 1831, 1833, 3, 92, 46, 0, 1832, 1831, 1, 0, 0, 0, 1832, 1833, 1, 0, 0, 0, 1833, 1834, 1, 0, 0, 0, 1834, 1835, 5, 67, 0, 0, 1835, 1837, 5, 92, 0, 0, 1836, 1838, 3, 652, 326, 0, 1837, 1836, 1, 0, 0, 0, 1837, 1838, 1, 0, 0, 0, 1838, 1839, 1, 0, 0, 0, 1839, 1840, 3, 754, 377, 0, 1840, 1841, 3, 98, 49, 0, 1841, 1849, 1, 0, 0, 0, 1842, 1843, 5, 27, 0, 0, 1843, 1844, 5, 866, 0, 0, 1844, 1845, 3, 820, 410, 0, 1845, 1846, 5, 867, 0, 0, 1846, 1849, 1, 0, 0, 0, 1847, 1849, 3, 90, 45, 0, 1848, 1765, 1, 0, 0, 0, 1848, 1768, 1, 0, 0, 0, 1848, 1782, 1, 0, 0, 0, 1848, 1797, 1, 0, 0, 0, 1848, 1812, 1, 0, 0, 0, 1848, 1832, 1, 0, 0, 0, 1848, 1842, 1, 0, 0, 0, 1848, 1847, 1, 0, 0, 0, 1849, 89, 1, 0, 0, 0, 1850, 1852, 3, 92, 46, 0, 1851, 1850, 1, 0, 0, 0, 1851, 1852, 1, 0, 0, 0, 1852, 1853, 1, 0, 0, 0, 1853, 1854, 5, 27, 0, 0, 1854, 1855, 5, 866, 0, 0, 1855, 1856, 3, 820, 410, 0, 1856, 1861, 5, 867, 0, 0, 1857, 1859, 5, 114, 0, 0, 1858, 1857, 1, 0, 0, 0, 1858, 1859, 1, 0, 0, 0, 1859, 1860, 1, 0, 0, 0, 1860, 1862, 5, 57, 0, 0, 1861, 1858, 1, 0, 0, 0, 1861, 1862, 1, 0, 0, 0, 1862, 91, 1, 0, 0, 0, 1863, 1865, 5, 31, 0, 0, 1864, 1866, 3, 722, 361, 0, 1865, 1864, 1, 0, 0, 0, 1865, 1866, 1, 0, 0, 0, 1866, 93, 1, 0, 0, 0, 1867, 1871, 3, 742, 371, 0, 1868, 1870, 3, 96, 48, 0, 1869, 1868, 1, 0, 0, 0, 1870, 1873, 1, 0, 0, 0, 1871, 1869, 1, 0, 0, 0, 1871, 1872, 1, 0, 0, 0, 1872, 95, 1, 0, 0, 0, 1873, 1871, 1, 0, 0, 0, 1874, 1918, 3, 738, 369, 0, 1875, 1876, 5, 42, 0, 0, 1876, 1918, 3, 770, 385, 0, 1877, 1918, 5, 686, 0, 0, 1878, 1918, 5, 435, 0, 0, 1879, 1884, 5, 315, 0, 0, 1880, 1881, 5, 119, 0, 0, 1881, 1882, 5, 185, 0, 0, 1882, 1884, 3, 772, 386, 0, 1883, 1879, 1, 0, 0, 0, 1883, 1880, 1, 0, 0, 0, 1884, 1918, 1, 0, 0, 0, 1885, 1887, 5, 131, 0, 0, 1886, 1885, 1, 0, 0, 0, 1886, 1887, 1, 0, 0, 0, 1887, 1888, 1, 0, 0, 0, 1888, 1918, 5, 92, 0, 0, 1889, 1891, 5, 182, 0, 0, 1890, 1892, 5, 92, 0, 0, 1891, 1890, 1, 0, 0, 0, 1891, 1892, 1, 0, 0, 0, 1892, 1918, 1, 0, 0, 0, 1893, 1894, 5, 340, 0, 0, 1894, 1918, 5, 882, 0, 0, 1895, 1896, 5, 338, 0, 0, 1896, 1918, 7, 21, 0, 0, 1897, 1898, 5, 647, 0, 0, 1898, 1918, 7, 22, 0, 0, 1899, 1918, 3, 98, 49, 0, 1900, 1901, 5, 28, 0, 0, 1901, 1918, 3, 706, 353, 0, 1902, 1903, 5, 71, 0, 0, 1903, 1905, 5, 9, 0, 0, 1904, 1902, 1, 0, 0, 0, 1904, 1905, 1, 0, 0, 0, 1905, 1906, 1, 0, 0, 0, 1906, 1907, 5, 13, 0, 0, 1907, 1908, 5, 866, 0, 0, 1908, 1909, 3, 820, 410, 0, 1909, 1911, 5, 867, 0, 0, 1910, 1912, 7, 23, 0, 0, 1911, 1910, 1, 0, 0, 0, 1911, 1912, 1, 0, 0, 0, 1912, 1918, 1, 0, 0, 0, 1913, 1914, 5, 241, 0, 0, 1914, 1915, 5, 42, 0, 0, 1915, 1918, 5, 682, 0, 0, 1916, 1918, 3, 90, 45, 0, 1917, 1874, 1, 0, 0, 0, 1917, 1875, 1, 0, 0, 0, 1917, 1877, 1, 0, 0, 0, 1917, 1878, 1, 0, 0, 0, 1917, 1883, 1, 0, 0, 0, 1917, 1886, 1, 0, 0, 0, 1917, 1889, 1, 0, 0, 0, 1917, 1893, 1, 0, 0, 0, 1917, 1895, 1, 0, 0, 0, 1917, 1897, 1, 0, 0, 0, 1917, 1899, 1, 0, 0, 0, 1917, 1900, 1, 0, 0, 0, 1917, 1904, 1, 0, 0, 0, 1917, 1913, 1, 0, 0, 0, 1917, 1916, 1, 0, 0, 0, 1918, 97, 1, 0, 0, 0, 1919, 1920, 5, 138, 0, 0, 1920, 1922, 3, 662, 331, 0, 1921, 1923, 3, 754, 377, 0, 1922, 1921, 1, 0, 0, 0, 1922, 1923, 1, 0, 0, 0, 1923, 1926, 1, 0, 0, 0, 1924, 1925, 5, 110, 0, 0, 1925, 1927, 7, 24, 0, 0, 1926, 1924, 1, 0, 0, 0, 1926, 1927, 1, 0, 0, 0, 1927, 1929, 1, 0, 0, 0, 1928, 1930, 3, 100, 50, 0, 1929, 1928, 1, 0, 0, 0, 1929, 1930, 1, 0, 0, 0, 1930, 99, 1, 0, 0, 0, 1931, 1932, 5, 119, 0, 0, 1932, 1933, 5, 44, 0, 0, 1933, 1937, 3, 102, 51, 0, 1934, 1935, 5, 119, 0, 0, 1935, 1936, 5, 185, 0, 0, 1936, 1938, 3, 102, 51, 0, 1937, 1934, 1, 0, 0, 0, 1937, 1938, 1, 0, 0, 0, 1938, 1948, 1, 0, 0, 0, 1939, 1940, 5, 119, 0, 0, 1940, 1941, 5, 185, 0, 0, 1941, 1945, 3, 102, 51, 0, 1942, 1943, 5, 119, 0, 0, 1943, 1944, 5, 44, 0, 0, 1944, 1946, 3, 102, 51, 0, 1945, 1942, 1, 0, 0, 0, 1945, 1946, 1, 0, 0, 0, 1946, 1948, 1, 0, 0, 0, 1947, 1931, 1, 0, 0, 0, 1947, 1939, 1, 0, 0, 0, 1948, 101, 1, 0, 0, 0, 1949, 1958, 5, 146, 0, 0, 1950, 1958, 5, 22, 0, 0, 1951, 1952, 5, 155, 0, 0, 1952, 1958, 5, 116, 0, 0, 1953, 1954, 5, 502, 0, 0, 1954, 1958, 5, 305, 0, 0, 1955, 1956, 5, 155, 0, 0, 1956, 1958, 5, 42, 0, 0, 1957, 1949, 1, 0, 0, 0, 1957, 1950, 1, 0, 0, 0, 1957, 1951, 1, 0, 0, 0, 1957, 1953, 1, 0, 0, 0, 1957, 1955, 1, 0, 0, 0, 1958, 103, 1, 0, 0, 0, 1959, 1961, 5, 380, 0, 0, 1960, 1962, 5, 857, 0, 0, 1961, 1960, 1, 0, 0, 0, 1961, 1962, 1, 0, 0, 0, 1962, 1964, 1, 0, 0, 0, 1963, 1965, 3, 708, 354, 0, 1964, 1963, 1, 0, 0, 0, 1964, 1965, 1, 0, 0, 0, 1965, 2145, 1, 0, 0, 0, 1966, 1968, 5, 825, 0, 0, 1967, 1969, 5, 857, 0, 0, 1968, 1967, 1, 0, 0, 0, 1968, 1969, 1, 0, 0, 0, 1969, 1970, 1, 0, 0, 0, 1970, 2145, 5, 882, 0, 0, 1971, 1973, 5, 314, 0, 0, 1972, 1974, 5, 857, 0, 0, 1973, 1972, 1, 0, 0, 0, 1973, 1974, 1, 0, 0, 0, 1974, 1975, 1, 0, 0, 0, 1975, 2145, 3, 728, 364, 0, 1976, 1978, 5, 315, 0, 0, 1977, 1979, 5, 857, 0, 0, 1978, 1977, 1, 0, 0, 0, 1978, 1979, 1, 0, 0, 0, 1979, 1980, 1, 0, 0, 0, 1980, 2145, 3, 728, 364, 0, 1981, 1983, 5, 316, 0, 0, 1982, 1984, 5, 857, 0, 0, 1983, 1982, 1, 0, 0, 0, 1983, 1984, 1, 0, 0, 0, 1984, 1985, 1, 0, 0, 0, 1985, 2145, 3, 728, 364, 0, 1986, 1988, 5, 42, 0, 0, 1987, 1986, 1, 0, 0, 0, 1987, 1988, 1, 0, 0, 0, 1988, 1989, 1, 0, 0, 0, 1989, 1991, 3, 58, 29, 0, 1990, 1992, 5, 857, 0, 0, 1991, 1990, 1, 0, 0, 0, 1991, 1992, 1, 0, 0, 0, 1992, 1995, 1, 0, 0, 0, 1993, 1996, 3, 704, 352, 0, 1994, 1996, 5, 42, 0, 0, 1995, 1993, 1, 0, 0, 0, 1995, 1994, 1, 0, 0, 0, 1996, 2145, 1, 0, 0, 0, 1997, 1999, 7, 25, 0, 0, 1998, 2000, 5, 857, 0, 0, 1999, 1998, 1, 0, 0, 0, 1999, 2000, 1, 0, 0, 0, 2000, 2001, 1, 0, 0, 0, 2001, 2145, 7, 26, 0, 0, 2002, 2004, 5, 42, 0, 0, 2003, 2002, 1, 0, 0, 0, 2003, 2004, 1, 0, 0, 0, 2004, 2005, 1, 0, 0, 0, 2005, 2007, 5, 28, 0, 0, 2006, 2008, 5, 857, 0, 0, 2007, 2006, 1, 0, 0, 0, 2007, 2008, 1, 0, 0, 0, 2008, 2009, 1, 0, 0, 0, 2009, 2145, 3, 706, 353, 0, 2010, 2012, 5, 340, 0, 0, 2011, 2013, 5, 857, 0, 0, 2012, 2011, 1, 0, 0, 0, 2012, 2013, 1, 0, 0, 0, 2013, 2014, 1, 0, 0, 0, 2014, 2145, 5, 882, 0, 0, 2015, 2017, 5, 346, 0, 0, 2016, 2018, 5, 857, 0, 0, 2017, 2016, 1, 0, 0, 0, 2017, 2018, 1, 0, 0, 0, 2018, 2019, 1, 0, 0, 0, 2019, 2145, 7, 27, 0, 0, 2020, 2022, 5, 349, 0, 0, 2021, 2023, 5, 857, 0, 0, 2022, 2021, 1, 0, 0, 0, 2022, 2023, 1, 0, 0, 0, 2023, 2024, 1, 0, 0, 0, 2024, 2145, 5, 882, 0, 0, 2025, 2026, 7, 28, 0, 0, 2026, 2028, 5, 367, 0, 0, 2027, 2029, 5, 857, 0, 0, 2028, 2027, 1, 0, 0, 0, 2028, 2029, 1, 0, 0, 0, 2029, 2030, 1, 0, 0, 0, 2030, 2145, 5, 882, 0, 0, 2031, 2033, 5, 365, 0, 0, 2032, 2034, 5, 857, 0, 0, 2033, 2032, 1, 0, 0, 0, 2033, 2034, 1, 0, 0, 0, 2034, 2035, 1, 0, 0, 0, 2035, 2145, 7, 26, 0, 0, 2036, 2038, 5, 376, 0, 0, 2037, 2039, 5, 857, 0, 0, 2038, 2037, 1, 0, 0, 0, 2038, 2039, 1, 0, 0, 0, 2039, 2040, 1, 0, 0, 0, 2040, 2145, 5, 882, 0, 0, 2041, 2043, 7, 29, 0, 0, 2042, 2044, 5, 857, 0, 0, 2043, 2042, 1, 0, 0, 0, 2043, 2044, 1, 0, 0, 0, 2044, 2045, 1, 0, 0, 0, 2045, 2145, 7, 26, 0, 0, 2046, 2048, 7, 30, 0, 0, 2047, 2049, 5, 857, 0, 0, 2048, 2047, 1, 0, 0, 0, 2048, 2049, 1, 0, 0, 0, 2049, 2050, 1, 0, 0, 0, 2050, 2145, 3, 728, 364, 0, 2051, 2053, 5, 377, 0, 0, 2052, 2054, 5, 857, 0, 0, 2053, 2052, 1, 0, 0, 0, 2053, 2054, 1, 0, 0, 0, 2054, 2055, 1, 0, 0, 0, 2055, 2145, 3, 728, 364, 0, 2056, 2057, 5, 82, 0, 0, 2057, 2059, 5, 367, 0, 0, 2058, 2060, 5, 857, 0, 0, 2059, 2058, 1, 0, 0, 0, 2059, 2060, 1, 0, 0, 0, 2060, 2061, 1, 0, 0, 0, 2061, 2145, 5, 882, 0, 0, 2062, 2064, 5, 431, 0, 0, 2063, 2065, 5, 857, 0, 0, 2064, 2063, 1, 0, 0, 0, 2064, 2065, 1, 0, 0, 0, 2065, 2066, 1, 0, 0, 0, 2066, 2145, 7, 31, 0, 0, 2067, 2069, 5, 443, 0, 0, 2068, 2070, 5, 857, 0, 0, 2069, 2068, 1, 0, 0, 0, 2069, 2070, 1, 0, 0, 0, 2070, 2071, 1, 0, 0, 0, 2071, 2145, 3, 730, 365, 0, 2072, 2074, 5, 480, 0, 0, 2073, 2075, 5, 857, 0, 0, 2074, 2073, 1, 0, 0, 0, 2074, 2075, 1, 0, 0, 0, 2075, 2076, 1, 0, 0, 0, 2076, 2145, 3, 728, 364, 0, 2077, 2079, 5, 490, 0, 0, 2078, 2080, 5, 857, 0, 0, 2079, 2078, 1, 0, 0, 0, 2079, 2080, 1, 0, 0, 0, 2080, 2081, 1, 0, 0, 0, 2081, 2145, 3, 728, 364, 0, 2082, 2084, 5, 520, 0, 0, 2083, 2085, 5, 857, 0, 0, 2084, 2083, 1, 0, 0, 0, 2084, 2085, 1, 0, 0, 0, 2085, 2086, 1, 0, 0, 0, 2086, 2145, 7, 14, 0, 0, 2087, 2089, 5, 529, 0, 0, 2088, 2090, 5, 857, 0, 0, 2089, 2088, 1, 0, 0, 0, 2089, 2090, 1, 0, 0, 0, 2090, 2091, 1, 0, 0, 0, 2091, 2145, 5, 882, 0, 0, 2092, 2094, 5, 588, 0, 0, 2093, 2095, 5, 857, 0, 0, 2094, 2093, 1, 0, 0, 0, 2094, 2095, 1, 0, 0, 0, 2095, 2096, 1, 0, 0, 0, 2096, 2145, 7, 32, 0, 0, 2097, 2098, 5, 640, 0, 0, 2098, 2145, 5, 664, 0, 0, 2099, 2101, 5, 833, 0, 0, 2100, 2102, 5, 857, 0, 0, 2101, 2100, 1, 0, 0, 0, 2101, 2102, 1, 0, 0, 0, 2102, 2103, 1, 0, 0, 0, 2103, 2145, 5, 882, 0, 0, 2104, 2106, 5, 642, 0, 0, 2105, 2107, 5, 857, 0, 0, 2106, 2105, 1, 0, 0, 0, 2106, 2107, 1, 0, 0, 0, 2107, 2108, 1, 0, 0, 0, 2108, 2145, 7, 14, 0, 0, 2109, 2111, 5, 643, 0, 0, 2110, 2112, 5, 857, 0, 0, 2111, 2110, 1, 0, 0, 0, 2111, 2112, 1, 0, 0, 0, 2112, 2113, 1, 0, 0, 0, 2113, 2145, 7, 14, 0, 0, 2114, 2116, 5, 644, 0, 0, 2115, 2117, 5, 857, 0, 0, 2116, 2115, 1, 0, 0, 0, 2116, 2117, 1, 0, 0, 0, 2117, 2120, 1, 0, 0, 0, 2118, 2121, 5, 42, 0, 0, 2119, 2121, 3, 728, 364, 0, 2120, 2118, 1, 0, 0, 0, 2120, 2119, 1, 0, 0, 0, 2121, 2145, 1, 0, 0, 0, 2122, 2123, 5, 658, 0, 0, 2123, 2125, 3, 682, 341, 0, 2124, 2126, 3, 108, 54, 0, 2125, 2124, 1, 0, 0, 0, 2125, 2126, 1, 0, 0, 0, 2126, 2145, 1, 0, 0, 0, 2127, 2128, 5, 659, 0, 0, 2128, 2129, 5, 857, 0, 0, 2129, 2145, 3, 106, 53, 0, 2130, 2145, 3, 108, 54, 0, 2131, 2133, 5, 665, 0, 0, 2132, 2134, 5, 857, 0, 0, 2133, 2132, 1, 0, 0, 0, 2133, 2134, 1, 0, 0, 0, 2134, 2135, 1, 0, 0, 0, 2135, 2145, 7, 26, 0, 0, 2136, 2138, 5, 181, 0, 0, 2137, 2139, 5, 857, 0, 0, 2138, 2137, 1, 0, 0, 0, 2138, 2139, 1, 0, 0, 0, 2139, 2140, 1, 0, 0, 0, 2140, 2141, 5, 866, 0, 0, 2141, 2142, 3, 660, 330, 0, 2142, 2143, 5, 867, 0, 0, 2143, 2145, 1, 0, 0, 0, 2144, 1959, 1, 0, 0, 0, 2144, 1966, 1, 0, 0, 0, 2144, 1971, 1, 0, 0, 0, 2144, 1976, 1, 0, 0, 0, 2144, 1981, 1, 0, 0, 0, 2144, 1987, 1, 0, 0, 0, 2144, 1997, 1, 0, 0, 0, 2144, 2003, 1, 0, 0, 0, 2144, 2010, 1, 0, 0, 0, 2144, 2015, 1, 0, 0, 0, 2144, 2020, 1, 0, 0, 0, 2144, 2025, 1, 0, 0, 0, 2144, 2031, 1, 0, 0, 0, 2144, 2036, 1, 0, 0, 0, 2144, 2041, 1, 0, 0, 0, 2144, 2046, 1, 0, 0, 0, 2144, 2051, 1, 0, 0, 0, 2144, 2056, 1, 0, 0, 0, 2144, 2062, 1, 0, 0, 0, 2144, 2067, 1, 0, 0, 0, 2144, 2072, 1, 0, 0, 0, 2144, 2077, 1, 0, 0, 0, 2144, 2082, 1, 0, 0, 0, 2144, 2087, 1, 0, 0, 0, 2144, 2092, 1, 0, 0, 0, 2144, 2097, 1, 0, 0, 0, 2144, 2099, 1, 0, 0, 0, 2144, 2104, 1, 0, 0, 0, 2144, 2109, 1, 0, 0, 0, 2144, 2114, 1, 0, 0, 0, 2144, 2122, 1, 0, 0, 0, 2144, 2127, 1, 0, 0, 0, 2144, 2130, 1, 0, 0, 0, 2144, 2131, 1, 0, 0, 0, 2144, 2136, 1, 0, 0, 0, 2145, 105, 1, 0, 0, 0, 2146, 2147, 7, 33, 0, 0, 2147, 107, 1, 0, 0, 0, 2148, 2149, 5, 647, 0, 0, 2149, 2150, 7, 22, 0, 0, 2150, 109, 1, 0, 0, 0, 2151, 2152, 5, 130, 0, 0, 2152, 2153, 5, 20, 0, 0, 2153, 2156, 3, 112, 56, 0, 2154, 2155, 5, 528, 0, 0, 2155, 2157, 3, 728, 364, 0, 2156, 2154, 1, 0, 0, 0, 2156, 2157, 1, 0, 0, 0, 2157, 2165, 1, 0, 0, 0, 2158, 2159, 5, 652, 0, 0, 2159, 2160, 5, 20, 0, 0, 2160, 2163, 3, 114, 57, 0, 2161, 2162, 5, 653, 0, 0, 2162, 2164, 3, 728, 364, 0, 2163, 2161, 1, 0, 0, 0, 2163, 2164, 1, 0, 0, 0, 2164, 2166, 1, 0, 0, 0, 2165, 2158, 1, 0, 0, 0, 2165, 2166, 1, 0, 0, 0, 2166, 2178, 1, 0, 0, 0, 2167, 2168, 5, 866, 0, 0, 2168, 2173, 3, 116, 58, 0, 2169, 2170, 5, 868, 0, 0, 2170, 2172, 3, 116, 58, 0, 2171, 2169, 1, 0, 0, 0, 2172, 2175, 1, 0, 0, 0, 2173, 2171, 1, 0, 0, 0, 2173, 2174, 1, 0, 0, 0, 2174, 2176, 1, 0, 0, 0, 2175, 2173, 1, 0, 0, 0, 2176, 2177, 5, 867, 0, 0, 2177, 2179, 1, 0, 0, 0, 2178, 2167, 1, 0, 0, 0, 2178, 2179, 1, 0, 0, 0, 2179, 111, 1, 0, 0, 0, 2180, 2182, 5, 101, 0, 0, 2181, 2180, 1, 0, 0, 0, 2181, 2182, 1, 0, 0, 0, 2182, 2183, 1, 0, 0, 0, 2183, 2184, 5, 418, 0, 0, 2184, 2185, 5, 866, 0, 0, 2185, 2186, 3, 820, 410, 0, 2186, 2187, 5, 867, 0, 0, 2187, 2227, 1, 0, 0, 0, 2188, 2190, 5, 101, 0, 0, 2189, 2188, 1, 0, 0, 0, 2189, 2190, 1, 0, 0, 0, 2190, 2191, 1, 0, 0, 0, 2191, 2195, 5, 92, 0, 0, 2192, 2193, 5, 308, 0, 0, 2193, 2194, 5, 857, 0, 0, 2194, 2196, 7, 34, 0, 0, 2195, 2192, 1, 0, 0, 0, 2195, 2196, 1, 0, 0, 0, 2196, 2197, 1, 0, 0, 0, 2197, 2199, 5, 866, 0, 0, 2198, 2200, 3, 670, 335, 0, 2199, 2198, 1, 0, 0, 0, 2199, 2200, 1, 0, 0, 0, 2200, 2201, 1, 0, 0, 0, 2201, 2227, 5, 867, 0, 0, 2202, 2212, 5, 134, 0, 0, 2203, 2204, 5, 866, 0, 0, 2204, 2205, 3, 820, 410, 0, 2205, 2206, 5, 867, 0, 0, 2206, 2213, 1, 0, 0, 0, 2207, 2208, 5, 337, 0, 0, 2208, 2209, 5, 866, 0, 0, 2209, 2210, 3, 670, 335, 0, 2210, 2211, 5, 867, 0, 0, 2211, 2213, 1, 0, 0, 0, 2212, 2203, 1, 0, 0, 0, 2212, 2207, 1, 0, 0, 0, 2213, 2227, 1, 0, 0, 0, 2214, 2224, 5, 449, 0, 0, 2215, 2216, 5, 866, 0, 0, 2216, 2217, 3, 820, 410, 0, 2217, 2218, 5, 867, 0, 0, 2218, 2225, 1, 0, 0, 0, 2219, 2220, 5, 337, 0, 0, 2220, 2221, 5, 866, 0, 0, 2221, 2222, 3, 670, 335, 0, 2222, 2223, 5, 867, 0, 0, 2223, 2225, 1, 0, 0, 0, 2224, 2215, 1, 0, 0, 0, 2224, 2219, 1, 0, 0, 0, 2225, 2227, 1, 0, 0, 0, 2226, 2181, 1, 0, 0, 0, 2226, 2189, 1, 0, 0, 0, 2226, 2202, 1, 0, 0, 0, 2226, 2214, 1, 0, 0, 0, 2227, 113, 1, 0, 0, 0, 2228, 2230, 5, 101, 0, 0, 2229, 2228, 1, 0, 0, 0, 2229, 2230, 1, 0, 0, 0, 2230, 2231, 1, 0, 0, 0, 2231, 2232, 5, 418, 0, 0, 2232, 2233, 5, 866, 0, 0, 2233, 2234, 3, 820, 410, 0, 2234, 2235, 5, 867, 0, 0, 2235, 2250, 1, 0, 0, 0, 2236, 2238, 5, 101, 0, 0, 2237, 2236, 1, 0, 0, 0, 2237, 2238, 1, 0, 0, 0, 2238, 2239, 1, 0, 0, 0, 2239, 2243, 5, 92, 0, 0, 2240, 2241, 5, 308, 0, 0, 2241, 2242, 5, 857, 0, 0, 2242, 2244, 7, 34, 0, 0, 2243, 2240, 1, 0, 0, 0, 2243, 2244, 1, 0, 0, 0, 2244, 2245, 1, 0, 0, 0, 2245, 2246, 5, 866, 0, 0, 2246, 2247, 3, 670, 335, 0, 2247, 2248, 5, 867, 0, 0, 2248, 2250, 1, 0, 0, 0, 2249, 2229, 1, 0, 0, 0, 2249, 2237, 1, 0, 0, 0, 2250, 115, 1, 0, 0, 0, 2251, 2252, 5, 130, 0, 0, 2252, 2253, 3, 688, 344, 0, 2253, 2254, 5, 189, 0, 0, 2254, 2255, 5, 447, 0, 0, 2255, 2256, 5, 662, 0, 0, 2256, 2257, 5, 866, 0, 0, 2257, 2262, 3, 118, 59, 0, 2258, 2259, 5, 868, 0, 0, 2259, 2261, 3, 118, 59, 0, 2260, 2258, 1, 0, 0, 0, 2261, 2264, 1, 0, 0, 0, 2262, 2260, 1, 0, 0, 0, 2262, 2263, 1, 0, 0, 0, 2263, 2265, 1, 0, 0, 0, 2264, 2262, 1, 0, 0, 0, 2265, 2269, 5, 867, 0, 0, 2266, 2268, 3, 124, 62, 0, 2267, 2266, 1, 0, 0, 0, 2268, 2271, 1, 0, 0, 0, 2269, 2267, 1, 0, 0, 0, 2269, 2270, 1, 0, 0, 0, 2270, 2283, 1, 0, 0, 0, 2271, 2269, 1, 0, 0, 0, 2272, 2273, 5, 866, 0, 0, 2273, 2278, 3, 122, 61, 0, 2274, 2275, 5, 868, 0, 0, 2275, 2277, 3, 122, 61, 0, 2276, 2274, 1, 0, 0, 0, 2277, 2280, 1, 0, 0, 0, 2278, 2276, 1, 0, 0, 0, 2278, 2279, 1, 0, 0, 0, 2279, 2281, 1, 0, 0, 0, 2280, 2278, 1, 0, 0, 0, 2281, 2282, 5, 867, 0, 0, 2282, 2284, 1, 0, 0, 0, 2283, 2272, 1, 0, 0, 0, 2283, 2284, 1, 0, 0, 0, 2284, 2398, 1, 0, 0, 0, 2285, 2286, 5, 130, 0, 0, 2286, 2287, 3, 688, 344, 0, 2287, 2288, 5, 189, 0, 0, 2288, 2289, 5, 447, 0, 0, 2289, 2290, 5, 662, 0, 0, 2290, 2294, 3, 118, 59, 0, 2291, 2293, 3, 124, 62, 0, 2292, 2291, 1, 0, 0, 0, 2293, 2296, 1, 0, 0, 0, 2294, 2292, 1, 0, 0, 0, 2294, 2295, 1, 0, 0, 0, 2295, 2308, 1, 0, 0, 0, 2296, 2294, 1, 0, 0, 0, 2297, 2298, 5, 866, 0, 0, 2298, 2303, 3, 122, 61, 0, 2299, 2300, 5, 868, 0, 0, 2300, 2302, 3, 122, 61, 0, 2301, 2299, 1, 0, 0, 0, 2302, 2305, 1, 0, 0, 0, 2303, 2301, 1, 0, 0, 0, 2303, 2304, 1, 0, 0, 0, 2304, 2306, 1, 0, 0, 0, 2305, 2303, 1, 0, 0, 0, 2306, 2307, 5, 867, 0, 0, 2307, 2309, 1, 0, 0, 0, 2308, 2297, 1, 0, 0, 0, 2308, 2309, 1, 0, 0, 0, 2309, 2398, 1, 0, 0, 0, 2310, 2311, 5, 130, 0, 0, 2311, 2312, 3, 688, 344, 0, 2312, 2313, 5, 189, 0, 0, 2313, 2314, 5, 80, 0, 0, 2314, 2315, 5, 866, 0, 0, 2315, 2320, 3, 118, 59, 0, 2316, 2317, 5, 868, 0, 0, 2317, 2319, 3, 118, 59, 0, 2318, 2316, 1, 0, 0, 0, 2319, 2322, 1, 0, 0, 0, 2320, 2318, 1, 0, 0, 0, 2320, 2321, 1, 0, 0, 0, 2321, 2323, 1, 0, 0, 0, 2322, 2320, 1, 0, 0, 0, 2323, 2327, 5, 867, 0, 0, 2324, 2326, 3, 124, 62, 0, 2325, 2324, 1, 0, 0, 0, 2326, 2329, 1, 0, 0, 0, 2327, 2325, 1, 0, 0, 0, 2327, 2328, 1, 0, 0, 0, 2328, 2341, 1, 0, 0, 0, 2329, 2327, 1, 0, 0, 0, 2330, 2331, 5, 866, 0, 0, 2331, 2336, 3, 122, 61, 0, 2332, 2333, 5, 868, 0, 0, 2333, 2335, 3, 122, 61, 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, 2339, 1, 0, 0, 0, 2338, 2336, 1, 0, 0, 0, 2339, 2340, 5, 867, 0, 0, 2340, 2342, 1, 0, 0, 0, 2341, 2330, 1, 0, 0, 0, 2341, 2342, 1, 0, 0, 0, 2342, 2398, 1, 0, 0, 0, 2343, 2344, 5, 130, 0, 0, 2344, 2345, 3, 688, 344, 0, 2345, 2346, 5, 189, 0, 0, 2346, 2347, 5, 80, 0, 0, 2347, 2348, 5, 866, 0, 0, 2348, 2353, 3, 120, 60, 0, 2349, 2350, 5, 868, 0, 0, 2350, 2352, 3, 120, 60, 0, 2351, 2349, 1, 0, 0, 0, 2352, 2355, 1, 0, 0, 0, 2353, 2351, 1, 0, 0, 0, 2353, 2354, 1, 0, 0, 0, 2354, 2356, 1, 0, 0, 0, 2355, 2353, 1, 0, 0, 0, 2356, 2360, 5, 867, 0, 0, 2357, 2359, 3, 124, 62, 0, 2358, 2357, 1, 0, 0, 0, 2359, 2362, 1, 0, 0, 0, 2360, 2358, 1, 0, 0, 0, 2360, 2361, 1, 0, 0, 0, 2361, 2374, 1, 0, 0, 0, 2362, 2360, 1, 0, 0, 0, 2363, 2364, 5, 866, 0, 0, 2364, 2369, 3, 122, 61, 0, 2365, 2366, 5, 868, 0, 0, 2366, 2368, 3, 122, 61, 0, 2367, 2365, 1, 0, 0, 0, 2368, 2371, 1, 0, 0, 0, 2369, 2367, 1, 0, 0, 0, 2369, 2370, 1, 0, 0, 0, 2370, 2372, 1, 0, 0, 0, 2371, 2369, 1, 0, 0, 0, 2372, 2373, 5, 867, 0, 0, 2373, 2375, 1, 0, 0, 0, 2374, 2363, 1, 0, 0, 0, 2374, 2375, 1, 0, 0, 0, 2375, 2398, 1, 0, 0, 0, 2376, 2377, 5, 130, 0, 0, 2377, 2381, 3, 688, 344, 0, 2378, 2380, 3, 124, 62, 0, 2379, 2378, 1, 0, 0, 0, 2380, 2383, 1, 0, 0, 0, 2381, 2379, 1, 0, 0, 0, 2381, 2382, 1, 0, 0, 0, 2382, 2395, 1, 0, 0, 0, 2383, 2381, 1, 0, 0, 0, 2384, 2385, 5, 866, 0, 0, 2385, 2390, 3, 122, 61, 0, 2386, 2387, 5, 868, 0, 0, 2387, 2389, 3, 122, 61, 0, 2388, 2386, 1, 0, 0, 0, 2389, 2392, 1, 0, 0, 0, 2390, 2388, 1, 0, 0, 0, 2390, 2391, 1, 0, 0, 0, 2391, 2393, 1, 0, 0, 0, 2392, 2390, 1, 0, 0, 0, 2393, 2394, 5, 867, 0, 0, 2394, 2396, 1, 0, 0, 0, 2395, 2384, 1, 0, 0, 0, 2395, 2396, 1, 0, 0, 0, 2396, 2398, 1, 0, 0, 0, 2397, 2251, 1, 0, 0, 0, 2397, 2285, 1, 0, 0, 0, 2397, 2310, 1, 0, 0, 0, 2397, 2343, 1, 0, 0, 0, 2397, 2376, 1, 0, 0, 0, 2398, 117, 1, 0, 0, 0, 2399, 2403, 3, 740, 370, 0, 2400, 2403, 3, 820, 410, 0, 2401, 2403, 5, 111, 0, 0, 2402, 2399, 1, 0, 0, 0, 2402, 2400, 1, 0, 0, 0, 2402, 2401, 1, 0, 0, 0, 2403, 119, 1, 0, 0, 0, 2404, 2405, 5, 866, 0, 0, 2405, 2408, 3, 118, 59, 0, 2406, 2407, 5, 868, 0, 0, 2407, 2409, 3, 118, 59, 0, 2408, 2406, 1, 0, 0, 0, 2409, 2410, 1, 0, 0, 0, 2410, 2408, 1, 0, 0, 0, 2410, 2411, 1, 0, 0, 0, 2411, 2412, 1, 0, 0, 0, 2412, 2413, 5, 867, 0, 0, 2413, 121, 1, 0, 0, 0, 2414, 2415, 5, 652, 0, 0, 2415, 2419, 3, 722, 361, 0, 2416, 2418, 3, 124, 62, 0, 2417, 2416, 1, 0, 0, 0, 2418, 2421, 1, 0, 0, 0, 2419, 2417, 1, 0, 0, 0, 2419, 2420, 1, 0, 0, 0, 2420, 123, 1, 0, 0, 0, 2421, 2419, 1, 0, 0, 0, 2422, 2424, 5, 42, 0, 0, 2423, 2422, 1, 0, 0, 0, 2423, 2424, 1, 0, 0, 0, 2424, 2426, 1, 0, 0, 0, 2425, 2427, 5, 647, 0, 0, 2426, 2425, 1, 0, 0, 0, 2426, 2427, 1, 0, 0, 0, 2427, 2428, 1, 0, 0, 0, 2428, 2430, 5, 380, 0, 0, 2429, 2431, 5, 857, 0, 0, 2430, 2429, 1, 0, 0, 0, 2430, 2431, 1, 0, 0, 0, 2431, 2432, 1, 0, 0, 0, 2432, 2471, 3, 708, 354, 0, 2433, 2435, 5, 340, 0, 0, 2434, 2436, 5, 857, 0, 0, 2435, 2434, 1, 0, 0, 0, 2435, 2436, 1, 0, 0, 0, 2436, 2437, 1, 0, 0, 0, 2437, 2471, 5, 882, 0, 0, 2438, 2439, 5, 360, 0, 0, 2439, 2441, 5, 367, 0, 0, 2440, 2442, 5, 857, 0, 0, 2441, 2440, 1, 0, 0, 0, 2441, 2442, 1, 0, 0, 0, 2442, 2443, 1, 0, 0, 0, 2443, 2471, 5, 882, 0, 0, 2444, 2445, 5, 82, 0, 0, 2445, 2447, 5, 367, 0, 0, 2446, 2448, 5, 857, 0, 0, 2447, 2446, 1, 0, 0, 0, 2447, 2448, 1, 0, 0, 0, 2448, 2449, 1, 0, 0, 0, 2449, 2471, 5, 882, 0, 0, 2450, 2452, 5, 480, 0, 0, 2451, 2453, 5, 857, 0, 0, 2452, 2451, 1, 0, 0, 0, 2452, 2453, 1, 0, 0, 0, 2453, 2454, 1, 0, 0, 0, 2454, 2471, 3, 728, 364, 0, 2455, 2457, 5, 490, 0, 0, 2456, 2458, 5, 857, 0, 0, 2457, 2456, 1, 0, 0, 0, 2457, 2458, 1, 0, 0, 0, 2458, 2459, 1, 0, 0, 0, 2459, 2471, 3, 728, 364, 0, 2460, 2462, 5, 658, 0, 0, 2461, 2463, 5, 857, 0, 0, 2462, 2461, 1, 0, 0, 0, 2462, 2463, 1, 0, 0, 0, 2463, 2464, 1, 0, 0, 0, 2464, 2471, 3, 682, 341, 0, 2465, 2467, 5, 504, 0, 0, 2466, 2468, 5, 857, 0, 0, 2467, 2466, 1, 0, 0, 0, 2467, 2468, 1, 0, 0, 0, 2468, 2469, 1, 0, 0, 0, 2469, 2471, 3, 722, 361, 0, 2470, 2423, 1, 0, 0, 0, 2470, 2433, 1, 0, 0, 0, 2470, 2438, 1, 0, 0, 0, 2470, 2444, 1, 0, 0, 0, 2470, 2450, 1, 0, 0, 0, 2470, 2455, 1, 0, 0, 0, 2470, 2460, 1, 0, 0, 0, 2470, 2465, 1, 0, 0, 0, 2471, 125, 1, 0, 0, 0, 2472, 2473, 5, 8, 0, 0, 2473, 2475, 7, 0, 0, 0, 2474, 2476, 3, 638, 319, 0, 2475, 2474, 1, 0, 0, 0, 2475, 2476, 1, 0, 0, 0, 2476, 2478, 1, 0, 0, 0, 2477, 2479, 3, 56, 28, 0, 2478, 2477, 1, 0, 0, 0, 2479, 2480, 1, 0, 0, 0, 2480, 2478, 1, 0, 0, 0, 2480, 2481, 1, 0, 0, 0, 2481, 2491, 1, 0, 0, 0, 2482, 2483, 5, 8, 0, 0, 2483, 2484, 7, 0, 0, 0, 2484, 2485, 3, 638, 319, 0, 2485, 2486, 5, 677, 0, 0, 2486, 2487, 5, 360, 0, 0, 2487, 2488, 5, 367, 0, 0, 2488, 2489, 5, 496, 0, 0, 2489, 2491, 1, 0, 0, 0, 2490, 2472, 1, 0, 0, 0, 2490, 2482, 1, 0, 0, 0, 2491, 127, 1, 0, 0, 0, 2492, 2494, 5, 8, 0, 0, 2493, 2495, 3, 62, 31, 0, 2494, 2493, 1, 0, 0, 0, 2494, 2495, 1, 0, 0, 0, 2495, 2496, 1, 0, 0, 0, 2496, 2497, 5, 385, 0, 0, 2497, 2501, 3, 718, 359, 0, 2498, 2499, 5, 119, 0, 0, 2499, 2500, 5, 590, 0, 0, 2500, 2502, 3, 64, 32, 0, 2501, 2498, 1, 0, 0, 0, 2501, 2502, 1, 0, 0, 0, 2502, 2509, 1, 0, 0, 0, 2503, 2504, 5, 119, 0, 0, 2504, 2506, 5, 343, 0, 0, 2505, 2507, 5, 114, 0, 0, 2506, 2505, 1, 0, 0, 0, 2506, 2507, 1, 0, 0, 0, 2507, 2508, 1, 0, 0, 0, 2508, 2510, 5, 541, 0, 0, 2509, 2503, 1, 0, 0, 0, 2509, 2510, 1, 0, 0, 0, 2510, 2514, 1, 0, 0, 0, 2511, 2512, 5, 141, 0, 0, 2512, 2513, 5, 176, 0, 0, 2513, 2515, 3, 718, 359, 0, 2514, 2511, 1, 0, 0, 0, 2514, 2515, 1, 0, 0, 0, 2515, 2517, 1, 0, 0, 0, 2516, 2518, 3, 72, 36, 0, 2517, 2516, 1, 0, 0, 0, 2517, 2518, 1, 0, 0, 0, 2518, 2521, 1, 0, 0, 0, 2519, 2520, 5, 340, 0, 0, 2520, 2522, 5, 882, 0, 0, 2521, 2519, 1, 0, 0, 0, 2521, 2522, 1, 0, 0, 0, 2522, 2525, 1, 0, 0, 0, 2523, 2524, 5, 371, 0, 0, 2524, 2526, 3, 432, 216, 0, 2525, 2523, 1, 0, 0, 0, 2525, 2526, 1, 0, 0, 0, 2526, 129, 1, 0, 0, 0, 2527, 2528, 5, 8, 0, 0, 2528, 2529, 5, 409, 0, 0, 2529, 2533, 3, 642, 321, 0, 2530, 2532, 3, 82, 41, 0, 2531, 2530, 1, 0, 0, 0, 2532, 2535, 1, 0, 0, 0, 2533, 2531, 1, 0, 0, 0, 2533, 2534, 1, 0, 0, 0, 2534, 131, 1, 0, 0, 0, 2535, 2533, 1, 0, 0, 0, 2536, 2537, 5, 8, 0, 0, 2537, 2538, 5, 433, 0, 0, 2538, 2539, 5, 585, 0, 0, 2539, 2540, 5, 801, 0, 0, 2540, 2541, 5, 453, 0, 0, 2541, 2542, 5, 92, 0, 0, 2542, 133, 1, 0, 0, 0, 2543, 2544, 5, 8, 0, 0, 2544, 2545, 5, 451, 0, 0, 2545, 2546, 5, 74, 0, 0, 2546, 2547, 3, 722, 361, 0, 2547, 2548, 5, 6, 0, 0, 2548, 2549, 5, 671, 0, 0, 2549, 2555, 5, 882, 0, 0, 2550, 2552, 5, 428, 0, 0, 2551, 2553, 5, 857, 0, 0, 2552, 2551, 1, 0, 0, 0, 2552, 2553, 1, 0, 0, 0, 2553, 2554, 1, 0, 0, 0, 2554, 2556, 3, 730, 365, 0, 2555, 2550, 1, 0, 0, 0, 2555, 2556, 1, 0, 0, 0, 2556, 2558, 1, 0, 0, 0, 2557, 2559, 5, 687, 0, 0, 2558, 2557, 1, 0, 0, 0, 2558, 2559, 1, 0, 0, 0, 2559, 2560, 1, 0, 0, 0, 2560, 2562, 5, 380, 0, 0, 2561, 2563, 5, 857, 0, 0, 2562, 2561, 1, 0, 0, 0, 2562, 2563, 1, 0, 0, 0, 2563, 2564, 1, 0, 0, 0, 2564, 2565, 3, 708, 354, 0, 2565, 135, 1, 0, 0, 0, 2566, 2567, 5, 8, 0, 0, 2567, 2568, 5, 132, 0, 0, 2568, 2572, 3, 718, 359, 0, 2569, 2571, 3, 82, 41, 0, 2570, 2569, 1, 0, 0, 0, 2571, 2574, 1, 0, 0, 0, 2572, 2570, 1, 0, 0, 0, 2572, 2573, 1, 0, 0, 0, 2573, 137, 1, 0, 0, 0, 2574, 2572, 1, 0, 0, 0, 2575, 2576, 5, 8, 0, 0, 2576, 2577, 5, 592, 0, 0, 2577, 2578, 3, 722, 361, 0, 2578, 2579, 5, 518, 0, 0, 2579, 2580, 5, 866, 0, 0, 2580, 2585, 3, 84, 42, 0, 2581, 2582, 5, 868, 0, 0, 2582, 2584, 3, 84, 42, 0, 2583, 2581, 1, 0, 0, 0, 2584, 2587, 1, 0, 0, 0, 2585, 2583, 1, 0, 0, 0, 2585, 2586, 1, 0, 0, 0, 2586, 2588, 1, 0, 0, 0, 2587, 2585, 1, 0, 0, 0, 2588, 2589, 5, 867, 0, 0, 2589, 139, 1, 0, 0, 0, 2590, 2591, 5, 8, 0, 0, 2591, 2592, 5, 173, 0, 0, 2592, 2601, 3, 662, 331, 0, 2593, 2598, 3, 146, 73, 0, 2594, 2595, 5, 868, 0, 0, 2595, 2597, 3, 146, 73, 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, 2602, 1, 0, 0, 0, 2600, 2598, 1, 0, 0, 0, 2601, 2593, 1, 0, 0, 0, 2601, 2602, 1, 0, 0, 0, 2602, 2610, 1, 0, 0, 0, 2603, 2607, 3, 148, 74, 0, 2604, 2606, 3, 148, 74, 0, 2605, 2604, 1, 0, 0, 0, 2606, 2609, 1, 0, 0, 0, 2607, 2605, 1, 0, 0, 0, 2607, 2608, 1, 0, 0, 0, 2608, 2611, 1, 0, 0, 0, 2609, 2607, 1, 0, 0, 0, 2610, 2603, 1, 0, 0, 0, 2610, 2611, 1, 0, 0, 0, 2611, 141, 1, 0, 0, 0, 2612, 2614, 5, 8, 0, 0, 2613, 2615, 5, 180, 0, 0, 2614, 2613, 1, 0, 0, 0, 2614, 2615, 1, 0, 0, 0, 2615, 2616, 1, 0, 0, 0, 2616, 2617, 5, 658, 0, 0, 2617, 2618, 3, 682, 341, 0, 2618, 2619, 7, 35, 0, 0, 2619, 2620, 5, 361, 0, 0, 2620, 2626, 5, 882, 0, 0, 2621, 2623, 5, 428, 0, 0, 2622, 2624, 5, 857, 0, 0, 2623, 2622, 1, 0, 0, 0, 2623, 2624, 1, 0, 0, 0, 2624, 2625, 1, 0, 0, 0, 2625, 2627, 3, 730, 365, 0, 2626, 2621, 1, 0, 0, 0, 2626, 2627, 1, 0, 0, 0, 2627, 2629, 1, 0, 0, 0, 2628, 2630, 5, 687, 0, 0, 2629, 2628, 1, 0, 0, 0, 2629, 2630, 1, 0, 0, 0, 2630, 2634, 1, 0, 0, 0, 2631, 2632, 5, 141, 0, 0, 2632, 2633, 5, 176, 0, 0, 2633, 2635, 3, 680, 340, 0, 2634, 2631, 1, 0, 0, 0, 2634, 2635, 1, 0, 0, 0, 2635, 2641, 1, 0, 0, 0, 2636, 2638, 5, 314, 0, 0, 2637, 2639, 5, 857, 0, 0, 2638, 2637, 1, 0, 0, 0, 2638, 2639, 1, 0, 0, 0, 2639, 2640, 1, 0, 0, 0, 2640, 2642, 3, 730, 365, 0, 2641, 2636, 1, 0, 0, 0, 2641, 2642, 1, 0, 0, 0, 2642, 2645, 1, 0, 0, 0, 2643, 2644, 5, 155, 0, 0, 2644, 2646, 7, 36, 0, 0, 2645, 2643, 1, 0, 0, 0, 2645, 2646, 1, 0, 0, 0, 2646, 2652, 1, 0, 0, 0, 2647, 2649, 5, 376, 0, 0, 2648, 2650, 5, 857, 0, 0, 2649, 2648, 1, 0, 0, 0, 2649, 2650, 1, 0, 0, 0, 2650, 2651, 1, 0, 0, 0, 2651, 2653, 5, 882, 0, 0, 2652, 2647, 1, 0, 0, 0, 2652, 2653, 1, 0, 0, 0, 2653, 2659, 1, 0, 0, 0, 2654, 2656, 5, 380, 0, 0, 2655, 2657, 5, 857, 0, 0, 2656, 2655, 1, 0, 0, 0, 2656, 2657, 1, 0, 0, 0, 2657, 2658, 1, 0, 0, 0, 2658, 2660, 3, 708, 354, 0, 2659, 2654, 1, 0, 0, 0, 2659, 2660, 1, 0, 0, 0, 2660, 2666, 1, 0, 0, 0, 2661, 2663, 5, 825, 0, 0, 2662, 2664, 5, 857, 0, 0, 2663, 2662, 1, 0, 0, 0, 2663, 2664, 1, 0, 0, 0, 2664, 2665, 1, 0, 0, 0, 2665, 2667, 5, 882, 0, 0, 2666, 2661, 1, 0, 0, 0, 2666, 2667, 1, 0, 0, 0, 2667, 143, 1, 0, 0, 0, 2668, 2672, 5, 8, 0, 0, 2669, 2670, 5, 308, 0, 0, 2670, 2671, 5, 857, 0, 0, 2671, 2673, 7, 11, 0, 0, 2672, 2669, 1, 0, 0, 0, 2672, 2673, 1, 0, 0, 0, 2673, 2675, 1, 0, 0, 0, 2674, 2676, 3, 62, 31, 0, 2675, 2674, 1, 0, 0, 0, 2675, 2676, 1, 0, 0, 0, 2676, 2680, 1, 0, 0, 0, 2677, 2678, 5, 162, 0, 0, 2678, 2679, 5, 591, 0, 0, 2679, 2681, 7, 12, 0, 0, 2680, 2677, 1, 0, 0, 0, 2680, 2681, 1, 0, 0, 0, 2681, 2682, 1, 0, 0, 0, 2682, 2683, 5, 684, 0, 0, 2683, 2688, 3, 646, 323, 0, 2684, 2685, 5, 866, 0, 0, 2685, 2686, 3, 670, 335, 0, 2686, 2687, 5, 867, 0, 0, 2687, 2689, 1, 0, 0, 0, 2688, 2684, 1, 0, 0, 0, 2688, 2689, 1, 0, 0, 0, 2689, 2690, 1, 0, 0, 0, 2690, 2691, 5, 13, 0, 0, 2691, 2698, 3, 210, 105, 0, 2692, 2694, 5, 194, 0, 0, 2693, 2695, 7, 13, 0, 0, 2694, 2693, 1, 0, 0, 0, 2694, 2695, 1, 0, 0, 0, 2695, 2696, 1, 0, 0, 0, 2696, 2697, 5, 27, 0, 0, 2697, 2699, 5, 121, 0, 0, 2698, 2692, 1, 0, 0, 0, 2698, 2699, 1, 0, 0, 0, 2699, 145, 1, 0, 0, 0, 2700, 2707, 3, 104, 52, 0, 2701, 2703, 5, 868, 0, 0, 2702, 2701, 1, 0, 0, 0, 2702, 2703, 1, 0, 0, 0, 2703, 2704, 1, 0, 0, 0, 2704, 2706, 3, 104, 52, 0, 2705, 2702, 1, 0, 0, 0, 2706, 2709, 1, 0, 0, 0, 2707, 2705, 1, 0, 0, 0, 2707, 2708, 1, 0, 0, 0, 2708, 2965, 1, 0, 0, 0, 2709, 2707, 1, 0, 0, 0, 2710, 2712, 5, 6, 0, 0, 2711, 2713, 5, 29, 0, 0, 2712, 2711, 1, 0, 0, 0, 2712, 2713, 1, 0, 0, 0, 2713, 2714, 1, 0, 0, 0, 2714, 2715, 3, 674, 337, 0, 2715, 2719, 3, 94, 47, 0, 2716, 2720, 5, 402, 0, 0, 2717, 2718, 5, 306, 0, 0, 2718, 2720, 3, 674, 337, 0, 2719, 2716, 1, 0, 0, 0, 2719, 2717, 1, 0, 0, 0, 2719, 2720, 1, 0, 0, 0, 2720, 2965, 1, 0, 0, 0, 2721, 2723, 5, 6, 0, 0, 2722, 2724, 5, 29, 0, 0, 2723, 2722, 1, 0, 0, 0, 2723, 2724, 1, 0, 0, 0, 2724, 2725, 1, 0, 0, 0, 2725, 2726, 5, 866, 0, 0, 2726, 2727, 3, 674, 337, 0, 2727, 2734, 3, 94, 47, 0, 2728, 2729, 5, 868, 0, 0, 2729, 2730, 3, 674, 337, 0, 2730, 2731, 3, 94, 47, 0, 2731, 2733, 1, 0, 0, 0, 2732, 2728, 1, 0, 0, 0, 2733, 2736, 1, 0, 0, 0, 2734, 2732, 1, 0, 0, 0, 2734, 2735, 1, 0, 0, 0, 2735, 2737, 1, 0, 0, 0, 2736, 2734, 1, 0, 0, 0, 2737, 2738, 5, 867, 0, 0, 2738, 2965, 1, 0, 0, 0, 2739, 2740, 5, 6, 0, 0, 2740, 2742, 7, 19, 0, 0, 2741, 2743, 3, 652, 326, 0, 2742, 2741, 1, 0, 0, 0, 2742, 2743, 1, 0, 0, 0, 2743, 2745, 1, 0, 0, 0, 2744, 2746, 3, 74, 37, 0, 2745, 2744, 1, 0, 0, 0, 2745, 2746, 1, 0, 0, 0, 2746, 2747, 1, 0, 0, 0, 2747, 2751, 3, 754, 377, 0, 2748, 2750, 3, 76, 38, 0, 2749, 2748, 1, 0, 0, 0, 2750, 2753, 1, 0, 0, 0, 2751, 2749, 1, 0, 0, 0, 2751, 2752, 1, 0, 0, 0, 2752, 2965, 1, 0, 0, 0, 2753, 2751, 1, 0, 0, 0, 2754, 2755, 5, 6, 0, 0, 2755, 2757, 7, 20, 0, 0, 2756, 2758, 7, 19, 0, 0, 2757, 2756, 1, 0, 0, 0, 2757, 2758, 1, 0, 0, 0, 2758, 2760, 1, 0, 0, 0, 2759, 2761, 3, 652, 326, 0, 2760, 2759, 1, 0, 0, 0, 2760, 2761, 1, 0, 0, 0, 2761, 2762, 1, 0, 0, 0, 2762, 2766, 3, 754, 377, 0, 2763, 2765, 3, 76, 38, 0, 2764, 2763, 1, 0, 0, 0, 2765, 2768, 1, 0, 0, 0, 2766, 2764, 1, 0, 0, 0, 2766, 2767, 1, 0, 0, 0, 2767, 2965, 1, 0, 0, 0, 2768, 2766, 1, 0, 0, 0, 2769, 2774, 5, 6, 0, 0, 2770, 2772, 5, 31, 0, 0, 2771, 2773, 3, 722, 361, 0, 2772, 2771, 1, 0, 0, 0, 2772, 2773, 1, 0, 0, 0, 2773, 2775, 1, 0, 0, 0, 2774, 2770, 1, 0, 0, 0, 2774, 2775, 1, 0, 0, 0, 2775, 2776, 1, 0, 0, 0, 2776, 2777, 5, 131, 0, 0, 2777, 2779, 5, 92, 0, 0, 2778, 2780, 3, 74, 37, 0, 2779, 2778, 1, 0, 0, 0, 2779, 2780, 1, 0, 0, 0, 2780, 2781, 1, 0, 0, 0, 2781, 2785, 3, 754, 377, 0, 2782, 2784, 3, 76, 38, 0, 2783, 2782, 1, 0, 0, 0, 2784, 2787, 1, 0, 0, 0, 2785, 2783, 1, 0, 0, 0, 2785, 2786, 1, 0, 0, 0, 2786, 2965, 1, 0, 0, 0, 2787, 2785, 1, 0, 0, 0, 2788, 2793, 5, 6, 0, 0, 2789, 2791, 5, 31, 0, 0, 2790, 2792, 3, 722, 361, 0, 2791, 2790, 1, 0, 0, 0, 2791, 2792, 1, 0, 0, 0, 2792, 2794, 1, 0, 0, 0, 2793, 2789, 1, 0, 0, 0, 2793, 2794, 1, 0, 0, 0, 2794, 2795, 1, 0, 0, 0, 2795, 2797, 5, 182, 0, 0, 2796, 2798, 7, 19, 0, 0, 2797, 2796, 1, 0, 0, 0, 2797, 2798, 1, 0, 0, 0, 2798, 2800, 1, 0, 0, 0, 2799, 2801, 3, 652, 326, 0, 2800, 2799, 1, 0, 0, 0, 2800, 2801, 1, 0, 0, 0, 2801, 2803, 1, 0, 0, 0, 2802, 2804, 3, 74, 37, 0, 2803, 2802, 1, 0, 0, 0, 2803, 2804, 1, 0, 0, 0, 2804, 2805, 1, 0, 0, 0, 2805, 2809, 3, 754, 377, 0, 2806, 2808, 3, 76, 38, 0, 2807, 2806, 1, 0, 0, 0, 2808, 2811, 1, 0, 0, 0, 2809, 2807, 1, 0, 0, 0, 2809, 2810, 1, 0, 0, 0, 2810, 2965, 1, 0, 0, 0, 2811, 2809, 1, 0, 0, 0, 2812, 2817, 5, 6, 0, 0, 2813, 2815, 5, 31, 0, 0, 2814, 2816, 3, 722, 361, 0, 2815, 2814, 1, 0, 0, 0, 2815, 2816, 1, 0, 0, 0, 2816, 2818, 1, 0, 0, 0, 2817, 2813, 1, 0, 0, 0, 2817, 2818, 1, 0, 0, 0, 2818, 2819, 1, 0, 0, 0, 2819, 2820, 5, 67, 0, 0, 2820, 2822, 5, 92, 0, 0, 2821, 2823, 3, 652, 326, 0, 2822, 2821, 1, 0, 0, 0, 2822, 2823, 1, 0, 0, 0, 2823, 2824, 1, 0, 0, 0, 2824, 2825, 3, 754, 377, 0, 2825, 2826, 3, 98, 49, 0, 2826, 2965, 1, 0, 0, 0, 2827, 2829, 5, 6, 0, 0, 2828, 2830, 3, 90, 45, 0, 2829, 2828, 1, 0, 0, 0, 2829, 2830, 1, 0, 0, 0, 2830, 2965, 1, 0, 0, 0, 2831, 2832, 5, 51, 0, 0, 2832, 2833, 7, 37, 0, 0, 2833, 2965, 3, 722, 361, 0, 2834, 2835, 5, 8, 0, 0, 2835, 2836, 7, 37, 0, 0, 2836, 2838, 3, 722, 361, 0, 2837, 2839, 5, 114, 0, 0, 2838, 2837, 1, 0, 0, 0, 2838, 2839, 1, 0, 0, 0, 2839, 2841, 1, 0, 0, 0, 2840, 2842, 5, 57, 0, 0, 2841, 2840, 1, 0, 0, 0, 2841, 2842, 1, 0, 0, 0, 2842, 2965, 1, 0, 0, 0, 2843, 2845, 5, 308, 0, 0, 2844, 2846, 5, 857, 0, 0, 2845, 2844, 1, 0, 0, 0, 2845, 2846, 1, 0, 0, 0, 2846, 2847, 1, 0, 0, 0, 2847, 2965, 7, 38, 0, 0, 2848, 2850, 5, 8, 0, 0, 2849, 2851, 5, 29, 0, 0, 2850, 2849, 1, 0, 0, 0, 2850, 2851, 1, 0, 0, 0, 2851, 2852, 1, 0, 0, 0, 2852, 2860, 3, 674, 337, 0, 2853, 2854, 5, 155, 0, 0, 2854, 2855, 5, 42, 0, 0, 2855, 2861, 3, 770, 385, 0, 2856, 2857, 5, 155, 0, 0, 2857, 2861, 7, 17, 0, 0, 2858, 2859, 5, 51, 0, 0, 2859, 2861, 5, 42, 0, 0, 2860, 2853, 1, 0, 0, 0, 2860, 2856, 1, 0, 0, 0, 2860, 2858, 1, 0, 0, 0, 2861, 2965, 1, 0, 0, 0, 2862, 2863, 5, 8, 0, 0, 2863, 2864, 5, 82, 0, 0, 2864, 2865, 3, 652, 326, 0, 2865, 2866, 7, 17, 0, 0, 2866, 2965, 1, 0, 0, 0, 2867, 2869, 5, 25, 0, 0, 2868, 2870, 5, 29, 0, 0, 2869, 2868, 1, 0, 0, 0, 2869, 2870, 1, 0, 0, 0, 2870, 2871, 1, 0, 0, 0, 2871, 2872, 3, 674, 337, 0, 2872, 2873, 3, 668, 334, 0, 2873, 2877, 3, 94, 47, 0, 2874, 2878, 5, 402, 0, 0, 2875, 2876, 5, 306, 0, 0, 2876, 2878, 3, 674, 337, 0, 2877, 2874, 1, 0, 0, 0, 2877, 2875, 1, 0, 0, 0, 2877, 2878, 1, 0, 0, 0, 2878, 2965, 1, 0, 0, 0, 2879, 2881, 5, 42, 0, 0, 2880, 2879, 1, 0, 0, 0, 2880, 2881, 1, 0, 0, 0, 2881, 2882, 1, 0, 0, 0, 2882, 2883, 5, 26, 0, 0, 2883, 2884, 5, 155, 0, 0, 2884, 2885, 5, 857, 0, 0, 2885, 2891, 3, 704, 352, 0, 2886, 2888, 5, 28, 0, 0, 2887, 2889, 5, 857, 0, 0, 2888, 2887, 1, 0, 0, 0, 2888, 2889, 1, 0, 0, 0, 2889, 2890, 1, 0, 0, 0, 2890, 2892, 3, 706, 353, 0, 2891, 2886, 1, 0, 0, 0, 2891, 2892, 1, 0, 0, 0, 2892, 2965, 1, 0, 0, 0, 2893, 2894, 5, 33, 0, 0, 2894, 2898, 5, 176, 0, 0, 2895, 2899, 5, 823, 0, 0, 2896, 2897, 5, 26, 0, 0, 2897, 2899, 5, 155, 0, 0, 2898, 2895, 1, 0, 0, 0, 2898, 2896, 1, 0, 0, 0, 2899, 2900, 1, 0, 0, 0, 2900, 2903, 3, 704, 352, 0, 2901, 2902, 5, 28, 0, 0, 2902, 2904, 3, 706, 353, 0, 2903, 2901, 1, 0, 0, 0, 2903, 2904, 1, 0, 0, 0, 2904, 2965, 1, 0, 0, 0, 2905, 2906, 7, 39, 0, 0, 2906, 2965, 5, 93, 0, 0, 2907, 2908, 7, 40, 0, 0, 2908, 2965, 5, 658, 0, 0, 2909, 2911, 5, 51, 0, 0, 2910, 2912, 5, 29, 0, 0, 2911, 2910, 1, 0, 0, 0, 2911, 2912, 1, 0, 0, 0, 2912, 2913, 1, 0, 0, 0, 2913, 2965, 3, 674, 337, 0, 2914, 2915, 5, 51, 0, 0, 2915, 2916, 7, 19, 0, 0, 2916, 2965, 3, 652, 326, 0, 2917, 2918, 5, 51, 0, 0, 2918, 2919, 5, 131, 0, 0, 2919, 2965, 5, 92, 0, 0, 2920, 2921, 5, 51, 0, 0, 2921, 2922, 5, 67, 0, 0, 2922, 2923, 5, 92, 0, 0, 2923, 2965, 3, 722, 361, 0, 2924, 2965, 5, 66, 0, 0, 2925, 2927, 5, 104, 0, 0, 2926, 2928, 5, 857, 0, 0, 2927, 2926, 1, 0, 0, 0, 2927, 2928, 1, 0, 0, 0, 2928, 2929, 1, 0, 0, 0, 2929, 2965, 7, 4, 0, 0, 2930, 2932, 5, 492, 0, 0, 2931, 2933, 5, 29, 0, 0, 2932, 2931, 1, 0, 0, 0, 2932, 2933, 1, 0, 0, 0, 2933, 2934, 1, 0, 0, 0, 2934, 2935, 3, 674, 337, 0, 2935, 2939, 3, 94, 47, 0, 2936, 2940, 5, 402, 0, 0, 2937, 2938, 5, 306, 0, 0, 2938, 2940, 3, 674, 337, 0, 2939, 2936, 1, 0, 0, 0, 2939, 2937, 1, 0, 0, 0, 2939, 2940, 1, 0, 0, 0, 2940, 2965, 1, 0, 0, 0, 2941, 2942, 5, 125, 0, 0, 2942, 2943, 5, 20, 0, 0, 2943, 2965, 3, 670, 335, 0, 2944, 2945, 5, 141, 0, 0, 2945, 2946, 5, 29, 0, 0, 2946, 2947, 3, 674, 337, 0, 2947, 2948, 5, 176, 0, 0, 2948, 2949, 3, 668, 334, 0, 2949, 2965, 1, 0, 0, 0, 2950, 2951, 5, 141, 0, 0, 2951, 2952, 7, 19, 0, 0, 2952, 2953, 3, 652, 326, 0, 2953, 2954, 5, 176, 0, 0, 2954, 2955, 3, 648, 324, 0, 2955, 2965, 1, 0, 0, 0, 2956, 2958, 5, 141, 0, 0, 2957, 2959, 7, 41, 0, 0, 2958, 2957, 1, 0, 0, 0, 2958, 2959, 1, 0, 0, 0, 2959, 2960, 1, 0, 0, 0, 2960, 2965, 3, 658, 329, 0, 2961, 2962, 7, 42, 0, 0, 2962, 2965, 5, 681, 0, 0, 2963, 2965, 3, 148, 74, 0, 2964, 2700, 1, 0, 0, 0, 2964, 2710, 1, 0, 0, 0, 2964, 2721, 1, 0, 0, 0, 2964, 2739, 1, 0, 0, 0, 2964, 2754, 1, 0, 0, 0, 2964, 2769, 1, 0, 0, 0, 2964, 2788, 1, 0, 0, 0, 2964, 2812, 1, 0, 0, 0, 2964, 2827, 1, 0, 0, 0, 2964, 2831, 1, 0, 0, 0, 2964, 2834, 1, 0, 0, 0, 2964, 2843, 1, 0, 0, 0, 2964, 2848, 1, 0, 0, 0, 2964, 2862, 1, 0, 0, 0, 2964, 2867, 1, 0, 0, 0, 2964, 2880, 1, 0, 0, 0, 2964, 2893, 1, 0, 0, 0, 2964, 2905, 1, 0, 0, 0, 2964, 2907, 1, 0, 0, 0, 2964, 2909, 1, 0, 0, 0, 2964, 2914, 1, 0, 0, 0, 2964, 2917, 1, 0, 0, 0, 2964, 2920, 1, 0, 0, 0, 2964, 2924, 1, 0, 0, 0, 2964, 2925, 1, 0, 0, 0, 2964, 2930, 1, 0, 0, 0, 2964, 2941, 1, 0, 0, 0, 2964, 2944, 1, 0, 0, 0, 2964, 2950, 1, 0, 0, 0, 2964, 2956, 1, 0, 0, 0, 2964, 2961, 1, 0, 0, 0, 2964, 2963, 1, 0, 0, 0, 2965, 147, 1, 0, 0, 0, 2966, 2967, 5, 6, 0, 0, 2967, 2968, 5, 130, 0, 0, 2968, 2969, 5, 866, 0, 0, 2969, 2974, 3, 116, 58, 0, 2970, 2971, 5, 868, 0, 0, 2971, 2973, 3, 116, 58, 0, 2972, 2970, 1, 0, 0, 0, 2973, 2976, 1, 0, 0, 0, 2974, 2972, 1, 0, 0, 0, 2974, 2975, 1, 0, 0, 0, 2975, 2977, 1, 0, 0, 0, 2976, 2974, 1, 0, 0, 0, 2977, 2978, 5, 867, 0, 0, 2978, 3065, 1, 0, 0, 0, 2979, 2980, 5, 51, 0, 0, 2980, 2981, 5, 130, 0, 0, 2981, 3065, 3, 686, 343, 0, 2982, 2983, 5, 369, 0, 0, 2983, 2986, 5, 130, 0, 0, 2984, 2987, 3, 686, 343, 0, 2985, 2987, 5, 7, 0, 0, 2986, 2984, 1, 0, 0, 0, 2986, 2985, 1, 0, 0, 0, 2987, 2988, 1, 0, 0, 0, 2988, 3065, 5, 658, 0, 0, 2989, 2990, 5, 425, 0, 0, 2990, 2993, 5, 130, 0, 0, 2991, 2994, 3, 686, 343, 0, 2992, 2994, 5, 7, 0, 0, 2993, 2991, 1, 0, 0, 0, 2993, 2992, 1, 0, 0, 0, 2994, 2995, 1, 0, 0, 0, 2995, 3065, 5, 658, 0, 0, 2996, 2997, 5, 668, 0, 0, 2997, 3000, 5, 130, 0, 0, 2998, 3001, 3, 686, 343, 0, 2999, 3001, 5, 7, 0, 0, 3000, 2998, 1, 0, 0, 0, 3000, 2999, 1, 0, 0, 0, 3001, 3065, 1, 0, 0, 0, 3002, 3003, 5, 335, 0, 0, 3003, 3004, 5, 130, 0, 0, 3004, 3065, 3, 728, 364, 0, 3005, 3006, 5, 561, 0, 0, 3006, 3007, 5, 130, 0, 0, 3007, 3008, 3, 686, 343, 0, 3008, 3009, 5, 88, 0, 0, 3009, 3010, 5, 866, 0, 0, 3010, 3015, 3, 116, 58, 0, 3011, 3012, 5, 868, 0, 0, 3012, 3014, 3, 116, 58, 0, 3013, 3011, 1, 0, 0, 0, 3014, 3017, 1, 0, 0, 0, 3015, 3013, 1, 0, 0, 0, 3015, 3016, 1, 0, 0, 0, 3016, 3018, 1, 0, 0, 0, 3017, 3015, 1, 0, 0, 0, 3018, 3019, 5, 867, 0, 0, 3019, 3065, 1, 0, 0, 0, 3020, 3021, 5, 388, 0, 0, 3021, 3022, 5, 130, 0, 0, 3022, 3023, 3, 688, 344, 0, 3023, 3024, 5, 194, 0, 0, 3024, 3025, 5, 173, 0, 0, 3025, 3028, 3, 662, 331, 0, 3026, 3027, 7, 42, 0, 0, 3027, 3029, 5, 681, 0, 0, 3028, 3026, 1, 0, 0, 0, 3028, 3029, 1, 0, 0, 0, 3029, 3065, 1, 0, 0, 0, 3030, 3031, 5, 10, 0, 0, 3031, 3034, 5, 130, 0, 0, 3032, 3035, 3, 686, 343, 0, 3033, 3035, 5, 7, 0, 0, 3034, 3032, 1, 0, 0, 0, 3034, 3033, 1, 0, 0, 0, 3035, 3065, 1, 0, 0, 0, 3036, 3037, 5, 27, 0, 0, 3037, 3040, 5, 130, 0, 0, 3038, 3041, 3, 686, 343, 0, 3039, 3041, 5, 7, 0, 0, 3040, 3038, 1, 0, 0, 0, 3040, 3039, 1, 0, 0, 0, 3041, 3065, 1, 0, 0, 0, 3042, 3043, 5, 120, 0, 0, 3043, 3046, 5, 130, 0, 0, 3044, 3047, 3, 686, 343, 0, 3045, 3047, 5, 7, 0, 0, 3046, 3044, 1, 0, 0, 0, 3046, 3045, 1, 0, 0, 0, 3047, 3065, 1, 0, 0, 0, 3048, 3049, 5, 550, 0, 0, 3049, 3052, 5, 130, 0, 0, 3050, 3053, 3, 686, 343, 0, 3051, 3053, 5, 7, 0, 0, 3052, 3050, 1, 0, 0, 0, 3052, 3051, 1, 0, 0, 0, 3053, 3065, 1, 0, 0, 0, 3054, 3055, 5, 562, 0, 0, 3055, 3058, 5, 130, 0, 0, 3056, 3059, 3, 686, 343, 0, 3057, 3059, 5, 7, 0, 0, 3058, 3056, 1, 0, 0, 0, 3058, 3057, 1, 0, 0, 0, 3059, 3065, 1, 0, 0, 0, 3060, 3061, 5, 560, 0, 0, 3061, 3065, 5, 527, 0, 0, 3062, 3063, 5, 677, 0, 0, 3063, 3065, 5, 527, 0, 0, 3064, 2966, 1, 0, 0, 0, 3064, 2979, 1, 0, 0, 0, 3064, 2982, 1, 0, 0, 0, 3064, 2989, 1, 0, 0, 0, 3064, 2996, 1, 0, 0, 0, 3064, 3002, 1, 0, 0, 0, 3064, 3005, 1, 0, 0, 0, 3064, 3020, 1, 0, 0, 0, 3064, 3030, 1, 0, 0, 0, 3064, 3036, 1, 0, 0, 0, 3064, 3042, 1, 0, 0, 0, 3064, 3048, 1, 0, 0, 0, 3064, 3054, 1, 0, 0, 0, 3064, 3060, 1, 0, 0, 0, 3064, 3062, 1, 0, 0, 0, 3065, 149, 1, 0, 0, 0, 3066, 3067, 5, 51, 0, 0, 3067, 3069, 7, 0, 0, 0, 3068, 3070, 3, 774, 387, 0, 3069, 3068, 1, 0, 0, 0, 3069, 3070, 1, 0, 0, 0, 3070, 3071, 1, 0, 0, 0, 3071, 3072, 3, 638, 319, 0, 3072, 151, 1, 0, 0, 0, 3073, 3074, 5, 51, 0, 0, 3074, 3076, 5, 385, 0, 0, 3075, 3077, 3, 774, 387, 0, 3076, 3075, 1, 0, 0, 0, 3076, 3077, 1, 0, 0, 0, 3077, 3078, 1, 0, 0, 0, 3078, 3079, 3, 718, 359, 0, 3079, 153, 1, 0, 0, 0, 3080, 3081, 5, 51, 0, 0, 3081, 3083, 5, 82, 0, 0, 3082, 3084, 7, 1, 0, 0, 3083, 3082, 1, 0, 0, 0, 3083, 3084, 1, 0, 0, 0, 3084, 3085, 1, 0, 0, 0, 3085, 3086, 3, 652, 326, 0, 3086, 3087, 5, 119, 0, 0, 3087, 3100, 3, 662, 331, 0, 3088, 3090, 5, 308, 0, 0, 3089, 3091, 5, 857, 0, 0, 3090, 3089, 1, 0, 0, 0, 3090, 3091, 1, 0, 0, 0, 3091, 3092, 1, 0, 0, 0, 3092, 3099, 7, 3, 0, 0, 3093, 3095, 5, 104, 0, 0, 3094, 3096, 5, 857, 0, 0, 3095, 3094, 1, 0, 0, 0, 3095, 3096, 1, 0, 0, 0, 3096, 3097, 1, 0, 0, 0, 3097, 3099, 7, 4, 0, 0, 3098, 3088, 1, 0, 0, 0, 3098, 3093, 1, 0, 0, 0, 3099, 3102, 1, 0, 0, 0, 3100, 3098, 1, 0, 0, 0, 3100, 3101, 1, 0, 0, 0, 3101, 155, 1, 0, 0, 0, 3102, 3100, 1, 0, 0, 0, 3103, 3104, 5, 51, 0, 0, 3104, 3105, 5, 451, 0, 0, 3105, 3106, 5, 74, 0, 0, 3106, 3107, 3, 722, 361, 0, 3107, 3109, 5, 380, 0, 0, 3108, 3110, 5, 857, 0, 0, 3109, 3108, 1, 0, 0, 0, 3109, 3110, 1, 0, 0, 0, 3110, 3111, 1, 0, 0, 0, 3111, 3112, 3, 708, 354, 0, 3112, 157, 1, 0, 0, 0, 3113, 3114, 5, 51, 0, 0, 3114, 3116, 5, 132, 0, 0, 3115, 3117, 3, 774, 387, 0, 3116, 3115, 1, 0, 0, 0, 3116, 3117, 1, 0, 0, 0, 3117, 3118, 1, 0, 0, 0, 3118, 3119, 3, 718, 359, 0, 3119, 159, 1, 0, 0, 0, 3120, 3121, 5, 51, 0, 0, 3121, 3123, 5, 409, 0, 0, 3122, 3124, 3, 774, 387, 0, 3123, 3122, 1, 0, 0, 0, 3123, 3124, 1, 0, 0, 0, 3124, 3125, 1, 0, 0, 0, 3125, 3126, 3, 642, 321, 0, 3126, 161, 1, 0, 0, 0, 3127, 3128, 5, 51, 0, 0, 3128, 3130, 5, 592, 0, 0, 3129, 3131, 3, 774, 387, 0, 3130, 3129, 1, 0, 0, 0, 3130, 3131, 1, 0, 0, 0, 3131, 3132, 1, 0, 0, 0, 3132, 3133, 3, 722, 361, 0, 3133, 163, 1, 0, 0, 0, 3134, 3135, 5, 51, 0, 0, 3135, 3136, 5, 161, 0, 0, 3136, 3137, 5, 137, 0, 0, 3137, 3139, 5, 835, 0, 0, 3138, 3140, 3, 774, 387, 0, 3139, 3138, 1, 0, 0, 0, 3139, 3140, 1, 0, 0, 0, 3140, 3141, 1, 0, 0, 0, 3141, 3142, 5, 883, 0, 0, 3142, 165, 1, 0, 0, 0, 3143, 3145, 5, 51, 0, 0, 3144, 3146, 5, 660, 0, 0, 3145, 3144, 1, 0, 0, 0, 3145, 3146, 1, 0, 0, 0, 3146, 3147, 1, 0, 0, 0, 3147, 3149, 5, 173, 0, 0, 3148, 3150, 3, 774, 387, 0, 3149, 3148, 1, 0, 0, 0, 3149, 3150, 1, 0, 0, 0, 3150, 3151, 1, 0, 0, 0, 3151, 3153, 3, 660, 330, 0, 3152, 3154, 7, 43, 0, 0, 3153, 3152, 1, 0, 0, 0, 3153, 3154, 1, 0, 0, 0, 3154, 167, 1, 0, 0, 0, 3155, 3157, 5, 51, 0, 0, 3156, 3158, 5, 180, 0, 0, 3157, 3156, 1, 0, 0, 0, 3157, 3158, 1, 0, 0, 0, 3158, 3159, 1, 0, 0, 0, 3159, 3160, 5, 658, 0, 0, 3160, 3166, 3, 682, 341, 0, 3161, 3163, 5, 380, 0, 0, 3162, 3164, 5, 857, 0, 0, 3163, 3162, 1, 0, 0, 0, 3163, 3164, 1, 0, 0, 0, 3164, 3165, 1, 0, 0, 0, 3165, 3167, 3, 708, 354, 0, 3166, 3161, 1, 0, 0, 0, 3166, 3167, 1, 0, 0, 0, 3167, 169, 1, 0, 0, 0, 3168, 3169, 5, 51, 0, 0, 3169, 3171, 5, 178, 0, 0, 3170, 3172, 3, 774, 387, 0, 3171, 3170, 1, 0, 0, 0, 3171, 3172, 1, 0, 0, 0, 3172, 3173, 1, 0, 0, 0, 3173, 3174, 3, 718, 359, 0, 3174, 171, 1, 0, 0, 0, 3175, 3176, 5, 51, 0, 0, 3176, 3178, 5, 684, 0, 0, 3177, 3179, 3, 774, 387, 0, 3178, 3177, 1, 0, 0, 0, 3178, 3179, 1, 0, 0, 0, 3179, 3180, 1, 0, 0, 0, 3180, 3185, 3, 646, 323, 0, 3181, 3182, 5, 868, 0, 0, 3182, 3184, 3, 646, 323, 0, 3183, 3181, 1, 0, 0, 0, 3184, 3187, 1, 0, 0, 0, 3185, 3183, 1, 0, 0, 0, 3185, 3186, 1, 0, 0, 0, 3186, 3189, 1, 0, 0, 0, 3187, 3185, 1, 0, 0, 0, 3188, 3190, 7, 43, 0, 0, 3189, 3188, 1, 0, 0, 0, 3189, 3190, 1, 0, 0, 0, 3190, 173, 1, 0, 0, 0, 3191, 3192, 5, 51, 0, 0, 3192, 3194, 5, 582, 0, 0, 3193, 3195, 3, 774, 387, 0, 3194, 3193, 1, 0, 0, 0, 3194, 3195, 1, 0, 0, 0, 3195, 3196, 1, 0, 0, 0, 3196, 3197, 3, 664, 332, 0, 3197, 175, 1, 0, 0, 0, 3198, 3199, 5, 155, 0, 0, 3199, 3200, 5, 42, 0, 0, 3200, 3204, 5, 582, 0, 0, 3201, 3205, 5, 505, 0, 0, 3202, 3205, 5, 7, 0, 0, 3203, 3205, 3, 664, 332, 0, 3204, 3201, 1, 0, 0, 0, 3204, 3202, 1, 0, 0, 0, 3204, 3203, 1, 0, 0, 0, 3205, 3206, 1, 0, 0, 0, 3206, 3207, 5, 176, 0, 0, 3207, 3212, 3, 666, 333, 0, 3208, 3209, 5, 868, 0, 0, 3209, 3211, 3, 666, 333, 0, 3210, 3208, 1, 0, 0, 0, 3211, 3214, 1, 0, 0, 0, 3212, 3210, 1, 0, 0, 0, 3212, 3213, 1, 0, 0, 0, 3213, 3219, 1, 0, 0, 0, 3214, 3212, 1, 0, 0, 0, 3215, 3216, 5, 155, 0, 0, 3216, 3217, 5, 582, 0, 0, 3217, 3219, 3, 478, 239, 0, 3218, 3198, 1, 0, 0, 0, 3218, 3215, 1, 0, 0, 0, 3219, 177, 1, 0, 0, 0, 3220, 3221, 5, 141, 0, 0, 3221, 3222, 5, 173, 0, 0, 3222, 3227, 3, 180, 90, 0, 3223, 3224, 5, 868, 0, 0, 3224, 3226, 3, 180, 90, 0, 3225, 3223, 1, 0, 0, 0, 3226, 3229, 1, 0, 0, 0, 3227, 3225, 1, 0, 0, 0, 3227, 3228, 1, 0, 0, 0, 3228, 179, 1, 0, 0, 0, 3229, 3227, 1, 0, 0, 0, 3230, 3231, 3, 662, 331, 0, 3231, 3232, 5, 176, 0, 0, 3232, 3233, 3, 658, 329, 0, 3233, 181, 1, 0, 0, 0, 3234, 3236, 5, 668, 0, 0, 3235, 3237, 5, 173, 0, 0, 3236, 3235, 1, 0, 0, 0, 3236, 3237, 1, 0, 0, 0, 3237, 3238, 1, 0, 0, 0, 3238, 3239, 3, 662, 331, 0, 3239, 183, 1, 0, 0, 0, 3240, 3241, 5, 21, 0, 0, 3241, 3248, 3, 718, 359, 0, 3242, 3245, 5, 866, 0, 0, 3243, 3246, 3, 764, 382, 0, 3244, 3246, 3, 756, 378, 0, 3245, 3243, 1, 0, 0, 0, 3245, 3244, 1, 0, 0, 0, 3245, 3246, 1, 0, 0, 0, 3246, 3247, 1, 0, 0, 0, 3247, 3249, 5, 867, 0, 0, 3248, 3242, 1, 0, 0, 0, 3248, 3249, 1, 0, 0, 0, 3249, 185, 1, 0, 0, 0, 3250, 3253, 3, 240, 120, 0, 3251, 3253, 3, 242, 121, 0, 3252, 3250, 1, 0, 0, 0, 3252, 3251, 1, 0, 0, 0, 3253, 187, 1, 0, 0, 0, 3254, 3255, 5, 371, 0, 0, 3255, 3256, 3, 756, 378, 0, 3256, 189, 1, 0, 0, 0, 3257, 3262, 3, 244, 122, 0, 3258, 3262, 3, 246, 123, 0, 3259, 3262, 3, 248, 124, 0, 3260, 3262, 3, 250, 125, 0, 3261, 3257, 1, 0, 0, 0, 3261, 3258, 1, 0, 0, 0, 3261, 3259, 1, 0, 0, 0, 3261, 3260, 1, 0, 0, 0, 3262, 191, 1, 0, 0, 0, 3263, 3265, 5, 86, 0, 0, 3264, 3266, 7, 44, 0, 0, 3265, 3264, 1, 0, 0, 0, 3265, 3266, 1, 0, 0, 0, 3266, 3268, 1, 0, 0, 0, 3267, 3269, 5, 79, 0, 0, 3268, 3267, 1, 0, 0, 0, 3268, 3269, 1, 0, 0, 0, 3269, 3271, 1, 0, 0, 0, 3270, 3272, 5, 88, 0, 0, 3271, 3270, 1, 0, 0, 0, 3271, 3272, 1, 0, 0, 0, 3272, 3273, 1, 0, 0, 0, 3273, 3280, 3, 662, 331, 0, 3274, 3275, 5, 130, 0, 0, 3275, 3277, 5, 866, 0, 0, 3276, 3278, 3, 686, 343, 0, 3277, 3276, 1, 0, 0, 0, 3277, 3278, 1, 0, 0, 0, 3278, 3279, 1, 0, 0, 0, 3279, 3281, 5, 867, 0, 0, 3280, 3274, 1, 0, 0, 0, 3280, 3281, 1, 0, 0, 0, 3281, 3293, 1, 0, 0, 0, 3282, 3284, 3, 270, 135, 0, 3283, 3282, 1, 0, 0, 0, 3283, 3284, 1, 0, 0, 0, 3284, 3287, 1, 0, 0, 0, 3285, 3288, 3, 758, 379, 0, 3286, 3288, 3, 196, 98, 0, 3287, 3285, 1, 0, 0, 0, 3287, 3286, 1, 0, 0, 0, 3287, 3288, 1, 0, 0, 0, 3288, 3290, 1, 0, 0, 0, 3289, 3291, 3, 194, 97, 0, 3290, 3289, 1, 0, 0, 0, 3290, 3291, 1, 0, 0, 0, 3291, 3294, 1, 0, 0, 0, 3292, 3294, 3, 232, 116, 0, 3293, 3283, 1, 0, 0, 0, 3293, 3292, 1, 0, 0, 0, 3294, 3296, 1, 0, 0, 0, 3295, 3297, 3, 194, 97, 0, 3296, 3295, 1, 0, 0, 0, 3296, 3297, 1, 0, 0, 0, 3297, 3310, 1, 0, 0, 0, 3298, 3299, 5, 119, 0, 0, 3299, 3300, 5, 373, 0, 0, 3300, 3301, 5, 92, 0, 0, 3301, 3302, 5, 185, 0, 0, 3302, 3307, 3, 234, 117, 0, 3303, 3304, 5, 868, 0, 0, 3304, 3306, 3, 234, 117, 0, 3305, 3303, 1, 0, 0, 0, 3306, 3309, 1, 0, 0, 0, 3307, 3305, 1, 0, 0, 0, 3307, 3308, 1, 0, 0, 0, 3308, 3311, 1, 0, 0, 0, 3309, 3307, 1, 0, 0, 0, 3310, 3298, 1, 0, 0, 0, 3310, 3311, 1, 0, 0, 0, 3311, 193, 1, 0, 0, 0, 3312, 3313, 5, 13, 0, 0, 3313, 3315, 3, 722, 361, 0, 3314, 3316, 3, 270, 135, 0, 3315, 3314, 1, 0, 0, 0, 3315, 3316, 1, 0, 0, 0, 3316, 195, 1, 0, 0, 0, 3317, 3322, 3, 210, 105, 0, 3318, 3319, 5, 173, 0, 0, 3319, 3322, 3, 662, 331, 0, 3320, 3322, 3, 230, 115, 0, 3321, 3317, 1, 0, 0, 0, 3321, 3318, 1, 0, 0, 0, 3321, 3320, 1, 0, 0, 0, 3322, 197, 1, 0, 0, 0, 3323, 3329, 3, 200, 100, 0, 3324, 3326, 5, 828, 0, 0, 3325, 3327, 7, 45, 0, 0, 3326, 3325, 1, 0, 0, 0, 3326, 3327, 1, 0, 0, 0, 3327, 3328, 1, 0, 0, 0, 3328, 3330, 3, 200, 100, 0, 3329, 3324, 1, 0, 0, 0, 3330, 3331, 1, 0, 0, 0, 3331, 3329, 1, 0, 0, 0, 3331, 3332, 1, 0, 0, 0, 3332, 199, 1, 0, 0, 0, 3333, 3335, 5, 866, 0, 0, 3334, 3333, 1, 0, 0, 0, 3334, 3335, 1, 0, 0, 0, 3335, 3336, 1, 0, 0, 0, 3336, 3338, 3, 282, 141, 0, 3337, 3339, 5, 867, 0, 0, 3338, 3337, 1, 0, 0, 0, 3338, 3339, 1, 0, 0, 0, 3339, 201, 1, 0, 0, 0, 3340, 3341, 5, 103, 0, 0, 3341, 3343, 5, 360, 0, 0, 3342, 3344, 7, 46, 0, 0, 3343, 3342, 1, 0, 0, 0, 3343, 3344, 1, 0, 0, 0, 3344, 3346, 1, 0, 0, 0, 3345, 3347, 5, 450, 0, 0, 3346, 3345, 1, 0, 0, 0, 3346, 3347, 1, 0, 0, 0, 3347, 3348, 1, 0, 0, 0, 3348, 3349, 5, 83, 0, 0, 3349, 3351, 5, 882, 0, 0, 3350, 3352, 7, 7, 0, 0, 3351, 3350, 1, 0, 0, 0, 3351, 3352, 1, 0, 0, 0, 3352, 3353, 1, 0, 0, 0, 3353, 3354, 5, 88, 0, 0, 3354, 3355, 5, 173, 0, 0, 3355, 3361, 3, 662, 331, 0, 3356, 3357, 5, 130, 0, 0, 3357, 3358, 5, 866, 0, 0, 3358, 3359, 3, 686, 343, 0, 3359, 3360, 5, 867, 0, 0, 3360, 3362, 1, 0, 0, 0, 3361, 3356, 1, 0, 0, 0, 3361, 3362, 1, 0, 0, 0, 3362, 3366, 1, 0, 0, 0, 3363, 3364, 5, 26, 0, 0, 3364, 3365, 5, 155, 0, 0, 3365, 3367, 3, 704, 352, 0, 3366, 3363, 1, 0, 0, 0, 3366, 3367, 1, 0, 0, 0, 3367, 3374, 1, 0, 0, 0, 3368, 3370, 7, 47, 0, 0, 3369, 3371, 3, 314, 157, 0, 3370, 3369, 1, 0, 0, 0, 3371, 3372, 1, 0, 0, 0, 3372, 3370, 1, 0, 0, 0, 3372, 3373, 1, 0, 0, 0, 3373, 3375, 1, 0, 0, 0, 3374, 3368, 1, 0, 0, 0, 3374, 3375, 1, 0, 0, 0, 3375, 3382, 1, 0, 0, 0, 3376, 3378, 5, 102, 0, 0, 3377, 3379, 3, 316, 158, 0, 3378, 3377, 1, 0, 0, 0, 3379, 3380, 1, 0, 0, 0, 3380, 3378, 1, 0, 0, 0, 3380, 3381, 1, 0, 0, 0, 3381, 3383, 1, 0, 0, 0, 3382, 3376, 1, 0, 0, 0, 3382, 3383, 1, 0, 0, 0, 3383, 3388, 1, 0, 0, 0, 3384, 3385, 5, 79, 0, 0, 3385, 3386, 3, 728, 364, 0, 3386, 3387, 7, 48, 0, 0, 3387, 3389, 1, 0, 0, 0, 3388, 3384, 1, 0, 0, 0, 3388, 3389, 1, 0, 0, 0, 3389, 3401, 1, 0, 0, 0, 3390, 3391, 5, 866, 0, 0, 3391, 3396, 3, 236, 118, 0, 3392, 3393, 5, 868, 0, 0, 3393, 3395, 3, 236, 118, 0, 3394, 3392, 1, 0, 0, 0, 3395, 3398, 1, 0, 0, 0, 3396, 3394, 1, 0, 0, 0, 3396, 3397, 1, 0, 0, 0, 3397, 3399, 1, 0, 0, 0, 3398, 3396, 1, 0, 0, 0, 3399, 3400, 5, 867, 0, 0, 3400, 3402, 1, 0, 0, 0, 3401, 3390, 1, 0, 0, 0, 3401, 3402, 1, 0, 0, 0, 3402, 3412, 1, 0, 0, 0, 3403, 3404, 5, 155, 0, 0, 3404, 3409, 3, 234, 117, 0, 3405, 3406, 5, 868, 0, 0, 3406, 3408, 3, 234, 117, 0, 3407, 3405, 1, 0, 0, 0, 3408, 3411, 1, 0, 0, 0, 3409, 3407, 1, 0, 0, 0, 3409, 3410, 1, 0, 0, 0, 3410, 3413, 1, 0, 0, 0, 3411, 3409, 1, 0, 0, 0, 3412, 3403, 1, 0, 0, 0, 3412, 3413, 1, 0, 0, 0, 3413, 203, 1, 0, 0, 0, 3414, 3415, 5, 103, 0, 0, 3415, 3417, 5, 695, 0, 0, 3416, 3418, 7, 46, 0, 0, 3417, 3416, 1, 0, 0, 0, 3417, 3418, 1, 0, 0, 0, 3418, 3420, 1, 0, 0, 0, 3419, 3421, 5, 450, 0, 0, 3420, 3419, 1, 0, 0, 0, 3420, 3421, 1, 0, 0, 0, 3421, 3422, 1, 0, 0, 0, 3422, 3423, 5, 83, 0, 0, 3423, 3425, 5, 882, 0, 0, 3424, 3426, 7, 7, 0, 0, 3425, 3424, 1, 0, 0, 0, 3425, 3426, 1, 0, 0, 0, 3426, 3427, 1, 0, 0, 0, 3427, 3428, 5, 88, 0, 0, 3428, 3429, 5, 173, 0, 0, 3429, 3433, 3, 662, 331, 0, 3430, 3431, 5, 26, 0, 0, 3431, 3432, 5, 155, 0, 0, 3432, 3434, 3, 704, 352, 0, 3433, 3430, 1, 0, 0, 0, 3433, 3434, 1, 0, 0, 0, 3434, 3445, 1, 0, 0, 0, 3435, 3436, 5, 587, 0, 0, 3436, 3437, 5, 423, 0, 0, 3437, 3439, 5, 20, 0, 0, 3438, 3440, 5, 859, 0, 0, 3439, 3438, 1, 0, 0, 0, 3439, 3440, 1, 0, 0, 0, 3440, 3441, 1, 0, 0, 0, 3441, 3443, 5, 882, 0, 0, 3442, 3444, 5, 858, 0, 0, 3443, 3442, 1, 0, 0, 0, 3443, 3444, 1, 0, 0, 0, 3444, 3446, 1, 0, 0, 0, 3445, 3435, 1, 0, 0, 0, 3445, 3446, 1, 0, 0, 0, 3446, 3451, 1, 0, 0, 0, 3447, 3448, 5, 79, 0, 0, 3448, 3449, 3, 728, 364, 0, 3449, 3450, 7, 48, 0, 0, 3450, 3452, 1, 0, 0, 0, 3451, 3447, 1, 0, 0, 0, 3451, 3452, 1, 0, 0, 0, 3452, 3464, 1, 0, 0, 0, 3453, 3454, 5, 866, 0, 0, 3454, 3459, 3, 236, 118, 0, 3455, 3456, 5, 868, 0, 0, 3456, 3458, 3, 236, 118, 0, 3457, 3455, 1, 0, 0, 0, 3458, 3461, 1, 0, 0, 0, 3459, 3457, 1, 0, 0, 0, 3459, 3460, 1, 0, 0, 0, 3460, 3462, 1, 0, 0, 0, 3461, 3459, 1, 0, 0, 0, 3462, 3463, 5, 867, 0, 0, 3463, 3465, 1, 0, 0, 0, 3464, 3453, 1, 0, 0, 0, 3464, 3465, 1, 0, 0, 0, 3465, 3475, 1, 0, 0, 0, 3466, 3467, 5, 155, 0, 0, 3467, 3472, 3, 234, 117, 0, 3468, 3469, 5, 868, 0, 0, 3469, 3471, 3, 234, 117, 0, 3470, 3468, 1, 0, 0, 0, 3471, 3474, 1, 0, 0, 0, 3472, 3470, 1, 0, 0, 0, 3472, 3473, 1, 0, 0, 0, 3473, 3476, 1, 0, 0, 0, 3474, 3472, 1, 0, 0, 0, 3475, 3466, 1, 0, 0, 0, 3475, 3476, 1, 0, 0, 0, 3476, 205, 1, 0, 0, 0, 3477, 3478, 5, 866, 0, 0, 3478, 3480, 3, 224, 112, 0, 3479, 3481, 3, 258, 129, 0, 3480, 3479, 1, 0, 0, 0, 3480, 3481, 1, 0, 0, 0, 3481, 3483, 1, 0, 0, 0, 3482, 3484, 3, 328, 164, 0, 3483, 3482, 1, 0, 0, 0, 3483, 3484, 1, 0, 0, 0, 3484, 3485, 1, 0, 0, 0, 3485, 3487, 5, 867, 0, 0, 3486, 3488, 3, 258, 129, 0, 3487, 3486, 1, 0, 0, 0, 3487, 3488, 1, 0, 0, 0, 3488, 3490, 1, 0, 0, 0, 3489, 3491, 3, 328, 164, 0, 3490, 3489, 1, 0, 0, 0, 3490, 3491, 1, 0, 0, 0, 3491, 3493, 1, 0, 0, 0, 3492, 3494, 3, 312, 156, 0, 3493, 3492, 1, 0, 0, 0, 3493, 3494, 1, 0, 0, 0, 3494, 207, 1, 0, 0, 0, 3495, 3497, 5, 143, 0, 0, 3496, 3498, 7, 49, 0, 0, 3497, 3496, 1, 0, 0, 0, 3497, 3498, 1, 0, 0, 0, 3498, 3500, 1, 0, 0, 0, 3499, 3501, 5, 88, 0, 0, 3500, 3499, 1, 0, 0, 0, 3500, 3501, 1, 0, 0, 0, 3501, 3502, 1, 0, 0, 0, 3502, 3508, 3, 662, 331, 0, 3503, 3504, 5, 130, 0, 0, 3504, 3505, 5, 866, 0, 0, 3505, 3506, 3, 686, 343, 0, 3506, 3507, 5, 867, 0, 0, 3507, 3509, 1, 0, 0, 0, 3508, 3503, 1, 0, 0, 0, 3508, 3509, 1, 0, 0, 0, 3509, 3518, 1, 0, 0, 0, 3510, 3511, 5, 866, 0, 0, 3511, 3512, 3, 670, 335, 0, 3512, 3513, 5, 867, 0, 0, 3513, 3515, 1, 0, 0, 0, 3514, 3510, 1, 0, 0, 0, 3514, 3515, 1, 0, 0, 0, 3515, 3516, 1, 0, 0, 0, 3516, 3519, 3, 228, 114, 0, 3517, 3519, 3, 232, 116, 0, 3518, 3514, 1, 0, 0, 0, 3518, 3517, 1, 0, 0, 0, 3519, 209, 1, 0, 0, 0, 3520, 3524, 3, 282, 141, 0, 3521, 3523, 3, 284, 142, 0, 3522, 3521, 1, 0, 0, 0, 3523, 3526, 1, 0, 0, 0, 3524, 3522, 1, 0, 0, 0, 3524, 3525, 1, 0, 0, 0, 3525, 3535, 1, 0, 0, 0, 3526, 3524, 1, 0, 0, 0, 3527, 3529, 5, 181, 0, 0, 3528, 3530, 7, 45, 0, 0, 3529, 3528, 1, 0, 0, 0, 3529, 3530, 1, 0, 0, 0, 3530, 3533, 1, 0, 0, 0, 3531, 3534, 3, 282, 141, 0, 3532, 3534, 3, 280, 140, 0, 3533, 3531, 1, 0, 0, 0, 3533, 3532, 1, 0, 0, 0, 3534, 3536, 1, 0, 0, 0, 3535, 3527, 1, 0, 0, 0, 3535, 3536, 1, 0, 0, 0, 3536, 3541, 1, 0, 0, 0, 3537, 3538, 5, 868, 0, 0, 3538, 3540, 3, 286, 143, 0, 3539, 3537, 1, 0, 0, 0, 3540, 3543, 1, 0, 0, 0, 3541, 3539, 1, 0, 0, 0, 3541, 3542, 1, 0, 0, 0, 3542, 3545, 1, 0, 0, 0, 3543, 3541, 1, 0, 0, 0, 3544, 3546, 3, 258, 129, 0, 3545, 3544, 1, 0, 0, 0, 3545, 3546, 1, 0, 0, 0, 3546, 3548, 1, 0, 0, 0, 3547, 3549, 3, 328, 164, 0, 3548, 3547, 1, 0, 0, 0, 3548, 3549, 1, 0, 0, 0, 3549, 3551, 1, 0, 0, 0, 3550, 3552, 3, 238, 119, 0, 3551, 3550, 1, 0, 0, 0, 3551, 3552, 1, 0, 0, 0, 3552, 3554, 1, 0, 0, 0, 3553, 3555, 3, 312, 156, 0, 3554, 3553, 1, 0, 0, 0, 3554, 3555, 1, 0, 0, 0, 3555, 3580, 1, 0, 0, 0, 3556, 3560, 3, 280, 140, 0, 3557, 3559, 3, 284, 142, 0, 3558, 3557, 1, 0, 0, 0, 3559, 3562, 1, 0, 0, 0, 3560, 3558, 1, 0, 0, 0, 3560, 3561, 1, 0, 0, 0, 3561, 3568, 1, 0, 0, 0, 3562, 3560, 1, 0, 0, 0, 3563, 3565, 5, 181, 0, 0, 3564, 3566, 7, 45, 0, 0, 3565, 3564, 1, 0, 0, 0, 3565, 3566, 1, 0, 0, 0, 3566, 3567, 1, 0, 0, 0, 3567, 3569, 3, 280, 140, 0, 3568, 3563, 1, 0, 0, 0, 3568, 3569, 1, 0, 0, 0, 3569, 3571, 1, 0, 0, 0, 3570, 3572, 3, 258, 129, 0, 3571, 3570, 1, 0, 0, 0, 3571, 3572, 1, 0, 0, 0, 3572, 3574, 1, 0, 0, 0, 3573, 3575, 3, 328, 164, 0, 3574, 3573, 1, 0, 0, 0, 3574, 3575, 1, 0, 0, 0, 3575, 3577, 1, 0, 0, 0, 3576, 3578, 3, 238, 119, 0, 3577, 3576, 1, 0, 0, 0, 3577, 3578, 1, 0, 0, 0, 3578, 3580, 1, 0, 0, 0, 3579, 3520, 1, 0, 0, 0, 3579, 3556, 1, 0, 0, 0, 3580, 211, 1, 0, 0, 0, 3581, 3583, 3, 50, 25, 0, 3582, 3581, 1, 0, 0, 0, 3582, 3583, 1, 0, 0, 0, 3583, 3584, 1, 0, 0, 0, 3584, 3586, 3, 214, 107, 0, 3585, 3587, 3, 258, 129, 0, 3586, 3585, 1, 0, 0, 0, 3586, 3587, 1, 0, 0, 0, 3587, 3589, 1, 0, 0, 0, 3588, 3590, 3, 328, 164, 0, 3589, 3588, 1, 0, 0, 0, 3589, 3590, 1, 0, 0, 0, 3590, 3592, 1, 0, 0, 0, 3591, 3593, 3, 312, 156, 0, 3592, 3591, 1, 0, 0, 0, 3592, 3593, 1, 0, 0, 0, 3593, 213, 1, 0, 0, 0, 3594, 3595, 6, 107, -1, 0, 3595, 3596, 3, 216, 108, 0, 3596, 3611, 1, 0, 0, 0, 3597, 3598, 10, 2, 0, 0, 3598, 3600, 5, 181, 0, 0, 3599, 3601, 7, 45, 0, 0, 3600, 3599, 1, 0, 0, 0, 3600, 3601, 1, 0, 0, 0, 3601, 3602, 1, 0, 0, 0, 3602, 3610, 3, 216, 108, 0, 3603, 3604, 10, 1, 0, 0, 3604, 3606, 5, 59, 0, 0, 3605, 3607, 7, 45, 0, 0, 3606, 3605, 1, 0, 0, 0, 3606, 3607, 1, 0, 0, 0, 3607, 3608, 1, 0, 0, 0, 3608, 3610, 3, 216, 108, 0, 3609, 3597, 1, 0, 0, 0, 3609, 3603, 1, 0, 0, 0, 3610, 3613, 1, 0, 0, 0, 3611, 3609, 1, 0, 0, 0, 3611, 3612, 1, 0, 0, 0, 3612, 215, 1, 0, 0, 0, 3613, 3611, 1, 0, 0, 0, 3614, 3615, 6, 108, -1, 0, 3615, 3616, 3, 218, 109, 0, 3616, 3625, 1, 0, 0, 0, 3617, 3618, 10, 1, 0, 0, 3618, 3620, 5, 828, 0, 0, 3619, 3621, 7, 45, 0, 0, 3620, 3619, 1, 0, 0, 0, 3620, 3621, 1, 0, 0, 0, 3621, 3622, 1, 0, 0, 0, 3622, 3624, 3, 218, 109, 0, 3623, 3617, 1, 0, 0, 0, 3624, 3627, 1, 0, 0, 0, 3625, 3623, 1, 0, 0, 0, 3625, 3626, 1, 0, 0, 0, 3626, 217, 1, 0, 0, 0, 3627, 3625, 1, 0, 0, 0, 3628, 3643, 3, 226, 113, 0, 3629, 3630, 5, 866, 0, 0, 3630, 3632, 3, 214, 107, 0, 3631, 3633, 3, 258, 129, 0, 3632, 3631, 1, 0, 0, 0, 3632, 3633, 1, 0, 0, 0, 3633, 3635, 1, 0, 0, 0, 3634, 3636, 3, 328, 164, 0, 3635, 3634, 1, 0, 0, 0, 3635, 3636, 1, 0, 0, 0, 3636, 3638, 1, 0, 0, 0, 3637, 3639, 3, 312, 156, 0, 3638, 3637, 1, 0, 0, 0, 3638, 3639, 1, 0, 0, 0, 3639, 3640, 1, 0, 0, 0, 3640, 3641, 5, 867, 0, 0, 3641, 3643, 1, 0, 0, 0, 3642, 3628, 1, 0, 0, 0, 3642, 3629, 1, 0, 0, 0, 3643, 219, 1, 0, 0, 0, 3644, 3647, 3, 254, 127, 0, 3645, 3647, 3, 256, 128, 0, 3646, 3644, 1, 0, 0, 0, 3646, 3645, 1, 0, 0, 0, 3647, 221, 1, 0, 0, 0, 3648, 3652, 3, 230, 115, 0, 3649, 3650, 5, 125, 0, 0, 3650, 3651, 5, 20, 0, 0, 3651, 3653, 3, 690, 345, 0, 3652, 3649, 1, 0, 0, 0, 3652, 3653, 1, 0, 0, 0, 3653, 3656, 1, 0, 0, 0, 3654, 3655, 5, 100, 0, 0, 3655, 3657, 3, 330, 165, 0, 3656, 3654, 1, 0, 0, 0, 3656, 3657, 1, 0, 0, 0, 3657, 223, 1, 0, 0, 0, 3658, 3663, 3, 226, 113, 0, 3659, 3660, 7, 50, 0, 0, 3660, 3662, 3, 226, 113, 0, 3661, 3659, 1, 0, 0, 0, 3662, 3665, 1, 0, 0, 0, 3663, 3661, 1, 0, 0, 0, 3663, 3664, 1, 0, 0, 0, 3664, 3667, 1, 0, 0, 0, 3665, 3663, 1, 0, 0, 0, 3666, 3668, 3, 258, 129, 0, 3667, 3666, 1, 0, 0, 0, 3667, 3668, 1, 0, 0, 0, 3668, 3670, 1, 0, 0, 0, 3669, 3671, 3, 328, 164, 0, 3670, 3669, 1, 0, 0, 0, 3670, 3671, 1, 0, 0, 0, 3671, 3673, 1, 0, 0, 0, 3672, 3674, 3, 312, 156, 0, 3673, 3672, 1, 0, 0, 0, 3673, 3674, 1, 0, 0, 0, 3674, 225, 1, 0, 0, 0, 3675, 3679, 3, 210, 105, 0, 3676, 3679, 3, 628, 314, 0, 3677, 3679, 3, 222, 111, 0, 3678, 3675, 1, 0, 0, 0, 3678, 3676, 1, 0, 0, 0, 3678, 3677, 1, 0, 0, 0, 3679, 227, 1, 0, 0, 0, 3680, 3686, 3, 210, 105, 0, 3681, 3682, 5, 173, 0, 0, 3682, 3686, 3, 662, 331, 0, 3683, 3686, 3, 758, 379, 0, 3684, 3686, 3, 230, 115, 0, 3685, 3680, 1, 0, 0, 0, 3685, 3681, 1, 0, 0, 0, 3685, 3683, 1, 0, 0, 0, 3685, 3684, 1, 0, 0, 0, 3686, 229, 1, 0, 0, 0, 3687, 3688, 5, 189, 0, 0, 3688, 3689, 5, 586, 0, 0, 3689, 3695, 3, 760, 380, 0, 3690, 3691, 5, 868, 0, 0, 3691, 3692, 5, 586, 0, 0, 3692, 3694, 3, 760, 380, 0, 3693, 3690, 1, 0, 0, 0, 3694, 3697, 1, 0, 0, 0, 3695, 3693, 1, 0, 0, 0, 3695, 3696, 1, 0, 0, 0, 3696, 231, 1, 0, 0, 0, 3697, 3695, 1, 0, 0, 0, 3698, 3699, 5, 155, 0, 0, 3699, 3704, 3, 234, 117, 0, 3700, 3701, 5, 868, 0, 0, 3701, 3703, 3, 234, 117, 0, 3702, 3700, 1, 0, 0, 0, 3703, 3706, 1, 0, 0, 0, 3704, 3702, 1, 0, 0, 0, 3704, 3705, 1, 0, 0, 0, 3705, 233, 1, 0, 0, 0, 3706, 3704, 1, 0, 0, 0, 3707, 3708, 3, 674, 337, 0, 3708, 3709, 5, 857, 0, 0, 3709, 3710, 3, 762, 381, 0, 3710, 235, 1, 0, 0, 0, 3711, 3714, 3, 722, 361, 0, 3712, 3714, 5, 892, 0, 0, 3713, 3711, 1, 0, 0, 0, 3713, 3712, 1, 0, 0, 0, 3714, 237, 1, 0, 0, 0, 3715, 3716, 5, 65, 0, 0, 3716, 3726, 7, 51, 0, 0, 3717, 3718, 5, 510, 0, 0, 3718, 3723, 3, 662, 331, 0, 3719, 3720, 5, 868, 0, 0, 3720, 3722, 3, 662, 331, 0, 3721, 3719, 1, 0, 0, 0, 3722, 3725, 1, 0, 0, 0, 3723, 3721, 1, 0, 0, 0, 3723, 3724, 1, 0, 0, 0, 3724, 3727, 1, 0, 0, 0, 3725, 3723, 1, 0, 0, 0, 3726, 3717, 1, 0, 0, 0, 3726, 3727, 1, 0, 0, 0, 3727, 3730, 1, 0, 0, 0, 3728, 3729, 7, 52, 0, 0, 3729, 3731, 5, 105, 0, 0, 3730, 3728, 1, 0, 0, 0, 3730, 3731, 1, 0, 0, 0, 3731, 3737, 1, 0, 0, 0, 3732, 3733, 5, 104, 0, 0, 3733, 3734, 5, 80, 0, 0, 3734, 3735, 5, 594, 0, 0, 3735, 3737, 5, 491, 0, 0, 3736, 3715, 1, 0, 0, 0, 3736, 3732, 1, 0, 0, 0, 3737, 239, 1, 0, 0, 0, 3738, 3740, 5, 44, 0, 0, 3739, 3741, 5, 107, 0, 0, 3740, 3739, 1, 0, 0, 0, 3740, 3741, 1, 0, 0, 0, 3741, 3743, 1, 0, 0, 0, 3742, 3744, 5, 549, 0, 0, 3743, 3742, 1, 0, 0, 0, 3743, 3744, 1, 0, 0, 0, 3744, 3746, 1, 0, 0, 0, 3745, 3747, 5, 79, 0, 0, 3746, 3745, 1, 0, 0, 0, 3746, 3747, 1, 0, 0, 0, 3747, 3748, 1, 0, 0, 0, 3748, 3749, 5, 68, 0, 0, 3749, 3754, 3, 662, 331, 0, 3750, 3752, 5, 13, 0, 0, 3751, 3750, 1, 0, 0, 0, 3751, 3752, 1, 0, 0, 0, 3752, 3753, 1, 0, 0, 0, 3753, 3755, 3, 722, 361, 0, 3754, 3751, 1, 0, 0, 0, 3754, 3755, 1, 0, 0, 0, 3755, 3761, 1, 0, 0, 0, 3756, 3757, 5, 130, 0, 0, 3757, 3758, 5, 866, 0, 0, 3758, 3759, 3, 686, 343, 0, 3759, 3760, 5, 867, 0, 0, 3760, 3762, 1, 0, 0, 0, 3761, 3756, 1, 0, 0, 0, 3761, 3762, 1, 0, 0, 0, 3762, 3765, 1, 0, 0, 0, 3763, 3764, 5, 192, 0, 0, 3764, 3766, 3, 820, 410, 0, 3765, 3763, 1, 0, 0, 0, 3765, 3766, 1, 0, 0, 0, 3766, 3768, 1, 0, 0, 0, 3767, 3769, 3, 258, 129, 0, 3768, 3767, 1, 0, 0, 0, 3768, 3769, 1, 0, 0, 0, 3769, 3772, 1, 0, 0, 0, 3770, 3771, 5, 100, 0, 0, 3771, 3773, 3, 330, 165, 0, 3772, 3770, 1, 0, 0, 0, 3772, 3773, 1, 0, 0, 0, 3773, 241, 1, 0, 0, 0, 3774, 3776, 5, 44, 0, 0, 3775, 3777, 5, 107, 0, 0, 3776, 3775, 1, 0, 0, 0, 3776, 3777, 1, 0, 0, 0, 3777, 3779, 1, 0, 0, 0, 3778, 3780, 5, 549, 0, 0, 3779, 3778, 1, 0, 0, 0, 3779, 3780, 1, 0, 0, 0, 3780, 3782, 1, 0, 0, 0, 3781, 3783, 5, 79, 0, 0, 3782, 3781, 1, 0, 0, 0, 3782, 3783, 1, 0, 0, 0, 3783, 3823, 1, 0, 0, 0, 3784, 3787, 3, 662, 331, 0, 3785, 3786, 5, 865, 0, 0, 3786, 3788, 5, 850, 0, 0, 3787, 3785, 1, 0, 0, 0, 3787, 3788, 1, 0, 0, 0, 3788, 3797, 1, 0, 0, 0, 3789, 3790, 5, 868, 0, 0, 3790, 3793, 3, 662, 331, 0, 3791, 3792, 5, 865, 0, 0, 3792, 3794, 5, 850, 0, 0, 3793, 3791, 1, 0, 0, 0, 3793, 3794, 1, 0, 0, 0, 3794, 3796, 1, 0, 0, 0, 3795, 3789, 1, 0, 0, 0, 3796, 3799, 1, 0, 0, 0, 3797, 3795, 1, 0, 0, 0, 3797, 3798, 1, 0, 0, 0, 3798, 3800, 1, 0, 0, 0, 3799, 3797, 1, 0, 0, 0, 3800, 3801, 5, 68, 0, 0, 3801, 3802, 3, 262, 131, 0, 3802, 3824, 1, 0, 0, 0, 3803, 3804, 5, 68, 0, 0, 3804, 3807, 3, 662, 331, 0, 3805, 3806, 5, 865, 0, 0, 3806, 3808, 5, 850, 0, 0, 3807, 3805, 1, 0, 0, 0, 3807, 3808, 1, 0, 0, 0, 3808, 3817, 1, 0, 0, 0, 3809, 3810, 5, 868, 0, 0, 3810, 3813, 3, 662, 331, 0, 3811, 3812, 5, 865, 0, 0, 3812, 3814, 5, 850, 0, 0, 3813, 3811, 1, 0, 0, 0, 3813, 3814, 1, 0, 0, 0, 3814, 3816, 1, 0, 0, 0, 3815, 3809, 1, 0, 0, 0, 3816, 3819, 1, 0, 0, 0, 3817, 3815, 1, 0, 0, 0, 3817, 3818, 1, 0, 0, 0, 3818, 3820, 1, 0, 0, 0, 3819, 3817, 1, 0, 0, 0, 3820, 3821, 5, 188, 0, 0, 3821, 3822, 3, 262, 131, 0, 3822, 3824, 1, 0, 0, 0, 3823, 3784, 1, 0, 0, 0, 3823, 3803, 1, 0, 0, 0, 3824, 3827, 1, 0, 0, 0, 3825, 3826, 5, 192, 0, 0, 3826, 3828, 3, 820, 410, 0, 3827, 3825, 1, 0, 0, 0, 3827, 3828, 1, 0, 0, 0, 3828, 243, 1, 0, 0, 0, 3829, 3830, 5, 417, 0, 0, 3830, 3831, 3, 662, 331, 0, 3831, 3836, 5, 516, 0, 0, 3832, 3834, 5, 13, 0, 0, 3833, 3832, 1, 0, 0, 0, 3833, 3834, 1, 0, 0, 0, 3834, 3835, 1, 0, 0, 0, 3835, 3837, 3, 722, 361, 0, 3836, 3833, 1, 0, 0, 0, 3836, 3837, 1, 0, 0, 0, 3837, 245, 1, 0, 0, 0, 3838, 3839, 5, 417, 0, 0, 3839, 3840, 3, 662, 331, 0, 3840, 3841, 5, 135, 0, 0, 3841, 3848, 3, 652, 326, 0, 3842, 3843, 3, 830, 415, 0, 3843, 3844, 5, 866, 0, 0, 3844, 3845, 3, 764, 382, 0, 3845, 3846, 5, 867, 0, 0, 3846, 3849, 1, 0, 0, 0, 3847, 3849, 7, 53, 0, 0, 3848, 3842, 1, 0, 0, 0, 3848, 3847, 1, 0, 0, 0, 3849, 3852, 1, 0, 0, 0, 3850, 3851, 5, 192, 0, 0, 3851, 3853, 3, 820, 410, 0, 3852, 3850, 1, 0, 0, 0, 3852, 3853, 1, 0, 0, 0, 3853, 3856, 1, 0, 0, 0, 3854, 3855, 5, 100, 0, 0, 3855, 3857, 3, 330, 165, 0, 3856, 3854, 1, 0, 0, 0, 3856, 3857, 1, 0, 0, 0, 3857, 247, 1, 0, 0, 0, 3858, 3859, 5, 417, 0, 0, 3859, 3860, 3, 662, 331, 0, 3860, 3861, 5, 135, 0, 0, 3861, 3864, 7, 54, 0, 0, 3862, 3863, 5, 192, 0, 0, 3863, 3865, 3, 820, 410, 0, 3864, 3862, 1, 0, 0, 0, 3864, 3865, 1, 0, 0, 0, 3865, 3868, 1, 0, 0, 0, 3866, 3867, 5, 100, 0, 0, 3867, 3869, 3, 330, 165, 0, 3868, 3866, 1, 0, 0, 0, 3868, 3869, 1, 0, 0, 0, 3869, 249, 1, 0, 0, 0, 3870, 3871, 5, 417, 0, 0, 3871, 3872, 3, 662, 331, 0, 3872, 3873, 5, 334, 0, 0, 3873, 251, 1, 0, 0, 0, 3874, 3875, 5, 425, 0, 0, 3875, 3876, 5, 173, 0, 0, 3876, 3877, 5, 68, 0, 0, 3877, 3882, 3, 732, 366, 0, 3878, 3879, 5, 868, 0, 0, 3879, 3881, 3, 732, 366, 0, 3880, 3878, 1, 0, 0, 0, 3881, 3884, 1, 0, 0, 0, 3882, 3880, 1, 0, 0, 0, 3882, 3883, 1, 0, 0, 0, 3883, 253, 1, 0, 0, 0, 3884, 3882, 1, 0, 0, 0, 3885, 3887, 5, 185, 0, 0, 3886, 3888, 5, 107, 0, 0, 3887, 3886, 1, 0, 0, 0, 3887, 3888, 1, 0, 0, 0, 3888, 3890, 1, 0, 0, 0, 3889, 3891, 5, 79, 0, 0, 3890, 3889, 1, 0, 0, 0, 3890, 3891, 1, 0, 0, 0, 3891, 3892, 1, 0, 0, 0, 3892, 3897, 3, 662, 331, 0, 3893, 3895, 5, 13, 0, 0, 3894, 3893, 1, 0, 0, 0, 3894, 3895, 1, 0, 0, 0, 3895, 3896, 1, 0, 0, 0, 3896, 3898, 3, 722, 361, 0, 3897, 3894, 1, 0, 0, 0, 3897, 3898, 1, 0, 0, 0, 3898, 3899, 1, 0, 0, 0, 3899, 3900, 5, 155, 0, 0, 3900, 3905, 3, 234, 117, 0, 3901, 3902, 5, 868, 0, 0, 3902, 3904, 3, 234, 117, 0, 3903, 3901, 1, 0, 0, 0, 3904, 3907, 1, 0, 0, 0, 3905, 3903, 1, 0, 0, 0, 3905, 3906, 1, 0, 0, 0, 3906, 3910, 1, 0, 0, 0, 3907, 3905, 1, 0, 0, 0, 3908, 3909, 5, 192, 0, 0, 3909, 3911, 3, 820, 410, 0, 3910, 3908, 1, 0, 0, 0, 3910, 3911, 1, 0, 0, 0, 3911, 3913, 1, 0, 0, 0, 3912, 3914, 3, 258, 129, 0, 3913, 3912, 1, 0, 0, 0, 3913, 3914, 1, 0, 0, 0, 3914, 3916, 1, 0, 0, 0, 3915, 3917, 3, 328, 164, 0, 3916, 3915, 1, 0, 0, 0, 3916, 3917, 1, 0, 0, 0, 3917, 255, 1, 0, 0, 0, 3918, 3920, 5, 185, 0, 0, 3919, 3921, 5, 107, 0, 0, 3920, 3919, 1, 0, 0, 0, 3920, 3921, 1, 0, 0, 0, 3921, 3923, 1, 0, 0, 0, 3922, 3924, 5, 79, 0, 0, 3923, 3922, 1, 0, 0, 0, 3923, 3924, 1, 0, 0, 0, 3924, 3925, 1, 0, 0, 0, 3925, 3926, 3, 262, 131, 0, 3926, 3927, 5, 155, 0, 0, 3927, 3932, 3, 234, 117, 0, 3928, 3929, 5, 868, 0, 0, 3929, 3931, 3, 234, 117, 0, 3930, 3928, 1, 0, 0, 0, 3931, 3934, 1, 0, 0, 0, 3932, 3930, 1, 0, 0, 0, 3932, 3933, 1, 0, 0, 0, 3933, 3937, 1, 0, 0, 0, 3934, 3932, 1, 0, 0, 0, 3935, 3936, 5, 192, 0, 0, 3936, 3938, 3, 820, 410, 0, 3937, 3935, 1, 0, 0, 0, 3937, 3938, 1, 0, 0, 0, 3938, 257, 1, 0, 0, 0, 3939, 3940, 5, 125, 0, 0, 3940, 3941, 5, 20, 0, 0, 3941, 3946, 3, 260, 130, 0, 3942, 3943, 5, 868, 0, 0, 3943, 3945, 3, 260, 130, 0, 3944, 3942, 1, 0, 0, 0, 3945, 3948, 1, 0, 0, 0, 3946, 3944, 1, 0, 0, 0, 3946, 3947, 1, 0, 0, 0, 3947, 259, 1, 0, 0, 0, 3948, 3946, 1, 0, 0, 0, 3949, 3951, 3, 820, 410, 0, 3950, 3952, 7, 55, 0, 0, 3951, 3950, 1, 0, 0, 0, 3951, 3952, 1, 0, 0, 0, 3952, 261, 1, 0, 0, 0, 3953, 3958, 3, 264, 132, 0, 3954, 3955, 5, 868, 0, 0, 3955, 3957, 3, 264, 132, 0, 3956, 3954, 1, 0, 0, 0, 3957, 3960, 1, 0, 0, 0, 3958, 3956, 1, 0, 0, 0, 3958, 3959, 1, 0, 0, 0, 3959, 263, 1, 0, 0, 0, 3960, 3958, 1, 0, 0, 0, 3961, 3965, 3, 266, 133, 0, 3962, 3964, 3, 276, 138, 0, 3963, 3962, 1, 0, 0, 0, 3964, 3967, 1, 0, 0, 0, 3965, 3963, 1, 0, 0, 0, 3965, 3966, 1, 0, 0, 0, 3966, 3980, 1, 0, 0, 0, 3967, 3965, 1, 0, 0, 0, 3968, 3969, 5, 866, 0, 0, 3969, 3973, 3, 266, 133, 0, 3970, 3972, 3, 276, 138, 0, 3971, 3970, 1, 0, 0, 0, 3972, 3975, 1, 0, 0, 0, 3973, 3971, 1, 0, 0, 0, 3973, 3974, 1, 0, 0, 0, 3974, 3976, 1, 0, 0, 0, 3975, 3973, 1, 0, 0, 0, 3976, 3977, 5, 867, 0, 0, 3977, 3980, 1, 0, 0, 0, 3978, 3980, 3, 288, 144, 0, 3979, 3961, 1, 0, 0, 0, 3979, 3968, 1, 0, 0, 0, 3979, 3978, 1, 0, 0, 0, 3980, 265, 1, 0, 0, 0, 3981, 3987, 3, 662, 331, 0, 3982, 3983, 5, 130, 0, 0, 3983, 3984, 5, 866, 0, 0, 3984, 3985, 3, 686, 343, 0, 3985, 3986, 5, 867, 0, 0, 3986, 3988, 1, 0, 0, 0, 3987, 3982, 1, 0, 0, 0, 3987, 3988, 1, 0, 0, 0, 3988, 3993, 1, 0, 0, 0, 3989, 3991, 5, 13, 0, 0, 3990, 3989, 1, 0, 0, 0, 3990, 3991, 1, 0, 0, 0, 3991, 3992, 1, 0, 0, 0, 3992, 3994, 3, 722, 361, 0, 3993, 3990, 1, 0, 0, 0, 3993, 3994, 1, 0, 0, 0, 3994, 4003, 1, 0, 0, 0, 3995, 4000, 3, 272, 136, 0, 3996, 3997, 5, 868, 0, 0, 3997, 3999, 3, 272, 136, 0, 3998, 3996, 1, 0, 0, 0, 3999, 4002, 1, 0, 0, 0, 4000, 3998, 1, 0, 0, 0, 4000, 4001, 1, 0, 0, 0, 4001, 4004, 1, 0, 0, 0, 4002, 4000, 1, 0, 0, 0, 4003, 3995, 1, 0, 0, 0, 4003, 4004, 1, 0, 0, 0, 4004, 4021, 1, 0, 0, 0, 4005, 4007, 5, 95, 0, 0, 4006, 4005, 1, 0, 0, 0, 4006, 4007, 1, 0, 0, 0, 4007, 4008, 1, 0, 0, 0, 4008, 4010, 3, 268, 134, 0, 4009, 4011, 5, 13, 0, 0, 4010, 4009, 1, 0, 0, 0, 4010, 4011, 1, 0, 0, 0, 4011, 4012, 1, 0, 0, 0, 4012, 4014, 3, 722, 361, 0, 4013, 4015, 3, 270, 135, 0, 4014, 4013, 1, 0, 0, 0, 4014, 4015, 1, 0, 0, 0, 4015, 4021, 1, 0, 0, 0, 4016, 4017, 5, 866, 0, 0, 4017, 4018, 3, 262, 131, 0, 4018, 4019, 5, 867, 0, 0, 4019, 4021, 1, 0, 0, 0, 4020, 3981, 1, 0, 0, 0, 4020, 4006, 1, 0, 0, 0, 4020, 4016, 1, 0, 0, 0, 4021, 267, 1, 0, 0, 0, 4022, 4028, 3, 210, 105, 0, 4023, 4024, 5, 866, 0, 0, 4024, 4025, 3, 210, 105, 0, 4025, 4026, 5, 867, 0, 0, 4026, 4028, 1, 0, 0, 0, 4027, 4022, 1, 0, 0, 0, 4027, 4023, 1, 0, 0, 0, 4028, 269, 1, 0, 0, 0, 4029, 4030, 5, 866, 0, 0, 4030, 4031, 3, 670, 335, 0, 4031, 4032, 5, 867, 0, 0, 4032, 271, 1, 0, 0, 0, 4033, 4034, 7, 56, 0, 0, 4034, 4037, 7, 19, 0, 0, 4035, 4036, 5, 65, 0, 0, 4036, 4038, 3, 274, 137, 0, 4037, 4035, 1, 0, 0, 0, 4037, 4038, 1, 0, 0, 0, 4038, 4039, 1, 0, 0, 0, 4039, 4041, 5, 866, 0, 0, 4040, 4042, 3, 650, 325, 0, 4041, 4040, 1, 0, 0, 0, 4041, 4042, 1, 0, 0, 0, 4042, 4043, 1, 0, 0, 0, 4043, 4044, 5, 867, 0, 0, 4044, 273, 1, 0, 0, 0, 4045, 4051, 5, 91, 0, 0, 4046, 4047, 5, 125, 0, 0, 4047, 4051, 5, 20, 0, 0, 4048, 4049, 5, 74, 0, 0, 4049, 4051, 5, 20, 0, 0, 4050, 4045, 1, 0, 0, 0, 4050, 4046, 1, 0, 0, 0, 4050, 4048, 1, 0, 0, 0, 4051, 275, 1, 0, 0, 0, 4052, 4054, 7, 57, 0, 0, 4053, 4052, 1, 0, 0, 0, 4053, 4054, 1, 0, 0, 0, 4054, 4055, 1, 0, 0, 0, 4055, 4057, 5, 91, 0, 0, 4056, 4058, 5, 95, 0, 0, 4057, 4056, 1, 0, 0, 0, 4057, 4058, 1, 0, 0, 0, 4058, 4059, 1, 0, 0, 0, 4059, 4063, 3, 266, 133, 0, 4060, 4062, 3, 278, 139, 0, 4061, 4060, 1, 0, 0, 0, 4062, 4065, 1, 0, 0, 0, 4063, 4061, 1, 0, 0, 0, 4063, 4064, 1, 0, 0, 0, 4064, 4102, 1, 0, 0, 0, 4065, 4063, 1, 0, 0, 0, 4066, 4067, 5, 172, 0, 0, 4067, 4071, 3, 266, 133, 0, 4068, 4070, 3, 278, 139, 0, 4069, 4068, 1, 0, 0, 0, 4070, 4073, 1, 0, 0, 0, 4071, 4069, 1, 0, 0, 0, 4071, 4072, 1, 0, 0, 0, 4072, 4102, 1, 0, 0, 0, 4073, 4071, 1, 0, 0, 0, 4074, 4076, 7, 58, 0, 0, 4075, 4077, 5, 127, 0, 0, 4076, 4075, 1, 0, 0, 0, 4076, 4077, 1, 0, 0, 0, 4077, 4078, 1, 0, 0, 0, 4078, 4080, 5, 91, 0, 0, 4079, 4081, 5, 95, 0, 0, 4080, 4079, 1, 0, 0, 0, 4080, 4081, 1, 0, 0, 0, 4081, 4082, 1, 0, 0, 0, 4082, 4086, 3, 266, 133, 0, 4083, 4085, 3, 278, 139, 0, 4084, 4083, 1, 0, 0, 0, 4085, 4088, 1, 0, 0, 0, 4086, 4084, 1, 0, 0, 0, 4086, 4087, 1, 0, 0, 0, 4087, 4102, 1, 0, 0, 0, 4088, 4086, 1, 0, 0, 0, 4089, 4097, 5, 113, 0, 0, 4090, 4093, 5, 84, 0, 0, 4091, 4093, 7, 58, 0, 0, 4092, 4090, 1, 0, 0, 0, 4092, 4091, 1, 0, 0, 0, 4093, 4095, 1, 0, 0, 0, 4094, 4096, 5, 127, 0, 0, 4095, 4094, 1, 0, 0, 0, 4095, 4096, 1, 0, 0, 0, 4096, 4098, 1, 0, 0, 0, 4097, 4092, 1, 0, 0, 0, 4097, 4098, 1, 0, 0, 0, 4098, 4099, 1, 0, 0, 0, 4099, 4100, 5, 91, 0, 0, 4100, 4102, 3, 266, 133, 0, 4101, 4053, 1, 0, 0, 0, 4101, 4066, 1, 0, 0, 0, 4101, 4074, 1, 0, 0, 0, 4101, 4089, 1, 0, 0, 0, 4102, 277, 1, 0, 0, 0, 4103, 4106, 5, 119, 0, 0, 4104, 4107, 3, 820, 410, 0, 4105, 4107, 3, 678, 339, 0, 4106, 4104, 1, 0, 0, 0, 4106, 4105, 1, 0, 0, 0, 4107, 4114, 1, 0, 0, 0, 4108, 4109, 5, 188, 0, 0, 4109, 4110, 5, 866, 0, 0, 4110, 4111, 3, 670, 335, 0, 4111, 4112, 5, 867, 0, 0, 4112, 4114, 1, 0, 0, 0, 4113, 4103, 1, 0, 0, 0, 4113, 4108, 1, 0, 0, 0, 4114, 279, 1, 0, 0, 0, 4115, 4116, 5, 866, 0, 0, 4116, 4117, 3, 282, 141, 0, 4117, 4118, 5, 867, 0, 0, 4118, 4124, 1, 0, 0, 0, 4119, 4120, 5, 866, 0, 0, 4120, 4121, 3, 280, 140, 0, 4121, 4122, 5, 867, 0, 0, 4122, 4124, 1, 0, 0, 0, 4123, 4115, 1, 0, 0, 0, 4123, 4119, 1, 0, 0, 0, 4124, 281, 1, 0, 0, 0, 4125, 4129, 5, 154, 0, 0, 4126, 4128, 3, 298, 149, 0, 4127, 4126, 1, 0, 0, 0, 4128, 4131, 1, 0, 0, 0, 4129, 4127, 1, 0, 0, 0, 4129, 4130, 1, 0, 0, 0, 4130, 4132, 1, 0, 0, 0, 4131, 4129, 1, 0, 0, 0, 4132, 4134, 3, 300, 150, 0, 4133, 4135, 3, 312, 156, 0, 4134, 4133, 1, 0, 0, 0, 4134, 4135, 1, 0, 0, 0, 4135, 4136, 1, 0, 0, 0, 4136, 4138, 3, 318, 159, 0, 4137, 4139, 3, 320, 160, 0, 4138, 4137, 1, 0, 0, 0, 4138, 4139, 1, 0, 0, 0, 4139, 4141, 1, 0, 0, 0, 4140, 4142, 3, 322, 161, 0, 4141, 4140, 1, 0, 0, 0, 4141, 4142, 1, 0, 0, 0, 4142, 4144, 1, 0, 0, 0, 4143, 4145, 3, 324, 162, 0, 4144, 4143, 1, 0, 0, 0, 4144, 4145, 1, 0, 0, 0, 4145, 4147, 1, 0, 0, 0, 4146, 4148, 3, 258, 129, 0, 4147, 4146, 1, 0, 0, 0, 4147, 4148, 1, 0, 0, 0, 4148, 4150, 1, 0, 0, 0, 4149, 4151, 3, 328, 164, 0, 4150, 4149, 1, 0, 0, 0, 4150, 4151, 1, 0, 0, 0, 4151, 4153, 1, 0, 0, 0, 4152, 4154, 3, 312, 156, 0, 4153, 4152, 1, 0, 0, 0, 4153, 4154, 1, 0, 0, 0, 4154, 4156, 1, 0, 0, 0, 4155, 4157, 3, 284, 142, 0, 4156, 4155, 1, 0, 0, 0, 4156, 4157, 1, 0, 0, 0, 4157, 283, 1, 0, 0, 0, 4158, 4160, 5, 181, 0, 0, 4159, 4161, 7, 45, 0, 0, 4160, 4159, 1, 0, 0, 0, 4160, 4161, 1, 0, 0, 0, 4161, 4164, 1, 0, 0, 0, 4162, 4165, 3, 282, 141, 0, 4163, 4165, 3, 280, 140, 0, 4164, 4162, 1, 0, 0, 0, 4164, 4163, 1, 0, 0, 0, 4165, 285, 1, 0, 0, 0, 4166, 4181, 5, 95, 0, 0, 4167, 4182, 3, 282, 141, 0, 4168, 4182, 3, 280, 140, 0, 4169, 4172, 5, 866, 0, 0, 4170, 4173, 3, 282, 141, 0, 4171, 4173, 3, 280, 140, 0, 4172, 4170, 1, 0, 0, 0, 4172, 4171, 1, 0, 0, 0, 4173, 4174, 1, 0, 0, 0, 4174, 4179, 5, 867, 0, 0, 4175, 4177, 5, 13, 0, 0, 4176, 4175, 1, 0, 0, 0, 4176, 4177, 1, 0, 0, 0, 4177, 4178, 1, 0, 0, 0, 4178, 4180, 3, 722, 361, 0, 4179, 4176, 1, 0, 0, 0, 4179, 4180, 1, 0, 0, 0, 4180, 4182, 1, 0, 0, 0, 4181, 4167, 1, 0, 0, 0, 4181, 4168, 1, 0, 0, 0, 4181, 4169, 1, 0, 0, 0, 4182, 287, 1, 0, 0, 0, 4183, 4184, 5, 253, 0, 0, 4184, 4185, 5, 866, 0, 0, 4185, 4186, 5, 882, 0, 0, 4186, 4187, 5, 868, 0, 0, 4187, 4188, 5, 882, 0, 0, 4188, 4189, 5, 337, 0, 0, 4189, 4190, 5, 866, 0, 0, 4190, 4191, 3, 290, 145, 0, 4191, 4192, 5, 867, 0, 0, 4192, 4197, 5, 867, 0, 0, 4193, 4195, 5, 13, 0, 0, 4194, 4193, 1, 0, 0, 0, 4194, 4195, 1, 0, 0, 0, 4195, 4196, 1, 0, 0, 0, 4196, 4198, 3, 722, 361, 0, 4197, 4194, 1, 0, 0, 0, 4197, 4198, 1, 0, 0, 0, 4198, 289, 1, 0, 0, 0, 4199, 4204, 3, 292, 146, 0, 4200, 4201, 5, 868, 0, 0, 4201, 4203, 3, 292, 146, 0, 4202, 4200, 1, 0, 0, 0, 4203, 4206, 1, 0, 0, 0, 4204, 4202, 1, 0, 0, 0, 4204, 4205, 1, 0, 0, 0, 4205, 291, 1, 0, 0, 0, 4206, 4204, 1, 0, 0, 0, 4207, 4224, 3, 674, 337, 0, 4208, 4209, 5, 65, 0, 0, 4209, 4225, 5, 256, 0, 0, 4210, 4222, 3, 742, 371, 0, 4211, 4212, 5, 257, 0, 0, 4212, 4214, 5, 882, 0, 0, 4213, 4215, 3, 294, 147, 0, 4214, 4213, 1, 0, 0, 0, 4214, 4215, 1, 0, 0, 0, 4215, 4217, 1, 0, 0, 0, 4216, 4218, 3, 296, 148, 0, 4217, 4216, 1, 0, 0, 0, 4217, 4218, 1, 0, 0, 0, 4218, 4223, 1, 0, 0, 0, 4219, 4220, 5, 60, 0, 0, 4220, 4221, 5, 257, 0, 0, 4221, 4223, 5, 882, 0, 0, 4222, 4211, 1, 0, 0, 0, 4222, 4219, 1, 0, 0, 0, 4223, 4225, 1, 0, 0, 0, 4224, 4208, 1, 0, 0, 0, 4224, 4210, 1, 0, 0, 0, 4225, 4237, 1, 0, 0, 0, 4226, 4228, 5, 255, 0, 0, 4227, 4229, 5, 257, 0, 0, 4228, 4227, 1, 0, 0, 0, 4228, 4229, 1, 0, 0, 0, 4229, 4230, 1, 0, 0, 0, 4230, 4231, 5, 882, 0, 0, 4231, 4232, 5, 337, 0, 0, 4232, 4233, 5, 866, 0, 0, 4233, 4234, 3, 290, 145, 0, 4234, 4235, 5, 867, 0, 0, 4235, 4237, 1, 0, 0, 0, 4236, 4207, 1, 0, 0, 0, 4236, 4226, 1, 0, 0, 0, 4237, 293, 1, 0, 0, 0, 4238, 4243, 5, 116, 0, 0, 4239, 4243, 5, 382, 0, 0, 4240, 4241, 5, 42, 0, 0, 4241, 4243, 3, 770, 385, 0, 4242, 4238, 1, 0, 0, 0, 4242, 4239, 1, 0, 0, 0, 4242, 4240, 1, 0, 0, 0, 4243, 4244, 1, 0, 0, 0, 4244, 4245, 5, 119, 0, 0, 4245, 4246, 5, 55, 0, 0, 4246, 295, 1, 0, 0, 0, 4247, 4252, 5, 116, 0, 0, 4248, 4252, 5, 382, 0, 0, 4249, 4250, 5, 42, 0, 0, 4250, 4252, 3, 770, 385, 0, 4251, 4247, 1, 0, 0, 0, 4251, 4248, 1, 0, 0, 0, 4251, 4249, 1, 0, 0, 0, 4252, 4253, 1, 0, 0, 0, 4253, 4254, 5, 119, 0, 0, 4254, 4255, 5, 382, 0, 0, 4255, 297, 1, 0, 0, 0, 4256, 4265, 7, 59, 0, 0, 4257, 4265, 5, 76, 0, 0, 4258, 4265, 5, 172, 0, 0, 4259, 4265, 5, 168, 0, 0, 4260, 4265, 5, 166, 0, 0, 4261, 4265, 5, 636, 0, 0, 4262, 4265, 7, 60, 0, 0, 4263, 4265, 5, 167, 0, 0, 4264, 4256, 1, 0, 0, 0, 4264, 4257, 1, 0, 0, 0, 4264, 4258, 1, 0, 0, 0, 4264, 4259, 1, 0, 0, 0, 4264, 4260, 1, 0, 0, 0, 4264, 4261, 1, 0, 0, 0, 4264, 4262, 1, 0, 0, 0, 4264, 4263, 1, 0, 0, 0, 4265, 299, 1, 0, 0, 0, 4266, 4269, 3, 306, 153, 0, 4267, 4269, 3, 302, 151, 0, 4268, 4266, 1, 0, 0, 0, 4268, 4267, 1, 0, 0, 0, 4269, 4274, 1, 0, 0, 0, 4270, 4271, 5, 868, 0, 0, 4271, 4273, 3, 302, 151, 0, 4272, 4270, 1, 0, 0, 0, 4273, 4276, 1, 0, 0, 0, 4274, 4272, 1, 0, 0, 0, 4274, 4275, 1, 0, 0, 0, 4275, 301, 1, 0, 0, 0, 4276, 4274, 1, 0, 0, 0, 4277, 4298, 3, 304, 152, 0, 4278, 4283, 3, 308, 154, 0, 4279, 4281, 5, 13, 0, 0, 4280, 4279, 1, 0, 0, 0, 4280, 4281, 1, 0, 0, 0, 4281, 4282, 1, 0, 0, 0, 4282, 4284, 3, 722, 361, 0, 4283, 4280, 1, 0, 0, 0, 4283, 4284, 1, 0, 0, 0, 4284, 4298, 1, 0, 0, 0, 4285, 4290, 3, 310, 155, 0, 4286, 4288, 5, 13, 0, 0, 4287, 4286, 1, 0, 0, 0, 4287, 4288, 1, 0, 0, 0, 4288, 4289, 1, 0, 0, 0, 4289, 4291, 3, 722, 361, 0, 4290, 4287, 1, 0, 0, 0, 4290, 4291, 1, 0, 0, 0, 4291, 4298, 1, 0, 0, 0, 4292, 4293, 3, 722, 361, 0, 4293, 4294, 5, 865, 0, 0, 4294, 4295, 4, 151, 3, 0, 4295, 4296, 3, 672, 336, 0, 4296, 4298, 1, 0, 0, 0, 4297, 4277, 1, 0, 0, 0, 4297, 4278, 1, 0, 0, 0, 4297, 4285, 1, 0, 0, 0, 4297, 4292, 1, 0, 0, 0, 4298, 303, 1, 0, 0, 0, 4299, 4300, 3, 718, 359, 0, 4300, 4301, 5, 865, 0, 0, 4301, 4302, 5, 850, 0, 0, 4302, 305, 1, 0, 0, 0, 4303, 4304, 5, 850, 0, 0, 4304, 307, 1, 0, 0, 0, 4305, 4306, 3, 674, 337, 0, 4306, 309, 1, 0, 0, 0, 4307, 4308, 5, 892, 0, 0, 4308, 4310, 5, 841, 0, 0, 4309, 4307, 1, 0, 0, 0, 4309, 4310, 1, 0, 0, 0, 4310, 4311, 1, 0, 0, 0, 4311, 4314, 3, 820, 410, 0, 4312, 4314, 3, 780, 390, 0, 4313, 4309, 1, 0, 0, 0, 4313, 4312, 1, 0, 0, 0, 4314, 311, 1, 0, 0, 0, 4315, 4316, 5, 88, 0, 0, 4316, 4321, 3, 236, 118, 0, 4317, 4318, 5, 868, 0, 0, 4318, 4320, 3, 236, 118, 0, 4319, 4317, 1, 0, 0, 0, 4320, 4323, 1, 0, 0, 0, 4321, 4319, 1, 0, 0, 0, 4321, 4322, 1, 0, 0, 0, 4322, 4352, 1, 0, 0, 0, 4323, 4321, 1, 0, 0, 0, 4324, 4325, 5, 88, 0, 0, 4325, 4326, 5, 372, 0, 0, 4326, 4352, 5, 882, 0, 0, 4327, 4328, 5, 88, 0, 0, 4328, 4329, 5, 128, 0, 0, 4329, 4333, 5, 882, 0, 0, 4330, 4331, 5, 26, 0, 0, 4331, 4332, 5, 155, 0, 0, 4332, 4334, 3, 704, 352, 0, 4333, 4330, 1, 0, 0, 0, 4333, 4334, 1, 0, 0, 0, 4334, 4341, 1, 0, 0, 0, 4335, 4337, 7, 47, 0, 0, 4336, 4338, 3, 314, 157, 0, 4337, 4336, 1, 0, 0, 0, 4338, 4339, 1, 0, 0, 0, 4339, 4337, 1, 0, 0, 0, 4339, 4340, 1, 0, 0, 0, 4340, 4342, 1, 0, 0, 0, 4341, 4335, 1, 0, 0, 0, 4341, 4342, 1, 0, 0, 0, 4342, 4349, 1, 0, 0, 0, 4343, 4345, 5, 102, 0, 0, 4344, 4346, 3, 316, 158, 0, 4345, 4344, 1, 0, 0, 0, 4346, 4347, 1, 0, 0, 0, 4347, 4345, 1, 0, 0, 0, 4347, 4348, 1, 0, 0, 0, 4348, 4350, 1, 0, 0, 0, 4349, 4343, 1, 0, 0, 0, 4349, 4350, 1, 0, 0, 0, 4350, 4352, 1, 0, 0, 0, 4351, 4315, 1, 0, 0, 0, 4351, 4324, 1, 0, 0, 0, 4351, 4327, 1, 0, 0, 0, 4352, 313, 1, 0, 0, 0, 4353, 4354, 5, 174, 0, 0, 4354, 4355, 5, 20, 0, 0, 4355, 4366, 5, 882, 0, 0, 4356, 4358, 5, 123, 0, 0, 4357, 4356, 1, 0, 0, 0, 4357, 4358, 1, 0, 0, 0, 4358, 4359, 1, 0, 0, 0, 4359, 4360, 5, 56, 0, 0, 4360, 4361, 5, 20, 0, 0, 4361, 4366, 5, 882, 0, 0, 4362, 4363, 5, 58, 0, 0, 4363, 4364, 5, 20, 0, 0, 4364, 4366, 5, 882, 0, 0, 4365, 4353, 1, 0, 0, 0, 4365, 4357, 1, 0, 0, 0, 4365, 4362, 1, 0, 0, 0, 4366, 315, 1, 0, 0, 0, 4367, 4368, 5, 171, 0, 0, 4368, 4369, 5, 20, 0, 0, 4369, 4374, 5, 882, 0, 0, 4370, 4371, 5, 174, 0, 0, 4371, 4372, 5, 20, 0, 0, 4372, 4374, 5, 882, 0, 0, 4373, 4367, 1, 0, 0, 0, 4373, 4370, 1, 0, 0, 0, 4374, 317, 1, 0, 0, 0, 4375, 4376, 5, 68, 0, 0, 4376, 4378, 3, 262, 131, 0, 4377, 4375, 1, 0, 0, 0, 4377, 4378, 1, 0, 0, 0, 4378, 4384, 1, 0, 0, 0, 4379, 4382, 5, 192, 0, 0, 4380, 4383, 3, 820, 410, 0, 4381, 4383, 3, 678, 339, 0, 4382, 4380, 1, 0, 0, 0, 4382, 4381, 1, 0, 0, 0, 4383, 4385, 1, 0, 0, 0, 4384, 4379, 1, 0, 0, 0, 4384, 4385, 1, 0, 0, 0, 4385, 319, 1, 0, 0, 0, 4386, 4387, 5, 74, 0, 0, 4387, 4388, 5, 20, 0, 0, 4388, 4393, 3, 326, 163, 0, 4389, 4390, 5, 868, 0, 0, 4390, 4392, 3, 326, 163, 0, 4391, 4389, 1, 0, 0, 0, 4392, 4395, 1, 0, 0, 0, 4393, 4391, 1, 0, 0, 0, 4393, 4394, 1, 0, 0, 0, 4394, 4398, 1, 0, 0, 0, 4395, 4393, 1, 0, 0, 0, 4396, 4397, 5, 194, 0, 0, 4397, 4399, 5, 584, 0, 0, 4398, 4396, 1, 0, 0, 0, 4398, 4399, 1, 0, 0, 0, 4399, 321, 1, 0, 0, 0, 4400, 4401, 5, 75, 0, 0, 4401, 4402, 3, 820, 410, 0, 4402, 323, 1, 0, 0, 0, 4403, 4404, 5, 689, 0, 0, 4404, 4405, 3, 798, 399, 0, 4405, 4406, 5, 13, 0, 0, 4406, 4407, 5, 866, 0, 0, 4407, 4408, 3, 796, 398, 0, 4408, 4418, 5, 867, 0, 0, 4409, 4410, 5, 868, 0, 0, 4410, 4411, 3, 798, 399, 0, 4411, 4412, 5, 13, 0, 0, 4412, 4413, 5, 866, 0, 0, 4413, 4414, 3, 796, 398, 0, 4414, 4415, 5, 867, 0, 0, 4415, 4417, 1, 0, 0, 0, 4416, 4409, 1, 0, 0, 0, 4417, 4420, 1, 0, 0, 0, 4418, 4416, 1, 0, 0, 0, 4418, 4419, 1, 0, 0, 0, 4419, 325, 1, 0, 0, 0, 4420, 4418, 1, 0, 0, 0, 4421, 4423, 3, 820, 410, 0, 4422, 4424, 7, 55, 0, 0, 4423, 4422, 1, 0, 0, 0, 4423, 4424, 1, 0, 0, 0, 4424, 327, 1, 0, 0, 0, 4425, 4436, 5, 100, 0, 0, 4426, 4427, 3, 330, 165, 0, 4427, 4428, 5, 868, 0, 0, 4428, 4430, 1, 0, 0, 0, 4429, 4426, 1, 0, 0, 0, 4429, 4430, 1, 0, 0, 0, 4430, 4431, 1, 0, 0, 0, 4431, 4437, 3, 330, 165, 0, 4432, 4433, 3, 330, 165, 0, 4433, 4434, 5, 509, 0, 0, 4434, 4435, 3, 330, 165, 0, 4435, 4437, 1, 0, 0, 0, 4436, 4429, 1, 0, 0, 0, 4436, 4432, 1, 0, 0, 0, 4437, 329, 1, 0, 0, 0, 4438, 4442, 3, 728, 364, 0, 4439, 4442, 3, 702, 351, 0, 4440, 4442, 3, 724, 362, 0, 4441, 4438, 1, 0, 0, 0, 4441, 4439, 1, 0, 0, 0, 4441, 4440, 1, 0, 0, 0, 4442, 331, 1, 0, 0, 0, 4443, 4444, 5, 640, 0, 0, 4444, 4453, 5, 664, 0, 0, 4445, 4450, 3, 354, 177, 0, 4446, 4447, 5, 868, 0, 0, 4447, 4449, 3, 354, 177, 0, 4448, 4446, 1, 0, 0, 0, 4449, 4452, 1, 0, 0, 0, 4450, 4448, 1, 0, 0, 0, 4450, 4451, 1, 0, 0, 0, 4451, 4454, 1, 0, 0, 0, 4452, 4450, 1, 0, 0, 0, 4453, 4445, 1, 0, 0, 0, 4453, 4454, 1, 0, 0, 0, 4454, 333, 1, 0, 0, 0, 4455, 4457, 5, 317, 0, 0, 4456, 4458, 5, 691, 0, 0, 4457, 4456, 1, 0, 0, 0, 4457, 4458, 1, 0, 0, 0, 4458, 335, 1, 0, 0, 0, 4459, 4461, 5, 341, 0, 0, 4460, 4462, 5, 691, 0, 0, 4461, 4460, 1, 0, 0, 0, 4461, 4462, 1, 0, 0, 0, 4462, 4468, 1, 0, 0, 0, 4463, 4465, 5, 11, 0, 0, 4464, 4466, 5, 502, 0, 0, 4465, 4464, 1, 0, 0, 0, 4465, 4466, 1, 0, 0, 0, 4466, 4467, 1, 0, 0, 0, 4467, 4469, 5, 326, 0, 0, 4468, 4463, 1, 0, 0, 0, 4468, 4469, 1, 0, 0, 0, 4469, 4474, 1, 0, 0, 0, 4470, 4472, 5, 502, 0, 0, 4471, 4470, 1, 0, 0, 0, 4471, 4472, 1, 0, 0, 0, 4472, 4473, 1, 0, 0, 0, 4473, 4475, 5, 140, 0, 0, 4474, 4471, 1, 0, 0, 0, 4474, 4475, 1, 0, 0, 0, 4475, 337, 1, 0, 0, 0, 4476, 4478, 5, 583, 0, 0, 4477, 4479, 5, 691, 0, 0, 4478, 4477, 1, 0, 0, 0, 4478, 4479, 1, 0, 0, 0, 4479, 4485, 1, 0, 0, 0, 4480, 4482, 5, 11, 0, 0, 4481, 4483, 5, 502, 0, 0, 4482, 4481, 1, 0, 0, 0, 4482, 4483, 1, 0, 0, 0, 4483, 4484, 1, 0, 0, 0, 4484, 4486, 5, 326, 0, 0, 4485, 4480, 1, 0, 0, 0, 4485, 4486, 1, 0, 0, 0, 4486, 4491, 1, 0, 0, 0, 4487, 4489, 5, 502, 0, 0, 4488, 4487, 1, 0, 0, 0, 4488, 4489, 1, 0, 0, 0, 4489, 4490, 1, 0, 0, 0, 4490, 4492, 5, 140, 0, 0, 4491, 4488, 1, 0, 0, 0, 4491, 4492, 1, 0, 0, 0, 4492, 339, 1, 0, 0, 0, 4493, 4494, 5, 589, 0, 0, 4494, 4495, 3, 722, 361, 0, 4495, 341, 1, 0, 0, 0, 4496, 4498, 5, 583, 0, 0, 4497, 4499, 5, 691, 0, 0, 4498, 4497, 1, 0, 0, 0, 4498, 4499, 1, 0, 0, 0, 4499, 4500, 1, 0, 0, 0, 4500, 4502, 5, 176, 0, 0, 4501, 4503, 5, 589, 0, 0, 4502, 4501, 1, 0, 0, 0, 4502, 4503, 1, 0, 0, 0, 4503, 4504, 1, 0, 0, 0, 4504, 4505, 3, 722, 361, 0, 4505, 343, 1, 0, 0, 0, 4506, 4507, 5, 140, 0, 0, 4507, 4508, 5, 589, 0, 0, 4508, 4509, 3, 722, 361, 0, 4509, 345, 1, 0, 0, 0, 4510, 4511, 5, 104, 0, 0, 4511, 4512, 7, 61, 0, 0, 4512, 4517, 3, 356, 178, 0, 4513, 4514, 5, 868, 0, 0, 4514, 4516, 3, 356, 178, 0, 4515, 4513, 1, 0, 0, 0, 4516, 4519, 1, 0, 0, 0, 4517, 4515, 1, 0, 0, 0, 4517, 4518, 1, 0, 0, 0, 4518, 347, 1, 0, 0, 0, 4519, 4517, 1, 0, 0, 0, 4520, 4521, 5, 183, 0, 0, 4521, 4522, 5, 752, 0, 0, 4522, 349, 1, 0, 0, 0, 4523, 4524, 5, 155, 0, 0, 4524, 4525, 5, 313, 0, 0, 4525, 4526, 5, 857, 0, 0, 4526, 4527, 7, 26, 0, 0, 4527, 351, 1, 0, 0, 0, 4528, 4530, 5, 155, 0, 0, 4529, 4531, 7, 62, 0, 0, 4530, 4529, 1, 0, 0, 0, 4530, 4531, 1, 0, 0, 0, 4531, 4532, 1, 0, 0, 0, 4532, 4533, 5, 664, 0, 0, 4533, 4538, 3, 360, 180, 0, 4534, 4535, 5, 868, 0, 0, 4535, 4537, 3, 360, 180, 0, 4536, 4534, 1, 0, 0, 0, 4537, 4540, 1, 0, 0, 0, 4538, 4536, 1, 0, 0, 0, 4538, 4539, 1, 0, 0, 0, 4539, 353, 1, 0, 0, 0, 4540, 4538, 1, 0, 0, 0, 4541, 4542, 5, 194, 0, 0, 4542, 4543, 5, 350, 0, 0, 4543, 4549, 5, 600, 0, 0, 4544, 4545, 5, 135, 0, 0, 4545, 4549, 5, 195, 0, 0, 4546, 4547, 5, 135, 0, 0, 4547, 4549, 5, 515, 0, 0, 4548, 4541, 1, 0, 0, 0, 4548, 4544, 1, 0, 0, 0, 4548, 4546, 1, 0, 0, 0, 4549, 355, 1, 0, 0, 0, 4550, 4555, 3, 662, 331, 0, 4551, 4553, 5, 13, 0, 0, 4552, 4551, 1, 0, 0, 0, 4552, 4553, 1, 0, 0, 0, 4553, 4554, 1, 0, 0, 0, 4554, 4556, 3, 722, 361, 0, 4555, 4552, 1, 0, 0, 0, 4555, 4556, 1, 0, 0, 0, 4556, 4557, 1, 0, 0, 0, 4557, 4558, 3, 358, 179, 0, 4558, 357, 1, 0, 0, 0, 4559, 4561, 5, 135, 0, 0, 4560, 4562, 5, 450, 0, 0, 4561, 4560, 1, 0, 0, 0, 4561, 4562, 1, 0, 0, 0, 4562, 4568, 1, 0, 0, 0, 4563, 4565, 5, 107, 0, 0, 4564, 4563, 1, 0, 0, 0, 4564, 4565, 1, 0, 0, 0, 4565, 4566, 1, 0, 0, 0, 4566, 4568, 5, 195, 0, 0, 4567, 4559, 1, 0, 0, 0, 4567, 4564, 1, 0, 0, 0, 4568, 359, 1, 0, 0, 0, 4569, 4570, 5, 440, 0, 0, 4570, 4571, 5, 448, 0, 0, 4571, 4577, 3, 362, 181, 0, 4572, 4573, 5, 135, 0, 0, 4573, 4577, 5, 195, 0, 0, 4574, 4575, 5, 135, 0, 0, 4575, 4577, 5, 515, 0, 0, 4576, 4569, 1, 0, 0, 0, 4576, 4572, 1, 0, 0, 0, 4576, 4574, 1, 0, 0, 0, 4577, 361, 1, 0, 0, 0, 4578, 4579, 5, 809, 0, 0, 4579, 4586, 5, 135, 0, 0, 4580, 4581, 5, 135, 0, 0, 4581, 4586, 5, 810, 0, 0, 4582, 4583, 5, 135, 0, 0, 4583, 4586, 5, 811, 0, 0, 4584, 4586, 5, 812, 0, 0, 4585, 4578, 1, 0, 0, 0, 4585, 4580, 1, 0, 0, 0, 4585, 4582, 1, 0, 0, 0, 4585, 4584, 1, 0, 0, 0, 4586, 363, 1, 0, 0, 0, 4587, 4588, 5, 25, 0, 0, 4588, 4589, 5, 453, 0, 0, 4589, 4590, 5, 176, 0, 0, 4590, 4595, 3, 380, 190, 0, 4591, 4592, 5, 868, 0, 0, 4592, 4594, 3, 380, 190, 0, 4593, 4591, 1, 0, 0, 0, 4594, 4597, 1, 0, 0, 0, 4595, 4593, 1, 0, 0, 0, 4595, 4596, 1, 0, 0, 0, 4596, 4599, 1, 0, 0, 0, 4597, 4595, 1, 0, 0, 0, 4598, 4600, 3, 400, 200, 0, 4599, 4598, 1, 0, 0, 0, 4599, 4600, 1, 0, 0, 0, 4600, 365, 1, 0, 0, 0, 4601, 4602, 5, 25, 0, 0, 4602, 4603, 5, 572, 0, 0, 4603, 4604, 5, 400, 0, 0, 4604, 4609, 3, 402, 201, 0, 4605, 4606, 5, 868, 0, 0, 4606, 4608, 3, 402, 201, 0, 4607, 4605, 1, 0, 0, 0, 4608, 4611, 1, 0, 0, 0, 4609, 4607, 1, 0, 0, 0, 4609, 4610, 1, 0, 0, 0, 4610, 4613, 1, 0, 0, 0, 4611, 4609, 1, 0, 0, 0, 4612, 4614, 3, 400, 200, 0, 4613, 4612, 1, 0, 0, 0, 4613, 4614, 1, 0, 0, 0, 4614, 367, 1, 0, 0, 0, 4615, 4616, 5, 25, 0, 0, 4616, 4617, 5, 572, 0, 0, 4617, 4618, 5, 605, 0, 0, 4618, 4619, 5, 176, 0, 0, 4619, 4624, 3, 390, 195, 0, 4620, 4621, 5, 868, 0, 0, 4621, 4623, 3, 390, 195, 0, 4622, 4620, 1, 0, 0, 0, 4623, 4626, 1, 0, 0, 0, 4624, 4622, 1, 0, 0, 0, 4624, 4625, 1, 0, 0, 0, 4625, 4628, 1, 0, 0, 0, 4626, 4624, 1, 0, 0, 0, 4627, 4629, 3, 400, 200, 0, 4628, 4627, 1, 0, 0, 0, 4628, 4629, 1, 0, 0, 0, 4629, 369, 1, 0, 0, 0, 4630, 4631, 5, 133, 0, 0, 4631, 4632, 7, 63, 0, 0, 4632, 4637, 5, 452, 0, 0, 4633, 4634, 5, 176, 0, 0, 4634, 4638, 5, 882, 0, 0, 4635, 4636, 5, 16, 0, 0, 4636, 4638, 5, 882, 0, 0, 4637, 4633, 1, 0, 0, 0, 4637, 4635, 1, 0, 0, 0, 4638, 371, 1, 0, 0, 0, 4639, 4640, 5, 640, 0, 0, 4640, 4649, 7, 64, 0, 0, 4641, 4646, 3, 406, 203, 0, 4642, 4643, 5, 868, 0, 0, 4643, 4645, 3, 406, 203, 0, 4644, 4642, 1, 0, 0, 0, 4645, 4648, 1, 0, 0, 0, 4646, 4644, 1, 0, 0, 0, 4646, 4647, 1, 0, 0, 0, 4647, 4650, 1, 0, 0, 0, 4648, 4646, 1, 0, 0, 0, 4649, 4641, 1, 0, 0, 0, 4649, 4650, 1, 0, 0, 0, 4650, 4653, 1, 0, 0, 0, 4651, 4652, 5, 676, 0, 0, 4652, 4654, 3, 408, 204, 0, 4653, 4651, 1, 0, 0, 0, 4653, 4654, 1, 0, 0, 0, 4654, 4658, 1, 0, 0, 0, 4655, 4657, 3, 410, 205, 0, 4656, 4655, 1, 0, 0, 0, 4657, 4660, 1, 0, 0, 0, 4658, 4656, 1, 0, 0, 0, 4658, 4659, 1, 0, 0, 0, 4659, 4662, 1, 0, 0, 0, 4660, 4658, 1, 0, 0, 0, 4661, 4663, 3, 400, 200, 0, 4662, 4661, 1, 0, 0, 0, 4662, 4663, 1, 0, 0, 0, 4663, 373, 1, 0, 0, 0, 4664, 4665, 5, 646, 0, 0, 4665, 4674, 7, 64, 0, 0, 4666, 4671, 3, 406, 203, 0, 4667, 4668, 5, 868, 0, 0, 4668, 4670, 3, 406, 203, 0, 4669, 4667, 1, 0, 0, 0, 4670, 4673, 1, 0, 0, 0, 4671, 4669, 1, 0, 0, 0, 4671, 4672, 1, 0, 0, 0, 4672, 4675, 1, 0, 0, 0, 4673, 4671, 1, 0, 0, 0, 4674, 4666, 1, 0, 0, 0, 4674, 4675, 1, 0, 0, 0, 4675, 4677, 1, 0, 0, 0, 4676, 4678, 3, 400, 200, 0, 4677, 4676, 1, 0, 0, 0, 4677, 4678, 1, 0, 0, 0, 4678, 375, 1, 0, 0, 0, 4679, 4680, 5, 640, 0, 0, 4680, 4684, 5, 415, 0, 0, 4681, 4682, 5, 678, 0, 0, 4682, 4683, 5, 857, 0, 0, 4683, 4685, 5, 882, 0, 0, 4684, 4681, 1, 0, 0, 0, 4684, 4685, 1, 0, 0, 0, 4685, 4690, 1, 0, 0, 0, 4686, 4687, 5, 868, 0, 0, 4687, 4688, 5, 529, 0, 0, 4688, 4689, 5, 857, 0, 0, 4689, 4691, 5, 882, 0, 0, 4690, 4686, 1, 0, 0, 0, 4690, 4691, 1, 0, 0, 0, 4691, 4696, 1, 0, 0, 0, 4692, 4693, 5, 868, 0, 0, 4693, 4694, 5, 363, 0, 0, 4694, 4695, 5, 857, 0, 0, 4695, 4697, 5, 882, 0, 0, 4696, 4692, 1, 0, 0, 0, 4696, 4697, 1, 0, 0, 0, 4697, 377, 1, 0, 0, 0, 4698, 4699, 5, 646, 0, 0, 4699, 4700, 5, 415, 0, 0, 4700, 379, 1, 0, 0, 0, 4701, 4702, 3, 382, 191, 0, 4702, 4703, 5, 857, 0, 0, 4703, 4704, 5, 882, 0, 0, 4704, 4729, 1, 0, 0, 0, 4705, 4706, 3, 384, 192, 0, 4706, 4707, 5, 857, 0, 0, 4707, 4708, 3, 728, 364, 0, 4708, 4729, 1, 0, 0, 0, 4709, 4710, 3, 386, 193, 0, 4710, 4711, 5, 857, 0, 0, 4711, 4712, 7, 26, 0, 0, 4712, 4729, 1, 0, 0, 0, 4713, 4729, 3, 388, 194, 0, 4714, 4715, 5, 424, 0, 0, 4715, 4716, 5, 857, 0, 0, 4716, 4725, 5, 866, 0, 0, 4717, 4722, 3, 722, 361, 0, 4718, 4719, 5, 868, 0, 0, 4719, 4721, 3, 722, 361, 0, 4720, 4718, 1, 0, 0, 0, 4721, 4724, 1, 0, 0, 0, 4722, 4720, 1, 0, 0, 0, 4722, 4723, 1, 0, 0, 0, 4723, 4726, 1, 0, 0, 0, 4724, 4722, 1, 0, 0, 0, 4725, 4717, 1, 0, 0, 0, 4725, 4726, 1, 0, 0, 0, 4726, 4727, 1, 0, 0, 0, 4727, 4729, 5, 867, 0, 0, 4728, 4701, 1, 0, 0, 0, 4728, 4705, 1, 0, 0, 0, 4728, 4709, 1, 0, 0, 0, 4728, 4713, 1, 0, 0, 0, 4728, 4714, 1, 0, 0, 0, 4729, 381, 1, 0, 0, 0, 4730, 4731, 7, 65, 0, 0, 4731, 383, 1, 0, 0, 0, 4732, 4733, 7, 66, 0, 0, 4733, 385, 1, 0, 0, 0, 4734, 4735, 7, 67, 0, 0, 4735, 387, 1, 0, 0, 0, 4736, 4737, 5, 543, 0, 0, 4737, 4738, 5, 857, 0, 0, 4738, 4750, 7, 68, 0, 0, 4739, 4740, 5, 574, 0, 0, 4740, 4741, 5, 857, 0, 0, 4741, 4750, 7, 69, 0, 0, 4742, 4743, 5, 310, 0, 0, 4743, 4747, 5, 857, 0, 0, 4744, 4748, 5, 507, 0, 0, 4745, 4748, 5, 450, 0, 0, 4746, 4748, 3, 412, 206, 0, 4747, 4744, 1, 0, 0, 0, 4747, 4745, 1, 0, 0, 0, 4747, 4746, 1, 0, 0, 0, 4748, 4750, 1, 0, 0, 0, 4749, 4736, 1, 0, 0, 0, 4749, 4739, 1, 0, 0, 0, 4749, 4742, 1, 0, 0, 0, 4750, 389, 1, 0, 0, 0, 4751, 4752, 3, 392, 196, 0, 4752, 4753, 5, 857, 0, 0, 4753, 4754, 5, 882, 0, 0, 4754, 4779, 1, 0, 0, 0, 4755, 4756, 3, 394, 197, 0, 4756, 4757, 5, 857, 0, 0, 4757, 4758, 3, 728, 364, 0, 4758, 4779, 1, 0, 0, 0, 4759, 4760, 3, 396, 198, 0, 4760, 4761, 5, 857, 0, 0, 4761, 4762, 7, 26, 0, 0, 4762, 4779, 1, 0, 0, 0, 4763, 4779, 3, 398, 199, 0, 4764, 4765, 5, 424, 0, 0, 4765, 4766, 5, 857, 0, 0, 4766, 4775, 5, 866, 0, 0, 4767, 4772, 3, 722, 361, 0, 4768, 4769, 5, 868, 0, 0, 4769, 4771, 3, 722, 361, 0, 4770, 4768, 1, 0, 0, 0, 4771, 4774, 1, 0, 0, 0, 4772, 4770, 1, 0, 0, 0, 4772, 4773, 1, 0, 0, 0, 4773, 4776, 1, 0, 0, 0, 4774, 4772, 1, 0, 0, 0, 4775, 4767, 1, 0, 0, 0, 4775, 4776, 1, 0, 0, 0, 4776, 4777, 1, 0, 0, 0, 4777, 4779, 5, 867, 0, 0, 4778, 4751, 1, 0, 0, 0, 4778, 4755, 1, 0, 0, 0, 4778, 4759, 1, 0, 0, 0, 4778, 4763, 1, 0, 0, 0, 4778, 4764, 1, 0, 0, 0, 4779, 391, 1, 0, 0, 0, 4780, 4781, 7, 70, 0, 0, 4781, 393, 1, 0, 0, 0, 4782, 4783, 7, 71, 0, 0, 4783, 395, 1, 0, 0, 0, 4784, 4785, 7, 72, 0, 0, 4785, 397, 1, 0, 0, 0, 4786, 4787, 5, 543, 0, 0, 4787, 4788, 5, 857, 0, 0, 4788, 4800, 7, 68, 0, 0, 4789, 4790, 5, 574, 0, 0, 4790, 4791, 5, 857, 0, 0, 4791, 4800, 7, 73, 0, 0, 4792, 4793, 5, 310, 0, 0, 4793, 4797, 5, 857, 0, 0, 4794, 4798, 5, 507, 0, 0, 4795, 4798, 5, 450, 0, 0, 4796, 4798, 3, 412, 206, 0, 4797, 4794, 1, 0, 0, 0, 4797, 4795, 1, 0, 0, 0, 4797, 4796, 1, 0, 0, 0, 4798, 4800, 1, 0, 0, 0, 4799, 4786, 1, 0, 0, 0, 4799, 4789, 1, 0, 0, 0, 4799, 4792, 1, 0, 0, 0, 4800, 399, 1, 0, 0, 0, 4801, 4802, 5, 65, 0, 0, 4802, 4803, 5, 328, 0, 0, 4803, 4804, 5, 882, 0, 0, 4804, 401, 1, 0, 0, 0, 4805, 4806, 5, 565, 0, 0, 4806, 4807, 5, 857, 0, 0, 4807, 4808, 5, 866, 0, 0, 4808, 4813, 3, 638, 319, 0, 4809, 4810, 5, 868, 0, 0, 4810, 4812, 3, 638, 319, 0, 4811, 4809, 1, 0, 0, 0, 4812, 4815, 1, 0, 0, 0, 4813, 4811, 1, 0, 0, 0, 4813, 4814, 1, 0, 0, 0, 4814, 4816, 1, 0, 0, 0, 4815, 4813, 1, 0, 0, 0, 4816, 4817, 5, 867, 0, 0, 4817, 4869, 1, 0, 0, 0, 4818, 4819, 5, 567, 0, 0, 4819, 4820, 5, 857, 0, 0, 4820, 4821, 5, 866, 0, 0, 4821, 4826, 3, 638, 319, 0, 4822, 4823, 5, 868, 0, 0, 4823, 4825, 3, 638, 319, 0, 4824, 4822, 1, 0, 0, 0, 4825, 4828, 1, 0, 0, 0, 4826, 4824, 1, 0, 0, 0, 4826, 4827, 1, 0, 0, 0, 4827, 4829, 1, 0, 0, 0, 4828, 4826, 1, 0, 0, 0, 4829, 4830, 5, 867, 0, 0, 4830, 4869, 1, 0, 0, 0, 4831, 4832, 5, 566, 0, 0, 4832, 4833, 5, 857, 0, 0, 4833, 4834, 5, 866, 0, 0, 4834, 4835, 3, 660, 330, 0, 4835, 4836, 5, 867, 0, 0, 4836, 4869, 1, 0, 0, 0, 4837, 4838, 5, 568, 0, 0, 4838, 4839, 5, 857, 0, 0, 4839, 4840, 5, 866, 0, 0, 4840, 4841, 3, 660, 330, 0, 4841, 4842, 5, 867, 0, 0, 4842, 4869, 1, 0, 0, 0, 4843, 4844, 5, 570, 0, 0, 4844, 4845, 5, 857, 0, 0, 4845, 4846, 5, 866, 0, 0, 4846, 4847, 3, 766, 383, 0, 4847, 4848, 5, 867, 0, 0, 4848, 4869, 1, 0, 0, 0, 4849, 4850, 5, 571, 0, 0, 4850, 4851, 5, 857, 0, 0, 4851, 4852, 5, 866, 0, 0, 4852, 4853, 3, 766, 383, 0, 4853, 4854, 5, 867, 0, 0, 4854, 4869, 1, 0, 0, 0, 4855, 4856, 5, 569, 0, 0, 4856, 4857, 5, 857, 0, 0, 4857, 4858, 5, 866, 0, 0, 4858, 4863, 3, 404, 202, 0, 4859, 4860, 5, 868, 0, 0, 4860, 4862, 3, 404, 202, 0, 4861, 4859, 1, 0, 0, 0, 4862, 4865, 1, 0, 0, 0, 4863, 4861, 1, 0, 0, 0, 4863, 4864, 1, 0, 0, 0, 4864, 4866, 1, 0, 0, 0, 4865, 4863, 1, 0, 0, 0, 4866, 4867, 5, 867, 0, 0, 4867, 4869, 1, 0, 0, 0, 4868, 4805, 1, 0, 0, 0, 4868, 4818, 1, 0, 0, 0, 4868, 4831, 1, 0, 0, 0, 4868, 4837, 1, 0, 0, 0, 4868, 4843, 1, 0, 0, 0, 4868, 4849, 1, 0, 0, 0, 4868, 4855, 1, 0, 0, 0, 4869, 403, 1, 0, 0, 0, 4870, 4871, 5, 866, 0, 0, 4871, 4872, 3, 662, 331, 0, 4872, 4873, 5, 868, 0, 0, 4873, 4874, 3, 662, 331, 0, 4874, 4875, 5, 867, 0, 0, 4875, 405, 1, 0, 0, 0, 4876, 4877, 7, 74, 0, 0, 4877, 407, 1, 0, 0, 0, 4878, 4879, 7, 75, 0, 0, 4879, 4880, 5, 857, 0, 0, 4880, 4904, 3, 412, 206, 0, 4881, 4882, 5, 460, 0, 0, 4882, 4883, 5, 857, 0, 0, 4883, 4884, 5, 882, 0, 0, 4884, 4885, 5, 868, 0, 0, 4885, 4886, 5, 461, 0, 0, 4886, 4887, 5, 857, 0, 0, 4887, 4904, 3, 728, 364, 0, 4888, 4889, 5, 611, 0, 0, 4889, 4890, 5, 857, 0, 0, 4890, 4891, 5, 882, 0, 0, 4891, 4892, 5, 868, 0, 0, 4892, 4893, 5, 612, 0, 0, 4893, 4894, 5, 857, 0, 0, 4894, 4904, 3, 728, 364, 0, 4895, 4896, 5, 557, 0, 0, 4896, 4897, 5, 857, 0, 0, 4897, 4898, 5, 882, 0, 0, 4898, 4899, 5, 868, 0, 0, 4899, 4900, 5, 558, 0, 0, 4900, 4901, 5, 857, 0, 0, 4901, 4904, 3, 728, 364, 0, 4902, 4904, 5, 634, 0, 0, 4903, 4878, 1, 0, 0, 0, 4903, 4881, 1, 0, 0, 0, 4903, 4888, 1, 0, 0, 0, 4903, 4895, 1, 0, 0, 0, 4903, 4902, 1, 0, 0, 0, 4904, 409, 1, 0, 0, 0, 4905, 4906, 5, 678, 0, 0, 4906, 4907, 5, 857, 0, 0, 4907, 4918, 5, 882, 0, 0, 4908, 4909, 5, 529, 0, 0, 4909, 4910, 5, 857, 0, 0, 4910, 4918, 5, 882, 0, 0, 4911, 4912, 5, 363, 0, 0, 4912, 4913, 5, 857, 0, 0, 4913, 4918, 5, 882, 0, 0, 4914, 4915, 5, 535, 0, 0, 4915, 4916, 5, 857, 0, 0, 4916, 4918, 5, 882, 0, 0, 4917, 4905, 1, 0, 0, 0, 4917, 4908, 1, 0, 0, 0, 4917, 4911, 1, 0, 0, 0, 4917, 4914, 1, 0, 0, 0, 4918, 411, 1, 0, 0, 0, 4919, 4924, 3, 712, 356, 0, 4920, 4921, 5, 868, 0, 0, 4921, 4923, 3, 712, 356, 0, 4922, 4920, 1, 0, 0, 0, 4923, 4926, 1, 0, 0, 0, 4924, 4922, 1, 0, 0, 0, 4924, 4925, 1, 0, 0, 0, 4925, 4929, 1, 0, 0, 0, 4926, 4924, 1, 0, 0, 0, 4927, 4929, 5, 882, 0, 0, 4928, 4919, 1, 0, 0, 0, 4928, 4927, 1, 0, 0, 0, 4929, 413, 1, 0, 0, 0, 4930, 4931, 5, 694, 0, 0, 4931, 4932, 7, 76, 0, 0, 4932, 4934, 3, 714, 357, 0, 4933, 4935, 7, 77, 0, 0, 4934, 4933, 1, 0, 0, 0, 4934, 4935, 1, 0, 0, 0, 4935, 415, 1, 0, 0, 0, 4936, 4937, 5, 694, 0, 0, 4937, 4938, 5, 378, 0, 0, 4938, 4944, 3, 714, 357, 0, 4939, 4942, 5, 654, 0, 0, 4940, 4941, 5, 65, 0, 0, 4941, 4943, 5, 489, 0, 0, 4942, 4940, 1, 0, 0, 0, 4942, 4943, 1, 0, 0, 0, 4943, 4945, 1, 0, 0, 0, 4944, 4939, 1, 0, 0, 0, 4944, 4945, 1, 0, 0, 0, 4945, 417, 1, 0, 0, 0, 4946, 4947, 5, 694, 0, 0, 4947, 4948, 5, 540, 0, 0, 4948, 4949, 3, 714, 357, 0, 4949, 419, 1, 0, 0, 0, 4950, 4951, 5, 694, 0, 0, 4951, 4952, 5, 341, 0, 0, 4952, 4955, 3, 714, 357, 0, 4953, 4954, 5, 513, 0, 0, 4954, 4956, 5, 533, 0, 0, 4955, 4953, 1, 0, 0, 0, 4955, 4956, 1, 0, 0, 0, 4956, 421, 1, 0, 0, 0, 4957, 4958, 5, 694, 0, 0, 4958, 4959, 5, 583, 0, 0, 4959, 4960, 3, 714, 357, 0, 4960, 423, 1, 0, 0, 0, 4961, 4962, 5, 694, 0, 0, 4962, 4965, 5, 551, 0, 0, 4963, 4964, 5, 33, 0, 0, 4964, 4966, 3, 714, 357, 0, 4965, 4963, 1, 0, 0, 0, 4965, 4966, 1, 0, 0, 0, 4966, 425, 1, 0, 0, 0, 4967, 4968, 5, 540, 0, 0, 4968, 4969, 3, 722, 361, 0, 4969, 4972, 5, 68, 0, 0, 4970, 4973, 5, 882, 0, 0, 4971, 4973, 5, 892, 0, 0, 4972, 4970, 1, 0, 0, 0, 4972, 4971, 1, 0, 0, 0, 4973, 427, 1, 0, 0, 0, 4974, 4975, 5, 717, 0, 0, 4975, 4978, 3, 722, 361, 0, 4976, 4977, 5, 188, 0, 0, 4977, 4979, 3, 768, 384, 0, 4978, 4976, 1, 0, 0, 0, 4978, 4979, 1, 0, 0, 0, 4979, 429, 1, 0, 0, 0, 4980, 4981, 7, 78, 0, 0, 4981, 4982, 5, 540, 0, 0, 4982, 4983, 3, 722, 361, 0, 4983, 431, 1, 0, 0, 0, 4984, 4987, 3, 434, 217, 0, 4985, 4987, 3, 4, 2, 0, 4986, 4984, 1, 0, 0, 0, 4986, 4985, 1, 0, 0, 0, 4987, 433, 1, 0, 0, 0, 4988, 4989, 3, 722, 361, 0, 4989, 4990, 5, 878, 0, 0, 4990, 4992, 1, 0, 0, 0, 4991, 4988, 1, 0, 0, 0, 4991, 4992, 1, 0, 0, 0, 4992, 4993, 1, 0, 0, 0, 4993, 4999, 5, 317, 0, 0, 4994, 4995, 3, 454, 227, 0, 4995, 4996, 5, 869, 0, 0, 4996, 4998, 1, 0, 0, 0, 4997, 4994, 1, 0, 0, 0, 4998, 5001, 1, 0, 0, 0, 4999, 4997, 1, 0, 0, 0, 4999, 5000, 1, 0, 0, 0, 5000, 5007, 1, 0, 0, 0, 5001, 4999, 1, 0, 0, 0, 5002, 5003, 3, 456, 228, 0, 5003, 5004, 5, 869, 0, 0, 5004, 5006, 1, 0, 0, 0, 5005, 5002, 1, 0, 0, 0, 5006, 5009, 1, 0, 0, 0, 5007, 5005, 1, 0, 0, 0, 5007, 5008, 1, 0, 0, 0, 5008, 5015, 1, 0, 0, 0, 5009, 5007, 1, 0, 0, 0, 5010, 5011, 3, 458, 229, 0, 5011, 5012, 5, 869, 0, 0, 5012, 5014, 1, 0, 0, 0, 5013, 5010, 1, 0, 0, 0, 5014, 5017, 1, 0, 0, 0, 5015, 5013, 1, 0, 0, 0, 5015, 5016, 1, 0, 0, 0, 5016, 5023, 1, 0, 0, 0, 5017, 5015, 1, 0, 0, 0, 5018, 5019, 3, 460, 230, 0, 5019, 5020, 5, 869, 0, 0, 5020, 5022, 1, 0, 0, 0, 5021, 5018, 1, 0, 0, 0, 5022, 5025, 1, 0, 0, 0, 5023, 5021, 1, 0, 0, 0, 5023, 5024, 1, 0, 0, 0, 5024, 5029, 1, 0, 0, 0, 5025, 5023, 1, 0, 0, 0, 5026, 5028, 3, 464, 232, 0, 5027, 5026, 1, 0, 0, 0, 5028, 5031, 1, 0, 0, 0, 5029, 5027, 1, 0, 0, 0, 5029, 5030, 1, 0, 0, 0, 5030, 5032, 1, 0, 0, 0, 5031, 5029, 1, 0, 0, 0, 5032, 5034, 5, 378, 0, 0, 5033, 5035, 3, 722, 361, 0, 5034, 5033, 1, 0, 0, 0, 5034, 5035, 1, 0, 0, 0, 5035, 435, 1, 0, 0, 0, 5036, 5039, 5, 23, 0, 0, 5037, 5040, 3, 722, 361, 0, 5038, 5040, 3, 820, 410, 0, 5039, 5037, 1, 0, 0, 0, 5039, 5038, 1, 0, 0, 0, 5039, 5040, 1, 0, 0, 0, 5040, 5042, 1, 0, 0, 0, 5041, 5043, 3, 466, 233, 0, 5042, 5041, 1, 0, 0, 0, 5043, 5044, 1, 0, 0, 0, 5044, 5042, 1, 0, 0, 0, 5044, 5045, 1, 0, 0, 0, 5045, 5052, 1, 0, 0, 0, 5046, 5048, 5, 53, 0, 0, 5047, 5049, 3, 464, 232, 0, 5048, 5047, 1, 0, 0, 0, 5049, 5050, 1, 0, 0, 0, 5050, 5048, 1, 0, 0, 0, 5050, 5051, 1, 0, 0, 0, 5051, 5053, 1, 0, 0, 0, 5052, 5046, 1, 0, 0, 0, 5052, 5053, 1, 0, 0, 0, 5053, 5054, 1, 0, 0, 0, 5054, 5055, 5, 378, 0, 0, 5055, 5056, 5, 23, 0, 0, 5056, 437, 1, 0, 0, 0, 5057, 5058, 5, 78, 0, 0, 5058, 5059, 3, 820, 410, 0, 5059, 5061, 5, 175, 0, 0, 5060, 5062, 3, 464, 232, 0, 5061, 5060, 1, 0, 0, 0, 5062, 5063, 1, 0, 0, 0, 5063, 5061, 1, 0, 0, 0, 5063, 5064, 1, 0, 0, 0, 5064, 5068, 1, 0, 0, 0, 5065, 5067, 3, 468, 234, 0, 5066, 5065, 1, 0, 0, 0, 5067, 5070, 1, 0, 0, 0, 5068, 5066, 1, 0, 0, 0, 5068, 5069, 1, 0, 0, 0, 5069, 5077, 1, 0, 0, 0, 5070, 5068, 1, 0, 0, 0, 5071, 5073, 5, 53, 0, 0, 5072, 5074, 3, 464, 232, 0, 5073, 5072, 1, 0, 0, 0, 5074, 5075, 1, 0, 0, 0, 5075, 5073, 1, 0, 0, 0, 5075, 5076, 1, 0, 0, 0, 5076, 5078, 1, 0, 0, 0, 5077, 5071, 1, 0, 0, 0, 5077, 5078, 1, 0, 0, 0, 5078, 5079, 1, 0, 0, 0, 5079, 5080, 5, 378, 0, 0, 5080, 5081, 5, 78, 0, 0, 5081, 439, 1, 0, 0, 0, 5082, 5083, 5, 90, 0, 0, 5083, 5084, 3, 722, 361, 0, 5084, 441, 1, 0, 0, 0, 5085, 5086, 5, 97, 0, 0, 5086, 5087, 3, 722, 361, 0, 5087, 443, 1, 0, 0, 0, 5088, 5089, 3, 722, 361, 0, 5089, 5090, 5, 878, 0, 0, 5090, 5092, 1, 0, 0, 0, 5091, 5088, 1, 0, 0, 0, 5091, 5092, 1, 0, 0, 0, 5092, 5093, 1, 0, 0, 0, 5093, 5095, 5, 106, 0, 0, 5094, 5096, 3, 464, 232, 0, 5095, 5094, 1, 0, 0, 0, 5096, 5097, 1, 0, 0, 0, 5097, 5095, 1, 0, 0, 0, 5097, 5098, 1, 0, 0, 0, 5098, 5099, 1, 0, 0, 0, 5099, 5100, 5, 378, 0, 0, 5100, 5102, 5, 106, 0, 0, 5101, 5103, 3, 722, 361, 0, 5102, 5101, 1, 0, 0, 0, 5102, 5103, 1, 0, 0, 0, 5103, 445, 1, 0, 0, 0, 5104, 5105, 3, 722, 361, 0, 5105, 5106, 5, 878, 0, 0, 5106, 5108, 1, 0, 0, 0, 5107, 5104, 1, 0, 0, 0, 5107, 5108, 1, 0, 0, 0, 5108, 5109, 1, 0, 0, 0, 5109, 5111, 5, 142, 0, 0, 5110, 5112, 3, 464, 232, 0, 5111, 5110, 1, 0, 0, 0, 5112, 5113, 1, 0, 0, 0, 5113, 5111, 1, 0, 0, 0, 5113, 5114, 1, 0, 0, 0, 5114, 5115, 1, 0, 0, 0, 5115, 5116, 5, 676, 0, 0, 5116, 5117, 3, 820, 410, 0, 5117, 5118, 5, 378, 0, 0, 5118, 5120, 5, 142, 0, 0, 5119, 5121, 3, 722, 361, 0, 5120, 5119, 1, 0, 0, 0, 5120, 5121, 1, 0, 0, 0, 5121, 447, 1, 0, 0, 0, 5122, 5123, 5, 148, 0, 0, 5123, 5124, 3, 820, 410, 0, 5124, 449, 1, 0, 0, 0, 5125, 5126, 3, 722, 361, 0, 5126, 5127, 5, 878, 0, 0, 5127, 5129, 1, 0, 0, 0, 5128, 5125, 1, 0, 0, 0, 5128, 5129, 1, 0, 0, 0, 5129, 5130, 1, 0, 0, 0, 5130, 5131, 5, 193, 0, 0, 5131, 5132, 3, 820, 410, 0, 5132, 5134, 5, 371, 0, 0, 5133, 5135, 3, 464, 232, 0, 5134, 5133, 1, 0, 0, 0, 5135, 5136, 1, 0, 0, 0, 5136, 5134, 1, 0, 0, 0, 5136, 5137, 1, 0, 0, 0, 5137, 5138, 1, 0, 0, 0, 5138, 5139, 5, 378, 0, 0, 5139, 5141, 5, 193, 0, 0, 5140, 5142, 3, 722, 361, 0, 5141, 5140, 1, 0, 0, 0, 5141, 5142, 1, 0, 0, 0, 5142, 451, 1, 0, 0, 0, 5143, 5144, 5, 334, 0, 0, 5144, 5159, 3, 722, 361, 0, 5145, 5150, 5, 64, 0, 0, 5146, 5148, 5, 501, 0, 0, 5147, 5146, 1, 0, 0, 0, 5147, 5148, 1, 0, 0, 0, 5148, 5149, 1, 0, 0, 0, 5149, 5151, 5, 68, 0, 0, 5150, 5147, 1, 0, 0, 0, 5150, 5151, 1, 0, 0, 0, 5151, 5152, 1, 0, 0, 0, 5152, 5153, 3, 722, 361, 0, 5153, 5154, 5, 88, 0, 0, 5154, 5155, 3, 720, 360, 0, 5155, 5159, 1, 0, 0, 0, 5156, 5157, 5, 516, 0, 0, 5157, 5159, 3, 722, 361, 0, 5158, 5143, 1, 0, 0, 0, 5158, 5145, 1, 0, 0, 0, 5158, 5156, 1, 0, 0, 0, 5159, 453, 1, 0, 0, 0, 5160, 5161, 5, 41, 0, 0, 5161, 5162, 3, 720, 360, 0, 5162, 5165, 3, 742, 371, 0, 5163, 5164, 5, 42, 0, 0, 5164, 5166, 3, 820, 410, 0, 5165, 5163, 1, 0, 0, 0, 5165, 5166, 1, 0, 0, 0, 5166, 455, 1, 0, 0, 0, 5167, 5168, 5, 41, 0, 0, 5168, 5169, 3, 722, 361, 0, 5169, 5170, 5, 30, 0, 0, 5170, 5177, 5, 65, 0, 0, 5171, 5178, 3, 728, 364, 0, 5172, 5174, 5, 164, 0, 0, 5173, 5175, 5, 682, 0, 0, 5174, 5173, 1, 0, 0, 0, 5174, 5175, 1, 0, 0, 0, 5175, 5176, 1, 0, 0, 0, 5176, 5178, 5, 882, 0, 0, 5177, 5171, 1, 0, 0, 0, 5177, 5172, 1, 0, 0, 0, 5178, 457, 1, 0, 0, 0, 5179, 5180, 5, 41, 0, 0, 5180, 5181, 3, 722, 361, 0, 5181, 5182, 5, 38, 0, 0, 5182, 5183, 5, 65, 0, 0, 5183, 5184, 3, 210, 105, 0, 5184, 459, 1, 0, 0, 0, 5185, 5186, 5, 41, 0, 0, 5186, 5187, 7, 79, 0, 0, 5187, 5188, 5, 417, 0, 0, 5188, 5189, 5, 65, 0, 0, 5189, 5194, 3, 462, 231, 0, 5190, 5191, 5, 868, 0, 0, 5191, 5193, 3, 462, 231, 0, 5192, 5190, 1, 0, 0, 0, 5193, 5196, 1, 0, 0, 0, 5194, 5192, 1, 0, 0, 0, 5194, 5195, 1, 0, 0, 0, 5195, 5197, 1, 0, 0, 0, 5196, 5194, 1, 0, 0, 0, 5197, 5198, 3, 432, 216, 0, 5198, 461, 1, 0, 0, 0, 5199, 5211, 3, 728, 364, 0, 5200, 5202, 5, 164, 0, 0, 5201, 5203, 5, 682, 0, 0, 5202, 5201, 1, 0, 0, 0, 5202, 5203, 1, 0, 0, 0, 5203, 5204, 1, 0, 0, 0, 5204, 5211, 5, 882, 0, 0, 5205, 5211, 3, 722, 361, 0, 5206, 5211, 5, 165, 0, 0, 5207, 5208, 5, 114, 0, 0, 5208, 5211, 5, 407, 0, 0, 5209, 5211, 5, 163, 0, 0, 5210, 5199, 1, 0, 0, 0, 5210, 5200, 1, 0, 0, 0, 5210, 5205, 1, 0, 0, 0, 5210, 5206, 1, 0, 0, 0, 5210, 5207, 1, 0, 0, 0, 5210, 5209, 1, 0, 0, 0, 5211, 463, 1, 0, 0, 0, 5212, 5215, 3, 18, 9, 0, 5213, 5215, 3, 4, 2, 0, 5214, 5212, 1, 0, 0, 0, 5214, 5213, 1, 0, 0, 0, 5215, 5216, 1, 0, 0, 0, 5216, 5217, 5, 869, 0, 0, 5217, 465, 1, 0, 0, 0, 5218, 5221, 5, 191, 0, 0, 5219, 5222, 3, 740, 370, 0, 5220, 5222, 3, 820, 410, 0, 5221, 5219, 1, 0, 0, 0, 5221, 5220, 1, 0, 0, 0, 5222, 5223, 1, 0, 0, 0, 5223, 5225, 5, 175, 0, 0, 5224, 5226, 3, 464, 232, 0, 5225, 5224, 1, 0, 0, 0, 5226, 5227, 1, 0, 0, 0, 5227, 5225, 1, 0, 0, 0, 5227, 5228, 1, 0, 0, 0, 5228, 467, 1, 0, 0, 0, 5229, 5230, 5, 54, 0, 0, 5230, 5231, 3, 820, 410, 0, 5231, 5233, 5, 175, 0, 0, 5232, 5234, 3, 464, 232, 0, 5233, 5232, 1, 0, 0, 0, 5234, 5235, 1, 0, 0, 0, 5235, 5233, 1, 0, 0, 0, 5235, 5236, 1, 0, 0, 0, 5236, 469, 1, 0, 0, 0, 5237, 5238, 5, 8, 0, 0, 5238, 5240, 5, 678, 0, 0, 5239, 5241, 3, 774, 387, 0, 5240, 5239, 1, 0, 0, 0, 5240, 5241, 1, 0, 0, 0, 5241, 5298, 1, 0, 0, 0, 5242, 5247, 3, 502, 251, 0, 5243, 5244, 5, 868, 0, 0, 5244, 5246, 3, 502, 251, 0, 5245, 5243, 1, 0, 0, 0, 5246, 5249, 1, 0, 0, 0, 5247, 5245, 1, 0, 0, 0, 5247, 5248, 1, 0, 0, 0, 5248, 5299, 1, 0, 0, 0, 5249, 5247, 1, 0, 0, 0, 5250, 5255, 3, 504, 252, 0, 5251, 5252, 5, 868, 0, 0, 5252, 5254, 3, 504, 252, 0, 5253, 5251, 1, 0, 0, 0, 5254, 5257, 1, 0, 0, 0, 5255, 5253, 1, 0, 0, 0, 5255, 5256, 1, 0, 0, 0, 5256, 5272, 1, 0, 0, 0, 5257, 5255, 1, 0, 0, 0, 5258, 5270, 5, 144, 0, 0, 5259, 5271, 5, 505, 0, 0, 5260, 5267, 3, 516, 258, 0, 5261, 5263, 5, 11, 0, 0, 5262, 5261, 1, 0, 0, 0, 5262, 5263, 1, 0, 0, 0, 5263, 5264, 1, 0, 0, 0, 5264, 5266, 3, 516, 258, 0, 5265, 5262, 1, 0, 0, 0, 5266, 5269, 1, 0, 0, 0, 5267, 5265, 1, 0, 0, 0, 5267, 5268, 1, 0, 0, 0, 5268, 5271, 1, 0, 0, 0, 5269, 5267, 1, 0, 0, 0, 5270, 5259, 1, 0, 0, 0, 5270, 5260, 1, 0, 0, 0, 5271, 5273, 1, 0, 0, 0, 5272, 5258, 1, 0, 0, 0, 5272, 5273, 1, 0, 0, 0, 5273, 5280, 1, 0, 0, 0, 5274, 5276, 5, 194, 0, 0, 5275, 5277, 3, 518, 259, 0, 5276, 5275, 1, 0, 0, 0, 5277, 5278, 1, 0, 0, 0, 5278, 5276, 1, 0, 0, 0, 5278, 5279, 1, 0, 0, 0, 5279, 5281, 1, 0, 0, 0, 5280, 5274, 1, 0, 0, 0, 5280, 5281, 1, 0, 0, 0, 5281, 5286, 1, 0, 0, 0, 5282, 5285, 3, 520, 260, 0, 5283, 5285, 3, 522, 261, 0, 5284, 5282, 1, 0, 0, 0, 5284, 5283, 1, 0, 0, 0, 5285, 5288, 1, 0, 0, 0, 5286, 5284, 1, 0, 0, 0, 5286, 5287, 1, 0, 0, 0, 5287, 5291, 1, 0, 0, 0, 5288, 5286, 1, 0, 0, 0, 5289, 5290, 7, 80, 0, 0, 5290, 5292, 5, 882, 0, 0, 5291, 5289, 1, 0, 0, 0, 5291, 5292, 1, 0, 0, 0, 5292, 5299, 1, 0, 0, 0, 5293, 5294, 3, 666, 333, 0, 5294, 5295, 5, 42, 0, 0, 5295, 5296, 5, 582, 0, 0, 5296, 5297, 3, 478, 239, 0, 5297, 5299, 1, 0, 0, 0, 5298, 5242, 1, 0, 0, 0, 5298, 5250, 1, 0, 0, 0, 5298, 5293, 1, 0, 0, 0, 5299, 471, 1, 0, 0, 0, 5300, 5301, 5, 34, 0, 0, 5301, 5303, 5, 678, 0, 0, 5302, 5304, 3, 776, 388, 0, 5303, 5302, 1, 0, 0, 0, 5303, 5304, 1, 0, 0, 0, 5304, 5305, 1, 0, 0, 0, 5305, 5307, 3, 700, 350, 0, 5306, 5308, 3, 506, 253, 0, 5307, 5306, 1, 0, 0, 0, 5307, 5308, 1, 0, 0, 0, 5308, 5316, 1, 0, 0, 0, 5309, 5310, 5, 868, 0, 0, 5310, 5312, 3, 700, 350, 0, 5311, 5313, 3, 506, 253, 0, 5312, 5311, 1, 0, 0, 0, 5312, 5313, 1, 0, 0, 0, 5313, 5315, 1, 0, 0, 0, 5314, 5309, 1, 0, 0, 0, 5315, 5318, 1, 0, 0, 0, 5316, 5314, 1, 0, 0, 0, 5316, 5317, 1, 0, 0, 0, 5317, 5322, 1, 0, 0, 0, 5318, 5316, 1, 0, 0, 0, 5319, 5320, 5, 42, 0, 0, 5320, 5321, 5, 582, 0, 0, 5321, 5323, 3, 478, 239, 0, 5322, 5319, 1, 0, 0, 0, 5322, 5323, 1, 0, 0, 0, 5323, 5338, 1, 0, 0, 0, 5324, 5336, 5, 144, 0, 0, 5325, 5337, 5, 505, 0, 0, 5326, 5333, 3, 516, 258, 0, 5327, 5329, 5, 11, 0, 0, 5328, 5327, 1, 0, 0, 0, 5328, 5329, 1, 0, 0, 0, 5329, 5330, 1, 0, 0, 0, 5330, 5332, 3, 516, 258, 0, 5331, 5328, 1, 0, 0, 0, 5332, 5335, 1, 0, 0, 0, 5333, 5331, 1, 0, 0, 0, 5333, 5334, 1, 0, 0, 0, 5334, 5337, 1, 0, 0, 0, 5335, 5333, 1, 0, 0, 0, 5336, 5325, 1, 0, 0, 0, 5336, 5326, 1, 0, 0, 0, 5337, 5339, 1, 0, 0, 0, 5338, 5324, 1, 0, 0, 0, 5338, 5339, 1, 0, 0, 0, 5339, 5346, 1, 0, 0, 0, 5340, 5342, 5, 194, 0, 0, 5341, 5343, 3, 518, 259, 0, 5342, 5341, 1, 0, 0, 0, 5343, 5344, 1, 0, 0, 0, 5344, 5342, 1, 0, 0, 0, 5344, 5345, 1, 0, 0, 0, 5345, 5347, 1, 0, 0, 0, 5346, 5340, 1, 0, 0, 0, 5346, 5347, 1, 0, 0, 0, 5347, 5352, 1, 0, 0, 0, 5348, 5351, 3, 520, 260, 0, 5349, 5351, 3, 522, 261, 0, 5350, 5348, 1, 0, 0, 0, 5350, 5349, 1, 0, 0, 0, 5351, 5354, 1, 0, 0, 0, 5352, 5350, 1, 0, 0, 0, 5352, 5353, 1, 0, 0, 0, 5353, 5357, 1, 0, 0, 0, 5354, 5352, 1, 0, 0, 0, 5355, 5356, 7, 80, 0, 0, 5356, 5358, 5, 882, 0, 0, 5357, 5355, 1, 0, 0, 0, 5357, 5358, 1, 0, 0, 0, 5358, 473, 1, 0, 0, 0, 5359, 5360, 5, 51, 0, 0, 5360, 5362, 5, 678, 0, 0, 5361, 5363, 3, 774, 387, 0, 5362, 5361, 1, 0, 0, 0, 5362, 5363, 1, 0, 0, 0, 5363, 5364, 1, 0, 0, 0, 5364, 5369, 3, 700, 350, 0, 5365, 5366, 5, 868, 0, 0, 5366, 5368, 3, 700, 350, 0, 5367, 5365, 1, 0, 0, 0, 5368, 5371, 1, 0, 0, 0, 5369, 5367, 1, 0, 0, 0, 5369, 5370, 1, 0, 0, 0, 5370, 475, 1, 0, 0, 0, 5371, 5369, 1, 0, 0, 0, 5372, 5373, 5, 73, 0, 0, 5373, 5378, 3, 530, 265, 0, 5374, 5375, 5, 868, 0, 0, 5375, 5377, 3, 530, 265, 0, 5376, 5374, 1, 0, 0, 0, 5377, 5380, 1, 0, 0, 0, 5378, 5376, 1, 0, 0, 0, 5378, 5379, 1, 0, 0, 0, 5379, 5381, 1, 0, 0, 0, 5380, 5378, 1, 0, 0, 0, 5381, 5383, 5, 119, 0, 0, 5382, 5384, 3, 498, 249, 0, 5383, 5382, 1, 0, 0, 0, 5383, 5384, 1, 0, 0, 0, 5384, 5385, 1, 0, 0, 0, 5385, 5386, 3, 534, 267, 0, 5386, 5396, 5, 176, 0, 0, 5387, 5392, 3, 510, 255, 0, 5388, 5389, 5, 868, 0, 0, 5389, 5391, 3, 510, 255, 0, 5390, 5388, 1, 0, 0, 0, 5391, 5394, 1, 0, 0, 0, 5392, 5390, 1, 0, 0, 0, 5392, 5393, 1, 0, 0, 0, 5393, 5397, 1, 0, 0, 0, 5394, 5392, 1, 0, 0, 0, 5395, 5397, 3, 664, 332, 0, 5396, 5387, 1, 0, 0, 0, 5396, 5395, 1, 0, 0, 0, 5397, 5412, 1, 0, 0, 0, 5398, 5410, 5, 144, 0, 0, 5399, 5411, 5, 505, 0, 0, 5400, 5407, 3, 516, 258, 0, 5401, 5403, 5, 11, 0, 0, 5402, 5401, 1, 0, 0, 0, 5402, 5403, 1, 0, 0, 0, 5403, 5404, 1, 0, 0, 0, 5404, 5406, 3, 516, 258, 0, 5405, 5402, 1, 0, 0, 0, 5406, 5409, 1, 0, 0, 0, 5407, 5405, 1, 0, 0, 0, 5407, 5408, 1, 0, 0, 0, 5408, 5411, 1, 0, 0, 0, 5409, 5407, 1, 0, 0, 0, 5410, 5399, 1, 0, 0, 0, 5410, 5400, 1, 0, 0, 0, 5411, 5413, 1, 0, 0, 0, 5412, 5398, 1, 0, 0, 0, 5412, 5413, 1, 0, 0, 0, 5413, 5423, 1, 0, 0, 0, 5414, 5420, 5, 194, 0, 0, 5415, 5416, 5, 73, 0, 0, 5416, 5419, 5, 121, 0, 0, 5417, 5419, 3, 518, 259, 0, 5418, 5415, 1, 0, 0, 0, 5418, 5417, 1, 0, 0, 0, 5419, 5422, 1, 0, 0, 0, 5420, 5418, 1, 0, 0, 0, 5420, 5421, 1, 0, 0, 0, 5421, 5424, 1, 0, 0, 0, 5422, 5420, 1, 0, 0, 0, 5423, 5414, 1, 0, 0, 0, 5423, 5424, 1, 0, 0, 0, 5424, 5432, 1, 0, 0, 0, 5425, 5426, 5, 13, 0, 0, 5426, 5430, 3, 700, 350, 0, 5427, 5428, 5, 194, 0, 0, 5428, 5429, 5, 582, 0, 0, 5429, 5431, 3, 478, 239, 0, 5430, 5427, 1, 0, 0, 0, 5430, 5431, 1, 0, 0, 0, 5431, 5433, 1, 0, 0, 0, 5432, 5425, 1, 0, 0, 0, 5432, 5433, 1, 0, 0, 0, 5433, 5462, 1, 0, 0, 0, 5434, 5437, 5, 73, 0, 0, 5435, 5436, 5, 547, 0, 0, 5436, 5438, 5, 119, 0, 0, 5437, 5435, 1, 0, 0, 0, 5437, 5438, 1, 0, 0, 0, 5438, 5439, 1, 0, 0, 0, 5439, 5444, 3, 666, 333, 0, 5440, 5441, 5, 868, 0, 0, 5441, 5443, 3, 666, 333, 0, 5442, 5440, 1, 0, 0, 0, 5443, 5446, 1, 0, 0, 0, 5444, 5442, 1, 0, 0, 0, 5444, 5445, 1, 0, 0, 0, 5445, 5447, 1, 0, 0, 0, 5446, 5444, 1, 0, 0, 0, 5447, 5448, 5, 176, 0, 0, 5448, 5453, 3, 666, 333, 0, 5449, 5450, 5, 868, 0, 0, 5450, 5452, 3, 666, 333, 0, 5451, 5449, 1, 0, 0, 0, 5452, 5455, 1, 0, 0, 0, 5453, 5451, 1, 0, 0, 0, 5453, 5454, 1, 0, 0, 0, 5454, 5459, 1, 0, 0, 0, 5455, 5453, 1, 0, 0, 0, 5456, 5457, 5, 194, 0, 0, 5457, 5458, 5, 704, 0, 0, 5458, 5460, 5, 121, 0, 0, 5459, 5456, 1, 0, 0, 0, 5459, 5460, 1, 0, 0, 0, 5460, 5462, 1, 0, 0, 0, 5461, 5372, 1, 0, 0, 0, 5461, 5434, 1, 0, 0, 0, 5462, 477, 1, 0, 0, 0, 5463, 5472, 5, 42, 0, 0, 5464, 5472, 5, 505, 0, 0, 5465, 5468, 5, 7, 0, 0, 5466, 5467, 5, 59, 0, 0, 5467, 5469, 3, 664, 332, 0, 5468, 5466, 1, 0, 0, 0, 5468, 5469, 1, 0, 0, 0, 5469, 5472, 1, 0, 0, 0, 5470, 5472, 3, 664, 332, 0, 5471, 5463, 1, 0, 0, 0, 5471, 5464, 1, 0, 0, 0, 5471, 5465, 1, 0, 0, 0, 5471, 5470, 1, 0, 0, 0, 5472, 479, 1, 0, 0, 0, 5473, 5474, 5, 73, 0, 0, 5474, 5475, 5, 547, 0, 0, 5475, 5476, 5, 119, 0, 0, 5476, 5477, 3, 700, 350, 0, 5477, 5478, 5, 176, 0, 0, 5478, 5483, 3, 700, 350, 0, 5479, 5480, 5, 868, 0, 0, 5480, 5482, 3, 700, 350, 0, 5481, 5479, 1, 0, 0, 0, 5482, 5485, 1, 0, 0, 0, 5483, 5481, 1, 0, 0, 0, 5483, 5484, 1, 0, 0, 0, 5484, 5489, 1, 0, 0, 0, 5485, 5483, 1, 0, 0, 0, 5486, 5487, 5, 194, 0, 0, 5487, 5488, 5, 73, 0, 0, 5488, 5490, 5, 121, 0, 0, 5489, 5486, 1, 0, 0, 0, 5489, 5490, 1, 0, 0, 0, 5490, 481, 1, 0, 0, 0, 5491, 5492, 5, 8, 0, 0, 5492, 5493, 5, 739, 0, 0, 5493, 5494, 5, 74, 0, 0, 5494, 5500, 3, 656, 328, 0, 5495, 5497, 5, 190, 0, 0, 5496, 5498, 5, 857, 0, 0, 5497, 5496, 1, 0, 0, 0, 5497, 5498, 1, 0, 0, 0, 5498, 5499, 1, 0, 0, 0, 5499, 5501, 3, 490, 245, 0, 5500, 5495, 1, 0, 0, 0, 5500, 5501, 1, 0, 0, 0, 5501, 5507, 1, 0, 0, 0, 5502, 5504, 5, 837, 0, 0, 5503, 5505, 5, 857, 0, 0, 5504, 5503, 1, 0, 0, 0, 5504, 5505, 1, 0, 0, 0, 5505, 5506, 1, 0, 0, 0, 5506, 5508, 3, 728, 364, 0, 5507, 5502, 1, 0, 0, 0, 5507, 5508, 1, 0, 0, 0, 5508, 5513, 1, 0, 0, 0, 5509, 5511, 7, 39, 0, 0, 5510, 5512, 5, 66, 0, 0, 5511, 5510, 1, 0, 0, 0, 5511, 5512, 1, 0, 0, 0, 5512, 5514, 1, 0, 0, 0, 5513, 5509, 1, 0, 0, 0, 5513, 5514, 1, 0, 0, 0, 5514, 483, 1, 0, 0, 0, 5515, 5516, 5, 34, 0, 0, 5516, 5517, 5, 739, 0, 0, 5517, 5518, 5, 74, 0, 0, 5518, 5519, 3, 654, 327, 0, 5519, 5520, 5, 839, 0, 0, 5520, 5521, 5, 857, 0, 0, 5521, 5527, 7, 81, 0, 0, 5522, 5524, 5, 190, 0, 0, 5523, 5525, 5, 857, 0, 0, 5524, 5523, 1, 0, 0, 0, 5524, 5525, 1, 0, 0, 0, 5525, 5526, 1, 0, 0, 0, 5526, 5528, 3, 490, 245, 0, 5527, 5522, 1, 0, 0, 0, 5527, 5528, 1, 0, 0, 0, 5528, 5534, 1, 0, 0, 0, 5529, 5531, 5, 837, 0, 0, 5530, 5532, 5, 857, 0, 0, 5531, 5530, 1, 0, 0, 0, 5531, 5532, 1, 0, 0, 0, 5532, 5533, 1, 0, 0, 0, 5533, 5535, 3, 728, 364, 0, 5534, 5529, 1, 0, 0, 0, 5534, 5535, 1, 0, 0, 0, 5535, 5537, 1, 0, 0, 0, 5536, 5538, 7, 39, 0, 0, 5537, 5536, 1, 0, 0, 0, 5537, 5538, 1, 0, 0, 0, 5538, 485, 1, 0, 0, 0, 5539, 5540, 5, 51, 0, 0, 5540, 5541, 5, 739, 0, 0, 5541, 5542, 5, 74, 0, 0, 5542, 5544, 3, 656, 328, 0, 5543, 5545, 5, 66, 0, 0, 5544, 5543, 1, 0, 0, 0, 5544, 5545, 1, 0, 0, 0, 5545, 487, 1, 0, 0, 0, 5546, 5547, 5, 155, 0, 0, 5547, 5548, 5, 739, 0, 0, 5548, 5549, 5, 74, 0, 0, 5549, 5559, 3, 656, 328, 0, 5550, 5551, 5, 65, 0, 0, 5551, 5556, 3, 728, 364, 0, 5552, 5553, 5, 868, 0, 0, 5553, 5555, 3, 728, 364, 0, 5554, 5552, 1, 0, 0, 0, 5555, 5558, 1, 0, 0, 0, 5556, 5554, 1, 0, 0, 0, 5556, 5557, 1, 0, 0, 0, 5557, 5560, 1, 0, 0, 0, 5558, 5556, 1, 0, 0, 0, 5559, 5550, 1, 0, 0, 0, 5559, 5560, 1, 0, 0, 0, 5560, 489, 1, 0, 0, 0, 5561, 5567, 3, 728, 364, 0, 5562, 5563, 3, 728, 364, 0, 5563, 5564, 5, 854, 0, 0, 5564, 5565, 3, 728, 364, 0, 5565, 5567, 1, 0, 0, 0, 5566, 5561, 1, 0, 0, 0, 5566, 5562, 1, 0, 0, 0, 5567, 5572, 1, 0, 0, 0, 5568, 5569, 5, 868, 0, 0, 5569, 5571, 3, 490, 245, 0, 5570, 5568, 1, 0, 0, 0, 5571, 5574, 1, 0, 0, 0, 5572, 5570, 1, 0, 0, 0, 5572, 5573, 1, 0, 0, 0, 5573, 491, 1, 0, 0, 0, 5574, 5572, 1, 0, 0, 0, 5575, 5576, 5, 141, 0, 0, 5576, 5577, 5, 678, 0, 0, 5577, 5582, 3, 536, 268, 0, 5578, 5579, 5, 868, 0, 0, 5579, 5581, 3, 536, 268, 0, 5580, 5578, 1, 0, 0, 0, 5581, 5584, 1, 0, 0, 0, 5582, 5580, 1, 0, 0, 0, 5582, 5583, 1, 0, 0, 0, 5583, 493, 1, 0, 0, 0, 5584, 5582, 1, 0, 0, 0, 5585, 5587, 5, 149, 0, 0, 5586, 5588, 3, 774, 387, 0, 5587, 5586, 1, 0, 0, 0, 5587, 5588, 1, 0, 0, 0, 5588, 5589, 1, 0, 0, 0, 5589, 5594, 3, 530, 265, 0, 5590, 5591, 5, 868, 0, 0, 5591, 5593, 3, 530, 265, 0, 5592, 5590, 1, 0, 0, 0, 5593, 5596, 1, 0, 0, 0, 5594, 5592, 1, 0, 0, 0, 5594, 5595, 1, 0, 0, 0, 5595, 5597, 1, 0, 0, 0, 5596, 5594, 1, 0, 0, 0, 5597, 5599, 5, 119, 0, 0, 5598, 5600, 3, 498, 249, 0, 5599, 5598, 1, 0, 0, 0, 5599, 5600, 1, 0, 0, 0, 5600, 5601, 1, 0, 0, 0, 5601, 5602, 3, 534, 267, 0, 5602, 5603, 5, 68, 0, 0, 5603, 5605, 3, 664, 332, 0, 5604, 5606, 3, 496, 248, 0, 5605, 5604, 1, 0, 0, 0, 5605, 5606, 1, 0, 0, 0, 5606, 5638, 1, 0, 0, 0, 5607, 5609, 5, 149, 0, 0, 5608, 5610, 3, 774, 387, 0, 5609, 5608, 1, 0, 0, 0, 5609, 5610, 1, 0, 0, 0, 5610, 5611, 1, 0, 0, 0, 5611, 5613, 5, 7, 0, 0, 5612, 5614, 5, 734, 0, 0, 5613, 5612, 1, 0, 0, 0, 5613, 5614, 1, 0, 0, 0, 5614, 5615, 1, 0, 0, 0, 5615, 5616, 5, 868, 0, 0, 5616, 5617, 5, 73, 0, 0, 5617, 5618, 5, 121, 0, 0, 5618, 5619, 5, 68, 0, 0, 5619, 5621, 3, 664, 332, 0, 5620, 5622, 3, 496, 248, 0, 5621, 5620, 1, 0, 0, 0, 5621, 5622, 1, 0, 0, 0, 5622, 5638, 1, 0, 0, 0, 5623, 5625, 5, 149, 0, 0, 5624, 5626, 3, 774, 387, 0, 5625, 5624, 1, 0, 0, 0, 5625, 5626, 1, 0, 0, 0, 5626, 5629, 1, 0, 0, 0, 5627, 5628, 5, 547, 0, 0, 5628, 5630, 5, 119, 0, 0, 5629, 5627, 1, 0, 0, 0, 5629, 5630, 1, 0, 0, 0, 5630, 5631, 1, 0, 0, 0, 5631, 5632, 3, 664, 332, 0, 5632, 5633, 5, 68, 0, 0, 5633, 5635, 3, 664, 332, 0, 5634, 5636, 3, 496, 248, 0, 5635, 5634, 1, 0, 0, 0, 5635, 5636, 1, 0, 0, 0, 5636, 5638, 1, 0, 0, 0, 5637, 5585, 1, 0, 0, 0, 5637, 5607, 1, 0, 0, 0, 5637, 5623, 1, 0, 0, 0, 5638, 495, 1, 0, 0, 0, 5639, 5640, 5, 79, 0, 0, 5640, 5641, 5, 674, 0, 0, 5641, 5642, 5, 678, 0, 0, 5642, 497, 1, 0, 0, 0, 5643, 5644, 7, 82, 0, 0, 5644, 499, 1, 0, 0, 0, 5645, 5646, 5, 155, 0, 0, 5646, 5649, 5, 529, 0, 0, 5647, 5648, 5, 65, 0, 0, 5648, 5650, 3, 700, 350, 0, 5649, 5647, 1, 0, 0, 0, 5649, 5650, 1, 0, 0, 0, 5650, 5651, 1, 0, 0, 0, 5651, 5654, 5, 857, 0, 0, 5652, 5655, 3, 814, 407, 0, 5653, 5655, 5, 882, 0, 0, 5654, 5652, 1, 0, 0, 0, 5654, 5653, 1, 0, 0, 0, 5655, 5678, 1, 0, 0, 0, 5656, 5657, 5, 155, 0, 0, 5657, 5660, 5, 529, 0, 0, 5658, 5659, 5, 65, 0, 0, 5659, 5661, 3, 700, 350, 0, 5660, 5658, 1, 0, 0, 0, 5660, 5661, 1, 0, 0, 0, 5661, 5666, 1, 0, 0, 0, 5662, 5663, 5, 176, 0, 0, 5663, 5667, 5, 829, 0, 0, 5664, 5665, 5, 857, 0, 0, 5665, 5667, 5, 882, 0, 0, 5666, 5662, 1, 0, 0, 0, 5666, 5664, 1, 0, 0, 0, 5667, 5670, 1, 0, 0, 0, 5668, 5669, 5, 143, 0, 0, 5669, 5671, 5, 882, 0, 0, 5670, 5668, 1, 0, 0, 0, 5670, 5671, 1, 0, 0, 0, 5671, 5675, 1, 0, 0, 0, 5672, 5673, 5, 147, 0, 0, 5673, 5674, 5, 36, 0, 0, 5674, 5676, 5, 529, 0, 0, 5675, 5672, 1, 0, 0, 0, 5675, 5676, 1, 0, 0, 0, 5676, 5678, 1, 0, 0, 0, 5677, 5645, 1, 0, 0, 0, 5677, 5656, 1, 0, 0, 0, 5678, 501, 1, 0, 0, 0, 5679, 5680, 3, 700, 350, 0, 5680, 5681, 3, 520, 260, 0, 5681, 503, 1, 0, 0, 0, 5682, 5708, 3, 700, 350, 0, 5683, 5684, 5, 423, 0, 0, 5684, 5685, 5, 20, 0, 0, 5685, 5686, 5, 882, 0, 0, 5686, 5709, 3, 512, 256, 0, 5687, 5688, 5, 423, 0, 0, 5688, 5689, 5, 20, 0, 0, 5689, 5690, 5, 829, 0, 0, 5690, 5691, 5, 529, 0, 0, 5691, 5709, 3, 512, 256, 0, 5692, 5693, 5, 423, 0, 0, 5693, 5694, 5, 194, 0, 0, 5694, 5709, 3, 514, 257, 0, 5695, 5696, 5, 369, 0, 0, 5696, 5697, 5, 511, 0, 0, 5697, 5709, 5, 529, 0, 0, 5698, 5699, 7, 83, 0, 0, 5699, 5701, 3, 528, 264, 0, 5700, 5702, 3, 524, 262, 0, 5701, 5700, 1, 0, 0, 0, 5701, 5702, 1, 0, 0, 0, 5702, 5704, 1, 0, 0, 0, 5703, 5698, 1, 0, 0, 0, 5704, 5705, 1, 0, 0, 0, 5705, 5703, 1, 0, 0, 0, 5705, 5706, 1, 0, 0, 0, 5706, 5709, 1, 0, 0, 0, 5707, 5709, 3, 526, 263, 0, 5708, 5683, 1, 0, 0, 0, 5708, 5687, 1, 0, 0, 0, 5708, 5692, 1, 0, 0, 0, 5708, 5695, 1, 0, 0, 0, 5708, 5703, 1, 0, 0, 0, 5708, 5707, 1, 0, 0, 0, 5708, 5709, 1, 0, 0, 0, 5709, 505, 1, 0, 0, 0, 5710, 5711, 5, 423, 0, 0, 5711, 5717, 5, 20, 0, 0, 5712, 5718, 5, 882, 0, 0, 5713, 5714, 5, 829, 0, 0, 5714, 5718, 5, 529, 0, 0, 5715, 5716, 5, 529, 0, 0, 5716, 5718, 5, 882, 0, 0, 5717, 5712, 1, 0, 0, 0, 5717, 5713, 1, 0, 0, 0, 5717, 5715, 1, 0, 0, 0, 5718, 5721, 1, 0, 0, 0, 5719, 5720, 5, 11, 0, 0, 5720, 5722, 3, 506, 253, 0, 5721, 5719, 1, 0, 0, 0, 5721, 5722, 1, 0, 0, 0, 5722, 5747, 1, 0, 0, 0, 5723, 5724, 5, 423, 0, 0, 5724, 5725, 5, 194, 0, 0, 5725, 5734, 3, 722, 361, 0, 5726, 5730, 5, 20, 0, 0, 5727, 5731, 5, 882, 0, 0, 5728, 5729, 5, 829, 0, 0, 5729, 5731, 5, 529, 0, 0, 5730, 5727, 1, 0, 0, 0, 5730, 5728, 1, 0, 0, 0, 5731, 5735, 1, 0, 0, 0, 5732, 5733, 5, 13, 0, 0, 5733, 5735, 5, 882, 0, 0, 5734, 5726, 1, 0, 0, 0, 5734, 5732, 1, 0, 0, 0, 5734, 5735, 1, 0, 0, 0, 5735, 5738, 1, 0, 0, 0, 5736, 5737, 5, 11, 0, 0, 5737, 5739, 3, 506, 253, 0, 5738, 5736, 1, 0, 0, 0, 5738, 5739, 1, 0, 0, 0, 5739, 5747, 1, 0, 0, 0, 5740, 5741, 5, 423, 0, 0, 5741, 5742, 5, 194, 0, 0, 5742, 5744, 3, 722, 361, 0, 5743, 5745, 3, 508, 254, 0, 5744, 5743, 1, 0, 0, 0, 5744, 5745, 1, 0, 0, 0, 5745, 5747, 1, 0, 0, 0, 5746, 5710, 1, 0, 0, 0, 5746, 5723, 1, 0, 0, 0, 5746, 5740, 1, 0, 0, 0, 5747, 507, 1, 0, 0, 0, 5748, 5749, 5, 427, 0, 0, 5749, 5750, 5, 708, 0, 0, 5750, 5751, 5, 423, 0, 0, 5751, 5755, 5, 20, 0, 0, 5752, 5753, 5, 829, 0, 0, 5753, 5756, 5, 529, 0, 0, 5754, 5756, 5, 882, 0, 0, 5755, 5752, 1, 0, 0, 0, 5755, 5754, 1, 0, 0, 0, 5756, 5766, 1, 0, 0, 0, 5757, 5758, 5, 427, 0, 0, 5758, 5759, 5, 708, 0, 0, 5759, 5760, 5, 423, 0, 0, 5760, 5761, 5, 194, 0, 0, 5761, 5762, 3, 722, 361, 0, 5762, 5763, 5, 13, 0, 0, 5763, 5764, 5, 882, 0, 0, 5764, 5766, 1, 0, 0, 0, 5765, 5748, 1, 0, 0, 0, 5765, 5757, 1, 0, 0, 0, 5766, 509, 1, 0, 0, 0, 5767, 5768, 3, 700, 350, 0, 5768, 5769, 5, 423, 0, 0, 5769, 5770, 5, 20, 0, 0, 5770, 5771, 5, 529, 0, 0, 5771, 5772, 5, 882, 0, 0, 5772, 5793, 1, 0, 0, 0, 5773, 5774, 3, 700, 350, 0, 5774, 5775, 5, 423, 0, 0, 5775, 5776, 5, 20, 0, 0, 5776, 5777, 5, 829, 0, 0, 5777, 5778, 5, 529, 0, 0, 5778, 5779, 3, 512, 256, 0, 5779, 5793, 1, 0, 0, 0, 5780, 5781, 3, 700, 350, 0, 5781, 5782, 5, 423, 0, 0, 5782, 5783, 5, 20, 0, 0, 5783, 5784, 5, 882, 0, 0, 5784, 5785, 3, 512, 256, 0, 5785, 5793, 1, 0, 0, 0, 5786, 5787, 3, 700, 350, 0, 5787, 5788, 5, 423, 0, 0, 5788, 5789, 5, 194, 0, 0, 5789, 5790, 3, 514, 257, 0, 5790, 5793, 1, 0, 0, 0, 5791, 5793, 3, 700, 350, 0, 5792, 5767, 1, 0, 0, 0, 5792, 5773, 1, 0, 0, 0, 5792, 5780, 1, 0, 0, 0, 5792, 5786, 1, 0, 0, 0, 5792, 5791, 1, 0, 0, 0, 5793, 511, 1, 0, 0, 0, 5794, 5795, 5, 143, 0, 0, 5795, 5797, 5, 882, 0, 0, 5796, 5794, 1, 0, 0, 0, 5796, 5797, 1, 0, 0, 0, 5797, 5801, 1, 0, 0, 0, 5798, 5799, 5, 147, 0, 0, 5799, 5800, 5, 36, 0, 0, 5800, 5802, 5, 529, 0, 0, 5801, 5798, 1, 0, 0, 0, 5801, 5802, 1, 0, 0, 0, 5802, 513, 1, 0, 0, 0, 5803, 5811, 3, 722, 361, 0, 5804, 5808, 7, 84, 0, 0, 5805, 5809, 5, 882, 0, 0, 5806, 5807, 5, 829, 0, 0, 5807, 5809, 5, 529, 0, 0, 5808, 5805, 1, 0, 0, 0, 5808, 5806, 1, 0, 0, 0, 5809, 5810, 1, 0, 0, 0, 5810, 5812, 3, 512, 256, 0, 5811, 5804, 1, 0, 0, 0, 5811, 5812, 1, 0, 0, 0, 5812, 5818, 1, 0, 0, 0, 5813, 5814, 3, 722, 361, 0, 5814, 5815, 5, 188, 0, 0, 5815, 5816, 3, 814, 407, 0, 5816, 5818, 1, 0, 0, 0, 5817, 5803, 1, 0, 0, 0, 5817, 5813, 1, 0, 0, 0, 5818, 515, 1, 0, 0, 0, 5819, 5828, 5, 169, 0, 0, 5820, 5828, 5, 693, 0, 0, 5821, 5822, 5, 331, 0, 0, 5822, 5828, 5, 882, 0, 0, 5823, 5824, 5, 441, 0, 0, 5824, 5828, 5, 882, 0, 0, 5825, 5826, 5, 651, 0, 0, 5826, 5828, 5, 882, 0, 0, 5827, 5819, 1, 0, 0, 0, 5827, 5820, 1, 0, 0, 0, 5827, 5821, 1, 0, 0, 0, 5827, 5823, 1, 0, 0, 0, 5827, 5825, 1, 0, 0, 0, 5828, 517, 1, 0, 0, 0, 5829, 5830, 5, 479, 0, 0, 5830, 5838, 3, 728, 364, 0, 5831, 5832, 5, 482, 0, 0, 5832, 5838, 3, 728, 364, 0, 5833, 5834, 5, 478, 0, 0, 5834, 5838, 3, 728, 364, 0, 5835, 5836, 5, 483, 0, 0, 5836, 5838, 3, 728, 364, 0, 5837, 5829, 1, 0, 0, 0, 5837, 5831, 1, 0, 0, 0, 5837, 5833, 1, 0, 0, 0, 5837, 5835, 1, 0, 0, 0, 5838, 519, 1, 0, 0, 0, 5839, 5840, 5, 529, 0, 0, 5840, 5847, 5, 390, 0, 0, 5841, 5848, 5, 42, 0, 0, 5842, 5848, 5, 500, 0, 0, 5843, 5844, 5, 87, 0, 0, 5844, 5845, 3, 728, 364, 0, 5845, 5846, 5, 698, 0, 0, 5846, 5848, 1, 0, 0, 0, 5847, 5841, 1, 0, 0, 0, 5847, 5842, 1, 0, 0, 0, 5847, 5843, 1, 0, 0, 0, 5847, 5848, 1, 0, 0, 0, 5848, 5878, 1, 0, 0, 0, 5849, 5850, 5, 529, 0, 0, 5850, 5853, 5, 420, 0, 0, 5851, 5854, 5, 42, 0, 0, 5852, 5854, 3, 728, 364, 0, 5853, 5851, 1, 0, 0, 0, 5853, 5852, 1, 0, 0, 0, 5854, 5878, 1, 0, 0, 0, 5855, 5856, 5, 529, 0, 0, 5856, 5857, 5, 581, 0, 0, 5857, 5862, 5, 87, 0, 0, 5858, 5863, 5, 42, 0, 0, 5859, 5860, 3, 728, 364, 0, 5860, 5861, 5, 698, 0, 0, 5861, 5863, 1, 0, 0, 0, 5862, 5858, 1, 0, 0, 0, 5862, 5859, 1, 0, 0, 0, 5863, 5878, 1, 0, 0, 0, 5864, 5865, 5, 529, 0, 0, 5865, 5866, 5, 144, 0, 0, 5866, 5868, 5, 36, 0, 0, 5867, 5869, 7, 85, 0, 0, 5868, 5867, 1, 0, 0, 0, 5868, 5869, 1, 0, 0, 0, 5869, 5878, 1, 0, 0, 0, 5870, 5871, 5, 395, 0, 0, 5871, 5878, 3, 728, 364, 0, 5872, 5875, 5, 530, 0, 0, 5873, 5876, 3, 728, 364, 0, 5874, 5876, 5, 669, 0, 0, 5875, 5873, 1, 0, 0, 0, 5875, 5874, 1, 0, 0, 0, 5876, 5878, 1, 0, 0, 0, 5877, 5839, 1, 0, 0, 0, 5877, 5849, 1, 0, 0, 0, 5877, 5855, 1, 0, 0, 0, 5877, 5864, 1, 0, 0, 0, 5877, 5870, 1, 0, 0, 0, 5877, 5872, 1, 0, 0, 0, 5878, 521, 1, 0, 0, 0, 5879, 5880, 5, 304, 0, 0, 5880, 5881, 7, 86, 0, 0, 5881, 523, 1, 0, 0, 0, 5882, 5885, 5, 423, 0, 0, 5883, 5884, 5, 194, 0, 0, 5884, 5886, 3, 722, 361, 0, 5885, 5883, 1, 0, 0, 0, 5885, 5886, 1, 0, 0, 0, 5886, 5895, 1, 0, 0, 0, 5887, 5891, 5, 20, 0, 0, 5888, 5892, 5, 882, 0, 0, 5889, 5890, 5, 829, 0, 0, 5890, 5892, 5, 529, 0, 0, 5891, 5888, 1, 0, 0, 0, 5891, 5889, 1, 0, 0, 0, 5892, 5896, 1, 0, 0, 0, 5893, 5894, 5, 13, 0, 0, 5894, 5896, 5, 882, 0, 0, 5895, 5887, 1, 0, 0, 0, 5895, 5893, 1, 0, 0, 0, 5896, 525, 1, 0, 0, 0, 5897, 5898, 3, 528, 264, 0, 5898, 5899, 5, 429, 0, 0, 5899, 5900, 5, 555, 0, 0, 5900, 5913, 1, 0, 0, 0, 5901, 5902, 3, 528, 264, 0, 5902, 5903, 5, 401, 0, 0, 5903, 5904, 5, 555, 0, 0, 5904, 5905, 5, 155, 0, 0, 5905, 5906, 5, 330, 0, 0, 5906, 5907, 5, 13, 0, 0, 5907, 5908, 5, 882, 0, 0, 5908, 5913, 1, 0, 0, 0, 5909, 5910, 3, 528, 264, 0, 5910, 5911, 5, 675, 0, 0, 5911, 5913, 1, 0, 0, 0, 5912, 5897, 1, 0, 0, 0, 5912, 5901, 1, 0, 0, 0, 5912, 5909, 1, 0, 0, 0, 5913, 527, 1, 0, 0, 0, 5914, 5915, 7, 87, 0, 0, 5915, 5916, 5, 394, 0, 0, 5916, 529, 1, 0, 0, 0, 5917, 5922, 3, 532, 266, 0, 5918, 5919, 5, 866, 0, 0, 5919, 5920, 3, 670, 335, 0, 5920, 5921, 5, 867, 0, 0, 5921, 5923, 1, 0, 0, 0, 5922, 5918, 1, 0, 0, 0, 5922, 5923, 1, 0, 0, 0, 5923, 531, 1, 0, 0, 0, 5924, 5926, 5, 7, 0, 0, 5925, 5927, 5, 734, 0, 0, 5926, 5925, 1, 0, 0, 0, 5926, 5927, 1, 0, 0, 0, 5927, 6018, 1, 0, 0, 0, 5928, 5930, 5, 8, 0, 0, 5929, 5931, 5, 743, 0, 0, 5930, 5929, 1, 0, 0, 0, 5930, 5931, 1, 0, 0, 0, 5931, 6018, 1, 0, 0, 0, 5932, 5940, 5, 34, 0, 0, 5933, 5934, 5, 660, 0, 0, 5934, 5941, 5, 752, 0, 0, 5935, 5941, 5, 743, 0, 0, 5936, 5941, 5, 684, 0, 0, 5937, 5941, 5, 678, 0, 0, 5938, 5941, 5, 658, 0, 0, 5939, 5941, 5, 582, 0, 0, 5940, 5933, 1, 0, 0, 0, 5940, 5935, 1, 0, 0, 0, 5940, 5936, 1, 0, 0, 0, 5940, 5937, 1, 0, 0, 0, 5940, 5938, 1, 0, 0, 0, 5940, 5939, 1, 0, 0, 0, 5940, 5941, 1, 0, 0, 0, 5941, 6018, 1, 0, 0, 0, 5942, 6018, 5, 44, 0, 0, 5943, 5945, 5, 51, 0, 0, 5944, 5946, 5, 582, 0, 0, 5945, 5944, 1, 0, 0, 0, 5945, 5946, 1, 0, 0, 0, 5946, 6018, 1, 0, 0, 0, 5947, 6018, 5, 385, 0, 0, 5948, 6018, 5, 717, 0, 0, 5949, 6018, 5, 718, 0, 0, 5950, 5951, 5, 73, 0, 0, 5951, 6018, 5, 121, 0, 0, 5952, 6018, 5, 82, 0, 0, 5953, 6018, 5, 86, 0, 0, 5954, 5955, 5, 104, 0, 0, 5955, 6018, 5, 752, 0, 0, 5956, 6018, 5, 735, 0, 0, 5957, 6018, 5, 547, 0, 0, 5958, 6018, 5, 138, 0, 0, 5959, 6018, 5, 736, 0, 0, 5960, 5961, 5, 572, 0, 0, 5961, 6018, 7, 88, 0, 0, 5962, 6018, 5, 154, 0, 0, 5963, 5964, 5, 157, 0, 0, 5964, 6018, 7, 89, 0, 0, 5965, 6018, 5, 749, 0, 0, 5966, 6018, 5, 750, 0, 0, 5967, 6018, 5, 178, 0, 0, 5968, 6018, 5, 185, 0, 0, 5969, 6018, 5, 186, 0, 0, 5970, 6018, 5, 705, 0, 0, 5971, 6018, 5, 706, 0, 0, 5972, 6018, 5, 707, 0, 0, 5973, 6018, 5, 709, 0, 0, 5974, 6018, 5, 710, 0, 0, 5975, 6018, 5, 711, 0, 0, 5976, 6018, 5, 712, 0, 0, 5977, 6018, 5, 714, 0, 0, 5978, 6018, 5, 715, 0, 0, 5979, 6018, 5, 716, 0, 0, 5980, 6018, 5, 719, 0, 0, 5981, 6018, 5, 720, 0, 0, 5982, 6018, 5, 721, 0, 0, 5983, 6018, 5, 722, 0, 0, 5984, 6018, 5, 723, 0, 0, 5985, 6018, 5, 724, 0, 0, 5986, 6018, 5, 725, 0, 0, 5987, 6018, 5, 726, 0, 0, 5988, 6018, 5, 727, 0, 0, 5989, 6018, 5, 728, 0, 0, 5990, 6018, 5, 731, 0, 0, 5991, 6018, 5, 732, 0, 0, 5992, 6018, 5, 733, 0, 0, 5993, 6018, 5, 737, 0, 0, 5994, 6018, 5, 738, 0, 0, 5995, 6018, 5, 740, 0, 0, 5996, 6018, 5, 741, 0, 0, 5997, 6018, 5, 742, 0, 0, 5998, 6018, 5, 745, 0, 0, 5999, 6018, 5, 746, 0, 0, 6000, 6018, 5, 747, 0, 0, 6001, 6018, 5, 160, 0, 0, 6002, 6018, 5, 748, 0, 0, 6003, 6018, 5, 836, 0, 0, 6004, 6018, 5, 751, 0, 0, 6005, 6018, 5, 753, 0, 0, 6006, 6018, 5, 838, 0, 0, 6007, 6018, 5, 754, 0, 0, 6008, 6018, 5, 755, 0, 0, 6009, 6010, 5, 103, 0, 0, 6010, 6011, 5, 68, 0, 0, 6011, 6018, 5, 744, 0, 0, 6012, 6013, 5, 154, 0, 0, 6013, 6014, 5, 88, 0, 0, 6014, 6018, 5, 744, 0, 0, 6015, 6016, 5, 729, 0, 0, 6016, 6018, 5, 730, 0, 0, 6017, 5924, 1, 0, 0, 0, 6017, 5928, 1, 0, 0, 0, 6017, 5932, 1, 0, 0, 0, 6017, 5942, 1, 0, 0, 0, 6017, 5943, 1, 0, 0, 0, 6017, 5947, 1, 0, 0, 0, 6017, 5948, 1, 0, 0, 0, 6017, 5949, 1, 0, 0, 0, 6017, 5950, 1, 0, 0, 0, 6017, 5952, 1, 0, 0, 0, 6017, 5953, 1, 0, 0, 0, 6017, 5954, 1, 0, 0, 0, 6017, 5956, 1, 0, 0, 0, 6017, 5957, 1, 0, 0, 0, 6017, 5958, 1, 0, 0, 0, 6017, 5959, 1, 0, 0, 0, 6017, 5960, 1, 0, 0, 0, 6017, 5962, 1, 0, 0, 0, 6017, 5963, 1, 0, 0, 0, 6017, 5965, 1, 0, 0, 0, 6017, 5966, 1, 0, 0, 0, 6017, 5967, 1, 0, 0, 0, 6017, 5968, 1, 0, 0, 0, 6017, 5969, 1, 0, 0, 0, 6017, 5970, 1, 0, 0, 0, 6017, 5971, 1, 0, 0, 0, 6017, 5972, 1, 0, 0, 0, 6017, 5973, 1, 0, 0, 0, 6017, 5974, 1, 0, 0, 0, 6017, 5975, 1, 0, 0, 0, 6017, 5976, 1, 0, 0, 0, 6017, 5977, 1, 0, 0, 0, 6017, 5978, 1, 0, 0, 0, 6017, 5979, 1, 0, 0, 0, 6017, 5980, 1, 0, 0, 0, 6017, 5981, 1, 0, 0, 0, 6017, 5982, 1, 0, 0, 0, 6017, 5983, 1, 0, 0, 0, 6017, 5984, 1, 0, 0, 0, 6017, 5985, 1, 0, 0, 0, 6017, 5986, 1, 0, 0, 0, 6017, 5987, 1, 0, 0, 0, 6017, 5988, 1, 0, 0, 0, 6017, 5989, 1, 0, 0, 0, 6017, 5990, 1, 0, 0, 0, 6017, 5991, 1, 0, 0, 0, 6017, 5992, 1, 0, 0, 0, 6017, 5993, 1, 0, 0, 0, 6017, 5994, 1, 0, 0, 0, 6017, 5995, 1, 0, 0, 0, 6017, 5996, 1, 0, 0, 0, 6017, 5997, 1, 0, 0, 0, 6017, 5998, 1, 0, 0, 0, 6017, 5999, 1, 0, 0, 0, 6017, 6000, 1, 0, 0, 0, 6017, 6001, 1, 0, 0, 0, 6017, 6002, 1, 0, 0, 0, 6017, 6003, 1, 0, 0, 0, 6017, 6004, 1, 0, 0, 0, 6017, 6005, 1, 0, 0, 0, 6017, 6006, 1, 0, 0, 0, 6017, 6007, 1, 0, 0, 0, 6017, 6008, 1, 0, 0, 0, 6017, 6009, 1, 0, 0, 0, 6017, 6012, 1, 0, 0, 0, 6017, 6015, 1, 0, 0, 0, 6018, 533, 1, 0, 0, 0, 6019, 6036, 5, 850, 0, 0, 6020, 6021, 5, 850, 0, 0, 6021, 6022, 5, 865, 0, 0, 6022, 6036, 5, 850, 0, 0, 6023, 6024, 3, 722, 361, 0, 6024, 6025, 5, 865, 0, 0, 6025, 6026, 5, 850, 0, 0, 6026, 6036, 1, 0, 0, 0, 6027, 6028, 3, 722, 361, 0, 6028, 6029, 5, 865, 0, 0, 6029, 6030, 3, 722, 361, 0, 6030, 6036, 1, 0, 0, 0, 6031, 6032, 3, 722, 361, 0, 6032, 6033, 3, 726, 363, 0, 6033, 6036, 1, 0, 0, 0, 6034, 6036, 3, 722, 361, 0, 6035, 6019, 1, 0, 0, 0, 6035, 6020, 1, 0, 0, 0, 6035, 6023, 1, 0, 0, 0, 6035, 6027, 1, 0, 0, 0, 6035, 6031, 1, 0, 0, 0, 6035, 6034, 1, 0, 0, 0, 6036, 535, 1, 0, 0, 0, 6037, 6038, 3, 700, 350, 0, 6038, 6039, 5, 176, 0, 0, 6039, 6040, 3, 700, 350, 0, 6040, 537, 1, 0, 0, 0, 6041, 6043, 5, 10, 0, 0, 6042, 6044, 3, 548, 274, 0, 6043, 6042, 1, 0, 0, 0, 6043, 6044, 1, 0, 0, 0, 6044, 6045, 1, 0, 0, 0, 6045, 6046, 5, 173, 0, 0, 6046, 6090, 3, 660, 330, 0, 6047, 6049, 5, 10, 0, 0, 6048, 6050, 3, 548, 274, 0, 6049, 6048, 1, 0, 0, 0, 6049, 6050, 1, 0, 0, 0, 6050, 6051, 1, 0, 0, 0, 6051, 6052, 5, 173, 0, 0, 6052, 6053, 3, 662, 331, 0, 6053, 6054, 5, 185, 0, 0, 6054, 6055, 5, 77, 0, 0, 6055, 6056, 5, 119, 0, 0, 6056, 6061, 3, 670, 335, 0, 6057, 6058, 5, 194, 0, 0, 6058, 6059, 3, 728, 364, 0, 6059, 6060, 5, 19, 0, 0, 6060, 6062, 1, 0, 0, 0, 6061, 6057, 1, 0, 0, 0, 6061, 6062, 1, 0, 0, 0, 6062, 6090, 1, 0, 0, 0, 6063, 6065, 5, 10, 0, 0, 6064, 6066, 3, 548, 274, 0, 6065, 6064, 1, 0, 0, 0, 6065, 6066, 1, 0, 0, 0, 6066, 6067, 1, 0, 0, 0, 6067, 6068, 5, 173, 0, 0, 6068, 6069, 3, 662, 331, 0, 6069, 6070, 5, 185, 0, 0, 6070, 6071, 5, 77, 0, 0, 6071, 6072, 5, 119, 0, 0, 6072, 6076, 3, 674, 337, 0, 6073, 6074, 5, 188, 0, 0, 6074, 6075, 5, 360, 0, 0, 6075, 6077, 5, 882, 0, 0, 6076, 6073, 1, 0, 0, 0, 6076, 6077, 1, 0, 0, 0, 6077, 6090, 1, 0, 0, 0, 6078, 6080, 5, 10, 0, 0, 6079, 6081, 3, 548, 274, 0, 6080, 6079, 1, 0, 0, 0, 6080, 6081, 1, 0, 0, 0, 6081, 6082, 1, 0, 0, 0, 6082, 6083, 5, 173, 0, 0, 6083, 6084, 3, 662, 331, 0, 6084, 6085, 5, 51, 0, 0, 6085, 6086, 5, 77, 0, 0, 6086, 6087, 5, 119, 0, 0, 6087, 6088, 3, 670, 335, 0, 6088, 6090, 1, 0, 0, 0, 6089, 6041, 1, 0, 0, 0, 6089, 6047, 1, 0, 0, 0, 6089, 6063, 1, 0, 0, 0, 6089, 6078, 1, 0, 0, 0, 6090, 539, 1, 0, 0, 0, 6091, 6092, 5, 27, 0, 0, 6092, 6093, 5, 173, 0, 0, 6093, 6097, 3, 660, 330, 0, 6094, 6096, 3, 550, 275, 0, 6095, 6094, 1, 0, 0, 0, 6096, 6099, 1, 0, 0, 0, 6097, 6095, 1, 0, 0, 0, 6097, 6098, 1, 0, 0, 0, 6098, 541, 1, 0, 0, 0, 6099, 6097, 1, 0, 0, 0, 6100, 6101, 5, 329, 0, 0, 6101, 6102, 5, 173, 0, 0, 6102, 6104, 3, 660, 330, 0, 6103, 6105, 7, 90, 0, 0, 6104, 6103, 1, 0, 0, 0, 6104, 6105, 1, 0, 0, 0, 6105, 543, 1, 0, 0, 0, 6106, 6108, 5, 120, 0, 0, 6107, 6109, 3, 548, 274, 0, 6108, 6107, 1, 0, 0, 0, 6108, 6109, 1, 0, 0, 0, 6109, 6110, 1, 0, 0, 0, 6110, 6111, 7, 61, 0, 0, 6111, 6112, 3, 660, 330, 0, 6112, 545, 1, 0, 0, 0, 6113, 6115, 5, 562, 0, 0, 6114, 6116, 3, 548, 274, 0, 6115, 6114, 1, 0, 0, 0, 6115, 6116, 1, 0, 0, 0, 6116, 6117, 1, 0, 0, 0, 6117, 6118, 5, 173, 0, 0, 6118, 6120, 3, 660, 330, 0, 6119, 6121, 5, 549, 0, 0, 6120, 6119, 1, 0, 0, 0, 6120, 6121, 1, 0, 0, 0, 6121, 6123, 1, 0, 0, 0, 6122, 6124, 5, 392, 0, 0, 6123, 6122, 1, 0, 0, 0, 6123, 6124, 1, 0, 0, 0, 6124, 6126, 1, 0, 0, 0, 6125, 6127, 5, 679, 0, 0, 6126, 6125, 1, 0, 0, 0, 6126, 6127, 1, 0, 0, 0, 6127, 547, 1, 0, 0, 0, 6128, 6129, 7, 91, 0, 0, 6129, 549, 1, 0, 0, 0, 6130, 6131, 5, 65, 0, 0, 6131, 6138, 5, 677, 0, 0, 6132, 6138, 5, 549, 0, 0, 6133, 6138, 5, 396, 0, 0, 6134, 6138, 5, 484, 0, 0, 6135, 6138, 5, 392, 0, 0, 6136, 6138, 5, 327, 0, 0, 6137, 6130, 1, 0, 0, 0, 6137, 6132, 1, 0, 0, 0, 6137, 6133, 1, 0, 0, 0, 6137, 6134, 1, 0, 0, 0, 6137, 6135, 1, 0, 0, 0, 6137, 6136, 1, 0, 0, 0, 6138, 551, 1, 0, 0, 0, 6139, 6140, 5, 432, 0, 0, 6140, 6141, 5, 344, 0, 0, 6141, 6146, 3, 722, 361, 0, 6142, 6143, 5, 868, 0, 0, 6143, 6145, 3, 722, 361, 0, 6144, 6142, 1, 0, 0, 0, 6145, 6148, 1, 0, 0, 0, 6146, 6144, 1, 0, 0, 0, 6146, 6147, 1, 0, 0, 0, 6147, 6158, 1, 0, 0, 0, 6148, 6146, 1, 0, 0, 0, 6149, 6150, 5, 155, 0, 0, 6150, 6155, 3, 554, 277, 0, 6151, 6152, 5, 868, 0, 0, 6152, 6154, 3, 554, 277, 0, 6153, 6151, 1, 0, 0, 0, 6154, 6157, 1, 0, 0, 0, 6155, 6153, 1, 0, 0, 0, 6155, 6156, 1, 0, 0, 0, 6156, 6159, 1, 0, 0, 0, 6157, 6155, 1, 0, 0, 0, 6158, 6149, 1, 0, 0, 0, 6158, 6159, 1, 0, 0, 0, 6159, 553, 1, 0, 0, 0, 6160, 6161, 7, 92, 0, 0, 6161, 6162, 3, 718, 359, 0, 6162, 6163, 5, 857, 0, 0, 6163, 6164, 3, 820, 410, 0, 6164, 555, 1, 0, 0, 0, 6165, 6166, 5, 673, 0, 0, 6166, 6167, 5, 344, 0, 0, 6167, 6172, 3, 722, 361, 0, 6168, 6169, 5, 868, 0, 0, 6169, 6171, 3, 722, 361, 0, 6170, 6168, 1, 0, 0, 0, 6171, 6174, 1, 0, 0, 0, 6172, 6170, 1, 0, 0, 0, 6172, 6173, 1, 0, 0, 0, 6173, 557, 1, 0, 0, 0, 6174, 6172, 1, 0, 0, 0, 6175, 6176, 5, 432, 0, 0, 6176, 6177, 5, 534, 0, 0, 6177, 6178, 3, 722, 361, 0, 6178, 6179, 5, 603, 0, 0, 6179, 6180, 5, 882, 0, 0, 6180, 559, 1, 0, 0, 0, 6181, 6182, 5, 673, 0, 0, 6182, 6183, 5, 534, 0, 0, 6183, 6184, 3, 722, 361, 0, 6184, 561, 1, 0, 0, 0, 6185, 6186, 5, 713, 0, 0, 6186, 6187, 5, 450, 0, 0, 6187, 6188, 5, 360, 0, 0, 6188, 6190, 5, 367, 0, 0, 6189, 6191, 5, 857, 0, 0, 6190, 6189, 1, 0, 0, 0, 6190, 6191, 1, 0, 0, 0, 6191, 6192, 1, 0, 0, 0, 6192, 6216, 5, 882, 0, 0, 6193, 6194, 5, 713, 0, 0, 6194, 6195, 5, 433, 0, 0, 6195, 6196, 5, 68, 0, 0, 6196, 6197, 3, 692, 346, 0, 6197, 6198, 5, 423, 0, 0, 6198, 6199, 5, 20, 0, 0, 6199, 6206, 5, 882, 0, 0, 6200, 6201, 5, 360, 0, 0, 6201, 6203, 5, 367, 0, 0, 6202, 6204, 5, 857, 0, 0, 6203, 6202, 1, 0, 0, 0, 6203, 6204, 1, 0, 0, 0, 6204, 6205, 1, 0, 0, 0, 6205, 6207, 5, 882, 0, 0, 6206, 6200, 1, 0, 0, 0, 6206, 6207, 1, 0, 0, 0, 6207, 6213, 1, 0, 0, 0, 6208, 6210, 5, 144, 0, 0, 6209, 6211, 5, 502, 0, 0, 6210, 6209, 1, 0, 0, 0, 6210, 6211, 1, 0, 0, 0, 6211, 6212, 1, 0, 0, 0, 6212, 6214, 5, 169, 0, 0, 6213, 6208, 1, 0, 0, 0, 6213, 6214, 1, 0, 0, 0, 6214, 6216, 1, 0, 0, 0, 6215, 6185, 1, 0, 0, 0, 6215, 6193, 1, 0, 0, 0, 6216, 563, 1, 0, 0, 0, 6217, 6218, 5, 155, 0, 0, 6218, 6219, 3, 568, 284, 0, 6219, 6222, 7, 93, 0, 0, 6220, 6223, 3, 820, 410, 0, 6221, 6223, 5, 119, 0, 0, 6222, 6220, 1, 0, 0, 0, 6222, 6221, 1, 0, 0, 0, 6223, 6233, 1, 0, 0, 0, 6224, 6225, 5, 868, 0, 0, 6225, 6226, 3, 568, 284, 0, 6226, 6229, 7, 93, 0, 0, 6227, 6230, 3, 820, 410, 0, 6228, 6230, 5, 119, 0, 0, 6229, 6227, 1, 0, 0, 0, 6229, 6228, 1, 0, 0, 0, 6230, 6232, 1, 0, 0, 0, 6231, 6224, 1, 0, 0, 0, 6232, 6235, 1, 0, 0, 0, 6233, 6231, 1, 0, 0, 0, 6233, 6234, 1, 0, 0, 0, 6234, 6270, 1, 0, 0, 0, 6235, 6233, 1, 0, 0, 0, 6236, 6237, 5, 155, 0, 0, 6237, 6240, 3, 58, 29, 0, 6238, 6241, 3, 704, 352, 0, 6239, 6241, 5, 42, 0, 0, 6240, 6238, 1, 0, 0, 0, 6240, 6239, 1, 0, 0, 0, 6241, 6270, 1, 0, 0, 0, 6242, 6243, 5, 155, 0, 0, 6243, 6250, 5, 497, 0, 0, 6244, 6247, 3, 704, 352, 0, 6245, 6246, 5, 28, 0, 0, 6246, 6248, 3, 706, 353, 0, 6247, 6245, 1, 0, 0, 0, 6247, 6248, 1, 0, 0, 0, 6248, 6251, 1, 0, 0, 0, 6249, 6251, 5, 42, 0, 0, 6250, 6244, 1, 0, 0, 0, 6250, 6249, 1, 0, 0, 0, 6251, 6270, 1, 0, 0, 0, 6252, 6270, 3, 500, 250, 0, 6253, 6270, 3, 352, 176, 0, 6254, 6270, 3, 350, 175, 0, 6255, 6256, 5, 155, 0, 0, 6256, 6257, 3, 718, 359, 0, 6257, 6258, 7, 93, 0, 0, 6258, 6266, 3, 820, 410, 0, 6259, 6260, 5, 868, 0, 0, 6260, 6261, 3, 718, 359, 0, 6261, 6262, 7, 93, 0, 0, 6262, 6263, 3, 820, 410, 0, 6263, 6265, 1, 0, 0, 0, 6264, 6259, 1, 0, 0, 0, 6265, 6268, 1, 0, 0, 0, 6266, 6264, 1, 0, 0, 0, 6266, 6267, 1, 0, 0, 0, 6267, 6270, 1, 0, 0, 0, 6268, 6266, 1, 0, 0, 0, 6269, 6217, 1, 0, 0, 0, 6269, 6236, 1, 0, 0, 0, 6269, 6242, 1, 0, 0, 0, 6269, 6252, 1, 0, 0, 0, 6269, 6253, 1, 0, 0, 0, 6269, 6254, 1, 0, 0, 0, 6269, 6255, 1, 0, 0, 0, 6270, 565, 1, 0, 0, 0, 6271, 6272, 5, 157, 0, 0, 6272, 6273, 7, 63, 0, 0, 6273, 6456, 5, 452, 0, 0, 6274, 6275, 5, 157, 0, 0, 6275, 6276, 7, 94, 0, 0, 6276, 6279, 5, 386, 0, 0, 6277, 6278, 5, 80, 0, 0, 6278, 6280, 5, 882, 0, 0, 6279, 6277, 1, 0, 0, 0, 6279, 6280, 1, 0, 0, 0, 6280, 6283, 1, 0, 0, 0, 6281, 6282, 5, 68, 0, 0, 6282, 6284, 3, 728, 364, 0, 6283, 6281, 1, 0, 0, 0, 6283, 6284, 1, 0, 0, 0, 6284, 6292, 1, 0, 0, 0, 6285, 6289, 5, 100, 0, 0, 6286, 6287, 3, 728, 364, 0, 6287, 6288, 5, 868, 0, 0, 6288, 6290, 1, 0, 0, 0, 6289, 6286, 1, 0, 0, 0, 6289, 6290, 1, 0, 0, 0, 6290, 6291, 1, 0, 0, 0, 6291, 6293, 3, 728, 364, 0, 6292, 6285, 1, 0, 0, 0, 6292, 6293, 1, 0, 0, 0, 6293, 6295, 1, 0, 0, 0, 6294, 6296, 3, 400, 200, 0, 6295, 6294, 1, 0, 0, 0, 6295, 6296, 1, 0, 0, 0, 6296, 6456, 1, 0, 0, 0, 6297, 6298, 5, 157, 0, 0, 6298, 6300, 3, 570, 285, 0, 6299, 6301, 3, 572, 286, 0, 6300, 6299, 1, 0, 0, 0, 6300, 6301, 1, 0, 0, 0, 6301, 6456, 1, 0, 0, 0, 6302, 6304, 5, 157, 0, 0, 6303, 6305, 5, 392, 0, 0, 6304, 6303, 1, 0, 0, 0, 6304, 6305, 1, 0, 0, 0, 6305, 6307, 1, 0, 0, 0, 6306, 6308, 5, 408, 0, 0, 6307, 6306, 1, 0, 0, 0, 6307, 6308, 1, 0, 0, 0, 6308, 6309, 1, 0, 0, 0, 6309, 6310, 7, 47, 0, 0, 6310, 6311, 7, 95, 0, 0, 6311, 6314, 3, 662, 331, 0, 6312, 6313, 7, 95, 0, 0, 6313, 6315, 3, 638, 319, 0, 6314, 6312, 1, 0, 0, 0, 6314, 6315, 1, 0, 0, 0, 6315, 6317, 1, 0, 0, 0, 6316, 6318, 3, 572, 286, 0, 6317, 6316, 1, 0, 0, 0, 6317, 6318, 1, 0, 0, 0, 6318, 6456, 1, 0, 0, 0, 6319, 6320, 5, 157, 0, 0, 6320, 6321, 5, 34, 0, 0, 6321, 6323, 7, 0, 0, 0, 6322, 6324, 3, 776, 388, 0, 6323, 6322, 1, 0, 0, 0, 6323, 6324, 1, 0, 0, 0, 6324, 6325, 1, 0, 0, 0, 6325, 6456, 3, 638, 319, 0, 6326, 6327, 5, 157, 0, 0, 6327, 6328, 5, 34, 0, 0, 6328, 6329, 7, 96, 0, 0, 6329, 6456, 3, 718, 359, 0, 6330, 6331, 5, 157, 0, 0, 6331, 6332, 5, 34, 0, 0, 6332, 6333, 5, 409, 0, 0, 6333, 6456, 3, 642, 321, 0, 6334, 6335, 5, 157, 0, 0, 6335, 6336, 5, 34, 0, 0, 6336, 6337, 5, 684, 0, 0, 6337, 6456, 3, 646, 323, 0, 6338, 6339, 5, 157, 0, 0, 6339, 6340, 5, 34, 0, 0, 6340, 6341, 5, 173, 0, 0, 6341, 6456, 3, 662, 331, 0, 6342, 6343, 5, 157, 0, 0, 6343, 6344, 5, 34, 0, 0, 6344, 6345, 5, 678, 0, 0, 6345, 6456, 3, 700, 350, 0, 6346, 6347, 5, 157, 0, 0, 6347, 6348, 5, 380, 0, 0, 6348, 6349, 3, 708, 354, 0, 6349, 6350, 7, 97, 0, 0, 6350, 6456, 1, 0, 0, 0, 6351, 6352, 5, 157, 0, 0, 6352, 6456, 3, 574, 287, 0, 6353, 6354, 5, 157, 0, 0, 6354, 6362, 7, 98, 0, 0, 6355, 6359, 5, 100, 0, 0, 6356, 6357, 3, 728, 364, 0, 6357, 6358, 5, 868, 0, 0, 6358, 6360, 1, 0, 0, 0, 6359, 6356, 1, 0, 0, 0, 6359, 6360, 1, 0, 0, 0, 6360, 6361, 1, 0, 0, 0, 6361, 6363, 3, 728, 364, 0, 6362, 6355, 1, 0, 0, 0, 6362, 6363, 1, 0, 0, 0, 6363, 6456, 1, 0, 0, 0, 6364, 6365, 5, 157, 0, 0, 6365, 6366, 5, 262, 0, 0, 6366, 6367, 5, 866, 0, 0, 6367, 6368, 5, 850, 0, 0, 6368, 6369, 5, 867, 0, 0, 6369, 6456, 7, 98, 0, 0, 6370, 6371, 5, 157, 0, 0, 6371, 6374, 3, 576, 288, 0, 6372, 6373, 7, 95, 0, 0, 6373, 6375, 3, 638, 319, 0, 6374, 6372, 1, 0, 0, 0, 6374, 6375, 1, 0, 0, 0, 6375, 6377, 1, 0, 0, 0, 6376, 6378, 3, 572, 286, 0, 6377, 6376, 1, 0, 0, 0, 6377, 6378, 1, 0, 0, 0, 6378, 6456, 1, 0, 0, 0, 6379, 6380, 5, 157, 0, 0, 6380, 6381, 5, 132, 0, 0, 6381, 6382, 5, 336, 0, 0, 6382, 6456, 3, 718, 359, 0, 6383, 6384, 5, 157, 0, 0, 6384, 6385, 5, 409, 0, 0, 6385, 6386, 5, 336, 0, 0, 6386, 6456, 3, 642, 321, 0, 6387, 6388, 5, 157, 0, 0, 6388, 6395, 5, 414, 0, 0, 6389, 6390, 5, 65, 0, 0, 6390, 6393, 3, 666, 333, 0, 6391, 6392, 5, 188, 0, 0, 6392, 6394, 3, 664, 332, 0, 6393, 6391, 1, 0, 0, 0, 6393, 6394, 1, 0, 0, 0, 6394, 6396, 1, 0, 0, 0, 6395, 6389, 1, 0, 0, 0, 6395, 6396, 1, 0, 0, 0, 6396, 6456, 1, 0, 0, 0, 6397, 6399, 5, 157, 0, 0, 6398, 6400, 5, 392, 0, 0, 6399, 6398, 1, 0, 0, 0, 6399, 6400, 1, 0, 0, 0, 6400, 6401, 1, 0, 0, 0, 6401, 6402, 7, 99, 0, 0, 6402, 6403, 7, 95, 0, 0, 6403, 6406, 3, 662, 331, 0, 6404, 6405, 7, 95, 0, 0, 6405, 6407, 3, 638, 319, 0, 6406, 6404, 1, 0, 0, 0, 6406, 6407, 1, 0, 0, 0, 6407, 6410, 1, 0, 0, 0, 6408, 6409, 5, 192, 0, 0, 6409, 6411, 3, 820, 410, 0, 6410, 6408, 1, 0, 0, 0, 6410, 6411, 1, 0, 0, 0, 6411, 6456, 1, 0, 0, 0, 6412, 6413, 5, 157, 0, 0, 6413, 6414, 5, 516, 0, 0, 6414, 6417, 5, 752, 0, 0, 6415, 6416, 7, 95, 0, 0, 6416, 6418, 3, 638, 319, 0, 6417, 6415, 1, 0, 0, 0, 6417, 6418, 1, 0, 0, 0, 6418, 6420, 1, 0, 0, 0, 6419, 6421, 3, 572, 286, 0, 6420, 6419, 1, 0, 0, 0, 6420, 6421, 1, 0, 0, 0, 6421, 6456, 1, 0, 0, 0, 6422, 6423, 5, 157, 0, 0, 6423, 6432, 5, 545, 0, 0, 6424, 6429, 3, 578, 289, 0, 6425, 6426, 5, 868, 0, 0, 6426, 6428, 3, 578, 289, 0, 6427, 6425, 1, 0, 0, 0, 6428, 6431, 1, 0, 0, 0, 6429, 6427, 1, 0, 0, 0, 6429, 6430, 1, 0, 0, 0, 6430, 6433, 1, 0, 0, 0, 6431, 6429, 1, 0, 0, 0, 6432, 6424, 1, 0, 0, 0, 6432, 6433, 1, 0, 0, 0, 6433, 6437, 1, 0, 0, 0, 6434, 6435, 5, 65, 0, 0, 6435, 6436, 5, 548, 0, 0, 6436, 6438, 3, 728, 364, 0, 6437, 6434, 1, 0, 0, 0, 6437, 6438, 1, 0, 0, 0, 6438, 6445, 1, 0, 0, 0, 6439, 6440, 5, 100, 0, 0, 6440, 6443, 3, 728, 364, 0, 6441, 6442, 5, 509, 0, 0, 6442, 6444, 3, 728, 364, 0, 6443, 6441, 1, 0, 0, 0, 6443, 6444, 1, 0, 0, 0, 6444, 6446, 1, 0, 0, 0, 6445, 6439, 1, 0, 0, 0, 6445, 6446, 1, 0, 0, 0, 6446, 6456, 1, 0, 0, 0, 6447, 6448, 5, 157, 0, 0, 6448, 6449, 7, 64, 0, 0, 6449, 6451, 5, 645, 0, 0, 6450, 6452, 3, 400, 200, 0, 6451, 6450, 1, 0, 0, 0, 6451, 6452, 1, 0, 0, 0, 6452, 6456, 1, 0, 0, 0, 6453, 6454, 5, 157, 0, 0, 6454, 6456, 5, 564, 0, 0, 6455, 6271, 1, 0, 0, 0, 6455, 6274, 1, 0, 0, 0, 6455, 6297, 1, 0, 0, 0, 6455, 6302, 1, 0, 0, 0, 6455, 6319, 1, 0, 0, 0, 6455, 6326, 1, 0, 0, 0, 6455, 6330, 1, 0, 0, 0, 6455, 6334, 1, 0, 0, 0, 6455, 6338, 1, 0, 0, 0, 6455, 6342, 1, 0, 0, 0, 6455, 6346, 1, 0, 0, 0, 6455, 6351, 1, 0, 0, 0, 6455, 6353, 1, 0, 0, 0, 6455, 6364, 1, 0, 0, 0, 6455, 6370, 1, 0, 0, 0, 6455, 6379, 1, 0, 0, 0, 6455, 6383, 1, 0, 0, 0, 6455, 6387, 1, 0, 0, 0, 6455, 6397, 1, 0, 0, 0, 6455, 6412, 1, 0, 0, 0, 6455, 6422, 1, 0, 0, 0, 6455, 6447, 1, 0, 0, 0, 6455, 6453, 1, 0, 0, 0, 6456, 567, 1, 0, 0, 0, 6457, 6468, 5, 892, 0, 0, 6458, 6468, 5, 893, 0, 0, 6459, 6460, 5, 870, 0, 0, 6460, 6462, 5, 870, 0, 0, 6461, 6459, 1, 0, 0, 0, 6461, 6462, 1, 0, 0, 0, 6462, 6463, 1, 0, 0, 0, 6463, 6465, 7, 100, 0, 0, 6464, 6461, 1, 0, 0, 0, 6464, 6465, 1, 0, 0, 0, 6465, 6466, 1, 0, 0, 0, 6466, 6468, 3, 722, 361, 0, 6467, 6457, 1, 0, 0, 0, 6467, 6458, 1, 0, 0, 0, 6467, 6464, 1, 0, 0, 0, 6468, 569, 1, 0, 0, 0, 6469, 6470, 5, 26, 0, 0, 6470, 6484, 5, 155, 0, 0, 6471, 6484, 5, 823, 0, 0, 6472, 6484, 5, 824, 0, 0, 6473, 6484, 5, 40, 0, 0, 6474, 6484, 5, 153, 0, 0, 6475, 6476, 5, 409, 0, 0, 6476, 6484, 5, 645, 0, 0, 6477, 6478, 5, 132, 0, 0, 6478, 6484, 5, 645, 0, 0, 6479, 6481, 7, 62, 0, 0, 6480, 6479, 1, 0, 0, 0, 6480, 6481, 1, 0, 0, 0, 6481, 6482, 1, 0, 0, 0, 6482, 6484, 7, 101, 0, 0, 6483, 6469, 1, 0, 0, 0, 6483, 6471, 1, 0, 0, 0, 6483, 6472, 1, 0, 0, 0, 6483, 6473, 1, 0, 0, 0, 6483, 6474, 1, 0, 0, 0, 6483, 6475, 1, 0, 0, 0, 6483, 6477, 1, 0, 0, 0, 6483, 6480, 1, 0, 0, 0, 6484, 571, 1, 0, 0, 0, 6485, 6486, 5, 99, 0, 0, 6486, 6490, 5, 882, 0, 0, 6487, 6488, 5, 192, 0, 0, 6488, 6490, 3, 820, 410, 0, 6489, 6485, 1, 0, 0, 0, 6489, 6487, 1, 0, 0, 0, 6490, 573, 1, 0, 0, 0, 6491, 6493, 5, 647, 0, 0, 6492, 6491, 1, 0, 0, 0, 6492, 6493, 1, 0, 0, 0, 6493, 6494, 1, 0, 0, 0, 6494, 6509, 5, 381, 0, 0, 6495, 6496, 5, 453, 0, 0, 6496, 6509, 5, 645, 0, 0, 6497, 6509, 5, 536, 0, 0, 6498, 6509, 5, 734, 0, 0, 6499, 6501, 5, 408, 0, 0, 6500, 6499, 1, 0, 0, 0, 6500, 6501, 1, 0, 0, 0, 6501, 6502, 1, 0, 0, 0, 6502, 6509, 5, 544, 0, 0, 6503, 6509, 5, 546, 0, 0, 6504, 6505, 5, 598, 0, 0, 6505, 6509, 5, 422, 0, 0, 6506, 6509, 5, 312, 0, 0, 6507, 6509, 5, 356, 0, 0, 6508, 6492, 1, 0, 0, 0, 6508, 6495, 1, 0, 0, 0, 6508, 6497, 1, 0, 0, 0, 6508, 6498, 1, 0, 0, 0, 6508, 6500, 1, 0, 0, 0, 6508, 6503, 1, 0, 0, 0, 6508, 6504, 1, 0, 0, 0, 6508, 6506, 1, 0, 0, 0, 6508, 6507, 1, 0, 0, 0, 6509, 575, 1, 0, 0, 0, 6510, 6522, 5, 386, 0, 0, 6511, 6512, 5, 173, 0, 0, 6512, 6522, 5, 645, 0, 0, 6513, 6515, 5, 392, 0, 0, 6514, 6513, 1, 0, 0, 0, 6514, 6515, 1, 0, 0, 0, 6515, 6517, 1, 0, 0, 0, 6516, 6518, 5, 408, 0, 0, 6517, 6516, 1, 0, 0, 0, 6517, 6518, 1, 0, 0, 0, 6518, 6519, 1, 0, 0, 0, 6519, 6522, 5, 752, 0, 0, 6520, 6522, 5, 667, 0, 0, 6521, 6510, 1, 0, 0, 0, 6521, 6511, 1, 0, 0, 0, 6521, 6514, 1, 0, 0, 0, 6521, 6520, 1, 0, 0, 0, 6522, 577, 1, 0, 0, 0, 6523, 6536, 5, 7, 0, 0, 6524, 6525, 5, 320, 0, 0, 6525, 6536, 5, 437, 0, 0, 6526, 6527, 5, 355, 0, 0, 6527, 6536, 5, 656, 0, 0, 6528, 6536, 5, 358, 0, 0, 6529, 6536, 5, 439, 0, 0, 6530, 6536, 5, 802, 0, 0, 6531, 6532, 5, 521, 0, 0, 6532, 6536, 5, 397, 0, 0, 6533, 6536, 5, 605, 0, 0, 6534, 6536, 5, 655, 0, 0, 6535, 6523, 1, 0, 0, 0, 6535, 6524, 1, 0, 0, 0, 6535, 6526, 1, 0, 0, 0, 6535, 6528, 1, 0, 0, 0, 6535, 6529, 1, 0, 0, 0, 6535, 6530, 1, 0, 0, 0, 6535, 6531, 1, 0, 0, 0, 6535, 6533, 1, 0, 0, 0, 6535, 6534, 1, 0, 0, 0, 6536, 579, 1, 0, 0, 0, 6537, 6538, 5, 318, 0, 0, 6538, 6539, 5, 882, 0, 0, 6539, 581, 1, 0, 0, 0, 6540, 6541, 5, 324, 0, 0, 6541, 6559, 5, 82, 0, 0, 6542, 6547, 3, 602, 301, 0, 6543, 6544, 5, 868, 0, 0, 6544, 6546, 3, 602, 301, 0, 6545, 6543, 1, 0, 0, 0, 6546, 6549, 1, 0, 0, 0, 6547, 6545, 1, 0, 0, 0, 6547, 6548, 1, 0, 0, 0, 6548, 6560, 1, 0, 0, 0, 6549, 6547, 1, 0, 0, 0, 6550, 6551, 3, 662, 331, 0, 6551, 6552, 5, 130, 0, 0, 6552, 6555, 5, 866, 0, 0, 6553, 6556, 3, 686, 343, 0, 6554, 6556, 5, 7, 0, 0, 6555, 6553, 1, 0, 0, 0, 6555, 6554, 1, 0, 0, 0, 6556, 6557, 1, 0, 0, 0, 6557, 6558, 5, 867, 0, 0, 6558, 6560, 1, 0, 0, 0, 6559, 6542, 1, 0, 0, 0, 6559, 6550, 1, 0, 0, 0, 6560, 6561, 1, 0, 0, 0, 6561, 6562, 5, 80, 0, 0, 6562, 6563, 3, 638, 319, 0, 6563, 583, 1, 0, 0, 0, 6564, 6566, 5, 404, 0, 0, 6565, 6567, 3, 548, 274, 0, 6566, 6565, 1, 0, 0, 0, 6566, 6567, 1, 0, 0, 0, 6567, 6568, 1, 0, 0, 0, 6568, 6573, 3, 604, 302, 0, 6569, 6570, 5, 868, 0, 0, 6570, 6572, 3, 604, 302, 0, 6571, 6569, 1, 0, 0, 0, 6572, 6575, 1, 0, 0, 0, 6573, 6571, 1, 0, 0, 0, 6573, 6574, 1, 0, 0, 0, 6574, 585, 1, 0, 0, 0, 6575, 6573, 1, 0, 0, 0, 6576, 6578, 5, 94, 0, 0, 6577, 6579, 7, 102, 0, 0, 6578, 6577, 1, 0, 0, 0, 6578, 6579, 1, 0, 0, 0, 6579, 6580, 1, 0, 0, 0, 6580, 6581, 3, 820, 410, 0, 6581, 587, 1, 0, 0, 0, 6582, 6583, 5, 103, 0, 0, 6583, 6584, 5, 82, 0, 0, 6584, 6585, 5, 88, 0, 0, 6585, 6586, 5, 324, 0, 0, 6586, 6591, 3, 608, 304, 0, 6587, 6588, 5, 868, 0, 0, 6588, 6590, 3, 608, 304, 0, 6589, 6587, 1, 0, 0, 0, 6590, 6593, 1, 0, 0, 0, 6591, 6589, 1, 0, 0, 0, 6591, 6592, 1, 0, 0, 0, 6592, 589, 1, 0, 0, 0, 6593, 6591, 1, 0, 0, 0, 6594, 6595, 5, 575, 0, 0, 6595, 6600, 3, 592, 296, 0, 6596, 6597, 5, 868, 0, 0, 6597, 6599, 3, 592, 296, 0, 6598, 6596, 1, 0, 0, 0, 6599, 6602, 1, 0, 0, 0, 6600, 6598, 1, 0, 0, 0, 6600, 6601, 1, 0, 0, 0, 6601, 591, 1, 0, 0, 0, 6602, 6600, 1, 0, 0, 0, 6603, 6609, 5, 453, 0, 0, 6604, 6609, 5, 563, 0, 0, 6605, 6606, 5, 548, 0, 0, 6606, 6609, 5, 324, 0, 0, 6607, 6609, 5, 598, 0, 0, 6608, 6603, 1, 0, 0, 0, 6608, 6604, 1, 0, 0, 0, 6608, 6605, 1, 0, 0, 0, 6608, 6607, 1, 0, 0, 0, 6609, 593, 1, 0, 0, 0, 6610, 6611, 5, 575, 0, 0, 6611, 6616, 5, 531, 0, 0, 6612, 6614, 3, 774, 387, 0, 6613, 6612, 1, 0, 0, 0, 6613, 6614, 1, 0, 0, 0, 6614, 6615, 1, 0, 0, 0, 6615, 6617, 3, 722, 361, 0, 6616, 6613, 1, 0, 0, 0, 6616, 6617, 1, 0, 0, 0, 6617, 595, 1, 0, 0, 0, 6618, 6619, 5, 575, 0, 0, 6619, 6621, 7, 64, 0, 0, 6620, 6622, 5, 7, 0, 0, 6621, 6620, 1, 0, 0, 0, 6621, 6622, 1, 0, 0, 0, 6622, 6624, 1, 0, 0, 0, 6623, 6625, 3, 400, 200, 0, 6624, 6623, 1, 0, 0, 0, 6624, 6625, 1, 0, 0, 0, 6625, 597, 1, 0, 0, 0, 6626, 6627, 5, 576, 0, 0, 6627, 599, 1, 0, 0, 0, 6628, 6629, 5, 749, 0, 0, 6629, 601, 1, 0, 0, 0, 6630, 6636, 3, 662, 331, 0, 6631, 6632, 7, 19, 0, 0, 6632, 6633, 5, 866, 0, 0, 6633, 6634, 3, 650, 325, 0, 6634, 6635, 5, 867, 0, 0, 6635, 6637, 1, 0, 0, 0, 6636, 6631, 1, 0, 0, 0, 6636, 6637, 1, 0, 0, 0, 6637, 603, 1, 0, 0, 0, 6638, 6657, 5, 366, 0, 0, 6639, 6657, 5, 422, 0, 0, 6640, 6642, 7, 103, 0, 0, 6641, 6640, 1, 0, 0, 0, 6641, 6642, 1, 0, 0, 0, 6642, 6643, 1, 0, 0, 0, 6643, 6657, 5, 452, 0, 0, 6644, 6657, 5, 517, 0, 0, 6645, 6657, 5, 734, 0, 0, 6646, 6647, 5, 548, 0, 0, 6647, 6657, 5, 324, 0, 0, 6648, 6657, 5, 645, 0, 0, 6649, 6657, 5, 680, 0, 0, 6650, 6654, 5, 752, 0, 0, 6651, 6652, 5, 194, 0, 0, 6652, 6653, 5, 135, 0, 0, 6653, 6655, 5, 104, 0, 0, 6654, 6651, 1, 0, 0, 0, 6654, 6655, 1, 0, 0, 0, 6655, 6657, 1, 0, 0, 0, 6656, 6638, 1, 0, 0, 0, 6656, 6639, 1, 0, 0, 0, 6656, 6641, 1, 0, 0, 0, 6656, 6644, 1, 0, 0, 0, 6656, 6645, 1, 0, 0, 0, 6656, 6646, 1, 0, 0, 0, 6656, 6648, 1, 0, 0, 0, 6656, 6649, 1, 0, 0, 0, 6656, 6650, 1, 0, 0, 0, 6657, 6671, 1, 0, 0, 0, 6658, 6659, 5, 556, 0, 0, 6659, 6661, 5, 452, 0, 0, 6660, 6662, 3, 400, 200, 0, 6661, 6660, 1, 0, 0, 0, 6661, 6662, 1, 0, 0, 0, 6662, 6671, 1, 0, 0, 0, 6663, 6665, 7, 61, 0, 0, 6664, 6666, 3, 660, 330, 0, 6665, 6664, 1, 0, 0, 0, 6665, 6666, 1, 0, 0, 0, 6666, 6668, 1, 0, 0, 0, 6667, 6669, 3, 606, 303, 0, 6668, 6667, 1, 0, 0, 0, 6668, 6669, 1, 0, 0, 0, 6669, 6671, 1, 0, 0, 0, 6670, 6656, 1, 0, 0, 0, 6670, 6658, 1, 0, 0, 0, 6670, 6663, 1, 0, 0, 0, 6671, 605, 1, 0, 0, 0, 6672, 6673, 5, 194, 0, 0, 6673, 6674, 5, 135, 0, 0, 6674, 6678, 5, 104, 0, 0, 6675, 6676, 5, 65, 0, 0, 6676, 6678, 5, 391, 0, 0, 6677, 6672, 1, 0, 0, 0, 6677, 6675, 1, 0, 0, 0, 6678, 607, 1, 0, 0, 0, 6679, 6687, 3, 662, 331, 0, 6680, 6681, 5, 130, 0, 0, 6681, 6684, 5, 866, 0, 0, 6682, 6685, 3, 686, 343, 0, 6683, 6685, 5, 7, 0, 0, 6684, 6682, 1, 0, 0, 0, 6684, 6683, 1, 0, 0, 0, 6685, 6686, 1, 0, 0, 0, 6686, 6688, 5, 867, 0, 0, 6687, 6680, 1, 0, 0, 0, 6687, 6688, 1, 0, 0, 0, 6688, 6696, 1, 0, 0, 0, 6689, 6691, 7, 19, 0, 0, 6690, 6689, 1, 0, 0, 0, 6690, 6691, 1, 0, 0, 0, 6691, 6692, 1, 0, 0, 0, 6692, 6693, 5, 866, 0, 0, 6693, 6694, 3, 650, 325, 0, 6694, 6695, 5, 867, 0, 0, 6695, 6697, 1, 0, 0, 0, 6696, 6690, 1, 0, 0, 0, 6696, 6697, 1, 0, 0, 0, 6697, 6700, 1, 0, 0, 0, 6698, 6699, 5, 79, 0, 0, 6699, 6701, 5, 446, 0, 0, 6700, 6698, 1, 0, 0, 0, 6700, 6701, 1, 0, 0, 0, 6701, 609, 1, 0, 0, 0, 6702, 6703, 7, 104, 0, 0, 6703, 6706, 3, 662, 331, 0, 6704, 6707, 3, 674, 337, 0, 6705, 6707, 5, 882, 0, 0, 6706, 6704, 1, 0, 0, 0, 6706, 6705, 1, 0, 0, 0, 6706, 6707, 1, 0, 0, 0, 6707, 611, 1, 0, 0, 0, 6708, 6714, 7, 104, 0, 0, 6709, 6715, 5, 392, 0, 0, 6710, 6715, 5, 528, 0, 0, 6711, 6712, 5, 826, 0, 0, 6712, 6713, 5, 857, 0, 0, 6713, 6715, 7, 105, 0, 0, 6714, 6709, 1, 0, 0, 0, 6714, 6710, 1, 0, 0, 0, 6714, 6711, 1, 0, 0, 0, 6714, 6715, 1, 0, 0, 0, 6715, 6716, 1, 0, 0, 0, 6716, 6717, 3, 634, 317, 0, 6717, 613, 1, 0, 0, 0, 6718, 6719, 7, 104, 0, 0, 6719, 6723, 5, 10, 0, 0, 6720, 6721, 5, 826, 0, 0, 6721, 6722, 5, 857, 0, 0, 6722, 6724, 5, 666, 0, 0, 6723, 6720, 1, 0, 0, 0, 6723, 6724, 1, 0, 0, 0, 6724, 6725, 1, 0, 0, 0, 6725, 6726, 3, 210, 105, 0, 6726, 615, 1, 0, 0, 0, 6727, 6728, 5, 419, 0, 0, 6728, 6729, 5, 882, 0, 0, 6729, 617, 1, 0, 0, 0, 6730, 6731, 5, 187, 0, 0, 6731, 6732, 3, 638, 319, 0, 6732, 619, 1, 0, 0, 0, 6733, 6741, 5, 158, 0, 0, 6734, 6736, 5, 164, 0, 0, 6735, 6737, 5, 682, 0, 0, 6736, 6735, 1, 0, 0, 0, 6736, 6737, 1, 0, 0, 0, 6737, 6738, 1, 0, 0, 0, 6738, 6742, 3, 732, 366, 0, 6739, 6742, 5, 889, 0, 0, 6740, 6742, 5, 890, 0, 0, 6741, 6734, 1, 0, 0, 0, 6741, 6739, 1, 0, 0, 0, 6741, 6740, 1, 0, 0, 0, 6742, 6752, 1, 0, 0, 0, 6743, 6744, 5, 155, 0, 0, 6744, 6749, 3, 624, 312, 0, 6745, 6746, 5, 868, 0, 0, 6746, 6748, 3, 624, 312, 0, 6747, 6745, 1, 0, 0, 0, 6748, 6751, 1, 0, 0, 0, 6749, 6747, 1, 0, 0, 0, 6749, 6750, 1, 0, 0, 0, 6750, 6753, 1, 0, 0, 0, 6751, 6749, 1, 0, 0, 0, 6752, 6743, 1, 0, 0, 0, 6752, 6753, 1, 0, 0, 0, 6753, 621, 1, 0, 0, 0, 6754, 6762, 5, 145, 0, 0, 6755, 6757, 5, 164, 0, 0, 6756, 6758, 5, 682, 0, 0, 6757, 6756, 1, 0, 0, 0, 6757, 6758, 1, 0, 0, 0, 6758, 6759, 1, 0, 0, 0, 6759, 6763, 3, 732, 366, 0, 6760, 6763, 5, 889, 0, 0, 6761, 6763, 5, 890, 0, 0, 6762, 6755, 1, 0, 0, 0, 6762, 6760, 1, 0, 0, 0, 6762, 6761, 1, 0, 0, 0, 6762, 6763, 1, 0, 0, 0, 6763, 6773, 1, 0, 0, 0, 6764, 6765, 5, 155, 0, 0, 6765, 6770, 3, 624, 312, 0, 6766, 6767, 5, 868, 0, 0, 6767, 6769, 3, 624, 312, 0, 6768, 6766, 1, 0, 0, 0, 6769, 6772, 1, 0, 0, 0, 6770, 6768, 1, 0, 0, 0, 6770, 6771, 1, 0, 0, 0, 6771, 6774, 1, 0, 0, 0, 6772, 6770, 1, 0, 0, 0, 6773, 6764, 1, 0, 0, 0, 6773, 6774, 1, 0, 0, 0, 6774, 623, 1, 0, 0, 0, 6775, 6776, 7, 106, 0, 0, 6776, 6781, 5, 857, 0, 0, 6777, 6782, 3, 732, 366, 0, 6778, 6782, 5, 883, 0, 0, 6779, 6782, 3, 702, 351, 0, 6780, 6782, 3, 724, 362, 0, 6781, 6777, 1, 0, 0, 0, 6781, 6778, 1, 0, 0, 0, 6781, 6779, 1, 0, 0, 0, 6781, 6780, 1, 0, 0, 0, 6782, 625, 1, 0, 0, 0, 6783, 6785, 5, 194, 0, 0, 6784, 6786, 5, 552, 0, 0, 6785, 6784, 1, 0, 0, 0, 6785, 6786, 1, 0, 0, 0, 6786, 6787, 1, 0, 0, 0, 6787, 6792, 3, 52, 26, 0, 6788, 6789, 5, 868, 0, 0, 6789, 6791, 3, 52, 26, 0, 6790, 6788, 1, 0, 0, 0, 6791, 6794, 1, 0, 0, 0, 6792, 6790, 1, 0, 0, 0, 6792, 6793, 1, 0, 0, 0, 6793, 627, 1, 0, 0, 0, 6794, 6792, 1, 0, 0, 0, 6795, 6796, 5, 173, 0, 0, 6796, 6798, 3, 662, 331, 0, 6797, 6799, 3, 258, 129, 0, 6798, 6797, 1, 0, 0, 0, 6798, 6799, 1, 0, 0, 0, 6799, 6801, 1, 0, 0, 0, 6800, 6802, 3, 328, 164, 0, 6801, 6800, 1, 0, 0, 0, 6801, 6802, 1, 0, 0, 0, 6802, 629, 1, 0, 0, 0, 6803, 6805, 5, 72, 0, 0, 6804, 6806, 7, 107, 0, 0, 6805, 6804, 1, 0, 0, 0, 6805, 6806, 1, 0, 0, 0, 6806, 6807, 1, 0, 0, 0, 6807, 6839, 5, 48, 0, 0, 6808, 6809, 3, 568, 284, 0, 6809, 6810, 5, 857, 0, 0, 6810, 6818, 7, 108, 0, 0, 6811, 6812, 5, 868, 0, 0, 6812, 6813, 3, 568, 284, 0, 6813, 6814, 5, 857, 0, 0, 6814, 6815, 7, 108, 0, 0, 6815, 6817, 1, 0, 0, 0, 6816, 6811, 1, 0, 0, 0, 6817, 6820, 1, 0, 0, 0, 6818, 6816, 1, 0, 0, 0, 6818, 6819, 1, 0, 0, 0, 6819, 6840, 1, 0, 0, 0, 6820, 6818, 1, 0, 0, 0, 6821, 6824, 5, 30, 0, 0, 6822, 6825, 3, 728, 364, 0, 6823, 6825, 3, 568, 284, 0, 6824, 6822, 1, 0, 0, 0, 6824, 6823, 1, 0, 0, 0, 6825, 6826, 1, 0, 0, 0, 6826, 6827, 3, 568, 284, 0, 6827, 6828, 5, 857, 0, 0, 6828, 6836, 3, 632, 316, 0, 6829, 6830, 5, 868, 0, 0, 6830, 6831, 3, 568, 284, 0, 6831, 6832, 5, 857, 0, 0, 6832, 6833, 3, 632, 316, 0, 6833, 6835, 1, 0, 0, 0, 6834, 6829, 1, 0, 0, 0, 6835, 6838, 1, 0, 0, 0, 6836, 6834, 1, 0, 0, 0, 6836, 6837, 1, 0, 0, 0, 6837, 6840, 1, 0, 0, 0, 6838, 6836, 1, 0, 0, 0, 6839, 6808, 1, 0, 0, 0, 6839, 6821, 1, 0, 0, 0, 6840, 631, 1, 0, 0, 0, 6841, 6842, 7, 109, 0, 0, 6842, 633, 1, 0, 0, 0, 6843, 6849, 3, 210, 105, 0, 6844, 6849, 3, 186, 93, 0, 6845, 6849, 3, 192, 96, 0, 6846, 6849, 3, 208, 104, 0, 6847, 6849, 3, 220, 110, 0, 6848, 6843, 1, 0, 0, 0, 6848, 6844, 1, 0, 0, 0, 6848, 6845, 1, 0, 0, 0, 6848, 6846, 1, 0, 0, 0, 6848, 6847, 1, 0, 0, 0, 6849, 6854, 1, 0, 0, 0, 6850, 6851, 5, 65, 0, 0, 6851, 6852, 5, 349, 0, 0, 6852, 6854, 3, 722, 361, 0, 6853, 6848, 1, 0, 0, 0, 6853, 6850, 1, 0, 0, 0, 6854, 635, 1, 0, 0, 0, 6855, 6856, 3, 718, 359, 0, 6856, 637, 1, 0, 0, 0, 6857, 6858, 3, 718, 359, 0, 6858, 639, 1, 0, 0, 0, 6859, 6860, 3, 718, 359, 0, 6860, 641, 1, 0, 0, 0, 6861, 6862, 3, 718, 359, 0, 6862, 643, 1, 0, 0, 0, 6863, 6864, 3, 718, 359, 0, 6864, 645, 1, 0, 0, 0, 6865, 6866, 3, 718, 359, 0, 6866, 647, 1, 0, 0, 0, 6867, 6868, 3, 722, 361, 0, 6868, 649, 1, 0, 0, 0, 6869, 6874, 3, 652, 326, 0, 6870, 6871, 5, 868, 0, 0, 6871, 6873, 3, 652, 326, 0, 6872, 6870, 1, 0, 0, 0, 6873, 6876, 1, 0, 0, 0, 6874, 6872, 1, 0, 0, 0, 6874, 6875, 1, 0, 0, 0, 6875, 651, 1, 0, 0, 0, 6876, 6874, 1, 0, 0, 0, 6877, 6878, 3, 722, 361, 0, 6878, 653, 1, 0, 0, 0, 6879, 6880, 3, 722, 361, 0, 6880, 655, 1, 0, 0, 0, 6881, 6882, 3, 722, 361, 0, 6882, 657, 1, 0, 0, 0, 6883, 6884, 3, 718, 359, 0, 6884, 659, 1, 0, 0, 0, 6885, 6890, 3, 662, 331, 0, 6886, 6887, 5, 868, 0, 0, 6887, 6889, 3, 662, 331, 0, 6888, 6886, 1, 0, 0, 0, 6889, 6892, 1, 0, 0, 0, 6890, 6888, 1, 0, 0, 0, 6890, 6891, 1, 0, 0, 0, 6891, 661, 1, 0, 0, 0, 6892, 6890, 1, 0, 0, 0, 6893, 6894, 3, 718, 359, 0, 6894, 663, 1, 0, 0, 0, 6895, 6900, 3, 666, 333, 0, 6896, 6897, 5, 868, 0, 0, 6897, 6899, 3, 666, 333, 0, 6898, 6896, 1, 0, 0, 0, 6899, 6902, 1, 0, 0, 0, 6900, 6898, 1, 0, 0, 0, 6900, 6901, 1, 0, 0, 0, 6901, 665, 1, 0, 0, 0, 6902, 6900, 1, 0, 0, 0, 6903, 6906, 3, 700, 350, 0, 6904, 6906, 3, 722, 361, 0, 6905, 6903, 1, 0, 0, 0, 6905, 6904, 1, 0, 0, 0, 6906, 667, 1, 0, 0, 0, 6907, 6912, 3, 722, 361, 0, 6908, 6910, 3, 726, 363, 0, 6909, 6911, 3, 726, 363, 0, 6910, 6909, 1, 0, 0, 0, 6910, 6911, 1, 0, 0, 0, 6911, 6913, 1, 0, 0, 0, 6912, 6908, 1, 0, 0, 0, 6912, 6913, 1, 0, 0, 0, 6913, 6922, 1, 0, 0, 0, 6914, 6916, 9, 0, 0, 0, 6915, 6914, 1, 0, 0, 0, 6915, 6916, 1, 0, 0, 0, 6916, 6917, 1, 0, 0, 0, 6917, 6919, 3, 726, 363, 0, 6918, 6920, 3, 726, 363, 0, 6919, 6918, 1, 0, 0, 0, 6919, 6920, 1, 0, 0, 0, 6920, 6922, 1, 0, 0, 0, 6921, 6907, 1, 0, 0, 0, 6921, 6915, 1, 0, 0, 0, 6922, 669, 1, 0, 0, 0, 6923, 6928, 3, 674, 337, 0, 6924, 6925, 5, 868, 0, 0, 6925, 6927, 3, 674, 337, 0, 6926, 6924, 1, 0, 0, 0, 6927, 6930, 1, 0, 0, 0, 6928, 6926, 1, 0, 0, 0, 6928, 6929, 1, 0, 0, 0, 6929, 671, 1, 0, 0, 0, 6930, 6928, 1, 0, 0, 0, 6931, 6932, 1, 0, 0, 0, 6932, 673, 1, 0, 0, 0, 6933, 6938, 3, 722, 361, 0, 6934, 6936, 3, 726, 363, 0, 6935, 6937, 3, 726, 363, 0, 6936, 6935, 1, 0, 0, 0, 6936, 6937, 1, 0, 0, 0, 6937, 6939, 1, 0, 0, 0, 6938, 6934, 1, 0, 0, 0, 6938, 6939, 1, 0, 0, 0, 6939, 6950, 1, 0, 0, 0, 6940, 6942, 9, 0, 0, 0, 6941, 6940, 1, 0, 0, 0, 6941, 6942, 1, 0, 0, 0, 6942, 6943, 1, 0, 0, 0, 6943, 6945, 3, 726, 363, 0, 6944, 6946, 3, 726, 363, 0, 6945, 6944, 1, 0, 0, 0, 6945, 6946, 1, 0, 0, 0, 6946, 6950, 1, 0, 0, 0, 6947, 6948, 4, 337, 4, 0, 6948, 6950, 3, 672, 336, 0, 6949, 6933, 1, 0, 0, 0, 6949, 6941, 1, 0, 0, 0, 6949, 6947, 1, 0, 0, 0, 6950, 675, 1, 0, 0, 0, 6951, 6956, 3, 722, 361, 0, 6952, 6954, 3, 726, 363, 0, 6953, 6955, 3, 726, 363, 0, 6954, 6953, 1, 0, 0, 0, 6954, 6955, 1, 0, 0, 0, 6955, 6957, 1, 0, 0, 0, 6956, 6952, 1, 0, 0, 0, 6956, 6957, 1, 0, 0, 0, 6957, 6966, 1, 0, 0, 0, 6958, 6960, 9, 0, 0, 0, 6959, 6958, 1, 0, 0, 0, 6959, 6960, 1, 0, 0, 0, 6960, 6961, 1, 0, 0, 0, 6961, 6963, 3, 726, 363, 0, 6962, 6964, 3, 726, 363, 0, 6963, 6962, 1, 0, 0, 0, 6963, 6964, 1, 0, 0, 0, 6964, 6966, 1, 0, 0, 0, 6965, 6951, 1, 0, 0, 0, 6965, 6959, 1, 0, 0, 0, 6966, 677, 1, 0, 0, 0, 6967, 6968, 4, 339, 5, 0, 6968, 6977, 3, 672, 336, 0, 6969, 6974, 3, 722, 361, 0, 6970, 6972, 3, 726, 363, 0, 6971, 6973, 3, 726, 363, 0, 6972, 6971, 1, 0, 0, 0, 6972, 6973, 1, 0, 0, 0, 6973, 6975, 1, 0, 0, 0, 6974, 6970, 1, 0, 0, 0, 6974, 6975, 1, 0, 0, 0, 6975, 6977, 1, 0, 0, 0, 6976, 6967, 1, 0, 0, 0, 6976, 6969, 1, 0, 0, 0, 6977, 679, 1, 0, 0, 0, 6978, 6979, 3, 722, 361, 0, 6979, 681, 1, 0, 0, 0, 6980, 6981, 3, 722, 361, 0, 6981, 683, 1, 0, 0, 0, 6982, 6983, 3, 722, 361, 0, 6983, 685, 1, 0, 0, 0, 6984, 6989, 3, 688, 344, 0, 6985, 6986, 5, 868, 0, 0, 6986, 6988, 3, 688, 344, 0, 6987, 6985, 1, 0, 0, 0, 6988, 6991, 1, 0, 0, 0, 6989, 6987, 1, 0, 0, 0, 6989, 6990, 1, 0, 0, 0, 6990, 687, 1, 0, 0, 0, 6991, 6989, 1, 0, 0, 0, 6992, 6993, 3, 722, 361, 0, 6993, 689, 1, 0, 0, 0, 6994, 6999, 3, 722, 361, 0, 6995, 6996, 5, 866, 0, 0, 6996, 6997, 3, 728, 364, 0, 6997, 6998, 5, 867, 0, 0, 6998, 7000, 1, 0, 0, 0, 6999, 6995, 1, 0, 0, 0, 6999, 7000, 1, 0, 0, 0, 7000, 7003, 1, 0, 0, 0, 7001, 7003, 3, 820, 410, 0, 7002, 6994, 1, 0, 0, 0, 7002, 7001, 1, 0, 0, 0, 7003, 7005, 1, 0, 0, 0, 7004, 7006, 7, 55, 0, 0, 7005, 7004, 1, 0, 0, 0, 7005, 7006, 1, 0, 0, 0, 7006, 691, 1, 0, 0, 0, 7007, 7008, 3, 694, 347, 0, 7008, 7009, 5, 878, 0, 0, 7009, 7010, 3, 728, 364, 0, 7010, 693, 1, 0, 0, 0, 7011, 7012, 3, 696, 348, 0, 7012, 7013, 5, 891, 0, 0, 7013, 695, 1, 0, 0, 0, 7014, 7019, 5, 882, 0, 0, 7015, 7019, 5, 889, 0, 0, 7016, 7019, 5, 704, 0, 0, 7017, 7019, 3, 850, 425, 0, 7018, 7014, 1, 0, 0, 0, 7018, 7015, 1, 0, 0, 0, 7018, 7016, 1, 0, 0, 0, 7018, 7017, 1, 0, 0, 0, 7019, 697, 1, 0, 0, 0, 7020, 7021, 7, 110, 0, 0, 7021, 699, 1, 0, 0, 0, 7022, 7024, 3, 696, 348, 0, 7023, 7025, 3, 698, 349, 0, 7024, 7023, 1, 0, 0, 0, 7024, 7025, 1, 0, 0, 0, 7025, 7028, 1, 0, 0, 0, 7026, 7028, 3, 60, 30, 0, 7027, 7022, 1, 0, 0, 0, 7027, 7026, 1, 0, 0, 0, 7028, 701, 1, 0, 0, 0, 7029, 7030, 7, 111, 0, 0, 7030, 703, 1, 0, 0, 0, 7031, 7036, 5, 228, 0, 0, 7032, 7036, 3, 840, 420, 0, 7033, 7036, 5, 882, 0, 0, 7034, 7036, 5, 879, 0, 0, 7035, 7031, 1, 0, 0, 0, 7035, 7032, 1, 0, 0, 0, 7035, 7033, 1, 0, 0, 0, 7035, 7034, 1, 0, 0, 0, 7036, 705, 1, 0, 0, 0, 7037, 7038, 3, 722, 361, 0, 7038, 707, 1, 0, 0, 0, 7039, 7043, 3, 710, 355, 0, 7040, 7043, 5, 889, 0, 0, 7041, 7043, 5, 882, 0, 0, 7042, 7039, 1, 0, 0, 0, 7042, 7040, 1, 0, 0, 0, 7042, 7041, 1, 0, 0, 0, 7043, 709, 1, 0, 0, 0, 7044, 7045, 7, 112, 0, 0, 7045, 711, 1, 0, 0, 0, 7046, 7047, 3, 728, 364, 0, 7047, 7048, 5, 854, 0, 0, 7048, 7049, 3, 728, 364, 0, 7049, 7050, 5, 854, 0, 0, 7050, 7051, 3, 728, 364, 0, 7051, 7052, 5, 854, 0, 0, 7052, 7053, 3, 728, 364, 0, 7053, 7054, 5, 854, 0, 0, 7054, 7060, 3, 728, 364, 0, 7055, 7056, 5, 878, 0, 0, 7056, 7057, 3, 728, 364, 0, 7057, 7058, 5, 854, 0, 0, 7058, 7059, 3, 728, 364, 0, 7059, 7061, 1, 0, 0, 0, 7060, 7055, 1, 0, 0, 0, 7061, 7062, 1, 0, 0, 0, 7062, 7060, 1, 0, 0, 0, 7062, 7063, 1, 0, 0, 0, 7063, 713, 1, 0, 0, 0, 7064, 7071, 3, 716, 358, 0, 7065, 7066, 5, 868, 0, 0, 7066, 7069, 3, 716, 358, 0, 7067, 7068, 5, 868, 0, 0, 7068, 7070, 3, 728, 364, 0, 7069, 7067, 1, 0, 0, 0, 7069, 7070, 1, 0, 0, 0, 7070, 7072, 1, 0, 0, 0, 7071, 7065, 1, 0, 0, 0, 7071, 7072, 1, 0, 0, 0, 7072, 715, 1, 0, 0, 0, 7073, 7081, 5, 882, 0, 0, 7074, 7081, 5, 887, 0, 0, 7075, 7077, 5, 884, 0, 0, 7076, 7075, 1, 0, 0, 0, 7077, 7078, 1, 0, 0, 0, 7078, 7076, 1, 0, 0, 0, 7078, 7079, 1, 0, 0, 0, 7079, 7081, 1, 0, 0, 0, 7080, 7073, 1, 0, 0, 0, 7080, 7074, 1, 0, 0, 0, 7080, 7076, 1, 0, 0, 0, 7081, 717, 1, 0, 0, 0, 7082, 7084, 3, 722, 361, 0, 7083, 7085, 3, 726, 363, 0, 7084, 7083, 1, 0, 0, 0, 7084, 7085, 1, 0, 0, 0, 7085, 719, 1, 0, 0, 0, 7086, 7091, 3, 722, 361, 0, 7087, 7088, 5, 868, 0, 0, 7088, 7090, 3, 722, 361, 0, 7089, 7087, 1, 0, 0, 0, 7090, 7093, 1, 0, 0, 0, 7091, 7089, 1, 0, 0, 0, 7091, 7092, 1, 0, 0, 0, 7092, 721, 1, 0, 0, 0, 7093, 7091, 1, 0, 0, 0, 7094, 7098, 3, 724, 362, 0, 7095, 7098, 5, 879, 0, 0, 7096, 7098, 5, 882, 0, 0, 7097, 7094, 1, 0, 0, 0, 7097, 7095, 1, 0, 0, 0, 7097, 7096, 1, 0, 0, 0, 7098, 723, 1, 0, 0, 0, 7099, 7109, 5, 889, 0, 0, 7100, 7109, 3, 840, 420, 0, 7101, 7109, 3, 842, 421, 0, 7102, 7109, 3, 710, 355, 0, 7103, 7109, 3, 844, 422, 0, 7104, 7109, 3, 846, 423, 0, 7105, 7109, 3, 848, 424, 0, 7106, 7109, 3, 850, 425, 0, 7107, 7109, 3, 812, 406, 0, 7108, 7099, 1, 0, 0, 0, 7108, 7100, 1, 0, 0, 0, 7108, 7101, 1, 0, 0, 0, 7108, 7102, 1, 0, 0, 0, 7108, 7103, 1, 0, 0, 0, 7108, 7104, 1, 0, 0, 0, 7108, 7105, 1, 0, 0, 0, 7108, 7106, 1, 0, 0, 0, 7108, 7107, 1, 0, 0, 0, 7109, 725, 1, 0, 0, 0, 7110, 7111, 5, 865, 0, 0, 7111, 7115, 5, 889, 0, 0, 7112, 7113, 5, 865, 0, 0, 7113, 7115, 3, 722, 361, 0, 7114, 7110, 1, 0, 0, 0, 7114, 7112, 1, 0, 0, 0, 7115, 727, 1, 0, 0, 0, 7116, 7117, 7, 113, 0, 0, 7117, 729, 1, 0, 0, 0, 7118, 7121, 5, 880, 0, 0, 7119, 7121, 3, 728, 364, 0, 7120, 7118, 1, 0, 0, 0, 7120, 7119, 1, 0, 0, 0, 7121, 731, 1, 0, 0, 0, 7122, 7124, 5, 888, 0, 0, 7123, 7122, 1, 0, 0, 0, 7123, 7124, 1, 0, 0, 0, 7124, 7125, 1, 0, 0, 0, 7125, 7128, 5, 882, 0, 0, 7126, 7128, 5, 881, 0, 0, 7127, 7123, 1, 0, 0, 0, 7127, 7126, 1, 0, 0, 0, 7128, 7130, 1, 0, 0, 0, 7129, 7131, 5, 882, 0, 0, 7130, 7129, 1, 0, 0, 0, 7131, 7132, 1, 0, 0, 0, 7132, 7130, 1, 0, 0, 0, 7132, 7133, 1, 0, 0, 0, 7133, 7146, 1, 0, 0, 0, 7134, 7136, 5, 888, 0, 0, 7135, 7134, 1, 0, 0, 0, 7135, 7136, 1, 0, 0, 0, 7136, 7137, 1, 0, 0, 0, 7137, 7140, 5, 882, 0, 0, 7138, 7140, 5, 881, 0, 0, 7139, 7135, 1, 0, 0, 0, 7139, 7138, 1, 0, 0, 0, 7140, 7143, 1, 0, 0, 0, 7141, 7142, 5, 28, 0, 0, 7142, 7144, 3, 706, 353, 0, 7143, 7141, 1, 0, 0, 0, 7143, 7144, 1, 0, 0, 0, 7144, 7146, 1, 0, 0, 0, 7145, 7127, 1, 0, 0, 0, 7145, 7139, 1, 0, 0, 0, 7146, 733, 1, 0, 0, 0, 7147, 7148, 7, 114, 0, 0, 7148, 735, 1, 0, 0, 0, 7149, 7151, 5, 888, 0, 0, 7150, 7149, 1, 0, 0, 0, 7150, 7151, 1, 0, 0, 0, 7151, 7152, 1, 0, 0, 0, 7152, 7153, 5, 884, 0, 0, 7153, 737, 1, 0, 0, 0, 7154, 7156, 5, 114, 0, 0, 7155, 7154, 1, 0, 0, 0, 7155, 7156, 1, 0, 0, 0, 7156, 7157, 1, 0, 0, 0, 7157, 7158, 7, 115, 0, 0, 7158, 739, 1, 0, 0, 0, 7159, 7172, 3, 732, 366, 0, 7160, 7172, 3, 728, 364, 0, 7161, 7162, 5, 854, 0, 0, 7162, 7172, 3, 728, 364, 0, 7163, 7172, 3, 736, 368, 0, 7164, 7172, 3, 734, 367, 0, 7165, 7172, 5, 885, 0, 0, 7166, 7172, 5, 887, 0, 0, 7167, 7169, 5, 114, 0, 0, 7168, 7167, 1, 0, 0, 0, 7168, 7169, 1, 0, 0, 0, 7169, 7170, 1, 0, 0, 0, 7170, 7172, 7, 115, 0, 0, 7171, 7159, 1, 0, 0, 0, 7171, 7160, 1, 0, 0, 0, 7171, 7161, 1, 0, 0, 0, 7171, 7163, 1, 0, 0, 0, 7171, 7164, 1, 0, 0, 0, 7171, 7165, 1, 0, 0, 0, 7171, 7166, 1, 0, 0, 0, 7171, 7168, 1, 0, 0, 0, 7172, 741, 1, 0, 0, 0, 7173, 7175, 7, 116, 0, 0, 7174, 7176, 5, 240, 0, 0, 7175, 7174, 1, 0, 0, 0, 7175, 7176, 1, 0, 0, 0, 7176, 7178, 1, 0, 0, 0, 7177, 7179, 3, 748, 374, 0, 7178, 7177, 1, 0, 0, 0, 7178, 7179, 1, 0, 0, 0, 7179, 7181, 1, 0, 0, 0, 7180, 7182, 5, 228, 0, 0, 7181, 7180, 1, 0, 0, 0, 7181, 7182, 1, 0, 0, 0, 7182, 7186, 1, 0, 0, 0, 7183, 7184, 3, 58, 29, 0, 7184, 7185, 3, 704, 352, 0, 7185, 7187, 1, 0, 0, 0, 7186, 7183, 1, 0, 0, 0, 7186, 7187, 1, 0, 0, 0, 7187, 7191, 1, 0, 0, 0, 7188, 7189, 5, 28, 0, 0, 7189, 7192, 3, 706, 353, 0, 7190, 7192, 5, 228, 0, 0, 7191, 7188, 1, 0, 0, 0, 7191, 7190, 1, 0, 0, 0, 7191, 7192, 1, 0, 0, 0, 7192, 7300, 1, 0, 0, 0, 7193, 7194, 5, 227, 0, 0, 7194, 7195, 7, 117, 0, 0, 7195, 7197, 5, 240, 0, 0, 7196, 7198, 3, 748, 374, 0, 7197, 7196, 1, 0, 0, 0, 7197, 7198, 1, 0, 0, 0, 7198, 7200, 1, 0, 0, 0, 7199, 7201, 5, 228, 0, 0, 7200, 7199, 1, 0, 0, 0, 7200, 7201, 1, 0, 0, 0, 7201, 7300, 1, 0, 0, 0, 7202, 7203, 5, 227, 0, 0, 7203, 7205, 7, 118, 0, 0, 7204, 7206, 3, 748, 374, 0, 7205, 7204, 1, 0, 0, 0, 7205, 7206, 1, 0, 0, 0, 7206, 7208, 1, 0, 0, 0, 7207, 7209, 5, 228, 0, 0, 7208, 7207, 1, 0, 0, 0, 7208, 7209, 1, 0, 0, 0, 7209, 7300, 1, 0, 0, 0, 7210, 7211, 5, 498, 0, 0, 7211, 7213, 5, 225, 0, 0, 7212, 7214, 3, 748, 374, 0, 7213, 7212, 1, 0, 0, 0, 7213, 7214, 1, 0, 0, 0, 7214, 7216, 1, 0, 0, 0, 7215, 7217, 5, 228, 0, 0, 7216, 7215, 1, 0, 0, 0, 7216, 7217, 1, 0, 0, 0, 7217, 7300, 1, 0, 0, 0, 7218, 7220, 7, 119, 0, 0, 7219, 7221, 3, 748, 374, 0, 7220, 7219, 1, 0, 0, 0, 7220, 7221, 1, 0, 0, 0, 7221, 7225, 1, 0, 0, 0, 7222, 7224, 7, 120, 0, 0, 7223, 7222, 1, 0, 0, 0, 7224, 7227, 1, 0, 0, 0, 7225, 7223, 1, 0, 0, 0, 7225, 7226, 1, 0, 0, 0, 7226, 7300, 1, 0, 0, 0, 7227, 7225, 1, 0, 0, 0, 7228, 7230, 5, 210, 0, 0, 7229, 7231, 3, 750, 375, 0, 7230, 7229, 1, 0, 0, 0, 7230, 7231, 1, 0, 0, 0, 7231, 7235, 1, 0, 0, 0, 7232, 7234, 7, 120, 0, 0, 7233, 7232, 1, 0, 0, 0, 7234, 7237, 1, 0, 0, 0, 7235, 7233, 1, 0, 0, 0, 7235, 7236, 1, 0, 0, 0, 7236, 7300, 1, 0, 0, 0, 7237, 7235, 1, 0, 0, 0, 7238, 7240, 5, 211, 0, 0, 7239, 7241, 5, 212, 0, 0, 7240, 7239, 1, 0, 0, 0, 7240, 7241, 1, 0, 0, 0, 7241, 7243, 1, 0, 0, 0, 7242, 7244, 3, 750, 375, 0, 7243, 7242, 1, 0, 0, 0, 7243, 7244, 1, 0, 0, 0, 7244, 7248, 1, 0, 0, 0, 7245, 7247, 7, 120, 0, 0, 7246, 7245, 1, 0, 0, 0, 7247, 7250, 1, 0, 0, 0, 7248, 7246, 1, 0, 0, 0, 7248, 7249, 1, 0, 0, 0, 7249, 7300, 1, 0, 0, 0, 7250, 7248, 1, 0, 0, 0, 7251, 7253, 7, 121, 0, 0, 7252, 7254, 3, 752, 376, 0, 7253, 7252, 1, 0, 0, 0, 7253, 7254, 1, 0, 0, 0, 7254, 7258, 1, 0, 0, 0, 7255, 7257, 7, 120, 0, 0, 7256, 7255, 1, 0, 0, 0, 7257, 7260, 1, 0, 0, 0, 7258, 7256, 1, 0, 0, 0, 7258, 7259, 1, 0, 0, 0, 7259, 7300, 1, 0, 0, 0, 7260, 7258, 1, 0, 0, 0, 7261, 7300, 7, 122, 0, 0, 7262, 7264, 7, 123, 0, 0, 7263, 7265, 3, 748, 374, 0, 7264, 7263, 1, 0, 0, 0, 7264, 7265, 1, 0, 0, 0, 7265, 7300, 1, 0, 0, 0, 7266, 7267, 7, 124, 0, 0, 7267, 7269, 3, 744, 372, 0, 7268, 7270, 5, 228, 0, 0, 7269, 7268, 1, 0, 0, 0, 7269, 7270, 1, 0, 0, 0, 7270, 7274, 1, 0, 0, 0, 7271, 7272, 3, 58, 29, 0, 7272, 7273, 3, 704, 352, 0, 7273, 7275, 1, 0, 0, 0, 7274, 7271, 1, 0, 0, 0, 7274, 7275, 1, 0, 0, 0, 7275, 7300, 1, 0, 0, 0, 7276, 7279, 7, 125, 0, 0, 7277, 7278, 5, 834, 0, 0, 7278, 7280, 3, 728, 364, 0, 7279, 7277, 1, 0, 0, 0, 7279, 7280, 1, 0, 0, 0, 7280, 7300, 1, 0, 0, 0, 7281, 7283, 5, 233, 0, 0, 7282, 7284, 5, 225, 0, 0, 7283, 7282, 1, 0, 0, 0, 7283, 7284, 1, 0, 0, 0, 7284, 7286, 1, 0, 0, 0, 7285, 7287, 5, 228, 0, 0, 7286, 7285, 1, 0, 0, 0, 7286, 7287, 1, 0, 0, 0, 7287, 7291, 1, 0, 0, 0, 7288, 7289, 3, 58, 29, 0, 7289, 7290, 3, 704, 352, 0, 7290, 7292, 1, 0, 0, 0, 7291, 7288, 1, 0, 0, 0, 7291, 7292, 1, 0, 0, 0, 7292, 7295, 1, 0, 0, 0, 7293, 7294, 5, 28, 0, 0, 7294, 7296, 3, 706, 353, 0, 7295, 7293, 1, 0, 0, 0, 7295, 7296, 1, 0, 0, 0, 7296, 7300, 1, 0, 0, 0, 7297, 7298, 5, 233, 0, 0, 7298, 7300, 5, 229, 0, 0, 7299, 7173, 1, 0, 0, 0, 7299, 7193, 1, 0, 0, 0, 7299, 7202, 1, 0, 0, 0, 7299, 7210, 1, 0, 0, 0, 7299, 7218, 1, 0, 0, 0, 7299, 7228, 1, 0, 0, 0, 7299, 7238, 1, 0, 0, 0, 7299, 7251, 1, 0, 0, 0, 7299, 7261, 1, 0, 0, 0, 7299, 7262, 1, 0, 0, 0, 7299, 7266, 1, 0, 0, 0, 7299, 7276, 1, 0, 0, 0, 7299, 7281, 1, 0, 0, 0, 7299, 7297, 1, 0, 0, 0, 7300, 743, 1, 0, 0, 0, 7301, 7302, 5, 866, 0, 0, 7302, 7307, 5, 882, 0, 0, 7303, 7304, 5, 868, 0, 0, 7304, 7306, 5, 882, 0, 0, 7305, 7303, 1, 0, 0, 0, 7306, 7309, 1, 0, 0, 0, 7307, 7305, 1, 0, 0, 0, 7307, 7308, 1, 0, 0, 0, 7308, 7310, 1, 0, 0, 0, 7309, 7307, 1, 0, 0, 0, 7310, 7311, 5, 867, 0, 0, 7311, 745, 1, 0, 0, 0, 7312, 7314, 7, 126, 0, 0, 7313, 7315, 3, 748, 374, 0, 7314, 7313, 1, 0, 0, 0, 7314, 7315, 1, 0, 0, 0, 7315, 7335, 1, 0, 0, 0, 7316, 7318, 5, 224, 0, 0, 7317, 7319, 3, 748, 374, 0, 7318, 7317, 1, 0, 0, 0, 7318, 7319, 1, 0, 0, 0, 7319, 7323, 1, 0, 0, 0, 7320, 7321, 3, 58, 29, 0, 7321, 7322, 3, 704, 352, 0, 7322, 7324, 1, 0, 0, 0, 7323, 7320, 1, 0, 0, 0, 7323, 7324, 1, 0, 0, 0, 7324, 7335, 1, 0, 0, 0, 7325, 7335, 7, 127, 0, 0, 7326, 7328, 7, 128, 0, 0, 7327, 7329, 3, 752, 376, 0, 7328, 7327, 1, 0, 0, 0, 7328, 7329, 1, 0, 0, 0, 7329, 7335, 1, 0, 0, 0, 7330, 7332, 7, 129, 0, 0, 7331, 7333, 7, 130, 0, 0, 7332, 7331, 1, 0, 0, 0, 7332, 7333, 1, 0, 0, 0, 7333, 7335, 1, 0, 0, 0, 7334, 7312, 1, 0, 0, 0, 7334, 7316, 1, 0, 0, 0, 7334, 7325, 1, 0, 0, 0, 7334, 7326, 1, 0, 0, 0, 7334, 7330, 1, 0, 0, 0, 7335, 7337, 1, 0, 0, 0, 7336, 7338, 5, 12, 0, 0, 7337, 7336, 1, 0, 0, 0, 7337, 7338, 1, 0, 0, 0, 7338, 747, 1, 0, 0, 0, 7339, 7340, 5, 866, 0, 0, 7340, 7341, 3, 728, 364, 0, 7341, 7342, 5, 867, 0, 0, 7342, 749, 1, 0, 0, 0, 7343, 7344, 5, 866, 0, 0, 7344, 7345, 3, 728, 364, 0, 7345, 7346, 5, 868, 0, 0, 7346, 7347, 3, 728, 364, 0, 7347, 7348, 5, 867, 0, 0, 7348, 751, 1, 0, 0, 0, 7349, 7350, 5, 866, 0, 0, 7350, 7353, 3, 728, 364, 0, 7351, 7352, 5, 868, 0, 0, 7352, 7354, 3, 728, 364, 0, 7353, 7351, 1, 0, 0, 0, 7353, 7354, 1, 0, 0, 0, 7354, 7355, 1, 0, 0, 0, 7355, 7356, 5, 867, 0, 0, 7356, 753, 1, 0, 0, 0, 7357, 7358, 5, 866, 0, 0, 7358, 7363, 3, 690, 345, 0, 7359, 7360, 5, 868, 0, 0, 7360, 7362, 3, 690, 345, 0, 7361, 7359, 1, 0, 0, 0, 7362, 7365, 1, 0, 0, 0, 7363, 7361, 1, 0, 0, 0, 7363, 7364, 1, 0, 0, 0, 7364, 7366, 1, 0, 0, 0, 7365, 7363, 1, 0, 0, 0, 7366, 7367, 5, 867, 0, 0, 7367, 755, 1, 0, 0, 0, 7368, 7373, 3, 820, 410, 0, 7369, 7370, 5, 868, 0, 0, 7370, 7372, 3, 820, 410, 0, 7371, 7369, 1, 0, 0, 0, 7372, 7375, 1, 0, 0, 0, 7373, 7371, 1, 0, 0, 0, 7373, 7374, 1, 0, 0, 0, 7374, 757, 1, 0, 0, 0, 7375, 7373, 1, 0, 0, 0, 7376, 7377, 7, 131, 0, 0, 7377, 7382, 3, 760, 380, 0, 7378, 7379, 5, 868, 0, 0, 7379, 7381, 3, 760, 380, 0, 7380, 7378, 1, 0, 0, 0, 7381, 7384, 1, 0, 0, 0, 7382, 7380, 1, 0, 0, 0, 7382, 7383, 1, 0, 0, 0, 7383, 759, 1, 0, 0, 0, 7384, 7382, 1, 0, 0, 0, 7385, 7386, 5, 866, 0, 0, 7386, 7391, 3, 762, 381, 0, 7387, 7388, 5, 868, 0, 0, 7388, 7390, 3, 762, 381, 0, 7389, 7387, 1, 0, 0, 0, 7390, 7393, 1, 0, 0, 0, 7391, 7389, 1, 0, 0, 0, 7391, 7392, 1, 0, 0, 0, 7392, 7394, 1, 0, 0, 0, 7393, 7391, 1, 0, 0, 0, 7394, 7395, 5, 867, 0, 0, 7395, 761, 1, 0, 0, 0, 7396, 7399, 3, 820, 410, 0, 7397, 7399, 5, 42, 0, 0, 7398, 7396, 1, 0, 0, 0, 7398, 7397, 1, 0, 0, 0, 7399, 763, 1, 0, 0, 0, 7400, 7405, 3, 740, 370, 0, 7401, 7402, 5, 868, 0, 0, 7402, 7404, 3, 740, 370, 0, 7403, 7401, 1, 0, 0, 0, 7404, 7407, 1, 0, 0, 0, 7405, 7403, 1, 0, 0, 0, 7405, 7406, 1, 0, 0, 0, 7406, 765, 1, 0, 0, 0, 7407, 7405, 1, 0, 0, 0, 7408, 7413, 5, 882, 0, 0, 7409, 7410, 5, 868, 0, 0, 7410, 7412, 5, 882, 0, 0, 7411, 7409, 1, 0, 0, 0, 7412, 7415, 1, 0, 0, 0, 7413, 7411, 1, 0, 0, 0, 7413, 7414, 1, 0, 0, 0, 7414, 767, 1, 0, 0, 0, 7415, 7413, 1, 0, 0, 0, 7416, 7421, 5, 892, 0, 0, 7417, 7418, 5, 868, 0, 0, 7418, 7420, 5, 892, 0, 0, 7419, 7417, 1, 0, 0, 0, 7420, 7423, 1, 0, 0, 0, 7421, 7419, 1, 0, 0, 0, 7421, 7422, 1, 0, 0, 0, 7422, 769, 1, 0, 0, 0, 7423, 7421, 1, 0, 0, 0, 7424, 7451, 5, 116, 0, 0, 7425, 7426, 5, 24, 0, 0, 7426, 7427, 5, 866, 0, 0, 7427, 7428, 3, 820, 410, 0, 7428, 7429, 5, 13, 0, 0, 7429, 7430, 3, 746, 373, 0, 7430, 7431, 5, 867, 0, 0, 7431, 7451, 1, 0, 0, 0, 7432, 7434, 3, 826, 413, 0, 7433, 7432, 1, 0, 0, 0, 7433, 7434, 1, 0, 0, 0, 7434, 7435, 1, 0, 0, 0, 7435, 7451, 3, 740, 370, 0, 7436, 7440, 3, 772, 386, 0, 7437, 7438, 5, 119, 0, 0, 7438, 7439, 5, 185, 0, 0, 7439, 7441, 3, 772, 386, 0, 7440, 7437, 1, 0, 0, 0, 7440, 7441, 1, 0, 0, 0, 7441, 7451, 1, 0, 0, 0, 7442, 7443, 5, 866, 0, 0, 7443, 7444, 3, 820, 410, 0, 7444, 7445, 5, 867, 0, 0, 7445, 7451, 1, 0, 0, 0, 7446, 7447, 5, 866, 0, 0, 7447, 7448, 3, 718, 359, 0, 7448, 7449, 5, 867, 0, 0, 7449, 7451, 1, 0, 0, 0, 7450, 7424, 1, 0, 0, 0, 7450, 7425, 1, 0, 0, 0, 7450, 7433, 1, 0, 0, 0, 7450, 7436, 1, 0, 0, 0, 7450, 7442, 1, 0, 0, 0, 7450, 7446, 1, 0, 0, 0, 7451, 771, 1, 0, 0, 0, 7452, 7458, 7, 132, 0, 0, 7453, 7455, 5, 866, 0, 0, 7454, 7456, 3, 728, 364, 0, 7455, 7454, 1, 0, 0, 0, 7455, 7456, 1, 0, 0, 0, 7456, 7457, 1, 0, 0, 0, 7457, 7459, 5, 867, 0, 0, 7458, 7453, 1, 0, 0, 0, 7458, 7459, 1, 0, 0, 0, 7459, 7467, 1, 0, 0, 0, 7460, 7461, 5, 295, 0, 0, 7461, 7463, 5, 866, 0, 0, 7462, 7464, 3, 728, 364, 0, 7463, 7462, 1, 0, 0, 0, 7463, 7464, 1, 0, 0, 0, 7464, 7465, 1, 0, 0, 0, 7465, 7467, 5, 867, 0, 0, 7466, 7452, 1, 0, 0, 0, 7466, 7460, 1, 0, 0, 0, 7467, 773, 1, 0, 0, 0, 7468, 7469, 5, 78, 0, 0, 7469, 7470, 5, 60, 0, 0, 7470, 775, 1, 0, 0, 0, 7471, 7472, 5, 78, 0, 0, 7472, 7473, 5, 114, 0, 0, 7473, 7474, 5, 60, 0, 0, 7474, 777, 1, 0, 0, 0, 7475, 7476, 5, 124, 0, 0, 7476, 7477, 5, 143, 0, 0, 7477, 779, 1, 0, 0, 0, 7478, 7501, 3, 782, 391, 0, 7479, 7501, 3, 790, 395, 0, 7480, 7501, 3, 792, 396, 0, 7481, 7488, 3, 812, 406, 0, 7482, 7483, 5, 866, 0, 0, 7483, 7489, 5, 867, 0, 0, 7484, 7485, 5, 866, 0, 0, 7485, 7486, 3, 816, 408, 0, 7486, 7487, 5, 867, 0, 0, 7487, 7489, 1, 0, 0, 0, 7488, 7482, 1, 0, 0, 0, 7488, 7484, 1, 0, 0, 0, 7489, 7501, 1, 0, 0, 0, 7490, 7497, 3, 642, 321, 0, 7491, 7492, 5, 866, 0, 0, 7492, 7498, 5, 867, 0, 0, 7493, 7494, 5, 866, 0, 0, 7494, 7495, 3, 816, 408, 0, 7495, 7496, 5, 867, 0, 0, 7496, 7498, 1, 0, 0, 0, 7497, 7491, 1, 0, 0, 0, 7497, 7493, 1, 0, 0, 0, 7498, 7501, 1, 0, 0, 0, 7499, 7501, 3, 814, 407, 0, 7500, 7478, 1, 0, 0, 0, 7500, 7479, 1, 0, 0, 0, 7500, 7480, 1, 0, 0, 0, 7500, 7481, 1, 0, 0, 0, 7500, 7490, 1, 0, 0, 0, 7500, 7499, 1, 0, 0, 0, 7501, 781, 1, 0, 0, 0, 7502, 7505, 7, 133, 0, 0, 7503, 7504, 5, 866, 0, 0, 7504, 7506, 5, 867, 0, 0, 7505, 7503, 1, 0, 0, 0, 7505, 7506, 1, 0, 0, 0, 7506, 7682, 1, 0, 0, 0, 7507, 7682, 3, 60, 30, 0, 7508, 7509, 5, 33, 0, 0, 7509, 7510, 5, 866, 0, 0, 7510, 7511, 3, 820, 410, 0, 7511, 7512, 5, 868, 0, 0, 7512, 7513, 3, 746, 373, 0, 7513, 7514, 5, 867, 0, 0, 7514, 7682, 1, 0, 0, 0, 7515, 7516, 5, 33, 0, 0, 7516, 7517, 5, 866, 0, 0, 7517, 7518, 3, 820, 410, 0, 7518, 7519, 5, 188, 0, 0, 7519, 7520, 3, 704, 352, 0, 7520, 7521, 5, 867, 0, 0, 7521, 7682, 1, 0, 0, 0, 7522, 7523, 5, 24, 0, 0, 7523, 7524, 5, 866, 0, 0, 7524, 7525, 3, 820, 410, 0, 7525, 7526, 5, 13, 0, 0, 7526, 7527, 3, 746, 373, 0, 7527, 7528, 5, 867, 0, 0, 7528, 7682, 1, 0, 0, 0, 7529, 7530, 5, 189, 0, 0, 7530, 7531, 5, 866, 0, 0, 7531, 7532, 3, 674, 337, 0, 7532, 7533, 5, 867, 0, 0, 7533, 7682, 1, 0, 0, 0, 7534, 7536, 5, 23, 0, 0, 7535, 7537, 3, 784, 392, 0, 7536, 7535, 1, 0, 0, 0, 7537, 7538, 1, 0, 0, 0, 7538, 7536, 1, 0, 0, 0, 7538, 7539, 1, 0, 0, 0, 7539, 7542, 1, 0, 0, 0, 7540, 7541, 5, 53, 0, 0, 7541, 7543, 3, 818, 409, 0, 7542, 7540, 1, 0, 0, 0, 7542, 7543, 1, 0, 0, 0, 7543, 7544, 1, 0, 0, 0, 7544, 7545, 5, 378, 0, 0, 7545, 7682, 1, 0, 0, 0, 7546, 7547, 5, 23, 0, 0, 7547, 7549, 3, 820, 410, 0, 7548, 7550, 3, 784, 392, 0, 7549, 7548, 1, 0, 0, 0, 7550, 7551, 1, 0, 0, 0, 7551, 7549, 1, 0, 0, 0, 7551, 7552, 1, 0, 0, 0, 7552, 7555, 1, 0, 0, 0, 7553, 7554, 5, 53, 0, 0, 7554, 7556, 3, 818, 409, 0, 7555, 7553, 1, 0, 0, 0, 7555, 7556, 1, 0, 0, 0, 7556, 7557, 1, 0, 0, 0, 7557, 7558, 5, 378, 0, 0, 7558, 7682, 1, 0, 0, 0, 7559, 7560, 5, 224, 0, 0, 7560, 7561, 5, 866, 0, 0, 7561, 7564, 3, 816, 408, 0, 7562, 7563, 5, 188, 0, 0, 7563, 7565, 3, 704, 352, 0, 7564, 7562, 1, 0, 0, 0, 7564, 7565, 1, 0, 0, 0, 7565, 7566, 1, 0, 0, 0, 7566, 7567, 5, 867, 0, 0, 7567, 7682, 1, 0, 0, 0, 7568, 7569, 5, 296, 0, 0, 7569, 7572, 5, 866, 0, 0, 7570, 7573, 3, 732, 366, 0, 7571, 7573, 3, 820, 410, 0, 7572, 7570, 1, 0, 0, 0, 7572, 7571, 1, 0, 0, 0, 7573, 7574, 1, 0, 0, 0, 7574, 7577, 5, 80, 0, 0, 7575, 7578, 3, 732, 366, 0, 7576, 7578, 3, 820, 410, 0, 7577, 7575, 1, 0, 0, 0, 7577, 7576, 1, 0, 0, 0, 7578, 7579, 1, 0, 0, 0, 7579, 7580, 5, 867, 0, 0, 7580, 7682, 1, 0, 0, 0, 7581, 7582, 7, 134, 0, 0, 7582, 7585, 5, 866, 0, 0, 7583, 7586, 3, 732, 366, 0, 7584, 7586, 3, 820, 410, 0, 7585, 7583, 1, 0, 0, 0, 7585, 7584, 1, 0, 0, 0, 7586, 7587, 1, 0, 0, 0, 7587, 7590, 5, 68, 0, 0, 7588, 7591, 3, 728, 364, 0, 7589, 7591, 3, 820, 410, 0, 7590, 7588, 1, 0, 0, 0, 7590, 7589, 1, 0, 0, 0, 7591, 7597, 1, 0, 0, 0, 7592, 7595, 5, 65, 0, 0, 7593, 7596, 3, 728, 364, 0, 7594, 7596, 3, 820, 410, 0, 7595, 7593, 1, 0, 0, 0, 7595, 7594, 1, 0, 0, 0, 7596, 7598, 1, 0, 0, 0, 7597, 7592, 1, 0, 0, 0, 7597, 7598, 1, 0, 0, 0, 7598, 7599, 1, 0, 0, 0, 7599, 7600, 5, 867, 0, 0, 7600, 7682, 1, 0, 0, 0, 7601, 7602, 5, 300, 0, 0, 7602, 7603, 5, 866, 0, 0, 7603, 7606, 7, 135, 0, 0, 7604, 7607, 3, 732, 366, 0, 7605, 7607, 3, 820, 410, 0, 7606, 7604, 1, 0, 0, 0, 7606, 7605, 1, 0, 0, 0, 7606, 7607, 1, 0, 0, 0, 7607, 7608, 1, 0, 0, 0, 7608, 7611, 5, 68, 0, 0, 7609, 7612, 3, 732, 366, 0, 7610, 7612, 3, 820, 410, 0, 7611, 7609, 1, 0, 0, 0, 7611, 7610, 1, 0, 0, 0, 7612, 7613, 1, 0, 0, 0, 7613, 7614, 5, 867, 0, 0, 7614, 7682, 1, 0, 0, 0, 7615, 7616, 5, 300, 0, 0, 7616, 7619, 5, 866, 0, 0, 7617, 7620, 3, 732, 366, 0, 7618, 7620, 3, 820, 410, 0, 7619, 7617, 1, 0, 0, 0, 7619, 7618, 1, 0, 0, 0, 7620, 7621, 1, 0, 0, 0, 7621, 7624, 5, 68, 0, 0, 7622, 7625, 3, 732, 366, 0, 7623, 7625, 3, 820, 410, 0, 7624, 7622, 1, 0, 0, 0, 7624, 7623, 1, 0, 0, 0, 7625, 7626, 1, 0, 0, 0, 7626, 7627, 5, 867, 0, 0, 7627, 7682, 1, 0, 0, 0, 7628, 7629, 5, 840, 0, 0, 7629, 7632, 5, 866, 0, 0, 7630, 7633, 3, 732, 366, 0, 7631, 7633, 3, 820, 410, 0, 7632, 7630, 1, 0, 0, 0, 7632, 7631, 1, 0, 0, 0, 7633, 7640, 1, 0, 0, 0, 7634, 7635, 5, 13, 0, 0, 7635, 7636, 7, 136, 0, 0, 7636, 7637, 5, 866, 0, 0, 7637, 7638, 3, 728, 364, 0, 7638, 7639, 5, 867, 0, 0, 7639, 7641, 1, 0, 0, 0, 7640, 7634, 1, 0, 0, 0, 7640, 7641, 1, 0, 0, 0, 7641, 7643, 1, 0, 0, 0, 7642, 7644, 3, 786, 393, 0, 7643, 7642, 1, 0, 0, 0, 7643, 7644, 1, 0, 0, 0, 7644, 7645, 1, 0, 0, 0, 7645, 7646, 5, 867, 0, 0, 7646, 7682, 1, 0, 0, 0, 7647, 7648, 5, 293, 0, 0, 7648, 7649, 5, 866, 0, 0, 7649, 7650, 3, 70, 35, 0, 7650, 7653, 5, 68, 0, 0, 7651, 7654, 3, 732, 366, 0, 7652, 7654, 3, 820, 410, 0, 7653, 7651, 1, 0, 0, 0, 7653, 7652, 1, 0, 0, 0, 7654, 7655, 1, 0, 0, 0, 7655, 7656, 5, 867, 0, 0, 7656, 7682, 1, 0, 0, 0, 7657, 7658, 5, 827, 0, 0, 7658, 7659, 5, 866, 0, 0, 7659, 7660, 7, 137, 0, 0, 7660, 7661, 5, 868, 0, 0, 7661, 7662, 3, 732, 366, 0, 7662, 7663, 5, 867, 0, 0, 7663, 7682, 1, 0, 0, 0, 7664, 7665, 5, 254, 0, 0, 7665, 7666, 5, 866, 0, 0, 7666, 7667, 3, 820, 410, 0, 7667, 7668, 5, 868, 0, 0, 7668, 7671, 3, 820, 410, 0, 7669, 7670, 5, 579, 0, 0, 7670, 7672, 3, 746, 373, 0, 7671, 7669, 1, 0, 0, 0, 7671, 7672, 1, 0, 0, 0, 7672, 7674, 1, 0, 0, 0, 7673, 7675, 3, 294, 147, 0, 7674, 7673, 1, 0, 0, 0, 7674, 7675, 1, 0, 0, 0, 7675, 7677, 1, 0, 0, 0, 7676, 7678, 3, 296, 148, 0, 7677, 7676, 1, 0, 0, 0, 7677, 7678, 1, 0, 0, 0, 7678, 7679, 1, 0, 0, 0, 7679, 7680, 5, 867, 0, 0, 7680, 7682, 1, 0, 0, 0, 7681, 7502, 1, 0, 0, 0, 7681, 7507, 1, 0, 0, 0, 7681, 7508, 1, 0, 0, 0, 7681, 7515, 1, 0, 0, 0, 7681, 7522, 1, 0, 0, 0, 7681, 7529, 1, 0, 0, 0, 7681, 7534, 1, 0, 0, 0, 7681, 7546, 1, 0, 0, 0, 7681, 7559, 1, 0, 0, 0, 7681, 7568, 1, 0, 0, 0, 7681, 7581, 1, 0, 0, 0, 7681, 7601, 1, 0, 0, 0, 7681, 7615, 1, 0, 0, 0, 7681, 7628, 1, 0, 0, 0, 7681, 7647, 1, 0, 0, 0, 7681, 7657, 1, 0, 0, 0, 7681, 7664, 1, 0, 0, 0, 7682, 783, 1, 0, 0, 0, 7683, 7684, 5, 191, 0, 0, 7684, 7685, 3, 818, 409, 0, 7685, 7686, 5, 175, 0, 0, 7686, 7687, 3, 818, 409, 0, 7687, 785, 1, 0, 0, 0, 7688, 7689, 5, 448, 0, 0, 7689, 7694, 3, 788, 394, 0, 7690, 7691, 5, 868, 0, 0, 7691, 7693, 3, 788, 394, 0, 7692, 7690, 1, 0, 0, 0, 7693, 7696, 1, 0, 0, 0, 7694, 7692, 1, 0, 0, 0, 7694, 7695, 1, 0, 0, 0, 7695, 7703, 1, 0, 0, 0, 7696, 7694, 1, 0, 0, 0, 7697, 7698, 5, 448, 0, 0, 7698, 7699, 3, 728, 364, 0, 7699, 7700, 5, 854, 0, 0, 7700, 7701, 3, 728, 364, 0, 7701, 7703, 1, 0, 0, 0, 7702, 7688, 1, 0, 0, 0, 7702, 7697, 1, 0, 0, 0, 7703, 787, 1, 0, 0, 0, 7704, 7706, 3, 728, 364, 0, 7705, 7707, 7, 138, 0, 0, 7706, 7705, 1, 0, 0, 0, 7706, 7707, 1, 0, 0, 0, 7707, 789, 1, 0, 0, 0, 7708, 7709, 7, 139, 0, 0, 7709, 7711, 5, 866, 0, 0, 7710, 7712, 7, 45, 0, 0, 7711, 7710, 1, 0, 0, 0, 7711, 7712, 1, 0, 0, 0, 7712, 7713, 1, 0, 0, 0, 7713, 7714, 3, 818, 409, 0, 7714, 7716, 5, 867, 0, 0, 7715, 7717, 3, 794, 397, 0, 7716, 7715, 1, 0, 0, 0, 7716, 7717, 1, 0, 0, 0, 7717, 7768, 1, 0, 0, 0, 7718, 7719, 5, 262, 0, 0, 7719, 7727, 5, 866, 0, 0, 7720, 7728, 5, 850, 0, 0, 7721, 7723, 5, 7, 0, 0, 7722, 7721, 1, 0, 0, 0, 7722, 7723, 1, 0, 0, 0, 7723, 7724, 1, 0, 0, 0, 7724, 7728, 3, 818, 409, 0, 7725, 7726, 5, 49, 0, 0, 7726, 7728, 3, 816, 408, 0, 7727, 7720, 1, 0, 0, 0, 7727, 7722, 1, 0, 0, 0, 7727, 7725, 1, 0, 0, 0, 7728, 7729, 1, 0, 0, 0, 7729, 7731, 5, 867, 0, 0, 7730, 7732, 3, 794, 397, 0, 7731, 7730, 1, 0, 0, 0, 7731, 7732, 1, 0, 0, 0, 7732, 7768, 1, 0, 0, 0, 7733, 7734, 7, 140, 0, 0, 7734, 7736, 5, 866, 0, 0, 7735, 7737, 5, 7, 0, 0, 7736, 7735, 1, 0, 0, 0, 7736, 7737, 1, 0, 0, 0, 7737, 7738, 1, 0, 0, 0, 7738, 7739, 3, 818, 409, 0, 7739, 7741, 5, 867, 0, 0, 7740, 7742, 3, 794, 397, 0, 7741, 7740, 1, 0, 0, 0, 7741, 7742, 1, 0, 0, 0, 7742, 7768, 1, 0, 0, 0, 7743, 7744, 5, 266, 0, 0, 7744, 7746, 5, 866, 0, 0, 7745, 7747, 5, 49, 0, 0, 7746, 7745, 1, 0, 0, 0, 7746, 7747, 1, 0, 0, 0, 7747, 7748, 1, 0, 0, 0, 7748, 7759, 3, 816, 408, 0, 7749, 7750, 5, 125, 0, 0, 7750, 7751, 5, 20, 0, 0, 7751, 7756, 3, 260, 130, 0, 7752, 7753, 5, 868, 0, 0, 7753, 7755, 3, 260, 130, 0, 7754, 7752, 1, 0, 0, 0, 7755, 7758, 1, 0, 0, 0, 7756, 7754, 1, 0, 0, 0, 7756, 7757, 1, 0, 0, 0, 7757, 7760, 1, 0, 0, 0, 7758, 7756, 1, 0, 0, 0, 7759, 7749, 1, 0, 0, 0, 7759, 7760, 1, 0, 0, 0, 7760, 7763, 1, 0, 0, 0, 7761, 7762, 5, 156, 0, 0, 7762, 7764, 5, 882, 0, 0, 7763, 7761, 1, 0, 0, 0, 7763, 7764, 1, 0, 0, 0, 7764, 7765, 1, 0, 0, 0, 7765, 7766, 5, 867, 0, 0, 7766, 7768, 1, 0, 0, 0, 7767, 7708, 1, 0, 0, 0, 7767, 7718, 1, 0, 0, 0, 7767, 7733, 1, 0, 0, 0, 7767, 7743, 1, 0, 0, 0, 7768, 791, 1, 0, 0, 0, 7769, 7770, 7, 141, 0, 0, 7770, 7771, 5, 866, 0, 0, 7771, 7774, 3, 820, 410, 0, 7772, 7773, 5, 868, 0, 0, 7773, 7775, 3, 728, 364, 0, 7774, 7772, 1, 0, 0, 0, 7774, 7775, 1, 0, 0, 0, 7775, 7778, 1, 0, 0, 0, 7776, 7777, 5, 868, 0, 0, 7777, 7779, 3, 728, 364, 0, 7778, 7776, 1, 0, 0, 0, 7778, 7779, 1, 0, 0, 0, 7779, 7780, 1, 0, 0, 0, 7780, 7781, 5, 867, 0, 0, 7781, 7782, 3, 794, 397, 0, 7782, 7808, 1, 0, 0, 0, 7783, 7784, 7, 142, 0, 0, 7784, 7785, 5, 866, 0, 0, 7785, 7786, 3, 820, 410, 0, 7786, 7787, 5, 867, 0, 0, 7787, 7788, 3, 794, 397, 0, 7788, 7808, 1, 0, 0, 0, 7789, 7790, 7, 143, 0, 0, 7790, 7791, 5, 866, 0, 0, 7791, 7792, 5, 867, 0, 0, 7792, 7808, 3, 794, 397, 0, 7793, 7794, 5, 273, 0, 0, 7794, 7795, 5, 866, 0, 0, 7795, 7796, 3, 820, 410, 0, 7796, 7797, 5, 868, 0, 0, 7797, 7798, 3, 728, 364, 0, 7798, 7799, 5, 867, 0, 0, 7799, 7800, 3, 794, 397, 0, 7800, 7808, 1, 0, 0, 0, 7801, 7802, 5, 272, 0, 0, 7802, 7803, 5, 866, 0, 0, 7803, 7804, 3, 728, 364, 0, 7804, 7805, 5, 867, 0, 0, 7805, 7806, 3, 794, 397, 0, 7806, 7808, 1, 0, 0, 0, 7807, 7769, 1, 0, 0, 0, 7807, 7783, 1, 0, 0, 0, 7807, 7789, 1, 0, 0, 0, 7807, 7793, 1, 0, 0, 0, 7807, 7801, 1, 0, 0, 0, 7808, 793, 1, 0, 0, 0, 7809, 7815, 5, 129, 0, 0, 7810, 7811, 5, 866, 0, 0, 7811, 7812, 3, 796, 398, 0, 7812, 7813, 5, 867, 0, 0, 7813, 7816, 1, 0, 0, 0, 7814, 7816, 3, 798, 399, 0, 7815, 7810, 1, 0, 0, 0, 7815, 7814, 1, 0, 0, 0, 7816, 795, 1, 0, 0, 0, 7817, 7819, 3, 798, 399, 0, 7818, 7817, 1, 0, 0, 0, 7818, 7819, 1, 0, 0, 0, 7819, 7821, 1, 0, 0, 0, 7820, 7822, 3, 810, 405, 0, 7821, 7820, 1, 0, 0, 0, 7821, 7822, 1, 0, 0, 0, 7822, 7824, 1, 0, 0, 0, 7823, 7825, 3, 258, 129, 0, 7824, 7823, 1, 0, 0, 0, 7824, 7825, 1, 0, 0, 0, 7825, 7827, 1, 0, 0, 0, 7826, 7828, 3, 800, 400, 0, 7827, 7826, 1, 0, 0, 0, 7827, 7828, 1, 0, 0, 0, 7828, 797, 1, 0, 0, 0, 7829, 7830, 3, 722, 361, 0, 7830, 799, 1, 0, 0, 0, 7831, 7832, 3, 802, 401, 0, 7832, 7833, 3, 804, 402, 0, 7833, 801, 1, 0, 0, 0, 7834, 7835, 7, 144, 0, 0, 7835, 803, 1, 0, 0, 0, 7836, 7839, 3, 808, 404, 0, 7837, 7839, 3, 806, 403, 0, 7838, 7836, 1, 0, 0, 0, 7838, 7837, 1, 0, 0, 0, 7839, 805, 1, 0, 0, 0, 7840, 7841, 5, 17, 0, 0, 7841, 7842, 3, 808, 404, 0, 7842, 7843, 5, 11, 0, 0, 7843, 7844, 3, 808, 404, 0, 7844, 807, 1, 0, 0, 0, 7845, 7846, 5, 36, 0, 0, 7846, 7853, 5, 586, 0, 0, 7847, 7848, 5, 669, 0, 0, 7848, 7853, 7, 145, 0, 0, 7849, 7850, 3, 820, 410, 0, 7850, 7851, 7, 145, 0, 0, 7851, 7853, 1, 0, 0, 0, 7852, 7845, 1, 0, 0, 0, 7852, 7847, 1, 0, 0, 0, 7852, 7849, 1, 0, 0, 0, 7853, 809, 1, 0, 0, 0, 7854, 7855, 5, 130, 0, 0, 7855, 7856, 5, 20, 0, 0, 7856, 7861, 3, 820, 410, 0, 7857, 7858, 5, 868, 0, 0, 7858, 7860, 3, 820, 410, 0, 7859, 7857, 1, 0, 0, 0, 7860, 7863, 1, 0, 0, 0, 7861, 7859, 1, 0, 0, 0, 7861, 7862, 1, 0, 0, 0, 7862, 811, 1, 0, 0, 0, 7863, 7861, 1, 0, 0, 0, 7864, 7889, 3, 852, 426, 0, 7865, 7889, 5, 757, 0, 0, 7866, 7889, 5, 289, 0, 0, 7867, 7889, 5, 285, 0, 0, 7868, 7889, 5, 286, 0, 0, 7869, 7889, 5, 287, 0, 0, 7870, 7889, 5, 290, 0, 0, 7871, 7889, 5, 291, 0, 0, 7872, 7889, 5, 292, 0, 0, 7873, 7889, 5, 78, 0, 0, 7874, 7889, 5, 86, 0, 0, 7875, 7889, 5, 288, 0, 0, 7876, 7889, 5, 294, 0, 0, 7877, 7889, 5, 488, 0, 0, 7878, 7889, 5, 295, 0, 0, 7879, 7889, 5, 142, 0, 0, 7880, 7889, 5, 143, 0, 0, 7881, 7889, 5, 297, 0, 0, 7882, 7889, 5, 298, 0, 0, 7883, 7889, 5, 299, 0, 0, 7884, 7889, 5, 300, 0, 0, 7885, 7889, 5, 301, 0, 0, 7886, 7889, 5, 302, 0, 0, 7887, 7889, 5, 303, 0, 0, 7888, 7864, 1, 0, 0, 0, 7888, 7865, 1, 0, 0, 0, 7888, 7866, 1, 0, 0, 0, 7888, 7867, 1, 0, 0, 0, 7888, 7868, 1, 0, 0, 0, 7888, 7869, 1, 0, 0, 0, 7888, 7870, 1, 0, 0, 0, 7888, 7871, 1, 0, 0, 0, 7888, 7872, 1, 0, 0, 0, 7888, 7873, 1, 0, 0, 0, 7888, 7874, 1, 0, 0, 0, 7888, 7875, 1, 0, 0, 0, 7888, 7876, 1, 0, 0, 0, 7888, 7877, 1, 0, 0, 0, 7888, 7878, 1, 0, 0, 0, 7888, 7879, 1, 0, 0, 0, 7888, 7880, 1, 0, 0, 0, 7888, 7881, 1, 0, 0, 0, 7888, 7882, 1, 0, 0, 0, 7888, 7883, 1, 0, 0, 0, 7888, 7884, 1, 0, 0, 0, 7888, 7885, 1, 0, 0, 0, 7888, 7886, 1, 0, 0, 0, 7888, 7887, 1, 0, 0, 0, 7889, 813, 1, 0, 0, 0, 7890, 7891, 7, 146, 0, 0, 7891, 7892, 5, 866, 0, 0, 7892, 7893, 3, 818, 409, 0, 7893, 7894, 5, 867, 0, 0, 7894, 815, 1, 0, 0, 0, 7895, 7900, 3, 818, 409, 0, 7896, 7897, 5, 868, 0, 0, 7897, 7899, 3, 818, 409, 0, 7898, 7896, 1, 0, 0, 0, 7899, 7902, 1, 0, 0, 0, 7900, 7898, 1, 0, 0, 0, 7900, 7901, 1, 0, 0, 0, 7901, 817, 1, 0, 0, 0, 7902, 7900, 1, 0, 0, 0, 7903, 7907, 3, 740, 370, 0, 7904, 7907, 3, 780, 390, 0, 7905, 7907, 3, 820, 410, 0, 7906, 7903, 1, 0, 0, 0, 7906, 7904, 1, 0, 0, 0, 7906, 7905, 1, 0, 0, 0, 7907, 819, 1, 0, 0, 0, 7908, 7909, 6, 410, -1, 0, 7909, 7910, 7, 147, 0, 0, 7910, 7920, 3, 820, 410, 4, 7911, 7912, 3, 822, 411, 0, 7912, 7914, 5, 89, 0, 0, 7913, 7915, 5, 114, 0, 0, 7914, 7913, 1, 0, 0, 0, 7914, 7915, 1, 0, 0, 0, 7915, 7916, 1, 0, 0, 0, 7916, 7917, 7, 148, 0, 0, 7917, 7920, 1, 0, 0, 0, 7918, 7920, 3, 822, 411, 0, 7919, 7908, 1, 0, 0, 0, 7919, 7911, 1, 0, 0, 0, 7919, 7918, 1, 0, 0, 0, 7920, 7927, 1, 0, 0, 0, 7921, 7922, 10, 3, 0, 0, 7922, 7923, 3, 832, 416, 0, 7923, 7924, 3, 820, 410, 4, 7924, 7926, 1, 0, 0, 0, 7925, 7921, 1, 0, 0, 0, 7926, 7929, 1, 0, 0, 0, 7927, 7925, 1, 0, 0, 0, 7927, 7928, 1, 0, 0, 0, 7928, 821, 1, 0, 0, 0, 7929, 7927, 1, 0, 0, 0, 7930, 7931, 6, 411, -1, 0, 7931, 7932, 3, 824, 412, 0, 7932, 7996, 1, 0, 0, 0, 7933, 7935, 10, 6, 0, 0, 7934, 7936, 5, 114, 0, 0, 7935, 7934, 1, 0, 0, 0, 7935, 7936, 1, 0, 0, 0, 7936, 7937, 1, 0, 0, 0, 7937, 7938, 5, 17, 0, 0, 7938, 7939, 3, 822, 411, 0, 7939, 7940, 5, 11, 0, 0, 7940, 7941, 3, 822, 411, 7, 7941, 7995, 1, 0, 0, 0, 7942, 7943, 10, 5, 0, 0, 7943, 7944, 5, 604, 0, 0, 7944, 7945, 5, 99, 0, 0, 7945, 7995, 3, 822, 411, 6, 7946, 7948, 10, 3, 0, 0, 7947, 7949, 5, 114, 0, 0, 7948, 7947, 1, 0, 0, 0, 7948, 7949, 1, 0, 0, 0, 7949, 7950, 1, 0, 0, 0, 7950, 7951, 7, 149, 0, 0, 7951, 7995, 3, 822, 411, 4, 7952, 7954, 10, 9, 0, 0, 7953, 7955, 5, 114, 0, 0, 7954, 7953, 1, 0, 0, 0, 7954, 7955, 1, 0, 0, 0, 7955, 7956, 1, 0, 0, 0, 7956, 7957, 5, 80, 0, 0, 7957, 7960, 5, 866, 0, 0, 7958, 7961, 3, 210, 105, 0, 7959, 7961, 3, 756, 378, 0, 7960, 7958, 1, 0, 0, 0, 7960, 7959, 1, 0, 0, 0, 7961, 7962, 1, 0, 0, 0, 7962, 7963, 5, 867, 0, 0, 7963, 7995, 1, 0, 0, 0, 7964, 7965, 10, 8, 0, 0, 7965, 7966, 5, 89, 0, 0, 7966, 7995, 3, 738, 369, 0, 7967, 7968, 10, 7, 0, 0, 7968, 7975, 3, 828, 414, 0, 7969, 7970, 7, 150, 0, 0, 7970, 7971, 5, 866, 0, 0, 7971, 7972, 3, 210, 105, 0, 7972, 7973, 5, 867, 0, 0, 7973, 7976, 1, 0, 0, 0, 7974, 7976, 3, 822, 411, 0, 7975, 7969, 1, 0, 0, 0, 7975, 7974, 1, 0, 0, 0, 7976, 7995, 1, 0, 0, 0, 7977, 7979, 10, 4, 0, 0, 7978, 7980, 5, 114, 0, 0, 7979, 7978, 1, 0, 0, 0, 7979, 7980, 1, 0, 0, 0, 7980, 7981, 1, 0, 0, 0, 7981, 7982, 5, 99, 0, 0, 7982, 7985, 3, 822, 411, 0, 7983, 7984, 5, 384, 0, 0, 7984, 7986, 5, 882, 0, 0, 7985, 7983, 1, 0, 0, 0, 7985, 7986, 1, 0, 0, 0, 7986, 7995, 1, 0, 0, 0, 7987, 7988, 10, 2, 0, 0, 7988, 7989, 5, 485, 0, 0, 7989, 7990, 5, 510, 0, 0, 7990, 7991, 5, 866, 0, 0, 7991, 7992, 3, 822, 411, 0, 7992, 7993, 5, 867, 0, 0, 7993, 7995, 1, 0, 0, 0, 7994, 7933, 1, 0, 0, 0, 7994, 7942, 1, 0, 0, 0, 7994, 7946, 1, 0, 0, 0, 7994, 7952, 1, 0, 0, 0, 7994, 7964, 1, 0, 0, 0, 7994, 7967, 1, 0, 0, 0, 7994, 7977, 1, 0, 0, 0, 7994, 7987, 1, 0, 0, 0, 7995, 7998, 1, 0, 0, 0, 7996, 7994, 1, 0, 0, 0, 7996, 7997, 1, 0, 0, 0, 7997, 823, 1, 0, 0, 0, 7998, 7996, 1, 0, 0, 0, 7999, 8000, 6, 412, -1, 0, 8000, 8048, 3, 740, 370, 0, 8001, 8048, 3, 780, 390, 0, 8002, 8048, 3, 702, 351, 0, 8003, 8004, 3, 826, 413, 0, 8004, 8005, 3, 824, 412, 12, 8005, 8048, 1, 0, 0, 0, 8006, 8007, 5, 228, 0, 0, 8007, 8048, 3, 824, 412, 11, 8008, 8009, 5, 892, 0, 0, 8009, 8010, 5, 841, 0, 0, 8010, 8048, 3, 824, 412, 10, 8011, 8012, 5, 866, 0, 0, 8012, 8017, 3, 820, 410, 0, 8013, 8014, 5, 868, 0, 0, 8014, 8016, 3, 820, 410, 0, 8015, 8013, 1, 0, 0, 0, 8016, 8019, 1, 0, 0, 0, 8017, 8015, 1, 0, 0, 0, 8017, 8018, 1, 0, 0, 0, 8018, 8020, 1, 0, 0, 0, 8019, 8017, 1, 0, 0, 0, 8020, 8021, 5, 867, 0, 0, 8021, 8048, 1, 0, 0, 0, 8022, 8023, 5, 586, 0, 0, 8023, 8024, 5, 866, 0, 0, 8024, 8027, 3, 820, 410, 0, 8025, 8026, 5, 868, 0, 0, 8026, 8028, 3, 820, 410, 0, 8027, 8025, 1, 0, 0, 0, 8028, 8029, 1, 0, 0, 0, 8029, 8027, 1, 0, 0, 0, 8029, 8030, 1, 0, 0, 0, 8030, 8031, 1, 0, 0, 0, 8031, 8032, 5, 867, 0, 0, 8032, 8048, 1, 0, 0, 0, 8033, 8034, 5, 60, 0, 0, 8034, 8035, 5, 866, 0, 0, 8035, 8036, 3, 210, 105, 0, 8036, 8037, 5, 867, 0, 0, 8037, 8048, 1, 0, 0, 0, 8038, 8039, 5, 866, 0, 0, 8039, 8040, 3, 210, 105, 0, 8040, 8041, 5, 867, 0, 0, 8041, 8048, 1, 0, 0, 0, 8042, 8043, 5, 87, 0, 0, 8043, 8044, 3, 820, 410, 0, 8044, 8045, 3, 70, 35, 0, 8045, 8048, 1, 0, 0, 0, 8046, 8048, 3, 676, 338, 0, 8047, 7999, 1, 0, 0, 0, 8047, 8001, 1, 0, 0, 0, 8047, 8002, 1, 0, 0, 0, 8047, 8003, 1, 0, 0, 0, 8047, 8006, 1, 0, 0, 0, 8047, 8008, 1, 0, 0, 0, 8047, 8011, 1, 0, 0, 0, 8047, 8022, 1, 0, 0, 0, 8047, 8033, 1, 0, 0, 0, 8047, 8038, 1, 0, 0, 0, 8047, 8042, 1, 0, 0, 0, 8047, 8046, 1, 0, 0, 0, 8048, 8066, 1, 0, 0, 0, 8049, 8050, 10, 4, 0, 0, 8050, 8051, 3, 838, 419, 0, 8051, 8052, 3, 824, 412, 5, 8052, 8065, 1, 0, 0, 0, 8053, 8054, 10, 3, 0, 0, 8054, 8055, 3, 834, 417, 0, 8055, 8056, 3, 824, 412, 4, 8056, 8065, 1, 0, 0, 0, 8057, 8058, 10, 2, 0, 0, 8058, 8059, 3, 836, 418, 0, 8059, 8060, 3, 824, 412, 3, 8060, 8065, 1, 0, 0, 0, 8061, 8062, 10, 14, 0, 0, 8062, 8063, 5, 28, 0, 0, 8063, 8065, 3, 706, 353, 0, 8064, 8049, 1, 0, 0, 0, 8064, 8053, 1, 0, 0, 0, 8064, 8057, 1, 0, 0, 0, 8064, 8061, 1, 0, 0, 0, 8065, 8068, 1, 0, 0, 0, 8066, 8064, 1, 0, 0, 0, 8066, 8067, 1, 0, 0, 0, 8067, 825, 1, 0, 0, 0, 8068, 8066, 1, 0, 0, 0, 8069, 8070, 7, 151, 0, 0, 8070, 827, 1, 0, 0, 0, 8071, 8072, 5, 859, 0, 0, 8072, 8080, 5, 858, 0, 0, 8073, 8074, 5, 860, 0, 0, 8074, 8080, 5, 857, 0, 0, 8075, 8076, 5, 859, 0, 0, 8076, 8077, 5, 857, 0, 0, 8077, 8080, 5, 858, 0, 0, 8078, 8080, 3, 830, 415, 0, 8079, 8071, 1, 0, 0, 0, 8079, 8073, 1, 0, 0, 0, 8079, 8075, 1, 0, 0, 0, 8079, 8078, 1, 0, 0, 0, 8080, 829, 1, 0, 0, 0, 8081, 8082, 5, 859, 0, 0, 8082, 8089, 5, 857, 0, 0, 8083, 8084, 5, 858, 0, 0, 8084, 8089, 5, 857, 0, 0, 8085, 8089, 5, 857, 0, 0, 8086, 8089, 5, 858, 0, 0, 8087, 8089, 5, 859, 0, 0, 8088, 8081, 1, 0, 0, 0, 8088, 8083, 1, 0, 0, 0, 8088, 8085, 1, 0, 0, 0, 8088, 8086, 1, 0, 0, 0, 8088, 8087, 1, 0, 0, 0, 8089, 831, 1, 0, 0, 0, 8090, 8098, 5, 11, 0, 0, 8091, 8092, 5, 863, 0, 0, 8092, 8098, 5, 863, 0, 0, 8093, 8098, 5, 196, 0, 0, 8094, 8098, 5, 124, 0, 0, 8095, 8096, 5, 862, 0, 0, 8096, 8098, 5, 862, 0, 0, 8097, 8090, 1, 0, 0, 0, 8097, 8091, 1, 0, 0, 0, 8097, 8093, 1, 0, 0, 0, 8097, 8094, 1, 0, 0, 0, 8097, 8095, 1, 0, 0, 0, 8098, 833, 1, 0, 0, 0, 8099, 8100, 5, 859, 0, 0, 8100, 8107, 5, 859, 0, 0, 8101, 8102, 5, 858, 0, 0, 8102, 8107, 5, 858, 0, 0, 8103, 8107, 5, 863, 0, 0, 8104, 8107, 5, 864, 0, 0, 8105, 8107, 5, 862, 0, 0, 8106, 8099, 1, 0, 0, 0, 8106, 8101, 1, 0, 0, 0, 8106, 8103, 1, 0, 0, 0, 8106, 8104, 1, 0, 0, 0, 8106, 8105, 1, 0, 0, 0, 8107, 835, 1, 0, 0, 0, 8108, 8109, 7, 152, 0, 0, 8109, 837, 1, 0, 0, 0, 8110, 8111, 5, 854, 0, 0, 8111, 8116, 5, 858, 0, 0, 8112, 8113, 5, 854, 0, 0, 8113, 8114, 5, 858, 0, 0, 8114, 8116, 5, 858, 0, 0, 8115, 8110, 1, 0, 0, 0, 8115, 8112, 1, 0, 0, 0, 8116, 839, 1, 0, 0, 0, 8117, 8118, 7, 153, 0, 0, 8118, 841, 1, 0, 0, 0, 8119, 8120, 7, 154, 0, 0, 8120, 843, 1, 0, 0, 0, 8121, 8122, 7, 155, 0, 0, 8122, 845, 1, 0, 0, 0, 8123, 8124, 7, 156, 0, 0, 8124, 847, 1, 0, 0, 0, 8125, 8126, 7, 157, 0, 0, 8126, 849, 1, 0, 0, 0, 8127, 8128, 7, 158, 0, 0, 8128, 851, 1, 0, 0, 0, 8129, 8130, 7, 159, 0, 0, 8130, 853, 1, 0, 0, 0, 1172, 857, 864, 867, 876, 920, 939, 950, 966, 971, 983, 1018, 1028, 1033, 1039, 1044, 1048, 1057, 1060, 1063, 1067, 1074, 1077, 1082, 1090, 1095, 1100, 1103, 1105, 1117, 1120, 1124, 1127, 1131, 1134, 1138, 1141, 1144, 1148, 1151, 1155, 1161, 1165, 1170, 1176, 1183, 1190, 1193, 1197, 1202, 1208, 1217, 1222, 1226, 1230, 1241, 1259, 1266, 1270, 1274, 1278, 1283, 1286, 1289, 1292, 1295, 1301, 1305, 1315, 1319, 1323, 1329, 1334, 1337, 1340, 1342, 1346, 1353, 1357, 1360, 1365, 1369, 1372, 1376, 1379, 1383, 1396, 1399, 1403, 1406, 1410, 1413, 1417, 1420, 1424, 1427, 1430, 1434, 1437, 1441, 1447, 1450, 1454, 1466, 1472, 1483, 1488, 1496, 1500, 1505, 1508, 1513, 1523, 1528, 1533, 1539, 1544, 1548, 1550, 1553, 1557, 1561, 1564, 1568, 1572, 1576, 1582, 1585, 1592, 1597, 1603, 1610, 1616, 1624, 1627, 1634, 1637, 1639, 1645, 1651, 1668, 1675, 1682, 1694, 1699, 1702, 1705, 1718, 1731, 1736, 1752, 1760, 1770, 1773, 1779, 1784, 1787, 1793, 1797, 1802, 1808, 1812, 1816, 1819, 1822, 1828, 1832, 1837, 1848, 1851, 1858, 1861, 1865, 1871, 1883, 1886, 1891, 1904, 1911, 1917, 1922, 1926, 1929, 1937, 1945, 1947, 1957, 1961, 1964, 1968, 1973, 1978, 1983, 1987, 1991, 1995, 1999, 2003, 2007, 2012, 2017, 2022, 2028, 2033, 2038, 2043, 2048, 2053, 2059, 2064, 2069, 2074, 2079, 2084, 2089, 2094, 2101, 2106, 2111, 2116, 2120, 2125, 2133, 2138, 2144, 2156, 2163, 2165, 2173, 2178, 2181, 2189, 2195, 2199, 2212, 2224, 2226, 2229, 2237, 2243, 2249, 2262, 2269, 2278, 2283, 2294, 2303, 2308, 2320, 2327, 2336, 2341, 2353, 2360, 2369, 2374, 2381, 2390, 2395, 2397, 2402, 2410, 2419, 2423, 2426, 2430, 2435, 2441, 2447, 2452, 2457, 2462, 2467, 2470, 2475, 2480, 2490, 2494, 2501, 2506, 2509, 2514, 2517, 2521, 2525, 2533, 2552, 2555, 2558, 2562, 2572, 2585, 2598, 2601, 2607, 2610, 2614, 2623, 2626, 2629, 2634, 2638, 2641, 2645, 2649, 2652, 2656, 2659, 2663, 2666, 2672, 2675, 2680, 2688, 2694, 2698, 2702, 2707, 2712, 2719, 2723, 2734, 2742, 2745, 2751, 2757, 2760, 2766, 2772, 2774, 2779, 2785, 2791, 2793, 2797, 2800, 2803, 2809, 2815, 2817, 2822, 2829, 2838, 2841, 2845, 2850, 2860, 2869, 2877, 2880, 2888, 2891, 2898, 2903, 2911, 2927, 2932, 2939, 2958, 2964, 2974, 2986, 2993, 3000, 3015, 3028, 3034, 3040, 3046, 3052, 3058, 3064, 3069, 3076, 3083, 3090, 3095, 3098, 3100, 3109, 3116, 3123, 3130, 3139, 3145, 3149, 3153, 3157, 3163, 3166, 3171, 3178, 3185, 3189, 3194, 3204, 3212, 3218, 3227, 3236, 3245, 3248, 3252, 3261, 3265, 3268, 3271, 3277, 3280, 3283, 3287, 3290, 3293, 3296, 3307, 3310, 3315, 3321, 3326, 3331, 3334, 3338, 3343, 3346, 3351, 3361, 3366, 3372, 3374, 3380, 3382, 3388, 3396, 3401, 3409, 3412, 3417, 3420, 3425, 3433, 3439, 3443, 3445, 3451, 3459, 3464, 3472, 3475, 3480, 3483, 3487, 3490, 3493, 3497, 3500, 3508, 3514, 3518, 3524, 3529, 3533, 3535, 3541, 3545, 3548, 3551, 3554, 3560, 3565, 3568, 3571, 3574, 3577, 3579, 3582, 3586, 3589, 3592, 3600, 3606, 3609, 3611, 3620, 3625, 3632, 3635, 3638, 3642, 3646, 3652, 3656, 3663, 3667, 3670, 3673, 3678, 3685, 3695, 3704, 3713, 3723, 3726, 3730, 3736, 3740, 3743, 3746, 3751, 3754, 3761, 3765, 3768, 3772, 3776, 3779, 3782, 3787, 3793, 3797, 3807, 3813, 3817, 3823, 3827, 3833, 3836, 3848, 3852, 3856, 3864, 3868, 3882, 3887, 3890, 3894, 3897, 3905, 3910, 3913, 3916, 3920, 3923, 3932, 3937, 3946, 3951, 3958, 3965, 3973, 3979, 3987, 3990, 3993, 4000, 4003, 4006, 4010, 4014, 4020, 4027, 4037, 4041, 4050, 4053, 4057, 4063, 4071, 4076, 4080, 4086, 4092, 4095, 4097, 4101, 4106, 4113, 4123, 4129, 4134, 4138, 4141, 4144, 4147, 4150, 4153, 4156, 4160, 4164, 4172, 4176, 4179, 4181, 4194, 4197, 4204, 4214, 4217, 4222, 4224, 4228, 4236, 4242, 4251, 4264, 4268, 4274, 4280, 4283, 4287, 4290, 4297, 4309, 4313, 4321, 4333, 4339, 4341, 4347, 4349, 4351, 4357, 4365, 4373, 4377, 4382, 4384, 4393, 4398, 4418, 4423, 4429, 4436, 4441, 4450, 4453, 4457, 4461, 4465, 4468, 4471, 4474, 4478, 4482, 4485, 4488, 4491, 4498, 4502, 4517, 4530, 4538, 4548, 4552, 4555, 4561, 4564, 4567, 4576, 4585, 4595, 4599, 4609, 4613, 4624, 4628, 4637, 4646, 4649, 4653, 4658, 4662, 4671, 4674, 4677, 4684, 4690, 4696, 4722, 4725, 4728, 4747, 4749, 4772, 4775, 4778, 4797, 4799, 4813, 4826, 4863, 4868, 4903, 4917, 4924, 4928, 4934, 4942, 4944, 4955, 4965, 4972, 4978, 4986, 4991, 4999, 5007, 5015, 5023, 5029, 5034, 5039, 5044, 5050, 5052, 5063, 5068, 5075, 5077, 5091, 5097, 5102, 5107, 5113, 5120, 5128, 5136, 5141, 5147, 5150, 5158, 5165, 5174, 5177, 5194, 5202, 5210, 5214, 5221, 5227, 5235, 5240, 5247, 5255, 5262, 5267, 5270, 5272, 5278, 5280, 5284, 5286, 5291, 5298, 5303, 5307, 5312, 5316, 5322, 5328, 5333, 5336, 5338, 5344, 5346, 5350, 5352, 5357, 5362, 5369, 5378, 5383, 5392, 5396, 5402, 5407, 5410, 5412, 5418, 5420, 5423, 5430, 5432, 5437, 5444, 5453, 5459, 5461, 5468, 5471, 5483, 5489, 5497, 5500, 5504, 5507, 5511, 5513, 5524, 5527, 5531, 5534, 5537, 5544, 5556, 5559, 5566, 5572, 5582, 5587, 5594, 5599, 5605, 5609, 5613, 5621, 5625, 5629, 5635, 5637, 5649, 5654, 5660, 5666, 5670, 5675, 5677, 5701, 5705, 5708, 5717, 5721, 5730, 5734, 5738, 5744, 5746, 5755, 5765, 5792, 5796, 5801, 5808, 5811, 5817, 5827, 5837, 5847, 5853, 5862, 5868, 5875, 5877, 5885, 5891, 5895, 5912, 5922, 5926, 5930, 5940, 5945, 6017, 6035, 6043, 6049, 6061, 6065, 6076, 6080, 6089, 6097, 6104, 6108, 6115, 6120, 6123, 6126, 6137, 6146, 6155, 6158, 6172, 6190, 6203, 6206, 6210, 6213, 6215, 6222, 6229, 6233, 6240, 6247, 6250, 6266, 6269, 6279, 6283, 6289, 6292, 6295, 6300, 6304, 6307, 6314, 6317, 6323, 6359, 6362, 6374, 6377, 6393, 6395, 6399, 6406, 6410, 6417, 6420, 6429, 6432, 6437, 6443, 6445, 6451, 6455, 6461, 6464, 6467, 6480, 6483, 6489, 6492, 6500, 6508, 6514, 6517, 6521, 6535, 6547, 6555, 6559, 6566, 6573, 6578, 6591, 6600, 6608, 6613, 6616, 6621, 6624, 6636, 6641, 6654, 6656, 6661, 6665, 6668, 6670, 6677, 6684, 6687, 6690, 6696, 6700, 6706, 6714, 6723, 6736, 6741, 6749, 6752, 6757, 6762, 6770, 6773, 6781, 6785, 6792, 6798, 6801, 6805, 6818, 6824, 6836, 6839, 6848, 6853, 6874, 6890, 6900, 6905, 6910, 6912, 6915, 6919, 6921, 6928, 6936, 6938, 6941, 6945, 6949, 6954, 6956, 6959, 6963, 6965, 6972, 6974, 6976, 6989, 6999, 7002, 7005, 7018, 7024, 7027, 7035, 7042, 7062, 7069, 7071, 7078, 7080, 7084, 7091, 7097, 7108, 7114, 7120, 7123, 7127, 7132, 7135, 7139, 7143, 7145, 7150, 7155, 7168, 7171, 7175, 7178, 7181, 7186, 7191, 7197, 7200, 7205, 7208, 7213, 7216, 7220, 7225, 7230, 7235, 7240, 7243, 7248, 7253, 7258, 7264, 7269, 7274, 7279, 7283, 7286, 7291, 7295, 7299, 7307, 7314, 7318, 7323, 7328, 7332, 7334, 7337, 7353, 7363, 7373, 7382, 7391, 7398, 7405, 7413, 7421, 7433, 7440, 7450, 7455, 7458, 7463, 7466, 7488, 7497, 7500, 7505, 7538, 7542, 7551, 7555, 7564, 7572, 7577, 7585, 7590, 7595, 7597, 7606, 7611, 7619, 7624, 7632, 7640, 7643, 7653, 7671, 7674, 7677, 7681, 7694, 7702, 7706, 7711, 7716, 7722, 7727, 7731, 7736, 7741, 7746, 7756, 7759, 7763, 7767, 7774, 7778, 7807, 7815, 7818, 7821, 7824, 7827, 7838, 7852, 7861, 7888, 7900, 7906, 7914, 7919, 7927, 7935, 7948, 7954, 7960, 7975, 7979, 7985, 7994, 7996, 8017, 8029, 8047, 8064, 8066, 8079, 8088, 8097, 8106, 8115] \ No newline at end of file diff --git a/src/lib/mysql/MySqlParser.ts b/src/lib/mysql/MySqlParser.ts index 699016684..b0580e473 100644 --- a/src/lib/mysql/MySqlParser.ts +++ b/src/lib/mysql/MySqlParser.ts @@ -1276,70 +1276,69 @@ export class MySqlParser extends SQLParserBase { public static readonly RULE_uid = 361; public static readonly RULE_simpleId = 362; public static readonly RULE_dottedId = 363; - public static readonly RULE_dottedIdAllowEmpty = 364; - public static readonly RULE_decimalLiteral = 365; - public static readonly RULE_fileSizeLiteral = 366; - public static readonly RULE_stringLiteral = 367; - public static readonly RULE_booleanLiteral = 368; - public static readonly RULE_hexadecimalLiteral = 369; - public static readonly RULE_nullNotNull = 370; - public static readonly RULE_constant = 371; - public static readonly RULE_dataType = 372; - public static readonly RULE_collectionOptions = 373; - public static readonly RULE_convertedDataType = 374; - public static readonly RULE_lengthOneDimension = 375; - public static readonly RULE_lengthTwoDimension = 376; - public static readonly RULE_lengthTwoOptionalDimension = 377; - public static readonly RULE_indexColumnNames = 378; - public static readonly RULE_expressions = 379; - public static readonly RULE_valuesOrValueList = 380; - public static readonly RULE_expressionsWithDefaults = 381; - public static readonly RULE_expressionOrDefault = 382; - public static readonly RULE_constants = 383; - public static readonly RULE_simpleStrings = 384; - public static readonly RULE_userVariables = 385; - public static readonly RULE_defaultValue = 386; - public static readonly RULE_currentTimestamp = 387; - public static readonly RULE_ifExists = 388; - public static readonly RULE_ifNotExists = 389; - public static readonly RULE_orReplace = 390; - public static readonly RULE_functionCall = 391; - public static readonly RULE_specificFunction = 392; - public static readonly RULE_caseFuncAlternative = 393; - public static readonly RULE_levelsInWeightString = 394; - public static readonly RULE_levelInWeightListElement = 395; - public static readonly RULE_aggregateWindowedFunction = 396; - public static readonly RULE_nonAggregateWindowedFunction = 397; - public static readonly RULE_overClause = 398; - public static readonly RULE_windowSpec = 399; - public static readonly RULE_windowName = 400; - public static readonly RULE_frameClause = 401; - public static readonly RULE_frameUnits = 402; - public static readonly RULE_frameExtent = 403; - public static readonly RULE_frameBetween = 404; - public static readonly RULE_frameRange = 405; - public static readonly RULE_partitionClause = 406; - public static readonly RULE_scalarFunctionName = 407; - public static readonly RULE_passwordFunctionClause = 408; - public static readonly RULE_functionArgs = 409; - public static readonly RULE_functionArg = 410; - public static readonly RULE_expression = 411; - public static readonly RULE_predicate = 412; - public static readonly RULE_expressionAtom = 413; - public static readonly RULE_unaryOperator = 414; - public static readonly RULE_comparisonOperator = 415; - public static readonly RULE_comparisonBase = 416; - public static readonly RULE_logicalOperator = 417; - public static readonly RULE_bitOperator = 418; - public static readonly RULE_mathOperator = 419; - public static readonly RULE_jsonOperator = 420; - public static readonly RULE_charsetNameBase = 421; - public static readonly RULE_transactionLevelBase = 422; - public static readonly RULE_privilegesBase = 423; - public static readonly RULE_intervalTypeBase = 424; - public static readonly RULE_dataTypeBase = 425; - public static readonly RULE_keywordsCanBeId = 426; - public static readonly RULE_functionNameBase = 427; + public static readonly RULE_decimalLiteral = 364; + public static readonly RULE_fileSizeLiteral = 365; + public static readonly RULE_stringLiteral = 366; + public static readonly RULE_booleanLiteral = 367; + public static readonly RULE_hexadecimalLiteral = 368; + public static readonly RULE_nullNotNull = 369; + public static readonly RULE_constant = 370; + public static readonly RULE_dataType = 371; + public static readonly RULE_collectionOptions = 372; + public static readonly RULE_convertedDataType = 373; + public static readonly RULE_lengthOneDimension = 374; + public static readonly RULE_lengthTwoDimension = 375; + public static readonly RULE_lengthTwoOptionalDimension = 376; + public static readonly RULE_indexColumnNames = 377; + public static readonly RULE_expressions = 378; + public static readonly RULE_valuesOrValueList = 379; + public static readonly RULE_expressionsWithDefaults = 380; + public static readonly RULE_expressionOrDefault = 381; + public static readonly RULE_constants = 382; + public static readonly RULE_simpleStrings = 383; + public static readonly RULE_userVariables = 384; + public static readonly RULE_defaultValue = 385; + public static readonly RULE_currentTimestamp = 386; + public static readonly RULE_ifExists = 387; + public static readonly RULE_ifNotExists = 388; + public static readonly RULE_orReplace = 389; + public static readonly RULE_functionCall = 390; + public static readonly RULE_specificFunction = 391; + public static readonly RULE_caseFuncAlternative = 392; + public static readonly RULE_levelsInWeightString = 393; + public static readonly RULE_levelInWeightListElement = 394; + public static readonly RULE_aggregateWindowedFunction = 395; + public static readonly RULE_nonAggregateWindowedFunction = 396; + public static readonly RULE_overClause = 397; + public static readonly RULE_windowSpec = 398; + public static readonly RULE_windowName = 399; + public static readonly RULE_frameClause = 400; + public static readonly RULE_frameUnits = 401; + public static readonly RULE_frameExtent = 402; + public static readonly RULE_frameBetween = 403; + public static readonly RULE_frameRange = 404; + public static readonly RULE_partitionClause = 405; + public static readonly RULE_scalarFunctionName = 406; + public static readonly RULE_passwordFunctionClause = 407; + public static readonly RULE_functionArgs = 408; + public static readonly RULE_functionArg = 409; + public static readonly RULE_expression = 410; + public static readonly RULE_predicate = 411; + public static readonly RULE_expressionAtom = 412; + public static readonly RULE_unaryOperator = 413; + public static readonly RULE_comparisonOperator = 414; + public static readonly RULE_comparisonBase = 415; + public static readonly RULE_logicalOperator = 416; + public static readonly RULE_bitOperator = 417; + public static readonly RULE_mathOperator = 418; + public static readonly RULE_jsonOperator = 419; + public static readonly RULE_charsetNameBase = 420; + public static readonly RULE_transactionLevelBase = 421; + public static readonly RULE_privilegesBase = 422; + public static readonly RULE_intervalTypeBase = 423; + public static readonly RULE_dataTypeBase = 424; + public static readonly RULE_keywordsCanBeId = 425; + public static readonly RULE_functionNameBase = 426; public static readonly literalNames = [ null, null, null, null, null, "'ACTIVE'", "'ADD'", "'ALL'", "'ALTER'", @@ -1813,23 +1812,22 @@ export class MySqlParser extends SQLParserBase { "userAtHost", "simpleUserName", "hostName", "userName", "mysqlVariable", "charsetName", "collationName", "engineName", "engineNameBase", "uuidSet", "xid", "xuidStringId", "fullId", "uidList", "uid", "simpleId", - "dottedId", "dottedIdAllowEmpty", "decimalLiteral", "fileSizeLiteral", - "stringLiteral", "booleanLiteral", "hexadecimalLiteral", "nullNotNull", - "constant", "dataType", "collectionOptions", "convertedDataType", - "lengthOneDimension", "lengthTwoDimension", "lengthTwoOptionalDimension", - "indexColumnNames", "expressions", "valuesOrValueList", "expressionsWithDefaults", - "expressionOrDefault", "constants", "simpleStrings", "userVariables", - "defaultValue", "currentTimestamp", "ifExists", "ifNotExists", "orReplace", - "functionCall", "specificFunction", "caseFuncAlternative", "levelsInWeightString", - "levelInWeightListElement", "aggregateWindowedFunction", "nonAggregateWindowedFunction", - "overClause", "windowSpec", "windowName", "frameClause", "frameUnits", - "frameExtent", "frameBetween", "frameRange", "partitionClause", - "scalarFunctionName", "passwordFunctionClause", "functionArgs", - "functionArg", "expression", "predicate", "expressionAtom", "unaryOperator", - "comparisonOperator", "comparisonBase", "logicalOperator", "bitOperator", - "mathOperator", "jsonOperator", "charsetNameBase", "transactionLevelBase", - "privilegesBase", "intervalTypeBase", "dataTypeBase", "keywordsCanBeId", - "functionNameBase", + "dottedId", "decimalLiteral", "fileSizeLiteral", "stringLiteral", + "booleanLiteral", "hexadecimalLiteral", "nullNotNull", "constant", + "dataType", "collectionOptions", "convertedDataType", "lengthOneDimension", + "lengthTwoDimension", "lengthTwoOptionalDimension", "indexColumnNames", + "expressions", "valuesOrValueList", "expressionsWithDefaults", "expressionOrDefault", + "constants", "simpleStrings", "userVariables", "defaultValue", "currentTimestamp", + "ifExists", "ifNotExists", "orReplace", "functionCall", "specificFunction", + "caseFuncAlternative", "levelsInWeightString", "levelInWeightListElement", + "aggregateWindowedFunction", "nonAggregateWindowedFunction", "overClause", + "windowSpec", "windowName", "frameClause", "frameUnits", "frameExtent", + "frameBetween", "frameRange", "partitionClause", "scalarFunctionName", + "passwordFunctionClause", "functionArgs", "functionArg", "expression", + "predicate", "expressionAtom", "unaryOperator", "comparisonOperator", + "comparisonBase", "logicalOperator", "bitOperator", "mathOperator", + "jsonOperator", "charsetNameBase", "transactionLevelBase", "privilegesBase", + "intervalTypeBase", "dataTypeBase", "keywordsCanBeId", "functionNameBase", ]; public get grammarFileName(): string { return "MySqlParser.g4"; } @@ -1853,21 +1851,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 859; + this.state = 857; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while ((((_la) & ~0x1F) === 0 && ((1 << _la) & 169870592) !== 0) || ((((_la - 34)) & ~0x1F) === 0 && ((1 << (_la - 34)) & 268573697) !== 0) || ((((_la - 72)) & ~0x1F) === 0 && ((1 << (_la - 72)) & 2151694339) !== 0) || ((((_la - 104)) & ~0x1F) === 0 && ((1 << (_la - 104)) & 536936449) !== 0) || ((((_la - 140)) & ~0x1F) === 0 && ((1 << (_la - 140)) & 442923) !== 0) || ((((_la - 173)) & ~0x1F) === 0 && ((1 << (_la - 173)) & 2184193) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 16781443) !== 0) || _la === 362 || _la === 371 || ((((_la - 404)) & ~0x1F) === 0 && ((1 << (_la - 404)) & 270573569) !== 0) || _la === 540 || _la === 562 || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 16643) !== 0) || ((((_la - 640)) & ~0x1F) === 0 && ((1 << (_la - 640)) & 268435521) !== 0) || _la === 673 || _la === 694 || _la === 713 || _la === 717 || _la === 749 || _la === 866 || _la === 869) { { { - this.state = 856; + this.state = 854; this.singleStatement(); } } - this.state = 861; + this.state = 859; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 862; + this.state = 860; this.match(MySqlParser.EOF); } } @@ -1889,7 +1887,7 @@ export class MySqlParser extends SQLParserBase { let localContext = new SingleStatementContext(this.context, this.state); this.enterRule(localContext, 2, MySqlParser.RULE_singleStatement); try { - this.state = 869; + this.state = 867; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ALTER: @@ -1955,14 +1953,14 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 1); { - this.state = 864; + this.state = 862; this.sqlStatement(); - this.state = 866; + this.state = 864; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1, this.context) ) { case 1: { - this.state = 865; + this.state = 863; this.match(MySqlParser.SEMI); } break; @@ -1972,7 +1970,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.SEMI: this.enterOuterAlt(localContext, 2); { - this.state = 868; + this.state = 866; this.emptyStatement_(); } break; @@ -1998,55 +1996,55 @@ export class MySqlParser extends SQLParserBase { let localContext = new SqlStatementContext(this.context, this.state); this.enterRule(localContext, 4, MySqlParser.RULE_sqlStatement); try { - this.state = 878; + this.state = 876; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 3, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 871; + this.state = 869; this.ddlStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 872; + this.state = 870; this.dmlStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 873; + this.state = 871; this.transactionStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 874; + this.state = 872; this.replicationStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 875; + this.state = 873; this.preparedStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 876; + this.state = 874; this.administrationStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 877; + this.state = 875; this.utilityStatement(); } break; @@ -2072,7 +2070,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 880; + this.state = 878; this.match(MySqlParser.SEMI); } } @@ -2094,286 +2092,286 @@ export class MySqlParser extends SQLParserBase { let localContext = new DdlStatementContext(this.context, this.state); this.enterRule(localContext, 8, MySqlParser.RULE_ddlStatement); try { - this.state = 922; + this.state = 920; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 4, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 882; + this.state = 880; this.createDatabase(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 883; + this.state = 881; this.createEvent(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 884; + this.state = 882; this.createIndex(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 885; + this.state = 883; this.createLogFileGroup(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 886; + this.state = 884; this.createProcedure(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 887; + this.state = 885; this.createFunction(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 888; + this.state = 886; this.createFunctionLoadable(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 889; + this.state = 887; this.createServer(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 890; + this.state = 888; this.createTable(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 891; + this.state = 889; this.createTableSpaceInnoDB(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 892; + this.state = 890; this.createTableSpaceNDB(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 893; + this.state = 891; this.createTrigger(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 894; + this.state = 892; this.createView(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 895; + this.state = 893; this.createRole(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 896; + this.state = 894; this.alterDatabase(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 897; + this.state = 895; this.alterEvent(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 898; + this.state = 896; this.alterFunction(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 899; + this.state = 897; this.alterInstance(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 900; + this.state = 898; this.alterLogFileGroup(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 901; + this.state = 899; this.alterProcedure(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 902; + this.state = 900; this.alterServer(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 903; + this.state = 901; this.alterTable(); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 904; + this.state = 902; this.alterTableSpace(); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 905; + this.state = 903; this.alterView(); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 906; + this.state = 904; this.dropDatabase(); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 907; + this.state = 905; this.dropEvent(); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 908; + this.state = 906; this.dropIndex(); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 909; + this.state = 907; this.dropLogFileGroup(); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 910; + this.state = 908; this.dropProcedure(); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 911; + this.state = 909; this.dropFunction(); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 912; + this.state = 910; this.dropServer(); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 913; + this.state = 911; this.dropSpatial(); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 914; + this.state = 912; this.dropTable(); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 915; + this.state = 913; this.dropTableSpace(); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 916; + this.state = 914; this.dropTrigger(); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 917; + this.state = 915; this.dropView(); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 918; + this.state = 916; this.dropRole(); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 919; + this.state = 917; this.setRole(); } break; case 39: this.enterOuterAlt(localContext, 39); { - this.state = 920; + this.state = 918; this.renameTable(); } break; case 40: this.enterOuterAlt(localContext, 40); { - this.state = 921; + this.state = 919; this.truncateTable(); } break; @@ -2397,125 +2395,125 @@ export class MySqlParser extends SQLParserBase { let localContext = new DmlStatementContext(this.context, this.state); this.enterRule(localContext, 10, MySqlParser.RULE_dmlStatement); try { - this.state = 941; + this.state = 939; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 5, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 924; + this.state = 922; this.selectStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 925; + this.state = 923; this.setOperations(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 926; + this.state = 924; this.insertStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 927; + this.state = 925; this.updateStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 928; + this.state = 926; this.deleteStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 929; + this.state = 927; this.replaceStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 930; + this.state = 928; this.callStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 931; + this.state = 929; this.interSectStatement(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 932; + this.state = 930; this.loadDataStatement(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 933; + this.state = 931; this.loadXmlStatement(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 934; + this.state = 932; this.parenthesizedQuery(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 935; + this.state = 933; this.doStatement(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 936; + this.state = 934; this.handlerStatement(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 937; + this.state = 935; this.importTableStatement(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 938; + this.state = 936; this.valuesStatement(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 939; + this.state = 937; this.withStatement(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 940; + this.state = 938; this.tableStatement(); } break; @@ -2539,69 +2537,69 @@ export class MySqlParser extends SQLParserBase { let localContext = new TransactionStatementContext(this.context, this.state); this.enterRule(localContext, 12, MySqlParser.RULE_transactionStatement); try { - this.state = 952; + this.state = 950; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 6, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 943; + this.state = 941; this.startTransaction(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 944; + this.state = 942; this.beginWork(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 945; + this.state = 943; this.commitWork(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 946; + this.state = 944; this.rollbackWork(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 947; + this.state = 945; this.savePointStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 948; + this.state = 946; this.rollbackStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 949; + this.state = 947; this.releaseStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 950; + this.state = 948; this.lockTables(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 951; + this.state = 949; this.unlockTables(); } break; @@ -2625,104 +2623,104 @@ export class MySqlParser extends SQLParserBase { let localContext = new ReplicationStatementContext(this.context, this.state); this.enterRule(localContext, 14, MySqlParser.RULE_replicationStatement); try { - this.state = 968; + this.state = 966; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 7, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 954; + this.state = 952; this.changeMaster(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 955; + this.state = 953; this.changeReplicationFilter(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 956; + this.state = 954; this.changeReplicationSource(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 957; + this.state = 955; this.purgeBinaryLogs(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 958; + this.state = 956; this.startSlaveOrReplica(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 959; + this.state = 957; this.stopSlaveOrReplica(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 960; + this.state = 958; this.startGroupReplication(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 961; + this.state = 959; this.stopGroupReplication(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 962; + this.state = 960; this.xaStartTransaction(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 963; + this.state = 961; this.xaEndTransaction(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 964; + this.state = 962; this.xaPrepareStatement(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 965; + this.state = 963; this.xaCommitWork(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 966; + this.state = 964; this.xaRollbackWork(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 967; + this.state = 965; this.xaRecoverWork(); } break; @@ -2746,20 +2744,20 @@ export class MySqlParser extends SQLParserBase { let localContext = new PreparedStatementContext(this.context, this.state); this.enterRule(localContext, 16, MySqlParser.RULE_preparedStatement); try { - this.state = 973; + this.state = 971; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_PREPARE: this.enterOuterAlt(localContext, 1); { - this.state = 970; + this.state = 968; this.prepareStatement(); } break; case MySqlParser.KW_EXECUTE: this.enterOuterAlt(localContext, 2); { - this.state = 971; + this.state = 969; this.executeStatement(); } break; @@ -2767,7 +2765,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_DEALLOCATE: this.enterOuterAlt(localContext, 3); { - this.state = 972; + this.state = 970; this.deallocatePrepare(); } break; @@ -2793,76 +2791,76 @@ export class MySqlParser extends SQLParserBase { let localContext = new CompoundStatementContext(this.context, this.state); this.enterRule(localContext, 18, MySqlParser.RULE_compoundStatement); try { - this.state = 985; + this.state = 983; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 9, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 975; + this.state = 973; this.blockStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 976; + this.state = 974; this.caseStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 977; + this.state = 975; this.ifStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 978; + this.state = 976; this.leaveStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 979; + this.state = 977; this.loopStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 980; + this.state = 978; this.repeatStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 981; + this.state = 979; this.whileStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 982; + this.state = 980; this.iterateStatement(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 983; + this.state = 981; this.returnStatement(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 984; + this.state = 982; this.cursorStatement(); } break; @@ -2886,237 +2884,237 @@ export class MySqlParser extends SQLParserBase { let localContext = new AdministrationStatementContext(this.context, this.state); this.enterRule(localContext, 20, MySqlParser.RULE_administrationStatement); try { - this.state = 1020; + this.state = 1018; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 10, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 987; + this.state = 985; this.alterUser(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 988; + this.state = 986; this.createUser(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 989; + this.state = 987; this.dropUser(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 990; + this.state = 988; this.grantStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 991; + this.state = 989; this.grantProxy(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 992; + this.state = 990; this.renameUser(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 993; + this.state = 991; this.revokeStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 994; + this.state = 992; this.alterResourceGroup(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 995; + this.state = 993; this.createResourceGroup(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 996; + this.state = 994; this.dropResourceGroup(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 997; + this.state = 995; this.setResourceGroup(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 998; + this.state = 996; this.analyzeTable(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 999; + this.state = 997; this.checkTable(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 1000; + this.state = 998; this.checksumTable(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 1001; + this.state = 999; this.optimizeTable(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 1002; + this.state = 1000; this.repairTable(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 1003; + this.state = 1001; this.installComponent(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 1004; + this.state = 1002; this.uninstallComponent(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 1005; + this.state = 1003; this.installPlugin(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 1006; + this.state = 1004; this.uninstallPlugin(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 1007; + this.state = 1005; this.cloneStatement(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 1008; + this.state = 1006; this.setStatement(); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 1009; + this.state = 1007; this.showStatement(); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 1010; + this.state = 1008; this.binLogStatement(); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 1011; + this.state = 1009; this.cacheIndexStatement(); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 1012; + this.state = 1010; this.flushStatement(); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 1013; + this.state = 1011; this.killStatement(); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 1014; + this.state = 1012; this.loadIndexIntoCache(); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 1015; + this.state = 1013; this.resetStatement(); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 1016; + this.state = 1014; this.resetPersist(); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 1017; + this.state = 1015; this.resetAllChannel(); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 1018; + this.state = 1016; this.reStartStatement(); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 1019; + this.state = 1017; this.shutdownStatement(); } break; @@ -3140,62 +3138,62 @@ export class MySqlParser extends SQLParserBase { let localContext = new UtilityStatementContext(this.context, this.state); this.enterRule(localContext, 22, MySqlParser.RULE_utilityStatement); try { - this.state = 1030; + this.state = 1028; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 11, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1022; + this.state = 1020; this.fullDescribeStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1023; + this.state = 1021; this.simpleDescribeStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1024; + this.state = 1022; this.analyzeDescribeStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1025; + this.state = 1023; this.helpStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1026; + this.state = 1024; this.useStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1027; + this.state = 1025; this.signalStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1028; + this.state = 1026; this.resignalStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1029; + this.state = 1027; this.diagnosticsStatement(); } break; @@ -3222,9 +3220,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1032; + this.state = 1030; this.match(MySqlParser.KW_CREATE); - this.state = 1033; + this.state = 1031; localContext._dbFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 152)) { @@ -3234,29 +3232,29 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1035; + this.state = 1033; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 12, this.context) ) { case 1: { - this.state = 1034; + this.state = 1032; this.ifNotExists(); } break; } - this.state = 1037; + this.state = 1035; this.databaseNameCreate(); - this.state = 1041; + this.state = 1039; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (((((_la - 26)) & ~0x1F) === 0 && ((1 << (_la - 26)) & 65541) !== 0) || _la === 135 || _la === 224 || _la === 376 || _la === 823) { { { - this.state = 1038; + this.state = 1036; this.createDatabaseOption(); } } - this.state = 1043; + this.state = 1041; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -3283,87 +3281,87 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1044; + this.state = 1042; this.match(MySqlParser.KW_CREATE); - this.state = 1046; + this.state = 1044; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 364) { { - this.state = 1045; + this.state = 1043; this.ownerStatement(); } } - this.state = 1048; + this.state = 1046; this.match(MySqlParser.KW_EVENT); - this.state = 1050; + this.state = 1048; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 15, this.context) ) { case 1: { - this.state = 1049; + this.state = 1047; this.ifNotExists(); } break; } - this.state = 1052; + this.state = 1050; localContext._event_name = this.fullId(); - this.state = 1053; + this.state = 1051; this.match(MySqlParser.KW_ON); - this.state = 1054; + this.state = 1052; this.match(MySqlParser.KW_SCHEDULE); - this.state = 1055; + this.state = 1053; this.scheduleExpression(); - this.state = 1062; + this.state = 1060; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 119) { { - this.state = 1056; + this.state = 1054; this.match(MySqlParser.KW_ON); - this.state = 1057; + this.state = 1055; this.match(MySqlParser.KW_COMPLETION); - this.state = 1059; + this.state = 1057; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 1058; + this.state = 1056; this.match(MySqlParser.KW_NOT); } } - this.state = 1061; + this.state = 1059; this.match(MySqlParser.KW_PRESERVE); } } - this.state = 1065; + this.state = 1063; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 368 || _la === 375) { { - this.state = 1064; + this.state = 1062; this.enableType(); } } - this.state = 1069; + this.state = 1067; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 340) { { - this.state = 1067; + this.state = 1065; this.match(MySqlParser.KW_COMMENT); - this.state = 1068; + this.state = 1066; this.match(MySqlParser.STRING_LITERAL); } } - this.state = 1071; + this.state = 1069; this.match(MySqlParser.KW_DO); - this.state = 1072; + this.state = 1070; this.routineBody(); } } @@ -3389,14 +3387,14 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1074; + this.state = 1072; this.match(MySqlParser.KW_CREATE); - this.state = 1076; + this.state = 1074; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 508 || _la === 514) { { - this.state = 1075; + this.state = 1073; localContext._intimeAction = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 508 || _la === 514)) { @@ -3409,12 +3407,12 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 1079; + this.state = 1077; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 69 || _la === 161 || _la === 182) { { - this.state = 1078; + this.state = 1076; localContext._indexCategory = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 69 || _la === 161 || _la === 182)) { @@ -3427,66 +3425,66 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 1081; + this.state = 1079; this.match(MySqlParser.KW_INDEX); - this.state = 1082; + this.state = 1080; this.indexNameCreate(); - this.state = 1084; + this.state = 1082; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 1083; + this.state = 1081; this.indexType(); } } - this.state = 1086; + this.state = 1084; this.match(MySqlParser.KW_ON); - this.state = 1087; + this.state = 1085; this.tableName(); - this.state = 1088; + this.state = 1086; this.indexColumnNames(); - this.state = 1092; + this.state = 1090; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 23, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1089; + this.state = 1087; this.indexOption(); } } } - this.state = 1094; + this.state = 1092; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 23, this.context); } - this.state = 1107; + this.state = 1105; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 27, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 1105; + this.state = 1103; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ALGORITHM: { - this.state = 1095; + this.state = 1093; this.match(MySqlParser.KW_ALGORITHM); - this.state = 1097; + this.state = 1095; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1096; + this.state = 1094; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1099; + this.state = 1097; localContext._algType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 357 || _la === 430)) { @@ -3500,19 +3498,19 @@ export class MySqlParser extends SQLParserBase { break; case MySqlParser.KW_LOCK: { - this.state = 1100; + this.state = 1098; this.match(MySqlParser.KW_LOCK); - this.state = 1102; + this.state = 1100; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1101; + this.state = 1099; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1104; + this.state = 1102; localContext._lockType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 389 || _la === 505 || _la === 595)) { @@ -3529,7 +3527,7 @@ export class MySqlParser extends SQLParserBase { } } } - this.state = 1109; + this.state = 1107; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 27, this.context); } @@ -3556,153 +3554,153 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1110; + this.state = 1108; this.match(MySqlParser.KW_CREATE); - this.state = 1111; + this.state = 1109; this.match(MySqlParser.KW_LOGFILE); - this.state = 1112; + this.state = 1110; this.match(MySqlParser.KW_GROUP); - this.state = 1113; + this.state = 1111; localContext._logFileGroupName = this.uid(); - this.state = 1114; + this.state = 1112; this.match(MySqlParser.KW_ADD); - this.state = 1115; + this.state = 1113; this.match(MySqlParser.KW_UNDOFILE); - this.state = 1116; + this.state = 1114; localContext._undoFile = this.match(MySqlParser.STRING_LITERAL); - this.state = 1122; + this.state = 1120; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 428) { { - this.state = 1117; + this.state = 1115; this.match(MySqlParser.KW_INITIAL_SIZE); - this.state = 1119; + this.state = 1117; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1118; + this.state = 1116; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1121; + this.state = 1119; localContext._initSize = this.fileSizeLiteral(); } } - this.state = 1129; + this.state = 1127; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 672) { { - this.state = 1124; + this.state = 1122; this.match(MySqlParser.KW_UNDO_BUFFER_SIZE); - this.state = 1126; + this.state = 1124; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1125; + this.state = 1123; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1128; + this.state = 1126; localContext._undoSize = this.fileSizeLiteral(); } } - this.state = 1136; + this.state = 1134; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 553) { { - this.state = 1131; + this.state = 1129; this.match(MySqlParser.KW_REDO_BUFFER_SIZE); - this.state = 1133; + this.state = 1131; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1132; + this.state = 1130; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1135; + this.state = 1133; localContext._redoSize = this.fileSizeLiteral(); } } - this.state = 1143; + this.state = 1141; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 504) { { - this.state = 1138; + this.state = 1136; this.match(MySqlParser.KW_NODEGROUP); - this.state = 1140; + this.state = 1138; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1139; + this.state = 1137; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1142; + this.state = 1140; localContext._nodeGroup = this.uid(); } } - this.state = 1146; + this.state = 1144; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 687) { { - this.state = 1145; + this.state = 1143; this.match(MySqlParser.KW_WAIT); } } - this.state = 1153; + this.state = 1151; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 340) { { - this.state = 1148; + this.state = 1146; this.match(MySqlParser.KW_COMMENT); - this.state = 1150; + this.state = 1148; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1149; + this.state = 1147; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1152; + this.state = 1150; localContext._comment = this.match(MySqlParser.STRING_LITERAL); } } - this.state = 1155; + this.state = 1153; this.match(MySqlParser.KW_ENGINE); - this.state = 1157; + this.state = 1155; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1156; + this.state = 1154; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1159; + this.state = 1157; this.engineName(); } } @@ -3728,79 +3726,79 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1161; + this.state = 1159; this.match(MySqlParser.KW_CREATE); - this.state = 1163; + this.state = 1161; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 364) { { - this.state = 1162; + this.state = 1160; this.ownerStatement(); } } - this.state = 1165; + this.state = 1163; this.match(MySqlParser.KW_PROCEDURE); - this.state = 1167; + this.state = 1165; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 41, this.context) ) { case 1: { - this.state = 1166; + this.state = 1164; this.ifNotExists(); } break; } - this.state = 1169; + this.state = 1167; localContext._sp_name = this.fullId(); - this.state = 1170; + this.state = 1168; this.match(MySqlParser.LR_BRACKET); - this.state = 1172; + this.state = 1170; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18880593) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100680481) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 1171; + this.state = 1169; this.procedureParameter(); } } - this.state = 1178; + this.state = 1176; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 1174; + this.state = 1172; this.match(MySqlParser.COMMA); - this.state = 1175; + this.state = 1173; this.procedureParameter(); } } - this.state = 1180; + this.state = 1178; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1181; + this.state = 1179; this.match(MySqlParser.RR_BRACKET); - this.state = 1185; + this.state = 1183; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 44, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1182; + this.state = 1180; this.routineOption(); } } } - this.state = 1187; + this.state = 1185; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 44, this.context); } - this.state = 1188; + this.state = 1186; this.routineBody(); } } @@ -3826,93 +3824,93 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1190; + this.state = 1188; this.match(MySqlParser.KW_CREATE); - this.state = 1192; + this.state = 1190; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 364) { { - this.state = 1191; + this.state = 1189; this.ownerStatement(); } } - this.state = 1195; + this.state = 1193; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 307) { { - this.state = 1194; + this.state = 1192; this.match(MySqlParser.KW_AGGREGATE); } } - this.state = 1197; + this.state = 1195; this.match(MySqlParser.KW_FUNCTION); - this.state = 1199; + this.state = 1197; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 47, this.context) ) { case 1: { - this.state = 1198; + this.state = 1196; this.ifNotExists(); } break; } - this.state = 1201; + this.state = 1199; this.functionNameCreate(); - this.state = 1202; + this.state = 1200; this.match(MySqlParser.LR_BRACKET); - this.state = 1204; + this.state = 1202; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 1203; + this.state = 1201; this.functionParameter(); } } - this.state = 1210; + this.state = 1208; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 1206; + this.state = 1204; this.match(MySqlParser.COMMA); - this.state = 1207; + this.state = 1205; this.functionParameter(); } } - this.state = 1212; + this.state = 1210; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1213; + this.state = 1211; this.match(MySqlParser.RR_BRACKET); - this.state = 1214; + this.state = 1212; this.match(MySqlParser.KW_RETURNS); - this.state = 1215; + this.state = 1213; this.dataType(); - this.state = 1219; + this.state = 1217; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 50, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1216; + this.state = 1214; this.routineOption(); } } } - this.state = 1221; + this.state = 1219; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 50, this.context); } - this.state = 1224; + this.state = 1222; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ALTER: @@ -4500,13 +4498,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 1222; + this.state = 1220; this.routineBody(); } break; case MySqlParser.KW_RETURN: { - this.state = 1223; + this.state = 1221; this.returnStatement(); } break; @@ -4536,35 +4534,35 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1226; + this.state = 1224; this.match(MySqlParser.KW_CREATE); - this.state = 1228; + this.state = 1226; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 307) { { - this.state = 1227; + this.state = 1225; this.match(MySqlParser.KW_AGGREGATE); } } - this.state = 1230; + this.state = 1228; this.match(MySqlParser.KW_FUNCTION); - this.state = 1232; + this.state = 1230; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 53, this.context) ) { case 1: { - this.state = 1231; + this.state = 1229; this.ifNotExists(); } break; } - this.state = 1234; + this.state = 1232; this.functionNameCreate(); - this.state = 1235; + this.state = 1233; this.match(MySqlParser.KW_RETURNS); - this.state = 1236; + this.state = 1234; localContext._returnType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 208)) & ~0x1F) === 0 && ((1 << (_la - 208)) & 261) !== 0) || _la === 649)) { @@ -4574,9 +4572,9 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1237; + this.state = 1235; this.match(MySqlParser.KW_SONAME); - this.state = 1238; + this.state = 1236; this.match(MySqlParser.STRING_LITERAL); } } @@ -4600,21 +4598,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1240; + this.state = 1238; this.match(MySqlParser.KW_CREATE); - this.state = 1241; + this.state = 1239; this.match(MySqlParser.KW_ROLE); - this.state = 1243; + this.state = 1241; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 54, this.context) ) { case 1: { - this.state = 1242; + this.state = 1240; this.ifNotExists(); } break; } - this.state = 1245; + this.state = 1243; this.userOrRoleNames(); } } @@ -4639,19 +4637,19 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1247; + this.state = 1245; this.match(MySqlParser.KW_CREATE); - this.state = 1248; + this.state = 1246; this.match(MySqlParser.KW_SERVER); - this.state = 1249; + this.state = 1247; localContext._servername = this.uid(); - this.state = 1250; + this.state = 1248; this.match(MySqlParser.KW_FOREIGN); - this.state = 1251; + this.state = 1249; this.match(MySqlParser.KW_DATA); - this.state = 1252; + this.state = 1250; this.match(MySqlParser.KW_WRAPPER); - this.state = 1253; + this.state = 1251; localContext._wrapperName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 494 || _la === 882)) { @@ -4661,29 +4659,29 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1254; + this.state = 1252; this.match(MySqlParser.KW_OPTIONS); - this.state = 1255; + this.state = 1253; this.match(MySqlParser.LR_BRACKET); - this.state = 1256; + this.state = 1254; this.serverOption(); - this.state = 1261; + this.state = 1259; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 1257; + this.state = 1255; this.match(MySqlParser.COMMA); - this.state = 1258; + this.state = 1256; this.serverOption(); } } - this.state = 1263; + this.state = 1261; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1264; + this.state = 1262; this.match(MySqlParser.RR_BRACKET); } } @@ -4707,99 +4705,99 @@ export class MySqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 1344; + this.state = 1342; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 74, this.context) ) { case 1: localContext = new QueryCreateTableContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1266; + this.state = 1264; this.match(MySqlParser.KW_CREATE); - this.state = 1268; + this.state = 1266; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 660) { { - this.state = 1267; + this.state = 1265; this.match(MySqlParser.KW_TEMPORARY); } } - this.state = 1270; + this.state = 1268; this.match(MySqlParser.KW_TABLE); - this.state = 1272; + this.state = 1270; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 57, this.context) ) { case 1: { - this.state = 1271; + this.state = 1269; this.ifNotExists(); } break; } - this.state = 1274; + this.state = 1272; (localContext as QueryCreateTableContext)._tb = this.tableNameCreate(); - this.state = 1276; + this.state = 1274; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 58, this.context) ) { case 1: { - this.state = 1275; + this.state = 1273; (localContext as QueryCreateTableContext)._col = this.createDefinitions(); } break; } - this.state = 1288; + this.state = 1286; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 26)) & ~0x1F) === 0 && ((1 << (_la - 26)) & 65541) !== 0) || _la === 82 || _la === 181 || _la === 224 || ((((_la - 314)) & ~0x1F) === 0 && ((1 << (_la - 314)) & 67141639) !== 0) || ((((_la - 346)) & ~0x1F) === 0 && ((1 << (_la - 346)) & 3221766153) !== 0) || _la === 380 || _la === 431 || _la === 443 || _la === 480 || _la === 490 || ((((_la - 520)) & ~0x1F) === 0 && ((1 << (_la - 520)) & 541) !== 0) || _la === 588 || ((((_la - 640)) & ~0x1F) === 0 && ((1 << (_la - 640)) & 34341021) !== 0) || ((((_la - 823)) & ~0x1F) === 0 && ((1 << (_la - 823)) & 1029) !== 0) || _la === 882) { { - this.state = 1278; + this.state = 1276; this.tableOption(); - this.state = 1285; + this.state = 1283; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (((((_la - 26)) & ~0x1F) === 0 && ((1 << (_la - 26)) & 65541) !== 0) || _la === 82 || _la === 181 || _la === 224 || ((((_la - 314)) & ~0x1F) === 0 && ((1 << (_la - 314)) & 67141639) !== 0) || ((((_la - 346)) & ~0x1F) === 0 && ((1 << (_la - 346)) & 3221766153) !== 0) || _la === 380 || _la === 431 || _la === 443 || _la === 480 || _la === 490 || ((((_la - 520)) & ~0x1F) === 0 && ((1 << (_la - 520)) & 541) !== 0) || _la === 588 || ((((_la - 640)) & ~0x1F) === 0 && ((1 << (_la - 640)) & 34341021) !== 0) || ((((_la - 823)) & ~0x1F) === 0 && ((1 << (_la - 823)) & 1029) !== 0) || _la === 868 || _la === 882) { { { - this.state = 1280; + this.state = 1278; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 1279; + this.state = 1277; this.match(MySqlParser.COMMA); } } - this.state = 1282; + this.state = 1280; this.tableOption(); } } - this.state = 1287; + this.state = 1285; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1291; + this.state = 1289; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130) { { - this.state = 1290; + this.state = 1288; this.partitionDefinitions(); } } - this.state = 1294; + this.state = 1292; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79 || _la === 143) { { - this.state = 1293; + this.state = 1291; _la = this.tokenStream.LA(1); if(!(_la === 79 || _la === 143)) { this.errorHandler.recoverInline(this); @@ -4811,17 +4809,17 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 1297; + this.state = 1295; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 1296; + this.state = 1294; this.match(MySqlParser.KW_AS); } } - this.state = 1299; + this.state = 1297; this.selectStatement(); } break; @@ -4829,52 +4827,52 @@ export class MySqlParser extends SQLParserBase { localContext = new CopyCreateTableContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1301; + this.state = 1299; this.match(MySqlParser.KW_CREATE); - this.state = 1303; + this.state = 1301; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 660) { { - this.state = 1302; + this.state = 1300; this.match(MySqlParser.KW_TEMPORARY); } } - this.state = 1305; + this.state = 1303; this.match(MySqlParser.KW_TABLE); - this.state = 1307; + this.state = 1305; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 66, this.context) ) { case 1: { - this.state = 1306; + this.state = 1304; this.ifNotExists(); } break; } - this.state = 1309; + this.state = 1307; this.tableNameCreate(); - this.state = 1317; + this.state = 1315; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_LIKE: { - this.state = 1310; + this.state = 1308; this.match(MySqlParser.KW_LIKE); - this.state = 1311; + this.state = 1309; this.tableName(); } break; case MySqlParser.LR_BRACKET: { - this.state = 1312; + this.state = 1310; this.match(MySqlParser.LR_BRACKET); - this.state = 1313; + this.state = 1311; this.match(MySqlParser.KW_LIKE); - this.state = 1314; + this.state = 1312; this.tableName(); - this.state = 1315; + this.state = 1313; this.match(MySqlParser.RR_BRACKET); } break; @@ -4887,76 +4885,76 @@ export class MySqlParser extends SQLParserBase { localContext = new ColumnCreateTableContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1319; + this.state = 1317; this.match(MySqlParser.KW_CREATE); - this.state = 1321; + this.state = 1319; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 660) { { - this.state = 1320; + this.state = 1318; this.match(MySqlParser.KW_TEMPORARY); } } - this.state = 1323; + this.state = 1321; this.match(MySqlParser.KW_TABLE); - this.state = 1325; + this.state = 1323; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 69, this.context) ) { case 1: { - this.state = 1324; + this.state = 1322; this.ifNotExists(); } break; } - this.state = 1327; + this.state = 1325; this.tableNameCreate(); - this.state = 1328; + this.state = 1326; this.createDefinitions(); - this.state = 1339; + this.state = 1337; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 72, this.context) ) { case 1: { - this.state = 1329; + this.state = 1327; this.tableOption(); - this.state = 1336; + this.state = 1334; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 71, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1331; + this.state = 1329; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 1330; + this.state = 1328; this.match(MySqlParser.COMMA); } } - this.state = 1333; + this.state = 1331; this.tableOption(); } } } - this.state = 1338; + this.state = 1336; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 71, this.context); } } break; } - this.state = 1342; + this.state = 1340; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130) { { - this.state = 1341; + this.state = 1339; this.partitionDefinitions(); } } @@ -4986,112 +4984,112 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1346; + this.state = 1344; this.match(MySqlParser.KW_CREATE); - this.state = 1348; + this.state = 1346; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 180) { { - this.state = 1347; + this.state = 1345; this.match(MySqlParser.KW_UNDO); } } - this.state = 1350; + this.state = 1348; this.match(MySqlParser.KW_TABLESPACE); - this.state = 1351; + this.state = 1349; this.tableSpaceNameCreate(); - this.state = 1355; + this.state = 1353; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 1352; + this.state = 1350; this.match(MySqlParser.KW_ADD); - this.state = 1353; + this.state = 1351; this.match(MySqlParser.KW_DATAFILE); - this.state = 1354; + this.state = 1352; localContext._datafile = this.match(MySqlParser.STRING_LITERAL); } } - this.state = 1362; + this.state = 1360; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 314) { { - this.state = 1357; + this.state = 1355; this.match(MySqlParser.KW_AUTOEXTEND_SIZE); - this.state = 1359; + this.state = 1357; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1358; + this.state = 1356; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1361; + this.state = 1359; localContext._autoExtendSize = this.fileSizeLiteral(); } } - this.state = 1367; + this.state = 1365; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 399) { { - this.state = 1364; + this.state = 1362; this.match(MySqlParser.KW_FILE_BLOCK_SIZE); - this.state = 1365; + this.state = 1363; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 1366; + this.state = 1364; localContext._fileBlockSize = this.fileSizeLiteral(); } } - this.state = 1374; + this.state = 1372; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 380) { { - this.state = 1369; + this.state = 1367; this.match(MySqlParser.KW_ENGINE); - this.state = 1371; + this.state = 1369; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1370; + this.state = 1368; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1373; + this.state = 1371; this.engineName(); } } - this.state = 1381; + this.state = 1379; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 825) { { - this.state = 1376; + this.state = 1374; this.match(MySqlParser.KW_ENGINE_ATTRIBUTE); - this.state = 1378; + this.state = 1376; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1377; + this.state = 1375; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1380; + this.state = 1378; this.match(MySqlParser.STRING_LITERAL); } } @@ -5119,191 +5117,191 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1383; + this.state = 1381; this.match(MySqlParser.KW_CREATE); - this.state = 1385; + this.state = 1383; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 180) { { - this.state = 1384; + this.state = 1382; this.match(MySqlParser.KW_UNDO); } } - this.state = 1387; + this.state = 1385; this.match(MySqlParser.KW_TABLESPACE); - this.state = 1388; + this.state = 1386; this.tableSpaceNameCreate(); - this.state = 1389; + this.state = 1387; this.match(MySqlParser.KW_ADD); - this.state = 1390; + this.state = 1388; this.match(MySqlParser.KW_DATAFILE); - this.state = 1391; + this.state = 1389; localContext._datafile = this.match(MySqlParser.STRING_LITERAL); - this.state = 1392; + this.state = 1390; this.match(MySqlParser.KW_USE); - this.state = 1393; + this.state = 1391; this.match(MySqlParser.KW_LOGFILE); - this.state = 1394; + this.state = 1392; this.match(MySqlParser.KW_GROUP); - this.state = 1395; + this.state = 1393; localContext._logFileGroupName = this.uid(); - this.state = 1401; + this.state = 1399; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 393) { { - this.state = 1396; + this.state = 1394; this.match(MySqlParser.KW_EXTENT_SIZE); - this.state = 1398; + this.state = 1396; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1397; + this.state = 1395; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1400; + this.state = 1398; localContext._extentSize = this.fileSizeLiteral(); } } - this.state = 1408; + this.state = 1406; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 428) { { - this.state = 1403; + this.state = 1401; this.match(MySqlParser.KW_INITIAL_SIZE); - this.state = 1405; + this.state = 1403; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1404; + this.state = 1402; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1407; + this.state = 1405; localContext._initialSize = this.fileSizeLiteral(); } } - this.state = 1415; + this.state = 1413; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 314) { { - this.state = 1410; + this.state = 1408; this.match(MySqlParser.KW_AUTOEXTEND_SIZE); - this.state = 1412; + this.state = 1410; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1411; + this.state = 1409; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1414; + this.state = 1412; localContext._autoExtendSize = this.fileSizeLiteral(); } } - this.state = 1422; + this.state = 1420; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 481) { { - this.state = 1417; + this.state = 1415; this.match(MySqlParser.KW_MAX_SIZE); - this.state = 1419; + this.state = 1417; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1418; + this.state = 1416; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1421; + this.state = 1419; localContext._maxSize = this.fileSizeLiteral(); } } - this.state = 1429; + this.state = 1427; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 504) { { - this.state = 1424; + this.state = 1422; this.match(MySqlParser.KW_NODEGROUP); - this.state = 1426; + this.state = 1424; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1425; + this.state = 1423; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1428; + this.state = 1426; localContext._nodeGroup = this.uid(); } } - this.state = 1432; + this.state = 1430; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 687) { { - this.state = 1431; + this.state = 1429; this.match(MySqlParser.KW_WAIT); } } - this.state = 1439; + this.state = 1437; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 340) { { - this.state = 1434; + this.state = 1432; this.match(MySqlParser.KW_COMMENT); - this.state = 1436; + this.state = 1434; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1435; + this.state = 1433; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1438; + this.state = 1436; localContext._comment = this.match(MySqlParser.STRING_LITERAL); } } - this.state = 1441; + this.state = 1439; this.match(MySqlParser.KW_ENGINE); - this.state = 1443; + this.state = 1441; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1442; + this.state = 1440; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1445; + this.state = 1443; this.engineName(); } } @@ -5328,43 +5326,43 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1447; + this.state = 1445; this.match(MySqlParser.KW_CREATE); - this.state = 1449; + this.state = 1447; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 364) { { - this.state = 1448; + this.state = 1446; this.ownerStatement(); } } - this.state = 1452; + this.state = 1450; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 1451; + this.state = 1449; this.ifNotExists(); } } - this.state = 1454; + this.state = 1452; this.match(MySqlParser.KW_TRIGGER); - this.state = 1456; + this.state = 1454; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 101, this.context) ) { case 1: { - this.state = 1455; + this.state = 1453; this.ifNotExists(); } break; } - this.state = 1458; + this.state = 1456; localContext._trigger_name = this.fullId(); - this.state = 1459; + this.state = 1457; localContext._triggerTime = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 16 || _la === 306)) { @@ -5374,7 +5372,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1460; + this.state = 1458; localContext._triggerEvent = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 44 || _la === 86 || _la === 185)) { @@ -5384,22 +5382,22 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1461; + this.state = 1459; this.match(MySqlParser.KW_ON); - this.state = 1462; + this.state = 1460; this.tableName(); - this.state = 1463; + this.state = 1461; this.match(MySqlParser.KW_FOR); - this.state = 1464; + this.state = 1462; this.match(MySqlParser.KW_EACH); - this.state = 1465; + this.state = 1463; this.match(MySqlParser.KW_ROW); - this.state = 1468; + this.state = 1466; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 102, this.context) ) { case 1: { - this.state = 1466; + this.state = 1464; localContext._triggerPlace = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 406 || _la === 538)) { @@ -5409,12 +5407,12 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1467; + this.state = 1465; localContext._other_trigger_name = this.fullId(); } break; } - this.state = 1470; + this.state = 1468; this.routineBody(); } } @@ -5438,19 +5436,19 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1472; + this.state = 1470; this.match(MySqlParser.KW_WITH); - this.state = 1474; + this.state = 1472; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 103, this.context) ) { case 1: { - this.state = 1473; + this.state = 1471; this.match(MySqlParser.KW_RECURSIVE); } break; } - this.state = 1476; + this.state = 1474; this.commonTableExpressions(); } } @@ -5475,54 +5473,54 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1478; + this.state = 1476; localContext._cteName = this.uid(); - this.state = 1490; + this.state = 1488; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 1479; + this.state = 1477; this.match(MySqlParser.LR_BRACKET); - this.state = 1480; + this.state = 1478; localContext._cteColumnName = this.uid(); - this.state = 1485; + this.state = 1483; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 1481; + this.state = 1479; this.match(MySqlParser.COMMA); - this.state = 1482; + this.state = 1480; localContext._cteColumnName = this.uid(); } } - this.state = 1487; + this.state = 1485; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1488; + this.state = 1486; this.match(MySqlParser.RR_BRACKET); } } - this.state = 1492; + this.state = 1490; this.match(MySqlParser.KW_AS); - this.state = 1493; + this.state = 1491; this.match(MySqlParser.LR_BRACKET); - this.state = 1494; + this.state = 1492; this.dmlStatement(); - this.state = 1495; + this.state = 1493; this.match(MySqlParser.RR_BRACKET); - this.state = 1498; + this.state = 1496; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 106, this.context) ) { case 1: { - this.state = 1496; + this.state = 1494; this.match(MySqlParser.COMMA); - this.state = 1497; + this.state = 1495; this.commonTableExpressions(); } break; @@ -5550,28 +5548,28 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1500; + this.state = 1498; this.match(MySqlParser.KW_CREATE); - this.state = 1502; + this.state = 1500; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 124) { { - this.state = 1501; + this.state = 1499; this.orReplace(); } } - this.state = 1507; + this.state = 1505; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 308) { { - this.state = 1504; + this.state = 1502; this.match(MySqlParser.KW_ALGORITHM); - this.state = 1505; + this.state = 1503; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 1506; + this.state = 1504; localContext._algType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 486 || _la === 661 || _la === 670)) { @@ -5584,26 +5582,26 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 1510; + this.state = 1508; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 364) { { - this.state = 1509; + this.state = 1507; this.ownerStatement(); } } - this.state = 1515; + this.state = 1513; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 162) { { - this.state = 1512; + this.state = 1510; this.match(MySqlParser.KW_SQL); - this.state = 1513; + this.state = 1511; this.match(MySqlParser.KW_SECURITY); - this.state = 1514; + this.state = 1512; localContext._secContext = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 364 || _la === 436)) { @@ -5616,92 +5614,92 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 1517; + this.state = 1515; this.match(MySqlParser.KW_VIEW); - this.state = 1518; + this.state = 1516; this.viewNameCreate(); - this.state = 1530; + this.state = 1528; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 1519; + this.state = 1517; this.match(MySqlParser.LR_BRACKET); - this.state = 1520; + this.state = 1518; this.columnNameCreate(); - this.state = 1525; + this.state = 1523; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 1521; + this.state = 1519; this.match(MySqlParser.COMMA); - this.state = 1522; + this.state = 1520; this.columnNameCreate(); } } - this.state = 1527; + this.state = 1525; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1528; + this.state = 1526; this.match(MySqlParser.RR_BRACKET); } } - this.state = 1532; + this.state = 1530; this.match(MySqlParser.KW_AS); - this.state = 1552; + this.state = 1550; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 117, this.context) ) { case 1: { - this.state = 1533; + this.state = 1531; this.match(MySqlParser.LR_BRACKET); - this.state = 1535; + this.state = 1533; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 194) { { - this.state = 1534; + this.state = 1532; this.withClause(); } } - this.state = 1537; + this.state = 1535; this.selectStatement(); - this.state = 1538; + this.state = 1536; this.match(MySqlParser.RR_BRACKET); } break; case 2: { - this.state = 1541; + this.state = 1539; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 194) { { - this.state = 1540; + this.state = 1538; this.withClause(); } } - this.state = 1543; + this.state = 1541; this.selectStatement(); - this.state = 1550; + this.state = 1548; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 116, this.context) ) { case 1: { - this.state = 1544; + this.state = 1542; this.match(MySqlParser.KW_WITH); - this.state = 1546; + this.state = 1544; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 325 || _la === 450) { { - this.state = 1545; + this.state = 1543; localContext._checkOption = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 325 || _la === 450)) { @@ -5714,9 +5712,9 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 1548; + this.state = 1546; this.match(MySqlParser.KW_CHECK); - this.state = 1549; + this.state = 1547; this.match(MySqlParser.KW_OPTION); } break; @@ -5745,35 +5743,35 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 56, MySqlParser.RULE_createDatabaseOption); let _la: number; try { - this.state = 1587; + this.state = 1585; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 126, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1555; + this.state = 1553; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 1554; + this.state = 1552; this.match(MySqlParser.KW_DEFAULT); } } - this.state = 1557; + this.state = 1555; this.charSet(); - this.state = 1559; + this.state = 1557; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1558; + this.state = 1556; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1563; + this.state = 1561; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_BINARY: @@ -5821,13 +5819,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.CHARSET_REVERSE_QOUTE_STRING: case MySqlParser.STRING_LITERAL: { - this.state = 1561; + this.state = 1559; this.charsetName(); } break; case MySqlParser.KW_DEFAULT: { - this.state = 1562; + this.state = 1560; this.match(MySqlParser.KW_DEFAULT); } break; @@ -5839,79 +5837,79 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1566; + this.state = 1564; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 1565; + this.state = 1563; this.match(MySqlParser.KW_DEFAULT); } } - this.state = 1568; + this.state = 1566; this.match(MySqlParser.KW_COLLATE); - this.state = 1570; + this.state = 1568; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1569; + this.state = 1567; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1572; + this.state = 1570; this.collationName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1574; + this.state = 1572; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 1573; + this.state = 1571; this.match(MySqlParser.KW_DEFAULT); } } - this.state = 1576; + this.state = 1574; this.match(MySqlParser.KW_ENCRYPTION); - this.state = 1578; + this.state = 1576; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1577; + this.state = 1575; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1580; + this.state = 1578; this.match(MySqlParser.STRING_LITERAL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1581; + this.state = 1579; this.match(MySqlParser.KW_READ); - this.state = 1582; + this.state = 1580; this.match(MySqlParser.KW_ONLY); - this.state = 1584; + this.state = 1582; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1583; + this.state = 1581; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1586; + this.state = 1584; _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 871 || _la === 872)) { this.errorHandler.recoverInline(this); @@ -5942,31 +5940,31 @@ export class MySqlParser extends SQLParserBase { let localContext = new CharSetContext(this.context, this.state); this.enterRule(localContext, 58, MySqlParser.RULE_charSet); try { - this.state = 1594; + this.state = 1592; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CHARACTER: this.enterOuterAlt(localContext, 1); { - this.state = 1589; + this.state = 1587; this.match(MySqlParser.KW_CHARACTER); - this.state = 1590; + this.state = 1588; this.match(MySqlParser.KW_SET); } break; case MySqlParser.KW_CHARSET: this.enterOuterAlt(localContext, 2); { - this.state = 1591; + this.state = 1589; this.match(MySqlParser.KW_CHARSET); } break; case MySqlParser.KW_CHAR: this.enterOuterAlt(localContext, 3); { - this.state = 1592; + this.state = 1590; this.match(MySqlParser.KW_CHAR); - this.state = 1593; + this.state = 1591; this.match(MySqlParser.KW_SET); } break; @@ -5995,7 +5993,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1596; + this.state = 1594; _la = this.tokenStream.LA(1); if(!(_la === 37 || _la === 678)) { this.errorHandler.recoverInline(this); @@ -6004,14 +6002,14 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1599; + this.state = 1597; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 128, this.context) ) { case 1: { - this.state = 1597; + this.state = 1595; this.match(MySqlParser.LR_BRACKET); - this.state = 1598; + this.state = 1596; this.match(MySqlParser.RR_BRACKET); } break; @@ -6038,22 +6036,22 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1601; + this.state = 1599; this.match(MySqlParser.KW_DEFINER); - this.state = 1602; + this.state = 1600; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 1605; + this.state = 1603; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 129, this.context) ) { case 1: { - this.state = 1603; + this.state = 1601; this.userName(); } break; case 2: { - this.state = 1604; + this.state = 1602; this.currentUserExpression(); } break; @@ -6079,28 +6077,28 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 64, MySqlParser.RULE_scheduleExpression); let _la: number; try { - this.state = 1641; + this.state = 1639; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_AT: localContext = new PreciseScheduleContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1607; + this.state = 1605; this.match(MySqlParser.KW_AT); - this.state = 1608; + this.state = 1606; this.timestampValue(); - this.state = 1612; + this.state = 1610; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 853) { { { - this.state = 1609; + this.state = 1607; this.intervalExpr(); } } - this.state = 1614; + this.state = 1612; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6110,74 +6108,74 @@ export class MySqlParser extends SQLParserBase { localContext = new IntervalScheduleContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1615; + this.state = 1613; this.match(MySqlParser.KW_EVERY); - this.state = 1618; + this.state = 1616; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 131, this.context) ) { case 1: { - this.state = 1616; + this.state = 1614; this.decimalLiteral(); } break; case 2: { - this.state = 1617; + this.state = 1615; this.expression(0); } break; } - this.state = 1620; + this.state = 1618; this.intervalType(); - this.state = 1629; + this.state = 1627; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 641) { { - this.state = 1621; + this.state = 1619; this.match(MySqlParser.KW_STARTS); - this.state = 1622; + this.state = 1620; (localContext as IntervalScheduleContext)._startTimestamp = this.timestampValue(); - this.state = 1626; + this.state = 1624; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 853) { { { - this.state = 1623; + this.state = 1621; (localContext as IntervalScheduleContext)._intervalExpr = this.intervalExpr(); (localContext as IntervalScheduleContext)._startIntervals.push((localContext as IntervalScheduleContext)._intervalExpr); } } - this.state = 1628; + this.state = 1626; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1639; + this.state = 1637; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 379) { { - this.state = 1631; + this.state = 1629; this.match(MySqlParser.KW_ENDS); - this.state = 1632; + this.state = 1630; (localContext as IntervalScheduleContext)._endTimestamp = this.timestampValue(); - this.state = 1636; + this.state = 1634; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 853) { { { - this.state = 1633; + this.state = 1631; (localContext as IntervalScheduleContext)._intervalExpr = this.intervalExpr(); (localContext as IntervalScheduleContext)._endIntervals.push((localContext as IntervalScheduleContext)._intervalExpr); } } - this.state = 1638; + this.state = 1636; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6208,34 +6206,34 @@ export class MySqlParser extends SQLParserBase { let localContext = new TimestampValueContext(this.context, this.state); this.enterRule(localContext, 66, MySqlParser.RULE_timestampValue); try { - this.state = 1647; + this.state = 1645; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 137, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1643; + this.state = 1641; this.match(MySqlParser.KW_CURRENT_TIMESTAMP); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1644; + this.state = 1642; this.stringLiteral(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1645; + this.state = 1643; this.decimalLiteral(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1646; + this.state = 1644; this.expression(0); } break; @@ -6261,27 +6259,27 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1649; + this.state = 1647; this.match(MySqlParser.PLUS); - this.state = 1650; + this.state = 1648; this.match(MySqlParser.KW_INTERVAL); - this.state = 1653; + this.state = 1651; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 138, this.context) ) { case 1: { - this.state = 1651; + this.state = 1649; this.decimalLiteral(); } break; case 2: { - this.state = 1652; + this.state = 1650; this.expression(0); } break; } - this.state = 1655; + this.state = 1653; this.intervalType(); } } @@ -6303,7 +6301,7 @@ export class MySqlParser extends SQLParserBase { let localContext = new IntervalTypeContext(this.context, this.state); this.enterRule(localContext, 70, MySqlParser.RULE_intervalType); try { - this.state = 1670; + this.state = 1668; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_QUARTER: @@ -6316,91 +6314,91 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_MICROSECOND: this.enterOuterAlt(localContext, 1); { - this.state = 1657; + this.state = 1655; this.intervalTypeBase(); } break; case MySqlParser.KW_YEAR: this.enterOuterAlt(localContext, 2); { - this.state = 1658; + this.state = 1656; this.match(MySqlParser.KW_YEAR); } break; case MySqlParser.KW_YEAR_MONTH: this.enterOuterAlt(localContext, 3); { - this.state = 1659; + this.state = 1657; this.match(MySqlParser.KW_YEAR_MONTH); } break; case MySqlParser.KW_DAY_HOUR: this.enterOuterAlt(localContext, 4); { - this.state = 1660; + this.state = 1658; this.match(MySqlParser.KW_DAY_HOUR); } break; case MySqlParser.KW_DAY_MINUTE: this.enterOuterAlt(localContext, 5); { - this.state = 1661; + this.state = 1659; this.match(MySqlParser.KW_DAY_MINUTE); } break; case MySqlParser.KW_DAY_SECOND: this.enterOuterAlt(localContext, 6); { - this.state = 1662; + this.state = 1660; this.match(MySqlParser.KW_DAY_SECOND); } break; case MySqlParser.KW_HOUR_MINUTE: this.enterOuterAlt(localContext, 7); { - this.state = 1663; + this.state = 1661; this.match(MySqlParser.KW_HOUR_MINUTE); } break; case MySqlParser.KW_HOUR_SECOND: this.enterOuterAlt(localContext, 8); { - this.state = 1664; + this.state = 1662; this.match(MySqlParser.KW_HOUR_SECOND); } break; case MySqlParser.KW_MINUTE_SECOND: this.enterOuterAlt(localContext, 9); { - this.state = 1665; + this.state = 1663; this.match(MySqlParser.KW_MINUTE_SECOND); } break; case MySqlParser.KW_SECOND_MICROSECOND: this.enterOuterAlt(localContext, 10); { - this.state = 1666; + this.state = 1664; this.match(MySqlParser.KW_SECOND_MICROSECOND); } break; case MySqlParser.KW_MINUTE_MICROSECOND: this.enterOuterAlt(localContext, 11); { - this.state = 1667; + this.state = 1665; this.match(MySqlParser.KW_MINUTE_MICROSECOND); } break; case MySqlParser.KW_HOUR_MICROSECOND: this.enterOuterAlt(localContext, 12); { - this.state = 1668; + this.state = 1666; this.match(MySqlParser.KW_HOUR_MICROSECOND); } break; case MySqlParser.KW_DAY_MICROSECOND: this.enterOuterAlt(localContext, 13); { - this.state = 1669; + this.state = 1667; this.match(MySqlParser.KW_DAY_MICROSECOND); } break; @@ -6426,31 +6424,31 @@ export class MySqlParser extends SQLParserBase { let localContext = new EnableTypeContext(this.context, this.state); this.enterRule(localContext, 72, MySqlParser.RULE_enableType); try { - this.state = 1677; + this.state = 1675; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 140, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1672; + this.state = 1670; this.match(MySqlParser.KW_ENABLE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1673; + this.state = 1671; this.match(MySqlParser.KW_DISABLE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1674; + this.state = 1672; this.match(MySqlParser.KW_DISABLE); - this.state = 1675; + this.state = 1673; this.match(MySqlParser.KW_ON); - this.state = 1676; + this.state = 1674; this.match(MySqlParser.KW_SLAVE); } break; @@ -6477,9 +6475,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1679; + this.state = 1677; this.match(MySqlParser.KW_USING); - this.state = 1680; + this.state = 1678; _la = this.tokenStream.LA(1); if(!(_la === 323 || _la === 418)) { this.errorHandler.recoverInline(this); @@ -6509,52 +6507,52 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 76, MySqlParser.RULE_indexOption); let _la: number; try { - this.state = 1704; + this.state = 1702; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_KEY_BLOCK_SIZE: this.enterOuterAlt(localContext, 1); { - this.state = 1682; + this.state = 1680; this.match(MySqlParser.KW_KEY_BLOCK_SIZE); - this.state = 1684; + this.state = 1682; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1683; + this.state = 1681; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1686; + this.state = 1684; this.fileSizeLiteral(); } break; case MySqlParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 1687; + this.state = 1685; this.indexType(); } break; case MySqlParser.KW_WITH: this.enterOuterAlt(localContext, 3); { - this.state = 1688; + this.state = 1686; this.match(MySqlParser.KW_WITH); - this.state = 1689; + this.state = 1687; this.match(MySqlParser.KW_PARSER); - this.state = 1690; + this.state = 1688; localContext._parserName = this.uid(); } break; case MySqlParser.KW_COMMENT: this.enterOuterAlt(localContext, 4); { - this.state = 1691; + this.state = 1689; this.match(MySqlParser.KW_COMMENT); - this.state = 1692; + this.state = 1690; this.match(MySqlParser.STRING_LITERAL); } break; @@ -6562,7 +6560,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_VISIBLE: this.enterOuterAlt(localContext, 5); { - this.state = 1693; + this.state = 1691; _la = this.tokenStream.LA(1); if(!(_la === 435 || _la === 686)) { this.errorHandler.recoverInline(this); @@ -6576,38 +6574,38 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_ENGINE_ATTRIBUTE: this.enterOuterAlt(localContext, 6); { - this.state = 1694; + this.state = 1692; this.match(MySqlParser.KW_ENGINE_ATTRIBUTE); - this.state = 1696; + this.state = 1694; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1695; + this.state = 1693; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1698; + this.state = 1696; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_SECONDARY_ENGINE_ATTRIBUTE: this.enterOuterAlt(localContext, 7); { - this.state = 1699; + this.state = 1697; this.match(MySqlParser.KW_SECONDARY_ENGINE_ATTRIBUTE); - this.state = 1701; + this.state = 1699; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1700; + this.state = 1698; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1703; + this.state = 1701; this.match(MySqlParser.STRING_LITERAL); } break; @@ -6636,12 +6634,12 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1707; + this.state = 1705; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80 || _la === 85 || _la === 126) { { - this.state = 1706; + this.state = 1704; localContext._direction = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 80 || _la === 85 || _la === 126)) { @@ -6654,9 +6652,9 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 1709; + this.state = 1707; localContext._paramName = this.uid(); - this.state = 1710; + this.state = 1708; this.dataType(); } } @@ -6680,9 +6678,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1712; + this.state = 1710; localContext._paramName = this.uid(); - this.state = 1713; + this.state = 1711; this.dataType(); } } @@ -6705,16 +6703,16 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 82, MySqlParser.RULE_routineOption); let _la: number; try { - this.state = 1738; + this.state = 1736; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_COMMENT: localContext = new RoutineCommentContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1715; + this.state = 1713; this.match(MySqlParser.KW_COMMENT); - this.state = 1716; + this.state = 1714; (localContext as RoutineCommentContext)._comment = this.match(MySqlParser.STRING_LITERAL); } break; @@ -6722,9 +6720,9 @@ export class MySqlParser extends SQLParserBase { localContext = new RoutineLanguageContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1717; + this.state = 1715; this.match(MySqlParser.KW_LANGUAGE); - this.state = 1718; + this.state = 1716; this.match(MySqlParser.KW_SQL); } break; @@ -6733,17 +6731,17 @@ export class MySqlParser extends SQLParserBase { localContext = new RoutineBehaviorContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1720; + this.state = 1718; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 1719; + this.state = 1717; this.match(MySqlParser.KW_NOT); } } - this.state = 1722; + this.state = 1720; this.match(MySqlParser.KW_DETERMINISTIC); } break; @@ -6754,42 +6752,42 @@ export class MySqlParser extends SQLParserBase { localContext = new RoutineDataContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1733; + this.state = 1731; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CONTAINS: { - this.state = 1723; + this.state = 1721; this.match(MySqlParser.KW_CONTAINS); - this.state = 1724; + this.state = 1722; this.match(MySqlParser.KW_SQL); } break; case MySqlParser.KW_NO: { - this.state = 1725; + this.state = 1723; this.match(MySqlParser.KW_NO); - this.state = 1726; + this.state = 1724; this.match(MySqlParser.KW_SQL); } break; case MySqlParser.KW_READS: { - this.state = 1727; + this.state = 1725; this.match(MySqlParser.KW_READS); - this.state = 1728; + this.state = 1726; this.match(MySqlParser.KW_SQL); - this.state = 1729; + this.state = 1727; this.match(MySqlParser.KW_DATA); } break; case MySqlParser.KW_MODIFIES: { - this.state = 1730; + this.state = 1728; this.match(MySqlParser.KW_MODIFIES); - this.state = 1731; + this.state = 1729; this.match(MySqlParser.KW_SQL); - this.state = 1732; + this.state = 1730; this.match(MySqlParser.KW_DATA); } break; @@ -6802,11 +6800,11 @@ export class MySqlParser extends SQLParserBase { localContext = new RoutineSecurityContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 1735; + this.state = 1733; this.match(MySqlParser.KW_SQL); - this.state = 1736; + this.state = 1734; this.match(MySqlParser.KW_SECURITY); - this.state = 1737; + this.state = 1735; (localContext as RoutineSecurityContext)._context = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 364 || _la === 436)) { @@ -6840,69 +6838,69 @@ export class MySqlParser extends SQLParserBase { let localContext = new ServerOptionContext(this.context, this.state); this.enterRule(localContext, 84, MySqlParser.RULE_serverOption); try { - this.state = 1754; + this.state = 1752; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_HOST: this.enterOuterAlt(localContext, 1); { - this.state = 1740; + this.state = 1738; this.match(MySqlParser.KW_HOST); - this.state = 1741; + this.state = 1739; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_DATABASE: this.enterOuterAlt(localContext, 2); { - this.state = 1742; + this.state = 1740; this.match(MySqlParser.KW_DATABASE); - this.state = 1743; + this.state = 1741; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_USER: this.enterOuterAlt(localContext, 3); { - this.state = 1744; + this.state = 1742; this.match(MySqlParser.KW_USER); - this.state = 1745; + this.state = 1743; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_PASSWORD: this.enterOuterAlt(localContext, 4); { - this.state = 1746; + this.state = 1744; this.match(MySqlParser.KW_PASSWORD); - this.state = 1747; + this.state = 1745; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_SOCKET: this.enterOuterAlt(localContext, 5); { - this.state = 1748; + this.state = 1746; this.match(MySqlParser.KW_SOCKET); - this.state = 1749; + this.state = 1747; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_OWNER: this.enterOuterAlt(localContext, 6); { - this.state = 1750; + this.state = 1748; this.match(MySqlParser.KW_OWNER); - this.state = 1751; + this.state = 1749; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_PORT: this.enterOuterAlt(localContext, 7); { - this.state = 1752; + this.state = 1750; this.match(MySqlParser.KW_PORT); - this.state = 1753; + this.state = 1751; this.decimalLiteral(); } break; @@ -6931,27 +6929,27 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1756; + this.state = 1754; this.match(MySqlParser.LR_BRACKET); - this.state = 1757; + this.state = 1755; this.createDefinition(); - this.state = 1762; + this.state = 1760; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 1758; + this.state = 1756; this.match(MySqlParser.COMMA); - this.state = 1759; + this.state = 1757; this.createDefinition(); } } - this.state = 1764; + this.state = 1762; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1765; + this.state = 1763; this.match(MySqlParser.RR_BRACKET); } } @@ -6974,22 +6972,22 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 88, MySqlParser.RULE_createDefinition); let _la: number; try { - this.state = 1850; + this.state = 1848; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 167, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1767; + this.state = 1765; this.columnNameCreate(); - this.state = 1768; + this.state = 1766; this.columnDefinition(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1770; + this.state = 1768; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { this.errorHandler.recoverInline(this); @@ -6998,39 +6996,39 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1772; + this.state = 1770; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 1771; + this.state = 1769; this.indexName(); } } - this.state = 1775; + this.state = 1773; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 1774; + this.state = 1772; this.indexType(); } } - this.state = 1777; + this.state = 1775; this.indexColumnNames(); - this.state = 1781; + this.state = 1779; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 188 || _la === 194 || _la === 340 || _la === 435 || _la === 443 || _la === 686 || _la === 825 || _la === 833) { { { - this.state = 1778; + this.state = 1776; this.indexOption(); } } - this.state = 1783; + this.state = 1781; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7039,7 +7037,7 @@ export class MySqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1784; + this.state = 1782; _la = this.tokenStream.LA(1); if(!(_la === 69 || _la === 161)) { this.errorHandler.recoverInline(this); @@ -7048,12 +7046,12 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1786; + this.state = 1784; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82 || _la === 92) { { - this.state = 1785; + this.state = 1783; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { this.errorHandler.recoverInline(this); @@ -7065,29 +7063,29 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 1789; + this.state = 1787; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 1788; + this.state = 1786; this.indexName(); } } - this.state = 1791; + this.state = 1789; this.indexColumnNames(); - this.state = 1795; + this.state = 1793; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 188 || _la === 194 || _la === 340 || _la === 435 || _la === 443 || _la === 686 || _la === 825 || _la === 833) { { { - this.state = 1792; + this.state = 1790; this.indexOption(); } } - this.state = 1797; + this.state = 1795; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7096,43 +7094,43 @@ export class MySqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1799; + this.state = 1797; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 1798; + this.state = 1796; this.constraintSymbol(); } } - this.state = 1801; + this.state = 1799; this.match(MySqlParser.KW_PRIMARY); - this.state = 1802; + this.state = 1800; this.match(MySqlParser.KW_KEY); - this.state = 1804; + this.state = 1802; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 1803; + this.state = 1801; this.indexType(); } } - this.state = 1806; + this.state = 1804; this.indexColumnNames(); - this.state = 1810; + this.state = 1808; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 188 || _la === 194 || _la === 340 || _la === 435 || _la === 443 || _la === 686 || _la === 825 || _la === 833) { { { - this.state = 1807; + this.state = 1805; this.indexOption(); } } - this.state = 1812; + this.state = 1810; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7141,24 +7139,24 @@ export class MySqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1814; + this.state = 1812; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 1813; + this.state = 1811; this.constraintSymbol(); } } - this.state = 1816; + this.state = 1814; this.match(MySqlParser.KW_UNIQUE); - this.state = 1818; + this.state = 1816; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82 || _la === 92) { { - this.state = 1817; + this.state = 1815; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { this.errorHandler.recoverInline(this); @@ -7170,39 +7168,39 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 1821; + this.state = 1819; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 1820; + this.state = 1818; this.indexName(); } } - this.state = 1824; + this.state = 1822; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 1823; + this.state = 1821; this.indexType(); } } - this.state = 1826; + this.state = 1824; this.indexColumnNames(); - this.state = 1830; + this.state = 1828; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 188 || _la === 194 || _la === 340 || _la === 435 || _la === 443 || _la === 686 || _la === 825 || _la === 833) { { { - this.state = 1827; + this.state = 1825; this.indexOption(); } } - this.state = 1832; + this.state = 1830; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7211,53 +7209,53 @@ export class MySqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1834; + this.state = 1832; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 1833; + this.state = 1831; this.constraintSymbol(); } } - this.state = 1836; + this.state = 1834; this.match(MySqlParser.KW_FOREIGN); - this.state = 1837; + this.state = 1835; this.match(MySqlParser.KW_KEY); - this.state = 1839; + this.state = 1837; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 1838; + this.state = 1836; this.indexName(); } } - this.state = 1841; + this.state = 1839; this.indexColumnNames(); - this.state = 1842; + this.state = 1840; this.referenceDefinition(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1844; + this.state = 1842; this.match(MySqlParser.KW_CHECK); - this.state = 1845; + this.state = 1843; this.match(MySqlParser.LR_BRACKET); - this.state = 1846; + this.state = 1844; this.expression(0); - this.state = 1847; + this.state = 1845; this.match(MySqlParser.RR_BRACKET); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1849; + this.state = 1847; this.checkConstraintDefinition(); } break; @@ -7284,40 +7282,40 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1853; + this.state = 1851; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 1852; + this.state = 1850; this.constraintSymbol(); } } - this.state = 1855; + this.state = 1853; this.match(MySqlParser.KW_CHECK); - this.state = 1856; + this.state = 1854; this.match(MySqlParser.LR_BRACKET); - this.state = 1857; + this.state = 1855; this.expression(0); - this.state = 1858; + this.state = 1856; this.match(MySqlParser.RR_BRACKET); - this.state = 1863; + this.state = 1861; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 170, this.context) ) { case 1: { - this.state = 1860; + this.state = 1858; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 1859; + this.state = 1857; this.match(MySqlParser.KW_NOT); } } - this.state = 1862; + this.state = 1860; this.match(MySqlParser.KW_ENFORCED); } break; @@ -7344,14 +7342,14 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1865; + this.state = 1863; this.match(MySqlParser.KW_CONSTRAINT); - this.state = 1867; + this.state = 1865; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 171, this.context) ) { case 1: { - this.state = 1866; + this.state = 1864; localContext._symbol_ = this.uid(); } break; @@ -7379,21 +7377,21 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1869; + this.state = 1867; localContext._colType = this.dataType(); - this.state = 1873; + this.state = 1871; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 172, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1870; + this.state = 1868; this.columnConstraint(); } } } - this.state = 1875; + this.state = 1873; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 172, this.context); } @@ -7418,7 +7416,7 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 96, MySqlParser.RULE_columnConstraint); let _la: number; try { - this.state = 1919; + this.state = 1917; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_NOT: @@ -7427,7 +7425,7 @@ export class MySqlParser extends SQLParserBase { localContext = new NullColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1876; + this.state = 1874; this.nullNotNull(); } break; @@ -7435,9 +7433,9 @@ export class MySqlParser extends SQLParserBase { localContext = new DefaultColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1877; + this.state = 1875; this.match(MySqlParser.KW_DEFAULT); - this.state = 1878; + this.state = 1876; this.defaultValue(); } break; @@ -7445,7 +7443,7 @@ export class MySqlParser extends SQLParserBase { localContext = new VisibilityColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1879; + this.state = 1877; this.match(MySqlParser.KW_VISIBLE); } break; @@ -7453,7 +7451,7 @@ export class MySqlParser extends SQLParserBase { localContext = new InvisibilityColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1880; + this.state = 1878; this.match(MySqlParser.KW_INVISIBLE); } break; @@ -7462,22 +7460,22 @@ export class MySqlParser extends SQLParserBase { localContext = new AutoIncrementColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 1885; + this.state = 1883; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_AUTO_INCREMENT: { - this.state = 1881; + this.state = 1879; this.match(MySqlParser.KW_AUTO_INCREMENT); } break; case MySqlParser.KW_ON: { - this.state = 1882; + this.state = 1880; this.match(MySqlParser.KW_ON); - this.state = 1883; + this.state = 1881; this.match(MySqlParser.KW_UPDATE); - this.state = 1884; + this.state = 1882; this.currentTimestamp(); } break; @@ -7491,17 +7489,17 @@ export class MySqlParser extends SQLParserBase { localContext = new PrimaryKeyColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 1888; + this.state = 1886; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 131) { { - this.state = 1887; + this.state = 1885; this.match(MySqlParser.KW_PRIMARY); } } - this.state = 1890; + this.state = 1888; this.match(MySqlParser.KW_KEY); } break; @@ -7509,14 +7507,14 @@ export class MySqlParser extends SQLParserBase { localContext = new UniqueKeyColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 1891; + this.state = 1889; this.match(MySqlParser.KW_UNIQUE); - this.state = 1893; + this.state = 1891; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 175, this.context) ) { case 1: { - this.state = 1892; + this.state = 1890; this.match(MySqlParser.KW_KEY); } break; @@ -7527,9 +7525,9 @@ export class MySqlParser extends SQLParserBase { localContext = new CommentColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 1895; + this.state = 1893; this.match(MySqlParser.KW_COMMENT); - this.state = 1896; + this.state = 1894; (localContext as CommentColumnConstraintContext)._comment = this.match(MySqlParser.STRING_LITERAL); } break; @@ -7537,9 +7535,9 @@ export class MySqlParser extends SQLParserBase { localContext = new FormatColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 1897; + this.state = 1895; this.match(MySqlParser.KW_COLUMN_FORMAT); - this.state = 1898; + this.state = 1896; (localContext as FormatColumnConstraintContext)._colformat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 374 || _la === 403)) { @@ -7555,9 +7553,9 @@ export class MySqlParser extends SQLParserBase { localContext = new StorageColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 1899; + this.state = 1897; this.match(MySqlParser.KW_STORAGE); - this.state = 1900; + this.state = 1898; (localContext as StorageColumnConstraintContext)._storageval = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 370 || _la === 802)) { @@ -7573,7 +7571,7 @@ export class MySqlParser extends SQLParserBase { localContext = new ReferenceColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 1901; + this.state = 1899; this.referenceDefinition(); } break; @@ -7581,9 +7579,9 @@ export class MySqlParser extends SQLParserBase { localContext = new CollateColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 1902; + this.state = 1900; this.match(MySqlParser.KW_COLLATE); - this.state = 1903; + this.state = 1901; this.collationName(); } break; @@ -7592,32 +7590,32 @@ export class MySqlParser extends SQLParserBase { localContext = new GeneratedColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 1906; + this.state = 1904; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 71) { { - this.state = 1904; + this.state = 1902; this.match(MySqlParser.KW_GENERATED); - this.state = 1905; + this.state = 1903; this.match(MySqlParser.KW_ALWAYS); } } - this.state = 1908; + this.state = 1906; this.match(MySqlParser.KW_AS); - this.state = 1909; + this.state = 1907; this.match(MySqlParser.LR_BRACKET); - this.state = 1910; + this.state = 1908; this.expression(0); - this.state = 1911; + this.state = 1909; this.match(MySqlParser.RR_BRACKET); - this.state = 1913; + this.state = 1911; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 648 || _la === 685) { { - this.state = 1912; + this.state = 1910; _la = this.tokenStream.LA(1); if(!(_la === 648 || _la === 685)) { this.errorHandler.recoverInline(this); @@ -7635,11 +7633,11 @@ export class MySqlParser extends SQLParserBase { localContext = new SerialDefaultColumnConstraintContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 1915; + this.state = 1913; this.match(MySqlParser.KW_SERIAL); - this.state = 1916; + this.state = 1914; this.match(MySqlParser.KW_DEFAULT); - this.state = 1917; + this.state = 1915; this.match(MySqlParser.KW_VALUE); } break; @@ -7648,7 +7646,7 @@ export class MySqlParser extends SQLParserBase { localContext = new CheckExprContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 1918; + this.state = 1916; this.checkConstraintDefinition(); } break; @@ -7677,28 +7675,28 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1921; + this.state = 1919; this.match(MySqlParser.KW_REFERENCES); - this.state = 1922; + this.state = 1920; this.tableName(); - this.state = 1924; + this.state = 1922; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 179, this.context) ) { case 1: { - this.state = 1923; + this.state = 1921; this.indexColumnNames(); } break; } - this.state = 1928; + this.state = 1926; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 110) { { - this.state = 1926; + this.state = 1924; this.match(MySqlParser.KW_MATCH); - this.state = 1927; + this.state = 1925; localContext._matchType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 408 || _la === 526 || _la === 597)) { @@ -7711,12 +7709,12 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 1931; + this.state = 1929; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 181, this.context) ) { case 1: { - this.state = 1930; + this.state = 1928; this.referenceAction(); } break; @@ -7741,28 +7739,28 @@ export class MySqlParser extends SQLParserBase { let localContext = new ReferenceActionContext(this.context, this.state); this.enterRule(localContext, 100, MySqlParser.RULE_referenceAction); try { - this.state = 1949; + this.state = 1947; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 184, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1933; + this.state = 1931; this.match(MySqlParser.KW_ON); - this.state = 1934; + this.state = 1932; this.match(MySqlParser.KW_DELETE); - this.state = 1935; + this.state = 1933; localContext._onDelete = this.referenceControlType(); - this.state = 1939; + this.state = 1937; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 182, this.context) ) { case 1: { - this.state = 1936; + this.state = 1934; this.match(MySqlParser.KW_ON); - this.state = 1937; + this.state = 1935; this.match(MySqlParser.KW_UPDATE); - this.state = 1938; + this.state = 1936; localContext._onUpdate = this.referenceControlType(); } break; @@ -7772,22 +7770,22 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1941; + this.state = 1939; this.match(MySqlParser.KW_ON); - this.state = 1942; + this.state = 1940; this.match(MySqlParser.KW_UPDATE); - this.state = 1943; + this.state = 1941; localContext._onUpdate = this.referenceControlType(); - this.state = 1947; + this.state = 1945; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 183, this.context) ) { case 1: { - this.state = 1944; + this.state = 1942; this.match(MySqlParser.KW_ON); - this.state = 1945; + this.state = 1943; this.match(MySqlParser.KW_DELETE); - this.state = 1946; + this.state = 1944; localContext._onDelete = this.referenceControlType(); } break; @@ -7814,47 +7812,47 @@ export class MySqlParser extends SQLParserBase { let localContext = new ReferenceControlTypeContext(this.context, this.state); this.enterRule(localContext, 102, MySqlParser.RULE_referenceControlType); try { - this.state = 1959; + this.state = 1957; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 185, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1951; + this.state = 1949; this.match(MySqlParser.KW_RESTRICT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1952; + this.state = 1950; this.match(MySqlParser.KW_CASCADE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1953; + this.state = 1951; this.match(MySqlParser.KW_SET); - this.state = 1954; + this.state = 1952; this.match(MySqlParser.KW_NULL_LITERAL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1955; + this.state = 1953; this.match(MySqlParser.KW_NO); - this.state = 1956; + this.state = 1954; this.match(MySqlParser.KW_ACTION); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1957; + this.state = 1955; this.match(MySqlParser.KW_SET); - this.state = 1958; + this.state = 1956; this.match(MySqlParser.KW_DEFAULT); } break; @@ -7879,31 +7877,31 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 104, MySqlParser.RULE_tableOption); let _la: number; try { - this.state = 2146; + this.state = 2144; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 223, this.context) ) { case 1: localContext = new TableOptionEngineContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1961; + this.state = 1959; this.match(MySqlParser.KW_ENGINE); - this.state = 1963; + this.state = 1961; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1962; + this.state = 1960; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1966; + this.state = 1964; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 187, this.context) ) { case 1: { - this.state = 1965; + this.state = 1963; this.engineName(); } break; @@ -7914,19 +7912,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionEngineAttributeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1968; + this.state = 1966; this.match(MySqlParser.KW_ENGINE_ATTRIBUTE); - this.state = 1970; + this.state = 1968; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1969; + this.state = 1967; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1972; + this.state = 1970; this.match(MySqlParser.STRING_LITERAL); } break; @@ -7934,19 +7932,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionAutoExtendSizeContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1973; + this.state = 1971; this.match(MySqlParser.KW_AUTOEXTEND_SIZE); - this.state = 1975; + this.state = 1973; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1974; + this.state = 1972; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1977; + this.state = 1975; this.decimalLiteral(); } break; @@ -7954,19 +7952,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionAutoIncrementContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1978; + this.state = 1976; this.match(MySqlParser.KW_AUTO_INCREMENT); - this.state = 1980; + this.state = 1978; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1979; + this.state = 1977; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1982; + this.state = 1980; this.decimalLiteral(); } break; @@ -7974,19 +7972,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionAverageContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 1983; + this.state = 1981; this.match(MySqlParser.KW_AVG_ROW_LENGTH); - this.state = 1985; + this.state = 1983; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1984; + this.state = 1982; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1987; + this.state = 1985; this.decimalLiteral(); } break; @@ -7994,29 +7992,29 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionCharsetContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 1989; + this.state = 1987; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 1988; + this.state = 1986; this.match(MySqlParser.KW_DEFAULT); } } - this.state = 1991; + this.state = 1989; this.charSet(); - this.state = 1993; + this.state = 1991; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 1992; + this.state = 1990; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 1997; + this.state = 1995; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_BINARY: @@ -8064,13 +8062,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.CHARSET_REVERSE_QOUTE_STRING: case MySqlParser.STRING_LITERAL: { - this.state = 1995; + this.state = 1993; this.charsetName(); } break; case MySqlParser.KW_DEFAULT: { - this.state = 1996; + this.state = 1994; this.match(MySqlParser.KW_DEFAULT); } break; @@ -8083,7 +8081,7 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionChecksumContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 1999; + this.state = 1997; _la = this.tokenStream.LA(1); if(!(_la === 329 || _la === 522)) { this.errorHandler.recoverInline(this); @@ -8092,17 +8090,17 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2001; + this.state = 1999; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2000; + this.state = 1998; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2003; + this.state = 2001; (localContext as TableOptionChecksumContext)._boolValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 871 || _la === 872)) { @@ -8118,29 +8116,29 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionCollateContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 2005; + this.state = 2003; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 2004; + this.state = 2002; this.match(MySqlParser.KW_DEFAULT); } } - this.state = 2007; + this.state = 2005; this.match(MySqlParser.KW_COLLATE); - this.state = 2009; + this.state = 2007; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2008; + this.state = 2006; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2011; + this.state = 2009; this.collationName(); } break; @@ -8148,19 +8146,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionCommentContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 2012; + this.state = 2010; this.match(MySqlParser.KW_COMMENT); - this.state = 2014; + this.state = 2012; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2013; + this.state = 2011; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2016; + this.state = 2014; (localContext as TableOptionCommentContext)._comment = this.match(MySqlParser.STRING_LITERAL); } break; @@ -8168,19 +8166,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionCompressionContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 2017; + this.state = 2015; this.match(MySqlParser.KW_COMPRESSION); - this.state = 2019; + this.state = 2017; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2018; + this.state = 2016; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2021; + this.state = 2019; _la = this.tokenStream.LA(1); if(!(_la === 882 || _la === 889)) { this.errorHandler.recoverInline(this); @@ -8195,19 +8193,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionConnectionContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 2022; + this.state = 2020; this.match(MySqlParser.KW_CONNECTION); - this.state = 2024; + this.state = 2022; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2023; + this.state = 2021; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2026; + this.state = 2024; this.match(MySqlParser.STRING_LITERAL); } break; @@ -8215,7 +8213,7 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionDataDirectoryContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 2027; + this.state = 2025; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 360)) { this.errorHandler.recoverInline(this); @@ -8224,19 +8222,19 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2028; + this.state = 2026; this.match(MySqlParser.KW_DIRECTORY); - this.state = 2030; + this.state = 2028; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2029; + this.state = 2027; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2032; + this.state = 2030; this.match(MySqlParser.STRING_LITERAL); } break; @@ -8244,19 +8242,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionDelayContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 2033; + this.state = 2031; this.match(MySqlParser.KW_DELAY_KEY_WRITE); - this.state = 2035; + this.state = 2033; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2034; + this.state = 2032; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2037; + this.state = 2035; (localContext as TableOptionDelayContext)._boolValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 871 || _la === 872)) { @@ -8272,19 +8270,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionEncryptionContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 2038; + this.state = 2036; this.match(MySqlParser.KW_ENCRYPTION); - this.state = 2040; + this.state = 2038; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2039; + this.state = 2037; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2042; + this.state = 2040; this.match(MySqlParser.STRING_LITERAL); } break; @@ -8292,7 +8290,7 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionPageCompressedContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 2043; + this.state = 2041; _la = this.tokenStream.LA(1); if(!(_la === 523 || _la === 882)) { this.errorHandler.recoverInline(this); @@ -8301,17 +8299,17 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2045; + this.state = 2043; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2044; + this.state = 2042; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2047; + this.state = 2045; _la = this.tokenStream.LA(1); if(!(_la === 871 || _la === 872)) { this.errorHandler.recoverInline(this); @@ -8326,7 +8324,7 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionPageCompressionLevelContext(localContext); this.enterOuterAlt(localContext, 16); { - this.state = 2048; + this.state = 2046; _la = this.tokenStream.LA(1); if(!(_la === 524 || _la === 882)) { this.errorHandler.recoverInline(this); @@ -8335,17 +8333,17 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2050; + this.state = 2048; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2049; + this.state = 2047; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2052; + this.state = 2050; this.decimalLiteral(); } break; @@ -8353,19 +8351,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionEncryptionKeyIdContext(localContext); this.enterOuterAlt(localContext, 17); { - this.state = 2053; + this.state = 2051; this.match(MySqlParser.KW_ENCRYPTION_KEY_ID); - this.state = 2055; + this.state = 2053; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2054; + this.state = 2052; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2057; + this.state = 2055; this.decimalLiteral(); } break; @@ -8373,21 +8371,21 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionIndexDirectoryContext(localContext); this.enterOuterAlt(localContext, 18); { - this.state = 2058; + this.state = 2056; this.match(MySqlParser.KW_INDEX); - this.state = 2059; + this.state = 2057; this.match(MySqlParser.KW_DIRECTORY); - this.state = 2061; + this.state = 2059; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2060; + this.state = 2058; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2063; + this.state = 2061; this.match(MySqlParser.STRING_LITERAL); } break; @@ -8395,19 +8393,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionInsertMethodContext(localContext); this.enterOuterAlt(localContext, 19); { - this.state = 2064; + this.state = 2062; this.match(MySqlParser.KW_INSERT_METHOD); - this.state = 2066; + this.state = 2064; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2065; + this.state = 2063; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2068; + this.state = 2066; (localContext as TableOptionInsertMethodContext)._insertMethod = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 402 || _la === 445 || _la === 502)) { @@ -8423,19 +8421,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionKeyBlockSizeContext(localContext); this.enterOuterAlt(localContext, 20); { - this.state = 2069; + this.state = 2067; this.match(MySqlParser.KW_KEY_BLOCK_SIZE); - this.state = 2071; + this.state = 2069; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2070; + this.state = 2068; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2073; + this.state = 2071; this.fileSizeLiteral(); } break; @@ -8443,19 +8441,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionMaxRowsContext(localContext); this.enterOuterAlt(localContext, 21); { - this.state = 2074; + this.state = 2072; this.match(MySqlParser.KW_MAX_ROWS); - this.state = 2076; + this.state = 2074; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2075; + this.state = 2073; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2078; + this.state = 2076; this.decimalLiteral(); } break; @@ -8463,19 +8461,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionMinRowsContext(localContext); this.enterOuterAlt(localContext, 22); { - this.state = 2079; + this.state = 2077; this.match(MySqlParser.KW_MIN_ROWS); - this.state = 2081; + this.state = 2079; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2080; + this.state = 2078; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2083; + this.state = 2081; this.decimalLiteral(); } break; @@ -8483,19 +8481,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionPackKeysContext(localContext); this.enterOuterAlt(localContext, 23); { - this.state = 2084; + this.state = 2082; this.match(MySqlParser.KW_PACK_KEYS); - this.state = 2086; + this.state = 2084; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2085; + this.state = 2083; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2088; + this.state = 2086; (localContext as TableOptionPackKeysContext)._extBoolValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 871 || _la === 872)) { @@ -8511,19 +8509,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionPasswordContext(localContext); this.enterOuterAlt(localContext, 24); { - this.state = 2089; + this.state = 2087; this.match(MySqlParser.KW_PASSWORD); - this.state = 2091; + this.state = 2089; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2090; + this.state = 2088; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2093; + this.state = 2091; this.match(MySqlParser.STRING_LITERAL); } break; @@ -8531,19 +8529,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionRowFormatContext(localContext); this.enterOuterAlt(localContext, 25); { - this.state = 2094; + this.state = 2092; this.match(MySqlParser.KW_ROW_FORMAT); - this.state = 2096; + this.state = 2094; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2095; + this.state = 2093; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2098; + this.state = 2096; (localContext as TableOptionRowFormatContext)._rowFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 342 || _la === 345 || _la === 374 || _la === 403 || _la === 554 || _la === 889)) { @@ -8559,9 +8557,9 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionStartTransactionContext(localContext); this.enterOuterAlt(localContext, 26); { - this.state = 2099; + this.state = 2097; this.match(MySqlParser.KW_START); - this.state = 2100; + this.state = 2098; this.match(MySqlParser.KW_TRANSACTION); } break; @@ -8569,19 +8567,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionSecondaryEngineAttributeContext(localContext); this.enterOuterAlt(localContext, 27); { - this.state = 2101; + this.state = 2099; this.match(MySqlParser.KW_SECONDARY_ENGINE_ATTRIBUTE); - this.state = 2103; + this.state = 2101; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2102; + this.state = 2100; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2105; + this.state = 2103; this.match(MySqlParser.STRING_LITERAL); } break; @@ -8589,19 +8587,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionRecalculationContext(localContext); this.enterOuterAlt(localContext, 28); { - this.state = 2106; + this.state = 2104; this.match(MySqlParser.KW_STATS_AUTO_RECALC); - this.state = 2108; + this.state = 2106; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2107; + this.state = 2105; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2110; + this.state = 2108; (localContext as TableOptionRecalculationContext)._extBoolValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 871 || _la === 872)) { @@ -8617,19 +8615,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionPersistentContext(localContext); this.enterOuterAlt(localContext, 29); { - this.state = 2111; + this.state = 2109; this.match(MySqlParser.KW_STATS_PERSISTENT); - this.state = 2113; + this.state = 2111; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2112; + this.state = 2110; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2115; + this.state = 2113; (localContext as TableOptionPersistentContext)._extBoolValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 871 || _la === 872)) { @@ -8645,24 +8643,24 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionSamplePageContext(localContext); this.enterOuterAlt(localContext, 30); { - this.state = 2116; + this.state = 2114; this.match(MySqlParser.KW_STATS_SAMPLE_PAGES); - this.state = 2118; + this.state = 2116; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2117; + this.state = 2115; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2122; + this.state = 2120; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DEFAULT: { - this.state = 2120; + this.state = 2118; this.match(MySqlParser.KW_DEFAULT); } break; @@ -8673,7 +8671,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 2121; + this.state = 2119; this.decimalLiteral(); } break; @@ -8686,16 +8684,16 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionTableSpaceContext(localContext); this.enterOuterAlt(localContext, 31); { - this.state = 2124; + this.state = 2122; this.match(MySqlParser.KW_TABLESPACE); - this.state = 2125; + this.state = 2123; this.tableSpaceName(); - this.state = 2127; + this.state = 2125; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 220, this.context) ) { case 1: { - this.state = 2126; + this.state = 2124; this.tableSpaceStorage(); } break; @@ -8706,11 +8704,11 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionTableTypeContext(localContext); this.enterOuterAlt(localContext, 32); { - this.state = 2129; + this.state = 2127; this.match(MySqlParser.KW_TABLE_TYPE); - this.state = 2130; + this.state = 2128; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 2131; + this.state = 2129; this.tableType(); } break; @@ -8718,7 +8716,7 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionTableSpaceContext(localContext); this.enterOuterAlt(localContext, 33); { - this.state = 2132; + this.state = 2130; this.tableSpaceStorage(); } break; @@ -8726,19 +8724,19 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionTransactionalContext(localContext); this.enterOuterAlt(localContext, 34); { - this.state = 2133; + this.state = 2131; this.match(MySqlParser.KW_TRANSACTIONAL); - this.state = 2135; + this.state = 2133; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2134; + this.state = 2132; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2137; + this.state = 2135; _la = this.tokenStream.LA(1); if(!(_la === 871 || _la === 872)) { this.errorHandler.recoverInline(this); @@ -8753,23 +8751,23 @@ export class MySqlParser extends SQLParserBase { localContext = new TableOptionUnionContext(localContext); this.enterOuterAlt(localContext, 35); { - this.state = 2138; + this.state = 2136; this.match(MySqlParser.KW_UNION); - this.state = 2140; + this.state = 2138; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2139; + this.state = 2137; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2142; + this.state = 2140; this.match(MySqlParser.LR_BRACKET); - this.state = 2143; + this.state = 2141; this.tableNames(); - this.state = 2144; + this.state = 2142; this.match(MySqlParser.RR_BRACKET); } break; @@ -8796,7 +8794,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2148; + this.state = 2146; _la = this.tokenStream.LA(1); if(!(_la === 494 || _la === 506)) { this.errorHandler.recoverInline(this); @@ -8828,9 +8826,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2150; + this.state = 2148; this.match(MySqlParser.KW_STORAGE); - this.state = 2151; + this.state = 2149; _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 370 || _la === 802)) { this.errorHandler.recoverInline(this); @@ -8862,43 +8860,43 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2153; + this.state = 2151; this.match(MySqlParser.KW_PARTITION); - this.state = 2154; + this.state = 2152; this.match(MySqlParser.KW_BY); - this.state = 2155; + this.state = 2153; this.partitionFunctionDefinition(); - this.state = 2158; + this.state = 2156; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 528) { { - this.state = 2156; + this.state = 2154; this.match(MySqlParser.KW_PARTITIONS); - this.state = 2157; + this.state = 2155; localContext._count = this.decimalLiteral(); } } - this.state = 2167; + this.state = 2165; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 652) { { - this.state = 2160; + this.state = 2158; this.match(MySqlParser.KW_SUBPARTITION); - this.state = 2161; + this.state = 2159; this.match(MySqlParser.KW_BY); - this.state = 2162; + this.state = 2160; this.subpartitionFunctionDefinition(); - this.state = 2165; + this.state = 2163; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 653) { { - this.state = 2163; + this.state = 2161; this.match(MySqlParser.KW_SUBPARTITIONS); - this.state = 2164; + this.state = 2162; localContext._subCount = this.decimalLiteral(); } } @@ -8906,32 +8904,32 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 2180; + this.state = 2178; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 228, this.context) ) { case 1: { - this.state = 2169; + this.state = 2167; this.match(MySqlParser.LR_BRACKET); - this.state = 2170; + this.state = 2168; this.partitionDefinition(); - this.state = 2175; + this.state = 2173; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2171; + this.state = 2169; this.match(MySqlParser.COMMA); - this.state = 2172; + this.state = 2170; this.partitionDefinition(); } } - this.state = 2177; + this.state = 2175; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2178; + this.state = 2176; this.match(MySqlParser.RR_BRACKET); } break; @@ -8957,30 +8955,30 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 112, MySqlParser.RULE_partitionFunctionDefinition); let _la: number; try { - this.state = 2228; + this.state = 2226; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 235, this.context) ) { case 1: localContext = new PartitionFunctionHashContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2183; + this.state = 2181; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 101) { { - this.state = 2182; + this.state = 2180; this.match(MySqlParser.KW_LINEAR); } } - this.state = 2185; + this.state = 2183; this.match(MySqlParser.KW_HASH); - this.state = 2186; + this.state = 2184; this.match(MySqlParser.LR_BRACKET); - this.state = 2187; + this.state = 2185; this.expression(0); - this.state = 2188; + this.state = 2186; this.match(MySqlParser.RR_BRACKET); } break; @@ -8988,28 +8986,28 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionFunctionKeyContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2191; + this.state = 2189; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 101) { { - this.state = 2190; + this.state = 2188; this.match(MySqlParser.KW_LINEAR); } } - this.state = 2193; + this.state = 2191; this.match(MySqlParser.KW_KEY); - this.state = 2197; + this.state = 2195; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 308) { { - this.state = 2194; + this.state = 2192; this.match(MySqlParser.KW_ALGORITHM); - this.state = 2195; + this.state = 2193; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 2196; + this.state = 2194; (localContext as PartitionFunctionKeyContext)._algType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 872 || _la === 873)) { @@ -9022,19 +9020,19 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 2199; + this.state = 2197; this.match(MySqlParser.LR_BRACKET); - this.state = 2201; + this.state = 2199; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 232, this.context) ) { case 1: { - this.state = 2200; + this.state = 2198; this.columnNames(); } break; } - this.state = 2203; + this.state = 2201; this.match(MySqlParser.RR_BRACKET); } break; @@ -9042,30 +9040,30 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionFunctionRangeContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2204; + this.state = 2202; this.match(MySqlParser.KW_RANGE); - this.state = 2214; + this.state = 2212; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.LR_BRACKET: { - this.state = 2205; + this.state = 2203; this.match(MySqlParser.LR_BRACKET); - this.state = 2206; + this.state = 2204; this.expression(0); - this.state = 2207; + this.state = 2205; this.match(MySqlParser.RR_BRACKET); } break; case MySqlParser.KW_COLUMNS: { - this.state = 2209; + this.state = 2207; this.match(MySqlParser.KW_COLUMNS); - this.state = 2210; + this.state = 2208; this.match(MySqlParser.LR_BRACKET); - this.state = 2211; + this.state = 2209; this.columnNames(); - this.state = 2212; + this.state = 2210; this.match(MySqlParser.RR_BRACKET); } break; @@ -9078,30 +9076,30 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionFunctionListContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2216; + this.state = 2214; this.match(MySqlParser.KW_LIST); - this.state = 2226; + this.state = 2224; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.LR_BRACKET: { - this.state = 2217; + this.state = 2215; this.match(MySqlParser.LR_BRACKET); - this.state = 2218; + this.state = 2216; this.expression(0); - this.state = 2219; + this.state = 2217; this.match(MySqlParser.RR_BRACKET); } break; case MySqlParser.KW_COLUMNS: { - this.state = 2221; + this.state = 2219; this.match(MySqlParser.KW_COLUMNS); - this.state = 2222; + this.state = 2220; this.match(MySqlParser.LR_BRACKET); - this.state = 2223; + this.state = 2221; this.columnNames(); - this.state = 2224; + this.state = 2222; this.match(MySqlParser.RR_BRACKET); } break; @@ -9131,30 +9129,30 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 114, MySqlParser.RULE_subpartitionFunctionDefinition); let _la: number; try { - this.state = 2251; + this.state = 2249; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 239, this.context) ) { case 1: localContext = new SubPartitionFunctionHashContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2231; + this.state = 2229; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 101) { { - this.state = 2230; + this.state = 2228; this.match(MySqlParser.KW_LINEAR); } } - this.state = 2233; + this.state = 2231; this.match(MySqlParser.KW_HASH); - this.state = 2234; + this.state = 2232; this.match(MySqlParser.LR_BRACKET); - this.state = 2235; + this.state = 2233; this.expression(0); - this.state = 2236; + this.state = 2234; this.match(MySqlParser.RR_BRACKET); } break; @@ -9162,28 +9160,28 @@ export class MySqlParser extends SQLParserBase { localContext = new SubPartitionFunctionKeyContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2239; + this.state = 2237; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 101) { { - this.state = 2238; + this.state = 2236; this.match(MySqlParser.KW_LINEAR); } } - this.state = 2241; + this.state = 2239; this.match(MySqlParser.KW_KEY); - this.state = 2245; + this.state = 2243; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 308) { { - this.state = 2242; + this.state = 2240; this.match(MySqlParser.KW_ALGORITHM); - this.state = 2243; + this.state = 2241; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 2244; + this.state = 2242; (localContext as SubPartitionFunctionKeyContext)._algType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 872 || _la === 873)) { @@ -9196,11 +9194,11 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 2247; + this.state = 2245; this.match(MySqlParser.LR_BRACKET); - this.state = 2248; + this.state = 2246; this.columnNames(); - this.state = 2249; + this.state = 2247; this.match(MySqlParser.RR_BRACKET); } break; @@ -9225,85 +9223,85 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 116, MySqlParser.RULE_partitionDefinition); let _la: number; try { - this.state = 2399; + this.state = 2397; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 258, this.context) ) { case 1: localContext = new PartitionComparisonContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2253; + this.state = 2251; this.match(MySqlParser.KW_PARTITION); - this.state = 2254; + this.state = 2252; this.partitionName(); - this.state = 2255; + this.state = 2253; this.match(MySqlParser.KW_VALUES); - this.state = 2256; + this.state = 2254; this.match(MySqlParser.KW_LESS); - this.state = 2257; + this.state = 2255; this.match(MySqlParser.KW_THAN); - this.state = 2258; + this.state = 2256; this.match(MySqlParser.LR_BRACKET); - this.state = 2259; + this.state = 2257; this.partitionDefinerAtom(); - this.state = 2264; + this.state = 2262; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2260; + this.state = 2258; this.match(MySqlParser.COMMA); - this.state = 2261; + this.state = 2259; this.partitionDefinerAtom(); } } - this.state = 2266; + this.state = 2264; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2267; + this.state = 2265; this.match(MySqlParser.RR_BRACKET); - this.state = 2271; + this.state = 2269; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 42 || _la === 82 || _la === 340 || _la === 360 || _la === 380 || ((((_la - 480)) & ~0x1F) === 0 && ((1 << (_la - 480)) & 16778241) !== 0) || _la === 647 || _la === 658) { { { - this.state = 2268; + this.state = 2266; this.partitionOption(); } } - this.state = 2273; + this.state = 2271; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2285; + this.state = 2283; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 2274; + this.state = 2272; this.match(MySqlParser.LR_BRACKET); - this.state = 2275; + this.state = 2273; this.subPartitionDefinition(); - this.state = 2280; + this.state = 2278; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2276; + this.state = 2274; this.match(MySqlParser.COMMA); - this.state = 2277; + this.state = 2275; this.subPartitionDefinition(); } } - this.state = 2282; + this.state = 2280; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2283; + this.state = 2281; this.match(MySqlParser.RR_BRACKET); } } @@ -9314,58 +9312,58 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionComparisonContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2287; + this.state = 2285; this.match(MySqlParser.KW_PARTITION); - this.state = 2288; + this.state = 2286; this.partitionName(); - this.state = 2289; + this.state = 2287; this.match(MySqlParser.KW_VALUES); - this.state = 2290; + this.state = 2288; this.match(MySqlParser.KW_LESS); - this.state = 2291; + this.state = 2289; this.match(MySqlParser.KW_THAN); - this.state = 2292; + this.state = 2290; this.partitionDefinerAtom(); - this.state = 2296; + this.state = 2294; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 42 || _la === 82 || _la === 340 || _la === 360 || _la === 380 || ((((_la - 480)) & ~0x1F) === 0 && ((1 << (_la - 480)) & 16778241) !== 0) || _la === 647 || _la === 658) { { { - this.state = 2293; + this.state = 2291; this.partitionOption(); } } - this.state = 2298; + this.state = 2296; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2310; + this.state = 2308; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 2299; + this.state = 2297; this.match(MySqlParser.LR_BRACKET); - this.state = 2300; + this.state = 2298; this.subPartitionDefinition(); - this.state = 2305; + this.state = 2303; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2301; + this.state = 2299; this.match(MySqlParser.COMMA); - this.state = 2302; + this.state = 2300; this.subPartitionDefinition(); } } - this.state = 2307; + this.state = 2305; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2308; + this.state = 2306; this.match(MySqlParser.RR_BRACKET); } } @@ -9376,76 +9374,76 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionListAtomContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2312; + this.state = 2310; this.match(MySqlParser.KW_PARTITION); - this.state = 2313; + this.state = 2311; this.partitionName(); - this.state = 2314; + this.state = 2312; this.match(MySqlParser.KW_VALUES); - this.state = 2315; + this.state = 2313; this.match(MySqlParser.KW_IN); - this.state = 2316; + this.state = 2314; this.match(MySqlParser.LR_BRACKET); - this.state = 2317; + this.state = 2315; this.partitionDefinerAtom(); - this.state = 2322; + this.state = 2320; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2318; + this.state = 2316; this.match(MySqlParser.COMMA); - this.state = 2319; + this.state = 2317; this.partitionDefinerAtom(); } } - this.state = 2324; + this.state = 2322; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2325; + this.state = 2323; this.match(MySqlParser.RR_BRACKET); - this.state = 2329; + this.state = 2327; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 42 || _la === 82 || _la === 340 || _la === 360 || _la === 380 || ((((_la - 480)) & ~0x1F) === 0 && ((1 << (_la - 480)) & 16778241) !== 0) || _la === 647 || _la === 658) { { { - this.state = 2326; + this.state = 2324; this.partitionOption(); } } - this.state = 2331; + this.state = 2329; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2343; + this.state = 2341; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 2332; + this.state = 2330; this.match(MySqlParser.LR_BRACKET); - this.state = 2333; + this.state = 2331; this.subPartitionDefinition(); - this.state = 2338; + this.state = 2336; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2334; + this.state = 2332; this.match(MySqlParser.COMMA); - this.state = 2335; + this.state = 2333; this.subPartitionDefinition(); } } - this.state = 2340; + this.state = 2338; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2341; + this.state = 2339; this.match(MySqlParser.RR_BRACKET); } } @@ -9456,76 +9454,76 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionListVectorContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2345; + this.state = 2343; this.match(MySqlParser.KW_PARTITION); - this.state = 2346; + this.state = 2344; this.partitionName(); - this.state = 2347; + this.state = 2345; this.match(MySqlParser.KW_VALUES); - this.state = 2348; + this.state = 2346; this.match(MySqlParser.KW_IN); - this.state = 2349; + this.state = 2347; this.match(MySqlParser.LR_BRACKET); - this.state = 2350; + this.state = 2348; this.partitionDefinerVector(); - this.state = 2355; + this.state = 2353; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2351; + this.state = 2349; this.match(MySqlParser.COMMA); - this.state = 2352; + this.state = 2350; this.partitionDefinerVector(); } } - this.state = 2357; + this.state = 2355; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2358; + this.state = 2356; this.match(MySqlParser.RR_BRACKET); - this.state = 2362; + this.state = 2360; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 42 || _la === 82 || _la === 340 || _la === 360 || _la === 380 || ((((_la - 480)) & ~0x1F) === 0 && ((1 << (_la - 480)) & 16778241) !== 0) || _la === 647 || _la === 658) { { { - this.state = 2359; + this.state = 2357; this.partitionOption(); } } - this.state = 2364; + this.state = 2362; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2376; + this.state = 2374; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 2365; + this.state = 2363; this.match(MySqlParser.LR_BRACKET); - this.state = 2366; + this.state = 2364; this.subPartitionDefinition(); - this.state = 2371; + this.state = 2369; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2367; + this.state = 2365; this.match(MySqlParser.COMMA); - this.state = 2368; + this.state = 2366; this.subPartitionDefinition(); } } - this.state = 2373; + this.state = 2371; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2374; + this.state = 2372; this.match(MySqlParser.RR_BRACKET); } } @@ -9536,50 +9534,50 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionSimpleContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2378; + this.state = 2376; this.match(MySqlParser.KW_PARTITION); - this.state = 2379; + this.state = 2377; this.partitionName(); - this.state = 2383; + this.state = 2381; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 42 || _la === 82 || _la === 340 || _la === 360 || _la === 380 || ((((_la - 480)) & ~0x1F) === 0 && ((1 << (_la - 480)) & 16778241) !== 0) || _la === 647 || _la === 658) { { { - this.state = 2380; + this.state = 2378; this.partitionOption(); } } - this.state = 2385; + this.state = 2383; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2397; + this.state = 2395; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 2386; + this.state = 2384; this.match(MySqlParser.LR_BRACKET); - this.state = 2387; + this.state = 2385; this.subPartitionDefinition(); - this.state = 2392; + this.state = 2390; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2388; + this.state = 2386; this.match(MySqlParser.COMMA); - this.state = 2389; + this.state = 2387; this.subPartitionDefinition(); } } - this.state = 2394; + this.state = 2392; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2395; + this.state = 2393; this.match(MySqlParser.RR_BRACKET); } } @@ -9606,27 +9604,27 @@ export class MySqlParser extends SQLParserBase { let localContext = new PartitionDefinerAtomContext(this.context, this.state); this.enterRule(localContext, 118, MySqlParser.RULE_partitionDefinerAtom); try { - this.state = 2404; + this.state = 2402; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 259, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2401; + this.state = 2399; this.constant(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2402; + this.state = 2400; this.expression(0); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2403; + this.state = 2401; this.match(MySqlParser.KW_MAXVALUE); } break; @@ -9653,27 +9651,27 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2406; + this.state = 2404; this.match(MySqlParser.LR_BRACKET); - this.state = 2407; + this.state = 2405; this.partitionDefinerAtom(); - this.state = 2410; + this.state = 2408; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2408; + this.state = 2406; this.match(MySqlParser.COMMA); - this.state = 2409; + this.state = 2407; this.partitionDefinerAtom(); } } - this.state = 2412; + this.state = 2410; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 868); - this.state = 2414; + this.state = 2412; this.match(MySqlParser.RR_BRACKET); } } @@ -9698,21 +9696,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2416; + this.state = 2414; this.match(MySqlParser.KW_SUBPARTITION); - this.state = 2417; + this.state = 2415; localContext._logicalName = this.uid(); - this.state = 2421; + this.state = 2419; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 42 || _la === 82 || _la === 340 || _la === 360 || _la === 380 || ((((_la - 480)) & ~0x1F) === 0 && ((1 << (_la - 480)) & 16778241) !== 0) || _la === 647 || _la === 658) { { { - this.state = 2418; + this.state = 2416; this.partitionOption(); } } - this.state = 2423; + this.state = 2421; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9737,7 +9735,7 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 124, MySqlParser.RULE_partitionOption); let _la: number; try { - this.state = 2472; + this.state = 2470; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DEFAULT: @@ -9746,39 +9744,39 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionOptionEngineContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2425; + this.state = 2423; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 2424; + this.state = 2422; this.match(MySqlParser.KW_DEFAULT); } } - this.state = 2428; + this.state = 2426; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 647) { { - this.state = 2427; + this.state = 2425; this.match(MySqlParser.KW_STORAGE); } } - this.state = 2430; + this.state = 2428; this.match(MySqlParser.KW_ENGINE); - this.state = 2432; + this.state = 2430; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2431; + this.state = 2429; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2434; + this.state = 2432; this.engineName(); } break; @@ -9786,19 +9784,19 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionOptionCommentContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2435; + this.state = 2433; this.match(MySqlParser.KW_COMMENT); - this.state = 2437; + this.state = 2435; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2436; + this.state = 2434; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2439; + this.state = 2437; (localContext as PartitionOptionCommentContext)._comment = this.match(MySqlParser.STRING_LITERAL); } break; @@ -9806,21 +9804,21 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionOptionDataDirectoryContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2440; + this.state = 2438; this.match(MySqlParser.KW_DATA); - this.state = 2441; + this.state = 2439; this.match(MySqlParser.KW_DIRECTORY); - this.state = 2443; + this.state = 2441; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2442; + this.state = 2440; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2445; + this.state = 2443; (localContext as PartitionOptionDataDirectoryContext)._dataDirectory = this.match(MySqlParser.STRING_LITERAL); } break; @@ -9828,21 +9826,21 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionOptionIndexDirectoryContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2446; + this.state = 2444; this.match(MySqlParser.KW_INDEX); - this.state = 2447; + this.state = 2445; this.match(MySqlParser.KW_DIRECTORY); - this.state = 2449; + this.state = 2447; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2448; + this.state = 2446; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2451; + this.state = 2449; (localContext as PartitionOptionIndexDirectoryContext)._indexDirectory = this.match(MySqlParser.STRING_LITERAL); } break; @@ -9850,19 +9848,19 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionOptionMaxRowsContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2452; + this.state = 2450; this.match(MySqlParser.KW_MAX_ROWS); - this.state = 2454; + this.state = 2452; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2453; + this.state = 2451; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2456; + this.state = 2454; (localContext as PartitionOptionMaxRowsContext)._maxRows = this.decimalLiteral(); } break; @@ -9870,19 +9868,19 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionOptionMinRowsContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 2457; + this.state = 2455; this.match(MySqlParser.KW_MIN_ROWS); - this.state = 2459; + this.state = 2457; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2458; + this.state = 2456; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2461; + this.state = 2459; (localContext as PartitionOptionMinRowsContext)._minRows = this.decimalLiteral(); } break; @@ -9890,19 +9888,19 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionOptionTableSpaceContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 2462; + this.state = 2460; this.match(MySqlParser.KW_TABLESPACE); - this.state = 2464; + this.state = 2462; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2463; + this.state = 2461; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2466; + this.state = 2464; this.tableSpaceName(); } break; @@ -9910,19 +9908,19 @@ export class MySqlParser extends SQLParserBase { localContext = new PartitionOptionNodeGroupContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 2467; + this.state = 2465; this.match(MySqlParser.KW_NODEGROUP); - this.state = 2469; + this.state = 2467; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2468; + this.state = 2466; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2471; + this.state = 2469; (localContext as PartitionOptionNodeGroupContext)._nodeGroup = this.uid(); } break; @@ -9949,16 +9947,16 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 126, MySqlParser.RULE_alterDatabase); let _la: number; try { - this.state = 2492; + this.state = 2490; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 275, this.context) ) { case 1: localContext = new AlterSimpleDatabaseContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2474; + this.state = 2472; this.match(MySqlParser.KW_ALTER); - this.state = 2475; + this.state = 2473; (localContext as AlterSimpleDatabaseContext)._dbFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 152)) { @@ -9968,27 +9966,27 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2477; + this.state = 2475; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 273, this.context) ) { case 1: { - this.state = 2476; + this.state = 2474; this.databaseName(); } break; } - this.state = 2480; + this.state = 2478; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2479; + this.state = 2477; this.createDatabaseOption(); } } - this.state = 2482; + this.state = 2480; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (((((_la - 26)) & ~0x1F) === 0 && ((1 << (_la - 26)) & 65541) !== 0) || _la === 135 || _la === 224 || _la === 376 || _la === 823); @@ -9998,9 +9996,9 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterUpgradeNameContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2484; + this.state = 2482; this.match(MySqlParser.KW_ALTER); - this.state = 2485; + this.state = 2483; (localContext as AlterUpgradeNameContext)._dbFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 152)) { @@ -10010,15 +10008,15 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2486; + this.state = 2484; this.databaseName(); - this.state = 2487; + this.state = 2485; this.match(MySqlParser.KW_UPGRADE); - this.state = 2488; + this.state = 2486; this.match(MySqlParser.KW_DATA); - this.state = 2489; + this.state = 2487; this.match(MySqlParser.KW_DIRECTORY); - this.state = 2490; + this.state = 2488; this.match(MySqlParser.KW_NAME); } break; @@ -10045,104 +10043,104 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2494; + this.state = 2492; this.match(MySqlParser.KW_ALTER); - this.state = 2496; + this.state = 2494; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 364) { { - this.state = 2495; + this.state = 2493; this.ownerStatement(); } } - this.state = 2498; + this.state = 2496; this.match(MySqlParser.KW_EVENT); - this.state = 2499; + this.state = 2497; localContext._event_name = this.fullId(); - this.state = 2503; + this.state = 2501; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 277, this.context) ) { case 1: { - this.state = 2500; + this.state = 2498; this.match(MySqlParser.KW_ON); - this.state = 2501; + this.state = 2499; this.match(MySqlParser.KW_SCHEDULE); - this.state = 2502; + this.state = 2500; this.scheduleExpression(); } break; } - this.state = 2511; + this.state = 2509; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 119) { { - this.state = 2505; + this.state = 2503; this.match(MySqlParser.KW_ON); - this.state = 2506; + this.state = 2504; this.match(MySqlParser.KW_COMPLETION); - this.state = 2508; + this.state = 2506; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 2507; + this.state = 2505; this.match(MySqlParser.KW_NOT); } } - this.state = 2510; + this.state = 2508; this.match(MySqlParser.KW_PRESERVE); } } - this.state = 2516; + this.state = 2514; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 280, this.context) ) { case 1: { - this.state = 2513; + this.state = 2511; this.match(MySqlParser.KW_RENAME); - this.state = 2514; + this.state = 2512; this.match(MySqlParser.KW_TO); - this.state = 2515; + this.state = 2513; localContext._new_event_name = this.fullId(); } break; } - this.state = 2519; + this.state = 2517; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 368 || _la === 375) { { - this.state = 2518; + this.state = 2516; this.enableType(); } } - this.state = 2523; + this.state = 2521; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 340) { { - this.state = 2521; + this.state = 2519; this.match(MySqlParser.KW_COMMENT); - this.state = 2522; + this.state = 2520; this.match(MySqlParser.STRING_LITERAL); } } - this.state = 2527; + this.state = 2525; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 283, this.context) ) { case 1: { - this.state = 2525; + this.state = 2523; this.match(MySqlParser.KW_DO); - this.state = 2526; + this.state = 2524; this.routineBody(); } break; @@ -10170,23 +10168,23 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2529; + this.state = 2527; this.match(MySqlParser.KW_ALTER); - this.state = 2530; + this.state = 2528; this.match(MySqlParser.KW_FUNCTION); - this.state = 2531; + this.state = 2529; this.functionName(); - this.state = 2535; + this.state = 2533; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 47 || ((((_la - 112)) & ~0x1F) === 0 && ((1 << (_la - 112)) & 16777221) !== 0) || _la === 162 || _la === 340 || _la === 354 || _la === 444 || _la === 502) { { { - this.state = 2532; + this.state = 2530; this.routineOption(); } } - this.state = 2537; + this.state = 2535; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10212,17 +10210,17 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2538; + this.state = 2536; this.match(MySqlParser.KW_ALTER); - this.state = 2539; + this.state = 2537; this.match(MySqlParser.KW_INSTANCE); - this.state = 2540; + this.state = 2538; this.match(MySqlParser.KW_ROTATE); - this.state = 2541; + this.state = 2539; this.match(MySqlParser.KW_INNODB); - this.state = 2542; + this.state = 2540; this.match(MySqlParser.KW_MASTER); - this.state = 2543; + this.state = 2541; this.match(MySqlParser.KW_KEY); } } @@ -10247,65 +10245,65 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2545; + this.state = 2543; this.match(MySqlParser.KW_ALTER); - this.state = 2546; + this.state = 2544; this.match(MySqlParser.KW_LOGFILE); - this.state = 2547; + this.state = 2545; this.match(MySqlParser.KW_GROUP); - this.state = 2548; + this.state = 2546; localContext._logFileGroupName = this.uid(); - this.state = 2549; + this.state = 2547; this.match(MySqlParser.KW_ADD); - this.state = 2550; + this.state = 2548; this.match(MySqlParser.KW_UNDOFILE); - this.state = 2551; + this.state = 2549; this.match(MySqlParser.STRING_LITERAL); - this.state = 2557; + this.state = 2555; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 428) { { - this.state = 2552; + this.state = 2550; this.match(MySqlParser.KW_INITIAL_SIZE); - this.state = 2554; + this.state = 2552; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2553; + this.state = 2551; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2556; + this.state = 2554; this.fileSizeLiteral(); } } - this.state = 2560; + this.state = 2558; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 687) { { - this.state = 2559; + this.state = 2557; this.match(MySqlParser.KW_WAIT); } } - this.state = 2562; + this.state = 2560; this.match(MySqlParser.KW_ENGINE); - this.state = 2564; + this.state = 2562; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2563; + this.state = 2561; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2566; + this.state = 2564; this.engineName(); } } @@ -10330,23 +10328,23 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2568; + this.state = 2566; this.match(MySqlParser.KW_ALTER); - this.state = 2569; + this.state = 2567; this.match(MySqlParser.KW_PROCEDURE); - this.state = 2570; + this.state = 2568; localContext._proc_name = this.fullId(); - this.state = 2574; + this.state = 2572; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 47 || ((((_la - 112)) & ~0x1F) === 0 && ((1 << (_la - 112)) & 16777221) !== 0) || _la === 162 || _la === 340 || _la === 354 || _la === 444 || _la === 502) { { { - this.state = 2571; + this.state = 2569; this.routineOption(); } } - this.state = 2576; + this.state = 2574; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -10373,35 +10371,35 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2577; + this.state = 2575; this.match(MySqlParser.KW_ALTER); - this.state = 2578; + this.state = 2576; this.match(MySqlParser.KW_SERVER); - this.state = 2579; + this.state = 2577; localContext._serverName = this.uid(); - this.state = 2580; + this.state = 2578; this.match(MySqlParser.KW_OPTIONS); - this.state = 2581; + this.state = 2579; this.match(MySqlParser.LR_BRACKET); - this.state = 2582; + this.state = 2580; this.serverOption(); - this.state = 2587; + this.state = 2585; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2583; + this.state = 2581; this.match(MySqlParser.COMMA); - this.state = 2584; + this.state = 2582; this.serverOption(); } } - this.state = 2589; + this.state = 2587; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2590; + this.state = 2588; this.match(MySqlParser.RR_BRACKET); } } @@ -10427,58 +10425,58 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2592; + this.state = 2590; this.match(MySqlParser.KW_ALTER); - this.state = 2593; + this.state = 2591; this.match(MySqlParser.KW_TABLE); - this.state = 2594; + this.state = 2592; this.tableName(); - this.state = 2603; + this.state = 2601; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 292, this.context) ) { case 1: { - this.state = 2595; + this.state = 2593; this.alterOption(); - this.state = 2600; + this.state = 2598; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2596; + this.state = 2594; this.match(MySqlParser.COMMA); - this.state = 2597; + this.state = 2595; this.alterOption(); } } - this.state = 2602; + this.state = 2600; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 2612; + this.state = 2610; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 294, this.context) ) { case 1: { - this.state = 2605; + this.state = 2603; this.alterPartitionSpecification(); - this.state = 2609; + this.state = 2607; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 293, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2606; + this.state = 2604; this.alterPartitionSpecification(); } } } - this.state = 2611; + this.state = 2609; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 293, this.context); } @@ -10508,23 +10506,23 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2614; + this.state = 2612; this.match(MySqlParser.KW_ALTER); - this.state = 2616; + this.state = 2614; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 180) { { - this.state = 2615; + this.state = 2613; this.match(MySqlParser.KW_UNDO); } } - this.state = 2618; + this.state = 2616; this.match(MySqlParser.KW_TABLESPACE); - this.state = 2619; + this.state = 2617; this.tableSpaceName(); - this.state = 2620; + this.state = 2618; _la = this.tokenStream.LA(1); if(!(_la === 6 || _la === 51)) { this.errorHandler.recoverInline(this); @@ -10533,86 +10531,86 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2621; + this.state = 2619; this.match(MySqlParser.KW_DATAFILE); - this.state = 2622; + this.state = 2620; this.match(MySqlParser.STRING_LITERAL); - this.state = 2628; + this.state = 2626; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 428) { { - this.state = 2623; + this.state = 2621; this.match(MySqlParser.KW_INITIAL_SIZE); - this.state = 2625; + this.state = 2623; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2624; + this.state = 2622; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2627; + this.state = 2625; this.fileSizeLiteral(); } } - this.state = 2631; + this.state = 2629; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 687) { { - this.state = 2630; + this.state = 2628; this.match(MySqlParser.KW_WAIT); } } - this.state = 2636; + this.state = 2634; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 299, this.context) ) { case 1: { - this.state = 2633; + this.state = 2631; this.match(MySqlParser.KW_RENAME); - this.state = 2634; + this.state = 2632; this.match(MySqlParser.KW_TO); - this.state = 2635; + this.state = 2633; this.tableSpaceNameCreate(); } break; } - this.state = 2643; + this.state = 2641; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 314) { { - this.state = 2638; + this.state = 2636; this.match(MySqlParser.KW_AUTOEXTEND_SIZE); - this.state = 2640; + this.state = 2638; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2639; + this.state = 2637; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2642; + this.state = 2640; this.fileSizeLiteral(); } } - this.state = 2647; + this.state = 2645; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 302, this.context) ) { case 1: { - this.state = 2645; + this.state = 2643; this.match(MySqlParser.KW_SET); - this.state = 2646; + this.state = 2644; _la = this.tokenStream.LA(1); if(!(_la === 5 || _la === 81)) { this.errorHandler.recoverInline(this); @@ -10624,68 +10622,68 @@ export class MySqlParser extends SQLParserBase { } break; } - this.state = 2654; + this.state = 2652; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 376) { { - this.state = 2649; + this.state = 2647; this.match(MySqlParser.KW_ENCRYPTION); - this.state = 2651; + this.state = 2649; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2650; + this.state = 2648; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2653; + this.state = 2651; this.match(MySqlParser.STRING_LITERAL); } } - this.state = 2661; + this.state = 2659; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 380) { { - this.state = 2656; + this.state = 2654; this.match(MySqlParser.KW_ENGINE); - this.state = 2658; + this.state = 2656; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2657; + this.state = 2655; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2660; + this.state = 2658; this.engineName(); } } - this.state = 2668; + this.state = 2666; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 825) { { - this.state = 2663; + this.state = 2661; this.match(MySqlParser.KW_ENGINE_ATTRIBUTE); - this.state = 2665; + this.state = 2663; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2664; + this.state = 2662; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2667; + this.state = 2665; this.match(MySqlParser.STRING_LITERAL); } } @@ -10713,18 +10711,18 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2670; + this.state = 2668; this.match(MySqlParser.KW_ALTER); - this.state = 2674; + this.state = 2672; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 308) { { - this.state = 2671; + this.state = 2669; this.match(MySqlParser.KW_ALGORITHM); - this.state = 2672; + this.state = 2670; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 2673; + this.state = 2671; localContext._algType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 486 || _la === 661 || _la === 670)) { @@ -10737,26 +10735,26 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 2677; + this.state = 2675; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 364) { { - this.state = 2676; + this.state = 2674; this.ownerStatement(); } } - this.state = 2682; + this.state = 2680; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 162) { { - this.state = 2679; + this.state = 2677; this.match(MySqlParser.KW_SQL); - this.state = 2680; + this.state = 2678; this.match(MySqlParser.KW_SECURITY); - this.state = 2681; + this.state = 2679; localContext._secContext = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 364 || _la === 436)) { @@ -10769,41 +10767,41 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 2684; + this.state = 2682; this.match(MySqlParser.KW_VIEW); - this.state = 2685; + this.state = 2683; this.viewName(); - this.state = 2690; + this.state = 2688; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 2686; + this.state = 2684; this.match(MySqlParser.LR_BRACKET); - this.state = 2687; + this.state = 2685; this.columnNames(); - this.state = 2688; + this.state = 2686; this.match(MySqlParser.RR_BRACKET); } } - this.state = 2692; + this.state = 2690; this.match(MySqlParser.KW_AS); - this.state = 2693; + this.state = 2691; this.selectStatement(); - this.state = 2700; + this.state = 2698; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 314, this.context) ) { case 1: { - this.state = 2694; + this.state = 2692; this.match(MySqlParser.KW_WITH); - this.state = 2696; + this.state = 2694; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 325 || _la === 450) { { - this.state = 2695; + this.state = 2693; localContext._checkOpt = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 325 || _la === 450)) { @@ -10816,9 +10814,9 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 2698; + this.state = 2696; this.match(MySqlParser.KW_CHECK); - this.state = 2699; + this.state = 2697; this.match(MySqlParser.KW_OPTION); } break; @@ -10845,38 +10843,38 @@ export class MySqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 2966; + this.state = 2964; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 358, this.context) ) { case 1: localContext = new AlterByTableOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2702; + this.state = 2700; this.tableOption(); - this.state = 2709; + this.state = 2707; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 316, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2704; + this.state = 2702; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 2703; + this.state = 2701; this.match(MySqlParser.COMMA); } } - this.state = 2706; + this.state = 2704; this.tableOption(); } } } - this.state = 2711; + this.state = 2709; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 316, this.context); } @@ -10886,36 +10884,36 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByAddColumnContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2712; + this.state = 2710; this.match(MySqlParser.KW_ADD); - this.state = 2714; + this.state = 2712; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 317, this.context) ) { case 1: { - this.state = 2713; + this.state = 2711; this.match(MySqlParser.KW_COLUMN); } break; } - this.state = 2716; + this.state = 2714; this.columnName(); - this.state = 2717; + this.state = 2715; this.columnDefinition(); - this.state = 2721; + this.state = 2719; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_FIRST: { - this.state = 2718; + this.state = 2716; this.match(MySqlParser.KW_FIRST); } break; case MySqlParser.KW_AFTER: { - this.state = 2719; + this.state = 2717; this.match(MySqlParser.KW_AFTER); - this.state = 2720; + this.state = 2718; this.columnName(); } break; @@ -11001,43 +10999,43 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByAddColumnsContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2723; + this.state = 2721; this.match(MySqlParser.KW_ADD); - this.state = 2725; + this.state = 2723; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 29) { { - this.state = 2724; + this.state = 2722; this.match(MySqlParser.KW_COLUMN); } } - this.state = 2727; + this.state = 2725; this.match(MySqlParser.LR_BRACKET); - this.state = 2728; + this.state = 2726; this.columnName(); - this.state = 2729; + this.state = 2727; this.columnDefinition(); - this.state = 2736; + this.state = 2734; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2730; + this.state = 2728; this.match(MySqlParser.COMMA); - this.state = 2731; + this.state = 2729; this.columnName(); - this.state = 2732; + this.state = 2730; this.columnDefinition(); } } - this.state = 2738; + this.state = 2736; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2739; + this.state = 2737; this.match(MySqlParser.RR_BRACKET); } break; @@ -11045,9 +11043,9 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByAddIndexContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2741; + this.state = 2739; this.match(MySqlParser.KW_ADD); - this.state = 2742; + this.state = 2740; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { this.errorHandler.recoverInline(this); @@ -11056,41 +11054,41 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2744; + this.state = 2742; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 2743; + this.state = 2741; this.indexName(); } } - this.state = 2747; + this.state = 2745; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 2746; + this.state = 2744; this.indexType(); } } - this.state = 2749; + this.state = 2747; this.indexColumnNames(); - this.state = 2753; + this.state = 2751; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 323, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2750; + this.state = 2748; this.indexOption(); } } } - this.state = 2755; + this.state = 2753; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 323, this.context); } @@ -11100,9 +11098,9 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByAddSpecialIndexContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2756; + this.state = 2754; this.match(MySqlParser.KW_ADD); - this.state = 2757; + this.state = 2755; _la = this.tokenStream.LA(1); if(!(_la === 69 || _la === 161)) { this.errorHandler.recoverInline(this); @@ -11111,12 +11109,12 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2759; + this.state = 2757; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82 || _la === 92) { { - this.state = 2758; + this.state = 2756; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { this.errorHandler.recoverInline(this); @@ -11128,31 +11126,31 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 2762; + this.state = 2760; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 2761; + this.state = 2759; this.indexName(); } } - this.state = 2764; + this.state = 2762; this.indexColumnNames(); - this.state = 2768; + this.state = 2766; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 326, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2765; + this.state = 2763; this.indexOption(); } } } - this.state = 2770; + this.state = 2768; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 326, this.context); } @@ -11162,21 +11160,21 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByAddPrimaryKeyContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 2771; + this.state = 2769; this.match(MySqlParser.KW_ADD); - this.state = 2776; + this.state = 2774; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 2772; + this.state = 2770; this.match(MySqlParser.KW_CONSTRAINT); - this.state = 2774; + this.state = 2772; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 327, this.context) ) { case 1: { - this.state = 2773; + this.state = 2771; (localContext as AlterByAddPrimaryKeyContext)._symbol_ = this.uid(); } break; @@ -11184,35 +11182,35 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 2778; + this.state = 2776; this.match(MySqlParser.KW_PRIMARY); - this.state = 2779; + this.state = 2777; this.match(MySqlParser.KW_KEY); - this.state = 2781; + this.state = 2779; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 2780; + this.state = 2778; this.indexType(); } } - this.state = 2783; + this.state = 2781; this.indexColumnNames(); - this.state = 2787; + this.state = 2785; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 330, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2784; + this.state = 2782; this.indexOption(); } } } - this.state = 2789; + this.state = 2787; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 330, this.context); } @@ -11222,21 +11220,21 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByAddUniqueKeyContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 2790; + this.state = 2788; this.match(MySqlParser.KW_ADD); - this.state = 2795; + this.state = 2793; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 2791; + this.state = 2789; this.match(MySqlParser.KW_CONSTRAINT); - this.state = 2793; + this.state = 2791; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 2792; + this.state = 2790; (localContext as AlterByAddUniqueKeyContext)._symbol_ = this.uid(); } } @@ -11244,14 +11242,14 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 2797; + this.state = 2795; this.match(MySqlParser.KW_UNIQUE); - this.state = 2799; + this.state = 2797; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82 || _la === 92) { { - this.state = 2798; + this.state = 2796; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { this.errorHandler.recoverInline(this); @@ -11263,41 +11261,41 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 2802; + this.state = 2800; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 2801; + this.state = 2799; this.indexName(); } } - this.state = 2805; + this.state = 2803; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 2804; + this.state = 2802; this.indexType(); } } - this.state = 2807; + this.state = 2805; this.indexColumnNames(); - this.state = 2811; + this.state = 2809; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 336, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2808; + this.state = 2806; this.indexOption(); } } } - this.state = 2813; + this.state = 2811; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 336, this.context); } @@ -11307,21 +11305,21 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByAddForeignKeyContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 2814; + this.state = 2812; this.match(MySqlParser.KW_ADD); - this.state = 2819; + this.state = 2817; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31) { { - this.state = 2815; + this.state = 2813; this.match(MySqlParser.KW_CONSTRAINT); - this.state = 2817; + this.state = 2815; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 2816; + this.state = 2814; (localContext as AlterByAddForeignKeyContext)._symbol_ = this.uid(); } } @@ -11329,23 +11327,23 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 2821; + this.state = 2819; this.match(MySqlParser.KW_FOREIGN); - this.state = 2822; + this.state = 2820; this.match(MySqlParser.KW_KEY); - this.state = 2824; + this.state = 2822; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 2823; + this.state = 2821; this.indexName(); } } - this.state = 2826; + this.state = 2824; this.indexColumnNames(); - this.state = 2827; + this.state = 2825; this.referenceDefinition(); } break; @@ -11353,14 +11351,14 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByAddCheckTableConstraintContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 2829; + this.state = 2827; this.match(MySqlParser.KW_ADD); - this.state = 2831; + this.state = 2829; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 340, this.context) ) { case 1: { - this.state = 2830; + this.state = 2828; this.checkConstraintDefinition(); } break; @@ -11371,9 +11369,9 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByDropConstraintCheckContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 2833; + this.state = 2831; this.match(MySqlParser.KW_DROP); - this.state = 2834; + this.state = 2832; _la = this.tokenStream.LA(1); if(!(_la === 27 || _la === 31)) { this.errorHandler.recoverInline(this); @@ -11382,7 +11380,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2835; + this.state = 2833; (localContext as AlterByDropConstraintCheckContext)._symbol_ = this.uid(); } break; @@ -11390,9 +11388,9 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByAlterCheckTableConstraintContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 2836; + this.state = 2834; this.match(MySqlParser.KW_ALTER); - this.state = 2837; + this.state = 2835; _la = this.tokenStream.LA(1); if(!(_la === 27 || _la === 31)) { this.errorHandler.recoverInline(this); @@ -11401,24 +11399,24 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2838; + this.state = 2836; (localContext as AlterByAlterCheckTableConstraintContext)._symbol_ = this.uid(); - this.state = 2840; + this.state = 2838; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 2839; + this.state = 2837; this.match(MySqlParser.KW_NOT); } } - this.state = 2843; + this.state = 2841; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 57) { { - this.state = 2842; + this.state = 2840; this.match(MySqlParser.KW_ENFORCED); } } @@ -11429,19 +11427,19 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterBySetAlgorithmContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 2845; + this.state = 2843; this.match(MySqlParser.KW_ALGORITHM); - this.state = 2847; + this.state = 2845; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2846; + this.state = 2844; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2849; + this.state = 2847; _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 357 || _la === 430 || _la === 434)) { this.errorHandler.recoverInline(this); @@ -11456,38 +11454,38 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByAlterColumnDefaultContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 2850; + this.state = 2848; this.match(MySqlParser.KW_ALTER); - this.state = 2852; + this.state = 2850; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 344, this.context) ) { case 1: { - this.state = 2851; + this.state = 2849; this.match(MySqlParser.KW_COLUMN); } break; } - this.state = 2854; + this.state = 2852; this.columnName(); - this.state = 2862; + this.state = 2860; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 345, this.context) ) { case 1: { - this.state = 2855; + this.state = 2853; this.match(MySqlParser.KW_SET); - this.state = 2856; + this.state = 2854; this.match(MySqlParser.KW_DEFAULT); - this.state = 2857; + this.state = 2855; this.defaultValue(); } break; case 2: { - this.state = 2858; + this.state = 2856; this.match(MySqlParser.KW_SET); - this.state = 2859; + this.state = 2857; _la = this.tokenStream.LA(1); if(!(_la === 435 || _la === 686)) { this.errorHandler.recoverInline(this); @@ -11500,9 +11498,9 @@ export class MySqlParser extends SQLParserBase { break; case 3: { - this.state = 2860; + this.state = 2858; this.match(MySqlParser.KW_DROP); - this.state = 2861; + this.state = 2859; this.match(MySqlParser.KW_DEFAULT); } break; @@ -11513,13 +11511,13 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByAlterIndexVisibilityContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 2864; + this.state = 2862; this.match(MySqlParser.KW_ALTER); - this.state = 2865; + this.state = 2863; this.match(MySqlParser.KW_INDEX); - this.state = 2866; + this.state = 2864; this.indexName(); - this.state = 2867; + this.state = 2865; _la = this.tokenStream.LA(1); if(!(_la === 435 || _la === 686)) { this.errorHandler.recoverInline(this); @@ -11534,38 +11532,38 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByChangeColumnContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 2869; + this.state = 2867; this.match(MySqlParser.KW_CHANGE); - this.state = 2871; + this.state = 2869; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 346, this.context) ) { case 1: { - this.state = 2870; + this.state = 2868; this.match(MySqlParser.KW_COLUMN); } break; } - this.state = 2873; + this.state = 2871; (localContext as AlterByChangeColumnContext)._oldColumn = this.columnName(); - this.state = 2874; + this.state = 2872; (localContext as AlterByChangeColumnContext)._newColumn = this.columnNameCreate(); - this.state = 2875; + this.state = 2873; this.columnDefinition(); - this.state = 2879; + this.state = 2877; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_FIRST: { - this.state = 2876; + this.state = 2874; this.match(MySqlParser.KW_FIRST); } break; case MySqlParser.KW_AFTER: { - this.state = 2877; + this.state = 2875; this.match(MySqlParser.KW_AFTER); - this.state = 2878; + this.state = 2876; this.columnName(); } break; @@ -11651,42 +11649,42 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByDefaultCharsetContext(localContext); this.enterOuterAlt(localContext, 16); { - this.state = 2882; + this.state = 2880; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 2881; + this.state = 2879; this.match(MySqlParser.KW_DEFAULT); } } - this.state = 2884; + this.state = 2882; this.match(MySqlParser.KW_CHARACTER); - this.state = 2885; + this.state = 2883; this.match(MySqlParser.KW_SET); - this.state = 2886; + this.state = 2884; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 2887; + this.state = 2885; this.charsetName(); - this.state = 2893; + this.state = 2891; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 2888; + this.state = 2886; this.match(MySqlParser.KW_COLLATE); - this.state = 2890; + this.state = 2888; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2889; + this.state = 2887; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2892; + this.state = 2890; this.collationName(); } } @@ -11697,40 +11695,40 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByConvertCharsetContext(localContext); this.enterOuterAlt(localContext, 17); { - this.state = 2895; + this.state = 2893; this.match(MySqlParser.KW_CONVERT); - this.state = 2896; + this.state = 2894; this.match(MySqlParser.KW_TO); - this.state = 2900; + this.state = 2898; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CHARSET: { - this.state = 2897; + this.state = 2895; this.match(MySqlParser.KW_CHARSET); } break; case MySqlParser.KW_CHARACTER: { - this.state = 2898; + this.state = 2896; this.match(MySqlParser.KW_CHARACTER); - this.state = 2899; + this.state = 2897; this.match(MySqlParser.KW_SET); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 2902; + this.state = 2900; this.charsetName(); - this.state = 2905; + this.state = 2903; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 2903; + this.state = 2901; this.match(MySqlParser.KW_COLLATE); - this.state = 2904; + this.state = 2902; this.collationName(); } } @@ -11741,7 +11739,7 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterKeysContext(localContext); this.enterOuterAlt(localContext, 18); { - this.state = 2907; + this.state = 2905; _la = this.tokenStream.LA(1); if(!(_la === 368 || _la === 375)) { this.errorHandler.recoverInline(this); @@ -11750,7 +11748,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2908; + this.state = 2906; this.match(MySqlParser.KW_KEYS); } break; @@ -11758,7 +11756,7 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterTableSpaceOptionContext(localContext); this.enterOuterAlt(localContext, 19); { - this.state = 2909; + this.state = 2907; _la = this.tokenStream.LA(1); if(!(_la === 369 || _la === 425)) { this.errorHandler.recoverInline(this); @@ -11767,7 +11765,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2910; + this.state = 2908; this.match(MySqlParser.KW_TABLESPACE); } break; @@ -11775,19 +11773,19 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByDropColumnContext(localContext); this.enterOuterAlt(localContext, 20); { - this.state = 2911; + this.state = 2909; this.match(MySqlParser.KW_DROP); - this.state = 2913; + this.state = 2911; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 353, this.context) ) { case 1: { - this.state = 2912; + this.state = 2910; this.match(MySqlParser.KW_COLUMN); } break; } - this.state = 2915; + this.state = 2913; this.columnName(); } break; @@ -11795,9 +11793,9 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByDropIndexContext(localContext); this.enterOuterAlt(localContext, 21); { - this.state = 2916; + this.state = 2914; this.match(MySqlParser.KW_DROP); - this.state = 2917; + this.state = 2915; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { this.errorHandler.recoverInline(this); @@ -11806,7 +11804,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2918; + this.state = 2916; this.indexName(); } break; @@ -11814,11 +11812,11 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByDropPrimaryKeyContext(localContext); this.enterOuterAlt(localContext, 22); { - this.state = 2919; + this.state = 2917; this.match(MySqlParser.KW_DROP); - this.state = 2920; + this.state = 2918; this.match(MySqlParser.KW_PRIMARY); - this.state = 2921; + this.state = 2919; this.match(MySqlParser.KW_KEY); } break; @@ -11826,13 +11824,13 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByDropForeignKeyContext(localContext); this.enterOuterAlt(localContext, 23); { - this.state = 2922; + this.state = 2920; this.match(MySqlParser.KW_DROP); - this.state = 2923; + this.state = 2921; this.match(MySqlParser.KW_FOREIGN); - this.state = 2924; + this.state = 2922; this.match(MySqlParser.KW_KEY); - this.state = 2925; + this.state = 2923; (localContext as AlterByDropForeignKeyContext)._fk_symbol = this.uid(); } break; @@ -11840,7 +11838,7 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByForceContext(localContext); this.enterOuterAlt(localContext, 24); { - this.state = 2926; + this.state = 2924; this.match(MySqlParser.KW_FORCE); } break; @@ -11848,19 +11846,19 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByLockContext(localContext); this.enterOuterAlt(localContext, 25); { - this.state = 2927; + this.state = 2925; this.match(MySqlParser.KW_LOCK); - this.state = 2929; + this.state = 2927; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 2928; + this.state = 2926; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 2931; + this.state = 2929; (localContext as AlterByLockContext)._lockType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 389 || _la === 505 || _la === 595)) { @@ -11876,36 +11874,36 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByModifyColumnContext(localContext); this.enterOuterAlt(localContext, 26); { - this.state = 2932; + this.state = 2930; this.match(MySqlParser.KW_MODIFY); - this.state = 2934; + this.state = 2932; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 355, this.context) ) { case 1: { - this.state = 2933; + this.state = 2931; this.match(MySqlParser.KW_COLUMN); } break; } - this.state = 2936; + this.state = 2934; this.columnName(); - this.state = 2937; + this.state = 2935; this.columnDefinition(); - this.state = 2941; + this.state = 2939; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_FIRST: { - this.state = 2938; + this.state = 2936; this.match(MySqlParser.KW_FIRST); } break; case MySqlParser.KW_AFTER: { - this.state = 2939; + this.state = 2937; this.match(MySqlParser.KW_AFTER); - this.state = 2940; + this.state = 2938; this.columnName(); } break; @@ -11991,11 +11989,11 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByOrderContext(localContext); this.enterOuterAlt(localContext, 27); { - this.state = 2943; + this.state = 2941; this.match(MySqlParser.KW_ORDER); - this.state = 2944; + this.state = 2942; this.match(MySqlParser.KW_BY); - this.state = 2945; + this.state = 2943; this.columnNames(); } break; @@ -12003,15 +12001,15 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByRenameColumnContext(localContext); this.enterOuterAlt(localContext, 28); { - this.state = 2946; + this.state = 2944; this.match(MySqlParser.KW_RENAME); - this.state = 2947; + this.state = 2945; this.match(MySqlParser.KW_COLUMN); - this.state = 2948; + this.state = 2946; (localContext as AlterByRenameColumnContext)._oldColumn = this.columnName(); - this.state = 2949; + this.state = 2947; this.match(MySqlParser.KW_TO); - this.state = 2950; + this.state = 2948; (localContext as AlterByRenameColumnContext)._newColumn = this.columnNameCreate(); } break; @@ -12019,9 +12017,9 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByRenameIndexContext(localContext); this.enterOuterAlt(localContext, 29); { - this.state = 2952; + this.state = 2950; this.match(MySqlParser.KW_RENAME); - this.state = 2953; + this.state = 2951; (localContext as AlterByRenameIndexContext)._indexFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { @@ -12031,11 +12029,11 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2954; + this.state = 2952; this.indexName(); - this.state = 2955; + this.state = 2953; this.match(MySqlParser.KW_TO); - this.state = 2956; + this.state = 2954; this.indexNameCreate(); } break; @@ -12043,14 +12041,14 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByRenameContext(localContext); this.enterOuterAlt(localContext, 30); { - this.state = 2958; + this.state = 2956; this.match(MySqlParser.KW_RENAME); - this.state = 2960; + this.state = 2958; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13 || _la === 176) { { - this.state = 2959; + this.state = 2957; (localContext as AlterByRenameContext)._renameFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 13 || _la === 176)) { @@ -12063,7 +12061,7 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 2962; + this.state = 2960; this.tableNameCreate(); } break; @@ -12071,7 +12069,7 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByValidateContext(localContext); this.enterOuterAlt(localContext, 31); { - this.state = 2963; + this.state = 2961; _la = this.tokenStream.LA(1); if(!(_la === 194 || _la === 690)) { this.errorHandler.recoverInline(this); @@ -12080,7 +12078,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2964; + this.state = 2962; this.match(MySqlParser.KW_VALIDATION); } break; @@ -12088,7 +12086,7 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterPartitionContext(localContext); this.enterOuterAlt(localContext, 32); { - this.state = 2965; + this.state = 2963; this.alterPartitionSpecification(); } break; @@ -12113,38 +12111,38 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 148, MySqlParser.RULE_alterPartitionSpecification); let _la: number; try { - this.state = 3066; + this.state = 3064; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ADD: localContext = new AlterByAddPartitionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2968; + this.state = 2966; this.match(MySqlParser.KW_ADD); - this.state = 2969; + this.state = 2967; this.match(MySqlParser.KW_PARTITION); - this.state = 2970; + this.state = 2968; this.match(MySqlParser.LR_BRACKET); - this.state = 2971; + this.state = 2969; this.partitionDefinition(); - this.state = 2976; + this.state = 2974; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 2972; + this.state = 2970; this.match(MySqlParser.COMMA); - this.state = 2973; + this.state = 2971; this.partitionDefinition(); } } - this.state = 2978; + this.state = 2976; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2979; + this.state = 2977; this.match(MySqlParser.RR_BRACKET); } break; @@ -12152,11 +12150,11 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByDropPartitionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2981; + this.state = 2979; this.match(MySqlParser.KW_DROP); - this.state = 2982; + this.state = 2980; this.match(MySqlParser.KW_PARTITION); - this.state = 2983; + this.state = 2981; this.partitionNames(); } break; @@ -12164,11 +12162,11 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByDiscardPartitionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2984; + this.state = 2982; this.match(MySqlParser.KW_DISCARD); - this.state = 2985; + this.state = 2983; this.match(MySqlParser.KW_PARTITION); - this.state = 2988; + this.state = 2986; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -12721,20 +12719,20 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 2986; + this.state = 2984; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 2987; + this.state = 2985; this.match(MySqlParser.KW_ALL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 2990; + this.state = 2988; this.match(MySqlParser.KW_TABLESPACE); } break; @@ -12742,11 +12740,11 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByImportPartitionContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2991; + this.state = 2989; this.match(MySqlParser.KW_IMPORT); - this.state = 2992; + this.state = 2990; this.match(MySqlParser.KW_PARTITION); - this.state = 2995; + this.state = 2993; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -13299,20 +13297,20 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 2993; + this.state = 2991; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 2994; + this.state = 2992; this.match(MySqlParser.KW_ALL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 2997; + this.state = 2995; this.match(MySqlParser.KW_TABLESPACE); } break; @@ -13320,11 +13318,11 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByTruncatePartitionContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2998; + this.state = 2996; this.match(MySqlParser.KW_TRUNCATE); - this.state = 2999; + this.state = 2997; this.match(MySqlParser.KW_PARTITION); - this.state = 3002; + this.state = 3000; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -13877,13 +13875,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 3000; + this.state = 2998; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 3001; + this.state = 2999; this.match(MySqlParser.KW_ALL); } break; @@ -13896,11 +13894,11 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByCoalescePartitionContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 3004; + this.state = 3002; this.match(MySqlParser.KW_COALESCE); - this.state = 3005; + this.state = 3003; this.match(MySqlParser.KW_PARTITION); - this.state = 3006; + this.state = 3004; this.decimalLiteral(); } break; @@ -13908,35 +13906,35 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByReorganizePartitionContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 3007; + this.state = 3005; this.match(MySqlParser.KW_REORGANIZE); - this.state = 3008; + this.state = 3006; this.match(MySqlParser.KW_PARTITION); - this.state = 3009; + this.state = 3007; this.partitionNames(); - this.state = 3010; + this.state = 3008; this.match(MySqlParser.KW_INTO); - this.state = 3011; + this.state = 3009; this.match(MySqlParser.LR_BRACKET); - this.state = 3012; + this.state = 3010; this.partitionDefinition(); - this.state = 3017; + this.state = 3015; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3013; + this.state = 3011; this.match(MySqlParser.COMMA); - this.state = 3014; + this.state = 3012; this.partitionDefinition(); } } - this.state = 3019; + this.state = 3017; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3020; + this.state = 3018; this.match(MySqlParser.RR_BRACKET); } break; @@ -13944,24 +13942,24 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByExchangePartitionContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 3022; + this.state = 3020; this.match(MySqlParser.KW_EXCHANGE); - this.state = 3023; + this.state = 3021; this.match(MySqlParser.KW_PARTITION); - this.state = 3024; + this.state = 3022; this.partitionName(); - this.state = 3025; + this.state = 3023; this.match(MySqlParser.KW_WITH); - this.state = 3026; + this.state = 3024; this.match(MySqlParser.KW_TABLE); - this.state = 3027; + this.state = 3025; this.tableName(); - this.state = 3030; + this.state = 3028; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 364, this.context) ) { case 1: { - this.state = 3028; + this.state = 3026; (localContext as AlterByExchangePartitionContext)._validationFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 194 || _la === 690)) { @@ -13971,7 +13969,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3029; + this.state = 3027; this.match(MySqlParser.KW_VALIDATION); } break; @@ -13982,11 +13980,11 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByAnalyzePartitionContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 3032; + this.state = 3030; this.match(MySqlParser.KW_ANALYZE); - this.state = 3033; + this.state = 3031; this.match(MySqlParser.KW_PARTITION); - this.state = 3036; + this.state = 3034; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -14539,13 +14537,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 3034; + this.state = 3032; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 3035; + this.state = 3033; this.match(MySqlParser.KW_ALL); } break; @@ -14558,11 +14556,11 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByCheckPartitionContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 3038; + this.state = 3036; this.match(MySqlParser.KW_CHECK); - this.state = 3039; + this.state = 3037; this.match(MySqlParser.KW_PARTITION); - this.state = 3042; + this.state = 3040; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -15115,13 +15113,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 3040; + this.state = 3038; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 3041; + this.state = 3039; this.match(MySqlParser.KW_ALL); } break; @@ -15134,11 +15132,11 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByOptimizePartitionContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 3044; + this.state = 3042; this.match(MySqlParser.KW_OPTIMIZE); - this.state = 3045; + this.state = 3043; this.match(MySqlParser.KW_PARTITION); - this.state = 3048; + this.state = 3046; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -15691,13 +15689,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 3046; + this.state = 3044; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 3047; + this.state = 3045; this.match(MySqlParser.KW_ALL); } break; @@ -15710,11 +15708,11 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByRebuildPartitionContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 3050; + this.state = 3048; this.match(MySqlParser.KW_REBUILD); - this.state = 3051; + this.state = 3049; this.match(MySqlParser.KW_PARTITION); - this.state = 3054; + this.state = 3052; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -16267,13 +16265,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 3052; + this.state = 3050; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 3053; + this.state = 3051; this.match(MySqlParser.KW_ALL); } break; @@ -16286,11 +16284,11 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByRepairPartitionContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 3056; + this.state = 3054; this.match(MySqlParser.KW_REPAIR); - this.state = 3057; + this.state = 3055; this.match(MySqlParser.KW_PARTITION); - this.state = 3060; + this.state = 3058; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -16843,13 +16841,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 3058; + this.state = 3056; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 3059; + this.state = 3057; this.match(MySqlParser.KW_ALL); } break; @@ -16862,9 +16860,9 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByRemovePartitioningContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 3062; + this.state = 3060; this.match(MySqlParser.KW_REMOVE); - this.state = 3063; + this.state = 3061; this.match(MySqlParser.KW_PARTITIONING); } break; @@ -16872,9 +16870,9 @@ export class MySqlParser extends SQLParserBase { localContext = new AlterByUpgradePartitioningContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 3064; + this.state = 3062; this.match(MySqlParser.KW_UPGRADE); - this.state = 3065; + this.state = 3063; this.match(MySqlParser.KW_PARTITIONING); } break; @@ -16903,9 +16901,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3068; + this.state = 3066; this.match(MySqlParser.KW_DROP); - this.state = 3069; + this.state = 3067; localContext._dbFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 152)) { @@ -16915,17 +16913,17 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3071; + this.state = 3069; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 371, this.context) ) { case 1: { - this.state = 3070; + this.state = 3068; this.ifExists(); } break; } - this.state = 3073; + this.state = 3071; this.databaseName(); } } @@ -16949,21 +16947,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3075; + this.state = 3073; this.match(MySqlParser.KW_DROP); - this.state = 3076; + this.state = 3074; this.match(MySqlParser.KW_EVENT); - this.state = 3078; + this.state = 3076; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 372, this.context) ) { case 1: { - this.state = 3077; + this.state = 3075; this.ifExists(); } break; } - this.state = 3080; + this.state = 3078; localContext._event_name = this.fullId(); } } @@ -16989,16 +16987,16 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3082; + this.state = 3080; this.match(MySqlParser.KW_DROP); - this.state = 3083; + this.state = 3081; this.match(MySqlParser.KW_INDEX); - this.state = 3085; + this.state = 3083; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 373, this.context) ) { case 1: { - this.state = 3084; + this.state = 3082; localContext._inTimeAction = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 508 || _la === 514)) { @@ -17011,36 +17009,36 @@ export class MySqlParser extends SQLParserBase { } break; } - this.state = 3087; + this.state = 3085; this.indexName(); - this.state = 3088; + this.state = 3086; this.match(MySqlParser.KW_ON); - this.state = 3089; + this.state = 3087; this.tableName(); - this.state = 3102; + this.state = 3100; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 377, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 3100; + this.state = 3098; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ALGORITHM: { - this.state = 3090; + this.state = 3088; this.match(MySqlParser.KW_ALGORITHM); - this.state = 3092; + this.state = 3090; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 3091; + this.state = 3089; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 3094; + this.state = 3092; localContext._algType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 357 || _la === 430)) { @@ -17054,19 +17052,19 @@ export class MySqlParser extends SQLParserBase { break; case MySqlParser.KW_LOCK: { - this.state = 3095; + this.state = 3093; this.match(MySqlParser.KW_LOCK); - this.state = 3097; + this.state = 3095; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 3096; + this.state = 3094; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 3099; + this.state = 3097; localContext._lockType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 389 || _la === 505 || _la === 595)) { @@ -17083,7 +17081,7 @@ export class MySqlParser extends SQLParserBase { } } } - this.state = 3104; + this.state = 3102; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 377, this.context); } @@ -17110,27 +17108,27 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3105; + this.state = 3103; this.match(MySqlParser.KW_DROP); - this.state = 3106; + this.state = 3104; this.match(MySqlParser.KW_LOGFILE); - this.state = 3107; + this.state = 3105; this.match(MySqlParser.KW_GROUP); - this.state = 3108; + this.state = 3106; localContext._logFileGroupName = this.uid(); - this.state = 3109; + this.state = 3107; this.match(MySqlParser.KW_ENGINE); - this.state = 3111; + this.state = 3109; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 3110; + this.state = 3108; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 3113; + this.state = 3111; this.engineName(); } } @@ -17154,21 +17152,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3115; + this.state = 3113; this.match(MySqlParser.KW_DROP); - this.state = 3116; + this.state = 3114; this.match(MySqlParser.KW_PROCEDURE); - this.state = 3118; + this.state = 3116; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 379, this.context) ) { case 1: { - this.state = 3117; + this.state = 3115; this.ifExists(); } break; } - this.state = 3120; + this.state = 3118; localContext._sp_name = this.fullId(); } } @@ -17192,21 +17190,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3122; + this.state = 3120; this.match(MySqlParser.KW_DROP); - this.state = 3123; + this.state = 3121; this.match(MySqlParser.KW_FUNCTION); - this.state = 3125; + this.state = 3123; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 380, this.context) ) { case 1: { - this.state = 3124; + this.state = 3122; this.ifExists(); } break; } - this.state = 3127; + this.state = 3125; this.functionName(); } } @@ -17230,21 +17228,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3129; + this.state = 3127; this.match(MySqlParser.KW_DROP); - this.state = 3130; + this.state = 3128; this.match(MySqlParser.KW_SERVER); - this.state = 3132; + this.state = 3130; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 381, this.context) ) { case 1: { - this.state = 3131; + this.state = 3129; this.ifExists(); } break; } - this.state = 3134; + this.state = 3132; localContext._serverName = this.uid(); } } @@ -17269,25 +17267,25 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3136; + this.state = 3134; this.match(MySqlParser.KW_DROP); - this.state = 3137; + this.state = 3135; this.match(MySqlParser.KW_SPATIAL); - this.state = 3138; + this.state = 3136; this.match(MySqlParser.KW_REFERENCE); - this.state = 3139; + this.state = 3137; this.match(MySqlParser.KW_SYSTEM); - this.state = 3141; + this.state = 3139; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 3140; + this.state = 3138; this.ifExists(); } } - this.state = 3143; + this.state = 3141; this.match(MySqlParser.DECIMAL_LITERAL); } } @@ -17312,38 +17310,38 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3145; + this.state = 3143; this.match(MySqlParser.KW_DROP); - this.state = 3147; + this.state = 3145; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 660) { { - this.state = 3146; + this.state = 3144; this.match(MySqlParser.KW_TEMPORARY); } } - this.state = 3149; + this.state = 3147; this.match(MySqlParser.KW_TABLE); - this.state = 3151; + this.state = 3149; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 384, this.context) ) { case 1: { - this.state = 3150; + this.state = 3148; this.ifExists(); } break; } - this.state = 3153; + this.state = 3151; this.tableNames(); - this.state = 3155; + this.state = 3153; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 22 || _la === 146) { { - this.state = 3154; + this.state = 3152; localContext._dropType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 22 || _la === 146)) { @@ -17379,40 +17377,40 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3157; + this.state = 3155; this.match(MySqlParser.KW_DROP); - this.state = 3159; + this.state = 3157; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 180) { { - this.state = 3158; + this.state = 3156; this.match(MySqlParser.KW_UNDO); } } - this.state = 3161; + this.state = 3159; this.match(MySqlParser.KW_TABLESPACE); - this.state = 3162; + this.state = 3160; this.tableSpaceName(); - this.state = 3168; + this.state = 3166; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 380) { { - this.state = 3163; + this.state = 3161; this.match(MySqlParser.KW_ENGINE); - this.state = 3165; + this.state = 3163; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 3164; + this.state = 3162; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 3167; + this.state = 3165; this.engineName(); } } @@ -17439,21 +17437,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3170; + this.state = 3168; this.match(MySqlParser.KW_DROP); - this.state = 3171; + this.state = 3169; this.match(MySqlParser.KW_TRIGGER); - this.state = 3173; + this.state = 3171; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 389, this.context) ) { case 1: { - this.state = 3172; + this.state = 3170; this.ifExists(); } break; } - this.state = 3175; + this.state = 3173; localContext._trigger_name = this.fullId(); } } @@ -17478,44 +17476,44 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3177; + this.state = 3175; this.match(MySqlParser.KW_DROP); - this.state = 3178; + this.state = 3176; this.match(MySqlParser.KW_VIEW); - this.state = 3180; + this.state = 3178; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 390, this.context) ) { case 1: { - this.state = 3179; + this.state = 3177; this.ifExists(); } break; } - this.state = 3182; + this.state = 3180; this.viewName(); - this.state = 3187; + this.state = 3185; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3183; + this.state = 3181; this.match(MySqlParser.COMMA); - this.state = 3184; + this.state = 3182; this.viewName(); } } - this.state = 3189; + this.state = 3187; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3191; + this.state = 3189; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 22 || _la === 146) { { - this.state = 3190; + this.state = 3188; localContext._dropType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 22 || _la === 146)) { @@ -17550,21 +17548,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3193; + this.state = 3191; this.match(MySqlParser.KW_DROP); - this.state = 3194; + this.state = 3192; this.match(MySqlParser.KW_ROLE); - this.state = 3196; + this.state = 3194; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 393, this.context) ) { case 1: { - this.state = 3195; + this.state = 3193; this.ifExists(); } break; } - this.state = 3198; + this.state = 3196; this.userOrRoleNames(); } } @@ -17587,61 +17585,61 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 176, MySqlParser.RULE_setRole); let _la: number; try { - this.state = 3220; + this.state = 3218; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 396, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3200; + this.state = 3198; this.match(MySqlParser.KW_SET); - this.state = 3201; + this.state = 3199; this.match(MySqlParser.KW_DEFAULT); - this.state = 3202; + this.state = 3200; this.match(MySqlParser.KW_ROLE); - this.state = 3206; + this.state = 3204; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 394, this.context) ) { case 1: { - this.state = 3203; + this.state = 3201; this.match(MySqlParser.KW_NONE); } break; case 2: { - this.state = 3204; + this.state = 3202; this.match(MySqlParser.KW_ALL); } break; case 3: { - this.state = 3205; + this.state = 3203; this.userOrRoleNames(); } break; } - this.state = 3208; + this.state = 3206; this.match(MySqlParser.KW_TO); { - this.state = 3209; + this.state = 3207; this.userOrRoleName(); } - this.state = 3214; + this.state = 3212; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3210; + this.state = 3208; this.match(MySqlParser.COMMA); { - this.state = 3211; + this.state = 3209; this.userOrRoleName(); } } } - this.state = 3216; + this.state = 3214; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17650,11 +17648,11 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3217; + this.state = 3215; this.match(MySqlParser.KW_SET); - this.state = 3218; + this.state = 3216; this.match(MySqlParser.KW_ROLE); - this.state = 3219; + this.state = 3217; this.roleOption(); } break; @@ -17681,25 +17679,25 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3222; + this.state = 3220; this.match(MySqlParser.KW_RENAME); - this.state = 3223; + this.state = 3221; this.match(MySqlParser.KW_TABLE); - this.state = 3224; + this.state = 3222; this.renameTableClause(); - this.state = 3229; + this.state = 3227; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3225; + this.state = 3223; this.match(MySqlParser.COMMA); - this.state = 3226; + this.state = 3224; this.renameTableClause(); } } - this.state = 3231; + this.state = 3229; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17725,11 +17723,11 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3232; + this.state = 3230; this.tableName(); - this.state = 3233; + this.state = 3231; this.match(MySqlParser.KW_TO); - this.state = 3234; + this.state = 3232; this.tableNameCreate(); } } @@ -17754,19 +17752,19 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3236; + this.state = 3234; this.match(MySqlParser.KW_TRUNCATE); - this.state = 3238; + this.state = 3236; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 173) { { - this.state = 3237; + this.state = 3235; this.match(MySqlParser.KW_TABLE); } } - this.state = 3240; + this.state = 3238; this.tableName(); } } @@ -17790,34 +17788,34 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3242; + this.state = 3240; this.match(MySqlParser.KW_CALL); - this.state = 3243; + this.state = 3241; localContext._sp_name = this.fullId(); - this.state = 3250; + this.state = 3248; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 400, this.context) ) { case 1: { - this.state = 3244; + this.state = 3242; this.match(MySqlParser.LR_BRACKET); - this.state = 3247; + this.state = 3245; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 399, this.context) ) { case 1: { - this.state = 3245; + this.state = 3243; this.constants(); } break; case 2: { - this.state = 3246; + this.state = 3244; this.expressions(); } break; } - this.state = 3249; + this.state = 3247; this.match(MySqlParser.RR_BRACKET); } break; @@ -17842,20 +17840,20 @@ export class MySqlParser extends SQLParserBase { let localContext = new DeleteStatementContext(this.context, this.state); this.enterRule(localContext, 186, MySqlParser.RULE_deleteStatement); try { - this.state = 3254; + this.state = 3252; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 401, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3252; + this.state = 3250; this.singleDeleteStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3253; + this.state = 3251; this.multipleDeleteStatement(); } break; @@ -17881,9 +17879,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3256; + this.state = 3254; this.match(MySqlParser.KW_DO); - this.state = 3257; + this.state = 3255; this.expressions(); } } @@ -17905,34 +17903,34 @@ export class MySqlParser extends SQLParserBase { let localContext = new HandlerStatementContext(this.context, this.state); this.enterRule(localContext, 190, MySqlParser.RULE_handlerStatement); try { - this.state = 3263; + this.state = 3261; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 402, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3259; + this.state = 3257; this.handlerOpenStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3260; + this.state = 3258; this.handlerReadIndexStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3261; + this.state = 3259; this.handlerReadStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3262; + this.state = 3260; this.handlerCloseStatement(); } break; @@ -17959,14 +17957,14 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3265; + this.state = 3263; this.match(MySqlParser.KW_INSERT); - this.state = 3267; + this.state = 3265; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 43 || _la === 76 || _la === 107) { { - this.state = 3266; + this.state = 3264; localContext._priority = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 43 || _la === 76 || _la === 107)) { @@ -17979,89 +17977,89 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3270; + this.state = 3268; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 3269; + this.state = 3267; this.match(MySqlParser.KW_IGNORE); } } - this.state = 3273; + this.state = 3271; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 88) { { - this.state = 3272; + this.state = 3270; this.match(MySqlParser.KW_INTO); } } - this.state = 3275; + this.state = 3273; this.tableName(); - this.state = 3282; + this.state = 3280; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130) { { - this.state = 3276; + this.state = 3274; this.match(MySqlParser.KW_PARTITION); - this.state = 3277; + this.state = 3275; this.match(MySqlParser.LR_BRACKET); - this.state = 3279; + this.state = 3277; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 3278; + this.state = 3276; this.partitionNames(); } } - this.state = 3281; + this.state = 3279; this.match(MySqlParser.RR_BRACKET); } } - this.state = 3295; + this.state = 3293; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 411, this.context) ) { case 1: { - this.state = 3285; + this.state = 3283; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 408, this.context) ) { case 1: { - this.state = 3284; + this.state = 3282; this.fullColumnNames(); } break; } - this.state = 3289; + this.state = 3287; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 409, this.context) ) { case 1: { - this.state = 3287; + this.state = 3285; this.valuesOrValueList(); } break; case 2: { - this.state = 3288; + this.state = 3286; this.selectOrTableOrValues(); } break; } - this.state = 3292; + this.state = 3290; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 410, this.context) ) { case 1: { - this.state = 3291; + this.state = 3289; this.asRowAlias(); } break; @@ -18070,50 +18068,50 @@ export class MySqlParser extends SQLParserBase { break; case 2: { - this.state = 3294; + this.state = 3292; this.setAssignmentList(); } break; } - this.state = 3298; + this.state = 3296; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 3297; + this.state = 3295; this.asRowAlias(); } } - this.state = 3312; + this.state = 3310; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 119) { { - this.state = 3300; + this.state = 3298; this.match(MySqlParser.KW_ON); - this.state = 3301; + this.state = 3299; this.match(MySqlParser.KW_DUPLICATE); - this.state = 3302; + this.state = 3300; this.match(MySqlParser.KW_KEY); - this.state = 3303; + this.state = 3301; this.match(MySqlParser.KW_UPDATE); - this.state = 3304; + this.state = 3302; localContext._duplicatedFirst = this.updatedElement(); - this.state = 3309; + this.state = 3307; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3305; + this.state = 3303; this.match(MySqlParser.COMMA); - this.state = 3306; + this.state = 3304; localContext._updatedElement = this.updatedElement(); localContext._duplicatedElements.push(localContext._updatedElement); } } - this.state = 3311; + this.state = 3309; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -18142,16 +18140,16 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3314; + this.state = 3312; this.match(MySqlParser.KW_AS); - this.state = 3315; + this.state = 3313; localContext._rowAlias = this.uid(); - this.state = 3317; + this.state = 3315; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 415, this.context) ) { case 1: { - this.state = 3316; + this.state = 3314; this.fullColumnNames(); } break; @@ -18176,30 +18174,30 @@ export class MySqlParser extends SQLParserBase { let localContext = new SelectOrTableOrValuesContext(this.context, this.state); this.enterRule(localContext, 196, MySqlParser.RULE_selectOrTableOrValues); try { - this.state = 3323; + this.state = 3321; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SELECT: case MySqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 1); { - this.state = 3319; + this.state = 3317; this.selectStatement(); } break; case MySqlParser.KW_TABLE: this.enterOuterAlt(localContext, 2); { - this.state = 3320; + this.state = 3318; this.match(MySqlParser.KW_TABLE); - this.state = 3321; + this.state = 3319; this.tableName(); } break; case MySqlParser.KW_VALUES: this.enterOuterAlt(localContext, 3); { - this.state = 3322; + this.state = 3320; this.rowValuesList(); } break; @@ -18228,22 +18226,22 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3325; + this.state = 3323; this.interSectQuery(); - this.state = 3331; + this.state = 3329; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3326; + this.state = 3324; this.match(MySqlParser.KW_INTERSECT); - this.state = 3328; + this.state = 3326; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 49) { { - this.state = 3327; + this.state = 3325; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49)) { this.errorHandler.recoverInline(this); @@ -18255,11 +18253,11 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3330; + this.state = 3328; this.interSectQuery(); } } - this.state = 3333; + this.state = 3331; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 828); @@ -18286,24 +18284,24 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3336; + this.state = 3334; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 3335; + this.state = 3333; this.match(MySqlParser.LR_BRACKET); } } - this.state = 3338; + this.state = 3336; this.querySpecification(); - this.state = 3340; + this.state = 3338; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 420, this.context) ) { case 1: { - this.state = 3339; + this.state = 3337; this.match(MySqlParser.RR_BRACKET); } break; @@ -18331,16 +18329,16 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3342; + this.state = 3340; this.match(MySqlParser.KW_LOAD); - this.state = 3343; + this.state = 3341; this.match(MySqlParser.KW_DATA); - this.state = 3345; + this.state = 3343; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 107 || _la === 347) { { - this.state = 3344; + this.state = 3342; localContext._priority = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 107 || _la === 347)) { @@ -18353,26 +18351,26 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3348; + this.state = 3346; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 450) { { - this.state = 3347; + this.state = 3345; this.match(MySqlParser.KW_LOCAL); } } - this.state = 3350; + this.state = 3348; this.match(MySqlParser.KW_INFILE); - this.state = 3351; + this.state = 3349; localContext._filename = this.match(MySqlParser.STRING_LITERAL); - this.state = 3353; + this.state = 3351; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79 || _la === 143) { { - this.state = 3352; + this.state = 3350; localContext._violation = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 79 || _la === 143)) { @@ -18385,48 +18383,48 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3355; + this.state = 3353; this.match(MySqlParser.KW_INTO); - this.state = 3356; + this.state = 3354; this.match(MySqlParser.KW_TABLE); - this.state = 3357; + this.state = 3355; this.tableName(); - this.state = 3363; + this.state = 3361; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130) { { - this.state = 3358; + this.state = 3356; this.match(MySqlParser.KW_PARTITION); - this.state = 3359; + this.state = 3357; this.match(MySqlParser.LR_BRACKET); - this.state = 3360; + this.state = 3358; this.partitionNames(); - this.state = 3361; + this.state = 3359; this.match(MySqlParser.RR_BRACKET); } } - this.state = 3368; + this.state = 3366; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 26) { { - this.state = 3365; + this.state = 3363; this.match(MySqlParser.KW_CHARACTER); - this.state = 3366; + this.state = 3364; this.match(MySqlParser.KW_SET); - this.state = 3367; + this.state = 3365; localContext._charset = this.charsetName(); } } - this.state = 3376; + this.state = 3374; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 337 || _la === 398) { { - this.state = 3370; + this.state = 3368; localContext._fieldsFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 337 || _la === 398)) { @@ -18436,57 +18434,57 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3372; + this.state = 3370; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3371; + this.state = 3369; this.selectFieldsInto(); } } - this.state = 3374; + this.state = 3372; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 56 || _la === 58 || _la === 123 || _la === 174); } } - this.state = 3384; + this.state = 3382; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 102) { { - this.state = 3378; + this.state = 3376; this.match(MySqlParser.KW_LINES); - this.state = 3380; + this.state = 3378; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3379; + this.state = 3377; this.selectLinesInto(); } } - this.state = 3382; + this.state = 3380; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 171 || _la === 174); } } - this.state = 3390; + this.state = 3388; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 3386; + this.state = 3384; this.match(MySqlParser.KW_IGNORE); - this.state = 3387; + this.state = 3385; this.decimalLiteral(); - this.state = 3388; + this.state = 3386; localContext._linesFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 102 || _la === 587)) { @@ -18499,58 +18497,58 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3403; + this.state = 3401; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 432, this.context) ) { case 1: { - this.state = 3392; + this.state = 3390; this.match(MySqlParser.LR_BRACKET); - this.state = 3393; + this.state = 3391; this.assignmentField(); - this.state = 3398; + this.state = 3396; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3394; + this.state = 3392; this.match(MySqlParser.COMMA); - this.state = 3395; + this.state = 3393; this.assignmentField(); } } - this.state = 3400; + this.state = 3398; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3401; + this.state = 3399; this.match(MySqlParser.RR_BRACKET); } break; } - this.state = 3414; + this.state = 3412; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 434, this.context) ) { case 1: { - this.state = 3405; + this.state = 3403; this.match(MySqlParser.KW_SET); - this.state = 3406; + this.state = 3404; this.updatedElement(); - this.state = 3411; + this.state = 3409; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3407; + this.state = 3405; this.match(MySqlParser.COMMA); - this.state = 3408; + this.state = 3406; this.updatedElement(); } } - this.state = 3413; + this.state = 3411; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -18580,16 +18578,16 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3416; + this.state = 3414; this.match(MySqlParser.KW_LOAD); - this.state = 3417; + this.state = 3415; this.match(MySqlParser.KW_XML); - this.state = 3419; + this.state = 3417; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 107 || _la === 347) { { - this.state = 3418; + this.state = 3416; localContext._priority = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 107 || _la === 347)) { @@ -18602,26 +18600,26 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3422; + this.state = 3420; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 450) { { - this.state = 3421; + this.state = 3419; this.match(MySqlParser.KW_LOCAL); } } - this.state = 3424; + this.state = 3422; this.match(MySqlParser.KW_INFILE); - this.state = 3425; + this.state = 3423; localContext._filename = this.match(MySqlParser.STRING_LITERAL); - this.state = 3427; + this.state = 3425; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79 || _la === 143) { { - this.state = 3426; + this.state = 3424; localContext._violation = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 79 || _la === 143)) { @@ -18634,55 +18632,55 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3429; + this.state = 3427; this.match(MySqlParser.KW_INTO); - this.state = 3430; + this.state = 3428; this.match(MySqlParser.KW_TABLE); - this.state = 3431; + this.state = 3429; this.tableName(); - this.state = 3435; + this.state = 3433; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 26) { { - this.state = 3432; + this.state = 3430; this.match(MySqlParser.KW_CHARACTER); - this.state = 3433; + this.state = 3431; this.match(MySqlParser.KW_SET); - this.state = 3434; + this.state = 3432; localContext._charset = this.charsetName(); } } - this.state = 3447; + this.state = 3445; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 587) { { - this.state = 3437; + this.state = 3435; this.match(MySqlParser.KW_ROWS); - this.state = 3438; + this.state = 3436; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 3439; + this.state = 3437; this.match(MySqlParser.KW_BY); - this.state = 3441; + this.state = 3439; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 859) { { - this.state = 3440; + this.state = 3438; this.match(MySqlParser.LESS_SYMBOL); } } - this.state = 3443; + this.state = 3441; localContext._tag = this.match(MySqlParser.STRING_LITERAL); - this.state = 3445; + this.state = 3443; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 858) { { - this.state = 3444; + this.state = 3442; this.match(MySqlParser.GREATER_SYMBOL); } } @@ -18690,16 +18688,16 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3453; + this.state = 3451; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 3449; + this.state = 3447; this.match(MySqlParser.KW_IGNORE); - this.state = 3450; + this.state = 3448; this.decimalLiteral(); - this.state = 3451; + this.state = 3449; localContext._linesFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 102 || _la === 587)) { @@ -18712,58 +18710,58 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3466; + this.state = 3464; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 444, this.context) ) { case 1: { - this.state = 3455; + this.state = 3453; this.match(MySqlParser.LR_BRACKET); - this.state = 3456; + this.state = 3454; this.assignmentField(); - this.state = 3461; + this.state = 3459; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3457; + this.state = 3455; this.match(MySqlParser.COMMA); - this.state = 3458; + this.state = 3456; this.assignmentField(); } } - this.state = 3463; + this.state = 3461; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3464; + this.state = 3462; this.match(MySqlParser.RR_BRACKET); } break; } - this.state = 3477; + this.state = 3475; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 446, this.context) ) { case 1: { - this.state = 3468; + this.state = 3466; this.match(MySqlParser.KW_SET); - this.state = 3469; + this.state = 3467; this.updatedElement(); - this.state = 3474; + this.state = 3472; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3470; + this.state = 3468; this.match(MySqlParser.COMMA); - this.state = 3471; + this.state = 3469; this.updatedElement(); } } - this.state = 3476; + this.state = 3474; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -18793,58 +18791,58 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3479; + this.state = 3477; this.match(MySqlParser.LR_BRACKET); - this.state = 3480; + this.state = 3478; this.parenthesizedQueryExpression(); - this.state = 3482; + this.state = 3480; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 3481; + this.state = 3479; this.orderByClause(); } } - this.state = 3485; + this.state = 3483; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3484; + this.state = 3482; this.limitClause(); } } - this.state = 3487; + this.state = 3485; this.match(MySqlParser.RR_BRACKET); - this.state = 3489; + this.state = 3487; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 3488; + this.state = 3486; this.orderByClause(); } } - this.state = 3492; + this.state = 3490; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3491; + this.state = 3489; this.limitClause(); } } - this.state = 3495; + this.state = 3493; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 88) { { - this.state = 3494; + this.state = 3492; this.intoClause(); } } @@ -18872,14 +18870,14 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3497; + this.state = 3495; this.match(MySqlParser.KW_REPLACE); - this.state = 3499; + this.state = 3497; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 43 || _la === 107) { { - this.state = 3498; + this.state = 3496; localContext._priority = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 43 || _la === 107)) { @@ -18892,35 +18890,35 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3502; + this.state = 3500; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 88) { { - this.state = 3501; + this.state = 3499; this.match(MySqlParser.KW_INTO); } } - this.state = 3504; + this.state = 3502; this.tableName(); - this.state = 3510; + this.state = 3508; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130) { { - this.state = 3505; + this.state = 3503; this.match(MySqlParser.KW_PARTITION); - this.state = 3506; + this.state = 3504; this.match(MySqlParser.LR_BRACKET); - this.state = 3507; + this.state = 3505; this.partitionNames(); - this.state = 3508; + this.state = 3506; this.match(MySqlParser.RR_BRACKET); } } - this.state = 3520; + this.state = 3518; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SELECT: @@ -18929,27 +18927,27 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_VALUE: case MySqlParser.LR_BRACKET: { - this.state = 3516; + this.state = 3514; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 455, this.context) ) { case 1: { - this.state = 3512; + this.state = 3510; this.match(MySqlParser.LR_BRACKET); - this.state = 3513; + this.state = 3511; this.columnNames(); - this.state = 3514; + this.state = 3512; this.match(MySqlParser.RR_BRACKET); } break; } - this.state = 3518; + this.state = 3516; this.replaceStatementValuesOrSelectOrTable(); } break; case MySqlParser.KW_SET: { - this.state = 3519; + this.state = 3517; this.setAssignmentList(); } break; @@ -18978,44 +18976,44 @@ export class MySqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 3581; + this.state = 3579; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SELECT: localContext = new UnionAndLateralSelectContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3522; + this.state = 3520; this.querySpecification(); - this.state = 3526; + this.state = 3524; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 457, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3523; + this.state = 3521; this.unionStatement(); } } } - this.state = 3528; + this.state = 3526; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 457, this.context); } - this.state = 3537; + this.state = 3535; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 460, this.context) ) { case 1: { - this.state = 3529; + this.state = 3527; this.match(MySqlParser.KW_UNION); - this.state = 3531; + this.state = 3529; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 49) { { - this.state = 3530; + this.state = 3528; (localContext as UnionAndLateralSelectContext)._unionType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49)) { @@ -19028,18 +19026,18 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3535; + this.state = 3533; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SELECT: { - this.state = 3533; + this.state = 3531; this.querySpecification(); } break; case MySqlParser.LR_BRACKET: { - this.state = 3534; + this.state = 3532; this.queryExpression(); } break; @@ -19049,60 +19047,60 @@ export class MySqlParser extends SQLParserBase { } break; } - this.state = 3543; + this.state = 3541; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 461, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3539; + this.state = 3537; this.match(MySqlParser.COMMA); - this.state = 3540; + this.state = 3538; this.lateralStatement(); } } } - this.state = 3545; + this.state = 3543; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 461, this.context); } - this.state = 3547; + this.state = 3545; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 462, this.context) ) { case 1: { - this.state = 3546; + this.state = 3544; this.orderByClause(); } break; } - this.state = 3550; + this.state = 3548; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 463, this.context) ) { case 1: { - this.state = 3549; + this.state = 3547; this.limitClause(); } break; } - this.state = 3553; + this.state = 3551; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 464, this.context) ) { case 1: { - this.state = 3552; + this.state = 3550; this.lockClause(); } break; } - this.state = 3556; + this.state = 3554; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 465, this.context) ) { case 1: { - this.state = 3555; + this.state = 3553; this.intoClause(); } break; @@ -19113,37 +19111,37 @@ export class MySqlParser extends SQLParserBase { localContext = new SelectExpressionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3558; + this.state = 3556; this.queryExpression(); - this.state = 3562; + this.state = 3560; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 466, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3559; + this.state = 3557; this.unionStatement(); } } } - this.state = 3564; + this.state = 3562; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 466, this.context); } - this.state = 3570; + this.state = 3568; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 468, this.context) ) { case 1: { - this.state = 3565; + this.state = 3563; this.match(MySqlParser.KW_UNION); - this.state = 3567; + this.state = 3565; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 49) { { - this.state = 3566; + this.state = 3564; (localContext as SelectExpressionContext)._unionType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49)) { @@ -19156,37 +19154,37 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3569; + this.state = 3567; this.queryExpression(); } break; } - this.state = 3573; + this.state = 3571; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 469, this.context) ) { case 1: { - this.state = 3572; + this.state = 3570; this.orderByClause(); } break; } - this.state = 3576; + this.state = 3574; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 470, this.context) ) { case 1: { - this.state = 3575; + this.state = 3573; this.limitClause(); } break; } - this.state = 3579; + this.state = 3577; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 471, this.context) ) { case 1: { - this.state = 3578; + this.state = 3576; this.lockClause(); } break; @@ -19218,44 +19216,44 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3584; + this.state = 3582; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 194) { { - this.state = 3583; + this.state = 3581; this.withClause(); } } - this.state = 3586; + this.state = 3584; this.queryExpressionBody(0); - this.state = 3588; + this.state = 3586; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 3587; + this.state = 3585; this.orderByClause(); } } - this.state = 3591; + this.state = 3589; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3590; + this.state = 3588; this.limitClause(); } } - this.state = 3594; + this.state = 3592; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 88) { { - this.state = 3593; + this.state = 3591; this.intoClause(); } } @@ -19296,11 +19294,11 @@ export class MySqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 1); { { - this.state = 3597; + this.state = 3595; this.queryItem(0); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 3613; + this.state = 3611; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 480, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -19310,25 +19308,25 @@ export class MySqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 3611; + this.state = 3609; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 479, this.context) ) { case 1: { localContext = new QueryExpressionBodyContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_queryExpressionBody); - this.state = 3599; + this.state = 3597; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 3600; + this.state = 3598; this.match(MySqlParser.KW_UNION); - this.state = 3602; + this.state = 3600; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 49) { { - this.state = 3601; + this.state = 3599; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49)) { this.errorHandler.recoverInline(this); @@ -19340,7 +19338,7 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3604; + this.state = 3602; this.queryItem(0); } break; @@ -19348,18 +19346,18 @@ export class MySqlParser extends SQLParserBase { { localContext = new QueryExpressionBodyContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_queryExpressionBody); - this.state = 3605; + this.state = 3603; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 3606; + this.state = 3604; this.match(MySqlParser.KW_EXCEPT); - this.state = 3608; + this.state = 3606; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 49) { { - this.state = 3607; + this.state = 3605; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49)) { this.errorHandler.recoverInline(this); @@ -19371,14 +19369,14 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3610; + this.state = 3608; this.queryItem(0); } break; } } } - this.state = 3615; + this.state = 3613; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 480, this.context); } @@ -19418,11 +19416,11 @@ export class MySqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 1); { { - this.state = 3617; + this.state = 3615; this.queryPrimary(); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 3627; + this.state = 3625; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 482, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -19435,18 +19433,18 @@ export class MySqlParser extends SQLParserBase { { localContext = new QueryItemContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_queryItem); - this.state = 3619; + this.state = 3617; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 3620; + this.state = 3618; this.match(MySqlParser.KW_INTERSECT); - this.state = 3622; + this.state = 3620; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 49) { { - this.state = 3621; + this.state = 3619; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49)) { this.errorHandler.recoverInline(this); @@ -19458,12 +19456,12 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 3624; + this.state = 3622; this.queryPrimary(); } } } - this.state = 3629; + this.state = 3627; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 482, this.context); } @@ -19488,54 +19486,54 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 218, MySqlParser.RULE_queryPrimary); let _la: number; try { - this.state = 3644; + this.state = 3642; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 486, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3630; + this.state = 3628; this.queryBlock(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3631; + this.state = 3629; this.match(MySqlParser.LR_BRACKET); - this.state = 3632; + this.state = 3630; this.queryExpressionBody(0); - this.state = 3634; + this.state = 3632; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 3633; + this.state = 3631; this.orderByClause(); } } - this.state = 3637; + this.state = 3635; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3636; + this.state = 3634; this.limitClause(); } } - this.state = 3640; + this.state = 3638; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 88) { { - this.state = 3639; + this.state = 3637; this.intoClause(); } } - this.state = 3642; + this.state = 3640; this.match(MySqlParser.RR_BRACKET); } break; @@ -19559,20 +19557,20 @@ export class MySqlParser extends SQLParserBase { let localContext = new UpdateStatementContext(this.context, this.state); this.enterRule(localContext, 220, MySqlParser.RULE_updateStatement); try { - this.state = 3648; + this.state = 3646; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 487, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3646; + this.state = 3644; this.singleUpdateStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3647; + this.state = 3645; this.multipleUpdateStatement(); } break; @@ -19598,30 +19596,30 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3650; + this.state = 3648; this.rowValuesList(); - this.state = 3654; + this.state = 3652; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 488, this.context) ) { case 1: { - this.state = 3651; + this.state = 3649; this.match(MySqlParser.KW_ORDER); - this.state = 3652; + this.state = 3650; this.match(MySqlParser.KW_BY); - this.state = 3653; + this.state = 3651; this.indexColumnName(); } break; } - this.state = 3658; + this.state = 3656; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 489, this.context) ) { case 1: { - this.state = 3656; + this.state = 3654; this.match(MySqlParser.KW_LIMIT); - this.state = 3657; + this.state = 3655; this.limitClauseAtom(); } break; @@ -19649,15 +19647,15 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3660; + this.state = 3658; this.queryBlock(); - this.state = 3665; + this.state = 3663; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 59 || _la === 181 || _la === 828) { { { - this.state = 3661; + this.state = 3659; _la = this.tokenStream.LA(1); if(!(_la === 59 || _la === 181 || _la === 828)) { this.errorHandler.recoverInline(this); @@ -19666,40 +19664,40 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3662; + this.state = 3660; this.queryBlock(); } } - this.state = 3667; + this.state = 3665; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3669; + this.state = 3667; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 491, this.context) ) { case 1: { - this.state = 3668; + this.state = 3666; this.orderByClause(); } break; } - this.state = 3672; + this.state = 3670; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 492, this.context) ) { case 1: { - this.state = 3671; + this.state = 3669; this.limitClause(); } break; } - this.state = 3675; + this.state = 3673; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 88) { { - this.state = 3674; + this.state = 3672; this.intoClause(); } } @@ -19724,28 +19722,28 @@ export class MySqlParser extends SQLParserBase { let localContext = new QueryBlockContext(this.context, this.state); this.enterRule(localContext, 226, MySqlParser.RULE_queryBlock); try { - this.state = 3680; + this.state = 3678; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SELECT: case MySqlParser.LR_BRACKET: this.enterOuterAlt(localContext, 1); { - this.state = 3677; + this.state = 3675; this.selectStatement(); } break; case MySqlParser.KW_TABLE: this.enterOuterAlt(localContext, 2); { - this.state = 3678; + this.state = 3676; this.tableStatement(); } break; case MySqlParser.KW_VALUES: this.enterOuterAlt(localContext, 3); { - this.state = 3679; + this.state = 3677; this.valuesStatement(); } break; @@ -19771,36 +19769,36 @@ export class MySqlParser extends SQLParserBase { let localContext = new ReplaceStatementValuesOrSelectOrTableContext(this.context, this.state); this.enterRule(localContext, 228, MySqlParser.RULE_replaceStatementValuesOrSelectOrTable); try { - this.state = 3687; + this.state = 3685; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 495, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3682; + this.state = 3680; this.selectStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3683; + this.state = 3681; this.match(MySqlParser.KW_TABLE); - this.state = 3684; + this.state = 3682; this.tableName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3685; + this.state = 3683; this.valuesOrValueList(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3686; + this.state = 3684; this.rowValuesList(); } break; @@ -19827,29 +19825,29 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3689; + this.state = 3687; this.match(MySqlParser.KW_VALUES); - this.state = 3690; + this.state = 3688; this.match(MySqlParser.KW_ROW); - this.state = 3691; + this.state = 3689; this.expressionsWithDefaults(); - this.state = 3697; + this.state = 3695; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 496, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3692; + this.state = 3690; this.match(MySqlParser.COMMA); - this.state = 3693; + this.state = 3691; this.match(MySqlParser.KW_ROW); - this.state = 3694; + this.state = 3692; this.expressionsWithDefaults(); } } } - this.state = 3699; + this.state = 3697; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 496, this.context); } @@ -19876,24 +19874,24 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3700; + this.state = 3698; this.match(MySqlParser.KW_SET); - this.state = 3701; + this.state = 3699; localContext._setFirst = this.updatedElement(); - this.state = 3706; + this.state = 3704; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3702; + this.state = 3700; this.match(MySqlParser.COMMA); - this.state = 3703; + this.state = 3701; localContext._updatedElement = this.updatedElement(); localContext._setElements.push(localContext._updatedElement); } } - this.state = 3708; + this.state = 3706; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -19919,11 +19917,11 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3709; + this.state = 3707; this.columnName(); - this.state = 3710; + this.state = 3708; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 3711; + this.state = 3709; this.expressionOrDefault(); } } @@ -19945,7 +19943,7 @@ export class MySqlParser extends SQLParserBase { let localContext = new AssignmentFieldContext(this.context, this.state); this.enterRule(localContext, 236, MySqlParser.RULE_assignmentField); try { - this.state = 3715; + this.state = 3713; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -20499,14 +20497,14 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.ID: this.enterOuterAlt(localContext, 1); { - this.state = 3713; + this.state = 3711; localContext._var_name = this.uid(); } break; case MySqlParser.LOCAL_ID: this.enterOuterAlt(localContext, 2); { - this.state = 3714; + this.state = 3712; this.match(MySqlParser.LOCAL_ID); } break; @@ -20534,15 +20532,15 @@ export class MySqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 3738; + this.state = 3736; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_FOR: this.enterOuterAlt(localContext, 1); { - this.state = 3717; + this.state = 3715; this.match(MySqlParser.KW_FOR); - this.state = 3718; + this.state = 3716; _la = this.tokenStream.LA(1); if(!(_la === 185 || _la === 594)) { this.errorHandler.recoverInline(this); @@ -20551,42 +20549,42 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3728; + this.state = 3726; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 500, this.context) ) { case 1: { - this.state = 3719; + this.state = 3717; this.match(MySqlParser.KW_OF); - this.state = 3720; + this.state = 3718; this.tableName(); - this.state = 3725; + this.state = 3723; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 499, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3721; + this.state = 3719; this.match(MySqlParser.COMMA); - this.state = 3722; + this.state = 3720; this.tableName(); } } } - this.state = 3727; + this.state = 3725; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 499, this.context); } } break; } - this.state = 3732; + this.state = 3730; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 501, this.context) ) { case 1: { - this.state = 3730; + this.state = 3728; _la = this.tokenStream.LA(1); if(!(_la === 159 || _la === 503)) { this.errorHandler.recoverInline(this); @@ -20595,7 +20593,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3731; + this.state = 3729; this.match(MySqlParser.KW_LOCKED); } break; @@ -20605,13 +20603,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_LOCK: this.enterOuterAlt(localContext, 2); { - this.state = 3734; + this.state = 3732; this.match(MySqlParser.KW_LOCK); - this.state = 3735; + this.state = 3733; this.match(MySqlParser.KW_IN); - this.state = 3736; + this.state = 3734; this.match(MySqlParser.KW_SHARE); - this.state = 3737; + this.state = 3735; this.match(MySqlParser.KW_MODE); } break; @@ -20640,108 +20638,108 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3740; + this.state = 3738; this.match(MySqlParser.KW_DELETE); - this.state = 3742; + this.state = 3740; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 107) { { - this.state = 3741; + this.state = 3739; localContext._priority = this.match(MySqlParser.KW_LOW_PRIORITY); } } - this.state = 3745; + this.state = 3743; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 549) { { - this.state = 3744; + this.state = 3742; this.match(MySqlParser.KW_QUICK); } } - this.state = 3748; + this.state = 3746; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 3747; + this.state = 3745; this.match(MySqlParser.KW_IGNORE); } } - this.state = 3750; + this.state = 3748; this.match(MySqlParser.KW_FROM); - this.state = 3751; + this.state = 3749; this.tableName(); - this.state = 3756; + this.state = 3754; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 507, this.context) ) { case 1: { - this.state = 3753; + this.state = 3751; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 3752; + this.state = 3750; this.match(MySqlParser.KW_AS); } } - this.state = 3755; + this.state = 3753; localContext._table_alias = this.uid(); } break; } - this.state = 3763; + this.state = 3761; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130) { { - this.state = 3758; + this.state = 3756; this.match(MySqlParser.KW_PARTITION); - this.state = 3759; + this.state = 3757; this.match(MySqlParser.LR_BRACKET); - this.state = 3760; + this.state = 3758; this.partitionNames(); - this.state = 3761; + this.state = 3759; this.match(MySqlParser.RR_BRACKET); } } - this.state = 3767; + this.state = 3765; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 3765; + this.state = 3763; this.match(MySqlParser.KW_WHERE); - this.state = 3766; + this.state = 3764; this.expression(0); } } - this.state = 3770; + this.state = 3768; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 3769; + this.state = 3767; this.orderByClause(); } } - this.state = 3774; + this.state = 3772; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3772; + this.state = 3770; this.match(MySqlParser.KW_LIMIT); - this.state = 3773; + this.state = 3771; this.limitClauseAtom(); } } @@ -20769,39 +20767,39 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3776; + this.state = 3774; this.match(MySqlParser.KW_DELETE); - this.state = 3778; + this.state = 3776; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 107) { { - this.state = 3777; + this.state = 3775; localContext._priority = this.match(MySqlParser.KW_LOW_PRIORITY); } } - this.state = 3781; + this.state = 3779; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 513, this.context) ) { case 1: { - this.state = 3780; + this.state = 3778; this.match(MySqlParser.KW_QUICK); } break; } - this.state = 3784; + this.state = 3782; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 3783; + this.state = 3781; this.match(MySqlParser.KW_IGNORE); } } - this.state = 3825; + this.state = 3823; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -21354,117 +21352,117 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 3786; + this.state = 3784; this.tableName(); - this.state = 3789; + this.state = 3787; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 865) { { - this.state = 3787; + this.state = 3785; this.match(MySqlParser.DOT); - this.state = 3788; + this.state = 3786; this.match(MySqlParser.STAR); } } - this.state = 3799; + this.state = 3797; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3791; + this.state = 3789; this.match(MySqlParser.COMMA); - this.state = 3792; + this.state = 3790; this.tableName(); - this.state = 3795; + this.state = 3793; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 865) { { - this.state = 3793; + this.state = 3791; this.match(MySqlParser.DOT); - this.state = 3794; + this.state = 3792; this.match(MySqlParser.STAR); } } } } - this.state = 3801; + this.state = 3799; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3802; + this.state = 3800; this.match(MySqlParser.KW_FROM); - this.state = 3803; + this.state = 3801; this.tableSources(); } break; case MySqlParser.KW_FROM: { - this.state = 3805; + this.state = 3803; this.match(MySqlParser.KW_FROM); - this.state = 3806; + this.state = 3804; this.tableName(); - this.state = 3809; + this.state = 3807; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 865) { { - this.state = 3807; + this.state = 3805; this.match(MySqlParser.DOT); - this.state = 3808; + this.state = 3806; this.match(MySqlParser.STAR); } } - this.state = 3819; + this.state = 3817; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3811; + this.state = 3809; this.match(MySqlParser.COMMA); - this.state = 3812; + this.state = 3810; this.tableName(); - this.state = 3815; + this.state = 3813; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 865) { { - this.state = 3813; + this.state = 3811; this.match(MySqlParser.DOT); - this.state = 3814; + this.state = 3812; this.match(MySqlParser.STAR); } } } } - this.state = 3821; + this.state = 3819; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3822; + this.state = 3820; this.match(MySqlParser.KW_USING); - this.state = 3823; + this.state = 3821; this.tableSources(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3829; + this.state = 3827; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 3827; + this.state = 3825; this.match(MySqlParser.KW_WHERE); - this.state = 3828; + this.state = 3826; this.expression(0); } } @@ -21492,28 +21490,28 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3831; + this.state = 3829; this.match(MySqlParser.KW_HANDLER); - this.state = 3832; + this.state = 3830; this.tableName(); - this.state = 3833; + this.state = 3831; this.match(MySqlParser.KW_OPEN); - this.state = 3838; + this.state = 3836; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 524, this.context) ) { case 1: { - this.state = 3835; + this.state = 3833; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 3834; + this.state = 3832; this.match(MySqlParser.KW_AS); } } - this.state = 3837; + this.state = 3835; localContext._table_alias = this.uid(); } break; @@ -21541,28 +21539,28 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3840; + this.state = 3838; this.match(MySqlParser.KW_HANDLER); - this.state = 3841; + this.state = 3839; this.tableName(); - this.state = 3842; + this.state = 3840; this.match(MySqlParser.KW_READ); - this.state = 3843; + this.state = 3841; this.indexName(); - this.state = 3850; + this.state = 3848; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.EQUAL_SYMBOL: case MySqlParser.GREATER_SYMBOL: case MySqlParser.LESS_SYMBOL: { - this.state = 3844; + this.state = 3842; this.comparisonBase(); - this.state = 3845; + this.state = 3843; this.match(MySqlParser.LR_BRACKET); - this.state = 3846; + this.state = 3844; this.constants(); - this.state = 3847; + this.state = 3845; this.match(MySqlParser.RR_BRACKET); } break; @@ -21571,7 +21569,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_NEXT: case MySqlParser.KW_PREV: { - this.state = 3849; + this.state = 3847; localContext._moveOrder = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 402 || _la === 445 || _la === 501 || _la === 542)) { @@ -21586,26 +21584,26 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3854; + this.state = 3852; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 3852; + this.state = 3850; this.match(MySqlParser.KW_WHERE); - this.state = 3853; + this.state = 3851; this.expression(0); } } - this.state = 3858; + this.state = 3856; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3856; + this.state = 3854; this.match(MySqlParser.KW_LIMIT); - this.state = 3857; + this.state = 3855; this.limitClauseAtom(); } } @@ -21633,13 +21631,13 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3860; + this.state = 3858; this.match(MySqlParser.KW_HANDLER); - this.state = 3861; + this.state = 3859; this.tableName(); - this.state = 3862; + this.state = 3860; this.match(MySqlParser.KW_READ); - this.state = 3863; + this.state = 3861; localContext._moveOrder = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 402 || _la === 501)) { @@ -21649,26 +21647,26 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3866; + this.state = 3864; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 3864; + this.state = 3862; this.match(MySqlParser.KW_WHERE); - this.state = 3865; + this.state = 3863; this.expression(0); } } - this.state = 3870; + this.state = 3868; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3868; + this.state = 3866; this.match(MySqlParser.KW_LIMIT); - this.state = 3869; + this.state = 3867; this.limitClauseAtom(); } } @@ -21695,11 +21693,11 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3872; + this.state = 3870; this.match(MySqlParser.KW_HANDLER); - this.state = 3873; + this.state = 3871; this.tableName(); - this.state = 3874; + this.state = 3872; this.match(MySqlParser.KW_CLOSE); } } @@ -21724,27 +21722,27 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3876; + this.state = 3874; this.match(MySqlParser.KW_IMPORT); - this.state = 3877; + this.state = 3875; this.match(MySqlParser.KW_TABLE); - this.state = 3878; + this.state = 3876; this.match(MySqlParser.KW_FROM); - this.state = 3879; + this.state = 3877; this.stringLiteral(); - this.state = 3884; + this.state = 3882; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3880; + this.state = 3878; this.match(MySqlParser.COMMA); - this.state = 3881; + this.state = 3879; this.stringLiteral(); } } - this.state = 3886; + this.state = 3884; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -21771,98 +21769,98 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3887; + this.state = 3885; this.match(MySqlParser.KW_UPDATE); - this.state = 3889; + this.state = 3887; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 107) { { - this.state = 3888; + this.state = 3886; localContext._priority = this.match(MySqlParser.KW_LOW_PRIORITY); } } - this.state = 3892; + this.state = 3890; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 3891; + this.state = 3889; this.match(MySqlParser.KW_IGNORE); } } - this.state = 3894; + this.state = 3892; this.tableName(); - this.state = 3899; + this.state = 3897; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074311168) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 3896; + this.state = 3894; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 3895; + this.state = 3893; this.match(MySqlParser.KW_AS); } } - this.state = 3898; + this.state = 3896; localContext._table_alias = this.uid(); } } - this.state = 3901; + this.state = 3899; this.match(MySqlParser.KW_SET); - this.state = 3902; + this.state = 3900; this.updatedElement(); - this.state = 3907; + this.state = 3905; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3903; + this.state = 3901; this.match(MySqlParser.COMMA); - this.state = 3904; + this.state = 3902; this.updatedElement(); } } - this.state = 3909; + this.state = 3907; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3912; + this.state = 3910; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 3910; + this.state = 3908; this.match(MySqlParser.KW_WHERE); - this.state = 3911; + this.state = 3909; this.expression(0); } } - this.state = 3915; + this.state = 3913; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 3914; + this.state = 3912; this.orderByClause(); } } - this.state = 3918; + this.state = 3916; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3917; + this.state = 3915; this.limitClause(); } } @@ -21890,58 +21888,58 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3920; + this.state = 3918; this.match(MySqlParser.KW_UPDATE); - this.state = 3922; + this.state = 3920; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 107) { { - this.state = 3921; + this.state = 3919; localContext._priority = this.match(MySqlParser.KW_LOW_PRIORITY); } } - this.state = 3925; + this.state = 3923; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 3924; + this.state = 3922; this.match(MySqlParser.KW_IGNORE); } } - this.state = 3927; + this.state = 3925; this.tableSources(); - this.state = 3928; + this.state = 3926; this.match(MySqlParser.KW_SET); - this.state = 3929; + this.state = 3927; this.updatedElement(); - this.state = 3934; + this.state = 3932; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 3930; + this.state = 3928; this.match(MySqlParser.COMMA); - this.state = 3931; + this.state = 3929; this.updatedElement(); } } - this.state = 3936; + this.state = 3934; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3939; + this.state = 3937; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 3937; + this.state = 3935; this.match(MySqlParser.KW_WHERE); - this.state = 3938; + this.state = 3936; this.expression(0); } } @@ -21969,27 +21967,27 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3941; + this.state = 3939; this.match(MySqlParser.KW_ORDER); - this.state = 3942; + this.state = 3940; this.match(MySqlParser.KW_BY); - this.state = 3943; + this.state = 3941; this.orderByExpression(); - this.state = 3948; + this.state = 3946; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 543, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3944; + this.state = 3942; this.match(MySqlParser.COMMA); - this.state = 3945; + this.state = 3943; this.orderByExpression(); } } } - this.state = 3950; + this.state = 3948; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 543, this.context); } @@ -22016,14 +22014,14 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3951; + this.state = 3949; this.expression(0); - this.state = 3953; + this.state = 3951; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 544, this.context) ) { case 1: { - this.state = 3952; + this.state = 3950; localContext._order = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 45)) { @@ -22059,23 +22057,23 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3955; + this.state = 3953; this.tableSource(); - this.state = 3960; + this.state = 3958; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 545, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3956; + this.state = 3954; this.match(MySqlParser.COMMA); - this.state = 3957; + this.state = 3955; this.tableSource(); } } } - this.state = 3962; + this.state = 3960; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 545, this.context); } @@ -22101,28 +22099,28 @@ export class MySqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 3981; + this.state = 3979; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 548, this.context) ) { case 1: localContext = new TableSourceBaseContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3963; + this.state = 3961; this.tableSourceItem(); - this.state = 3967; + this.state = 3965; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 546, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3964; + this.state = 3962; this.joinPart(); } } } - this.state = 3969; + this.state = 3967; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 546, this.context); } @@ -22132,25 +22130,25 @@ export class MySqlParser extends SQLParserBase { localContext = new TableSourceNestedContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 3970; + this.state = 3968; this.match(MySqlParser.LR_BRACKET); - this.state = 3971; + this.state = 3969; this.tableSourceItem(); - this.state = 3975; + this.state = 3973; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 35 || ((((_la - 84)) & ~0x1F) === 0 && ((1 << (_la - 84)) & 536887425) !== 0) || _la === 150 || _la === 172) { { { - this.state = 3972; + this.state = 3970; this.joinPart(); } } - this.state = 3977; + this.state = 3975; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3978; + this.state = 3976; this.match(MySqlParser.RR_BRACKET); } break; @@ -22158,7 +22156,7 @@ export class MySqlParser extends SQLParserBase { localContext = new TableJsonContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 3980; + this.state = 3978; this.jsonTable(); } break; @@ -22184,73 +22182,73 @@ export class MySqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 4022; + this.state = 4020; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 557, this.context) ) { case 1: localContext = new AtomTableItemContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 3983; + this.state = 3981; this.tableName(); - this.state = 3989; + this.state = 3987; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 549, this.context) ) { case 1: { - this.state = 3984; + this.state = 3982; this.match(MySqlParser.KW_PARTITION); - this.state = 3985; + this.state = 3983; this.match(MySqlParser.LR_BRACKET); - this.state = 3986; + this.state = 3984; this.partitionNames(); - this.state = 3987; + this.state = 3985; this.match(MySqlParser.RR_BRACKET); } break; } - this.state = 3995; + this.state = 3993; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 551, this.context) ) { case 1: { - this.state = 3992; + this.state = 3990; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 3991; + this.state = 3989; this.match(MySqlParser.KW_AS); } } - this.state = 3994; + this.state = 3992; (localContext as AtomTableItemContext)._alias = this.uid(); } break; } - this.state = 4005; + this.state = 4003; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 553, this.context) ) { case 1: { - this.state = 3997; + this.state = 3995; this.indexHint(); - this.state = 4002; + this.state = 4000; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 552, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3998; + this.state = 3996; this.match(MySqlParser.COMMA); - this.state = 3999; + this.state = 3997; this.indexHint(); } } } - this.state = 4004; + this.state = 4002; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 552, this.context); } @@ -22263,36 +22261,36 @@ export class MySqlParser extends SQLParserBase { localContext = new SubqueryTableItemContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4008; + this.state = 4006; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 95) { { - this.state = 4007; + this.state = 4005; this.match(MySqlParser.KW_LATERAL); } } - this.state = 4010; + this.state = 4008; this.atomSubQueryTableSource(); - this.state = 4012; + this.state = 4010; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 4011; + this.state = 4009; this.match(MySqlParser.KW_AS); } } - this.state = 4014; + this.state = 4012; (localContext as SubqueryTableItemContext)._alias = this.uid(); - this.state = 4016; + this.state = 4014; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 556, this.context) ) { case 1: { - this.state = 4015; + this.state = 4013; this.fullColumnNames(); } break; @@ -22303,11 +22301,11 @@ export class MySqlParser extends SQLParserBase { localContext = new TableSourcesItemContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4018; + this.state = 4016; this.match(MySqlParser.LR_BRACKET); - this.state = 4019; + this.state = 4017; this.tableSources(); - this.state = 4020; + this.state = 4018; this.match(MySqlParser.RR_BRACKET); } break; @@ -22331,24 +22329,24 @@ export class MySqlParser extends SQLParserBase { let localContext = new AtomSubQueryTableSourceContext(this.context, this.state); this.enterRule(localContext, 268, MySqlParser.RULE_atomSubQueryTableSource); try { - this.state = 4029; + this.state = 4027; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 558, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4024; + this.state = 4022; this.selectStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4025; + this.state = 4023; this.match(MySqlParser.LR_BRACKET); - this.state = 4026; + this.state = 4024; localContext._parenthesisSubquery = this.selectStatement(); - this.state = 4027; + this.state = 4025; this.match(MySqlParser.RR_BRACKET); } break; @@ -22374,11 +22372,11 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4031; + this.state = 4029; this.match(MySqlParser.LR_BRACKET); - this.state = 4032; + this.state = 4030; this.columnNames(); - this.state = 4033; + this.state = 4031; this.match(MySqlParser.RR_BRACKET); } } @@ -22403,7 +22401,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4035; + this.state = 4033; localContext._indexHintAction = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 66 || _la === 79 || _la === 187)) { @@ -22413,7 +22411,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4036; + this.state = 4034; localContext._keyFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { @@ -22423,31 +22421,31 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4039; + this.state = 4037; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4037; + this.state = 4035; this.match(MySqlParser.KW_FOR); - this.state = 4038; + this.state = 4036; this.indexHintType(); } } - this.state = 4041; + this.state = 4039; this.match(MySqlParser.LR_BRACKET); - this.state = 4043; + this.state = 4041; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 4042; + this.state = 4040; this.indexNames(); } } - this.state = 4045; + this.state = 4043; this.match(MySqlParser.RR_BRACKET); } } @@ -22469,31 +22467,31 @@ export class MySqlParser extends SQLParserBase { let localContext = new IndexHintTypeContext(this.context, this.state); this.enterRule(localContext, 274, MySqlParser.RULE_indexHintType); try { - this.state = 4052; + this.state = 4050; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_JOIN: this.enterOuterAlt(localContext, 1); { - this.state = 4047; + this.state = 4045; this.match(MySqlParser.KW_JOIN); } break; case MySqlParser.KW_ORDER: this.enterOuterAlt(localContext, 2); { - this.state = 4048; + this.state = 4046; this.match(MySqlParser.KW_ORDER); - this.state = 4049; + this.state = 4047; this.match(MySqlParser.KW_BY); } break; case MySqlParser.KW_GROUP: this.enterOuterAlt(localContext, 3); { - this.state = 4050; + this.state = 4048; this.match(MySqlParser.KW_GROUP); - this.state = 4051; + this.state = 4049; this.match(MySqlParser.KW_BY); } break; @@ -22521,7 +22519,7 @@ export class MySqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 4103; + this.state = 4101; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CROSS: @@ -22530,12 +22528,12 @@ export class MySqlParser extends SQLParserBase { localContext = new InnerJoinContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4055; + this.state = 4053; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 35 || _la === 84) { { - this.state = 4054; + this.state = 4052; _la = this.tokenStream.LA(1); if(!(_la === 35 || _la === 84)) { this.errorHandler.recoverInline(this); @@ -22547,33 +22545,33 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 4057; + this.state = 4055; this.match(MySqlParser.KW_JOIN); - this.state = 4059; + this.state = 4057; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 563, this.context) ) { case 1: { - this.state = 4058; + this.state = 4056; this.match(MySqlParser.KW_LATERAL); } break; } - this.state = 4061; + this.state = 4059; this.tableSourceItem(); - this.state = 4065; + this.state = 4063; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 564, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4062; + this.state = 4060; this.joinSpec(); } } } - this.state = 4067; + this.state = 4065; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 564, this.context); } @@ -22583,23 +22581,23 @@ export class MySqlParser extends SQLParserBase { localContext = new StraightJoinContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4068; + this.state = 4066; this.match(MySqlParser.KW_STRAIGHT_JOIN); - this.state = 4069; + this.state = 4067; this.tableSourceItem(); - this.state = 4073; + this.state = 4071; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 565, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4070; + this.state = 4068; this.joinSpec(); } } } - this.state = 4075; + this.state = 4073; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 565, this.context); } @@ -22610,7 +22608,7 @@ export class MySqlParser extends SQLParserBase { localContext = new OuterJoinContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4076; + this.state = 4074; _la = this.tokenStream.LA(1); if(!(_la === 98 || _la === 150)) { this.errorHandler.recoverInline(this); @@ -22619,43 +22617,43 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4078; + this.state = 4076; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 127) { { - this.state = 4077; + this.state = 4075; this.match(MySqlParser.KW_OUTER); } } - this.state = 4080; + this.state = 4078; this.match(MySqlParser.KW_JOIN); - this.state = 4082; + this.state = 4080; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 567, this.context) ) { case 1: { - this.state = 4081; + this.state = 4079; this.match(MySqlParser.KW_LATERAL); } break; } - this.state = 4084; + this.state = 4082; this.tableSourceItem(); - this.state = 4088; + this.state = 4086; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 568, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4085; + this.state = 4083; this.joinSpec(); } } } - this.state = 4090; + this.state = 4088; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 568, this.context); } @@ -22665,26 +22663,26 @@ export class MySqlParser extends SQLParserBase { localContext = new NaturalJoinContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 4091; + this.state = 4089; this.match(MySqlParser.KW_NATURAL); - this.state = 4099; + this.state = 4097; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 84 || _la === 98 || _la === 150) { { - this.state = 4094; + this.state = 4092; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_INNER: { - this.state = 4092; + this.state = 4090; this.match(MySqlParser.KW_INNER); } break; case MySqlParser.KW_LEFT: case MySqlParser.KW_RIGHT: { - this.state = 4093; + this.state = 4091; _la = this.tokenStream.LA(1); if(!(_la === 98 || _la === 150)) { this.errorHandler.recoverInline(this); @@ -22698,12 +22696,12 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 4097; + this.state = 4095; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 127) { { - this.state = 4096; + this.state = 4094; this.match(MySqlParser.KW_OUTER); } } @@ -22711,9 +22709,9 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 4101; + this.state = 4099; this.match(MySqlParser.KW_JOIN); - this.state = 4102; + this.state = 4100; this.tableSourceItem(); } break; @@ -22739,27 +22737,27 @@ export class MySqlParser extends SQLParserBase { let localContext = new JoinSpecContext(this.context, this.state); this.enterRule(localContext, 278, MySqlParser.RULE_joinSpec); try { - this.state = 4115; + this.state = 4113; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ON: this.enterOuterAlt(localContext, 1); { { - this.state = 4105; + this.state = 4103; this.match(MySqlParser.KW_ON); - this.state = 4108; + this.state = 4106; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 573, this.context) ) { case 1: { - this.state = 4106; + this.state = 4104; this.expression(0); } break; case 2: { - this.state = 4107; + this.state = 4105; this.columnNamePathAllowEmpty(); } break; @@ -22770,13 +22768,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 4110; + this.state = 4108; this.match(MySqlParser.KW_USING); - this.state = 4111; + this.state = 4109; this.match(MySqlParser.LR_BRACKET); - this.state = 4112; + this.state = 4110; this.columnNames(); - this.state = 4113; + this.state = 4111; this.match(MySqlParser.RR_BRACKET); } break; @@ -22802,28 +22800,28 @@ export class MySqlParser extends SQLParserBase { let localContext = new QueryExpressionContext(this.context, this.state); this.enterRule(localContext, 280, MySqlParser.RULE_queryExpression); try { - this.state = 4125; + this.state = 4123; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 575, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4117; + this.state = 4115; this.match(MySqlParser.LR_BRACKET); - this.state = 4118; + this.state = 4116; this.querySpecification(); - this.state = 4119; + this.state = 4117; this.match(MySqlParser.RR_BRACKET); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4121; + this.state = 4119; this.match(MySqlParser.LR_BRACKET); - this.state = 4122; + this.state = 4120; this.queryExpression(); - this.state = 4123; + this.state = 4121; this.match(MySqlParser.RR_BRACKET); } break; @@ -22850,104 +22848,104 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4127; + this.state = 4125; this.match(MySqlParser.KW_SELECT); - this.state = 4131; + this.state = 4129; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 576, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4128; + this.state = 4126; this.selectSpec(); } } } - this.state = 4133; + this.state = 4131; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 576, this.context); } - this.state = 4134; + this.state = 4132; this.selectElements(); - this.state = 4136; + this.state = 4134; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 577, this.context) ) { case 1: { - this.state = 4135; + this.state = 4133; this.intoClause(); } break; } - this.state = 4138; + this.state = 4136; this.fromClause(); - this.state = 4140; + this.state = 4138; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 578, this.context) ) { case 1: { - this.state = 4139; + this.state = 4137; this.groupByClause(); } break; } - this.state = 4143; + this.state = 4141; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 579, this.context) ) { case 1: { - this.state = 4142; + this.state = 4140; this.havingClause(); } break; } - this.state = 4146; + this.state = 4144; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 580, this.context) ) { case 1: { - this.state = 4145; + this.state = 4143; this.windowClause(); } break; } - this.state = 4149; + this.state = 4147; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 581, this.context) ) { case 1: { - this.state = 4148; + this.state = 4146; this.orderByClause(); } break; } - this.state = 4152; + this.state = 4150; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 582, this.context) ) { case 1: { - this.state = 4151; + this.state = 4149; this.limitClause(); } break; } - this.state = 4155; + this.state = 4153; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 583, this.context) ) { case 1: { - this.state = 4154; + this.state = 4152; this.intoClause(); } break; } - this.state = 4158; + this.state = 4156; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 584, this.context) ) { case 1: { - this.state = 4157; + this.state = 4155; this.unionStatement(); } break; @@ -22975,14 +22973,14 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4160; + this.state = 4158; this.match(MySqlParser.KW_UNION); - this.state = 4162; + this.state = 4160; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 49) { { - this.state = 4161; + this.state = 4159; localContext._unionType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49)) { @@ -22995,18 +22993,18 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 4166; + this.state = 4164; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SELECT: { - this.state = 4164; + this.state = 4162; this.querySpecification(); } break; case MySqlParser.LR_BRACKET: { - this.state = 4165; + this.state = 4163; this.queryExpression(); } break; @@ -23036,64 +23034,64 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4168; + this.state = 4166; this.match(MySqlParser.KW_LATERAL); - this.state = 4183; + this.state = 4181; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 590, this.context) ) { case 1: { - this.state = 4169; + this.state = 4167; this.querySpecification(); } break; case 2: { - this.state = 4170; + this.state = 4168; this.queryExpression(); } break; case 3: { { - this.state = 4171; + this.state = 4169; this.match(MySqlParser.LR_BRACKET); - this.state = 4174; + this.state = 4172; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SELECT: { - this.state = 4172; + this.state = 4170; this.querySpecification(); } break; case MySqlParser.LR_BRACKET: { - this.state = 4173; + this.state = 4171; this.queryExpression(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4176; + this.state = 4174; this.match(MySqlParser.RR_BRACKET); - this.state = 4181; + this.state = 4179; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 589, this.context) ) { case 1: { - this.state = 4178; + this.state = 4176; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 4177; + this.state = 4175; this.match(MySqlParser.KW_AS); } } - this.state = 4180; + this.state = 4178; localContext._alias = this.uid(); } break; @@ -23125,42 +23123,42 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4185; + this.state = 4183; this.match(MySqlParser.KW_JSON_TABLE); - this.state = 4186; + this.state = 4184; this.match(MySqlParser.LR_BRACKET); - this.state = 4187; + this.state = 4185; this.match(MySqlParser.STRING_LITERAL); - this.state = 4188; + this.state = 4186; this.match(MySqlParser.COMMA); - this.state = 4189; + this.state = 4187; this.match(MySqlParser.STRING_LITERAL); - this.state = 4190; + this.state = 4188; this.match(MySqlParser.KW_COLUMNS); - this.state = 4191; + this.state = 4189; this.match(MySqlParser.LR_BRACKET); - this.state = 4192; + this.state = 4190; this.jsonColumnList(); - this.state = 4193; + this.state = 4191; this.match(MySqlParser.RR_BRACKET); - this.state = 4194; + this.state = 4192; this.match(MySqlParser.RR_BRACKET); - this.state = 4199; + this.state = 4197; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 592, this.context) ) { case 1: { - this.state = 4196; + this.state = 4194; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 4195; + this.state = 4193; this.match(MySqlParser.KW_AS); } } - this.state = 4198; + this.state = 4196; localContext._alias = this.uid(); } break; @@ -23188,21 +23186,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4201; + this.state = 4199; this.jsonColumn(); - this.state = 4206; + this.state = 4204; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4202; + this.state = 4200; this.match(MySqlParser.COMMA); - this.state = 4203; + this.state = 4201; this.jsonColumn(); } } - this.state = 4208; + this.state = 4206; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -23227,22 +23225,22 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 292, MySqlParser.RULE_jsonColumn); let _la: number; try { - this.state = 4238; + this.state = 4236; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 599, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4209; + this.state = 4207; this.columnName(); - this.state = 4226; + this.state = 4224; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_FOR: { - this.state = 4210; + this.state = 4208; this.match(MySqlParser.KW_FOR); - this.state = 4211; + this.state = 4209; this.match(MySqlParser.KW_ORDINALITY); } break; @@ -23306,33 +23304,33 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_POINT: case MySqlParser.KW_POLYGON: { - this.state = 4212; + this.state = 4210; this.dataType(); - this.state = 4224; + this.state = 4222; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_PATH: { - this.state = 4213; + this.state = 4211; this.match(MySqlParser.KW_PATH); - this.state = 4214; + this.state = 4212; this.match(MySqlParser.STRING_LITERAL); - this.state = 4216; + this.state = 4214; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 594, this.context) ) { case 1: { - this.state = 4215; + this.state = 4213; this.jsonOnEmpty(); } break; } - this.state = 4219; + this.state = 4217; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42 || _la === 116 || _la === 382) { { - this.state = 4218; + this.state = 4216; this.jsonOnError(); } } @@ -23341,11 +23339,11 @@ export class MySqlParser extends SQLParserBase { break; case MySqlParser.KW_EXISTS: { - this.state = 4221; + this.state = 4219; this.match(MySqlParser.KW_EXISTS); - this.state = 4222; + this.state = 4220; this.match(MySqlParser.KW_PATH); - this.state = 4223; + this.state = 4221; this.match(MySqlParser.STRING_LITERAL); } break; @@ -23362,27 +23360,27 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4228; + this.state = 4226; this.match(MySqlParser.KW_NESTED); - this.state = 4230; + this.state = 4228; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 257) { { - this.state = 4229; + this.state = 4227; this.match(MySqlParser.KW_PATH); } } - this.state = 4232; + this.state = 4230; this.match(MySqlParser.STRING_LITERAL); - this.state = 4233; + this.state = 4231; this.match(MySqlParser.KW_COLUMNS); - this.state = 4234; + this.state = 4232; this.match(MySqlParser.LR_BRACKET); - this.state = 4235; + this.state = 4233; this.jsonColumnList(); - this.state = 4236; + this.state = 4234; this.match(MySqlParser.RR_BRACKET); } break; @@ -23408,35 +23406,35 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4244; + this.state = 4242; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_NULL_LITERAL: { - this.state = 4240; + this.state = 4238; this.match(MySqlParser.KW_NULL_LITERAL); } break; case MySqlParser.KW_ERROR: { - this.state = 4241; + this.state = 4239; this.match(MySqlParser.KW_ERROR); } break; case MySqlParser.KW_DEFAULT: { - this.state = 4242; + this.state = 4240; this.match(MySqlParser.KW_DEFAULT); - this.state = 4243; + this.state = 4241; this.defaultValue(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4246; + this.state = 4244; this.match(MySqlParser.KW_ON); - this.state = 4247; + this.state = 4245; this.match(MySqlParser.KW_EMPTY); } } @@ -23460,35 +23458,35 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4253; + this.state = 4251; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_NULL_LITERAL: { - this.state = 4249; + this.state = 4247; this.match(MySqlParser.KW_NULL_LITERAL); } break; case MySqlParser.KW_ERROR: { - this.state = 4250; + this.state = 4248; this.match(MySqlParser.KW_ERROR); } break; case MySqlParser.KW_DEFAULT: { - this.state = 4251; + this.state = 4249; this.match(MySqlParser.KW_DEFAULT); - this.state = 4252; + this.state = 4250; this.defaultValue(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4255; + this.state = 4253; this.match(MySqlParser.KW_ON); - this.state = 4256; + this.state = 4254; this.match(MySqlParser.KW_ERROR); } } @@ -23511,7 +23509,7 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 298, MySqlParser.RULE_selectSpec); let _la: number; try { - this.state = 4266; + this.state = 4264; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ALL: @@ -23519,7 +23517,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_DISTINCTROW: this.enterOuterAlt(localContext, 1); { - this.state = 4258; + this.state = 4256; _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49 || _la === 50)) { this.errorHandler.recoverInline(this); @@ -23533,35 +23531,35 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_HIGH_PRIORITY: this.enterOuterAlt(localContext, 2); { - this.state = 4259; + this.state = 4257; this.match(MySqlParser.KW_HIGH_PRIORITY); } break; case MySqlParser.KW_STRAIGHT_JOIN: this.enterOuterAlt(localContext, 3); { - this.state = 4260; + this.state = 4258; this.match(MySqlParser.KW_STRAIGHT_JOIN); } break; case MySqlParser.KW_SQL_SMALL_RESULT: this.enterOuterAlt(localContext, 4); { - this.state = 4261; + this.state = 4259; this.match(MySqlParser.KW_SQL_SMALL_RESULT); } break; case MySqlParser.KW_SQL_BIG_RESULT: this.enterOuterAlt(localContext, 5); { - this.state = 4262; + this.state = 4260; this.match(MySqlParser.KW_SQL_BIG_RESULT); } break; case MySqlParser.KW_SQL_BUFFER_RESULT: this.enterOuterAlt(localContext, 6); { - this.state = 4263; + this.state = 4261; this.match(MySqlParser.KW_SQL_BUFFER_RESULT); } break; @@ -23569,7 +23567,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_SQL_NO_CACHE: this.enterOuterAlt(localContext, 7); { - this.state = 4264; + this.state = 4262; _la = this.tokenStream.LA(1); if(!(_la === 637 || _la === 638)) { this.errorHandler.recoverInline(this); @@ -23583,7 +23581,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_SQL_CALC_FOUND_ROWS: this.enterOuterAlt(localContext, 8); { - this.state = 4265; + this.state = 4263; this.match(MySqlParser.KW_SQL_CALC_FOUND_ROWS); } break; @@ -23612,37 +23610,37 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4270; + this.state = 4268; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 603, this.context) ) { case 1: { - this.state = 4268; + this.state = 4266; this.pureAllColumns(); } break; case 2: { - this.state = 4269; + this.state = 4267; this.selectElement(); } break; } - this.state = 4276; + this.state = 4274; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 604, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4272; + this.state = 4270; this.match(MySqlParser.COMMA); - this.state = 4273; + this.state = 4271; this.selectElement(); } } } - this.state = 4278; + this.state = 4276; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 604, this.context); } @@ -23667,70 +23665,89 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 302, MySqlParser.RULE_selectElement); let _la: number; try { - this.state = 4294; + this.state = 4297; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 609, this.context) ) { case 1: + localContext = new SelectElement_starContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4279; + this.state = 4277; this.tableAllColumns(); } break; case 2: + localContext = new SelectElement_labelContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4280; + this.state = 4278; this.selectLiteralColumnName(); - this.state = 4285; + this.state = 4283; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 606, this.context) ) { case 1: { - this.state = 4282; + this.state = 4280; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 4281; + this.state = 4279; this.match(MySqlParser.KW_AS); } } - this.state = 4284; - localContext._alias = this.uid(); + this.state = 4282; + (localContext as SelectElement_labelContext)._alias = this.uid(); } break; } } break; case 3: + localContext = new SelectElement_exprContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4287; + this.state = 4285; this.selectExpressionColumnName(); - this.state = 4292; + this.state = 4290; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 608, this.context) ) { case 1: { - this.state = 4289; + this.state = 4287; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 4288; + this.state = 4286; this.match(MySqlParser.KW_AS); } } - this.state = 4291; - localContext._alias = this.uid(); + this.state = 4289; + (localContext as SelectElement_exprContext)._alias = this.uid(); } break; } } break; + case 4: + localContext = new SelectElement_dot_emptyContext(localContext); + this.enterOuterAlt(localContext, 4); + { + this.state = 4292; + this.uid(); + this.state = 4293; + this.match(MySqlParser.DOT); + this.state = 4294; + if (!(this.shouldMatchEmpty())) { + throw this.createFailedPredicateException("this.shouldMatchEmpty()"); + } + this.state = 4295; + this.emptyColumn(); + } + break; } } catch (re) { @@ -23753,11 +23770,11 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4296; + this.state = 4299; this.fullId(); - this.state = 4297; + this.state = 4300; this.match(MySqlParser.DOT); - this.state = 4298; + this.state = 4301; this.match(MySqlParser.STAR); } } @@ -23781,7 +23798,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4300; + this.state = 4303; this.match(MySqlParser.STAR); } } @@ -23805,7 +23822,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4302; + this.state = 4305; this.columnName(); } } @@ -23827,26 +23844,26 @@ export class MySqlParser extends SQLParserBase { let localContext = new SelectExpressionColumnNameContext(this.context, this.state); this.enterRule(localContext, 310, MySqlParser.RULE_selectExpressionColumnName); try { - this.state = 4310; + this.state = 4313; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 611, this.context) ) { case 1: localContext = new SelectExpressionElementContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4306; + this.state = 4309; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 610, this.context) ) { case 1: { - this.state = 4304; + this.state = 4307; this.match(MySqlParser.LOCAL_ID); - this.state = 4305; + this.state = 4308; this.match(MySqlParser.VAR_ASSIGN); } break; } - this.state = 4308; + this.state = 4311; this.expression(0); } break; @@ -23854,7 +23871,7 @@ export class MySqlParser extends SQLParserBase { localContext = new SelectFunctionElementContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4309; + this.state = 4312; this.functionCall(); } break; @@ -23880,32 +23897,32 @@ export class MySqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 4348; + this.state = 4351; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 618, this.context) ) { case 1: localContext = new SelectIntoVariablesContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4312; + this.state = 4315; this.match(MySqlParser.KW_INTO); - this.state = 4313; + this.state = 4316; this.assignmentField(); - this.state = 4318; + this.state = 4321; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 612, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4314; + this.state = 4317; this.match(MySqlParser.COMMA); - this.state = 4315; + this.state = 4318; this.assignmentField(); } } } - this.state = 4320; + this.state = 4323; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 612, this.context); } @@ -23915,11 +23932,11 @@ export class MySqlParser extends SQLParserBase { localContext = new SelectIntoDumpFileContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4321; + this.state = 4324; this.match(MySqlParser.KW_INTO); - this.state = 4322; + this.state = 4325; this.match(MySqlParser.KW_DUMPFILE); - this.state = 4323; + this.state = 4326; this.match(MySqlParser.STRING_LITERAL); } break; @@ -23928,32 +23945,32 @@ export class MySqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 3); { { - this.state = 4324; + this.state = 4327; this.match(MySqlParser.KW_INTO); - this.state = 4325; + this.state = 4328; this.match(MySqlParser.KW_OUTFILE); - this.state = 4326; + this.state = 4329; (localContext as SelectIntoTextFileContext)._filename = this.match(MySqlParser.STRING_LITERAL); - this.state = 4330; + this.state = 4333; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 613, this.context) ) { case 1: { - this.state = 4327; + this.state = 4330; this.match(MySqlParser.KW_CHARACTER); - this.state = 4328; + this.state = 4331; this.match(MySqlParser.KW_SET); - this.state = 4329; + this.state = 4332; (localContext as SelectIntoTextFileContext)._charset = this.charsetName(); } break; } - this.state = 4338; + this.state = 4341; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 615, this.context) ) { case 1: { - this.state = 4332; + this.state = 4335; (localContext as SelectIntoTextFileContext)._fieldsFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 337 || _la === 398)) { @@ -23963,7 +23980,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4334; + this.state = 4337; this.errorHandler.sync(this); alternative = 1; do { @@ -23971,7 +23988,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 4333; + this.state = 4336; this.selectFieldsInto(); } } @@ -23979,21 +23996,21 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 4336; + this.state = 4339; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 614, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; } - this.state = 4346; + this.state = 4349; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 617, this.context) ) { case 1: { - this.state = 4340; + this.state = 4343; this.match(MySqlParser.KW_LINES); - this.state = 4342; + this.state = 4345; this.errorHandler.sync(this); alternative = 1; do { @@ -24001,7 +24018,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 4341; + this.state = 4344; this.selectLinesInto(); } } @@ -24009,7 +24026,7 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 4344; + this.state = 4347; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 616, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -24040,17 +24057,17 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 314, MySqlParser.RULE_selectFieldsInto); let _la: number; try { - this.state = 4362; + this.state = 4365; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_TERMINATED: this.enterOuterAlt(localContext, 1); { - this.state = 4350; + this.state = 4353; this.match(MySqlParser.KW_TERMINATED); - this.state = 4351; + this.state = 4354; this.match(MySqlParser.KW_BY); - this.state = 4352; + this.state = 4355; localContext._terminationField = this.match(MySqlParser.STRING_LITERAL); } break; @@ -24058,32 +24075,32 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_OPTIONALLY: this.enterOuterAlt(localContext, 2); { - this.state = 4354; + this.state = 4357; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 123) { { - this.state = 4353; + this.state = 4356; this.match(MySqlParser.KW_OPTIONALLY); } } - this.state = 4356; + this.state = 4359; this.match(MySqlParser.KW_ENCLOSED); - this.state = 4357; + this.state = 4360; this.match(MySqlParser.KW_BY); - this.state = 4358; + this.state = 4361; localContext._enClosion = this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_ESCAPED: this.enterOuterAlt(localContext, 3); { - this.state = 4359; + this.state = 4362; this.match(MySqlParser.KW_ESCAPED); - this.state = 4360; + this.state = 4363; this.match(MySqlParser.KW_BY); - this.state = 4361; + this.state = 4364; localContext._escaping = this.match(MySqlParser.STRING_LITERAL); } break; @@ -24109,28 +24126,28 @@ export class MySqlParser extends SQLParserBase { let localContext = new SelectLinesIntoContext(this.context, this.state); this.enterRule(localContext, 316, MySqlParser.RULE_selectLinesInto); try { - this.state = 4370; + this.state = 4373; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_STARTING: this.enterOuterAlt(localContext, 1); { - this.state = 4364; + this.state = 4367; this.match(MySqlParser.KW_STARTING); - this.state = 4365; + this.state = 4368; this.match(MySqlParser.KW_BY); - this.state = 4366; + this.state = 4369; localContext._starting = this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_TERMINATED: this.enterOuterAlt(localContext, 2); { - this.state = 4367; + this.state = 4370; this.match(MySqlParser.KW_TERMINATED); - this.state = 4368; + this.state = 4371; this.match(MySqlParser.KW_BY); - this.state = 4369; + this.state = 4372; localContext._terminationLine = this.match(MySqlParser.STRING_LITERAL); } break; @@ -24158,37 +24175,37 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4374; + this.state = 4377; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 622, this.context) ) { case 1: { - this.state = 4372; + this.state = 4375; this.match(MySqlParser.KW_FROM); - this.state = 4373; + this.state = 4376; this.tableSources(); } break; } - this.state = 4381; + this.state = 4384; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 624, this.context) ) { case 1: { - this.state = 4376; - this.match(MySqlParser.KW_WHERE); this.state = 4379; + this.match(MySqlParser.KW_WHERE); + this.state = 4382; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 623, this.context) ) { case 1: { - this.state = 4377; + this.state = 4380; localContext._whereExpr = this.expression(0); } break; case 2: { - this.state = 4378; + this.state = 4381; this.columnNamePathAllowEmpty(); } break; @@ -24219,38 +24236,38 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4383; + this.state = 4386; this.match(MySqlParser.KW_GROUP); - this.state = 4384; + this.state = 4387; this.match(MySqlParser.KW_BY); - this.state = 4385; + this.state = 4388; this.groupByItem(); - this.state = 4390; + this.state = 4393; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 625, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4386; + this.state = 4389; this.match(MySqlParser.COMMA); - this.state = 4387; + this.state = 4390; this.groupByItem(); } } } - this.state = 4392; + this.state = 4395; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 625, this.context); } - this.state = 4395; + this.state = 4398; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 626, this.context) ) { case 1: { - this.state = 4393; + this.state = 4396; this.match(MySqlParser.KW_WITH); - this.state = 4394; + this.state = 4397; this.match(MySqlParser.KW_ROLLUP); } break; @@ -24277,9 +24294,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4397; + this.state = 4400; this.match(MySqlParser.KW_HAVING); - this.state = 4398; + this.state = 4401; localContext._havingExpr = this.expression(0); } } @@ -24304,41 +24321,41 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4400; + this.state = 4403; this.match(MySqlParser.KW_WINDOW); - this.state = 4401; + this.state = 4404; this.windowName(); - this.state = 4402; + this.state = 4405; this.match(MySqlParser.KW_AS); - this.state = 4403; + this.state = 4406; this.match(MySqlParser.LR_BRACKET); - this.state = 4404; + this.state = 4407; this.windowSpec(); - this.state = 4405; + this.state = 4408; this.match(MySqlParser.RR_BRACKET); - this.state = 4415; + this.state = 4418; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 627, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4406; + this.state = 4409; this.match(MySqlParser.COMMA); - this.state = 4407; + this.state = 4410; this.windowName(); - this.state = 4408; + this.state = 4411; this.match(MySqlParser.KW_AS); - this.state = 4409; + this.state = 4412; this.match(MySqlParser.LR_BRACKET); - this.state = 4410; + this.state = 4413; this.windowSpec(); - this.state = 4411; + this.state = 4414; this.match(MySqlParser.RR_BRACKET); } } } - this.state = 4417; + this.state = 4420; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 627, this.context); } @@ -24365,14 +24382,14 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4418; + this.state = 4421; this.expression(0); - this.state = 4420; + this.state = 4423; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 628, this.context) ) { case 1: { - this.state = 4419; + this.state = 4422; localContext._order = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 45)) { @@ -24407,36 +24424,36 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4422; + this.state = 4425; this.match(MySqlParser.KW_LIMIT); - this.state = 4433; + this.state = 4436; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 630, this.context) ) { case 1: { - this.state = 4426; + this.state = 4429; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 629, this.context) ) { case 1: { - this.state = 4423; + this.state = 4426; localContext._offset = this.limitClauseAtom(); - this.state = 4424; + this.state = 4427; this.match(MySqlParser.COMMA); } break; } - this.state = 4428; + this.state = 4431; localContext._limit = this.limitClauseAtom(); } break; case 2: { - this.state = 4429; + this.state = 4432; localContext._limit = this.limitClauseAtom(); - this.state = 4430; + this.state = 4433; this.match(MySqlParser.KW_OFFSET); - this.state = 4431; + this.state = 4434; localContext._offset = this.limitClauseAtom(); } break; @@ -24461,7 +24478,7 @@ export class MySqlParser extends SQLParserBase { let localContext = new LimitClauseAtomContext(this.context, this.state); this.enterRule(localContext, 330, MySqlParser.RULE_limitClauseAtom); try { - this.state = 4438; + this.state = 4441; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ZERO_DECIMAL: @@ -24472,7 +24489,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 4435; + this.state = 4438; this.decimalLiteral(); } break; @@ -24480,7 +24497,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.GLOBAL_ID: this.enterOuterAlt(localContext, 2); { - this.state = 4436; + this.state = 4439; this.mysqlVariable(); } break; @@ -25033,7 +25050,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.ID: this.enterOuterAlt(localContext, 3); { - this.state = 4437; + this.state = 4440; this.simpleId(); } break; @@ -25062,30 +25079,30 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4440; + this.state = 4443; this.match(MySqlParser.KW_START); - this.state = 4441; + this.state = 4444; this.match(MySqlParser.KW_TRANSACTION); - this.state = 4450; + this.state = 4453; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 633, this.context) ) { case 1: { - this.state = 4442; + this.state = 4445; this.transactionMode(); - this.state = 4447; + this.state = 4450; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4443; + this.state = 4446; this.match(MySqlParser.COMMA); - this.state = 4444; + this.state = 4447; this.transactionMode(); } } - this.state = 4449; + this.state = 4452; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -25115,14 +25132,14 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4452; + this.state = 4455; this.match(MySqlParser.KW_BEGIN); - this.state = 4454; + this.state = 4457; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 691) { { - this.state = 4453; + this.state = 4456; this.match(MySqlParser.KW_WORK); } } @@ -25150,56 +25167,56 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4456; + this.state = 4459; this.match(MySqlParser.KW_COMMIT); - this.state = 4458; + this.state = 4461; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 691) { { - this.state = 4457; + this.state = 4460; this.match(MySqlParser.KW_WORK); } } - this.state = 4465; + this.state = 4468; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 4460; + this.state = 4463; this.match(MySqlParser.KW_AND); - this.state = 4462; + this.state = 4465; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 502) { { - this.state = 4461; + this.state = 4464; localContext._noChain = this.match(MySqlParser.KW_NO); } } - this.state = 4464; + this.state = 4467; this.match(MySqlParser.KW_CHAIN); } } - this.state = 4471; + this.state = 4474; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 639, this.context) ) { case 1: { - this.state = 4468; + this.state = 4471; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 502) { { - this.state = 4467; + this.state = 4470; localContext._noRelease = this.match(MySqlParser.KW_NO); } } - this.state = 4470; + this.state = 4473; this.match(MySqlParser.KW_RELEASE); } break; @@ -25227,56 +25244,56 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4473; + this.state = 4476; this.match(MySqlParser.KW_ROLLBACK); - this.state = 4475; + this.state = 4478; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 691) { { - this.state = 4474; + this.state = 4477; this.match(MySqlParser.KW_WORK); } } - this.state = 4482; + this.state = 4485; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 4477; + this.state = 4480; this.match(MySqlParser.KW_AND); - this.state = 4479; + this.state = 4482; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 502) { { - this.state = 4478; + this.state = 4481; localContext._noChain = this.match(MySqlParser.KW_NO); } } - this.state = 4481; + this.state = 4484; this.match(MySqlParser.KW_CHAIN); } } - this.state = 4488; + this.state = 4491; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 644, this.context) ) { case 1: { - this.state = 4485; + this.state = 4488; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 502) { { - this.state = 4484; + this.state = 4487; localContext._noRelease = this.match(MySqlParser.KW_NO); } } - this.state = 4487; + this.state = 4490; this.match(MySqlParser.KW_RELEASE); } break; @@ -25303,9 +25320,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4490; + this.state = 4493; this.match(MySqlParser.KW_SAVEPOINT); - this.state = 4491; + this.state = 4494; localContext._identifier = this.uid(); } } @@ -25330,31 +25347,31 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4493; + this.state = 4496; this.match(MySqlParser.KW_ROLLBACK); - this.state = 4495; + this.state = 4498; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 691) { { - this.state = 4494; + this.state = 4497; this.match(MySqlParser.KW_WORK); } } - this.state = 4497; + this.state = 4500; this.match(MySqlParser.KW_TO); - this.state = 4499; + this.state = 4502; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 646, this.context) ) { case 1: { - this.state = 4498; + this.state = 4501; this.match(MySqlParser.KW_SAVEPOINT); } break; } - this.state = 4501; + this.state = 4504; localContext._identifier = this.uid(); } } @@ -25378,11 +25395,11 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4503; + this.state = 4506; this.match(MySqlParser.KW_RELEASE); - this.state = 4504; + this.state = 4507; this.match(MySqlParser.KW_SAVEPOINT); - this.state = 4505; + this.state = 4508; localContext._identifier = this.uid(); } } @@ -25407,9 +25424,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4507; + this.state = 4510; this.match(MySqlParser.KW_LOCK); - this.state = 4508; + this.state = 4511; _la = this.tokenStream.LA(1); if(!(_la === 173 || _la === 752)) { this.errorHandler.recoverInline(this); @@ -25418,21 +25435,21 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4509; + this.state = 4512; this.lockTableElement(); - this.state = 4514; + this.state = 4517; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4510; + this.state = 4513; this.match(MySqlParser.COMMA); - this.state = 4511; + this.state = 4514; this.lockTableElement(); } } - this.state = 4516; + this.state = 4519; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -25458,9 +25475,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4517; + this.state = 4520; this.match(MySqlParser.KW_UNLOCK); - this.state = 4518; + this.state = 4521; this.match(MySqlParser.KW_TABLES); } } @@ -25485,13 +25502,13 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4520; + this.state = 4523; this.match(MySqlParser.KW_SET); - this.state = 4521; + this.state = 4524; this.match(MySqlParser.KW_AUTOCOMMIT); - this.state = 4522; + this.state = 4525; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4523; + this.state = 4526; localContext._autocommitValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 871 || _la === 872)) { @@ -25524,14 +25541,14 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4525; + this.state = 4528; this.match(MySqlParser.KW_SET); - this.state = 4527; + this.state = 4530; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 413 || _la === 593) { { - this.state = 4526; + this.state = 4529; localContext._transactionContext = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 413 || _la === 593)) { @@ -25544,23 +25561,23 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 4529; + this.state = 4532; this.match(MySqlParser.KW_TRANSACTION); - this.state = 4530; + this.state = 4533; this.transactionOption(); - this.state = 4535; + this.state = 4538; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4531; + this.state = 4534; this.match(MySqlParser.COMMA); - this.state = 4532; + this.state = 4535; this.transactionOption(); } } - this.state = 4537; + this.state = 4540; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -25584,35 +25601,35 @@ export class MySqlParser extends SQLParserBase { let localContext = new TransactionModeContext(this.context, this.state); this.enterRule(localContext, 354, MySqlParser.RULE_transactionMode); try { - this.state = 4545; + this.state = 4548; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 650, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4538; + this.state = 4541; this.match(MySqlParser.KW_WITH); - this.state = 4539; + this.state = 4542; this.match(MySqlParser.KW_CONSISTENT); - this.state = 4540; + this.state = 4543; this.match(MySqlParser.KW_SNAPSHOT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4541; + this.state = 4544; this.match(MySqlParser.KW_READ); - this.state = 4542; + this.state = 4545; this.match(MySqlParser.KW_WRITE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4543; + this.state = 4546; this.match(MySqlParser.KW_READ); - this.state = 4544; + this.state = 4547; this.match(MySqlParser.KW_ONLY); } break; @@ -25639,29 +25656,29 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4547; + this.state = 4550; this.tableName(); - this.state = 4552; + this.state = 4555; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074311168) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 4549; + this.state = 4552; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 4548; + this.state = 4551; this.match(MySqlParser.KW_AS); } } - this.state = 4551; + this.state = 4554; localContext._alias = this.uid(); } } - this.state = 4554; + this.state = 4557; this.lockAction(); } } @@ -25684,20 +25701,20 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 358, MySqlParser.RULE_lockAction); let _la: number; try { - this.state = 4564; + this.state = 4567; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_READ: this.enterOuterAlt(localContext, 1); { - this.state = 4556; + this.state = 4559; this.match(MySqlParser.KW_READ); - this.state = 4558; + this.state = 4561; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 450) { { - this.state = 4557; + this.state = 4560; this.match(MySqlParser.KW_LOCAL); } } @@ -25708,17 +25725,17 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_WRITE: this.enterOuterAlt(localContext, 2); { - this.state = 4561; + this.state = 4564; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 107) { { - this.state = 4560; + this.state = 4563; this.match(MySqlParser.KW_LOW_PRIORITY); } } - this.state = 4563; + this.state = 4566; this.match(MySqlParser.KW_WRITE); } break; @@ -25744,35 +25761,35 @@ export class MySqlParser extends SQLParserBase { let localContext = new TransactionOptionContext(this.context, this.state); this.enterRule(localContext, 360, MySqlParser.RULE_transactionOption); try { - this.state = 4573; + this.state = 4576; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 656, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4566; + this.state = 4569; this.match(MySqlParser.KW_ISOLATION); - this.state = 4567; + this.state = 4570; this.match(MySqlParser.KW_LEVEL); - this.state = 4568; + this.state = 4571; this.transactionLevel(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4569; + this.state = 4572; this.match(MySqlParser.KW_READ); - this.state = 4570; + this.state = 4573; this.match(MySqlParser.KW_WRITE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4571; + this.state = 4574; this.match(MySqlParser.KW_READ); - this.state = 4572; + this.state = 4575; this.match(MySqlParser.KW_ONLY); } break; @@ -25796,40 +25813,40 @@ export class MySqlParser extends SQLParserBase { let localContext = new TransactionLevelContext(this.context, this.state); this.enterRule(localContext, 362, MySqlParser.RULE_transactionLevel); try { - this.state = 4582; + this.state = 4585; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 657, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4575; + this.state = 4578; this.match(MySqlParser.KW_REPEATABLE); - this.state = 4576; + this.state = 4579; this.match(MySqlParser.KW_READ); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4577; + this.state = 4580; this.match(MySqlParser.KW_READ); - this.state = 4578; + this.state = 4581; this.match(MySqlParser.KW_COMMITTED); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4579; + this.state = 4582; this.match(MySqlParser.KW_READ); - this.state = 4580; + this.state = 4583; this.match(MySqlParser.KW_UNCOMMITTED); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4581; + this.state = 4584; this.match(MySqlParser.KW_SERIALIZABLE); } break; @@ -25856,36 +25873,36 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4584; + this.state = 4587; this.match(MySqlParser.KW_CHANGE); - this.state = 4585; + this.state = 4588; this.match(MySqlParser.KW_MASTER); - this.state = 4586; + this.state = 4589; this.match(MySqlParser.KW_TO); - this.state = 4587; + this.state = 4590; this.masterOption(); - this.state = 4592; + this.state = 4595; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4588; + this.state = 4591; this.match(MySqlParser.COMMA); - this.state = 4589; + this.state = 4592; this.masterOption(); } } - this.state = 4594; + this.state = 4597; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4596; + this.state = 4599; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4595; + this.state = 4598; this.channelOption(); } } @@ -25913,36 +25930,36 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4598; + this.state = 4601; this.match(MySqlParser.KW_CHANGE); - this.state = 4599; + this.state = 4602; this.match(MySqlParser.KW_REPLICATION); - this.state = 4600; + this.state = 4603; this.match(MySqlParser.KW_FILTER); - this.state = 4601; + this.state = 4604; this.replicationFilter(); - this.state = 4606; + this.state = 4609; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4602; + this.state = 4605; this.match(MySqlParser.COMMA); - this.state = 4603; + this.state = 4606; this.replicationFilter(); } } - this.state = 4608; + this.state = 4611; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4610; + this.state = 4613; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4609; + this.state = 4612; this.channelOption(); } } @@ -25970,38 +25987,38 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4612; + this.state = 4615; this.match(MySqlParser.KW_CHANGE); - this.state = 4613; + this.state = 4616; this.match(MySqlParser.KW_REPLICATION); - this.state = 4614; + this.state = 4617; this.match(MySqlParser.KW_SOURCE); - this.state = 4615; + this.state = 4618; this.match(MySqlParser.KW_TO); - this.state = 4616; + this.state = 4619; this.replicationSourceOption(); - this.state = 4621; + this.state = 4624; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4617; + this.state = 4620; this.match(MySqlParser.COMMA); - this.state = 4618; + this.state = 4621; this.replicationSourceOption(); } } - this.state = 4623; + this.state = 4626; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4625; + this.state = 4628; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4624; + this.state = 4627; this.channelOption(); } } @@ -26029,9 +26046,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4627; + this.state = 4630; this.match(MySqlParser.KW_PURGE); - this.state = 4628; + this.state = 4631; localContext._purgeFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 228 || _la === 453)) { @@ -26041,24 +26058,24 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4629; + this.state = 4632; this.match(MySqlParser.KW_LOGS); - this.state = 4634; + this.state = 4637; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_TO: { - this.state = 4630; + this.state = 4633; this.match(MySqlParser.KW_TO); - this.state = 4631; + this.state = 4634; localContext._fileName = this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_BEFORE: { - this.state = 4632; + this.state = 4635; this.match(MySqlParser.KW_BEFORE); - this.state = 4633; + this.state = 4636; localContext._timeValue = this.match(MySqlParser.STRING_LITERAL); } break; @@ -26088,9 +26105,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4636; + this.state = 4639; this.match(MySqlParser.KW_START); - this.state = 4637; + this.state = 4640; _la = this.tokenStream.LA(1); if(!(_la === 563 || _la === 598)) { this.errorHandler.recoverInline(this); @@ -26099,64 +26116,64 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4646; + this.state = 4649; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 438 || _la === 639) { { - this.state = 4638; + this.state = 4641; this.threadType(); - this.state = 4643; + this.state = 4646; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4639; + this.state = 4642; this.match(MySqlParser.COMMA); - this.state = 4640; + this.state = 4643; this.threadType(); } } - this.state = 4645; + this.state = 4648; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 4650; + this.state = 4653; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 676) { { - this.state = 4648; + this.state = 4651; this.match(MySqlParser.KW_UNTIL); - this.state = 4649; + this.state = 4652; this.untilOption(); } } - this.state = 4655; + this.state = 4658; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 363 || _la === 529 || _la === 535 || _la === 678) { { { - this.state = 4652; + this.state = 4655; this.connectionOptions(); } } - this.state = 4657; + this.state = 4660; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4659; + this.state = 4662; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4658; + this.state = 4661; this.channelOption(); } } @@ -26184,9 +26201,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4661; + this.state = 4664; this.match(MySqlParser.KW_STOP); - this.state = 4662; + this.state = 4665; _la = this.tokenStream.LA(1); if(!(_la === 563 || _la === 598)) { this.errorHandler.recoverInline(this); @@ -26195,38 +26212,38 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4671; + this.state = 4674; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 438 || _la === 639) { { - this.state = 4663; + this.state = 4666; this.threadType(); - this.state = 4668; + this.state = 4671; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4664; + this.state = 4667; this.match(MySqlParser.COMMA); - this.state = 4665; + this.state = 4668; this.threadType(); } } - this.state = 4670; + this.state = 4673; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 4674; + this.state = 4677; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4673; + this.state = 4676; this.channelOption(); } } @@ -26254,52 +26271,52 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4676; + this.state = 4679; this.match(MySqlParser.KW_START); - this.state = 4677; + this.state = 4680; this.match(MySqlParser.KW_GROUP_REPLICATION); - this.state = 4681; + this.state = 4684; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 678) { { - this.state = 4678; + this.state = 4681; this.match(MySqlParser.KW_USER); - this.state = 4679; + this.state = 4682; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4680; + this.state = 4683; this.match(MySqlParser.STRING_LITERAL); } } - this.state = 4687; + this.state = 4690; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 674, this.context) ) { case 1: { - this.state = 4683; + this.state = 4686; this.match(MySqlParser.COMMA); - this.state = 4684; + this.state = 4687; this.match(MySqlParser.KW_PASSWORD); - this.state = 4685; + this.state = 4688; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4686; + this.state = 4689; this.match(MySqlParser.STRING_LITERAL); } break; } - this.state = 4693; + this.state = 4696; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 4689; + this.state = 4692; this.match(MySqlParser.COMMA); - this.state = 4690; + this.state = 4693; this.match(MySqlParser.KW_DEFAULT_AUTH); - this.state = 4691; + this.state = 4694; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4692; + this.state = 4695; this.match(MySqlParser.STRING_LITERAL); } } @@ -26326,9 +26343,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4695; + this.state = 4698; this.match(MySqlParser.KW_STOP); - this.state = 4696; + this.state = 4699; this.match(MySqlParser.KW_GROUP_REPLICATION); } } @@ -26351,7 +26368,7 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 380, MySqlParser.RULE_masterOption); let _la: number; try { - this.state = 4725; + this.state = 4728; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_MASTER_BIND: @@ -26375,11 +26392,11 @@ export class MySqlParser extends SQLParserBase { localContext = new MasterStringOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4698; + this.state = 4701; this.stringMasterOption(); - this.state = 4699; + this.state = 4702; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4700; + this.state = 4703; this.match(MySqlParser.STRING_LITERAL); } break; @@ -26394,11 +26411,11 @@ export class MySqlParser extends SQLParserBase { localContext = new MasterDecimalOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4702; + this.state = 4705; this.decimalMasterOption(); - this.state = 4703; + this.state = 4706; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4704; + this.state = 4707; this.decimalLiteral(); } break; @@ -26412,11 +26429,11 @@ export class MySqlParser extends SQLParserBase { localContext = new MasterBoolOptionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4706; + this.state = 4709; this.boolMasterOption(); - this.state = 4707; + this.state = 4710; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4708; + this.state = 4711; (localContext as MasterBoolOptionContext)._boolVal = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 871 || _la === 872)) { @@ -26434,7 +26451,7 @@ export class MySqlParser extends SQLParserBase { localContext = new V8AddMasterOptionContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 4710; + this.state = 4713; this.v8NewMasterOption(); } break; @@ -26442,39 +26459,39 @@ export class MySqlParser extends SQLParserBase { localContext = new MasterUidListOptionContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 4711; + this.state = 4714; this.match(MySqlParser.KW_IGNORE_SERVER_IDS); - this.state = 4712; + this.state = 4715; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4713; + this.state = 4716; this.match(MySqlParser.LR_BRACKET); - this.state = 4722; + this.state = 4725; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 4714; + this.state = 4717; (localContext as MasterUidListOptionContext)._server_id = this.uid(); - this.state = 4719; + this.state = 4722; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4715; + this.state = 4718; this.match(MySqlParser.COMMA); - this.state = 4716; + this.state = 4719; (localContext as MasterUidListOptionContext)._server_id = this.uid(); } } - this.state = 4721; + this.state = 4724; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 4724; + this.state = 4727; this.match(MySqlParser.RR_BRACKET); } break; @@ -26503,7 +26520,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4727; + this.state = 4730; _la = this.tokenStream.LA(1); if(!(_la === 108 || ((((_la - 455)) & ~0x1F) === 0 && ((1 << (_la - 455)) & 4190897) !== 0) || _la === 499 || _la === 557)) { this.errorHandler.recoverInline(this); @@ -26535,7 +26552,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4729; + this.state = 4732; _la = this.tokenStream.LA(1); if(!(((((_la - 456)) & ~0x1F) === 0 && ((1 << (_la - 456)) & 2097831) !== 0) || _la === 558)) { this.errorHandler.recoverInline(this); @@ -26567,7 +26584,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4731; + this.state = 4734; _la = this.tokenStream.LA(1); if(!(_la === 109 || _la === 411 || _la === 416 || _la === 454 || _la === 466 || _la === 573 || _la === 617)) { this.errorHandler.recoverInline(this); @@ -26597,17 +26614,17 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 388, MySqlParser.RULE_v8NewMasterOption); let _la: number; try { - this.state = 4746; + this.state = 4749; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_PRIVILEGE_CHECKS_USER: this.enterOuterAlt(localContext, 1); { - this.state = 4733; + this.state = 4736; this.match(MySqlParser.KW_PRIVILEGE_CHECKS_USER); - this.state = 4734; + this.state = 4737; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4735; + this.state = 4738; _la = this.tokenStream.LA(1); if(!(_la === 116 || _la === 882)) { this.errorHandler.recoverInline(this); @@ -26621,11 +26638,11 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_REQUIRE_TABLE_PRIMARY_KEY_CHECK: this.enterOuterAlt(localContext, 2); { - this.state = 4736; + this.state = 4739; this.match(MySqlParser.KW_REQUIRE_TABLE_PRIMARY_KEY_CHECK); - this.state = 4737; + this.state = 4740; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4738; + this.state = 4741; _la = this.tokenStream.LA(1); if(!(_la === 118 || _la === 119 || _la === 507)) { this.errorHandler.recoverInline(this); @@ -26639,22 +26656,22 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS: this.enterOuterAlt(localContext, 3); { - this.state = 4739; + this.state = 4742; this.match(MySqlParser.KW_ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS); - this.state = 4740; + this.state = 4743; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4744; + this.state = 4747; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_OFF: { - this.state = 4741; + this.state = 4744; this.match(MySqlParser.KW_OFF); } break; case MySqlParser.KW_LOCAL: { - this.state = 4742; + this.state = 4745; this.match(MySqlParser.KW_LOCAL); } break; @@ -26666,7 +26683,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 4743; + this.state = 4746; this.gtuidSet(); } break; @@ -26698,7 +26715,7 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 390, MySqlParser.RULE_replicationSourceOption); let _la: number; try { - this.state = 4775; + this.state = 4778; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_NETWORK_NAMESPACE: @@ -26722,11 +26739,11 @@ export class MySqlParser extends SQLParserBase { localContext = new SourceStringOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4748; + this.state = 4751; this.stringSourceOption(); - this.state = 4749; + this.state = 4752; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4750; + this.state = 4753; this.match(MySqlParser.STRING_LITERAL); } break; @@ -26741,11 +26758,11 @@ export class MySqlParser extends SQLParserBase { localContext = new SourceDecimalOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4752; + this.state = 4755; this.decimalSourceOption(); - this.state = 4753; + this.state = 4756; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4754; + this.state = 4757; this.decimalLiteral(); } break; @@ -26759,11 +26776,11 @@ export class MySqlParser extends SQLParserBase { localContext = new SourceBoolOptionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4756; + this.state = 4759; this.boolSourceOption(); - this.state = 4757; + this.state = 4760; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4758; + this.state = 4761; (localContext as SourceBoolOptionContext)._boolVal = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 871 || _la === 872)) { @@ -26781,7 +26798,7 @@ export class MySqlParser extends SQLParserBase { localContext = new SourceOtherOptionContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 4760; + this.state = 4763; this.otherSourceOption(); } break; @@ -26789,39 +26806,39 @@ export class MySqlParser extends SQLParserBase { localContext = new SourceUidListOptionContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 4761; + this.state = 4764; this.match(MySqlParser.KW_IGNORE_SERVER_IDS); - this.state = 4762; + this.state = 4765; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4763; + this.state = 4766; this.match(MySqlParser.LR_BRACKET); - this.state = 4772; + this.state = 4775; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 4764; + this.state = 4767; (localContext as SourceUidListOptionContext)._server_id = this.uid(); - this.state = 4769; + this.state = 4772; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4765; + this.state = 4768; this.match(MySqlParser.COMMA); - this.state = 4766; + this.state = 4769; (localContext as SourceUidListOptionContext)._server_id = this.uid(); } } - this.state = 4771; + this.state = 4774; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 4774; + this.state = 4777; this.match(MySqlParser.RR_BRACKET); } break; @@ -26850,7 +26867,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4777; + this.state = 4780; _la = this.tokenStream.LA(1); if(!(_la === 499 || _la === 557 || ((((_la - 606)) & ~0x1F) === 0 && ((1 << (_la - 606)) & 125771823) !== 0))) { this.errorHandler.recoverInline(this); @@ -26882,7 +26899,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4779; + this.state = 4782; _la = this.tokenStream.LA(1); if(!(_la === 558 || ((((_la - 610)) & ~0x1F) === 0 && ((1 << (_la - 610)) & 1397) !== 0))) { this.errorHandler.recoverInline(this); @@ -26914,7 +26931,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4781; + this.state = 4784; _la = this.tokenStream.LA(1); if(!(_la === 412 || _la === 416 || _la === 573 || ((((_la - 613)) & ~0x1F) === 0 && ((1 << (_la - 613)) & 65809) !== 0))) { this.errorHandler.recoverInline(this); @@ -26944,17 +26961,17 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 398, MySqlParser.RULE_otherSourceOption); let _la: number; try { - this.state = 4796; + this.state = 4799; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_PRIVILEGE_CHECKS_USER: this.enterOuterAlt(localContext, 1); { - this.state = 4783; + this.state = 4786; this.match(MySqlParser.KW_PRIVILEGE_CHECKS_USER); - this.state = 4784; + this.state = 4787; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4785; + this.state = 4788; _la = this.tokenStream.LA(1); if(!(_la === 116 || _la === 882)) { this.errorHandler.recoverInline(this); @@ -26968,11 +26985,11 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_REQUIRE_TABLE_PRIMARY_KEY_CHECK: this.enterOuterAlt(localContext, 2); { - this.state = 4786; + this.state = 4789; this.match(MySqlParser.KW_REQUIRE_TABLE_PRIMARY_KEY_CHECK); - this.state = 4787; + this.state = 4790; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4788; + this.state = 4791; _la = this.tokenStream.LA(1); if(!(_la === 70 || _la === 118 || _la === 119 || _la === 507)) { this.errorHandler.recoverInline(this); @@ -26986,22 +27003,22 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS: this.enterOuterAlt(localContext, 3); { - this.state = 4789; + this.state = 4792; this.match(MySqlParser.KW_ASSIGN_GTIDS_TO_ANONYMOUS_TRANSACTIONS); - this.state = 4790; + this.state = 4793; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4794; + this.state = 4797; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_OFF: { - this.state = 4791; + this.state = 4794; this.match(MySqlParser.KW_OFF); } break; case MySqlParser.KW_LOCAL: { - this.state = 4792; + this.state = 4795; this.match(MySqlParser.KW_LOCAL); } break; @@ -27013,7 +27030,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 4793; + this.state = 4796; this.gtuidSet(); } break; @@ -27046,11 +27063,11 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4798; + this.state = 4801; this.match(MySqlParser.KW_FOR); - this.state = 4799; + this.state = 4802; this.match(MySqlParser.KW_CHANNEL); - this.state = 4800; + this.state = 4803; this.match(MySqlParser.STRING_LITERAL); } } @@ -27073,38 +27090,38 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 402, MySqlParser.RULE_replicationFilter); let _la: number; try { - this.state = 4865; + this.state = 4868; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_REPLICATE_DO_DB: localContext = new DoDbReplicationContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4802; + this.state = 4805; this.match(MySqlParser.KW_REPLICATE_DO_DB); - this.state = 4803; + this.state = 4806; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4804; + this.state = 4807; this.match(MySqlParser.LR_BRACKET); - this.state = 4805; + this.state = 4808; this.databaseName(); - this.state = 4810; + this.state = 4813; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4806; + this.state = 4809; this.match(MySqlParser.COMMA); - this.state = 4807; + this.state = 4810; this.databaseName(); } } - this.state = 4812; + this.state = 4815; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4813; + this.state = 4816; this.match(MySqlParser.RR_BRACKET); } break; @@ -27112,31 +27129,31 @@ export class MySqlParser extends SQLParserBase { localContext = new IgnoreDbReplicationContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4815; + this.state = 4818; this.match(MySqlParser.KW_REPLICATE_IGNORE_DB); - this.state = 4816; + this.state = 4819; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4817; + this.state = 4820; this.match(MySqlParser.LR_BRACKET); - this.state = 4818; + this.state = 4821; this.databaseName(); - this.state = 4823; + this.state = 4826; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4819; + this.state = 4822; this.match(MySqlParser.COMMA); - this.state = 4820; + this.state = 4823; this.databaseName(); } } - this.state = 4825; + this.state = 4828; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4826; + this.state = 4829; this.match(MySqlParser.RR_BRACKET); } break; @@ -27144,15 +27161,15 @@ export class MySqlParser extends SQLParserBase { localContext = new DoTableReplicationContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4828; + this.state = 4831; this.match(MySqlParser.KW_REPLICATE_DO_TABLE); - this.state = 4829; + this.state = 4832; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4830; + this.state = 4833; this.match(MySqlParser.LR_BRACKET); - this.state = 4831; + this.state = 4834; this.tableNames(); - this.state = 4832; + this.state = 4835; this.match(MySqlParser.RR_BRACKET); } break; @@ -27160,15 +27177,15 @@ export class MySqlParser extends SQLParserBase { localContext = new IgnoreTableReplicationContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 4834; + this.state = 4837; this.match(MySqlParser.KW_REPLICATE_IGNORE_TABLE); - this.state = 4835; + this.state = 4838; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4836; + this.state = 4839; this.match(MySqlParser.LR_BRACKET); - this.state = 4837; + this.state = 4840; this.tableNames(); - this.state = 4838; + this.state = 4841; this.match(MySqlParser.RR_BRACKET); } break; @@ -27176,15 +27193,15 @@ export class MySqlParser extends SQLParserBase { localContext = new WildDoTableReplicationContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 4840; + this.state = 4843; this.match(MySqlParser.KW_REPLICATE_WILD_DO_TABLE); - this.state = 4841; + this.state = 4844; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4842; + this.state = 4845; this.match(MySqlParser.LR_BRACKET); - this.state = 4843; + this.state = 4846; this.simpleStrings(); - this.state = 4844; + this.state = 4847; this.match(MySqlParser.RR_BRACKET); } break; @@ -27192,15 +27209,15 @@ export class MySqlParser extends SQLParserBase { localContext = new WildIgnoreTableReplicationContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 4846; + this.state = 4849; this.match(MySqlParser.KW_REPLICATE_WILD_IGNORE_TABLE); - this.state = 4847; + this.state = 4850; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4848; + this.state = 4851; this.match(MySqlParser.LR_BRACKET); - this.state = 4849; + this.state = 4852; this.simpleStrings(); - this.state = 4850; + this.state = 4853; this.match(MySqlParser.RR_BRACKET); } break; @@ -27208,31 +27225,31 @@ export class MySqlParser extends SQLParserBase { localContext = new RewriteDbReplicationContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 4852; + this.state = 4855; this.match(MySqlParser.KW_REPLICATE_REWRITE_DB); - this.state = 4853; + this.state = 4856; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4854; + this.state = 4857; this.match(MySqlParser.LR_BRACKET); - this.state = 4855; + this.state = 4858; this.tablePair(); - this.state = 4860; + this.state = 4863; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 4856; + this.state = 4859; this.match(MySqlParser.COMMA); - this.state = 4857; + this.state = 4860; this.tablePair(); } } - this.state = 4862; + this.state = 4865; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4863; + this.state = 4866; this.match(MySqlParser.RR_BRACKET); } break; @@ -27260,15 +27277,15 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4867; + this.state = 4870; this.match(MySqlParser.LR_BRACKET); - this.state = 4868; + this.state = 4871; localContext._firstTable = this.tableName(); - this.state = 4869; + this.state = 4872; this.match(MySqlParser.COMMA); - this.state = 4870; + this.state = 4873; localContext._secondTable = this.tableName(); - this.state = 4871; + this.state = 4874; this.match(MySqlParser.RR_BRACKET); } } @@ -27293,7 +27310,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4873; + this.state = 4876; _la = this.tokenStream.LA(1); if(!(_la === 438 || _la === 639)) { this.errorHandler.recoverInline(this); @@ -27323,7 +27340,7 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 408, MySqlParser.RULE_untilOption); let _la: number; try { - this.state = 4900; + this.state = 4903; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SQL_AFTER_GTIDS: @@ -27331,7 +27348,7 @@ export class MySqlParser extends SQLParserBase { localContext = new GtidsUntilOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4875; + this.state = 4878; (localContext as GtidsUntilOptionContext)._gtids = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 633 || _la === 635)) { @@ -27341,9 +27358,9 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4876; + this.state = 4879; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4877; + this.state = 4880; this.gtuidSet(); } break; @@ -27351,19 +27368,19 @@ export class MySqlParser extends SQLParserBase { localContext = new MasterLogUntilOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4878; + this.state = 4881; this.match(MySqlParser.KW_MASTER_LOG_FILE); - this.state = 4879; + this.state = 4882; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4880; + this.state = 4883; this.match(MySqlParser.STRING_LITERAL); - this.state = 4881; + this.state = 4884; this.match(MySqlParser.COMMA); - this.state = 4882; + this.state = 4885; this.match(MySqlParser.KW_MASTER_LOG_POS); - this.state = 4883; + this.state = 4886; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4884; + this.state = 4887; this.decimalLiteral(); } break; @@ -27371,19 +27388,19 @@ export class MySqlParser extends SQLParserBase { localContext = new SourceLogUntilOptionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4885; + this.state = 4888; this.match(MySqlParser.KW_SOURCE_LOG_FILE); - this.state = 4886; + this.state = 4889; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4887; + this.state = 4890; this.match(MySqlParser.STRING_LITERAL); - this.state = 4888; + this.state = 4891; this.match(MySqlParser.COMMA); - this.state = 4889; + this.state = 4892; this.match(MySqlParser.KW_SOURCE_LOG_POS); - this.state = 4890; + this.state = 4893; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4891; + this.state = 4894; this.decimalLiteral(); } break; @@ -27391,19 +27408,19 @@ export class MySqlParser extends SQLParserBase { localContext = new RelayLogUntilOptionContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 4892; + this.state = 4895; this.match(MySqlParser.KW_RELAY_LOG_FILE); - this.state = 4893; + this.state = 4896; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4894; + this.state = 4897; this.match(MySqlParser.STRING_LITERAL); - this.state = 4895; + this.state = 4898; this.match(MySqlParser.COMMA); - this.state = 4896; + this.state = 4899; this.match(MySqlParser.KW_RELAY_LOG_POS); - this.state = 4897; + this.state = 4900; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4898; + this.state = 4901; this.decimalLiteral(); } break; @@ -27411,7 +27428,7 @@ export class MySqlParser extends SQLParserBase { localContext = new SqlGapsUntilOptionContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 4899; + this.state = 4902; this.match(MySqlParser.KW_SQL_AFTER_MTS_GAPS); } break; @@ -27437,18 +27454,18 @@ export class MySqlParser extends SQLParserBase { let localContext = new ConnectionOptionsContext(this.context, this.state); this.enterRule(localContext, 410, MySqlParser.RULE_connectionOptions); try { - this.state = 4914; + this.state = 4917; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_USER: localContext = new UserConnectionOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 4902; + this.state = 4905; this.match(MySqlParser.KW_USER); - this.state = 4903; + this.state = 4906; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4904; + this.state = 4907; (localContext as UserConnectionOptionContext)._conOptUser = this.match(MySqlParser.STRING_LITERAL); } break; @@ -27456,11 +27473,11 @@ export class MySqlParser extends SQLParserBase { localContext = new PasswordConnectionOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 4905; + this.state = 4908; this.match(MySqlParser.KW_PASSWORD); - this.state = 4906; + this.state = 4909; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4907; + this.state = 4910; (localContext as PasswordConnectionOptionContext)._conOptPassword = this.match(MySqlParser.STRING_LITERAL); } break; @@ -27468,11 +27485,11 @@ export class MySqlParser extends SQLParserBase { localContext = new DefaultAuthConnectionOptionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 4908; + this.state = 4911; this.match(MySqlParser.KW_DEFAULT_AUTH); - this.state = 4909; + this.state = 4912; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4910; + this.state = 4913; (localContext as DefaultAuthConnectionOptionContext)._conOptDefAuth = this.match(MySqlParser.STRING_LITERAL); } break; @@ -27480,11 +27497,11 @@ export class MySqlParser extends SQLParserBase { localContext = new PluginDirConnectionOptionContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 4911; + this.state = 4914; this.match(MySqlParser.KW_PLUGIN_DIR); - this.state = 4912; + this.state = 4915; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 4913; + this.state = 4916; (localContext as PluginDirConnectionOptionContext)._conOptPluginDir = this.match(MySqlParser.STRING_LITERAL); } break; @@ -27511,7 +27528,7 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 412, MySqlParser.RULE_gtuidSet); try { let alternative: number; - this.state = 4925; + this.state = 4928; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ZERO_DECIMAL: @@ -27522,23 +27539,23 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 4916; + this.state = 4919; this.uuidSet(); - this.state = 4921; + this.state = 4924; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 692, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4917; + this.state = 4920; this.match(MySqlParser.COMMA); - this.state = 4918; + this.state = 4921; this.uuidSet(); } } } - this.state = 4923; + this.state = 4926; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 692, this.context); } @@ -27547,7 +27564,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 2); { - this.state = 4924; + this.state = 4927; this.match(MySqlParser.STRING_LITERAL); } break; @@ -27576,9 +27593,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4927; + this.state = 4930; this.match(MySqlParser.KW_XA); - this.state = 4928; + this.state = 4931; localContext._xaStart = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 317 || _la === 640)) { @@ -27588,14 +27605,14 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4929; + this.state = 4932; this.xid(); - this.state = 4931; + this.state = 4934; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 91 || _la === 577) { { - this.state = 4930; + this.state = 4933; localContext._xaAction = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 91 || _la === 577)) { @@ -27631,27 +27648,27 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4933; + this.state = 4936; this.match(MySqlParser.KW_XA); - this.state = 4934; + this.state = 4937; this.match(MySqlParser.KW_END); - this.state = 4935; + this.state = 4938; this.xid(); - this.state = 4941; + this.state = 4944; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 654) { { - this.state = 4936; - this.match(MySqlParser.KW_SUSPEND); this.state = 4939; + this.match(MySqlParser.KW_SUSPEND); + this.state = 4942; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4937; + this.state = 4940; this.match(MySqlParser.KW_FOR); - this.state = 4938; + this.state = 4941; this.match(MySqlParser.KW_MIGRATE); } } @@ -27681,11 +27698,11 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4943; + this.state = 4946; this.match(MySqlParser.KW_XA); - this.state = 4944; + this.state = 4947; this.match(MySqlParser.KW_PREPARE); - this.state = 4945; + this.state = 4948; this.xid(); } } @@ -27710,20 +27727,20 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4947; + this.state = 4950; this.match(MySqlParser.KW_XA); - this.state = 4948; + this.state = 4951; this.match(MySqlParser.KW_COMMIT); - this.state = 4949; - this.xid(); this.state = 4952; + this.xid(); + this.state = 4955; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 513) { { - this.state = 4950; + this.state = 4953; this.match(MySqlParser.KW_ONE); - this.state = 4951; + this.state = 4954; this.match(MySqlParser.KW_PHASE); } } @@ -27750,11 +27767,11 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4954; + this.state = 4957; this.match(MySqlParser.KW_XA); - this.state = 4955; + this.state = 4958; this.match(MySqlParser.KW_ROLLBACK); - this.state = 4956; + this.state = 4959; this.xid(); } } @@ -27779,18 +27796,18 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4958; + this.state = 4961; this.match(MySqlParser.KW_XA); - this.state = 4959; - this.match(MySqlParser.KW_RECOVER); this.state = 4962; + this.match(MySqlParser.KW_RECOVER); + this.state = 4965; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 33) { { - this.state = 4960; + this.state = 4963; this.match(MySqlParser.KW_CONVERT); - this.state = 4961; + this.state = 4964; this.xid(); } } @@ -27817,24 +27834,24 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4964; + this.state = 4967; this.match(MySqlParser.KW_PREPARE); - this.state = 4965; + this.state = 4968; localContext._stmt_name = this.uid(); - this.state = 4966; - this.match(MySqlParser.KW_FROM); this.state = 4969; + this.match(MySqlParser.KW_FROM); + this.state = 4972; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: { - this.state = 4967; + this.state = 4970; localContext._query = this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.LOCAL_ID: { - this.state = 4968; + this.state = 4971; localContext._variable = this.match(MySqlParser.LOCAL_ID); } break; @@ -27864,18 +27881,18 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4971; + this.state = 4974; this.match(MySqlParser.KW_EXECUTE); - this.state = 4972; - localContext._stmt_name = this.uid(); this.state = 4975; + localContext._stmt_name = this.uid(); + this.state = 4978; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 4973; + this.state = 4976; this.match(MySqlParser.KW_USING); - this.state = 4974; + this.state = 4977; this.userVariables(); } } @@ -27903,7 +27920,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4977; + this.state = 4980; localContext._dropFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 51 || _la === 362)) { @@ -27913,9 +27930,9 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4978; + this.state = 4981; this.match(MySqlParser.KW_PREPARE); - this.state = 4979; + this.state = 4982; localContext._stmt_name = this.uid(); } } @@ -27937,20 +27954,20 @@ export class MySqlParser extends SQLParserBase { let localContext = new RoutineBodyContext(this.context, this.state); this.enterRule(localContext, 432, MySqlParser.RULE_routineBody); try { - this.state = 4983; + this.state = 4986; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 701, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4981; + this.state = 4984; this.blockStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4982; + this.state = 4985; this.sqlStatement(); } break; @@ -27978,114 +27995,114 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4988; + this.state = 4991; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 702, this.context) ) { case 1: { - this.state = 4985; + this.state = 4988; localContext._begin = this.uid(); - this.state = 4986; + this.state = 4989; this.match(MySqlParser.COLON_SYMB); } break; } - this.state = 4990; + this.state = 4993; this.match(MySqlParser.KW_BEGIN); - this.state = 4996; + this.state = 4999; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 703, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4991; + this.state = 4994; this.declareVariable(); - this.state = 4992; + this.state = 4995; this.match(MySqlParser.SEMI); } } } - this.state = 4998; + this.state = 5001; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 703, this.context); } - this.state = 5004; + this.state = 5007; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 704, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 4999; + this.state = 5002; this.declareCondition(); - this.state = 5000; + this.state = 5003; this.match(MySqlParser.SEMI); } } } - this.state = 5006; + this.state = 5009; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 704, this.context); } - this.state = 5012; + this.state = 5015; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 705, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 5007; + this.state = 5010; this.declareCursor(); - this.state = 5008; + this.state = 5011; this.match(MySqlParser.SEMI); } } } - this.state = 5014; + this.state = 5017; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 705, this.context); } - this.state = 5020; + this.state = 5023; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 41) { { { - this.state = 5015; + this.state = 5018; this.declareHandler(); - this.state = 5016; + this.state = 5019; this.match(MySqlParser.SEMI); } } - this.state = 5022; + this.state = 5025; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5026; + this.state = 5029; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 707, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 5023; + this.state = 5026; this.procedureSqlStatement(); } } } - this.state = 5028; + this.state = 5031; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 707, this.context); } - this.state = 5029; + this.state = 5032; this.match(MySqlParser.KW_END); - this.state = 5031; + this.state = 5034; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 708, this.context) ) { case 1: { - this.state = 5030; + this.state = 5033; localContext._end = this.uid(); } break; @@ -28114,46 +28131,46 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5033; - this.match(MySqlParser.KW_CASE); this.state = 5036; + this.match(MySqlParser.KW_CASE); + this.state = 5039; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 709, this.context) ) { case 1: { - this.state = 5034; + this.state = 5037; localContext._case_value = this.uid(); } break; case 2: { - this.state = 5035; + this.state = 5038; this.expression(0); } break; } - this.state = 5039; + this.state = 5042; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 5038; + this.state = 5041; this.caseAlternative(); } } - this.state = 5041; + this.state = 5044; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 191); - this.state = 5049; + this.state = 5052; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 5043; + this.state = 5046; this.match(MySqlParser.KW_ELSE); - this.state = 5045; + this.state = 5048; this.errorHandler.sync(this); alternative = 1; do { @@ -28161,7 +28178,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 5044; + this.state = 5047; this.procedureSqlStatement(); } } @@ -28169,16 +28186,16 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5047; + this.state = 5050; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 711, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } - this.state = 5051; + this.state = 5054; this.match(MySqlParser.KW_END); - this.state = 5052; + this.state = 5055; this.match(MySqlParser.KW_CASE); } } @@ -28204,13 +28221,13 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5054; + this.state = 5057; this.match(MySqlParser.KW_IF); - this.state = 5055; + this.state = 5058; this.expression(0); - this.state = 5056; + this.state = 5059; this.match(MySqlParser.KW_THEN); - this.state = 5058; + this.state = 5061; this.errorHandler.sync(this); alternative = 1; do { @@ -28218,7 +28235,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 5057; + this.state = 5060; localContext._procedureSqlStatement = this.procedureSqlStatement(); localContext._thenStatements.push(localContext._procedureSqlStatement); } @@ -28227,32 +28244,32 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5060; + this.state = 5063; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 713, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); - this.state = 5065; + this.state = 5068; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 54) { { { - this.state = 5062; + this.state = 5065; this.elseIfAlternative(); } } - this.state = 5067; + this.state = 5070; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5074; + this.state = 5077; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 5068; + this.state = 5071; this.match(MySqlParser.KW_ELSE); - this.state = 5070; + this.state = 5073; this.errorHandler.sync(this); alternative = 1; do { @@ -28260,7 +28277,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 5069; + this.state = 5072; localContext._procedureSqlStatement = this.procedureSqlStatement(); localContext._elseStatements.push(localContext._procedureSqlStatement); } @@ -28269,16 +28286,16 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5072; + this.state = 5075; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 715, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } - this.state = 5076; + this.state = 5079; this.match(MySqlParser.KW_END); - this.state = 5077; + this.state = 5080; this.match(MySqlParser.KW_IF); } } @@ -28302,9 +28319,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5079; + this.state = 5082; this.match(MySqlParser.KW_ITERATE); - this.state = 5080; + this.state = 5083; localContext._label = this.uid(); } } @@ -28328,9 +28345,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5082; + this.state = 5085; this.match(MySqlParser.KW_LEAVE); - this.state = 5083; + this.state = 5086; localContext._label = this.uid(); } } @@ -28356,21 +28373,21 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5088; + this.state = 5091; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 5085; + this.state = 5088; localContext._begin_label = this.uid(); - this.state = 5086; + this.state = 5089; this.match(MySqlParser.COLON_SYMB); } } - this.state = 5090; + this.state = 5093; this.match(MySqlParser.KW_LOOP); - this.state = 5092; + this.state = 5095; this.errorHandler.sync(this); alternative = 1; do { @@ -28378,7 +28395,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 5091; + this.state = 5094; this.procedureSqlStatement(); } } @@ -28386,20 +28403,20 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5094; + this.state = 5097; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 718, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); - this.state = 5096; + this.state = 5099; this.match(MySqlParser.KW_END); - this.state = 5097; + this.state = 5100; this.match(MySqlParser.KW_LOOP); - this.state = 5099; + this.state = 5102; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 5098; + this.state = 5101; localContext._end_label = this.uid(); } } @@ -28428,21 +28445,21 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5104; + this.state = 5107; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 720, this.context) ) { case 1: { - this.state = 5101; + this.state = 5104; localContext._begin_label = this.uid(); - this.state = 5102; + this.state = 5105; this.match(MySqlParser.COLON_SYMB); } break; } - this.state = 5106; + this.state = 5109; this.match(MySqlParser.KW_REPEAT); - this.state = 5108; + this.state = 5111; this.errorHandler.sync(this); alternative = 1; do { @@ -28450,7 +28467,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 5107; + this.state = 5110; this.procedureSqlStatement(); } } @@ -28458,24 +28475,24 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5110; + this.state = 5113; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 721, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); - this.state = 5112; + this.state = 5115; this.match(MySqlParser.KW_UNTIL); - this.state = 5113; + this.state = 5116; this.expression(0); - this.state = 5114; + this.state = 5117; this.match(MySqlParser.KW_END); - this.state = 5115; + this.state = 5118; this.match(MySqlParser.KW_REPEAT); - this.state = 5117; + this.state = 5120; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 5116; + this.state = 5119; localContext._end_label = this.uid(); } } @@ -28502,9 +28519,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5119; + this.state = 5122; this.match(MySqlParser.KW_RETURN); - this.state = 5120; + this.state = 5123; this.expression(0); } } @@ -28530,25 +28547,25 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5125; + this.state = 5128; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 5122; + this.state = 5125; localContext._begin_label = this.uid(); - this.state = 5123; + this.state = 5126; this.match(MySqlParser.COLON_SYMB); } } - this.state = 5127; + this.state = 5130; this.match(MySqlParser.KW_WHILE); - this.state = 5128; + this.state = 5131; this.expression(0); - this.state = 5129; + this.state = 5132; this.match(MySqlParser.KW_DO); - this.state = 5131; + this.state = 5134; this.errorHandler.sync(this); alternative = 1; do { @@ -28556,7 +28573,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 5130; + this.state = 5133; this.procedureSqlStatement(); } } @@ -28564,20 +28581,20 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5133; + this.state = 5136; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 724, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); - this.state = 5135; + this.state = 5138; this.match(MySqlParser.KW_END); - this.state = 5136; + this.state = 5139; this.match(MySqlParser.KW_WHILE); - this.state = 5138; + this.state = 5141; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014219) !== 0) || ((((_la - 74)) & ~0x1F) === 0 && ((1 << (_la - 74)) & 18878481) !== 0) || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 100679969) !== 0) || ((((_la - 150)) & ~0x1F) === 0 && ((1 << (_la - 150)) & 1049605) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 5374495) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 4294967295) !== 0) || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 4261412607) !== 0) || ((((_la - 317)) & ~0x1F) === 0 && ((1 << (_la - 317)) & 4160741375) !== 0) || ((((_la - 349)) & ~0x1F) === 0 && ((1 << (_la - 349)) & 4026531839) !== 0) || ((((_la - 381)) & ~0x1F) === 0 && ((1 << (_la - 381)) & 1055907839) !== 0) || ((((_la - 413)) & ~0x1F) === 0 && ((1 << (_la - 413)) & 4294885367) !== 0) || ((((_la - 445)) & ~0x1F) === 0 && ((1 << (_la - 445)) & 3757571071) !== 0) || ((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 3755999231) !== 0) || ((((_la - 510)) & ~0x1F) === 0 && ((1 << (_la - 510)) & 3751780349) !== 0) || ((((_la - 542)) & ~0x1F) === 0 && ((1 << (_la - 542)) & 2141183997) !== 0) || ((((_la - 575)) & ~0x1F) === 0 && ((1 << (_la - 575)) & 2147483645) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 4278189053) !== 0) || ((((_la - 697)) & ~0x1F) === 0 && ((1 << (_la - 697)) & 1644099327) !== 0) || ((((_la - 729)) & ~0x1F) === 0 && ((1 << (_la - 729)) & 4294900735) !== 0) || ((((_la - 761)) & ~0x1F) === 0 && ((1 << (_la - 761)) & 4294967295) !== 0) || ((((_la - 793)) & ~0x1F) === 0 && ((1 << (_la - 793)) & 4288675839) !== 0) || ((((_la - 825)) & ~0x1F) === 0 && ((1 << (_la - 825)) & 2147527671) !== 0) || ((((_la - 879)) & ~0x1F) === 0 && ((1 << (_la - 879)) & 1033) !== 0)) { { - this.state = 5137; + this.state = 5140; localContext._end_label = this.uid(); } } @@ -28603,16 +28620,16 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 452, MySqlParser.RULE_cursorStatement); let _la: number; try { - this.state = 5155; + this.state = 5158; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CLOSE: localContext = new CloseCursorContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5140; + this.state = 5143; this.match(MySqlParser.KW_CLOSE); - this.state = 5141; + this.state = 5144; (localContext as CloseCursorContext)._cursor_name = this.uid(); } break; @@ -28620,33 +28637,33 @@ export class MySqlParser extends SQLParserBase { localContext = new FetchCursorContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5142; + this.state = 5145; this.match(MySqlParser.KW_FETCH); - this.state = 5147; + this.state = 5150; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 727, this.context) ) { case 1: { - this.state = 5144; + this.state = 5147; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 501) { { - this.state = 5143; + this.state = 5146; this.match(MySqlParser.KW_NEXT); } } - this.state = 5146; + this.state = 5149; this.match(MySqlParser.KW_FROM); } break; } - this.state = 5149; + this.state = 5152; (localContext as FetchCursorContext)._cursor_name = this.uid(); - this.state = 5150; + this.state = 5153; this.match(MySqlParser.KW_INTO); - this.state = 5151; + this.state = 5154; (localContext as FetchCursorContext)._var_names = this.uidList(); } break; @@ -28654,9 +28671,9 @@ export class MySqlParser extends SQLParserBase { localContext = new OpenCursorContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 5153; + this.state = 5156; this.match(MySqlParser.KW_OPEN); - this.state = 5154; + this.state = 5157; (localContext as OpenCursorContext)._cursor_name = this.uid(); } break; @@ -28685,20 +28702,20 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5157; + this.state = 5160; this.match(MySqlParser.KW_DECLARE); - this.state = 5158; + this.state = 5161; localContext._var_names = this.uidList(); - this.state = 5159; - this.dataType(); this.state = 5162; + this.dataType(); + this.state = 5165; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 5160; + this.state = 5163; this.match(MySqlParser.KW_DEFAULT); - this.state = 5161; + this.state = 5164; this.expression(0); } } @@ -28726,15 +28743,15 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5164; + this.state = 5167; this.match(MySqlParser.KW_DECLARE); - this.state = 5165; + this.state = 5168; localContext._condition_name = this.uid(); - this.state = 5166; + this.state = 5169; this.match(MySqlParser.KW_CONDITION); - this.state = 5167; + this.state = 5170; this.match(MySqlParser.KW_FOR); - this.state = 5174; + this.state = 5177; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ZERO_DECIMAL: @@ -28744,25 +28761,25 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 5168; + this.state = 5171; this.decimalLiteral(); } break; case MySqlParser.KW_SQLSTATE: { - this.state = 5169; + this.state = 5172; this.match(MySqlParser.KW_SQLSTATE); - this.state = 5171; + this.state = 5174; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 682) { { - this.state = 5170; + this.state = 5173; this.match(MySqlParser.KW_VALUE); } } - this.state = 5173; + this.state = 5176; this.match(MySqlParser.STRING_LITERAL); } break; @@ -28791,15 +28808,15 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5176; + this.state = 5179; this.match(MySqlParser.KW_DECLARE); - this.state = 5177; + this.state = 5180; localContext._condition_name = this.uid(); - this.state = 5178; + this.state = 5181; this.match(MySqlParser.KW_CURSOR); - this.state = 5179; + this.state = 5182; this.match(MySqlParser.KW_FOR); - this.state = 5180; + this.state = 5183; this.selectStatement(); } } @@ -28824,9 +28841,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5182; + this.state = 5185; this.match(MySqlParser.KW_DECLARE); - this.state = 5183; + this.state = 5186; localContext._handlerAction = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 32 || _la === 61 || _la === 180)) { @@ -28836,29 +28853,29 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5184; + this.state = 5187; this.match(MySqlParser.KW_HANDLER); - this.state = 5185; + this.state = 5188; this.match(MySqlParser.KW_FOR); - this.state = 5186; + this.state = 5189; this.handlerConditionValue(); - this.state = 5191; + this.state = 5194; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5187; + this.state = 5190; this.match(MySqlParser.COMMA); - this.state = 5188; + this.state = 5191; this.handlerConditionValue(); } } - this.state = 5193; + this.state = 5196; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5194; + this.state = 5197; this.routineBody(); } } @@ -28881,7 +28898,7 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 462, MySqlParser.RULE_handlerConditionValue); let _la: number; try { - this.state = 5207; + this.state = 5210; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ZERO_DECIMAL: @@ -28893,7 +28910,7 @@ export class MySqlParser extends SQLParserBase { localContext = new HandlerConditionCodeContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5196; + this.state = 5199; this.decimalLiteral(); } break; @@ -28901,19 +28918,19 @@ export class MySqlParser extends SQLParserBase { localContext = new HandlerConditionStateContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5197; + this.state = 5200; this.match(MySqlParser.KW_SQLSTATE); - this.state = 5199; + this.state = 5202; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 682) { { - this.state = 5198; + this.state = 5201; this.match(MySqlParser.KW_VALUE); } } - this.state = 5201; + this.state = 5204; this.match(MySqlParser.STRING_LITERAL); } break; @@ -29469,7 +29486,7 @@ export class MySqlParser extends SQLParserBase { localContext = new HandlerConditionNameContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 5202; + this.state = 5205; (localContext as HandlerConditionNameContext)._condition_name = this.uid(); } break; @@ -29477,7 +29494,7 @@ export class MySqlParser extends SQLParserBase { localContext = new HandlerConditionWarningContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 5203; + this.state = 5206; this.match(MySqlParser.KW_SQLWARNING); } break; @@ -29485,9 +29502,9 @@ export class MySqlParser extends SQLParserBase { localContext = new HandlerConditionNotfoundContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 5204; + this.state = 5207; this.match(MySqlParser.KW_NOT); - this.state = 5205; + this.state = 5208; this.match(MySqlParser.KW_FOUND); } break; @@ -29495,7 +29512,7 @@ export class MySqlParser extends SQLParserBase { localContext = new HandlerConditionExceptionContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 5206; + this.state = 5209; this.match(MySqlParser.KW_SQLEXCEPTION); } break; @@ -29523,23 +29540,23 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5211; + this.state = 5214; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 735, this.context) ) { case 1: { - this.state = 5209; + this.state = 5212; this.compoundStatement(); } break; case 2: { - this.state = 5210; + this.state = 5213; this.sqlStatement(); } break; } - this.state = 5213; + this.state = 5216; this.match(MySqlParser.SEMI); } } @@ -29564,27 +29581,27 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5215; - this.match(MySqlParser.KW_WHEN); this.state = 5218; + this.match(MySqlParser.KW_WHEN); + this.state = 5221; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 736, this.context) ) { case 1: { - this.state = 5216; + this.state = 5219; this.constant(); } break; case 2: { - this.state = 5217; + this.state = 5220; this.expression(0); } break; } - this.state = 5220; + this.state = 5223; this.match(MySqlParser.KW_THEN); - this.state = 5222; + this.state = 5225; this.errorHandler.sync(this); alternative = 1; do { @@ -29592,7 +29609,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 5221; + this.state = 5224; this.procedureSqlStatement(); } } @@ -29600,7 +29617,7 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5224; + this.state = 5227; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 737, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -29627,13 +29644,13 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5226; + this.state = 5229; this.match(MySqlParser.KW_ELSEIF); - this.state = 5227; + this.state = 5230; this.expression(0); - this.state = 5228; + this.state = 5231; this.match(MySqlParser.KW_THEN); - this.state = 5230; + this.state = 5233; this.errorHandler.sync(this); alternative = 1; do { @@ -29641,7 +29658,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 5229; + this.state = 5232; this.procedureSqlStatement(); } } @@ -29649,7 +29666,7 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5232; + this.state = 5235; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 738, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -29676,41 +29693,41 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5234; + this.state = 5237; this.match(MySqlParser.KW_ALTER); - this.state = 5235; + this.state = 5238; this.match(MySqlParser.KW_USER); - this.state = 5237; + this.state = 5240; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 739, this.context) ) { case 1: { - this.state = 5236; + this.state = 5239; this.ifExists(); } break; } - this.state = 5295; + this.state = 5298; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 751, this.context) ) { case 1: { { - this.state = 5239; + this.state = 5242; this.userSpecification(); - this.state = 5244; + this.state = 5247; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5240; + this.state = 5243; this.match(MySqlParser.COMMA); - this.state = 5241; + this.state = 5244; this.userSpecification(); } } - this.state = 5246; + this.state = 5249; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -29720,37 +29737,37 @@ export class MySqlParser extends SQLParserBase { case 2: { { - this.state = 5247; + this.state = 5250; this.alterUserAuthOption(); - this.state = 5252; + this.state = 5255; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5248; + this.state = 5251; this.match(MySqlParser.COMMA); - this.state = 5249; + this.state = 5252; this.alterUserAuthOption(); } } - this.state = 5254; + this.state = 5257; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5269; + this.state = 5272; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 5255; + this.state = 5258; this.match(MySqlParser.KW_REQUIRE); - this.state = 5267; + this.state = 5270; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_NONE: { - this.state = 5256; + this.state = 5259; this.match(MySqlParser.KW_NONE); } break; @@ -29760,29 +29777,29 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_SUBJECT: case MySqlParser.KW_X509: { - this.state = 5257; + this.state = 5260; this.tlsOption(); - this.state = 5264; + this.state = 5267; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 11 || _la === 169 || _la === 331 || _la === 441 || _la === 651 || _la === 693) { { { - this.state = 5259; + this.state = 5262; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 5258; + this.state = 5261; this.match(MySqlParser.KW_AND); } } - this.state = 5261; + this.state = 5264; this.tlsOption(); } } - this.state = 5266; + this.state = 5269; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -29794,49 +29811,49 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 5277; + this.state = 5280; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 747, this.context) ) { case 1: { - this.state = 5271; + this.state = 5274; this.match(MySqlParser.KW_WITH); - this.state = 5273; + this.state = 5276; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 5272; + this.state = 5275; this.userResourceOption(); } } - this.state = 5275; + this.state = 5278; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 51) !== 0)); } break; } - this.state = 5283; + this.state = 5286; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 304 || _la === 395 || _la === 529 || _la === 530) { { - this.state = 5281; + this.state = 5284; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_FAILED_LOGIN_ATTEMPTS: case MySqlParser.KW_PASSWORD: case MySqlParser.KW_PASSWORD_LOCK_TIME: { - this.state = 5279; + this.state = 5282; this.userPasswordOption(); } break; case MySqlParser.KW_ACCOUNT: { - this.state = 5280; + this.state = 5283; this.userLockOption(); } break; @@ -29844,16 +29861,16 @@ export class MySqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 5285; + this.state = 5288; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5288; + this.state = 5291; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 15 || _la === 340) { { - this.state = 5286; + this.state = 5289; _la = this.tokenStream.LA(1); if(!(_la === 15 || _la === 340)) { this.errorHandler.recoverInline(this); @@ -29862,7 +29879,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5287; + this.state = 5290; this.match(MySqlParser.STRING_LITERAL); } } @@ -29874,14 +29891,14 @@ export class MySqlParser extends SQLParserBase { { { { - this.state = 5290; + this.state = 5293; this.userOrRoleName(); } - this.state = 5291; + this.state = 5294; this.match(MySqlParser.KW_DEFAULT); - this.state = 5292; + this.state = 5295; this.match(MySqlParser.KW_ROLE); - this.state = 5293; + this.state = 5296; this.roleOption(); } } @@ -29910,85 +29927,85 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5297; + this.state = 5300; this.match(MySqlParser.KW_CREATE); - this.state = 5298; + this.state = 5301; this.match(MySqlParser.KW_USER); - this.state = 5300; + this.state = 5303; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 5299; + this.state = 5302; this.ifNotExists(); } } - this.state = 5302; + this.state = 5305; this.userName(); - this.state = 5304; + this.state = 5307; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 423) { { - this.state = 5303; + this.state = 5306; this.createUserAuthOption(); } } - this.state = 5313; + this.state = 5316; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5306; + this.state = 5309; this.match(MySqlParser.COMMA); - this.state = 5307; + this.state = 5310; this.userName(); - this.state = 5309; + this.state = 5312; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 423) { { - this.state = 5308; + this.state = 5311; this.createUserAuthOption(); } } } } - this.state = 5315; + this.state = 5318; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5319; + this.state = 5322; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42) { { - this.state = 5316; + this.state = 5319; this.match(MySqlParser.KW_DEFAULT); - this.state = 5317; + this.state = 5320; this.match(MySqlParser.KW_ROLE); - this.state = 5318; + this.state = 5321; this.roleOption(); } } - this.state = 5335; + this.state = 5338; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 5321; + this.state = 5324; this.match(MySqlParser.KW_REQUIRE); - this.state = 5333; + this.state = 5336; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_NONE: { - this.state = 5322; + this.state = 5325; this.match(MySqlParser.KW_NONE); } break; @@ -29998,29 +30015,29 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_SUBJECT: case MySqlParser.KW_X509: { - this.state = 5323; + this.state = 5326; this.tlsOption(); - this.state = 5330; + this.state = 5333; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 11 || _la === 169 || _la === 331 || _la === 441 || _la === 651 || _la === 693) { { { - this.state = 5325; + this.state = 5328; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 5324; + this.state = 5327; this.match(MySqlParser.KW_AND); } } - this.state = 5327; + this.state = 5330; this.tlsOption(); } } - this.state = 5332; + this.state = 5335; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -30032,49 +30049,49 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 5343; + this.state = 5346; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 762, this.context) ) { case 1: { - this.state = 5337; + this.state = 5340; this.match(MySqlParser.KW_WITH); - this.state = 5339; + this.state = 5342; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 5338; + this.state = 5341; this.userResourceOption(); } } - this.state = 5341; + this.state = 5344; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (((((_la - 478)) & ~0x1F) === 0 && ((1 << (_la - 478)) & 51) !== 0)); } break; } - this.state = 5349; + this.state = 5352; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 304 || _la === 395 || _la === 529 || _la === 530) { { - this.state = 5347; + this.state = 5350; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_FAILED_LOGIN_ATTEMPTS: case MySqlParser.KW_PASSWORD: case MySqlParser.KW_PASSWORD_LOCK_TIME: { - this.state = 5345; + this.state = 5348; this.userPasswordOption(); } break; case MySqlParser.KW_ACCOUNT: { - this.state = 5346; + this.state = 5349; this.userLockOption(); } break; @@ -30082,16 +30099,16 @@ export class MySqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 5351; + this.state = 5354; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5354; + this.state = 5357; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 15 || _la === 340) { { - this.state = 5352; + this.state = 5355; _la = this.tokenStream.LA(1); if(!(_la === 15 || _la === 340)) { this.errorHandler.recoverInline(this); @@ -30100,7 +30117,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5353; + this.state = 5356; this.match(MySqlParser.STRING_LITERAL); } } @@ -30128,35 +30145,35 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5356; + this.state = 5359; this.match(MySqlParser.KW_DROP); - this.state = 5357; + this.state = 5360; this.match(MySqlParser.KW_USER); - this.state = 5359; + this.state = 5362; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 5358; + this.state = 5361; this.ifExists(); } } - this.state = 5361; + this.state = 5364; this.userName(); - this.state = 5366; + this.state = 5369; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5362; + this.state = 5365; this.match(MySqlParser.COMMA); - this.state = 5363; + this.state = 5366; this.userName(); } } - this.state = 5368; + this.state = 5371; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -30182,69 +30199,69 @@ export class MySqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 5458; + this.state = 5461; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 785, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5369; + this.state = 5372; this.match(MySqlParser.KW_GRANT); - this.state = 5370; + this.state = 5373; this.privilegeClause(); - this.state = 5375; + this.state = 5378; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5371; + this.state = 5374; this.match(MySqlParser.COMMA); - this.state = 5372; + this.state = 5375; this.privilegeClause(); } } - this.state = 5377; + this.state = 5380; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5378; + this.state = 5381; this.match(MySqlParser.KW_ON); - this.state = 5380; + this.state = 5383; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 769, this.context) ) { case 1: { - this.state = 5379; + this.state = 5382; this.privilegeObjectType(); } break; } - this.state = 5382; + this.state = 5385; this.privilegeLevel(); - this.state = 5383; + this.state = 5386; this.match(MySqlParser.KW_TO); - this.state = 5393; + this.state = 5396; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 771, this.context) ) { case 1: { { - this.state = 5384; + this.state = 5387; this.userAuthOption(); - this.state = 5389; + this.state = 5392; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5385; + this.state = 5388; this.match(MySqlParser.COMMA); - this.state = 5386; + this.state = 5389; this.userAuthOption(); } } - this.state = 5391; + this.state = 5394; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -30253,24 +30270,24 @@ export class MySqlParser extends SQLParserBase { break; case 2: { - this.state = 5392; + this.state = 5395; this.userOrRoleNames(); } break; } - this.state = 5409; + this.state = 5412; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 5395; + this.state = 5398; this.match(MySqlParser.KW_REQUIRE); - this.state = 5407; + this.state = 5410; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_NONE: { - this.state = 5396; + this.state = 5399; localContext._tlsNone = this.match(MySqlParser.KW_NONE); } break; @@ -30280,29 +30297,29 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_SUBJECT: case MySqlParser.KW_X509: { - this.state = 5397; + this.state = 5400; this.tlsOption(); - this.state = 5404; + this.state = 5407; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 11 || _la === 169 || _la === 331 || _la === 441 || _la === 651 || _la === 693) { { { - this.state = 5399; + this.state = 5402; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 5398; + this.state = 5401; this.match(MySqlParser.KW_AND); } } - this.state = 5401; + this.state = 5404; this.tlsOption(); } } - this.state = 5406; + this.state = 5409; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -30314,27 +30331,27 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 5420; + this.state = 5423; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 778, this.context) ) { case 1: { - this.state = 5411; + this.state = 5414; this.match(MySqlParser.KW_WITH); - this.state = 5417; + this.state = 5420; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 777, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 5415; + this.state = 5418; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_GRANT: { - this.state = 5412; + this.state = 5415; this.match(MySqlParser.KW_GRANT); - this.state = 5413; + this.state = 5416; this.match(MySqlParser.KW_OPTION); } break; @@ -30343,7 +30360,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_MAX_UPDATES_PER_HOUR: case MySqlParser.KW_MAX_USER_CONNECTIONS: { - this.state = 5414; + this.state = 5417; this.userResourceOption(); } break; @@ -30352,32 +30369,32 @@ export class MySqlParser extends SQLParserBase { } } } - this.state = 5419; + this.state = 5422; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 777, this.context); } } break; } - this.state = 5429; + this.state = 5432; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 5422; + this.state = 5425; this.match(MySqlParser.KW_AS); - this.state = 5423; + this.state = 5426; this.userName(); - this.state = 5427; + this.state = 5430; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 779, this.context) ) { case 1: { - this.state = 5424; + this.state = 5427; this.match(MySqlParser.KW_WITH); - this.state = 5425; + this.state = 5428; this.match(MySqlParser.KW_ROLE); - this.state = 5426; + this.state = 5429; this.roleOption(); } break; @@ -30390,76 +30407,76 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5431; - this.match(MySqlParser.KW_GRANT); this.state = 5434; + this.match(MySqlParser.KW_GRANT); + this.state = 5437; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 781, this.context) ) { case 1: { - this.state = 5432; + this.state = 5435; this.match(MySqlParser.KW_PROXY); - this.state = 5433; + this.state = 5436; this.match(MySqlParser.KW_ON); } break; } { - this.state = 5436; + this.state = 5439; this.userOrRoleName(); } - this.state = 5441; + this.state = 5444; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5437; + this.state = 5440; this.match(MySqlParser.COMMA); { - this.state = 5438; + this.state = 5441; this.userOrRoleName(); } } } - this.state = 5443; + this.state = 5446; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5444; + this.state = 5447; this.match(MySqlParser.KW_TO); { - this.state = 5445; + this.state = 5448; this.userOrRoleName(); } - this.state = 5450; + this.state = 5453; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5446; + this.state = 5449; this.match(MySqlParser.COMMA); { - this.state = 5447; + this.state = 5450; this.userOrRoleName(); } } } - this.state = 5452; + this.state = 5455; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5456; + this.state = 5459; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 784, this.context) ) { case 1: { - this.state = 5453; + this.state = 5456; this.match(MySqlParser.KW_WITH); - this.state = 5454; + this.state = 5457; this.match(MySqlParser.KW_ADMIN); - this.state = 5455; + this.state = 5458; this.match(MySqlParser.KW_OPTION); } break; @@ -30487,36 +30504,36 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 478, MySqlParser.RULE_roleOption); let _la: number; try { - this.state = 5468; + this.state = 5471; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 787, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5460; + this.state = 5463; this.match(MySqlParser.KW_DEFAULT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5461; + this.state = 5464; this.match(MySqlParser.KW_NONE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5462; - this.match(MySqlParser.KW_ALL); this.state = 5465; + this.match(MySqlParser.KW_ALL); + this.state = 5468; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 5463; + this.state = 5466; this.match(MySqlParser.KW_EXCEPT); - this.state = 5464; + this.state = 5467; this.userOrRoleNames(); } } @@ -30526,7 +30543,7 @@ export class MySqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5467; + this.state = 5470; this.userOrRoleNames(); } break; @@ -30553,45 +30570,45 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5470; + this.state = 5473; this.match(MySqlParser.KW_GRANT); - this.state = 5471; + this.state = 5474; this.match(MySqlParser.KW_PROXY); - this.state = 5472; + this.state = 5475; this.match(MySqlParser.KW_ON); - this.state = 5473; + this.state = 5476; localContext._fromFirst = this.userName(); - this.state = 5474; + this.state = 5477; this.match(MySqlParser.KW_TO); - this.state = 5475; + this.state = 5478; localContext._toFirst = this.userName(); - this.state = 5480; + this.state = 5483; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5476; + this.state = 5479; this.match(MySqlParser.COMMA); - this.state = 5477; + this.state = 5480; localContext._userName = this.userName(); localContext._toOther.push(localContext._userName); } } - this.state = 5482; + this.state = 5485; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5486; + this.state = 5489; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 789, this.context) ) { case 1: { - this.state = 5483; + this.state = 5486; this.match(MySqlParser.KW_WITH); - this.state = 5484; + this.state = 5487; this.match(MySqlParser.KW_GRANT); - this.state = 5485; + this.state = 5488; this.match(MySqlParser.KW_OPTION); } break; @@ -30619,64 +30636,64 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5488; + this.state = 5491; this.match(MySqlParser.KW_ALTER); - this.state = 5489; + this.state = 5492; this.match(MySqlParser.KW_RESOURCE); - this.state = 5490; + this.state = 5493; this.match(MySqlParser.KW_GROUP); - this.state = 5491; + this.state = 5494; this.groupName(); - this.state = 5497; + this.state = 5500; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190) { { - this.state = 5492; + this.state = 5495; this.match(MySqlParser.KW_VCPU); - this.state = 5494; + this.state = 5497; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 5493; + this.state = 5496; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 5496; + this.state = 5499; this.resourceGroupVCpuSpec(); } } - this.state = 5504; + this.state = 5507; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 837) { { - this.state = 5499; + this.state = 5502; this.match(MySqlParser.KW_THREAD_PRIORITY); - this.state = 5501; + this.state = 5504; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 5500; + this.state = 5503; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 5503; + this.state = 5506; this.decimalLiteral(); } } - this.state = 5510; + this.state = 5513; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 368 || _la === 375) { { - this.state = 5506; + this.state = 5509; _la = this.tokenStream.LA(1); if(!(_la === 368 || _la === 375)) { this.errorHandler.recoverInline(this); @@ -30685,12 +30702,12 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5508; + this.state = 5511; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 66) { { - this.state = 5507; + this.state = 5510; this.match(MySqlParser.KW_FORCE); } } @@ -30721,19 +30738,19 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5512; + this.state = 5515; this.match(MySqlParser.KW_CREATE); - this.state = 5513; + this.state = 5516; this.match(MySqlParser.KW_RESOURCE); - this.state = 5514; + this.state = 5517; this.match(MySqlParser.KW_GROUP); - this.state = 5515; + this.state = 5518; this.groupNameCreate(); - this.state = 5516; + this.state = 5519; this.match(MySqlParser.KW_TYPE); - this.state = 5517; + this.state = 5520; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 5518; + this.state = 5521; _la = this.tokenStream.LA(1); if(!(_la === 678 || _la === 835)) { this.errorHandler.recoverInline(this); @@ -30742,56 +30759,56 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5524; + this.state = 5527; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190) { { - this.state = 5519; + this.state = 5522; this.match(MySqlParser.KW_VCPU); - this.state = 5521; + this.state = 5524; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 5520; + this.state = 5523; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 5523; + this.state = 5526; this.resourceGroupVCpuSpec(); } } - this.state = 5531; + this.state = 5534; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 837) { { - this.state = 5526; + this.state = 5529; this.match(MySqlParser.KW_THREAD_PRIORITY); - this.state = 5528; + this.state = 5531; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 5527; + this.state = 5530; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 5530; + this.state = 5533; this.decimalLiteral(); } } - this.state = 5534; + this.state = 5537; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 368 || _la === 375) { { - this.state = 5533; + this.state = 5536; _la = this.tokenStream.LA(1); if(!(_la === 368 || _la === 375)) { this.errorHandler.recoverInline(this); @@ -30826,20 +30843,20 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5536; + this.state = 5539; this.match(MySqlParser.KW_DROP); - this.state = 5537; + this.state = 5540; this.match(MySqlParser.KW_RESOURCE); - this.state = 5538; + this.state = 5541; this.match(MySqlParser.KW_GROUP); - this.state = 5539; + this.state = 5542; this.groupName(); - this.state = 5541; + this.state = 5544; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 66) { { - this.state = 5540; + this.state = 5543; this.match(MySqlParser.KW_FORCE); } } @@ -30867,36 +30884,36 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5543; + this.state = 5546; this.match(MySqlParser.KW_SET); - this.state = 5544; + this.state = 5547; this.match(MySqlParser.KW_RESOURCE); - this.state = 5545; + this.state = 5548; this.match(MySqlParser.KW_GROUP); - this.state = 5546; + this.state = 5549; this.groupName(); - this.state = 5556; + this.state = 5559; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 5547; + this.state = 5550; this.match(MySqlParser.KW_FOR); - this.state = 5548; + this.state = 5551; this.decimalLiteral(); - this.state = 5553; + this.state = 5556; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5549; + this.state = 5552; this.match(MySqlParser.COMMA); - this.state = 5550; + this.state = 5553; this.decimalLiteral(); } } - this.state = 5555; + this.state = 5558; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -30926,41 +30943,41 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5563; + this.state = 5566; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 804, this.context) ) { case 1: { - this.state = 5558; + this.state = 5561; this.decimalLiteral(); } break; case 2: { - this.state = 5559; + this.state = 5562; this.decimalLiteral(); - this.state = 5560; + this.state = 5563; this.match(MySqlParser.MINUS); - this.state = 5561; + this.state = 5564; this.decimalLiteral(); } break; } - this.state = 5569; + this.state = 5572; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 805, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 5565; + this.state = 5568; this.match(MySqlParser.COMMA); - this.state = 5566; + this.state = 5569; this.resourceGroupVCpuSpec(); } } } - this.state = 5571; + this.state = 5574; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 805, this.context); } @@ -30987,25 +31004,25 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5572; + this.state = 5575; this.match(MySqlParser.KW_RENAME); - this.state = 5573; + this.state = 5576; this.match(MySqlParser.KW_USER); - this.state = 5574; + this.state = 5577; this.renameUserClause(); - this.state = 5579; + this.state = 5582; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5575; + this.state = 5578; this.match(MySqlParser.COMMA); - this.state = 5576; + this.state = 5579; this.renameUserClause(); } } - this.state = 5581; + this.state = 5584; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -31030,67 +31047,67 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 494, MySqlParser.RULE_revokeStatement); let _la: number; try { - this.state = 5634; + this.state = 5637; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 817, this.context) ) { case 1: localContext = new DetailRevokeContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5582; + this.state = 5585; this.match(MySqlParser.KW_REVOKE); - this.state = 5584; + this.state = 5587; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 5583; + this.state = 5586; this.ifExists(); } } - this.state = 5586; + this.state = 5589; this.privilegeClause(); - this.state = 5591; + this.state = 5594; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 5587; + this.state = 5590; this.match(MySqlParser.COMMA); - this.state = 5588; + this.state = 5591; this.privilegeClause(); } } - this.state = 5593; + this.state = 5596; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5594; + this.state = 5597; this.match(MySqlParser.KW_ON); - this.state = 5596; + this.state = 5599; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 809, this.context) ) { case 1: { - this.state = 5595; + this.state = 5598; this.privilegeObjectType(); } break; } - this.state = 5598; + this.state = 5601; this.privilegeLevel(); - this.state = 5599; + this.state = 5602; this.match(MySqlParser.KW_FROM); - this.state = 5600; + this.state = 5603; this.userOrRoleNames(); - this.state = 5602; + this.state = 5605; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 5601; + this.state = 5604; this.ignoreUnknownUser(); } } @@ -31101,46 +31118,46 @@ export class MySqlParser extends SQLParserBase { localContext = new ShortRevokeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5604; + this.state = 5607; this.match(MySqlParser.KW_REVOKE); - this.state = 5606; + this.state = 5609; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 5605; + this.state = 5608; this.ifExists(); } } - this.state = 5608; + this.state = 5611; this.match(MySqlParser.KW_ALL); - this.state = 5610; + this.state = 5613; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 734) { { - this.state = 5609; + this.state = 5612; this.match(MySqlParser.KW_PRIVILEGES); } } - this.state = 5612; + this.state = 5615; this.match(MySqlParser.COMMA); - this.state = 5613; + this.state = 5616; this.match(MySqlParser.KW_GRANT); - this.state = 5614; + this.state = 5617; this.match(MySqlParser.KW_OPTION); - this.state = 5615; + this.state = 5618; this.match(MySqlParser.KW_FROM); - this.state = 5616; + this.state = 5619; this.userOrRoleNames(); - this.state = 5618; + this.state = 5621; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 5617; + this.state = 5620; this.ignoreUnknownUser(); } } @@ -31151,42 +31168,42 @@ export class MySqlParser extends SQLParserBase { localContext = new ProxyAndRoleRevokeContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 5620; + this.state = 5623; this.match(MySqlParser.KW_REVOKE); - this.state = 5622; + this.state = 5625; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 814, this.context) ) { case 1: { - this.state = 5621; + this.state = 5624; this.ifExists(); } break; } - this.state = 5626; + this.state = 5629; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 815, this.context) ) { case 1: { - this.state = 5624; + this.state = 5627; this.match(MySqlParser.KW_PROXY); - this.state = 5625; + this.state = 5628; this.match(MySqlParser.KW_ON); } break; } - this.state = 5628; + this.state = 5631; this.userOrRoleNames(); - this.state = 5629; + this.state = 5632; this.match(MySqlParser.KW_FROM); - this.state = 5630; + this.state = 5633; this.userOrRoleNames(); - this.state = 5632; + this.state = 5635; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 5631; + this.state = 5634; this.ignoreUnknownUser(); } } @@ -31215,11 +31232,11 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5636; + this.state = 5639; this.match(MySqlParser.KW_IGNORE); - this.state = 5637; + this.state = 5640; this.match(MySqlParser.KW_UNKNOWN); - this.state = 5638; + this.state = 5641; this.match(MySqlParser.KW_USER); } } @@ -31244,7 +31261,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5640; + this.state = 5643; _la = this.tokenStream.LA(1); if(!(_la === 132 || _la === 173 || _la === 409)) { this.errorHandler.recoverInline(this); @@ -31274,44 +31291,44 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 500, MySqlParser.RULE_setPasswordStatement); let _la: number; try { - this.state = 5674; + this.state = 5677; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 824, this.context) ) { case 1: localContext = new V57Context(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5642; + this.state = 5645; this.match(MySqlParser.KW_SET); - this.state = 5643; - this.match(MySqlParser.KW_PASSWORD); this.state = 5646; + this.match(MySqlParser.KW_PASSWORD); + this.state = 5649; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 5644; + this.state = 5647; this.match(MySqlParser.KW_FOR); - this.state = 5645; + this.state = 5648; this.userName(); } } - this.state = 5648; - this.match(MySqlParser.EQUAL_SYMBOL); this.state = 5651; + this.match(MySqlParser.EQUAL_SYMBOL); + this.state = 5654; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_OLD_PASSWORD: case MySqlParser.KW_PASSWORD: { - this.state = 5649; + this.state = 5652; this.passwordFunctionClause(); } break; case MySqlParser.STRING_LITERAL: { - this.state = 5650; + this.state = 5653; this.match(MySqlParser.STRING_LITERAL); } break; @@ -31324,66 +31341,66 @@ export class MySqlParser extends SQLParserBase { localContext = new V80Context(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5653; + this.state = 5656; this.match(MySqlParser.KW_SET); - this.state = 5654; - this.match(MySqlParser.KW_PASSWORD); this.state = 5657; + this.match(MySqlParser.KW_PASSWORD); + this.state = 5660; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 5655; + this.state = 5658; this.match(MySqlParser.KW_FOR); - this.state = 5656; + this.state = 5659; this.userName(); } } - this.state = 5663; + this.state = 5666; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_TO: { - this.state = 5659; + this.state = 5662; this.match(MySqlParser.KW_TO); - this.state = 5660; + this.state = 5663; this.match(MySqlParser.KW_RANDOM); } break; case MySqlParser.EQUAL_SYMBOL: { - this.state = 5661; + this.state = 5664; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 5662; + this.state = 5665; this.match(MySqlParser.STRING_LITERAL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 5667; + this.state = 5670; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 822, this.context) ) { case 1: { - this.state = 5665; + this.state = 5668; this.match(MySqlParser.KW_REPLACE); - this.state = 5666; + this.state = 5669; this.match(MySqlParser.STRING_LITERAL); } break; } - this.state = 5672; + this.state = 5675; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 147) { { - this.state = 5669; + this.state = 5672; this.match(MySqlParser.KW_RETAIN); - this.state = 5670; + this.state = 5673; this.match(MySqlParser.KW_CURRENT); - this.state = 5671; + this.state = 5674; this.match(MySqlParser.KW_PASSWORD); } } @@ -31412,9 +31429,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5676; + this.state = 5679; this.userName(); - this.state = 5677; + this.state = 5680; this.userPasswordOption(); } } @@ -31440,60 +31457,60 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5679; + this.state = 5682; this.userName(); - this.state = 5705; + this.state = 5708; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 827, this.context) ) { case 1: { - this.state = 5680; + this.state = 5683; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5681; + this.state = 5684; this.match(MySqlParser.KW_BY); - this.state = 5682; + this.state = 5685; this.match(MySqlParser.STRING_LITERAL); - this.state = 5683; + this.state = 5686; this.authOptionClause(); } break; case 2: { - this.state = 5684; + this.state = 5687; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5685; + this.state = 5688; this.match(MySqlParser.KW_BY); - this.state = 5686; + this.state = 5689; this.match(MySqlParser.KW_RANDOM); - this.state = 5687; + this.state = 5690; this.match(MySqlParser.KW_PASSWORD); - this.state = 5688; + this.state = 5691; this.authOptionClause(); } break; case 3: { - this.state = 5689; + this.state = 5692; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5690; + this.state = 5693; this.match(MySqlParser.KW_WITH); - this.state = 5691; + this.state = 5694; this.authenticationRule(); } break; case 4: { - this.state = 5692; + this.state = 5695; this.match(MySqlParser.KW_DISCARD); - this.state = 5693; + this.state = 5696; this.match(MySqlParser.KW_OLD); - this.state = 5694; + this.state = 5697; this.match(MySqlParser.KW_PASSWORD); } break; case 5: { - this.state = 5700; + this.state = 5703; this.errorHandler.sync(this); alternative = 1; do { @@ -31501,7 +31518,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 5695; + this.state = 5698; _la = this.tokenStream.LA(1); if(!(_la === 6 || _la === 51 || _la === 492)) { this.errorHandler.recoverInline(this); @@ -31510,14 +31527,14 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5696; + this.state = 5699; this.factor(); - this.state = 5698; + this.state = 5701; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 423) { { - this.state = 5697; + this.state = 5700; this.factorAuthOption(); } } @@ -31528,7 +31545,7 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5702; + this.state = 5705; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 826, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -31536,7 +31553,7 @@ export class MySqlParser extends SQLParserBase { break; case 6: { - this.state = 5704; + this.state = 5707; this.registrationOption(); } break; @@ -31562,31 +31579,31 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 506, MySqlParser.RULE_createUserAuthOption); let _la: number; try { - this.state = 5743; + this.state = 5746; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 834, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5707; + this.state = 5710; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5708; + this.state = 5711; this.match(MySqlParser.KW_BY); - this.state = 5714; + this.state = 5717; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: { - this.state = 5709; + this.state = 5712; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_RANDOM: { { - this.state = 5710; + this.state = 5713; this.match(MySqlParser.KW_RANDOM); - this.state = 5711; + this.state = 5714; this.match(MySqlParser.KW_PASSWORD); } } @@ -31594,9 +31611,9 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_PASSWORD: { { - this.state = 5712; + this.state = 5715; this.match(MySqlParser.KW_PASSWORD); - this.state = 5713; + this.state = 5716; this.match(MySqlParser.STRING_LITERAL); } } @@ -31604,14 +31621,14 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5718; + this.state = 5721; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 5716; + this.state = 5719; this.match(MySqlParser.KW_AND); - this.state = 5717; + this.state = 5720; this.createUserAuthOption(); } } @@ -31621,35 +31638,35 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5720; + this.state = 5723; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5721; + this.state = 5724; this.match(MySqlParser.KW_WITH); - this.state = 5722; + this.state = 5725; localContext._authPlugin = this.uid(); - this.state = 5731; + this.state = 5734; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_BY: { { - this.state = 5723; + this.state = 5726; this.match(MySqlParser.KW_BY); - this.state = 5727; + this.state = 5730; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: { - this.state = 5724; + this.state = 5727; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_RANDOM: { { - this.state = 5725; + this.state = 5728; this.match(MySqlParser.KW_RANDOM); - this.state = 5726; + this.state = 5729; this.match(MySqlParser.KW_PASSWORD); } } @@ -31662,9 +31679,9 @@ export class MySqlParser extends SQLParserBase { break; case MySqlParser.KW_AS: { - this.state = 5729; + this.state = 5732; this.match(MySqlParser.KW_AS); - this.state = 5730; + this.state = 5733; this.match(MySqlParser.STRING_LITERAL); } break; @@ -31745,14 +31762,14 @@ export class MySqlParser extends SQLParserBase { default: break; } - this.state = 5735; + this.state = 5738; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 11) { { - this.state = 5733; + this.state = 5736; this.match(MySqlParser.KW_AND); - this.state = 5734; + this.state = 5737; this.createUserAuthOption(); } } @@ -31762,18 +31779,18 @@ export class MySqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5737; + this.state = 5740; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5738; + this.state = 5741; this.match(MySqlParser.KW_WITH); - this.state = 5739; + this.state = 5742; localContext._authPlugin = this.uid(); - this.state = 5741; + this.state = 5744; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 427) { { - this.state = 5740; + this.state = 5743; this.createUserInitialAuthOption(); } } @@ -31800,36 +31817,36 @@ export class MySqlParser extends SQLParserBase { let localContext = new CreateUserInitialAuthOptionContext(this.context, this.state); this.enterRule(localContext, 508, MySqlParser.RULE_createUserInitialAuthOption); try { - this.state = 5762; + this.state = 5765; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 836, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5745; + this.state = 5748; this.match(MySqlParser.KW_INITIAL); - this.state = 5746; + this.state = 5749; this.match(MySqlParser.KW_AUTHENTICATION); - this.state = 5747; + this.state = 5750; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5748; + this.state = 5751; this.match(MySqlParser.KW_BY); - this.state = 5752; + this.state = 5755; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_RANDOM: { { - this.state = 5749; + this.state = 5752; this.match(MySqlParser.KW_RANDOM); - this.state = 5750; + this.state = 5753; this.match(MySqlParser.KW_PASSWORD); } } break; case MySqlParser.STRING_LITERAL: { - this.state = 5751; + this.state = 5754; this.match(MySqlParser.STRING_LITERAL); } break; @@ -31841,19 +31858,19 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5754; + this.state = 5757; this.match(MySqlParser.KW_INITIAL); - this.state = 5755; + this.state = 5758; this.match(MySqlParser.KW_AUTHENTICATION); - this.state = 5756; + this.state = 5759; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5757; + this.state = 5760; this.match(MySqlParser.KW_WITH); - this.state = 5758; + this.state = 5761; localContext._authPlugin = this.uid(); - this.state = 5759; + this.state = 5762; this.match(MySqlParser.KW_AS); - this.state = 5760; + this.state = 5763; this.match(MySqlParser.STRING_LITERAL); } break; @@ -31877,22 +31894,22 @@ export class MySqlParser extends SQLParserBase { let localContext = new UserAuthOptionContext(this.context, this.state); this.enterRule(localContext, 510, MySqlParser.RULE_userAuthOption); try { - this.state = 5789; + this.state = 5792; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 837, this.context) ) { case 1: localContext = new HashAuthOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5764; + this.state = 5767; this.userName(); - this.state = 5765; + this.state = 5768; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5766; + this.state = 5769; this.match(MySqlParser.KW_BY); - this.state = 5767; + this.state = 5770; this.match(MySqlParser.KW_PASSWORD); - this.state = 5768; + this.state = 5771; (localContext as HashAuthOptionContext)._hashed = this.match(MySqlParser.STRING_LITERAL); } break; @@ -31900,17 +31917,17 @@ export class MySqlParser extends SQLParserBase { localContext = new RandomAuthOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5770; + this.state = 5773; this.userName(); - this.state = 5771; + this.state = 5774; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5772; + this.state = 5775; this.match(MySqlParser.KW_BY); - this.state = 5773; + this.state = 5776; this.match(MySqlParser.KW_RANDOM); - this.state = 5774; + this.state = 5777; this.match(MySqlParser.KW_PASSWORD); - this.state = 5775; + this.state = 5778; this.authOptionClause(); } break; @@ -31918,15 +31935,15 @@ export class MySqlParser extends SQLParserBase { localContext = new StringAuthOptionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 5777; + this.state = 5780; this.userName(); - this.state = 5778; + this.state = 5781; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5779; + this.state = 5782; this.match(MySqlParser.KW_BY); - this.state = 5780; + this.state = 5783; this.match(MySqlParser.STRING_LITERAL); - this.state = 5781; + this.state = 5784; this.authOptionClause(); } break; @@ -31934,13 +31951,13 @@ export class MySqlParser extends SQLParserBase { localContext = new ModuleAuthOptionContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 5783; + this.state = 5786; this.userName(); - this.state = 5784; + this.state = 5787; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 5785; + this.state = 5788; this.match(MySqlParser.KW_WITH); - this.state = 5786; + this.state = 5789; this.authenticationRule(); } break; @@ -31948,7 +31965,7 @@ export class MySqlParser extends SQLParserBase { localContext = new SimpleAuthOptionContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 5788; + this.state = 5791; this.userName(); } break; @@ -31975,28 +31992,28 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5793; + this.state = 5796; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 838, this.context) ) { case 1: { - this.state = 5791; + this.state = 5794; this.match(MySqlParser.KW_REPLACE); - this.state = 5792; + this.state = 5795; this.match(MySqlParser.STRING_LITERAL); } break; } - this.state = 5798; + this.state = 5801; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 147) { { - this.state = 5795; + this.state = 5798; this.match(MySqlParser.KW_RETAIN); - this.state = 5796; + this.state = 5799; this.match(MySqlParser.KW_CURRENT); - this.state = 5797; + this.state = 5800; this.match(MySqlParser.KW_PASSWORD); } } @@ -32022,21 +32039,21 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 514, MySqlParser.RULE_authenticationRule); let _la: number; try { - this.state = 5814; + this.state = 5817; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 842, this.context) ) { case 1: localContext = new ModuleContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5800; + this.state = 5803; (localContext as ModuleContext)._authPlugin = this.uid(); - this.state = 5808; + this.state = 5811; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 841, this.context) ) { case 1: { - this.state = 5801; + this.state = 5804; _la = this.tokenStream.LA(1); if(!(_la === 13 || _la === 20 || _la === 188)) { this.errorHandler.recoverInline(this); @@ -32045,27 +32062,27 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5805; + this.state = 5808; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: { - this.state = 5802; + this.state = 5805; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_RANDOM: { - this.state = 5803; + this.state = 5806; this.match(MySqlParser.KW_RANDOM); - this.state = 5804; + this.state = 5807; this.match(MySqlParser.KW_PASSWORD); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 5807; + this.state = 5810; this.authOptionClause(); } break; @@ -32076,11 +32093,11 @@ export class MySqlParser extends SQLParserBase { localContext = new PasswordModuleOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 5810; + this.state = 5813; (localContext as PasswordModuleOptionContext)._authPlugin = this.uid(); - this.state = 5811; + this.state = 5814; this.match(MySqlParser.KW_USING); - this.state = 5812; + this.state = 5815; this.passwordFunctionClause(); } break; @@ -32104,47 +32121,47 @@ export class MySqlParser extends SQLParserBase { let localContext = new TlsOptionContext(this.context, this.state); this.enterRule(localContext, 516, MySqlParser.RULE_tlsOption); try { - this.state = 5824; + this.state = 5827; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SSL: this.enterOuterAlt(localContext, 1); { - this.state = 5816; + this.state = 5819; this.match(MySqlParser.KW_SSL); } break; case MySqlParser.KW_X509: this.enterOuterAlt(localContext, 2); { - this.state = 5817; + this.state = 5820; this.match(MySqlParser.KW_X509); } break; case MySqlParser.KW_CIPHER: this.enterOuterAlt(localContext, 3); { - this.state = 5818; + this.state = 5821; this.match(MySqlParser.KW_CIPHER); - this.state = 5819; + this.state = 5822; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_ISSUER: this.enterOuterAlt(localContext, 4); { - this.state = 5820; + this.state = 5823; this.match(MySqlParser.KW_ISSUER); - this.state = 5821; + this.state = 5824; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_SUBJECT: this.enterOuterAlt(localContext, 5); { - this.state = 5822; + this.state = 5825; this.match(MySqlParser.KW_SUBJECT); - this.state = 5823; + this.state = 5826; this.match(MySqlParser.STRING_LITERAL); } break; @@ -32170,42 +32187,42 @@ export class MySqlParser extends SQLParserBase { let localContext = new UserResourceOptionContext(this.context, this.state); this.enterRule(localContext, 518, MySqlParser.RULE_userResourceOption); try { - this.state = 5834; + this.state = 5837; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_MAX_QUERIES_PER_HOUR: this.enterOuterAlt(localContext, 1); { - this.state = 5826; + this.state = 5829; this.match(MySqlParser.KW_MAX_QUERIES_PER_HOUR); - this.state = 5827; + this.state = 5830; this.decimalLiteral(); } break; case MySqlParser.KW_MAX_UPDATES_PER_HOUR: this.enterOuterAlt(localContext, 2); { - this.state = 5828; + this.state = 5831; this.match(MySqlParser.KW_MAX_UPDATES_PER_HOUR); - this.state = 5829; + this.state = 5832; this.decimalLiteral(); } break; case MySqlParser.KW_MAX_CONNECTIONS_PER_HOUR: this.enterOuterAlt(localContext, 3); { - this.state = 5830; + this.state = 5833; this.match(MySqlParser.KW_MAX_CONNECTIONS_PER_HOUR); - this.state = 5831; + this.state = 5834; this.decimalLiteral(); } break; case MySqlParser.KW_MAX_USER_CONNECTIONS: this.enterOuterAlt(localContext, 4); { - this.state = 5832; + this.state = 5835; this.match(MySqlParser.KW_MAX_USER_CONNECTIONS); - this.state = 5833; + this.state = 5836; this.decimalLiteral(); } break; @@ -32232,38 +32249,38 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 520, MySqlParser.RULE_userPasswordOption); let _la: number; try { - this.state = 5874; + this.state = 5877; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 850, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5836; + this.state = 5839; this.match(MySqlParser.KW_PASSWORD); - this.state = 5837; + this.state = 5840; this.match(MySqlParser.KW_EXPIRE); - this.state = 5844; + this.state = 5847; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DEFAULT: { - this.state = 5838; + this.state = 5841; localContext._expireType = this.match(MySqlParser.KW_DEFAULT); } break; case MySqlParser.KW_NEVER: { - this.state = 5839; + this.state = 5842; localContext._expireType = this.match(MySqlParser.KW_NEVER); } break; case MySqlParser.KW_INTERVAL: { - this.state = 5840; + this.state = 5843; localContext._expireType = this.match(MySqlParser.KW_INTERVAL); - this.state = 5841; + this.state = 5844; this.decimalLiteral(); - this.state = 5842; + this.state = 5845; this.match(MySqlParser.KW_DAY); } break; @@ -32346,16 +32363,16 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5846; + this.state = 5849; this.match(MySqlParser.KW_PASSWORD); - this.state = 5847; - this.match(MySqlParser.KW_HISTORY); this.state = 5850; + this.match(MySqlParser.KW_HISTORY); + this.state = 5853; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DEFAULT: { - this.state = 5848; + this.state = 5851; this.match(MySqlParser.KW_DEFAULT); } break; @@ -32366,7 +32383,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 5849; + this.state = 5852; this.decimalLiteral(); } break; @@ -32378,18 +32395,18 @@ export class MySqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5852; + this.state = 5855; this.match(MySqlParser.KW_PASSWORD); - this.state = 5853; + this.state = 5856; this.match(MySqlParser.KW_REUSE); - this.state = 5854; + this.state = 5857; this.match(MySqlParser.KW_INTERVAL); - this.state = 5859; + this.state = 5862; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DEFAULT: { - this.state = 5855; + this.state = 5858; this.match(MySqlParser.KW_DEFAULT); } break; @@ -32400,9 +32417,9 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 5856; + this.state = 5859; this.decimalLiteral(); - this.state = 5857; + this.state = 5860; this.match(MySqlParser.KW_DAY); } break; @@ -32414,18 +32431,18 @@ export class MySqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5861; + this.state = 5864; this.match(MySqlParser.KW_PASSWORD); - this.state = 5862; + this.state = 5865; this.match(MySqlParser.KW_REQUIRE); - this.state = 5863; + this.state = 5866; this.match(MySqlParser.KW_CURRENT); - this.state = 5865; + this.state = 5868; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42 || _la === 122) { { - this.state = 5864; + this.state = 5867; _la = this.tokenStream.LA(1); if(!(_la === 42 || _la === 122)) { this.errorHandler.recoverInline(this); @@ -32442,18 +32459,18 @@ export class MySqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5867; + this.state = 5870; this.match(MySqlParser.KW_FAILED_LOGIN_ATTEMPTS); - this.state = 5868; + this.state = 5871; this.decimalLiteral(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 5869; - this.match(MySqlParser.KW_PASSWORD_LOCK_TIME); this.state = 5872; + this.match(MySqlParser.KW_PASSWORD_LOCK_TIME); + this.state = 5875; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ZERO_DECIMAL: @@ -32463,13 +32480,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 5870; + this.state = 5873; this.decimalLiteral(); } break; case MySqlParser.KW_UNBOUNDED: { - this.state = 5871; + this.state = 5874; this.match(MySqlParser.KW_UNBOUNDED); } break; @@ -32501,9 +32518,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5876; + this.state = 5879; this.match(MySqlParser.KW_ACCOUNT); - this.state = 5877; + this.state = 5880; localContext._lockType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 104 || _la === 183)) { @@ -32536,43 +32553,43 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5879; - this.match(MySqlParser.KW_IDENTIFIED); this.state = 5882; + this.match(MySqlParser.KW_IDENTIFIED); + this.state = 5885; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 194) { { - this.state = 5880; + this.state = 5883; this.match(MySqlParser.KW_WITH); - this.state = 5881; + this.state = 5884; localContext._authPlugin = this.uid(); } } - this.state = 5892; + this.state = 5895; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_BY: { { - this.state = 5884; + this.state = 5887; this.match(MySqlParser.KW_BY); - this.state = 5888; + this.state = 5891; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: { - this.state = 5885; + this.state = 5888; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_RANDOM: { { - this.state = 5886; + this.state = 5889; this.match(MySqlParser.KW_RANDOM); - this.state = 5887; + this.state = 5890; this.match(MySqlParser.KW_PASSWORD); } } @@ -32585,9 +32602,9 @@ export class MySqlParser extends SQLParserBase { break; case MySqlParser.KW_AS: { - this.state = 5890; + this.state = 5893; this.match(MySqlParser.KW_AS); - this.state = 5891; + this.state = 5894; this.match(MySqlParser.STRING_LITERAL); } break; @@ -32614,45 +32631,45 @@ export class MySqlParser extends SQLParserBase { let localContext = new RegistrationOptionContext(this.context, this.state); this.enterRule(localContext, 526, MySqlParser.RULE_registrationOption); try { - this.state = 5909; + this.state = 5912; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 854, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5894; + this.state = 5897; this.factor(); - this.state = 5895; + this.state = 5898; this.match(MySqlParser.KW_INITIATE); - this.state = 5896; + this.state = 5899; this.match(MySqlParser.KW_REGISTRATION); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5898; + this.state = 5901; this.factor(); - this.state = 5899; + this.state = 5902; this.match(MySqlParser.KW_FINISH); - this.state = 5900; + this.state = 5903; this.match(MySqlParser.KW_REGISTRATION); - this.state = 5901; + this.state = 5904; this.match(MySqlParser.KW_SET); - this.state = 5902; + this.state = 5905; this.match(MySqlParser.KW_CHALLENGE_RESPONSE); - this.state = 5903; + this.state = 5906; this.match(MySqlParser.KW_AS); - this.state = 5904; + this.state = 5907; this.match(MySqlParser.STRING_LITERAL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5906; + this.state = 5909; this.factor(); - this.state = 5907; + this.state = 5910; this.match(MySqlParser.KW_UNREGISTER); } break; @@ -32679,7 +32696,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5911; + this.state = 5914; _la = this.tokenStream.LA(1); if(!(_la === 873 || _la === 874)) { this.errorHandler.recoverInline(this); @@ -32688,7 +32705,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5912; + this.state = 5915; this.match(MySqlParser.KW_FACTOR); } } @@ -32713,18 +32730,18 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5914; + this.state = 5917; this.privilege(); - this.state = 5919; + this.state = 5922; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 5915; + this.state = 5918; this.match(MySqlParser.LR_BRACKET); - this.state = 5916; + this.state = 5919; this.columnNames(); - this.state = 5917; + this.state = 5920; this.match(MySqlParser.RR_BRACKET); } } @@ -32750,20 +32767,20 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 532, MySqlParser.RULE_privilege); let _la: number; try { - this.state = 6014; + this.state = 6017; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 860, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5921; + this.state = 5924; this.match(MySqlParser.KW_ALL); - this.state = 5923; + this.state = 5926; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 734) { { - this.state = 5922; + this.state = 5925; this.match(MySqlParser.KW_PRIVILEGES); } } @@ -32773,14 +32790,14 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5925; + this.state = 5928; this.match(MySqlParser.KW_ALTER); - this.state = 5927; + this.state = 5930; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 743) { { - this.state = 5926; + this.state = 5929; this.match(MySqlParser.KW_ROUTINE); } } @@ -32790,46 +32807,46 @@ export class MySqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5929; + this.state = 5932; this.match(MySqlParser.KW_CREATE); - this.state = 5937; + this.state = 5940; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_TEMPORARY: { - this.state = 5930; + this.state = 5933; this.match(MySqlParser.KW_TEMPORARY); - this.state = 5931; + this.state = 5934; this.match(MySqlParser.KW_TABLES); } break; case MySqlParser.KW_ROUTINE: { - this.state = 5932; + this.state = 5935; this.match(MySqlParser.KW_ROUTINE); } break; case MySqlParser.KW_VIEW: { - this.state = 5933; + this.state = 5936; this.match(MySqlParser.KW_VIEW); } break; case MySqlParser.KW_USER: { - this.state = 5934; + this.state = 5937; this.match(MySqlParser.KW_USER); } break; case MySqlParser.KW_TABLESPACE: { - this.state = 5935; + this.state = 5938; this.match(MySqlParser.KW_TABLESPACE); } break; case MySqlParser.KW_ROLE: { - this.state = 5936; + this.state = 5939; this.match(MySqlParser.KW_ROLE); } break; @@ -32845,21 +32862,21 @@ export class MySqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5939; + this.state = 5942; this.match(MySqlParser.KW_DELETE); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5940; + this.state = 5943; this.match(MySqlParser.KW_DROP); - this.state = 5942; + this.state = 5945; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 582) { { - this.state = 5941; + this.state = 5944; this.match(MySqlParser.KW_ROLE); } } @@ -32869,90 +32886,90 @@ export class MySqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 5944; + this.state = 5947; this.match(MySqlParser.KW_EVENT); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 5945; + this.state = 5948; this.match(MySqlParser.KW_EXECUTE); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 5946; + this.state = 5949; this.match(MySqlParser.KW_FILE); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 5947; + this.state = 5950; this.match(MySqlParser.KW_GRANT); - this.state = 5948; + this.state = 5951; this.match(MySqlParser.KW_OPTION); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 5949; + this.state = 5952; this.match(MySqlParser.KW_INDEX); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 5950; + this.state = 5953; this.match(MySqlParser.KW_INSERT); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 5951; + this.state = 5954; this.match(MySqlParser.KW_LOCK); - this.state = 5952; + this.state = 5955; this.match(MySqlParser.KW_TABLES); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 5953; + this.state = 5956; this.match(MySqlParser.KW_PROCESS); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 5954; + this.state = 5957; this.match(MySqlParser.KW_PROXY); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 5955; + this.state = 5958; this.match(MySqlParser.KW_REFERENCES); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 5956; + this.state = 5959; this.match(MySqlParser.KW_RELOAD); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 5957; + this.state = 5960; this.match(MySqlParser.KW_REPLICATION); - this.state = 5958; + this.state = 5961; _la = this.tokenStream.LA(1); if(!(_la === 333 || _la === 598)) { this.errorHandler.recoverInline(this); @@ -32966,16 +32983,16 @@ export class MySqlParser extends SQLParserBase { case 18: this.enterOuterAlt(localContext, 18); { - this.state = 5959; + this.state = 5962; this.match(MySqlParser.KW_SELECT); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 5960; + this.state = 5963; this.match(MySqlParser.KW_SHOW); - this.state = 5961; + this.state = 5964; _la = this.tokenStream.LA(1); if(!(_la === 40 || _la === 684)) { this.errorHandler.recoverInline(this); @@ -32989,339 +33006,339 @@ export class MySqlParser extends SQLParserBase { case 20: this.enterOuterAlt(localContext, 20); { - this.state = 5962; + this.state = 5965; this.match(MySqlParser.KW_SHUTDOWN); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 5963; + this.state = 5966; this.match(MySqlParser.KW_SUPER); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 5964; + this.state = 5967; this.match(MySqlParser.KW_TRIGGER); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 5965; + this.state = 5968; this.match(MySqlParser.KW_UPDATE); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 5966; + this.state = 5969; this.match(MySqlParser.KW_USAGE); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 5967; + this.state = 5970; this.match(MySqlParser.KW_APPLICATION_PASSWORD_ADMIN); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 5968; + this.state = 5971; this.match(MySqlParser.KW_AUDIT_ABORT_EXEMPT); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 5969; + this.state = 5972; this.match(MySqlParser.KW_AUDIT_ADMIN); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 5970; + this.state = 5973; this.match(MySqlParser.KW_AUTHENTICATION_POLICY_ADMIN); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 5971; + this.state = 5974; this.match(MySqlParser.KW_BACKUP_ADMIN); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 5972; + this.state = 5975; this.match(MySqlParser.KW_BINLOG_ADMIN); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 5973; + this.state = 5976; this.match(MySqlParser.KW_BINLOG_ENCRYPTION_ADMIN); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 5974; + this.state = 5977; this.match(MySqlParser.KW_CLONE_ADMIN); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 5975; + this.state = 5978; this.match(MySqlParser.KW_CONNECTION_ADMIN); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 5976; + this.state = 5979; this.match(MySqlParser.KW_ENCRYPTION_KEY_ADMIN); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 5977; + this.state = 5980; this.match(MySqlParser.KW_FIREWALL_ADMIN); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 5978; + this.state = 5981; this.match(MySqlParser.KW_FIREWALL_EXEMPT); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 5979; + this.state = 5982; this.match(MySqlParser.KW_FIREWALL_USER); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 5980; + this.state = 5983; this.match(MySqlParser.KW_FLUSH_OPTIMIZER_COSTS); } break; case 39: this.enterOuterAlt(localContext, 39); { - this.state = 5981; + this.state = 5984; this.match(MySqlParser.KW_FLUSH_STATUS); } break; case 40: this.enterOuterAlt(localContext, 40); { - this.state = 5982; + this.state = 5985; this.match(MySqlParser.KW_FLUSH_TABLES); } break; case 41: this.enterOuterAlt(localContext, 41); { - this.state = 5983; + this.state = 5986; this.match(MySqlParser.KW_FLUSH_USER_RESOURCES); } break; case 42: this.enterOuterAlt(localContext, 42); { - this.state = 5984; + this.state = 5987; this.match(MySqlParser.KW_GROUP_REPLICATION_ADMIN); } break; case 43: this.enterOuterAlt(localContext, 43); { - this.state = 5985; + this.state = 5988; this.match(MySqlParser.KW_INNODB_REDO_LOG_ARCHIVE); } break; case 44: this.enterOuterAlt(localContext, 44); { - this.state = 5986; + this.state = 5989; this.match(MySqlParser.KW_INNODB_REDO_LOG_ENABLE); } break; case 45: this.enterOuterAlt(localContext, 45); { - this.state = 5987; + this.state = 5990; this.match(MySqlParser.KW_NDB_STORED_USER); } break; case 46: this.enterOuterAlt(localContext, 46); { - this.state = 5988; + this.state = 5991; this.match(MySqlParser.KW_PASSWORDLESS_USER_ADMIN); } break; case 47: this.enterOuterAlt(localContext, 47); { - this.state = 5989; + this.state = 5992; this.match(MySqlParser.KW_PERSIST_RO_VARIABLES_ADMIN); } break; case 48: this.enterOuterAlt(localContext, 48); { - this.state = 5990; + this.state = 5993; this.match(MySqlParser.KW_REPLICATION_APPLIER); } break; case 49: this.enterOuterAlt(localContext, 49); { - this.state = 5991; + this.state = 5994; this.match(MySqlParser.KW_REPLICATION_SLAVE_ADMIN); } break; case 50: this.enterOuterAlt(localContext, 50); { - this.state = 5992; + this.state = 5995; this.match(MySqlParser.KW_RESOURCE_GROUP_ADMIN); } break; case 51: this.enterOuterAlt(localContext, 51); { - this.state = 5993; + this.state = 5996; this.match(MySqlParser.KW_RESOURCE_GROUP_USER); } break; case 52: this.enterOuterAlt(localContext, 52); { - this.state = 5994; + this.state = 5997; this.match(MySqlParser.KW_ROLE_ADMIN); } break; case 53: this.enterOuterAlt(localContext, 53); { - this.state = 5995; + this.state = 5998; this.match(MySqlParser.KW_SERVICE_CONNECTION_ADMIN); } break; case 54: this.enterOuterAlt(localContext, 54); { - this.state = 5996; + this.state = 5999; this.match(MySqlParser.KW_SESSION_VARIABLES_ADMIN); } break; case 55: this.enterOuterAlt(localContext, 55); { - this.state = 5997; + this.state = 6000; this.match(MySqlParser.KW_SET_USER_ID); } break; case 56: this.enterOuterAlt(localContext, 56); { - this.state = 5998; + this.state = 6001; this.match(MySqlParser.KW_SKIP_QUERY_REWRITE); } break; case 57: this.enterOuterAlt(localContext, 57); { - this.state = 5999; + this.state = 6002; this.match(MySqlParser.KW_SHOW_ROUTINE); } break; case 58: this.enterOuterAlt(localContext, 58); { - this.state = 6000; + this.state = 6003; this.match(MySqlParser.KW_SYSTEM_USER); } break; case 59: this.enterOuterAlt(localContext, 59); { - this.state = 6001; + this.state = 6004; this.match(MySqlParser.KW_SYSTEM_VARIABLES_ADMIN); } break; case 60: this.enterOuterAlt(localContext, 60); { - this.state = 6002; + this.state = 6005; this.match(MySqlParser.KW_TABLE_ENCRYPTION_ADMIN); } break; case 61: this.enterOuterAlt(localContext, 61); { - this.state = 6003; + this.state = 6006; this.match(MySqlParser.KW_TP_CONNECTION_ADMIN); } break; case 62: this.enterOuterAlt(localContext, 62); { - this.state = 6004; + this.state = 6007; this.match(MySqlParser.KW_VERSION_TOKEN_ADMIN); } break; case 63: this.enterOuterAlt(localContext, 63); { - this.state = 6005; + this.state = 6008; this.match(MySqlParser.KW_XA_RECOVER_ADMIN); } break; case 64: this.enterOuterAlt(localContext, 64); { - this.state = 6006; + this.state = 6009; this.match(MySqlParser.KW_LOAD); - this.state = 6007; + this.state = 6010; this.match(MySqlParser.KW_FROM); - this.state = 6008; + this.state = 6011; this.match(MySqlParser.KW_S3); } break; case 65: this.enterOuterAlt(localContext, 65); { - this.state = 6009; + this.state = 6012; this.match(MySqlParser.KW_SELECT); - this.state = 6010; + this.state = 6013; this.match(MySqlParser.KW_INTO); - this.state = 6011; + this.state = 6014; this.match(MySqlParser.KW_S3); } break; case 66: this.enterOuterAlt(localContext, 66); { - this.state = 6012; + this.state = 6015; this.match(MySqlParser.KW_INVOKE); - this.state = 6013; + this.state = 6016; this.match(MySqlParser.KW_LAMBDA); } break; @@ -33345,14 +33362,14 @@ export class MySqlParser extends SQLParserBase { let localContext = new PrivilegeLevelContext(this.context, this.state); this.enterRule(localContext, 534, MySqlParser.RULE_privilegeLevel); try { - this.state = 6032; + this.state = 6035; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 861, this.context) ) { case 1: localContext = new CurrentSchemaPriviLevelContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 6016; + this.state = 6019; this.match(MySqlParser.STAR); } break; @@ -33360,11 +33377,11 @@ export class MySqlParser extends SQLParserBase { localContext = new GlobalPrivLevelContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 6017; + this.state = 6020; this.match(MySqlParser.STAR); - this.state = 6018; + this.state = 6021; this.match(MySqlParser.DOT); - this.state = 6019; + this.state = 6022; this.match(MySqlParser.STAR); } break; @@ -33372,11 +33389,11 @@ export class MySqlParser extends SQLParserBase { localContext = new DefiniteSchemaPrivLevelContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 6020; + this.state = 6023; this.uid(); - this.state = 6021; + this.state = 6024; this.match(MySqlParser.DOT); - this.state = 6022; + this.state = 6025; this.match(MySqlParser.STAR); } break; @@ -33384,11 +33401,11 @@ export class MySqlParser extends SQLParserBase { localContext = new DefiniteFullTablePrivLevelContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 6024; + this.state = 6027; this.uid(); - this.state = 6025; + this.state = 6028; this.match(MySqlParser.DOT); - this.state = 6026; + this.state = 6029; this.uid(); } break; @@ -33396,9 +33413,9 @@ export class MySqlParser extends SQLParserBase { localContext = new DefiniteFullTablePrivLevel2Context(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 6028; + this.state = 6031; this.uid(); - this.state = 6029; + this.state = 6032; this.dottedId(); } break; @@ -33406,7 +33423,7 @@ export class MySqlParser extends SQLParserBase { localContext = new DefiniteTablePrivLevelContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 6031; + this.state = 6034; this.uid(); } break; @@ -33432,11 +33449,11 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6034; + this.state = 6037; localContext._fromFirst = this.userName(); - this.state = 6035; + this.state = 6038; this.match(MySqlParser.KW_TO); - this.state = 6036; + this.state = 6039; localContext._toFirst = this.userName(); } } @@ -33459,67 +33476,67 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 538, MySqlParser.RULE_analyzeTable); let _la: number; try { - this.state = 6086; + this.state = 6089; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 868, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6038; + this.state = 6041; this.match(MySqlParser.KW_ANALYZE); - this.state = 6040; + this.state = 6043; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 450) { { - this.state = 6039; + this.state = 6042; this.tableActionOption(); } } - this.state = 6042; + this.state = 6045; this.match(MySqlParser.KW_TABLE); - this.state = 6043; + this.state = 6046; this.tableNames(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6044; + this.state = 6047; this.match(MySqlParser.KW_ANALYZE); - this.state = 6046; + this.state = 6049; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 450) { { - this.state = 6045; + this.state = 6048; this.tableActionOption(); } } - this.state = 6048; + this.state = 6051; this.match(MySqlParser.KW_TABLE); - this.state = 6049; + this.state = 6052; this.tableName(); - this.state = 6050; + this.state = 6053; this.match(MySqlParser.KW_UPDATE); - this.state = 6051; + this.state = 6054; this.match(MySqlParser.KW_HISTOGRAM); - this.state = 6052; + this.state = 6055; this.match(MySqlParser.KW_ON); - this.state = 6053; + this.state = 6056; this.columnNames(); - this.state = 6058; + this.state = 6061; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 864, this.context) ) { case 1: { - this.state = 6054; + this.state = 6057; this.match(MySqlParser.KW_WITH); - this.state = 6055; + this.state = 6058; this.decimalLiteral(); - this.state = 6056; + this.state = 6059; this.match(MySqlParser.KW_BUCKETS); } break; @@ -33529,40 +33546,40 @@ export class MySqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6060; + this.state = 6063; this.match(MySqlParser.KW_ANALYZE); - this.state = 6062; + this.state = 6065; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 450) { { - this.state = 6061; + this.state = 6064; this.tableActionOption(); } } - this.state = 6064; + this.state = 6067; this.match(MySqlParser.KW_TABLE); - this.state = 6065; + this.state = 6068; this.tableName(); - this.state = 6066; + this.state = 6069; this.match(MySqlParser.KW_UPDATE); - this.state = 6067; + this.state = 6070; this.match(MySqlParser.KW_HISTOGRAM); - this.state = 6068; + this.state = 6071; this.match(MySqlParser.KW_ON); - this.state = 6069; + this.state = 6072; this.columnName(); - this.state = 6073; + this.state = 6076; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 6070; + this.state = 6073; this.match(MySqlParser.KW_USING); - this.state = 6071; + this.state = 6074; this.match(MySqlParser.KW_DATA); - this.state = 6072; + this.state = 6075; this.match(MySqlParser.STRING_LITERAL); } } @@ -33572,29 +33589,29 @@ export class MySqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 6075; + this.state = 6078; this.match(MySqlParser.KW_ANALYZE); - this.state = 6077; + this.state = 6080; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 450) { { - this.state = 6076; + this.state = 6079; this.tableActionOption(); } } - this.state = 6079; + this.state = 6082; this.match(MySqlParser.KW_TABLE); - this.state = 6080; + this.state = 6083; this.tableName(); - this.state = 6081; + this.state = 6084; this.match(MySqlParser.KW_DROP); - this.state = 6082; + this.state = 6085; this.match(MySqlParser.KW_HISTOGRAM); - this.state = 6083; + this.state = 6086; this.match(MySqlParser.KW_ON); - this.state = 6084; + this.state = 6087; this.columnNames(); } break; @@ -33621,23 +33638,23 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6088; + this.state = 6091; this.match(MySqlParser.KW_CHECK); - this.state = 6089; + this.state = 6092; this.match(MySqlParser.KW_TABLE); - this.state = 6090; + this.state = 6093; this.tableNames(); - this.state = 6094; + this.state = 6097; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 65 || _la === 327 || _la === 392 || _la === 396 || _la === 484 || _la === 549) { { { - this.state = 6091; + this.state = 6094; this.checkTableOption(); } } - this.state = 6096; + this.state = 6099; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -33664,18 +33681,18 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6097; + this.state = 6100; this.match(MySqlParser.KW_CHECKSUM); - this.state = 6098; + this.state = 6101; this.match(MySqlParser.KW_TABLE); - this.state = 6099; + this.state = 6102; this.tableNames(); - this.state = 6101; + this.state = 6104; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 392 || _la === 549) { { - this.state = 6100; + this.state = 6103; localContext._actionOption = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 392 || _la === 549)) { @@ -33711,19 +33728,19 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6103; + this.state = 6106; this.match(MySqlParser.KW_OPTIMIZE); - this.state = 6105; + this.state = 6108; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 450) { { - this.state = 6104; + this.state = 6107; this.tableActionOption(); } } - this.state = 6107; + this.state = 6110; _la = this.tokenStream.LA(1); if(!(_la === 173 || _la === 752)) { this.errorHandler.recoverInline(this); @@ -33732,7 +33749,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6108; + this.state = 6111; this.tableNames(); } } @@ -33757,48 +33774,48 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6110; + this.state = 6113; this.match(MySqlParser.KW_REPAIR); - this.state = 6112; + this.state = 6115; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 450) { { - this.state = 6111; + this.state = 6114; this.tableActionOption(); } } - this.state = 6114; + this.state = 6117; this.match(MySqlParser.KW_TABLE); - this.state = 6115; + this.state = 6118; this.tableNames(); - this.state = 6117; + this.state = 6120; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 549) { { - this.state = 6116; + this.state = 6119; this.match(MySqlParser.KW_QUICK); } } - this.state = 6120; + this.state = 6123; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 392) { { - this.state = 6119; + this.state = 6122; this.match(MySqlParser.KW_EXTENDED); } } - this.state = 6123; + this.state = 6126; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 679) { { - this.state = 6122; + this.state = 6125; this.match(MySqlParser.KW_USE_FRM); } } @@ -33826,7 +33843,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6125; + this.state = 6128; _la = this.tokenStream.LA(1); if(!(_la === 115 || _la === 450)) { this.errorHandler.recoverInline(this); @@ -33855,50 +33872,50 @@ export class MySqlParser extends SQLParserBase { let localContext = new CheckTableOptionContext(this.context, this.state); this.enterRule(localContext, 550, MySqlParser.RULE_checkTableOption); try { - this.state = 6134; + this.state = 6137; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_FOR: this.enterOuterAlt(localContext, 1); { - this.state = 6127; + this.state = 6130; this.match(MySqlParser.KW_FOR); - this.state = 6128; + this.state = 6131; this.match(MySqlParser.KW_UPGRADE); } break; case MySqlParser.KW_QUICK: this.enterOuterAlt(localContext, 2); { - this.state = 6129; + this.state = 6132; this.match(MySqlParser.KW_QUICK); } break; case MySqlParser.KW_FAST: this.enterOuterAlt(localContext, 3); { - this.state = 6130; + this.state = 6133; this.match(MySqlParser.KW_FAST); } break; case MySqlParser.KW_MEDIUM: this.enterOuterAlt(localContext, 4); { - this.state = 6131; + this.state = 6134; this.match(MySqlParser.KW_MEDIUM); } break; case MySqlParser.KW_EXTENDED: this.enterOuterAlt(localContext, 5); { - this.state = 6132; + this.state = 6135; this.match(MySqlParser.KW_EXTENDED); } break; case MySqlParser.KW_CHANGED: this.enterOuterAlt(localContext, 6); { - this.state = 6133; + this.state = 6136; this.match(MySqlParser.KW_CHANGED); } break; @@ -33927,50 +33944,50 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6136; + this.state = 6139; this.match(MySqlParser.KW_INSTALL); - this.state = 6137; + this.state = 6140; this.match(MySqlParser.KW_COMPONENT); - this.state = 6138; + this.state = 6141; localContext._component_name = this.uid(); - this.state = 6143; + this.state = 6146; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6139; + this.state = 6142; this.match(MySqlParser.COMMA); - this.state = 6140; + this.state = 6143; localContext._component_name = this.uid(); } } - this.state = 6145; + this.state = 6148; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 6155; + this.state = 6158; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 879, this.context) ) { case 1: { - this.state = 6146; + this.state = 6149; this.match(MySqlParser.KW_SET); - this.state = 6147; + this.state = 6150; this.variableExpr(); - this.state = 6152; + this.state = 6155; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6148; + this.state = 6151; this.match(MySqlParser.COMMA); - this.state = 6149; + this.state = 6152; this.variableExpr(); } } - this.state = 6154; + this.state = 6157; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -34000,7 +34017,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6157; + this.state = 6160; _la = this.tokenStream.LA(1); if(!(_la === 413 || _la === 531 || _la === 893 || _la === 894)) { this.errorHandler.recoverInline(this); @@ -34009,11 +34026,11 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6158; + this.state = 6161; localContext._system_var_name = this.fullId(); - this.state = 6159; + this.state = 6162; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6160; + this.state = 6163; this.expression(0); } } @@ -34038,25 +34055,25 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6162; + this.state = 6165; this.match(MySqlParser.KW_UNINSTALL); - this.state = 6163; + this.state = 6166; this.match(MySqlParser.KW_COMPONENT); - this.state = 6164; + this.state = 6167; localContext._component_name = this.uid(); - this.state = 6169; + this.state = 6172; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6165; + this.state = 6168; this.match(MySqlParser.COMMA); - this.state = 6166; + this.state = 6169; localContext._component_name = this.uid(); } } - this.state = 6171; + this.state = 6174; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -34082,15 +34099,15 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6172; + this.state = 6175; this.match(MySqlParser.KW_INSTALL); - this.state = 6173; + this.state = 6176; this.match(MySqlParser.KW_PLUGIN); - this.state = 6174; + this.state = 6177; localContext._pluginName = this.uid(); - this.state = 6175; + this.state = 6178; this.match(MySqlParser.KW_SONAME); - this.state = 6176; + this.state = 6179; this.match(MySqlParser.STRING_LITERAL); } } @@ -34114,11 +34131,11 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6178; + this.state = 6181; this.match(MySqlParser.KW_UNINSTALL); - this.state = 6179; + this.state = 6182; this.match(MySqlParser.KW_PLUGIN); - this.state = 6180; + this.state = 6183; localContext._pluginName = this.uid(); } } @@ -34141,93 +34158,93 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 562, MySqlParser.RULE_cloneStatement); let _la: number; try { - this.state = 6212; + this.state = 6215; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 886, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6182; + this.state = 6185; this.match(MySqlParser.KW_CLONE); - this.state = 6183; + this.state = 6186; this.match(MySqlParser.KW_LOCAL); - this.state = 6184; + this.state = 6187; this.match(MySqlParser.KW_DATA); - this.state = 6185; + this.state = 6188; this.match(MySqlParser.KW_DIRECTORY); - this.state = 6187; + this.state = 6190; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 6186; + this.state = 6189; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 6189; + this.state = 6192; this.match(MySqlParser.STRING_LITERAL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6190; + this.state = 6193; this.match(MySqlParser.KW_CLONE); - this.state = 6191; + this.state = 6194; this.match(MySqlParser.KW_INSTANCE); - this.state = 6192; + this.state = 6195; this.match(MySqlParser.KW_FROM); - this.state = 6193; + this.state = 6196; this.userHostPort(); - this.state = 6194; + this.state = 6197; this.match(MySqlParser.KW_IDENTIFIED); - this.state = 6195; + this.state = 6198; this.match(MySqlParser.KW_BY); - this.state = 6196; + this.state = 6199; this.match(MySqlParser.STRING_LITERAL); - this.state = 6203; + this.state = 6206; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 360) { { - this.state = 6197; + this.state = 6200; this.match(MySqlParser.KW_DATA); - this.state = 6198; + this.state = 6201; this.match(MySqlParser.KW_DIRECTORY); - this.state = 6200; + this.state = 6203; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 857) { { - this.state = 6199; + this.state = 6202; this.match(MySqlParser.EQUAL_SYMBOL); } } - this.state = 6202; + this.state = 6205; this.match(MySqlParser.STRING_LITERAL); } } - this.state = 6210; + this.state = 6213; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 144) { { - this.state = 6205; + this.state = 6208; this.match(MySqlParser.KW_REQUIRE); - this.state = 6207; + this.state = 6210; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 502) { { - this.state = 6206; + this.state = 6209; this.match(MySqlParser.KW_NO); } } - this.state = 6209; + this.state = 6212; this.match(MySqlParser.KW_SSL); } } @@ -34255,18 +34272,18 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 564, MySqlParser.RULE_setStatement); let _la: number; try { - this.state = 6266; + this.state = 6269; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 894, this.context) ) { case 1: localContext = new SetVariableContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 6214; + this.state = 6217; this.match(MySqlParser.KW_SET); - this.state = 6215; + this.state = 6218; this.variableClause(); - this.state = 6216; + this.state = 6219; _la = this.tokenStream.LA(1); if(!(_la === 841 || _la === 857)) { this.errorHandler.recoverInline(this); @@ -34275,33 +34292,33 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6219; + this.state = 6222; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 887, this.context) ) { case 1: { - this.state = 6217; + this.state = 6220; this.expression(0); } break; case 2: { - this.state = 6218; + this.state = 6221; this.match(MySqlParser.KW_ON); } break; } - this.state = 6230; + this.state = 6233; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6221; + this.state = 6224; this.match(MySqlParser.COMMA); - this.state = 6222; + this.state = 6225; this.variableClause(); - this.state = 6223; + this.state = 6226; _la = this.tokenStream.LA(1); if(!(_la === 841 || _la === 857)) { this.errorHandler.recoverInline(this); @@ -34310,25 +34327,25 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6226; + this.state = 6229; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 888, this.context) ) { case 1: { - this.state = 6224; + this.state = 6227; this.expression(0); } break; case 2: { - this.state = 6225; + this.state = 6228; this.match(MySqlParser.KW_ON); } break; } } } - this.state = 6232; + this.state = 6235; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -34338,11 +34355,11 @@ export class MySqlParser extends SQLParserBase { localContext = new SetCharsetContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 6233; + this.state = 6236; this.match(MySqlParser.KW_SET); - this.state = 6234; - this.charSet(); this.state = 6237; + this.charSet(); + this.state = 6240; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_BINARY: @@ -34390,13 +34407,13 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.CHARSET_REVERSE_QOUTE_STRING: case MySqlParser.STRING_LITERAL: { - this.state = 6235; + this.state = 6238; this.charsetName(); } break; case MySqlParser.KW_DEFAULT: { - this.state = 6236; + this.state = 6239; this.match(MySqlParser.KW_DEFAULT); } break; @@ -34409,11 +34426,11 @@ export class MySqlParser extends SQLParserBase { localContext = new SetNamesContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 6239; + this.state = 6242; this.match(MySqlParser.KW_SET); - this.state = 6240; + this.state = 6243; this.match(MySqlParser.KW_NAMES); - this.state = 6247; + this.state = 6250; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_BINARY: @@ -34461,16 +34478,16 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.CHARSET_REVERSE_QOUTE_STRING: case MySqlParser.STRING_LITERAL: { - this.state = 6241; - this.charsetName(); this.state = 6244; + this.charsetName(); + this.state = 6247; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 28) { { - this.state = 6242; + this.state = 6245; this.match(MySqlParser.KW_COLLATE); - this.state = 6243; + this.state = 6246; this.collationName(); } } @@ -34479,7 +34496,7 @@ export class MySqlParser extends SQLParserBase { break; case MySqlParser.KW_DEFAULT: { - this.state = 6246; + this.state = 6249; this.match(MySqlParser.KW_DEFAULT); } break; @@ -34492,7 +34509,7 @@ export class MySqlParser extends SQLParserBase { localContext = new SetPasswordContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 6249; + this.state = 6252; this.setPasswordStatement(); } break; @@ -34500,7 +34517,7 @@ export class MySqlParser extends SQLParserBase { localContext = new SetTransactionContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 6250; + this.state = 6253; this.setTransactionStatement(); } break; @@ -34508,7 +34525,7 @@ export class MySqlParser extends SQLParserBase { localContext = new SetAutocommitContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 6251; + this.state = 6254; this.setAutocommitStatement(); } break; @@ -34516,11 +34533,11 @@ export class MySqlParser extends SQLParserBase { localContext = new SetNewValueInsideTriggerContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 6252; + this.state = 6255; this.match(MySqlParser.KW_SET); - this.state = 6253; + this.state = 6256; (localContext as SetNewValueInsideTriggerContext)._system_var_name = this.fullId(); - this.state = 6254; + this.state = 6257; _la = this.tokenStream.LA(1); if(!(_la === 841 || _la === 857)) { this.errorHandler.recoverInline(this); @@ -34529,19 +34546,19 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6255; + this.state = 6258; this.expression(0); - this.state = 6263; + this.state = 6266; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6256; + this.state = 6259; this.match(MySqlParser.COMMA); - this.state = 6257; + this.state = 6260; (localContext as SetNewValueInsideTriggerContext)._system_var_name = this.fullId(); - this.state = 6258; + this.state = 6261; _la = this.tokenStream.LA(1); if(!(_la === 841 || _la === 857)) { this.errorHandler.recoverInline(this); @@ -34550,11 +34567,11 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6259; + this.state = 6262; this.expression(0); } } - this.state = 6265; + this.state = 6268; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -34581,16 +34598,16 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 566, MySqlParser.RULE_showStatement); let _la: number; try { - this.state = 6452; + this.state = 6455; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 923, this.context) ) { case 1: localContext = new ShowMasterLogsContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 6268; + this.state = 6271; this.match(MySqlParser.KW_SHOW); - this.state = 6269; + this.state = 6272; (localContext as ShowMasterLogsContext)._logFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 228 || _la === 453)) { @@ -34600,7 +34617,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6270; + this.state = 6273; this.match(MySqlParser.KW_LOGS); } break; @@ -34608,9 +34625,9 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowLogEventsContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 6271; + this.state = 6274; this.match(MySqlParser.KW_SHOW); - this.state = 6272; + this.state = 6275; (localContext as ShowLogEventsContext)._logFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 318 || _la === 559)) { @@ -34620,62 +34637,62 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6273; - this.match(MySqlParser.KW_EVENTS); this.state = 6276; + this.match(MySqlParser.KW_EVENTS); + this.state = 6279; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 6274; + this.state = 6277; this.match(MySqlParser.KW_IN); - this.state = 6275; + this.state = 6278; (localContext as ShowLogEventsContext)._filename = this.match(MySqlParser.STRING_LITERAL); } } - this.state = 6280; + this.state = 6283; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 68) { { - this.state = 6278; + this.state = 6281; this.match(MySqlParser.KW_FROM); - this.state = 6279; + this.state = 6282; (localContext as ShowLogEventsContext)._fromPosition = this.decimalLiteral(); } } - this.state = 6289; + this.state = 6292; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 6282; + this.state = 6285; this.match(MySqlParser.KW_LIMIT); - this.state = 6286; + this.state = 6289; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 897, this.context) ) { case 1: { - this.state = 6283; + this.state = 6286; (localContext as ShowLogEventsContext)._offset = this.decimalLiteral(); - this.state = 6284; + this.state = 6287; this.match(MySqlParser.COMMA); } break; } - this.state = 6288; + this.state = 6291; (localContext as ShowLogEventsContext)._rowCount = this.decimalLiteral(); } } - this.state = 6292; + this.state = 6295; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 6291; + this.state = 6294; this.channelOption(); } } @@ -34686,16 +34703,16 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowObjectFilterContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 6294; + this.state = 6297; this.match(MySqlParser.KW_SHOW); - this.state = 6295; + this.state = 6298; this.showCommonEntity(); - this.state = 6297; + this.state = 6300; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 99 || _la === 192) { { - this.state = 6296; + this.state = 6299; this.showFilter(); } } @@ -34706,29 +34723,29 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowColumnsContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 6299; + this.state = 6302; this.match(MySqlParser.KW_SHOW); - this.state = 6301; + this.state = 6304; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 392) { { - this.state = 6300; + this.state = 6303; this.match(MySqlParser.KW_EXTENDED); } } - this.state = 6304; + this.state = 6307; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 408) { { - this.state = 6303; + this.state = 6306; this.match(MySqlParser.KW_FULL); } } - this.state = 6306; + this.state = 6309; (localContext as ShowColumnsContext)._columnsFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 337 || _la === 398)) { @@ -34738,7 +34755,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6307; + this.state = 6310; (localContext as ShowColumnsContext)._tableFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 80)) { @@ -34748,14 +34765,14 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6308; - this.tableName(); this.state = 6311; + this.tableName(); + this.state = 6314; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 68 || _la === 80) { { - this.state = 6309; + this.state = 6312; (localContext as ShowColumnsContext)._schemaFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 80)) { @@ -34765,17 +34782,17 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6310; + this.state = 6313; this.databaseName(); } } - this.state = 6314; + this.state = 6317; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 99 || _la === 192) { { - this.state = 6313; + this.state = 6316; this.showFilter(); } } @@ -34786,11 +34803,11 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowCreateDbContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 6316; + this.state = 6319; this.match(MySqlParser.KW_SHOW); - this.state = 6317; + this.state = 6320; this.match(MySqlParser.KW_CREATE); - this.state = 6318; + this.state = 6321; _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 152)) { this.errorHandler.recoverInline(this); @@ -34799,17 +34816,17 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6320; + this.state = 6323; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 905, this.context) ) { case 1: { - this.state = 6319; + this.state = 6322; this.ifNotExists(); } break; } - this.state = 6322; + this.state = 6325; this.databaseName(); } break; @@ -34817,11 +34834,11 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowCreateFullIdObjectContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 6323; + this.state = 6326; this.match(MySqlParser.KW_SHOW); - this.state = 6324; + this.state = 6327; this.match(MySqlParser.KW_CREATE); - this.state = 6325; + this.state = 6328; _la = this.tokenStream.LA(1); if(!(_la === 132 || _la === 178 || _la === 385)) { this.errorHandler.recoverInline(this); @@ -34830,7 +34847,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6326; + this.state = 6329; this.fullId(); } break; @@ -34838,13 +34855,13 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowCreateFunctionContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 6327; + this.state = 6330; this.match(MySqlParser.KW_SHOW); - this.state = 6328; + this.state = 6331; this.match(MySqlParser.KW_CREATE); - this.state = 6329; + this.state = 6332; this.match(MySqlParser.KW_FUNCTION); - this.state = 6330; + this.state = 6333; this.functionName(); } break; @@ -34852,13 +34869,13 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowCreateViewContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 6331; + this.state = 6334; this.match(MySqlParser.KW_SHOW); - this.state = 6332; + this.state = 6335; this.match(MySqlParser.KW_CREATE); - this.state = 6333; + this.state = 6336; this.match(MySqlParser.KW_VIEW); - this.state = 6334; + this.state = 6337; this.viewName(); } break; @@ -34866,13 +34883,13 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowCreateTableContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 6335; + this.state = 6338; this.match(MySqlParser.KW_SHOW); - this.state = 6336; + this.state = 6339; this.match(MySqlParser.KW_CREATE); - this.state = 6337; + this.state = 6340; this.match(MySqlParser.KW_TABLE); - this.state = 6338; + this.state = 6341; this.tableName(); } break; @@ -34880,13 +34897,13 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowCreateUserContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 6339; + this.state = 6342; this.match(MySqlParser.KW_SHOW); - this.state = 6340; + this.state = 6343; this.match(MySqlParser.KW_CREATE); - this.state = 6341; + this.state = 6344; this.match(MySqlParser.KW_USER); - this.state = 6342; + this.state = 6345; this.userName(); } break; @@ -34894,13 +34911,13 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowEngineContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 6343; + this.state = 6346; this.match(MySqlParser.KW_SHOW); - this.state = 6344; + this.state = 6347; this.match(MySqlParser.KW_ENGINE); - this.state = 6345; + this.state = 6348; this.engineName(); - this.state = 6346; + this.state = 6349; (localContext as ShowEngineContext)._engineOption = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 493 || _la === 645)) { @@ -34916,9 +34933,9 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowGlobalInfoContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 6348; + this.state = 6351; this.match(MySqlParser.KW_SHOW); - this.state = 6349; + this.state = 6352; this.showGlobalInfoClause(); } break; @@ -34926,9 +34943,9 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowErrorsContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 6350; + this.state = 6353; this.match(MySqlParser.KW_SHOW); - this.state = 6351; + this.state = 6354; (localContext as ShowErrorsContext)._errorFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 383 || _la === 688)) { @@ -34938,26 +34955,26 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6359; + this.state = 6362; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 6352; + this.state = 6355; this.match(MySqlParser.KW_LIMIT); - this.state = 6356; + this.state = 6359; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 906, this.context) ) { case 1: { - this.state = 6353; + this.state = 6356; (localContext as ShowErrorsContext)._offset = this.decimalLiteral(); - this.state = 6354; + this.state = 6357; this.match(MySqlParser.COMMA); } break; } - this.state = 6358; + this.state = 6361; (localContext as ShowErrorsContext)._rowCount = this.decimalLiteral(); } } @@ -34968,17 +34985,17 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowCountErrorsContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 6361; + this.state = 6364; this.match(MySqlParser.KW_SHOW); - this.state = 6362; + this.state = 6365; this.match(MySqlParser.KW_COUNT); - this.state = 6363; + this.state = 6366; this.match(MySqlParser.LR_BRACKET); - this.state = 6364; + this.state = 6367; this.match(MySqlParser.STAR); - this.state = 6365; + this.state = 6368; this.match(MySqlParser.RR_BRACKET); - this.state = 6366; + this.state = 6369; (localContext as ShowCountErrorsContext)._errorFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 383 || _la === 688)) { @@ -34994,16 +35011,16 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowSchemaFilterContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 6367; + this.state = 6370; this.match(MySqlParser.KW_SHOW); - this.state = 6368; - this.showSchemaEntity(); this.state = 6371; + this.showSchemaEntity(); + this.state = 6374; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 68 || _la === 80) { { - this.state = 6369; + this.state = 6372; (localContext as ShowSchemaFilterContext)._schemaFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 80)) { @@ -35013,17 +35030,17 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6370; + this.state = 6373; this.databaseName(); } } - this.state = 6374; + this.state = 6377; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 99 || _la === 192) { { - this.state = 6373; + this.state = 6376; this.showFilter(); } } @@ -35034,13 +35051,13 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowPercedureCodeContext(localContext); this.enterOuterAlt(localContext, 16); { - this.state = 6376; + this.state = 6379; this.match(MySqlParser.KW_SHOW); - this.state = 6377; + this.state = 6380; this.match(MySqlParser.KW_PROCEDURE); - this.state = 6378; + this.state = 6381; this.match(MySqlParser.KW_CODE); - this.state = 6379; + this.state = 6382; (localContext as ShowPercedureCodeContext)._proc_name = this.fullId(); } break; @@ -35048,13 +35065,13 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowFunctionCodeContext(localContext); this.enterOuterAlt(localContext, 17); { - this.state = 6380; + this.state = 6383; this.match(MySqlParser.KW_SHOW); - this.state = 6381; + this.state = 6384; this.match(MySqlParser.KW_FUNCTION); - this.state = 6382; + this.state = 6385; this.match(MySqlParser.KW_CODE); - this.state = 6383; + this.state = 6386; this.functionName(); } break; @@ -35062,27 +35079,27 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowGrantsContext(localContext); this.enterOuterAlt(localContext, 18); { - this.state = 6384; + this.state = 6387; this.match(MySqlParser.KW_SHOW); - this.state = 6385; + this.state = 6388; this.match(MySqlParser.KW_GRANTS); - this.state = 6392; + this.state = 6395; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 6386; + this.state = 6389; this.match(MySqlParser.KW_FOR); - this.state = 6387; - this.userOrRoleName(); this.state = 6390; + this.userOrRoleName(); + this.state = 6393; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 6388; + this.state = 6391; this.match(MySqlParser.KW_USING); - this.state = 6389; + this.state = 6392; this.userOrRoleNames(); } } @@ -35096,19 +35113,19 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowIndexesContext(localContext); this.enterOuterAlt(localContext, 19); { - this.state = 6394; + this.state = 6397; this.match(MySqlParser.KW_SHOW); - this.state = 6396; + this.state = 6399; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 392) { { - this.state = 6395; + this.state = 6398; this.match(MySqlParser.KW_EXTENDED); } } - this.state = 6398; + this.state = 6401; (localContext as ShowIndexesContext)._indexFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 93 || _la === 426)) { @@ -35118,7 +35135,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6399; + this.state = 6402; (localContext as ShowIndexesContext)._tableFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 80)) { @@ -35128,14 +35145,14 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6400; - this.tableName(); this.state = 6403; + this.tableName(); + this.state = 6406; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 68 || _la === 80) { { - this.state = 6401; + this.state = 6404; (localContext as ShowIndexesContext)._schemaFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 80)) { @@ -35145,19 +35162,19 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6402; + this.state = 6405; this.databaseName(); } } - this.state = 6407; + this.state = 6410; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 6405; + this.state = 6408; this.match(MySqlParser.KW_WHERE); - this.state = 6406; + this.state = 6409; this.expression(0); } } @@ -35168,18 +35185,18 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowOpenTablesContext(localContext); this.enterOuterAlt(localContext, 20); { - this.state = 6409; + this.state = 6412; this.match(MySqlParser.KW_SHOW); - this.state = 6410; + this.state = 6413; this.match(MySqlParser.KW_OPEN); - this.state = 6411; - this.match(MySqlParser.KW_TABLES); this.state = 6414; + this.match(MySqlParser.KW_TABLES); + this.state = 6417; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 68 || _la === 80) { { - this.state = 6412; + this.state = 6415; _la = this.tokenStream.LA(1); if(!(_la === 68 || _la === 80)) { this.errorHandler.recoverInline(this); @@ -35188,17 +35205,17 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6413; + this.state = 6416; this.databaseName(); } } - this.state = 6417; + this.state = 6420; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 99 || _la === 192) { { - this.state = 6416; + this.state = 6419; this.showFilter(); } } @@ -35209,67 +35226,67 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowProfileContext(localContext); this.enterOuterAlt(localContext, 21); { - this.state = 6419; + this.state = 6422; this.match(MySqlParser.KW_SHOW); - this.state = 6420; + this.state = 6423; this.match(MySqlParser.KW_PROFILE); - this.state = 6429; + this.state = 6432; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7 || _la === 320 || _la === 355 || _la === 358 || _la === 439 || _la === 521 || _la === 605 || _la === 655 || _la === 802) { { - this.state = 6421; + this.state = 6424; this.showProfileType(); - this.state = 6426; + this.state = 6429; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6422; + this.state = 6425; this.match(MySqlParser.COMMA); - this.state = 6423; + this.state = 6426; this.showProfileType(); } } - this.state = 6428; + this.state = 6431; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 6434; + this.state = 6437; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 6431; + this.state = 6434; this.match(MySqlParser.KW_FOR); - this.state = 6432; + this.state = 6435; this.match(MySqlParser.KW_QUERY); - this.state = 6433; + this.state = 6436; (localContext as ShowProfileContext)._queryCount = this.decimalLiteral(); } } - this.state = 6442; + this.state = 6445; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 6436; + this.state = 6439; this.match(MySqlParser.KW_LIMIT); - this.state = 6437; - (localContext as ShowProfileContext)._rowCount = this.decimalLiteral(); this.state = 6440; + (localContext as ShowProfileContext)._rowCount = this.decimalLiteral(); + this.state = 6443; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 509) { { - this.state = 6438; + this.state = 6441; this.match(MySqlParser.KW_OFFSET); - this.state = 6439; + this.state = 6442; (localContext as ShowProfileContext)._offset = this.decimalLiteral(); } } @@ -35283,9 +35300,9 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowSlaveStatusContext(localContext); this.enterOuterAlt(localContext, 22); { - this.state = 6444; + this.state = 6447; this.match(MySqlParser.KW_SHOW); - this.state = 6445; + this.state = 6448; _la = this.tokenStream.LA(1); if(!(_la === 563 || _la === 598)) { this.errorHandler.recoverInline(this); @@ -35294,14 +35311,14 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6446; + this.state = 6449; this.match(MySqlParser.KW_STATUS); - this.state = 6448; + this.state = 6451; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 6447; + this.state = 6450; this.channelOption(); } } @@ -35312,9 +35329,9 @@ export class MySqlParser extends SQLParserBase { localContext = new ShowReplicasContext(localContext); this.enterOuterAlt(localContext, 23); { - this.state = 6450; + this.state = 6453; this.match(MySqlParser.KW_SHOW); - this.state = 6451; + this.state = 6454; this.match(MySqlParser.KW_REPLICAS); } break; @@ -35339,20 +35356,20 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 568, MySqlParser.RULE_variableClause); let _la: number; try { - this.state = 6464; + this.state = 6467; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.LOCAL_ID: this.enterOuterAlt(localContext, 1); { - this.state = 6454; + this.state = 6457; this.match(MySqlParser.LOCAL_ID); } break; case MySqlParser.GLOBAL_ID: this.enterOuterAlt(localContext, 2); { - this.state = 6455; + this.state = 6458; this.match(MySqlParser.GLOBAL_ID); } break; @@ -35910,24 +35927,24 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.ID: this.enterOuterAlt(localContext, 3); { - this.state = 6461; + this.state = 6464; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 925, this.context) ) { case 1: { - this.state = 6458; + this.state = 6461; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 870) { { - this.state = 6456; + this.state = 6459; this.match(MySqlParser.AT_SIGN); - this.state = 6457; + this.state = 6460; this.match(MySqlParser.AT_SIGN); } } - this.state = 6460; + this.state = 6463; _la = this.tokenStream.LA(1); if(!(_la === 413 || _la === 450 || _la === 531 || _la === 532 || _la === 593)) { this.errorHandler.recoverInline(this); @@ -35939,7 +35956,7 @@ export class MySqlParser extends SQLParserBase { } break; } - this.state = 6463; + this.state = 6466; localContext._target = this.uid(); } break; @@ -35966,61 +35983,61 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 570, MySqlParser.RULE_showCommonEntity); let _la: number; try { - this.state = 6480; + this.state = 6483; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CHARACTER: this.enterOuterAlt(localContext, 1); { - this.state = 6466; + this.state = 6469; this.match(MySqlParser.KW_CHARACTER); - this.state = 6467; + this.state = 6470; this.match(MySqlParser.KW_SET); } break; case MySqlParser.KW_CHARSET: this.enterOuterAlt(localContext, 2); { - this.state = 6468; + this.state = 6471; this.match(MySqlParser.KW_CHARSET); } break; case MySqlParser.KW_COLLATION: this.enterOuterAlt(localContext, 3); { - this.state = 6469; + this.state = 6472; this.match(MySqlParser.KW_COLLATION); } break; case MySqlParser.KW_DATABASES: this.enterOuterAlt(localContext, 4); { - this.state = 6470; + this.state = 6473; this.match(MySqlParser.KW_DATABASES); } break; case MySqlParser.KW_SCHEMAS: this.enterOuterAlt(localContext, 5); { - this.state = 6471; + this.state = 6474; this.match(MySqlParser.KW_SCHEMAS); } break; case MySqlParser.KW_FUNCTION: this.enterOuterAlt(localContext, 6); { - this.state = 6472; + this.state = 6475; this.match(MySqlParser.KW_FUNCTION); - this.state = 6473; + this.state = 6476; this.match(MySqlParser.KW_STATUS); } break; case MySqlParser.KW_PROCEDURE: this.enterOuterAlt(localContext, 7); { - this.state = 6474; + this.state = 6477; this.match(MySqlParser.KW_PROCEDURE); - this.state = 6475; + this.state = 6478; this.match(MySqlParser.KW_STATUS); } break; @@ -36030,12 +36047,12 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_VARIABLES: this.enterOuterAlt(localContext, 8); { - this.state = 6477; + this.state = 6480; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 413 || _la === 593) { { - this.state = 6476; + this.state = 6479; _la = this.tokenStream.LA(1); if(!(_la === 413 || _la === 593)) { this.errorHandler.recoverInline(this); @@ -36047,7 +36064,7 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 6479; + this.state = 6482; _la = this.tokenStream.LA(1); if(!(_la === 645 || _la === 683)) { this.errorHandler.recoverInline(this); @@ -36080,24 +36097,24 @@ export class MySqlParser extends SQLParserBase { let localContext = new ShowFilterContext(this.context, this.state); this.enterRule(localContext, 572, MySqlParser.RULE_showFilter); try { - this.state = 6486; + this.state = 6489; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_LIKE: this.enterOuterAlt(localContext, 1); { - this.state = 6482; + this.state = 6485; this.match(MySqlParser.KW_LIKE); - this.state = 6483; + this.state = 6486; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.KW_WHERE: this.enterOuterAlt(localContext, 2); { - this.state = 6484; + this.state = 6487; this.match(MySqlParser.KW_WHERE); - this.state = 6485; + this.state = 6488; this.expression(0); } break; @@ -36124,47 +36141,47 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 574, MySqlParser.RULE_showGlobalInfoClause); let _la: number; try { - this.state = 6505; + this.state = 6508; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ENGINES: case MySqlParser.KW_STORAGE: this.enterOuterAlt(localContext, 1); { - this.state = 6489; + this.state = 6492; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 647) { { - this.state = 6488; + this.state = 6491; this.match(MySqlParser.KW_STORAGE); } } - this.state = 6491; + this.state = 6494; this.match(MySqlParser.KW_ENGINES); } break; case MySqlParser.KW_MASTER: this.enterOuterAlt(localContext, 2); { - this.state = 6492; + this.state = 6495; this.match(MySqlParser.KW_MASTER); - this.state = 6493; + this.state = 6496; this.match(MySqlParser.KW_STATUS); } break; case MySqlParser.KW_PLUGINS: this.enterOuterAlt(localContext, 3); { - this.state = 6494; + this.state = 6497; this.match(MySqlParser.KW_PLUGINS); } break; case MySqlParser.KW_PRIVILEGES: this.enterOuterAlt(localContext, 4); { - this.state = 6495; + this.state = 6498; this.match(MySqlParser.KW_PRIVILEGES); } break; @@ -36172,47 +36189,47 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_PROCESSLIST: this.enterOuterAlt(localContext, 5); { - this.state = 6497; + this.state = 6500; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 408) { { - this.state = 6496; + this.state = 6499; this.match(MySqlParser.KW_FULL); } } - this.state = 6499; + this.state = 6502; this.match(MySqlParser.KW_PROCESSLIST); } break; case MySqlParser.KW_PROFILES: this.enterOuterAlt(localContext, 6); { - this.state = 6500; + this.state = 6503; this.match(MySqlParser.KW_PROFILES); } break; case MySqlParser.KW_SLAVE: this.enterOuterAlt(localContext, 7); { - this.state = 6501; + this.state = 6504; this.match(MySqlParser.KW_SLAVE); - this.state = 6502; + this.state = 6505; this.match(MySqlParser.KW_HOSTS); } break; case MySqlParser.KW_AUTHORS: this.enterOuterAlt(localContext, 8); { - this.state = 6503; + this.state = 6506; this.match(MySqlParser.KW_AUTHORS); } break; case MySqlParser.KW_CONTRIBUTORS: this.enterOuterAlt(localContext, 9); { - this.state = 6504; + this.state = 6507; this.match(MySqlParser.KW_CONTRIBUTORS); } break; @@ -36239,22 +36256,22 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 576, MySqlParser.RULE_showSchemaEntity); let _la: number; try { - this.state = 6518; + this.state = 6521; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_EVENTS: this.enterOuterAlt(localContext, 1); { - this.state = 6507; + this.state = 6510; this.match(MySqlParser.KW_EVENTS); } break; case MySqlParser.KW_TABLE: this.enterOuterAlt(localContext, 2); { - this.state = 6508; + this.state = 6511; this.match(MySqlParser.KW_TABLE); - this.state = 6509; + this.state = 6512; this.match(MySqlParser.KW_STATUS); } break; @@ -36263,34 +36280,34 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_TABLES: this.enterOuterAlt(localContext, 3); { - this.state = 6511; + this.state = 6514; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 392) { { - this.state = 6510; + this.state = 6513; this.match(MySqlParser.KW_EXTENDED); } } - this.state = 6514; + this.state = 6517; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 408) { { - this.state = 6513; + this.state = 6516; this.match(MySqlParser.KW_FULL); } } - this.state = 6516; + this.state = 6519; this.match(MySqlParser.KW_TABLES); } break; case MySqlParser.KW_TRIGGERS: this.enterOuterAlt(localContext, 4); { - this.state = 6517; + this.state = 6520; this.match(MySqlParser.KW_TRIGGERS); } break; @@ -36316,75 +36333,75 @@ export class MySqlParser extends SQLParserBase { let localContext = new ShowProfileTypeContext(this.context, this.state); this.enterRule(localContext, 578, MySqlParser.RULE_showProfileType); try { - this.state = 6532; + this.state = 6535; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ALL: this.enterOuterAlt(localContext, 1); { - this.state = 6520; + this.state = 6523; this.match(MySqlParser.KW_ALL); } break; case MySqlParser.KW_BLOCK: this.enterOuterAlt(localContext, 2); { - this.state = 6521; + this.state = 6524; this.match(MySqlParser.KW_BLOCK); - this.state = 6522; + this.state = 6525; this.match(MySqlParser.KW_IO); } break; case MySqlParser.KW_CONTEXT: this.enterOuterAlt(localContext, 3); { - this.state = 6523; + this.state = 6526; this.match(MySqlParser.KW_CONTEXT); - this.state = 6524; + this.state = 6527; this.match(MySqlParser.KW_SWITCHES); } break; case MySqlParser.KW_CPU: this.enterOuterAlt(localContext, 4); { - this.state = 6525; + this.state = 6528; this.match(MySqlParser.KW_CPU); } break; case MySqlParser.KW_IPC: this.enterOuterAlt(localContext, 5); { - this.state = 6526; + this.state = 6529; this.match(MySqlParser.KW_IPC); } break; case MySqlParser.KW_MEMORY: this.enterOuterAlt(localContext, 6); { - this.state = 6527; + this.state = 6530; this.match(MySqlParser.KW_MEMORY); } break; case MySqlParser.KW_PAGE: this.enterOuterAlt(localContext, 7); { - this.state = 6528; + this.state = 6531; this.match(MySqlParser.KW_PAGE); - this.state = 6529; + this.state = 6532; this.match(MySqlParser.KW_FAULTS); } break; case MySqlParser.KW_SOURCE: this.enterOuterAlt(localContext, 8); { - this.state = 6530; + this.state = 6533; this.match(MySqlParser.KW_SOURCE); } break; case MySqlParser.KW_SWAPS: this.enterOuterAlt(localContext, 9); { - this.state = 6531; + this.state = 6534; this.match(MySqlParser.KW_SWAPS); } break; @@ -36412,9 +36429,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6534; + this.state = 6537; this.match(MySqlParser.KW_BINLOG); - this.state = 6535; + this.state = 6538; this.match(MySqlParser.STRING_LITERAL); } } @@ -36439,30 +36456,30 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6537; + this.state = 6540; this.match(MySqlParser.KW_CACHE); - this.state = 6538; + this.state = 6541; this.match(MySqlParser.KW_INDEX); - this.state = 6556; + this.state = 6559; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 939, this.context) ) { case 1: { - this.state = 6539; + this.state = 6542; this.tableIndex(); - this.state = 6544; + this.state = 6547; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6540; + this.state = 6543; this.match(MySqlParser.COMMA); - this.state = 6541; + this.state = 6544; this.tableIndex(); } } - this.state = 6546; + this.state = 6549; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -36470,13 +36487,13 @@ export class MySqlParser extends SQLParserBase { break; case 2: { - this.state = 6547; + this.state = 6550; this.tableName(); - this.state = 6548; + this.state = 6551; this.match(MySqlParser.KW_PARTITION); - this.state = 6549; - this.match(MySqlParser.LR_BRACKET); this.state = 6552; + this.match(MySqlParser.LR_BRACKET); + this.state = 6555; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -37029,27 +37046,27 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 6550; + this.state = 6553; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 6551; + this.state = 6554; this.match(MySqlParser.KW_ALL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 6554; + this.state = 6557; this.match(MySqlParser.RR_BRACKET); } break; } - this.state = 6558; + this.state = 6561; this.match(MySqlParser.KW_IN); - this.state = 6559; + this.state = 6562; this.databaseName(); } } @@ -37074,33 +37091,33 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6561; + this.state = 6564; this.match(MySqlParser.KW_FLUSH); - this.state = 6563; + this.state = 6566; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115 || _la === 450) { { - this.state = 6562; + this.state = 6565; this.tableActionOption(); } } - this.state = 6565; + this.state = 6568; this.flushOption(); - this.state = 6570; + this.state = 6573; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6566; + this.state = 6569; this.match(MySqlParser.COMMA); - this.state = 6567; + this.state = 6570; this.flushOption(); } } - this.state = 6572; + this.state = 6575; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -37127,14 +37144,14 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6573; + this.state = 6576; this.match(MySqlParser.KW_KILL); - this.state = 6575; + this.state = 6578; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 942, this.context) ) { case 1: { - this.state = 6574; + this.state = 6577; localContext._connectionFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 349 || _la === 548)) { @@ -37147,7 +37164,7 @@ export class MySqlParser extends SQLParserBase { } break; } - this.state = 6577; + this.state = 6580; this.expression(0); } } @@ -37172,29 +37189,29 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6579; + this.state = 6582; this.match(MySqlParser.KW_LOAD); - this.state = 6580; + this.state = 6583; this.match(MySqlParser.KW_INDEX); - this.state = 6581; + this.state = 6584; this.match(MySqlParser.KW_INTO); - this.state = 6582; + this.state = 6585; this.match(MySqlParser.KW_CACHE); - this.state = 6583; + this.state = 6586; this.loadedTableIndexes(); - this.state = 6588; + this.state = 6591; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6584; + this.state = 6587; this.match(MySqlParser.COMMA); - this.state = 6585; + this.state = 6588; this.loadedTableIndexes(); } } - this.state = 6590; + this.state = 6593; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -37221,23 +37238,23 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6591; + this.state = 6594; this.match(MySqlParser.KW_RESET); - this.state = 6592; + this.state = 6595; this.resetOption(); - this.state = 6597; + this.state = 6600; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6593; + this.state = 6596; this.match(MySqlParser.COMMA); - this.state = 6594; + this.state = 6597; this.resetOption(); } } - this.state = 6599; + this.state = 6602; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -37261,36 +37278,36 @@ export class MySqlParser extends SQLParserBase { let localContext = new ResetOptionContext(this.context, this.state); this.enterRule(localContext, 592, MySqlParser.RULE_resetOption); try { - this.state = 6605; + this.state = 6608; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_MASTER: this.enterOuterAlt(localContext, 1); { - this.state = 6600; + this.state = 6603; this.match(MySqlParser.KW_MASTER); } break; case MySqlParser.KW_REPLICA: this.enterOuterAlt(localContext, 2); { - this.state = 6601; + this.state = 6604; this.match(MySqlParser.KW_REPLICA); } break; case MySqlParser.KW_QUERY: this.enterOuterAlt(localContext, 3); { - this.state = 6602; + this.state = 6605; this.match(MySqlParser.KW_QUERY); - this.state = 6603; + this.state = 6606; this.match(MySqlParser.KW_CACHE); } break; case MySqlParser.KW_SLAVE: this.enterOuterAlt(localContext, 4); { - this.state = 6604; + this.state = 6607; this.match(MySqlParser.KW_SLAVE); } break; @@ -37318,26 +37335,26 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6607; + this.state = 6610; this.match(MySqlParser.KW_RESET); - this.state = 6608; + this.state = 6611; this.match(MySqlParser.KW_PERSIST); - this.state = 6613; + this.state = 6616; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 947, this.context) ) { case 1: { - this.state = 6610; + this.state = 6613; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 946, this.context) ) { case 1: { - this.state = 6609; + this.state = 6612; this.ifExists(); } break; } - this.state = 6612; + this.state = 6615; localContext._system_var_name = this.uid(); } break; @@ -37365,9 +37382,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6615; + this.state = 6618; this.match(MySqlParser.KW_RESET); - this.state = 6616; + this.state = 6619; _la = this.tokenStream.LA(1); if(!(_la === 563 || _la === 598)) { this.errorHandler.recoverInline(this); @@ -37376,22 +37393,22 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6618; + this.state = 6621; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7) { { - this.state = 6617; + this.state = 6620; this.match(MySqlParser.KW_ALL); } } - this.state = 6621; + this.state = 6624; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 6620; + this.state = 6623; this.channelOption(); } } @@ -37418,7 +37435,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6623; + this.state = 6626; this.match(MySqlParser.KW_RESTART); } } @@ -37442,7 +37459,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6625; + this.state = 6628; this.match(MySqlParser.KW_SHUTDOWN); } } @@ -37467,14 +37484,14 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6627; + this.state = 6630; this.tableName(); - this.state = 6633; + this.state = 6636; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82 || _la === 92) { { - this.state = 6628; + this.state = 6631; localContext._indexFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { @@ -37484,11 +37501,11 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6629; + this.state = 6632; this.match(MySqlParser.LR_BRACKET); - this.state = 6630; + this.state = 6633; this.indexNames(); - this.state = 6631; + this.state = 6634; this.match(MySqlParser.RR_BRACKET); } } @@ -37514,25 +37531,25 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 604, MySqlParser.RULE_flushOption); let _la: number; try { - this.state = 6667; + this.state = 6670; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 957, this.context) ) { case 1: localContext = new SimpleFlushOptionContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 6653; + this.state = 6656; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DES_KEY_FILE: { - this.state = 6635; + this.state = 6638; this.match(MySqlParser.KW_DES_KEY_FILE); } break; case MySqlParser.KW_HOSTS: { - this.state = 6636; + this.state = 6639; this.match(MySqlParser.KW_HOSTS); } break; @@ -37544,12 +37561,12 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_RELAY: case MySqlParser.KW_SLOW: { - this.state = 6638; + this.state = 6641; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 228 || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 1073741829) !== 0) || _la === 556 || _la === 599) { { - this.state = 6637; + this.state = 6640; _la = this.tokenStream.LA(1); if(!(_la === 228 || ((((_la - 380)) & ~0x1F) === 0 && ((1 << (_la - 380)) & 1073741829) !== 0) || _la === 556 || _la === 599)) { this.errorHandler.recoverInline(this); @@ -37561,56 +37578,56 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 6640; + this.state = 6643; this.match(MySqlParser.KW_LOGS); } break; case MySqlParser.KW_OPTIMIZER_COSTS: { - this.state = 6641; + this.state = 6644; this.match(MySqlParser.KW_OPTIMIZER_COSTS); } break; case MySqlParser.KW_PRIVILEGES: { - this.state = 6642; + this.state = 6645; this.match(MySqlParser.KW_PRIVILEGES); } break; case MySqlParser.KW_QUERY: { - this.state = 6643; + this.state = 6646; this.match(MySqlParser.KW_QUERY); - this.state = 6644; + this.state = 6647; this.match(MySqlParser.KW_CACHE); } break; case MySqlParser.KW_STATUS: { - this.state = 6645; + this.state = 6648; this.match(MySqlParser.KW_STATUS); } break; case MySqlParser.KW_USER_RESOURCES: { - this.state = 6646; + this.state = 6649; this.match(MySqlParser.KW_USER_RESOURCES); } break; case MySqlParser.KW_TABLES: { - this.state = 6647; + this.state = 6650; this.match(MySqlParser.KW_TABLES); - this.state = 6651; + this.state = 6654; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 952, this.context) ) { case 1: { - this.state = 6648; + this.state = 6651; this.match(MySqlParser.KW_WITH); - this.state = 6649; + this.state = 6652; this.match(MySqlParser.KW_READ); - this.state = 6650; + this.state = 6653; this.match(MySqlParser.KW_LOCK); } break; @@ -37626,16 +37643,16 @@ export class MySqlParser extends SQLParserBase { localContext = new ChannelFlushOptionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 6655; + this.state = 6658; this.match(MySqlParser.KW_RELAY); - this.state = 6656; + this.state = 6659; this.match(MySqlParser.KW_LOGS); - this.state = 6658; + this.state = 6661; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 6657; + this.state = 6660; this.channelOption(); } } @@ -37646,7 +37663,7 @@ export class MySqlParser extends SQLParserBase { localContext = new TableFlushOptionContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 6660; + this.state = 6663; _la = this.tokenStream.LA(1); if(!(_la === 173 || _la === 752)) { this.errorHandler.recoverInline(this); @@ -37655,22 +37672,22 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6662; + this.state = 6665; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 955, this.context) ) { case 1: { - this.state = 6661; + this.state = 6664; this.tableNames(); } break; } - this.state = 6665; + this.state = 6668; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 956, this.context) ) { case 1: { - this.state = 6664; + this.state = 6667; this.flushTableOption(); } break; @@ -37697,26 +37714,26 @@ export class MySqlParser extends SQLParserBase { let localContext = new FlushTableOptionContext(this.context, this.state); this.enterRule(localContext, 606, MySqlParser.RULE_flushTableOption); try { - this.state = 6674; + this.state = 6677; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_WITH: this.enterOuterAlt(localContext, 1); { - this.state = 6669; + this.state = 6672; this.match(MySqlParser.KW_WITH); - this.state = 6670; + this.state = 6673; this.match(MySqlParser.KW_READ); - this.state = 6671; + this.state = 6674; this.match(MySqlParser.KW_LOCK); } break; case MySqlParser.KW_FOR: this.enterOuterAlt(localContext, 2); { - this.state = 6672; + this.state = 6675; this.match(MySqlParser.KW_FOR); - this.state = 6673; + this.state = 6676; this.match(MySqlParser.KW_EXPORT); } break; @@ -37745,18 +37762,18 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6676; + this.state = 6679; this.tableName(); - this.state = 6684; + this.state = 6687; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130) { { - this.state = 6677; + this.state = 6680; this.match(MySqlParser.KW_PARTITION); - this.state = 6678; - this.match(MySqlParser.LR_BRACKET); this.state = 6681; + this.match(MySqlParser.LR_BRACKET); + this.state = 6684; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -38309,35 +38326,35 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 6679; + this.state = 6682; this.partitionNames(); } break; case MySqlParser.KW_ALL: { - this.state = 6680; + this.state = 6683; this.match(MySqlParser.KW_ALL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 6683; + this.state = 6686; this.match(MySqlParser.RR_BRACKET); } } - this.state = 6693; + this.state = 6696; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 962, this.context) ) { case 1: { - this.state = 6687; + this.state = 6690; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82 || _la === 92) { { - this.state = 6686; + this.state = 6689; localContext._indexFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 92)) { @@ -38350,23 +38367,23 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 6689; + this.state = 6692; this.match(MySqlParser.LR_BRACKET); - this.state = 6690; + this.state = 6693; this.indexNames(); - this.state = 6691; + this.state = 6694; this.match(MySqlParser.RR_BRACKET); } break; } - this.state = 6697; + this.state = 6700; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 79) { { - this.state = 6695; + this.state = 6698; this.match(MySqlParser.KW_IGNORE); - this.state = 6696; + this.state = 6699; this.match(MySqlParser.KW_LEAVES); } } @@ -38394,7 +38411,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6699; + this.state = 6702; localContext._command = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 45)) & ~0x1F) === 0 && ((1 << (_la - 45)) & 131075) !== 0))) { @@ -38404,20 +38421,20 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6700; - this.tableName(); this.state = 6703; + this.tableName(); + this.state = 6706; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 964, this.context) ) { case 1: { - this.state = 6701; + this.state = 6704; localContext._column = this.columnName(); } break; case 2: { - this.state = 6702; + this.state = 6705; localContext._pattern = this.match(MySqlParser.STRING_LITERAL); } break; @@ -38445,7 +38462,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6705; + this.state = 6708; localContext._command = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 45)) & ~0x1F) === 0 && ((1 << (_la - 45)) & 131075) !== 0))) { @@ -38455,28 +38472,28 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6711; + this.state = 6714; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_EXTENDED: { - this.state = 6706; + this.state = 6709; this.match(MySqlParser.KW_EXTENDED); } break; case MySqlParser.KW_PARTITIONS: { - this.state = 6707; + this.state = 6710; this.match(MySqlParser.KW_PARTITIONS); } break; case MySqlParser.KW_FORMAT: { - this.state = 6708; + this.state = 6711; this.match(MySqlParser.KW_FORMAT); - this.state = 6709; + this.state = 6712; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6710; + this.state = 6713; _la = this.tokenStream.LA(1); if(!(_la === 442 || _la === 663 || _la === 666)) { this.errorHandler.recoverInline(this); @@ -38498,7 +38515,7 @@ export class MySqlParser extends SQLParserBase { default: break; } - this.state = 6713; + this.state = 6716; this.describeObjectClause(); } } @@ -38523,7 +38540,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6715; + this.state = 6718; localContext._command = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 45)) & ~0x1F) === 0 && ((1 << (_la - 45)) & 131075) !== 0))) { @@ -38533,23 +38550,23 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6716; + this.state = 6719; this.match(MySqlParser.KW_ANALYZE); - this.state = 6720; + this.state = 6723; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 826) { { - this.state = 6717; + this.state = 6720; this.match(MySqlParser.KW_FORMAT); - this.state = 6718; + this.state = 6721; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6719; + this.state = 6722; this.match(MySqlParser.KW_TREE); } } - this.state = 6722; + this.state = 6725; this.selectStatement(); } } @@ -38573,9 +38590,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6724; + this.state = 6727; this.match(MySqlParser.KW_HELP); - this.state = 6725; + this.state = 6728; this.match(MySqlParser.STRING_LITERAL); } } @@ -38599,9 +38616,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6727; + this.state = 6730; this.match(MySqlParser.KW_USE); - this.state = 6728; + this.state = 6731; this.databaseName(); } } @@ -38626,68 +38643,68 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6730; + this.state = 6733; this.match(MySqlParser.KW_SIGNAL); - this.state = 6738; + this.state = 6741; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SQLSTATE: { { - this.state = 6731; + this.state = 6734; this.match(MySqlParser.KW_SQLSTATE); - this.state = 6733; + this.state = 6736; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 682) { { - this.state = 6732; + this.state = 6735; this.match(MySqlParser.KW_VALUE); } } - this.state = 6735; + this.state = 6738; this.stringLiteral(); } } break; case MySqlParser.ID: { - this.state = 6736; + this.state = 6739; this.match(MySqlParser.ID); } break; case MySqlParser.REVERSE_QUOTE_ID: { - this.state = 6737; + this.state = 6740; this.match(MySqlParser.REVERSE_QUOTE_ID); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 6749; + this.state = 6752; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 970, this.context) ) { case 1: { - this.state = 6740; + this.state = 6743; this.match(MySqlParser.KW_SET); - this.state = 6741; + this.state = 6744; this.signalConditionInformation(); - this.state = 6746; + this.state = 6749; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6742; + this.state = 6745; this.match(MySqlParser.COMMA); - this.state = 6743; + this.state = 6746; this.signalConditionInformation(); } } - this.state = 6748; + this.state = 6751; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -38717,40 +38734,40 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6751; + this.state = 6754; this.match(MySqlParser.KW_RESIGNAL); - this.state = 6759; + this.state = 6762; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SQLSTATE: { { - this.state = 6752; + this.state = 6755; this.match(MySqlParser.KW_SQLSTATE); - this.state = 6754; + this.state = 6757; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 682) { { - this.state = 6753; + this.state = 6756; this.match(MySqlParser.KW_VALUE); } } - this.state = 6756; + this.state = 6759; this.stringLiteral(); } } break; case MySqlParser.ID: { - this.state = 6757; + this.state = 6760; this.match(MySqlParser.ID); } break; case MySqlParser.REVERSE_QUOTE_ID: { - this.state = 6758; + this.state = 6761; this.match(MySqlParser.REVERSE_QUOTE_ID); } break; @@ -38821,28 +38838,28 @@ export class MySqlParser extends SQLParserBase { default: break; } - this.state = 6770; + this.state = 6773; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 974, this.context) ) { case 1: { - this.state = 6761; + this.state = 6764; this.match(MySqlParser.KW_SET); - this.state = 6762; + this.state = 6765; this.signalConditionInformation(); - this.state = 6767; + this.state = 6770; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6763; + this.state = 6766; this.match(MySqlParser.COMMA); - this.state = 6764; + this.state = 6767; this.signalConditionInformation(); } } - this.state = 6769; + this.state = 6772; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -38872,7 +38889,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6772; + this.state = 6775; _la = this.tokenStream.LA(1); if(!(((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 137887873) !== 0) || _la === 487 || _la === 495 || _la === 650 || _la === 657 || _la === 822 || _la === 832)) { this.errorHandler.recoverInline(this); @@ -38881,29 +38898,29 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6773; + this.state = 6776; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6778; + this.state = 6781; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.START_NATIONAL_STRING_LITERAL: case MySqlParser.STRING_LITERAL: case MySqlParser.STRING_CHARSET_NAME: { - this.state = 6774; + this.state = 6777; this.stringLiteral(); } break; case MySqlParser.DECIMAL_LITERAL: { - this.state = 6775; + this.state = 6778; this.match(MySqlParser.DECIMAL_LITERAL); } break; case MySqlParser.LOCAL_ID: case MySqlParser.GLOBAL_ID: { - this.state = 6776; + this.state = 6779; this.mysqlVariable(); } break; @@ -39455,7 +39472,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.MOD: case MySqlParser.ID: { - this.state = 6777; + this.state = 6780; this.simpleId(); } break; @@ -39485,33 +39502,33 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6780; + this.state = 6783; this.match(MySqlParser.KW_WITH); - this.state = 6782; + this.state = 6785; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 976, this.context) ) { case 1: { - this.state = 6781; + this.state = 6784; this.match(MySqlParser.KW_RECURSIVE); } break; } - this.state = 6784; + this.state = 6787; this.commonTableExpressions(); - this.state = 6789; + this.state = 6792; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6785; + this.state = 6788; this.match(MySqlParser.COMMA); - this.state = 6786; + this.state = 6789; this.commonTableExpressions(); } } - this.state = 6791; + this.state = 6794; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -39537,26 +39554,26 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6792; + this.state = 6795; this.match(MySqlParser.KW_TABLE); - this.state = 6793; + this.state = 6796; this.tableName(); - this.state = 6795; + this.state = 6798; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 978, this.context) ) { case 1: { - this.state = 6794; + this.state = 6797; this.orderByClause(); } break; } - this.state = 6798; + this.state = 6801; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 979, this.context) ) { case 1: { - this.state = 6797; + this.state = 6800; this.limitClause(); } break; @@ -39584,14 +39601,14 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6800; + this.state = 6803; this.match(MySqlParser.KW_GET); - this.state = 6802; + this.state = 6805; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36 || _la === 170) { { - this.state = 6801; + this.state = 6804; _la = this.tokenStream.LA(1); if(!(_la === 36 || _la === 170)) { this.errorHandler.recoverInline(this); @@ -39603,19 +39620,19 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 6804; + this.state = 6807; this.match(MySqlParser.KW_DIAGNOSTICS); - this.state = 6836; + this.state = 6839; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 984, this.context) ) { case 1: { { - this.state = 6805; + this.state = 6808; this.variableClause(); - this.state = 6806; + this.state = 6809; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6807; + this.state = 6810; _la = this.tokenStream.LA(1); if(!(_la === 117 || _la === 831)) { this.errorHandler.recoverInline(this); @@ -39624,19 +39641,19 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6815; + this.state = 6818; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6808; + this.state = 6811; this.match(MySqlParser.COMMA); - this.state = 6809; + this.state = 6812; this.variableClause(); - this.state = 6810; + this.state = 6813; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6811; + this.state = 6814; _la = this.tokenStream.LA(1); if(!(_la === 117 || _la === 831)) { this.errorHandler.recoverInline(this); @@ -39647,7 +39664,7 @@ export class MySqlParser extends SQLParserBase { } } } - this.state = 6817; + this.state = 6820; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -39657,9 +39674,9 @@ export class MySqlParser extends SQLParserBase { case 2: { { - this.state = 6818; - this.match(MySqlParser.KW_CONDITION); this.state = 6821; + this.match(MySqlParser.KW_CONDITION); + this.state = 6824; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.ZERO_DECIMAL: @@ -39669,7 +39686,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.DECIMAL_LITERAL: case MySqlParser.REAL_LITERAL: { - this.state = 6819; + this.state = 6822; this.decimalLiteral(); } break; @@ -40228,36 +40245,36 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.LOCAL_ID: case MySqlParser.GLOBAL_ID: { - this.state = 6820; + this.state = 6823; this.variableClause(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 6823; + this.state = 6826; this.variableClause(); - this.state = 6824; + this.state = 6827; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6825; + this.state = 6828; this.diagnosticsConditionInformationName(); - this.state = 6833; + this.state = 6836; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6826; + this.state = 6829; this.match(MySqlParser.COMMA); - this.state = 6827; + this.state = 6830; this.variableClause(); - this.state = 6828; + this.state = 6831; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 6829; + this.state = 6832; this.diagnosticsConditionInformationName(); } } - this.state = 6835; + this.state = 6838; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -40288,7 +40305,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6838; + this.state = 6841; _la = this.tokenStream.LA(1); if(!(((((_la - 332)) & ~0x1F) === 0 && ((1 << (_la - 332)) & 137887873) !== 0) || _la === 487 || _la === 495 || _la === 578 || _la === 650 || _la === 657 || _la === 822 || _la === 832)) { this.errorHandler.recoverInline(this); @@ -40317,7 +40334,7 @@ export class MySqlParser extends SQLParserBase { let localContext = new DescribeObjectClauseContext(this.context, this.state); this.enterRule(localContext, 634, MySqlParser.RULE_describeObjectClause); try { - this.state = 6850; + this.state = 6853; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DELETE: @@ -40329,37 +40346,37 @@ export class MySqlParser extends SQLParserBase { localContext = new DescribeStatementsContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 6845; + this.state = 6848; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_SELECT: case MySqlParser.LR_BRACKET: { - this.state = 6840; + this.state = 6843; this.selectStatement(); } break; case MySqlParser.KW_DELETE: { - this.state = 6841; + this.state = 6844; this.deleteStatement(); } break; case MySqlParser.KW_INSERT: { - this.state = 6842; + this.state = 6845; this.insertStatement(); } break; case MySqlParser.KW_REPLACE: { - this.state = 6843; + this.state = 6846; this.replaceStatement(); } break; case MySqlParser.KW_UPDATE: { - this.state = 6844; + this.state = 6847; this.updateStatement(); } break; @@ -40372,11 +40389,11 @@ export class MySqlParser extends SQLParserBase { localContext = new DescribeConnectionContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 6847; + this.state = 6850; this.match(MySqlParser.KW_FOR); - this.state = 6848; + this.state = 6851; this.match(MySqlParser.KW_CONNECTION); - this.state = 6849; + this.state = 6852; (localContext as DescribeConnectionContext)._connection_id = this.uid(); } break; @@ -40404,7 +40421,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6852; + this.state = 6855; this.fullId(); } } @@ -40428,7 +40445,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6854; + this.state = 6857; this.fullId(); } } @@ -40452,7 +40469,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6856; + this.state = 6859; this.fullId(); } } @@ -40476,7 +40493,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6858; + this.state = 6861; this.fullId(); } } @@ -40500,7 +40517,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6860; + this.state = 6863; this.fullId(); } } @@ -40524,7 +40541,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6862; + this.state = 6865; this.fullId(); } } @@ -40548,7 +40565,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6864; + this.state = 6867; this.uid(); } } @@ -40573,21 +40590,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6866; + this.state = 6869; this.indexName(); - this.state = 6871; + this.state = 6874; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6867; + this.state = 6870; this.match(MySqlParser.COMMA); - this.state = 6868; + this.state = 6871; this.indexName(); } } - this.state = 6873; + this.state = 6876; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -40613,7 +40630,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6874; + this.state = 6877; this.uid(); } } @@ -40637,7 +40654,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6876; + this.state = 6879; this.uid(); } } @@ -40661,7 +40678,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6878; + this.state = 6881; this.uid(); } } @@ -40685,7 +40702,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6880; + this.state = 6883; this.fullId(); } } @@ -40710,23 +40727,23 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6882; + this.state = 6885; this.tableName(); - this.state = 6887; + this.state = 6890; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 988, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 6883; + this.state = 6886; this.match(MySqlParser.COMMA); - this.state = 6884; + this.state = 6887; this.tableName(); } } } - this.state = 6889; + this.state = 6892; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 988, this.context); } @@ -40752,7 +40769,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6890; + this.state = 6893; this.fullId(); } } @@ -40777,21 +40794,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6892; + this.state = 6895; this.userOrRoleName(); - this.state = 6897; + this.state = 6900; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 6893; + this.state = 6896; this.match(MySqlParser.COMMA); - this.state = 6894; + this.state = 6897; this.userOrRoleName(); } } - this.state = 6899; + this.state = 6902; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -40815,20 +40832,20 @@ export class MySqlParser extends SQLParserBase { let localContext = new UserOrRoleNameContext(this.context, this.state); this.enterRule(localContext, 666, MySqlParser.RULE_userOrRoleName); try { - this.state = 6902; + this.state = 6905; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 990, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6900; + this.state = 6903; this.userName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6901; + this.state = 6904; this.uid(); } break; @@ -40853,27 +40870,27 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 668, MySqlParser.RULE_columnNameCreate); let _la: number; try { - this.state = 6918; + this.state = 6921; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 995, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6904; + this.state = 6907; this.uid(); - this.state = 6909; + this.state = 6912; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 865) { { - this.state = 6905; + this.state = 6908; this.dottedId(); - this.state = 6907; + this.state = 6910; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 865) { { - this.state = 6906; + this.state = 6909; this.dottedId(); } } @@ -40886,24 +40903,24 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6912; + this.state = 6915; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 993, this.context) ) { case 1: { - this.state = 6911; + this.state = 6914; this.matchWildcard(); } break; } - this.state = 6914; + this.state = 6917; this.dottedId(); - this.state = 6916; + this.state = 6919; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 865) { { - this.state = 6915; + this.state = 6918; this.dottedId(); } } @@ -40933,23 +40950,23 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6920; + this.state = 6923; this.columnName(); - this.state = 6925; + this.state = 6928; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 996, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 6921; + this.state = 6924; this.match(MySqlParser.COMMA); - this.state = 6922; + this.state = 6925; this.columnName(); } } } - this.state = 6927; + this.state = 6930; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 996, this.context); } @@ -40996,28 +41013,28 @@ export class MySqlParser extends SQLParserBase { let localContext = new ColumnNameContext(this.context, this.state); this.enterRule(localContext, 674, MySqlParser.RULE_columnName); try { - this.state = 6946; + this.state = 6949; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1001, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6930; + this.state = 6933; this.uid(); - this.state = 6935; + this.state = 6938; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 998, this.context) ) { case 1: { - this.state = 6931; - this.dottedIdAllowEmpty(); - this.state = 6933; + this.state = 6934; + this.dottedId(); + this.state = 6936; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 997, this.context) ) { case 1: { - this.state = 6932; - this.dottedIdAllowEmpty(); + this.state = 6935; + this.dottedId(); } break; } @@ -41029,24 +41046,24 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6938; + this.state = 6941; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 999, this.context) ) { case 1: { - this.state = 6937; + this.state = 6940; this.matchWildcard(); } break; } - this.state = 6940; + this.state = 6943; this.dottedId(); - this.state = 6942; + this.state = 6945; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1000, this.context) ) { case 1: { - this.state = 6941; + this.state = 6944; this.dottedId(); } break; @@ -41056,11 +41073,11 @@ export class MySqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6944; + this.state = 6947; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } - this.state = 6945; + this.state = 6948; this.emptyColumn(); } break; @@ -41084,27 +41101,27 @@ export class MySqlParser extends SQLParserBase { let localContext = new ColumnNamePathContext(this.context, this.state); this.enterRule(localContext, 676, MySqlParser.RULE_columnNamePath); try { - this.state = 6962; + this.state = 6965; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1006, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6948; + this.state = 6951; this.uid(); - this.state = 6953; + this.state = 6956; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1003, this.context) ) { case 1: { - this.state = 6949; + this.state = 6952; this.dottedId(); - this.state = 6951; + this.state = 6954; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1002, this.context) ) { case 1: { - this.state = 6950; + this.state = 6953; this.dottedId(); } break; @@ -41117,24 +41134,24 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6956; + this.state = 6959; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1004, this.context) ) { case 1: { - this.state = 6955; + this.state = 6958; this.matchWildcard(); } break; } - this.state = 6958; + this.state = 6961; this.dottedId(); - this.state = 6960; + this.state = 6963; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1005, this.context) ) { case 1: { - this.state = 6959; + this.state = 6962; this.dottedId(); } break; @@ -41161,39 +41178,39 @@ export class MySqlParser extends SQLParserBase { let localContext = new ColumnNamePathAllowEmptyContext(this.context, this.state); this.enterRule(localContext, 678, MySqlParser.RULE_columnNamePathAllowEmpty); try { - this.state = 6973; + this.state = 6976; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1009, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6964; + this.state = 6967; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } - this.state = 6965; + this.state = 6968; this.emptyColumn(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6966; + this.state = 6969; this.uid(); - this.state = 6971; + this.state = 6974; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1008, this.context) ) { case 1: { - this.state = 6967; - this.dottedIdAllowEmpty(); - this.state = 6969; + this.state = 6970; + this.dottedId(); + this.state = 6972; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1007, this.context) ) { case 1: { - this.state = 6968; - this.dottedIdAllowEmpty(); + this.state = 6971; + this.dottedId(); } break; } @@ -41224,7 +41241,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6975; + this.state = 6978; this.uid(); } } @@ -41248,7 +41265,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6977; + this.state = 6980; this.uid(); } } @@ -41272,7 +41289,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6979; + this.state = 6982; this.uid(); } } @@ -41297,23 +41314,23 @@ export class MySqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6981; + this.state = 6984; this.partitionName(); - this.state = 6986; + this.state = 6989; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1010, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 6982; + this.state = 6985; this.match(MySqlParser.COMMA); - this.state = 6983; + this.state = 6986; this.partitionName(); } } } - this.state = 6988; + this.state = 6991; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1010, this.context); } @@ -41339,7 +41356,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6989; + this.state = 6992; this.uid(); } } @@ -41364,23 +41381,23 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6999; + this.state = 7002; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1012, this.context) ) { case 1: { - this.state = 6991; + this.state = 6994; this.uid(); - this.state = 6996; + this.state = 6999; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1011, this.context) ) { case 1: { - this.state = 6992; + this.state = 6995; this.match(MySqlParser.LR_BRACKET); - this.state = 6993; + this.state = 6996; this.decimalLiteral(); - this.state = 6994; + this.state = 6997; this.match(MySqlParser.RR_BRACKET); } break; @@ -41389,17 +41406,17 @@ export class MySqlParser extends SQLParserBase { break; case 2: { - this.state = 6998; + this.state = 7001; this.expression(0); } break; } - this.state = 7002; + this.state = 7005; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1013, this.context) ) { case 1: { - this.state = 7001; + this.state = 7004; localContext._sortType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 45)) { @@ -41434,11 +41451,11 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7004; + this.state = 7007; this.userAtHost(); - this.state = 7005; + this.state = 7008; this.match(MySqlParser.COLON_SYMB); - this.state = 7006; + this.state = 7009; this.decimalLiteral(); } } @@ -41462,9 +41479,9 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7008; + this.state = 7011; this.simpleUserName(); - this.state = 7009; + this.state = 7012; this.match(MySqlParser.HOST_IP_ADDRESS); } } @@ -41486,34 +41503,34 @@ export class MySqlParser extends SQLParserBase { let localContext = new SimpleUserNameContext(this.context, this.state); this.enterRule(localContext, 696, MySqlParser.RULE_simpleUserName); try { - this.state = 7015; + this.state = 7018; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1014, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7011; + this.state = 7014; this.match(MySqlParser.STRING_LITERAL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7012; + this.state = 7015; this.match(MySqlParser.ID); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7013; + this.state = 7016; this.match(MySqlParser.KW_ADMIN); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7014; + this.state = 7017; this.keywordsCanBeId(); } break; @@ -41540,7 +41557,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7017; + this.state = 7020; _la = this.tokenStream.LA(1); if(!(((((_la - 870)) & ~0x1F) === 0 && ((1 << (_la - 870)) & 6291457) !== 0))) { this.errorHandler.recoverInline(this); @@ -41570,20 +41587,20 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 700, MySqlParser.RULE_userName); let _la: number; try { - this.state = 7024; + this.state = 7027; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1016, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7019; + this.state = 7022; this.simpleUserName(); - this.state = 7021; + this.state = 7024; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 870)) & ~0x1F) === 0 && ((1 << (_la - 870)) & 6291457) !== 0)) { { - this.state = 7020; + this.state = 7023; this.hostName(); } } @@ -41593,7 +41610,7 @@ export class MySqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7023; + this.state = 7026; this.currentUserExpression(); } break; @@ -41620,7 +41637,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7026; + this.state = 7029; _la = this.tokenStream.LA(1); if(!(_la === 892 || _la === 893)) { this.errorHandler.recoverInline(this); @@ -41649,34 +41666,34 @@ export class MySqlParser extends SQLParserBase { let localContext = new CharsetNameContext(this.context, this.state); this.enterRule(localContext, 704, MySqlParser.RULE_charsetName); try { - this.state = 7032; + this.state = 7035; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1017, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7028; + this.state = 7031; this.match(MySqlParser.KW_BINARY); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7029; + this.state = 7032; this.charsetNameBase(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7030; + this.state = 7033; this.match(MySqlParser.STRING_LITERAL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7031; + this.state = 7034; this.match(MySqlParser.CHARSET_REVERSE_QOUTE_STRING); } break; @@ -41702,7 +41719,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7034; + this.state = 7037; this.uid(); } } @@ -41724,7 +41741,7 @@ export class MySqlParser extends SQLParserBase { let localContext = new EngineNameContext(this.context, this.state); this.enterRule(localContext, 708, MySqlParser.RULE_engineName); try { - this.state = 7039; + this.state = 7042; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CONNECT: @@ -41742,21 +41759,21 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_TOKUDB: this.enterOuterAlt(localContext, 1); { - this.state = 7036; + this.state = 7039; this.engineNameBase(); } break; case MySqlParser.ID: this.enterOuterAlt(localContext, 2); { - this.state = 7037; + this.state = 7040; this.match(MySqlParser.ID); } break; case MySqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 3); { - this.state = 7038; + this.state = 7041; this.match(MySqlParser.STRING_LITERAL); } break; @@ -41785,7 +41802,7 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7041; + this.state = 7044; _la = this.tokenStream.LA(1); if(!(_la === 348 || ((((_la - 797)) & ~0x1F) === 0 && ((1 << (_la - 797)) & 4095) !== 0))) { this.errorHandler.recoverInline(this); @@ -41817,41 +41834,41 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7043; + this.state = 7046; this.decimalLiteral(); - this.state = 7044; + this.state = 7047; this.match(MySqlParser.MINUS); - this.state = 7045; + this.state = 7048; this.decimalLiteral(); - this.state = 7046; + this.state = 7049; this.match(MySqlParser.MINUS); - this.state = 7047; + this.state = 7050; this.decimalLiteral(); - this.state = 7048; + this.state = 7051; this.match(MySqlParser.MINUS); - this.state = 7049; + this.state = 7052; this.decimalLiteral(); - this.state = 7050; + this.state = 7053; this.match(MySqlParser.MINUS); - this.state = 7051; + this.state = 7054; this.decimalLiteral(); - this.state = 7057; + this.state = 7060; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 7052; + this.state = 7055; this.match(MySqlParser.COLON_SYMB); - this.state = 7053; + this.state = 7056; this.decimalLiteral(); - this.state = 7054; + this.state = 7057; this.match(MySqlParser.MINUS); - this.state = 7055; + this.state = 7058; this.decimalLiteral(); } } - this.state = 7059; + this.state = 7062; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 878); @@ -41878,25 +41895,25 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7061; + this.state = 7064; localContext._globalTableUid = this.xuidStringId(); - this.state = 7068; + this.state = 7071; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 7062; + this.state = 7065; this.match(MySqlParser.COMMA); - this.state = 7063; - localContext._qualifier = this.xuidStringId(); this.state = 7066; + localContext._qualifier = this.xuidStringId(); + this.state = 7069; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 7064; + this.state = 7067; this.match(MySqlParser.COMMA); - this.state = 7065; + this.state = 7068; localContext._idFormat = this.decimalLiteral(); } } @@ -41925,37 +41942,37 @@ export class MySqlParser extends SQLParserBase { this.enterRule(localContext, 716, MySqlParser.RULE_xuidStringId); let _la: number; try { - this.state = 7077; + this.state = 7080; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 7070; + this.state = 7073; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.BIT_STRING: this.enterOuterAlt(localContext, 2); { - this.state = 7071; + this.state = 7074; this.match(MySqlParser.BIT_STRING); } break; case MySqlParser.HEXADECIMAL_LITERAL: this.enterOuterAlt(localContext, 3); { - this.state = 7073; + this.state = 7076; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 7072; + this.state = 7075; this.match(MySqlParser.HEXADECIMAL_LITERAL); } } - this.state = 7075; + this.state = 7078; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 884); @@ -41985,14 +42002,14 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7079; + this.state = 7082; this.uid(); - this.state = 7081; + this.state = 7084; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1024, this.context) ) { case 1: { - this.state = 7080; + this.state = 7083; this.dottedId(); } break; @@ -42020,21 +42037,21 @@ export class MySqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7083; + this.state = 7086; this.uid(); - this.state = 7088; + this.state = 7091; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7084; + this.state = 7087; this.match(MySqlParser.COMMA); - this.state = 7085; + this.state = 7088; this.uid(); } } - this.state = 7090; + this.state = 7093; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -42058,7 +42075,7 @@ export class MySqlParser extends SQLParserBase { let localContext = new UidContext(this.context, this.state); this.enterRule(localContext, 722, MySqlParser.RULE_uid); try { - this.state = 7094; + this.state = 7097; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_ARRAY: @@ -42610,21 +42627,21 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.ID: this.enterOuterAlt(localContext, 1); { - this.state = 7091; + this.state = 7094; this.simpleId(); } break; case MySqlParser.CHARSET_REVERSE_QOUTE_STRING: this.enterOuterAlt(localContext, 2); { - this.state = 7092; + this.state = 7095; this.match(MySqlParser.CHARSET_REVERSE_QOUTE_STRING); } break; case MySqlParser.STRING_LITERAL: this.enterOuterAlt(localContext, 3); { - this.state = 7093; + this.state = 7096; this.match(MySqlParser.STRING_LITERAL); } break; @@ -42650,69 +42667,69 @@ export class MySqlParser extends SQLParserBase { let localContext = new SimpleIdContext(this.context, this.state); this.enterRule(localContext, 724, MySqlParser.RULE_simpleId); try { - this.state = 7105; + this.state = 7108; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1027, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7096; + this.state = 7099; this.match(MySqlParser.ID); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7097; + this.state = 7100; this.charsetNameBase(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7098; + this.state = 7101; this.transactionLevelBase(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7099; + this.state = 7102; this.engineNameBase(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7100; + this.state = 7103; this.privilegesBase(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7101; + this.state = 7104; this.intervalTypeBase(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 7102; + this.state = 7105; this.dataTypeBase(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 7103; + this.state = 7106; this.keywordsCanBeId(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 7104; + this.state = 7107; this.scalarFunctionName(); } break; @@ -42736,81 +42753,27 @@ export class MySqlParser extends SQLParserBase { let localContext = new DottedIdContext(this.context, this.state); this.enterRule(localContext, 726, MySqlParser.RULE_dottedId); try { - this.state = 7111; + this.state = 7114; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1028, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7107; - this.match(MySqlParser.DOT); - this.state = 7108; - this.match(MySqlParser.ID); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 7109; - this.match(MySqlParser.DOT); this.state = 7110; - this.uid(); - } - break; - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public dottedIdAllowEmpty(): DottedIdAllowEmptyContext { - let localContext = new DottedIdAllowEmptyContext(this.context, this.state); - this.enterRule(localContext, 728, MySqlParser.RULE_dottedIdAllowEmpty); - try { - this.state = 7120; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1029, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 7113; this.match(MySqlParser.DOT); - this.state = 7114; + this.state = 7111; this.match(MySqlParser.ID); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7115; + this.state = 7112; this.match(MySqlParser.DOT); - this.state = 7116; + this.state = 7113; this.uid(); } break; - case 3: - this.enterOuterAlt(localContext, 3); - { - this.state = 7117; - if (!(this.shouldMatchEmpty())) { - throw this.createFailedPredicateException("this.shouldMatchEmpty()"); - } - this.state = 7118; - this.match(MySqlParser.DOT); - this.state = 7119; - this.emptyColumn(); - } - break; } } catch (re) { @@ -42829,12 +42792,12 @@ export class MySqlParser extends SQLParserBase { } public decimalLiteral(): DecimalLiteralContext { let localContext = new DecimalLiteralContext(this.context, this.state); - this.enterRule(localContext, 730, MySqlParser.RULE_decimalLiteral); + this.enterRule(localContext, 728, MySqlParser.RULE_decimalLiteral); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7122; + this.state = 7116; _la = this.tokenStream.LA(1); if(!(((((_la - 871)) & ~0x1F) === 0 && ((1 << (_la - 871)) & 20495) !== 0))) { this.errorHandler.recoverInline(this); @@ -42861,15 +42824,15 @@ export class MySqlParser extends SQLParserBase { } public fileSizeLiteral(): FileSizeLiteralContext { let localContext = new FileSizeLiteralContext(this.context, this.state); - this.enterRule(localContext, 732, MySqlParser.RULE_fileSizeLiteral); + this.enterRule(localContext, 730, MySqlParser.RULE_fileSizeLiteral); try { - this.state = 7126; + this.state = 7120; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.FILESIZE_LITERAL: this.enterOuterAlt(localContext, 1); { - this.state = 7124; + this.state = 7118; this.match(MySqlParser.FILESIZE_LITERAL); } break; @@ -42881,7 +42844,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.REAL_LITERAL: this.enterOuterAlt(localContext, 2); { - this.state = 7125; + this.state = 7119; this.decimalLiteral(); } break; @@ -42905,46 +42868,46 @@ export class MySqlParser extends SQLParserBase { } public stringLiteral(): StringLiteralContext { let localContext = new StringLiteralContext(this.context, this.state); - this.enterRule(localContext, 734, MySqlParser.RULE_stringLiteral); + this.enterRule(localContext, 732, MySqlParser.RULE_stringLiteral); let _la: number; try { let alternative: number; - this.state = 7151; + this.state = 7145; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1037, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1036, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7133; + this.state = 7127; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: case MySqlParser.STRING_CHARSET_NAME: { - this.state = 7129; + this.state = 7123; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 888) { { - this.state = 7128; + this.state = 7122; this.match(MySqlParser.STRING_CHARSET_NAME); } } - this.state = 7131; + this.state = 7125; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.START_NATIONAL_STRING_LITERAL: { - this.state = 7132; + this.state = 7126; this.match(MySqlParser.START_NATIONAL_STRING_LITERAL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 7136; + this.state = 7130; this.errorHandler.sync(this); alternative = 1; do { @@ -42952,7 +42915,7 @@ export class MySqlParser extends SQLParserBase { case 1: { { - this.state = 7135; + this.state = 7129; this.match(MySqlParser.STRING_LITERAL); } } @@ -42960,52 +42923,52 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 7138; + this.state = 7132; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1033, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1032, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7145; + this.state = 7139; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.STRING_LITERAL: case MySqlParser.STRING_CHARSET_NAME: { - this.state = 7141; + this.state = 7135; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 888) { { - this.state = 7140; + this.state = 7134; this.match(MySqlParser.STRING_CHARSET_NAME); } } - this.state = 7143; + this.state = 7137; this.match(MySqlParser.STRING_LITERAL); } break; case MySqlParser.START_NATIONAL_STRING_LITERAL: { - this.state = 7144; + this.state = 7138; this.match(MySqlParser.START_NATIONAL_STRING_LITERAL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 7149; + this.state = 7143; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1036, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1035, this.context) ) { case 1: { - this.state = 7147; + this.state = 7141; this.match(MySqlParser.KW_COLLATE); - this.state = 7148; + this.state = 7142; this.collationName(); } break; @@ -43030,12 +42993,12 @@ export class MySqlParser extends SQLParserBase { } public booleanLiteral(): BooleanLiteralContext { let localContext = new BooleanLiteralContext(this.context, this.state); - this.enterRule(localContext, 736, MySqlParser.RULE_booleanLiteral); + this.enterRule(localContext, 734, MySqlParser.RULE_booleanLiteral); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7153; + this.state = 7147; _la = this.tokenStream.LA(1); if(!(_la === 63 || _la === 179)) { this.errorHandler.recoverInline(this); @@ -43062,22 +43025,22 @@ export class MySqlParser extends SQLParserBase { } public hexadecimalLiteral(): HexadecimalLiteralContext { let localContext = new HexadecimalLiteralContext(this.context, this.state); - this.enterRule(localContext, 738, MySqlParser.RULE_hexadecimalLiteral); + this.enterRule(localContext, 736, MySqlParser.RULE_hexadecimalLiteral); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7156; + this.state = 7150; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 888) { { - this.state = 7155; + this.state = 7149; this.match(MySqlParser.STRING_CHARSET_NAME); } } - this.state = 7158; + this.state = 7152; this.match(MySqlParser.HEXADECIMAL_LITERAL); } } @@ -43097,22 +43060,22 @@ export class MySqlParser extends SQLParserBase { } public nullNotNull(): NullNotNullContext { let localContext = new NullNotNullContext(this.context, this.state); - this.enterRule(localContext, 740, MySqlParser.RULE_nullNotNull); + this.enterRule(localContext, 738, MySqlParser.RULE_nullNotNull); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7161; + this.state = 7155; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7160; + this.state = 7154; this.match(MySqlParser.KW_NOT); } } - this.state = 7163; + this.state = 7157; _la = this.tokenStream.LA(1); if(!(_la === 116 || _la === 886)) { this.errorHandler.recoverInline(this); @@ -43139,77 +43102,77 @@ export class MySqlParser extends SQLParserBase { } public constant(): ConstantContext { let localContext = new ConstantContext(this.context, this.state); - this.enterRule(localContext, 742, MySqlParser.RULE_constant); + this.enterRule(localContext, 740, MySqlParser.RULE_constant); let _la: number; try { - this.state = 7177; + this.state = 7171; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1041, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1040, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7165; + this.state = 7159; this.stringLiteral(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7166; + this.state = 7160; this.decimalLiteral(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7167; + this.state = 7161; this.match(MySqlParser.MINUS); - this.state = 7168; + this.state = 7162; this.decimalLiteral(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7169; + this.state = 7163; this.hexadecimalLiteral(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7170; + this.state = 7164; this.booleanLiteral(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7171; + this.state = 7165; this.match(MySqlParser.REAL_LITERAL); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 7172; + this.state = 7166; this.match(MySqlParser.BIT_STRING); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 7174; + this.state = 7168; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7173; + this.state = 7167; this.match(MySqlParser.KW_NOT); } } - this.state = 7176; + this.state = 7170; localContext._nullLiteral = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 116 || _la === 886)) { @@ -43239,18 +43202,18 @@ export class MySqlParser extends SQLParserBase { } public dataType(): DataTypeContext { let localContext = new DataTypeContext(this.context, this.state); - this.enterRule(localContext, 744, MySqlParser.RULE_dataType); + this.enterRule(localContext, 742, MySqlParser.RULE_dataType); let _la: number; try { let alternative: number; - this.state = 7305; + this.state = 7299; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1070, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1069, this.context) ) { case 1: localContext = new StringDataTypeContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7179; + this.state = 7173; (localContext as StringDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 26 || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 31239) !== 0) || _la === 498)) { @@ -43260,62 +43223,62 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7181; + this.state = 7175; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 240) { { - this.state = 7180; + this.state = 7174; this.match(MySqlParser.KW_VARYING); } } - this.state = 7184; + this.state = 7178; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1043, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1042, this.context) ) { case 1: { - this.state = 7183; + this.state = 7177; this.lengthOneDimension(); } break; } - this.state = 7187; + this.state = 7181; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1044, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1043, this.context) ) { case 1: { - this.state = 7186; + this.state = 7180; this.match(MySqlParser.KW_BINARY); } break; } - this.state = 7192; + this.state = 7186; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1045, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1044, this.context) ) { case 1: { - this.state = 7189; + this.state = 7183; this.charSet(); - this.state = 7190; + this.state = 7184; this.charsetName(); } break; } - this.state = 7197; + this.state = 7191; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1046, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1045, this.context) ) { case 1: { - this.state = 7194; + this.state = 7188; this.match(MySqlParser.KW_COLLATE); - this.state = 7195; + this.state = 7189; this.collationName(); } break; case 2: { - this.state = 7196; + this.state = 7190; this.match(MySqlParser.KW_BINARY); } break; @@ -43326,9 +43289,9 @@ export class MySqlParser extends SQLParserBase { localContext = new NationalVaryingStringDataTypeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 7199; + this.state = 7193; this.match(MySqlParser.KW_NATIONAL); - this.state = 7200; + this.state = 7194; (localContext as NationalVaryingStringDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 26 || _la === 224)) { @@ -43338,24 +43301,24 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7201; + this.state = 7195; this.match(MySqlParser.KW_VARYING); - this.state = 7203; + this.state = 7197; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1047, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1046, this.context) ) { case 1: { - this.state = 7202; + this.state = 7196; this.lengthOneDimension(); } break; } - this.state = 7206; + this.state = 7200; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1048, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1047, this.context) ) { case 1: { - this.state = 7205; + this.state = 7199; this.match(MySqlParser.KW_BINARY); } break; @@ -43366,9 +43329,9 @@ export class MySqlParser extends SQLParserBase { localContext = new NationalStringDataTypeContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 7208; + this.state = 7202; this.match(MySqlParser.KW_NATIONAL); - this.state = 7209; + this.state = 7203; (localContext as NationalStringDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 26 || _la === 224 || _la === 225)) { @@ -43378,22 +43341,22 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7211; + this.state = 7205; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1049, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1048, this.context) ) { case 1: { - this.state = 7210; + this.state = 7204; this.lengthOneDimension(); } break; } - this.state = 7214; + this.state = 7208; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1050, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1049, this.context) ) { case 1: { - this.state = 7213; + this.state = 7207; this.match(MySqlParser.KW_BINARY); } break; @@ -43404,26 +43367,26 @@ export class MySqlParser extends SQLParserBase { localContext = new NationalStringDataTypeContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 7216; + this.state = 7210; this.match(MySqlParser.KW_NCHAR); - this.state = 7217; + this.state = 7211; (localContext as NationalStringDataTypeContext)._typeName = this.match(MySqlParser.KW_VARCHAR); - this.state = 7219; + this.state = 7213; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1051, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1050, this.context) ) { case 1: { - this.state = 7218; + this.state = 7212; this.lengthOneDimension(); } break; } - this.state = 7222; + this.state = 7216; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1052, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1051, this.context) ) { case 1: { - this.state = 7221; + this.state = 7215; this.match(MySqlParser.KW_BINARY); } break; @@ -43434,7 +43397,7 @@ export class MySqlParser extends SQLParserBase { localContext = new DimensionDataTypeContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 7224; + this.state = 7218; (localContext as DimensionDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 198)) & ~0x1F) === 0 && ((1 << (_la - 198)) & 4095) !== 0))) { @@ -43444,24 +43407,24 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7226; + this.state = 7220; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1053, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1052, this.context) ) { case 1: { - this.state = 7225; + this.state = 7219; this.lengthOneDimension(); } break; } - this.state = 7231; + this.state = 7225; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1054, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1053, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7228; + this.state = 7222; _la = this.tokenStream.LA(1); if(!(_la === 184 || _la === 197 || _la === 596)) { this.errorHandler.recoverInline(this); @@ -43473,9 +43436,9 @@ export class MySqlParser extends SQLParserBase { } } } - this.state = 7233; + this.state = 7227; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1054, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1053, this.context); } } break; @@ -43483,26 +43446,26 @@ export class MySqlParser extends SQLParserBase { localContext = new DimensionDataTypeContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 7234; + this.state = 7228; (localContext as DimensionDataTypeContext)._typeName = this.match(MySqlParser.KW_REAL); - this.state = 7236; + this.state = 7230; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1055, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1054, this.context) ) { case 1: { - this.state = 7235; + this.state = 7229; this.lengthTwoDimension(); } break; } - this.state = 7241; + this.state = 7235; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1056, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1055, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7238; + this.state = 7232; _la = this.tokenStream.LA(1); if(!(_la === 184 || _la === 197 || _la === 596)) { this.errorHandler.recoverInline(this); @@ -43514,9 +43477,9 @@ export class MySqlParser extends SQLParserBase { } } } - this.state = 7243; + this.state = 7237; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1056, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1055, this.context); } } break; @@ -43524,36 +43487,36 @@ export class MySqlParser extends SQLParserBase { localContext = new DimensionDataTypeContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 7244; + this.state = 7238; (localContext as DimensionDataTypeContext)._typeName = this.match(MySqlParser.KW_DOUBLE); - this.state = 7246; + this.state = 7240; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 212) { { - this.state = 7245; + this.state = 7239; this.match(MySqlParser.KW_PRECISION); } } - this.state = 7249; + this.state = 7243; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1058, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1057, this.context) ) { case 1: { - this.state = 7248; + this.state = 7242; this.lengthTwoDimension(); } break; } - this.state = 7254; + this.state = 7248; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1059, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1058, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7251; + this.state = 7245; _la = this.tokenStream.LA(1); if(!(_la === 184 || _la === 197 || _la === 596)) { this.errorHandler.recoverInline(this); @@ -43565,9 +43528,9 @@ export class MySqlParser extends SQLParserBase { } } } - this.state = 7256; + this.state = 7250; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1059, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1058, this.context); } } break; @@ -43575,7 +43538,7 @@ export class MySqlParser extends SQLParserBase { localContext = new DimensionDataTypeContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 7257; + this.state = 7251; (localContext as DimensionDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 213)) & ~0x1F) === 0 && ((1 << (_la - 213)) & 63) !== 0) || _la === 403)) { @@ -43585,24 +43548,24 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7259; + this.state = 7253; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1060, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1059, this.context) ) { case 1: { - this.state = 7258; + this.state = 7252; this.lengthTwoOptionalDimension(); } break; } - this.state = 7264; + this.state = 7258; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1061, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1060, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7261; + this.state = 7255; _la = this.tokenStream.LA(1); if(!(_la === 184 || _la === 197 || _la === 596)) { this.errorHandler.recoverInline(this); @@ -43614,9 +43577,9 @@ export class MySqlParser extends SQLParserBase { } } } - this.state = 7266; + this.state = 7260; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1061, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1060, this.context); } } break; @@ -43624,7 +43587,7 @@ export class MySqlParser extends SQLParserBase { localContext = new SimpleDataTypeContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 7267; + this.state = 7261; (localContext as SimpleDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 4237313) !== 0) || _la === 321 || _la === 322)) { @@ -43640,7 +43603,7 @@ export class MySqlParser extends SQLParserBase { localContext = new DimensionDataTypeContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 7268; + this.state = 7262; (localContext as DimensionDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 220)) & ~0x1F) === 0 && ((1 << (_la - 220)) & 2831) !== 0) || _la === 319)) { @@ -43650,12 +43613,12 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7270; + this.state = 7264; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1062, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1061, this.context) ) { case 1: { - this.state = 7269; + this.state = 7263; this.lengthOneDimension(); } break; @@ -43666,7 +43629,7 @@ export class MySqlParser extends SQLParserBase { localContext = new CollectionDataTypeContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 7272; + this.state = 7266; (localContext as CollectionDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 155 || _la === 239)) { @@ -43676,26 +43639,26 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7273; + this.state = 7267; this.collectionOptions(); - this.state = 7275; + this.state = 7269; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1063, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1062, this.context) ) { case 1: { - this.state = 7274; + this.state = 7268; this.match(MySqlParser.KW_BINARY); } break; } - this.state = 7280; + this.state = 7274; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1064, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1063, this.context) ) { case 1: { - this.state = 7277; + this.state = 7271; this.charSet(); - this.state = 7278; + this.state = 7272; this.charsetName(); } break; @@ -43706,7 +43669,7 @@ export class MySqlParser extends SQLParserBase { localContext = new SpatialDataTypeContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 7282; + this.state = 7276; (localContext as SpatialDataTypeContext)._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 442 || ((((_la - 813)) & ~0x1F) === 0 && ((1 << (_la - 813)) & 511) !== 0))) { @@ -43716,14 +43679,14 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7285; + this.state = 7279; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1065, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1064, this.context) ) { case 1: { - this.state = 7283; + this.state = 7277; this.match(MySqlParser.KW_SRID); - this.state = 7284; + this.state = 7278; this.decimalLiteral(); } break; @@ -43734,48 +43697,48 @@ export class MySqlParser extends SQLParserBase { localContext = new LongVarcharDataTypeContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 7287; + this.state = 7281; (localContext as LongVarcharDataTypeContext)._typeName = this.match(MySqlParser.KW_LONG); - this.state = 7289; + this.state = 7283; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 225) { { - this.state = 7288; + this.state = 7282; this.match(MySqlParser.KW_VARCHAR); } } - this.state = 7292; + this.state = 7286; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1067, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1066, this.context) ) { case 1: { - this.state = 7291; + this.state = 7285; this.match(MySqlParser.KW_BINARY); } break; } - this.state = 7297; + this.state = 7291; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1068, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1067, this.context) ) { case 1: { - this.state = 7294; + this.state = 7288; this.charSet(); - this.state = 7295; + this.state = 7289; this.charsetName(); } break; } - this.state = 7301; + this.state = 7295; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1069, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1068, this.context) ) { case 1: { - this.state = 7299; + this.state = 7293; this.match(MySqlParser.KW_COLLATE); - this.state = 7300; + this.state = 7294; this.collationName(); } break; @@ -43786,9 +43749,9 @@ export class MySqlParser extends SQLParserBase { localContext = new LongVarbinaryDataTypeContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 7303; + this.state = 7297; this.match(MySqlParser.KW_LONG); - this.state = 7304; + this.state = 7298; this.match(MySqlParser.KW_VARBINARY); } break; @@ -43810,32 +43773,32 @@ export class MySqlParser extends SQLParserBase { } public collectionOptions(): CollectionOptionsContext { let localContext = new CollectionOptionsContext(this.context, this.state); - this.enterRule(localContext, 746, MySqlParser.RULE_collectionOptions); + this.enterRule(localContext, 744, MySqlParser.RULE_collectionOptions); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7307; + this.state = 7301; this.match(MySqlParser.LR_BRACKET); - this.state = 7308; + this.state = 7302; this.match(MySqlParser.STRING_LITERAL); - this.state = 7313; + this.state = 7307; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7309; + this.state = 7303; this.match(MySqlParser.COMMA); - this.state = 7310; + this.state = 7304; this.match(MySqlParser.STRING_LITERAL); } } - this.state = 7315; + this.state = 7309; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 7316; + this.state = 7310; this.match(MySqlParser.RR_BRACKET); } } @@ -43855,18 +43818,18 @@ export class MySqlParser extends SQLParserBase { } public convertedDataType(): ConvertedDataTypeContext { let localContext = new ConvertedDataTypeContext(this.context, this.state); - this.enterRule(localContext, 748, MySqlParser.RULE_convertedDataType); + this.enterRule(localContext, 746, MySqlParser.RULE_convertedDataType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7340; + this.state = 7334; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_BINARY: case MySqlParser.KW_NCHAR: { - this.state = 7318; + this.state = 7312; localContext._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 228 || _la === 498)) { @@ -43876,12 +43839,12 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7320; + this.state = 7314; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 7319; + this.state = 7313; this.lengthOneDimension(); } } @@ -43890,26 +43853,26 @@ export class MySqlParser extends SQLParserBase { break; case MySqlParser.KW_CHAR: { - this.state = 7322; + this.state = 7316; localContext._typeName = this.match(MySqlParser.KW_CHAR); - this.state = 7324; + this.state = 7318; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 7323; + this.state = 7317; this.lengthOneDimension(); } } - this.state = 7329; + this.state = 7323; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 26 || _la === 224 || _la === 823) { { - this.state = 7326; + this.state = 7320; this.charSet(); - this.state = 7327; + this.state = 7321; this.charsetName(); } } @@ -43923,7 +43886,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_DATETIME: case MySqlParser.KW_JSON: { - this.state = 7331; + this.state = 7325; localContext._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 202)) & ~0x1F) === 0 && ((1 << (_la - 202)) & 1441857) !== 0) || _la === 442)) { @@ -43938,7 +43901,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_DECIMAL: case MySqlParser.KW_DEC: { - this.state = 7332; + this.state = 7326; localContext._typeName = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 216 || _la === 217)) { @@ -43948,12 +43911,12 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7334; + this.state = 7328; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 866) { { - this.state = 7333; + this.state = 7327; this.lengthTwoOptionalDimension(); } } @@ -43963,7 +43926,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_UNSIGNED: case MySqlParser.KW_SIGNED: { - this.state = 7336; + this.state = 7330; _la = this.tokenStream.LA(1); if(!(_la === 184 || _la === 596)) { this.errorHandler.recoverInline(this); @@ -43972,12 +43935,12 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7338; + this.state = 7332; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 202 || _la === 208) { { - this.state = 7337; + this.state = 7331; _la = this.tokenStream.LA(1); if(!(_la === 202 || _la === 208)) { this.errorHandler.recoverInline(this); @@ -43994,12 +43957,12 @@ export class MySqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 7343; + this.state = 7337; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12) { { - this.state = 7342; + this.state = 7336; this.match(MySqlParser.KW_ARRAY); } } @@ -44022,15 +43985,15 @@ export class MySqlParser extends SQLParserBase { } public lengthOneDimension(): LengthOneDimensionContext { let localContext = new LengthOneDimensionContext(this.context, this.state); - this.enterRule(localContext, 750, MySqlParser.RULE_lengthOneDimension); + this.enterRule(localContext, 748, MySqlParser.RULE_lengthOneDimension); try { this.enterOuterAlt(localContext, 1); { - this.state = 7345; + this.state = 7339; this.match(MySqlParser.LR_BRACKET); - this.state = 7346; + this.state = 7340; this.decimalLiteral(); - this.state = 7347; + this.state = 7341; this.match(MySqlParser.RR_BRACKET); } } @@ -44050,19 +44013,19 @@ export class MySqlParser extends SQLParserBase { } public lengthTwoDimension(): LengthTwoDimensionContext { let localContext = new LengthTwoDimensionContext(this.context, this.state); - this.enterRule(localContext, 752, MySqlParser.RULE_lengthTwoDimension); + this.enterRule(localContext, 750, MySqlParser.RULE_lengthTwoDimension); try { this.enterOuterAlt(localContext, 1); { - this.state = 7349; + this.state = 7343; this.match(MySqlParser.LR_BRACKET); - this.state = 7350; + this.state = 7344; this.decimalLiteral(); - this.state = 7351; + this.state = 7345; this.match(MySqlParser.COMMA); - this.state = 7352; + this.state = 7346; this.decimalLiteral(); - this.state = 7353; + this.state = 7347; this.match(MySqlParser.RR_BRACKET); } } @@ -44082,28 +44045,28 @@ export class MySqlParser extends SQLParserBase { } public lengthTwoOptionalDimension(): LengthTwoOptionalDimensionContext { let localContext = new LengthTwoOptionalDimensionContext(this.context, this.state); - this.enterRule(localContext, 754, MySqlParser.RULE_lengthTwoOptionalDimension); + this.enterRule(localContext, 752, MySqlParser.RULE_lengthTwoOptionalDimension); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7355; + this.state = 7349; this.match(MySqlParser.LR_BRACKET); - this.state = 7356; + this.state = 7350; this.decimalLiteral(); - this.state = 7359; + this.state = 7353; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 7357; + this.state = 7351; this.match(MySqlParser.COMMA); - this.state = 7358; + this.state = 7352; this.decimalLiteral(); } } - this.state = 7361; + this.state = 7355; this.match(MySqlParser.RR_BRACKET); } } @@ -44123,32 +44086,32 @@ export class MySqlParser extends SQLParserBase { } public indexColumnNames(): IndexColumnNamesContext { let localContext = new IndexColumnNamesContext(this.context, this.state); - this.enterRule(localContext, 756, MySqlParser.RULE_indexColumnNames); + this.enterRule(localContext, 754, MySqlParser.RULE_indexColumnNames); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7363; + this.state = 7357; this.match(MySqlParser.LR_BRACKET); - this.state = 7364; + this.state = 7358; this.indexColumnName(); - this.state = 7369; + this.state = 7363; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7365; + this.state = 7359; this.match(MySqlParser.COMMA); - this.state = 7366; + this.state = 7360; this.indexColumnName(); } } - this.state = 7371; + this.state = 7365; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 7372; + this.state = 7366; this.match(MySqlParser.RR_BRACKET); } } @@ -44168,26 +44131,26 @@ export class MySqlParser extends SQLParserBase { } public expressions(): ExpressionsContext { let localContext = new ExpressionsContext(this.context, this.state); - this.enterRule(localContext, 758, MySqlParser.RULE_expressions); + this.enterRule(localContext, 756, MySqlParser.RULE_expressions); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7374; + this.state = 7368; this.expression(0); - this.state = 7379; + this.state = 7373; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7375; + this.state = 7369; this.match(MySqlParser.COMMA); - this.state = 7376; + this.state = 7370; this.expression(0); } } - this.state = 7381; + this.state = 7375; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -44209,12 +44172,12 @@ export class MySqlParser extends SQLParserBase { } public valuesOrValueList(): ValuesOrValueListContext { let localContext = new ValuesOrValueListContext(this.context, this.state); - this.enterRule(localContext, 760, MySqlParser.RULE_valuesOrValueList); + this.enterRule(localContext, 758, MySqlParser.RULE_valuesOrValueList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7382; + this.state = 7376; _la = this.tokenStream.LA(1); if(!(_la === 189 || _la === 682)) { this.errorHandler.recoverInline(this); @@ -44223,21 +44186,21 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7383; + this.state = 7377; this.expressionsWithDefaults(); - this.state = 7388; + this.state = 7382; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7384; + this.state = 7378; this.match(MySqlParser.COMMA); - this.state = 7385; + this.state = 7379; this.expressionsWithDefaults(); } } - this.state = 7390; + this.state = 7384; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -44259,32 +44222,32 @@ export class MySqlParser extends SQLParserBase { } public expressionsWithDefaults(): ExpressionsWithDefaultsContext { let localContext = new ExpressionsWithDefaultsContext(this.context, this.state); - this.enterRule(localContext, 762, MySqlParser.RULE_expressionsWithDefaults); + this.enterRule(localContext, 760, MySqlParser.RULE_expressionsWithDefaults); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7391; + this.state = 7385; this.match(MySqlParser.LR_BRACKET); - this.state = 7392; + this.state = 7386; this.expressionOrDefault(); - this.state = 7397; + this.state = 7391; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7393; + this.state = 7387; this.match(MySqlParser.COMMA); - this.state = 7394; + this.state = 7388; this.expressionOrDefault(); } } - this.state = 7399; + this.state = 7393; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 7400; + this.state = 7394; this.match(MySqlParser.RR_BRACKET); } } @@ -44304,22 +44267,22 @@ export class MySqlParser extends SQLParserBase { } public expressionOrDefault(): ExpressionOrDefaultContext { let localContext = new ExpressionOrDefaultContext(this.context, this.state); - this.enterRule(localContext, 764, MySqlParser.RULE_expressionOrDefault); + this.enterRule(localContext, 762, MySqlParser.RULE_expressionOrDefault); try { - this.state = 7404; + this.state = 7398; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1084, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1083, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7402; + this.state = 7396; this.expression(0); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7403; + this.state = 7397; this.match(MySqlParser.KW_DEFAULT); } break; @@ -44341,26 +44304,26 @@ export class MySqlParser extends SQLParserBase { } public constants(): ConstantsContext { let localContext = new ConstantsContext(this.context, this.state); - this.enterRule(localContext, 766, MySqlParser.RULE_constants); + this.enterRule(localContext, 764, MySqlParser.RULE_constants); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7406; + this.state = 7400; this.constant(); - this.state = 7411; + this.state = 7405; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7407; + this.state = 7401; this.match(MySqlParser.COMMA); - this.state = 7408; + this.state = 7402; this.constant(); } } - this.state = 7413; + this.state = 7407; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -44382,26 +44345,26 @@ export class MySqlParser extends SQLParserBase { } public simpleStrings(): SimpleStringsContext { let localContext = new SimpleStringsContext(this.context, this.state); - this.enterRule(localContext, 768, MySqlParser.RULE_simpleStrings); + this.enterRule(localContext, 766, MySqlParser.RULE_simpleStrings); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7414; + this.state = 7408; this.match(MySqlParser.STRING_LITERAL); - this.state = 7419; + this.state = 7413; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7415; + this.state = 7409; this.match(MySqlParser.COMMA); - this.state = 7416; + this.state = 7410; this.match(MySqlParser.STRING_LITERAL); } } - this.state = 7421; + this.state = 7415; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -44423,26 +44386,26 @@ export class MySqlParser extends SQLParserBase { } public userVariables(): UserVariablesContext { let localContext = new UserVariablesContext(this.context, this.state); - this.enterRule(localContext, 770, MySqlParser.RULE_userVariables); + this.enterRule(localContext, 768, MySqlParser.RULE_userVariables); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7422; + this.state = 7416; this.match(MySqlParser.LOCAL_ID); - this.state = 7427; + this.state = 7421; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7423; + this.state = 7417; this.match(MySqlParser.COMMA); - this.state = 7424; + this.state = 7418; this.match(MySqlParser.LOCAL_ID); } } - this.state = 7429; + this.state = 7423; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -44464,67 +44427,67 @@ export class MySqlParser extends SQLParserBase { } public defaultValue(): DefaultValueContext { let localContext = new DefaultValueContext(this.context, this.state); - this.enterRule(localContext, 772, MySqlParser.RULE_defaultValue); + this.enterRule(localContext, 770, MySqlParser.RULE_defaultValue); try { - this.state = 7456; + this.state = 7450; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1090, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1089, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7430; + this.state = 7424; this.match(MySqlParser.KW_NULL_LITERAL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7431; + this.state = 7425; this.match(MySqlParser.KW_CAST); - this.state = 7432; + this.state = 7426; this.match(MySqlParser.LR_BRACKET); - this.state = 7433; + this.state = 7427; this.expression(0); - this.state = 7434; + this.state = 7428; this.match(MySqlParser.KW_AS); - this.state = 7435; + this.state = 7429; this.convertedDataType(); - this.state = 7436; + this.state = 7430; this.match(MySqlParser.RR_BRACKET); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7439; + this.state = 7433; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1088, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1087, this.context) ) { case 1: { - this.state = 7438; + this.state = 7432; this.unaryOperator(); } break; } - this.state = 7441; + this.state = 7435; this.constant(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7442; + this.state = 7436; this.currentTimestamp(); - this.state = 7446; + this.state = 7440; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1089, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1088, this.context) ) { case 1: { - this.state = 7443; + this.state = 7437; this.match(MySqlParser.KW_ON); - this.state = 7444; + this.state = 7438; this.match(MySqlParser.KW_UPDATE); - this.state = 7445; + this.state = 7439; this.currentTimestamp(); } break; @@ -44534,22 +44497,22 @@ export class MySqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7448; + this.state = 7442; this.match(MySqlParser.LR_BRACKET); - this.state = 7449; + this.state = 7443; this.expression(0); - this.state = 7450; + this.state = 7444; this.match(MySqlParser.RR_BRACKET); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7452; + this.state = 7446; this.match(MySqlParser.LR_BRACKET); - this.state = 7453; + this.state = 7447; this.fullId(); - this.state = 7454; + this.state = 7448; this.match(MySqlParser.RR_BRACKET); } break; @@ -44571,19 +44534,19 @@ export class MySqlParser extends SQLParserBase { } public currentTimestamp(): CurrentTimestampContext { let localContext = new CurrentTimestampContext(this.context, this.state); - this.enterRule(localContext, 774, MySqlParser.RULE_currentTimestamp); + this.enterRule(localContext, 772, MySqlParser.RULE_currentTimestamp); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7472; + this.state = 7466; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_CURRENT_TIMESTAMP: case MySqlParser.KW_LOCALTIME: case MySqlParser.KW_LOCALTIMESTAMP: { - this.state = 7458; + this.state = 7452; _la = this.tokenStream.LA(1); if(!(((((_la - 287)) & ~0x1F) === 0 && ((1 << (_la - 287)) & 131) !== 0))) { this.errorHandler.recoverInline(this); @@ -44592,24 +44555,24 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7464; + this.state = 7458; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1092, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1091, this.context) ) { case 1: { - this.state = 7459; + this.state = 7453; this.match(MySqlParser.LR_BRACKET); - this.state = 7461; + this.state = 7455; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 871)) & ~0x1F) === 0 && ((1 << (_la - 871)) & 20495) !== 0)) { { - this.state = 7460; + this.state = 7454; this.decimalLiteral(); } } - this.state = 7463; + this.state = 7457; this.match(MySqlParser.RR_BRACKET); } break; @@ -44618,21 +44581,21 @@ export class MySqlParser extends SQLParserBase { break; case MySqlParser.KW_NOW: { - this.state = 7466; + this.state = 7460; this.match(MySqlParser.KW_NOW); - this.state = 7467; + this.state = 7461; this.match(MySqlParser.LR_BRACKET); - this.state = 7469; + this.state = 7463; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 871)) & ~0x1F) === 0 && ((1 << (_la - 871)) & 20495) !== 0)) { { - this.state = 7468; + this.state = 7462; this.decimalLiteral(); } } - this.state = 7471; + this.state = 7465; this.match(MySqlParser.RR_BRACKET); } break; @@ -44657,13 +44620,13 @@ export class MySqlParser extends SQLParserBase { } public ifExists(): IfExistsContext { let localContext = new IfExistsContext(this.context, this.state); - this.enterRule(localContext, 776, MySqlParser.RULE_ifExists); + this.enterRule(localContext, 774, MySqlParser.RULE_ifExists); try { this.enterOuterAlt(localContext, 1); { - this.state = 7474; + this.state = 7468; this.match(MySqlParser.KW_IF); - this.state = 7475; + this.state = 7469; this.match(MySqlParser.KW_EXISTS); } } @@ -44683,15 +44646,15 @@ export class MySqlParser extends SQLParserBase { } public ifNotExists(): IfNotExistsContext { let localContext = new IfNotExistsContext(this.context, this.state); - this.enterRule(localContext, 778, MySqlParser.RULE_ifNotExists); + this.enterRule(localContext, 776, MySqlParser.RULE_ifNotExists); try { this.enterOuterAlt(localContext, 1); { - this.state = 7477; + this.state = 7471; this.match(MySqlParser.KW_IF); - this.state = 7478; + this.state = 7472; this.match(MySqlParser.KW_NOT); - this.state = 7479; + this.state = 7473; this.match(MySqlParser.KW_EXISTS); } } @@ -44711,13 +44674,13 @@ export class MySqlParser extends SQLParserBase { } public orReplace(): OrReplaceContext { let localContext = new OrReplaceContext(this.context, this.state); - this.enterRule(localContext, 780, MySqlParser.RULE_orReplace); + this.enterRule(localContext, 778, MySqlParser.RULE_orReplace); try { this.enterOuterAlt(localContext, 1); { - this.state = 7481; + this.state = 7475; this.match(MySqlParser.KW_OR); - this.state = 7482; + this.state = 7476; this.match(MySqlParser.KW_REPLACE); } } @@ -44737,16 +44700,16 @@ export class MySqlParser extends SQLParserBase { } public functionCall(): FunctionCallContext { let localContext = new FunctionCallContext(this.context, this.state); - this.enterRule(localContext, 782, MySqlParser.RULE_functionCall); + this.enterRule(localContext, 780, MySqlParser.RULE_functionCall); try { - this.state = 7506; + this.state = 7500; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1097, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1096, this.context) ) { case 1: localContext = new SpecificFunctionCallContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7484; + this.state = 7478; this.specificFunction(); } break; @@ -44754,7 +44717,7 @@ export class MySqlParser extends SQLParserBase { localContext = new AggregateFunctionCallContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 7485; + this.state = 7479; this.aggregateWindowedFunction(); } break; @@ -44762,7 +44725,7 @@ export class MySqlParser extends SQLParserBase { localContext = new NonAggregateFunctionCallContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 7486; + this.state = 7480; this.nonAggregateWindowedFunction(); } break; @@ -44770,26 +44733,26 @@ export class MySqlParser extends SQLParserBase { localContext = new ScalarFunctionCallContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 7487; + this.state = 7481; this.scalarFunctionName(); - this.state = 7494; + this.state = 7488; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1095, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1094, this.context) ) { case 1: { - this.state = 7488; + this.state = 7482; this.match(MySqlParser.LR_BRACKET); - this.state = 7489; + this.state = 7483; this.match(MySqlParser.RR_BRACKET); } break; case 2: { - this.state = 7490; + this.state = 7484; this.match(MySqlParser.LR_BRACKET); - this.state = 7491; + this.state = 7485; this.functionArgs(); - this.state = 7492; + this.state = 7486; this.match(MySqlParser.RR_BRACKET); } break; @@ -44800,26 +44763,26 @@ export class MySqlParser extends SQLParserBase { localContext = new UdfFunctionCallContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 7496; + this.state = 7490; this.functionName(); - this.state = 7503; + this.state = 7497; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1096, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1095, this.context) ) { case 1: { - this.state = 7497; + this.state = 7491; this.match(MySqlParser.LR_BRACKET); - this.state = 7498; + this.state = 7492; this.match(MySqlParser.RR_BRACKET); } break; case 2: { - this.state = 7499; + this.state = 7493; this.match(MySqlParser.LR_BRACKET); - this.state = 7500; + this.state = 7494; this.functionArgs(); - this.state = 7501; + this.state = 7495; this.match(MySqlParser.RR_BRACKET); } break; @@ -44830,7 +44793,7 @@ export class MySqlParser extends SQLParserBase { localContext = new PasswordFunctionCallContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 7505; + this.state = 7499; this.passwordFunctionClause(); } break; @@ -44852,17 +44815,17 @@ export class MySqlParser extends SQLParserBase { } public specificFunction(): SpecificFunctionContext { let localContext = new SpecificFunctionContext(this.context, this.state); - this.enterRule(localContext, 784, MySqlParser.RULE_specificFunction); + this.enterRule(localContext, 782, MySqlParser.RULE_specificFunction); let _la: number; try { - this.state = 7687; + this.state = 7681; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1121, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1120, this.context) ) { case 1: localContext = new SimpleFunctionCallContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7508; + this.state = 7502; _la = this.tokenStream.LA(1); if(!(_la === 152 || ((((_la - 285)) & ~0x1F) === 0 && ((1 << (_la - 285)) & 262159) !== 0))) { this.errorHandler.recoverInline(this); @@ -44871,14 +44834,14 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7511; + this.state = 7505; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1098, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1097, this.context) ) { case 1: { - this.state = 7509; + this.state = 7503; this.match(MySqlParser.LR_BRACKET); - this.state = 7510; + this.state = 7504; this.match(MySqlParser.RR_BRACKET); } break; @@ -44889,7 +44852,7 @@ export class MySqlParser extends SQLParserBase { localContext = new CurrentUserContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 7513; + this.state = 7507; this.currentUserExpression(); } break; @@ -44897,17 +44860,17 @@ export class MySqlParser extends SQLParserBase { localContext = new DataTypeFunctionCallContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 7514; + this.state = 7508; this.match(MySqlParser.KW_CONVERT); - this.state = 7515; + this.state = 7509; this.match(MySqlParser.LR_BRACKET); - this.state = 7516; + this.state = 7510; this.expression(0); - this.state = 7517; + this.state = 7511; (localContext as DataTypeFunctionCallContext)._separator = this.match(MySqlParser.COMMA); - this.state = 7518; + this.state = 7512; this.convertedDataType(); - this.state = 7519; + this.state = 7513; this.match(MySqlParser.RR_BRACKET); } break; @@ -44915,17 +44878,17 @@ export class MySqlParser extends SQLParserBase { localContext = new DataTypeFunctionCallContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 7521; + this.state = 7515; this.match(MySqlParser.KW_CONVERT); - this.state = 7522; + this.state = 7516; this.match(MySqlParser.LR_BRACKET); - this.state = 7523; + this.state = 7517; this.expression(0); - this.state = 7524; + this.state = 7518; this.match(MySqlParser.KW_USING); - this.state = 7525; + this.state = 7519; this.charsetName(); - this.state = 7526; + this.state = 7520; this.match(MySqlParser.RR_BRACKET); } break; @@ -44933,17 +44896,17 @@ export class MySqlParser extends SQLParserBase { localContext = new DataTypeFunctionCallContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 7528; + this.state = 7522; this.match(MySqlParser.KW_CAST); - this.state = 7529; + this.state = 7523; this.match(MySqlParser.LR_BRACKET); - this.state = 7530; + this.state = 7524; this.expression(0); - this.state = 7531; + this.state = 7525; this.match(MySqlParser.KW_AS); - this.state = 7532; + this.state = 7526; this.convertedDataType(); - this.state = 7533; + this.state = 7527; this.match(MySqlParser.RR_BRACKET); } break; @@ -44951,13 +44914,13 @@ export class MySqlParser extends SQLParserBase { localContext = new ValuesFunctionCallContext(localContext); this.enterOuterAlt(localContext, 6); { - this.state = 7535; + this.state = 7529; this.match(MySqlParser.KW_VALUES); - this.state = 7536; + this.state = 7530; this.match(MySqlParser.LR_BRACKET); - this.state = 7537; + this.state = 7531; this.columnName(); - this.state = 7538; + this.state = 7532; this.match(MySqlParser.RR_BRACKET); } break; @@ -44965,35 +44928,35 @@ export class MySqlParser extends SQLParserBase { localContext = new CaseFunctionCallContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 7540; + this.state = 7534; this.match(MySqlParser.KW_CASE); - this.state = 7542; + this.state = 7536; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 7541; + this.state = 7535; this.caseFuncAlternative(); } } - this.state = 7544; + this.state = 7538; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 191); - this.state = 7548; + this.state = 7542; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 7546; + this.state = 7540; this.match(MySqlParser.KW_ELSE); - this.state = 7547; + this.state = 7541; (localContext as CaseFunctionCallContext)._elseArg = this.functionArg(); } } - this.state = 7550; + this.state = 7544; this.match(MySqlParser.KW_END); } break; @@ -45001,37 +44964,37 @@ export class MySqlParser extends SQLParserBase { localContext = new CaseExpressionFunctionCallContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 7552; + this.state = 7546; this.match(MySqlParser.KW_CASE); - this.state = 7553; + this.state = 7547; this.expression(0); - this.state = 7555; + this.state = 7549; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 7554; + this.state = 7548; this.caseFuncAlternative(); } } - this.state = 7557; + this.state = 7551; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 191); - this.state = 7561; + this.state = 7555; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 7559; + this.state = 7553; this.match(MySqlParser.KW_ELSE); - this.state = 7560; + this.state = 7554; (localContext as CaseExpressionFunctionCallContext)._elseArg = this.functionArg(); } } - this.state = 7563; + this.state = 7557; this.match(MySqlParser.KW_END); } break; @@ -45039,25 +45002,25 @@ export class MySqlParser extends SQLParserBase { localContext = new CharFunctionCallContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 7565; + this.state = 7559; this.match(MySqlParser.KW_CHAR); - this.state = 7566; + this.state = 7560; this.match(MySqlParser.LR_BRACKET); - this.state = 7567; + this.state = 7561; this.functionArgs(); - this.state = 7570; + this.state = 7564; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 188) { { - this.state = 7568; + this.state = 7562; this.match(MySqlParser.KW_USING); - this.state = 7569; + this.state = 7563; this.charsetName(); } } - this.state = 7572; + this.state = 7566; this.match(MySqlParser.RR_BRACKET); } break; @@ -45065,45 +45028,45 @@ export class MySqlParser extends SQLParserBase { localContext = new PositionFunctionCallContext(localContext); this.enterOuterAlt(localContext, 10); { - this.state = 7574; + this.state = 7568; this.match(MySqlParser.KW_POSITION); - this.state = 7575; + this.state = 7569; this.match(MySqlParser.LR_BRACKET); - this.state = 7578; + this.state = 7572; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1104, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1103, this.context) ) { case 1: { - this.state = 7576; + this.state = 7570; (localContext as PositionFunctionCallContext)._positionString = this.stringLiteral(); } break; case 2: { - this.state = 7577; + this.state = 7571; (localContext as PositionFunctionCallContext)._positionExpression = this.expression(0); } break; } - this.state = 7580; + this.state = 7574; this.match(MySqlParser.KW_IN); - this.state = 7583; + this.state = 7577; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1105, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1104, this.context) ) { case 1: { - this.state = 7581; + this.state = 7575; (localContext as PositionFunctionCallContext)._inString = this.stringLiteral(); } break; case 2: { - this.state = 7582; + this.state = 7576; (localContext as PositionFunctionCallContext)._inExpression = this.expression(0); } break; } - this.state = 7585; + this.state = 7579; this.match(MySqlParser.RR_BRACKET); } break; @@ -45111,7 +45074,7 @@ export class MySqlParser extends SQLParserBase { localContext = new SubstrFunctionCallContext(localContext); this.enterOuterAlt(localContext, 11); { - this.state = 7587; + this.state = 7581; _la = this.tokenStream.LA(1); if(!(_la === 297 || _la === 298)) { this.errorHandler.recoverInline(this); @@ -45120,61 +45083,61 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7588; + this.state = 7582; this.match(MySqlParser.LR_BRACKET); - this.state = 7591; + this.state = 7585; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1106, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1105, this.context) ) { case 1: { - this.state = 7589; + this.state = 7583; (localContext as SubstrFunctionCallContext)._sourceString = this.stringLiteral(); } break; case 2: { - this.state = 7590; + this.state = 7584; (localContext as SubstrFunctionCallContext)._sourceExpression = this.expression(0); } break; } - this.state = 7593; + this.state = 7587; this.match(MySqlParser.KW_FROM); - this.state = 7596; + this.state = 7590; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1107, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1106, this.context) ) { case 1: { - this.state = 7594; + this.state = 7588; (localContext as SubstrFunctionCallContext)._fromDecimal = this.decimalLiteral(); } break; case 2: { - this.state = 7595; + this.state = 7589; (localContext as SubstrFunctionCallContext)._fromExpression = this.expression(0); } break; } - this.state = 7603; + this.state = 7597; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 7598; + this.state = 7592; this.match(MySqlParser.KW_FOR); - this.state = 7601; + this.state = 7595; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1108, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1107, this.context) ) { case 1: { - this.state = 7599; + this.state = 7593; (localContext as SubstrFunctionCallContext)._forDecimal = this.decimalLiteral(); } break; case 2: { - this.state = 7600; + this.state = 7594; (localContext as SubstrFunctionCallContext)._forExpression = this.expression(0); } break; @@ -45182,7 +45145,7 @@ export class MySqlParser extends SQLParserBase { } } - this.state = 7605; + this.state = 7599; this.match(MySqlParser.RR_BRACKET); } break; @@ -45190,11 +45153,11 @@ export class MySqlParser extends SQLParserBase { localContext = new TrimFunctionCallContext(localContext); this.enterOuterAlt(localContext, 12); { - this.state = 7607; + this.state = 7601; this.match(MySqlParser.KW_TRIM); - this.state = 7608; + this.state = 7602; this.match(MySqlParser.LR_BRACKET); - this.state = 7609; + this.state = 7603; (localContext as TrimFunctionCallContext)._positioinForm = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 18 || _la === 96 || _la === 177)) { @@ -45204,41 +45167,41 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7612; + this.state = 7606; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1110, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1109, this.context) ) { case 1: { - this.state = 7610; + this.state = 7604; (localContext as TrimFunctionCallContext)._sourceString = this.stringLiteral(); } break; case 2: { - this.state = 7611; + this.state = 7605; (localContext as TrimFunctionCallContext)._sourceExpression = this.expression(0); } break; } - this.state = 7614; + this.state = 7608; this.match(MySqlParser.KW_FROM); - this.state = 7617; + this.state = 7611; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1111, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1110, this.context) ) { case 1: { - this.state = 7615; + this.state = 7609; (localContext as TrimFunctionCallContext)._fromString = this.stringLiteral(); } break; case 2: { - this.state = 7616; + this.state = 7610; (localContext as TrimFunctionCallContext)._fromExpression = this.expression(0); } break; } - this.state = 7619; + this.state = 7613; this.match(MySqlParser.RR_BRACKET); } break; @@ -45246,45 +45209,45 @@ export class MySqlParser extends SQLParserBase { localContext = new TrimFunctionCallContext(localContext); this.enterOuterAlt(localContext, 13); { - this.state = 7621; + this.state = 7615; this.match(MySqlParser.KW_TRIM); - this.state = 7622; + this.state = 7616; this.match(MySqlParser.LR_BRACKET); - this.state = 7625; + this.state = 7619; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1112, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1111, this.context) ) { case 1: { - this.state = 7623; + this.state = 7617; (localContext as TrimFunctionCallContext)._sourceString = this.stringLiteral(); } break; case 2: { - this.state = 7624; + this.state = 7618; (localContext as TrimFunctionCallContext)._sourceExpression = this.expression(0); } break; } - this.state = 7627; + this.state = 7621; this.match(MySqlParser.KW_FROM); - this.state = 7630; + this.state = 7624; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1113, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1112, this.context) ) { case 1: { - this.state = 7628; + this.state = 7622; (localContext as TrimFunctionCallContext)._fromString = this.stringLiteral(); } break; case 2: { - this.state = 7629; + this.state = 7623; (localContext as TrimFunctionCallContext)._fromExpression = this.expression(0); } break; } - this.state = 7632; + this.state = 7626; this.match(MySqlParser.RR_BRACKET); } break; @@ -45292,34 +45255,34 @@ export class MySqlParser extends SQLParserBase { localContext = new WeightFunctionCallContext(localContext); this.enterOuterAlt(localContext, 14); { - this.state = 7634; + this.state = 7628; this.match(MySqlParser.KW_WEIGHT_STRING); - this.state = 7635; + this.state = 7629; this.match(MySqlParser.LR_BRACKET); - this.state = 7638; + this.state = 7632; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1114, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1113, this.context) ) { case 1: { - this.state = 7636; + this.state = 7630; this.stringLiteral(); } break; case 2: { - this.state = 7637; + this.state = 7631; this.expression(0); } break; } - this.state = 7646; + this.state = 7640; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 13) { { - this.state = 7640; + this.state = 7634; this.match(MySqlParser.KW_AS); - this.state = 7641; + this.state = 7635; (localContext as WeightFunctionCallContext)._stringFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 224 || _la === 228)) { @@ -45329,26 +45292,26 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7642; + this.state = 7636; this.match(MySqlParser.LR_BRACKET); - this.state = 7643; + this.state = 7637; this.decimalLiteral(); - this.state = 7644; + this.state = 7638; this.match(MySqlParser.RR_BRACKET); } } - this.state = 7649; + this.state = 7643; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 448) { { - this.state = 7648; + this.state = 7642; this.levelsInWeightString(); } } - this.state = 7651; + this.state = 7645; this.match(MySqlParser.RR_BRACKET); } break; @@ -45356,31 +45319,31 @@ export class MySqlParser extends SQLParserBase { localContext = new ExtractFunctionCallContext(localContext); this.enterOuterAlt(localContext, 15); { - this.state = 7653; + this.state = 7647; this.match(MySqlParser.KW_EXTRACT); - this.state = 7654; + this.state = 7648; this.match(MySqlParser.LR_BRACKET); - this.state = 7655; + this.state = 7649; this.intervalType(); - this.state = 7656; + this.state = 7650; this.match(MySqlParser.KW_FROM); - this.state = 7659; + this.state = 7653; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1117, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1116, this.context) ) { case 1: { - this.state = 7657; + this.state = 7651; (localContext as ExtractFunctionCallContext)._sourceString = this.stringLiteral(); } break; case 2: { - this.state = 7658; + this.state = 7652; (localContext as ExtractFunctionCallContext)._sourceExpression = this.expression(0); } break; } - this.state = 7661; + this.state = 7655; this.match(MySqlParser.RR_BRACKET); } break; @@ -45388,11 +45351,11 @@ export class MySqlParser extends SQLParserBase { localContext = new GetFormatFunctionCallContext(localContext); this.enterOuterAlt(localContext, 16); { - this.state = 7663; + this.state = 7657; this.match(MySqlParser.KW_GET_FORMAT); - this.state = 7664; + this.state = 7658; this.match(MySqlParser.LR_BRACKET); - this.state = 7665; + this.state = 7659; (localContext as GetFormatFunctionCallContext)._datetimeFormat = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 11) !== 0))) { @@ -45402,11 +45365,11 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7666; + this.state = 7660; this.match(MySqlParser.COMMA); - this.state = 7667; + this.state = 7661; this.stringLiteral(); - this.state = 7668; + this.state = 7662; this.match(MySqlParser.RR_BRACKET); } break; @@ -45414,49 +45377,49 @@ export class MySqlParser extends SQLParserBase { localContext = new JsonValueFunctionCallContext(localContext); this.enterOuterAlt(localContext, 17); { - this.state = 7670; + this.state = 7664; this.match(MySqlParser.KW_JSON_VALUE); - this.state = 7671; + this.state = 7665; this.match(MySqlParser.LR_BRACKET); - this.state = 7672; + this.state = 7666; this.expression(0); - this.state = 7673; + this.state = 7667; this.match(MySqlParser.COMMA); - this.state = 7674; + this.state = 7668; this.expression(0); - this.state = 7677; + this.state = 7671; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 579) { { - this.state = 7675; + this.state = 7669; this.match(MySqlParser.KW_RETURNING); - this.state = 7676; + this.state = 7670; this.convertedDataType(); } } - this.state = 7680; + this.state = 7674; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1119, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1118, this.context) ) { case 1: { - this.state = 7679; + this.state = 7673; this.jsonOnEmpty(); } break; } - this.state = 7683; + this.state = 7677; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 42 || _la === 116 || _la === 382) { { - this.state = 7682; + this.state = 7676; this.jsonOnError(); } } - this.state = 7685; + this.state = 7679; this.match(MySqlParser.RR_BRACKET); } break; @@ -45478,17 +45441,17 @@ export class MySqlParser extends SQLParserBase { } public caseFuncAlternative(): CaseFuncAlternativeContext { let localContext = new CaseFuncAlternativeContext(this.context, this.state); - this.enterRule(localContext, 786, MySqlParser.RULE_caseFuncAlternative); + this.enterRule(localContext, 784, MySqlParser.RULE_caseFuncAlternative); try { this.enterOuterAlt(localContext, 1); { - this.state = 7689; + this.state = 7683; this.match(MySqlParser.KW_WHEN); - this.state = 7690; + this.state = 7684; localContext._condition = this.functionArg(); - this.state = 7691; + this.state = 7685; this.match(MySqlParser.KW_THEN); - this.state = 7692; + this.state = 7686; localContext._consequent = this.functionArg(); } } @@ -45508,33 +45471,33 @@ export class MySqlParser extends SQLParserBase { } public levelsInWeightString(): LevelsInWeightStringContext { let localContext = new LevelsInWeightStringContext(this.context, this.state); - this.enterRule(localContext, 788, MySqlParser.RULE_levelsInWeightString); + this.enterRule(localContext, 786, MySqlParser.RULE_levelsInWeightString); let _la: number; try { - this.state = 7708; + this.state = 7702; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1123, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1122, this.context) ) { case 1: localContext = new LevelWeightListContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7694; + this.state = 7688; this.match(MySqlParser.KW_LEVEL); - this.state = 7695; + this.state = 7689; this.levelInWeightListElement(); - this.state = 7700; + this.state = 7694; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7696; + this.state = 7690; this.match(MySqlParser.COMMA); - this.state = 7697; + this.state = 7691; this.levelInWeightListElement(); } } - this.state = 7702; + this.state = 7696; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -45544,13 +45507,13 @@ export class MySqlParser extends SQLParserBase { localContext = new LevelWeightRangeContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 7703; + this.state = 7697; this.match(MySqlParser.KW_LEVEL); - this.state = 7704; + this.state = 7698; (localContext as LevelWeightRangeContext)._firstLevel = this.decimalLiteral(); - this.state = 7705; + this.state = 7699; this.match(MySqlParser.MINUS); - this.state = 7706; + this.state = 7700; (localContext as LevelWeightRangeContext)._lastLevel = this.decimalLiteral(); } break; @@ -45572,19 +45535,19 @@ export class MySqlParser extends SQLParserBase { } public levelInWeightListElement(): LevelInWeightListElementContext { let localContext = new LevelInWeightListElementContext(this.context, this.state); - this.enterRule(localContext, 790, MySqlParser.RULE_levelInWeightListElement); + this.enterRule(localContext, 788, MySqlParser.RULE_levelInWeightListElement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7710; + this.state = 7704; this.decimalLiteral(); - this.state = 7712; + this.state = 7706; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 14 || _la === 45 || _la === 830) { { - this.state = 7711; + this.state = 7705; localContext._orderType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 45 || _la === 830)) { @@ -45615,10 +45578,10 @@ export class MySqlParser extends SQLParserBase { } public aggregateWindowedFunction(): AggregateWindowedFunctionContext { let localContext = new AggregateWindowedFunctionContext(this.context, this.state); - this.enterRule(localContext, 792, MySqlParser.RULE_aggregateWindowedFunction); + this.enterRule(localContext, 790, MySqlParser.RULE_aggregateWindowedFunction); let _la: number; try { - this.state = 7773; + this.state = 7767; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_AVG: @@ -45627,7 +45590,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_SUM: this.enterOuterAlt(localContext, 1); { - this.state = 7714; + this.state = 7708; _la = this.tokenStream.LA(1); if(!(((((_la - 258)) & ~0x1F) === 0 && ((1 << (_la - 258)) & 8400897) !== 0))) { this.errorHandler.recoverInline(this); @@ -45636,14 +45599,14 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7715; + this.state = 7709; this.match(MySqlParser.LR_BRACKET); - this.state = 7717; + this.state = 7711; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1125, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1124, this.context) ) { case 1: { - this.state = 7716; + this.state = 7710; localContext._aggregator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 49)) { @@ -45656,16 +45619,16 @@ export class MySqlParser extends SQLParserBase { } break; } - this.state = 7719; + this.state = 7713; this.functionArg(); - this.state = 7720; + this.state = 7714; this.match(MySqlParser.RR_BRACKET); - this.state = 7722; + this.state = 7716; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1126, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1125, this.context) ) { case 1: { - this.state = 7721; + this.state = 7715; this.overClause(); } break; @@ -45675,52 +45638,52 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_COUNT: this.enterOuterAlt(localContext, 2); { - this.state = 7724; + this.state = 7718; this.match(MySqlParser.KW_COUNT); - this.state = 7725; + this.state = 7719; this.match(MySqlParser.LR_BRACKET); - this.state = 7733; + this.state = 7727; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1128, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1127, this.context) ) { case 1: { - this.state = 7726; + this.state = 7720; localContext._starArg = this.match(MySqlParser.STAR); } break; case 2: { - this.state = 7728; + this.state = 7722; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1127, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1126, this.context) ) { case 1: { - this.state = 7727; + this.state = 7721; localContext._aggregator = this.match(MySqlParser.KW_ALL); } break; } - this.state = 7730; + this.state = 7724; this.functionArg(); } break; case 3: { - this.state = 7731; + this.state = 7725; localContext._aggregator = this.match(MySqlParser.KW_DISTINCT); - this.state = 7732; + this.state = 7726; this.functionArgs(); } break; } - this.state = 7735; + this.state = 7729; this.match(MySqlParser.RR_BRACKET); - this.state = 7737; + this.state = 7731; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1129, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1128, this.context) ) { case 1: { - this.state = 7736; + this.state = 7730; this.overClause(); } break; @@ -45739,7 +45702,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_VARIANCE: this.enterOuterAlt(localContext, 3); { - this.state = 7739; + this.state = 7733; _la = this.tokenStream.LA(1); if(!(((((_la - 259)) & ~0x1F) === 0 && ((1 << (_la - 259)) & 62652423) !== 0))) { this.errorHandler.recoverInline(this); @@ -45748,28 +45711,28 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7740; + this.state = 7734; this.match(MySqlParser.LR_BRACKET); - this.state = 7742; + this.state = 7736; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1130, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1129, this.context) ) { case 1: { - this.state = 7741; + this.state = 7735; localContext._aggregator = this.match(MySqlParser.KW_ALL); } break; } - this.state = 7744; + this.state = 7738; this.functionArg(); - this.state = 7745; + this.state = 7739; this.match(MySqlParser.RR_BRACKET); - this.state = 7747; + this.state = 7741; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1131, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1130, this.context) ) { case 1: { - this.state = 7746; + this.state = 7740; this.overClause(); } break; @@ -45779,65 +45742,65 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_GROUP_CONCAT: this.enterOuterAlt(localContext, 4); { - this.state = 7749; + this.state = 7743; this.match(MySqlParser.KW_GROUP_CONCAT); - this.state = 7750; + this.state = 7744; this.match(MySqlParser.LR_BRACKET); - this.state = 7752; + this.state = 7746; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1132, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1131, this.context) ) { case 1: { - this.state = 7751; + this.state = 7745; localContext._aggregator = this.match(MySqlParser.KW_DISTINCT); } break; } - this.state = 7754; + this.state = 7748; this.functionArgs(); - this.state = 7765; + this.state = 7759; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 7755; + this.state = 7749; this.match(MySqlParser.KW_ORDER); - this.state = 7756; + this.state = 7750; this.match(MySqlParser.KW_BY); - this.state = 7757; + this.state = 7751; this.orderByExpression(); - this.state = 7762; + this.state = 7756; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7758; + this.state = 7752; this.match(MySqlParser.COMMA); - this.state = 7759; + this.state = 7753; this.orderByExpression(); } } - this.state = 7764; + this.state = 7758; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 7769; + this.state = 7763; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 156) { { - this.state = 7767; + this.state = 7761; this.match(MySqlParser.KW_SEPARATOR); - this.state = 7768; + this.state = 7762; localContext._separator = this.match(MySqlParser.STRING_LITERAL); } } - this.state = 7771; + this.state = 7765; this.match(MySqlParser.RR_BRACKET); } break; @@ -45861,17 +45824,17 @@ export class MySqlParser extends SQLParserBase { } public nonAggregateWindowedFunction(): NonAggregateWindowedFunctionContext { let localContext = new NonAggregateWindowedFunctionContext(this.context, this.state); - this.enterRule(localContext, 794, MySqlParser.RULE_nonAggregateWindowedFunction); + this.enterRule(localContext, 792, MySqlParser.RULE_nonAggregateWindowedFunction); let _la: number; try { - this.state = 7813; + this.state = 7807; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_LAG: case MySqlParser.KW_LEAD: this.enterOuterAlt(localContext, 1); { - this.state = 7775; + this.state = 7769; _la = this.tokenStream.LA(1); if(!(_la === 267 || _la === 269)) { this.errorHandler.recoverInline(this); @@ -45880,37 +45843,37 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7776; + this.state = 7770; this.match(MySqlParser.LR_BRACKET); - this.state = 7777; + this.state = 7771; this.expression(0); - this.state = 7780; + this.state = 7774; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1137, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1136, this.context) ) { case 1: { - this.state = 7778; + this.state = 7772; this.match(MySqlParser.COMMA); - this.state = 7779; + this.state = 7773; this.decimalLiteral(); } break; } - this.state = 7784; + this.state = 7778; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 868) { { - this.state = 7782; + this.state = 7776; this.match(MySqlParser.COMMA); - this.state = 7783; + this.state = 7777; this.decimalLiteral(); } } - this.state = 7786; + this.state = 7780; this.match(MySqlParser.RR_BRACKET); - this.state = 7787; + this.state = 7781; this.overClause(); } break; @@ -45918,7 +45881,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_LAST_VALUE: this.enterOuterAlt(localContext, 2); { - this.state = 7789; + this.state = 7783; _la = this.tokenStream.LA(1); if(!(_la === 265 || _la === 268)) { this.errorHandler.recoverInline(this); @@ -45927,13 +45890,13 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7790; + this.state = 7784; this.match(MySqlParser.LR_BRACKET); - this.state = 7791; + this.state = 7785; this.expression(0); - this.state = 7792; + this.state = 7786; this.match(MySqlParser.RR_BRACKET); - this.state = 7793; + this.state = 7787; this.overClause(); } break; @@ -45944,7 +45907,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.KW_ROW_NUMBER: this.enterOuterAlt(localContext, 3); { - this.state = 7795; + this.state = 7789; _la = this.tokenStream.LA(1); if(!(((((_la - 263)) & ~0x1F) === 0 && ((1 << (_la - 263)) & 14339) !== 0))) { this.errorHandler.recoverInline(this); @@ -45953,45 +45916,45 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7796; + this.state = 7790; this.match(MySqlParser.LR_BRACKET); - this.state = 7797; + this.state = 7791; this.match(MySqlParser.RR_BRACKET); - this.state = 7798; + this.state = 7792; this.overClause(); } break; case MySqlParser.KW_NTH_VALUE: this.enterOuterAlt(localContext, 4); { - this.state = 7799; + this.state = 7793; this.match(MySqlParser.KW_NTH_VALUE); - this.state = 7800; + this.state = 7794; this.match(MySqlParser.LR_BRACKET); - this.state = 7801; + this.state = 7795; this.expression(0); - this.state = 7802; + this.state = 7796; this.match(MySqlParser.COMMA); - this.state = 7803; + this.state = 7797; this.decimalLiteral(); - this.state = 7804; + this.state = 7798; this.match(MySqlParser.RR_BRACKET); - this.state = 7805; + this.state = 7799; this.overClause(); } break; case MySqlParser.KW_NTILE: this.enterOuterAlt(localContext, 5); { - this.state = 7807; + this.state = 7801; this.match(MySqlParser.KW_NTILE); - this.state = 7808; + this.state = 7802; this.match(MySqlParser.LR_BRACKET); - this.state = 7809; + this.state = 7803; this.decimalLiteral(); - this.state = 7810; + this.state = 7804; this.match(MySqlParser.RR_BRACKET); - this.state = 7811; + this.state = 7805; this.overClause(); } break; @@ -46015,22 +45978,22 @@ export class MySqlParser extends SQLParserBase { } public overClause(): OverClauseContext { let localContext = new OverClauseContext(this.context, this.state); - this.enterRule(localContext, 796, MySqlParser.RULE_overClause); + this.enterRule(localContext, 794, MySqlParser.RULE_overClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 7815; + this.state = 7809; this.match(MySqlParser.KW_OVER); - this.state = 7821; + this.state = 7815; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.LR_BRACKET: { - this.state = 7816; + this.state = 7810; this.match(MySqlParser.LR_BRACKET); - this.state = 7817; + this.state = 7811; this.windowSpec(); - this.state = 7818; + this.state = 7812; this.match(MySqlParser.RR_BRACKET); } break; @@ -46584,7 +46547,7 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.STRING_LITERAL: case MySqlParser.ID: { - this.state = 7820; + this.state = 7814; this.windowName(); } break; @@ -46609,47 +46572,47 @@ export class MySqlParser extends SQLParserBase { } public windowSpec(): WindowSpecContext { let localContext = new WindowSpecContext(this.context, this.state); - this.enterRule(localContext, 798, MySqlParser.RULE_windowSpec); + this.enterRule(localContext, 796, MySqlParser.RULE_windowSpec); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7824; + this.state = 7818; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1141, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1140, this.context) ) { case 1: { - this.state = 7823; + this.state = 7817; this.windowName(); } break; } - this.state = 7827; + this.state = 7821; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130) { { - this.state = 7826; + this.state = 7820; this.partitionClause(); } } - this.state = 7830; + this.state = 7824; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 125) { { - this.state = 7829; + this.state = 7823; this.orderByClause(); } } - this.state = 7833; + this.state = 7827; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 134 || _la === 587) { { - this.state = 7832; + this.state = 7826; this.frameClause(); } } @@ -46672,11 +46635,11 @@ export class MySqlParser extends SQLParserBase { } public windowName(): WindowNameContext { let localContext = new WindowNameContext(this.context, this.state); - this.enterRule(localContext, 800, MySqlParser.RULE_windowName); + this.enterRule(localContext, 798, MySqlParser.RULE_windowName); try { this.enterOuterAlt(localContext, 1); { - this.state = 7835; + this.state = 7829; this.uid(); } } @@ -46696,13 +46659,13 @@ export class MySqlParser extends SQLParserBase { } public frameClause(): FrameClauseContext { let localContext = new FrameClauseContext(this.context, this.state); - this.enterRule(localContext, 802, MySqlParser.RULE_frameClause); + this.enterRule(localContext, 800, MySqlParser.RULE_frameClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 7837; + this.state = 7831; this.frameUnits(); - this.state = 7838; + this.state = 7832; this.frameExtent(); } } @@ -46722,12 +46685,12 @@ export class MySqlParser extends SQLParserBase { } public frameUnits(): FrameUnitsContext { let localContext = new FrameUnitsContext(this.context, this.state); - this.enterRule(localContext, 804, MySqlParser.RULE_frameUnits); + this.enterRule(localContext, 802, MySqlParser.RULE_frameUnits); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7840; + this.state = 7834; _la = this.tokenStream.LA(1); if(!(_la === 134 || _la === 587)) { this.errorHandler.recoverInline(this); @@ -46754,22 +46717,22 @@ export class MySqlParser extends SQLParserBase { } public frameExtent(): FrameExtentContext { let localContext = new FrameExtentContext(this.context, this.state); - this.enterRule(localContext, 806, MySqlParser.RULE_frameExtent); + this.enterRule(localContext, 804, MySqlParser.RULE_frameExtent); try { - this.state = 7844; + this.state = 7838; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1145, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1144, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7842; + this.state = 7836; this.frameRange(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7843; + this.state = 7837; this.frameBetween(); } break; @@ -46791,17 +46754,17 @@ export class MySqlParser extends SQLParserBase { } public frameBetween(): FrameBetweenContext { let localContext = new FrameBetweenContext(this.context, this.state); - this.enterRule(localContext, 808, MySqlParser.RULE_frameBetween); + this.enterRule(localContext, 806, MySqlParser.RULE_frameBetween); try { this.enterOuterAlt(localContext, 1); { - this.state = 7846; + this.state = 7840; this.match(MySqlParser.KW_BETWEEN); - this.state = 7847; + this.state = 7841; this.frameRange(); - this.state = 7848; + this.state = 7842; this.match(MySqlParser.KW_AND); - this.state = 7849; + this.state = 7843; this.frameRange(); } } @@ -46821,27 +46784,27 @@ export class MySqlParser extends SQLParserBase { } public frameRange(): FrameRangeContext { let localContext = new FrameRangeContext(this.context, this.state); - this.enterRule(localContext, 810, MySqlParser.RULE_frameRange); + this.enterRule(localContext, 808, MySqlParser.RULE_frameRange); let _la: number; try { - this.state = 7858; + this.state = 7852; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1146, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1145, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7851; + this.state = 7845; this.match(MySqlParser.KW_CURRENT); - this.state = 7852; + this.state = 7846; this.match(MySqlParser.KW_ROW); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7853; + this.state = 7847; this.match(MySqlParser.KW_UNBOUNDED); - this.state = 7854; + this.state = 7848; _la = this.tokenStream.LA(1); if(!(_la === 405 || _la === 539)) { this.errorHandler.recoverInline(this); @@ -46855,9 +46818,9 @@ export class MySqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7855; + this.state = 7849; this.expression(0); - this.state = 7856; + this.state = 7850; _la = this.tokenStream.LA(1); if(!(_la === 405 || _la === 539)) { this.errorHandler.recoverInline(this); @@ -46886,30 +46849,30 @@ export class MySqlParser extends SQLParserBase { } public partitionClause(): PartitionClauseContext { let localContext = new PartitionClauseContext(this.context, this.state); - this.enterRule(localContext, 812, MySqlParser.RULE_partitionClause); + this.enterRule(localContext, 810, MySqlParser.RULE_partitionClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7860; + this.state = 7854; this.match(MySqlParser.KW_PARTITION); - this.state = 7861; + this.state = 7855; this.match(MySqlParser.KW_BY); - this.state = 7862; + this.state = 7856; this.expression(0); - this.state = 7867; + this.state = 7861; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7863; + this.state = 7857; this.match(MySqlParser.COMMA); - this.state = 7864; + this.state = 7858; this.expression(0); } } - this.state = 7869; + this.state = 7863; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -46931,9 +46894,9 @@ export class MySqlParser extends SQLParserBase { } public scalarFunctionName(): ScalarFunctionNameContext { let localContext = new ScalarFunctionNameContext(this.context, this.state); - this.enterRule(localContext, 814, MySqlParser.RULE_scalarFunctionName); + this.enterRule(localContext, 812, MySqlParser.RULE_scalarFunctionName); try { - this.state = 7894; + this.state = 7888; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_DATABASE: @@ -46990,168 +46953,168 @@ export class MySqlParser extends SQLParserBase { case MySqlParser.MOD: this.enterOuterAlt(localContext, 1); { - this.state = 7870; + this.state = 7864; this.functionNameBase(); } break; case MySqlParser.KW_ASCII: this.enterOuterAlt(localContext, 2); { - this.state = 7871; + this.state = 7865; this.match(MySqlParser.KW_ASCII); } break; case MySqlParser.KW_CURDATE: this.enterOuterAlt(localContext, 3); { - this.state = 7872; + this.state = 7866; this.match(MySqlParser.KW_CURDATE); } break; case MySqlParser.KW_CURRENT_DATE: this.enterOuterAlt(localContext, 4); { - this.state = 7873; + this.state = 7867; this.match(MySqlParser.KW_CURRENT_DATE); } break; case MySqlParser.KW_CURRENT_TIME: this.enterOuterAlt(localContext, 5); { - this.state = 7874; + this.state = 7868; this.match(MySqlParser.KW_CURRENT_TIME); } break; case MySqlParser.KW_CURRENT_TIMESTAMP: this.enterOuterAlt(localContext, 6); { - this.state = 7875; + this.state = 7869; this.match(MySqlParser.KW_CURRENT_TIMESTAMP); } break; case MySqlParser.KW_CURTIME: this.enterOuterAlt(localContext, 7); { - this.state = 7876; + this.state = 7870; this.match(MySqlParser.KW_CURTIME); } break; case MySqlParser.KW_DATE_ADD: this.enterOuterAlt(localContext, 8); { - this.state = 7877; + this.state = 7871; this.match(MySqlParser.KW_DATE_ADD); } break; case MySqlParser.KW_DATE_SUB: this.enterOuterAlt(localContext, 9); { - this.state = 7878; + this.state = 7872; this.match(MySqlParser.KW_DATE_SUB); } break; case MySqlParser.KW_IF: this.enterOuterAlt(localContext, 10); { - this.state = 7879; + this.state = 7873; this.match(MySqlParser.KW_IF); } break; case MySqlParser.KW_INSERT: this.enterOuterAlt(localContext, 11); { - this.state = 7880; + this.state = 7874; this.match(MySqlParser.KW_INSERT); } break; case MySqlParser.KW_LOCALTIME: this.enterOuterAlt(localContext, 12); { - this.state = 7881; + this.state = 7875; this.match(MySqlParser.KW_LOCALTIME); } break; case MySqlParser.KW_LOCALTIMESTAMP: this.enterOuterAlt(localContext, 13); { - this.state = 7882; + this.state = 7876; this.match(MySqlParser.KW_LOCALTIMESTAMP); } break; case MySqlParser.KW_MID: this.enterOuterAlt(localContext, 14); { - this.state = 7883; + this.state = 7877; this.match(MySqlParser.KW_MID); } break; case MySqlParser.KW_NOW: this.enterOuterAlt(localContext, 15); { - this.state = 7884; + this.state = 7878; this.match(MySqlParser.KW_NOW); } break; case MySqlParser.KW_REPEAT: this.enterOuterAlt(localContext, 16); { - this.state = 7885; + this.state = 7879; this.match(MySqlParser.KW_REPEAT); } break; case MySqlParser.KW_REPLACE: this.enterOuterAlt(localContext, 17); { - this.state = 7886; + this.state = 7880; this.match(MySqlParser.KW_REPLACE); } break; case MySqlParser.KW_SUBSTR: this.enterOuterAlt(localContext, 18); { - this.state = 7887; + this.state = 7881; this.match(MySqlParser.KW_SUBSTR); } break; case MySqlParser.KW_SUBSTRING: this.enterOuterAlt(localContext, 19); { - this.state = 7888; + this.state = 7882; this.match(MySqlParser.KW_SUBSTRING); } break; case MySqlParser.KW_SYSDATE: this.enterOuterAlt(localContext, 20); { - this.state = 7889; + this.state = 7883; this.match(MySqlParser.KW_SYSDATE); } break; case MySqlParser.KW_TRIM: this.enterOuterAlt(localContext, 21); { - this.state = 7890; + this.state = 7884; this.match(MySqlParser.KW_TRIM); } break; case MySqlParser.KW_UTC_DATE: this.enterOuterAlt(localContext, 22); { - this.state = 7891; + this.state = 7885; this.match(MySqlParser.KW_UTC_DATE); } break; case MySqlParser.KW_UTC_TIME: this.enterOuterAlt(localContext, 23); { - this.state = 7892; + this.state = 7886; this.match(MySqlParser.KW_UTC_TIME); } break; case MySqlParser.KW_UTC_TIMESTAMP: this.enterOuterAlt(localContext, 24); { - this.state = 7893; + this.state = 7887; this.match(MySqlParser.KW_UTC_TIMESTAMP); } break; @@ -47175,12 +47138,12 @@ export class MySqlParser extends SQLParserBase { } public passwordFunctionClause(): PasswordFunctionClauseContext { let localContext = new PasswordFunctionClauseContext(this.context, this.state); - this.enterRule(localContext, 816, MySqlParser.RULE_passwordFunctionClause); + this.enterRule(localContext, 814, MySqlParser.RULE_passwordFunctionClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7896; + this.state = 7890; _la = this.tokenStream.LA(1); if(!(_la === 512 || _la === 529)) { this.errorHandler.recoverInline(this); @@ -47189,11 +47152,11 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7897; + this.state = 7891; this.match(MySqlParser.LR_BRACKET); - this.state = 7898; + this.state = 7892; this.functionArg(); - this.state = 7899; + this.state = 7893; this.match(MySqlParser.RR_BRACKET); } } @@ -47213,26 +47176,26 @@ export class MySqlParser extends SQLParserBase { } public functionArgs(): FunctionArgsContext { let localContext = new FunctionArgsContext(this.context, this.state); - this.enterRule(localContext, 818, MySqlParser.RULE_functionArgs); + this.enterRule(localContext, 816, MySqlParser.RULE_functionArgs); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7901; + this.state = 7895; this.functionArg(); - this.state = 7906; + this.state = 7900; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 7902; + this.state = 7896; this.match(MySqlParser.COMMA); - this.state = 7903; + this.state = 7897; this.functionArg(); } } - this.state = 7908; + this.state = 7902; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -47254,29 +47217,29 @@ export class MySqlParser extends SQLParserBase { } public functionArg(): FunctionArgContext { let localContext = new FunctionArgContext(this.context, this.state); - this.enterRule(localContext, 820, MySqlParser.RULE_functionArg); + this.enterRule(localContext, 818, MySqlParser.RULE_functionArg); try { - this.state = 7912; + this.state = 7906; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1150, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1149, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7909; + this.state = 7903; this.constant(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7910; + this.state = 7904; this.functionCall(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7911; + this.state = 7905; this.expression(0); } break; @@ -47308,23 +47271,23 @@ export class MySqlParser extends SQLParserBase { let parentState = this.state; let localContext = new ExpressionContext(this.context, parentState); let previousContext = localContext; - let _startState = 822; - this.enterRecursionRule(localContext, 822, MySqlParser.RULE_expression, _p); + let _startState = 820; + this.enterRecursionRule(localContext, 820, MySqlParser.RULE_expression, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7925; + this.state = 7919; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1152, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1151, this.context) ) { case 1: { localContext = new NotExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7915; + this.state = 7909; (localContext as NotExpressionContext)._notOperator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 114 || _la === 860)) { @@ -47334,7 +47297,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7916; + this.state = 7910; this.expression(4); } break; @@ -47343,21 +47306,21 @@ export class MySqlParser extends SQLParserBase { localContext = new IsExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7917; + this.state = 7911; this.predicate(0); - this.state = 7918; + this.state = 7912; this.match(MySqlParser.KW_IS); - this.state = 7920; + this.state = 7914; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7919; + this.state = 7913; this.match(MySqlParser.KW_NOT); } } - this.state = 7922; + this.state = 7916; (localContext as IsExpressionContext)._testValue = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 63 || _la === 179 || _la === 674)) { @@ -47374,15 +47337,15 @@ export class MySqlParser extends SQLParserBase { localContext = new PredicateExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 7924; + this.state = 7918; this.predicate(0); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 7933; + this.state = 7927; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1153, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1152, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -47393,20 +47356,20 @@ export class MySqlParser extends SQLParserBase { { localContext = new LogicalExpressionContext(new ExpressionContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_expression); - this.state = 7927; + this.state = 7921; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 7928; + this.state = 7922; this.logicalOperator(); - this.state = 7929; + this.state = 7923; this.expression(4); } } } - this.state = 7935; + this.state = 7929; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1153, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1152, this.context); } } } @@ -47436,8 +47399,8 @@ export class MySqlParser extends SQLParserBase { let parentState = this.state; let localContext = new PredicateContext(this.context, parentState); let previousContext = localContext; - let _startState = 824; - this.enterRecursionRule(localContext, 824, MySqlParser.RULE_predicate, _p); + let _startState = 822; + this.enterRecursionRule(localContext, 822, MySqlParser.RULE_predicate, _p); let _la: number; try { let alternative: number; @@ -47448,13 +47411,13 @@ export class MySqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 7937; + this.state = 7931; this.expressionAtom(0); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 8002; + this.state = 7996; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1162, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1161, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -47462,34 +47425,34 @@ export class MySqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 8000; + this.state = 7994; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1161, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1160, this.context) ) { case 1: { localContext = new BetweenPredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7939; + this.state = 7933; if (!(this.precpred(this.context, 6))) { throw this.createFailedPredicateException("this.precpred(this.context, 6)"); } - this.state = 7941; + this.state = 7935; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7940; + this.state = 7934; this.match(MySqlParser.KW_NOT); } } - this.state = 7943; + this.state = 7937; this.match(MySqlParser.KW_BETWEEN); - this.state = 7944; + this.state = 7938; this.predicate(0); - this.state = 7945; + this.state = 7939; this.match(MySqlParser.KW_AND); - this.state = 7946; + this.state = 7940; this.predicate(7); } break; @@ -47497,15 +47460,15 @@ export class MySqlParser extends SQLParserBase { { localContext = new SoundsLikePredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7948; + this.state = 7942; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 7949; + this.state = 7943; this.match(MySqlParser.KW_SOUNDS); - this.state = 7950; + this.state = 7944; this.match(MySqlParser.KW_LIKE); - this.state = 7951; + this.state = 7945; this.predicate(6); } break; @@ -47513,21 +47476,21 @@ export class MySqlParser extends SQLParserBase { { localContext = new RegexpPredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7952; + this.state = 7946; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 7954; + this.state = 7948; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7953; + this.state = 7947; this.match(MySqlParser.KW_NOT); } } - this.state = 7956; + this.state = 7950; (localContext as RegexpPredicateContext)._regex = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 139 || _la === 151)) { @@ -47537,7 +47500,7 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7957; + this.state = 7951; this.predicate(4); } break; @@ -47545,41 +47508,41 @@ export class MySqlParser extends SQLParserBase { { localContext = new InPredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7958; + this.state = 7952; if (!(this.precpred(this.context, 9))) { throw this.createFailedPredicateException("this.precpred(this.context, 9)"); } - this.state = 7960; + this.state = 7954; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7959; + this.state = 7953; this.match(MySqlParser.KW_NOT); } } - this.state = 7962; + this.state = 7956; this.match(MySqlParser.KW_IN); - this.state = 7963; + this.state = 7957; this.match(MySqlParser.LR_BRACKET); - this.state = 7966; + this.state = 7960; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1157, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1156, this.context) ) { case 1: { - this.state = 7964; + this.state = 7958; this.selectStatement(); } break; case 2: { - this.state = 7965; + this.state = 7959; this.expressions(); } break; } - this.state = 7968; + this.state = 7962; this.match(MySqlParser.RR_BRACKET); } break; @@ -47587,13 +47550,13 @@ export class MySqlParser extends SQLParserBase { { localContext = new IsNullPredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7970; + this.state = 7964; if (!(this.precpred(this.context, 8))) { throw this.createFailedPredicateException("this.precpred(this.context, 8)"); } - this.state = 7971; + this.state = 7965; this.match(MySqlParser.KW_IS); - this.state = 7972; + this.state = 7966; this.nullNotNull(); } break; @@ -47601,18 +47564,18 @@ export class MySqlParser extends SQLParserBase { { localContext = new BinaryComparisonPredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7973; + this.state = 7967; if (!(this.precpred(this.context, 7))) { throw this.createFailedPredicateException("this.precpred(this.context, 7)"); } - this.state = 7974; + this.state = 7968; this.comparisonOperator(); - this.state = 7981; + this.state = 7975; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1158, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1157, this.context) ) { case 1: { - this.state = 7975; + this.state = 7969; (localContext as BinaryComparisonPredicateContext)._quantifier = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 7 || _la === 309 || _la === 602)) { @@ -47622,17 +47585,17 @@ export class MySqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7976; + this.state = 7970; this.match(MySqlParser.LR_BRACKET); - this.state = 7977; + this.state = 7971; (localContext as BinaryComparisonPredicateContext)._subQuery = this.selectStatement(); - this.state = 7978; + this.state = 7972; this.match(MySqlParser.RR_BRACKET); } break; case 2: { - this.state = 7980; + this.state = 7974; (localContext as BinaryComparisonPredicateContext)._right = this.predicate(0); } break; @@ -47643,32 +47606,32 @@ export class MySqlParser extends SQLParserBase { { localContext = new LikePredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7983; + this.state = 7977; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 7985; + this.state = 7979; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 114) { { - this.state = 7984; + this.state = 7978; this.match(MySqlParser.KW_NOT); } } - this.state = 7987; + this.state = 7981; this.match(MySqlParser.KW_LIKE); - this.state = 7988; + this.state = 7982; this.predicate(0); - this.state = 7991; + this.state = 7985; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1160, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1159, this.context) ) { case 1: { - this.state = 7989; + this.state = 7983; this.match(MySqlParser.KW_ESCAPE); - this.state = 7990; + this.state = 7984; this.match(MySqlParser.STRING_LITERAL); } break; @@ -47679,28 +47642,28 @@ export class MySqlParser extends SQLParserBase { { localContext = new JsonMemberOfPredicateContext(new PredicateContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_predicate); - this.state = 7993; + this.state = 7987; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 7994; + this.state = 7988; this.match(MySqlParser.KW_MEMBER); - this.state = 7995; + this.state = 7989; this.match(MySqlParser.KW_OF); - this.state = 7996; + this.state = 7990; this.match(MySqlParser.LR_BRACKET); - this.state = 7997; + this.state = 7991; this.predicate(0); - this.state = 7998; + this.state = 7992; this.match(MySqlParser.RR_BRACKET); } break; } } } - this.state = 8004; + this.state = 7998; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1162, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1161, this.context); } } } @@ -47730,23 +47693,23 @@ export class MySqlParser extends SQLParserBase { let parentState = this.state; let localContext = new ExpressionAtomContext(this.context, parentState); let previousContext = localContext; - let _startState = 826; - this.enterRecursionRule(localContext, 826, MySqlParser.RULE_expressionAtom, _p); + let _startState = 824; + this.enterRecursionRule(localContext, 824, MySqlParser.RULE_expressionAtom, _p); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 8053; + this.state = 8047; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1165, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1164, this.context) ) { case 1: { localContext = new ConstantExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 8006; + this.state = 8000; this.constant(); } break; @@ -47755,7 +47718,7 @@ export class MySqlParser extends SQLParserBase { localContext = new FunctionCallExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 8007; + this.state = 8001; this.functionCall(); } break; @@ -47764,7 +47727,7 @@ export class MySqlParser extends SQLParserBase { localContext = new MysqlVariableExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 8008; + this.state = 8002; this.mysqlVariable(); } break; @@ -47773,9 +47736,9 @@ export class MySqlParser extends SQLParserBase { localContext = new UnaryExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 8009; + this.state = 8003; this.unaryOperator(); - this.state = 8010; + this.state = 8004; this.expressionAtom(12); } break; @@ -47784,9 +47747,9 @@ export class MySqlParser extends SQLParserBase { localContext = new BinaryExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 8012; + this.state = 8006; this.match(MySqlParser.KW_BINARY); - this.state = 8013; + this.state = 8007; this.expressionAtom(11); } break; @@ -47795,11 +47758,11 @@ export class MySqlParser extends SQLParserBase { localContext = new VariableAssignExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 8014; + this.state = 8008; this.match(MySqlParser.LOCAL_ID); - this.state = 8015; + this.state = 8009; this.match(MySqlParser.VAR_ASSIGN); - this.state = 8016; + this.state = 8010; this.expressionAtom(10); } break; @@ -47808,27 +47771,27 @@ export class MySqlParser extends SQLParserBase { localContext = new NestedExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 8017; + this.state = 8011; this.match(MySqlParser.LR_BRACKET); - this.state = 8018; + this.state = 8012; this.expression(0); - this.state = 8023; + this.state = 8017; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 868) { { { - this.state = 8019; + this.state = 8013; this.match(MySqlParser.COMMA); - this.state = 8020; + this.state = 8014; this.expression(0); } } - this.state = 8025; + this.state = 8019; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 8026; + this.state = 8020; this.match(MySqlParser.RR_BRACKET); } break; @@ -47837,29 +47800,29 @@ export class MySqlParser extends SQLParserBase { localContext = new NestedRowExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 8028; + this.state = 8022; this.match(MySqlParser.KW_ROW); - this.state = 8029; + this.state = 8023; this.match(MySqlParser.LR_BRACKET); - this.state = 8030; + this.state = 8024; this.expression(0); - this.state = 8033; + this.state = 8027; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 8031; + this.state = 8025; this.match(MySqlParser.COMMA); - this.state = 8032; + this.state = 8026; this.expression(0); } } - this.state = 8035; + this.state = 8029; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 868); - this.state = 8037; + this.state = 8031; this.match(MySqlParser.RR_BRACKET); } break; @@ -47868,13 +47831,13 @@ export class MySqlParser extends SQLParserBase { localContext = new ExistsExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 8039; + this.state = 8033; this.match(MySqlParser.KW_EXISTS); - this.state = 8040; + this.state = 8034; this.match(MySqlParser.LR_BRACKET); - this.state = 8041; + this.state = 8035; this.selectStatement(); - this.state = 8042; + this.state = 8036; this.match(MySqlParser.RR_BRACKET); } break; @@ -47883,11 +47846,11 @@ export class MySqlParser extends SQLParserBase { localContext = new SubqueryExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 8044; + this.state = 8038; this.match(MySqlParser.LR_BRACKET); - this.state = 8045; + this.state = 8039; this.selectStatement(); - this.state = 8046; + this.state = 8040; this.match(MySqlParser.RR_BRACKET); } break; @@ -47896,11 +47859,11 @@ export class MySqlParser extends SQLParserBase { localContext = new IntervalExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 8048; + this.state = 8042; this.match(MySqlParser.KW_INTERVAL); - this.state = 8049; + this.state = 8043; this.expression(0); - this.state = 8050; + this.state = 8044; this.intervalType(); } break; @@ -47909,15 +47872,15 @@ export class MySqlParser extends SQLParserBase { localContext = new ColumnNameExpressionAtomContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 8052; + this.state = 8046; this.columnNamePath(); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 8072; + this.state = 8066; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1167, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1166, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -47925,21 +47888,21 @@ export class MySqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 8070; + this.state = 8064; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1166, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1165, this.context) ) { case 1: { localContext = new JsonExpressionAtomContext(new ExpressionAtomContext(parentContext, parentState)); (localContext as JsonExpressionAtomContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_expressionAtom); - this.state = 8055; + this.state = 8049; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 8056; + this.state = 8050; this.jsonOperator(); - this.state = 8057; + this.state = 8051; (localContext as JsonExpressionAtomContext)._right = this.expressionAtom(5); } break; @@ -47948,13 +47911,13 @@ export class MySqlParser extends SQLParserBase { localContext = new BitExpressionAtomContext(new ExpressionAtomContext(parentContext, parentState)); (localContext as BitExpressionAtomContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_expressionAtom); - this.state = 8059; + this.state = 8053; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 8060; + this.state = 8054; this.bitOperator(); - this.state = 8061; + this.state = 8055; (localContext as BitExpressionAtomContext)._right = this.expressionAtom(4); } break; @@ -47963,13 +47926,13 @@ export class MySqlParser extends SQLParserBase { localContext = new MathExpressionAtomContext(new ExpressionAtomContext(parentContext, parentState)); (localContext as MathExpressionAtomContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_expressionAtom); - this.state = 8063; + this.state = 8057; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 8064; + this.state = 8058; this.mathOperator(); - this.state = 8065; + this.state = 8059; (localContext as MathExpressionAtomContext)._right = this.expressionAtom(3); } break; @@ -47977,22 +47940,22 @@ export class MySqlParser extends SQLParserBase { { localContext = new CollateExpressionAtomContext(new ExpressionAtomContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, MySqlParser.RULE_expressionAtom); - this.state = 8067; + this.state = 8061; if (!(this.precpred(this.context, 14))) { throw this.createFailedPredicateException("this.precpred(this.context, 14)"); } - this.state = 8068; + this.state = 8062; this.match(MySqlParser.KW_COLLATE); - this.state = 8069; + this.state = 8063; this.collationName(); } break; } } } - this.state = 8074; + this.state = 8068; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1167, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1166, this.context); } } } @@ -48012,12 +47975,12 @@ export class MySqlParser extends SQLParserBase { } public unaryOperator(): UnaryOperatorContext { let localContext = new UnaryOperatorContext(this.context, this.state); - this.enterRule(localContext, 828, MySqlParser.RULE_unaryOperator); + this.enterRule(localContext, 826, MySqlParser.RULE_unaryOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8075; + this.state = 8069; _la = this.tokenStream.LA(1); if(!(_la === 114 || ((((_la - 853)) & ~0x1F) === 0 && ((1 << (_la - 853)) & 387) !== 0))) { this.errorHandler.recoverInline(this); @@ -48044,44 +48007,44 @@ export class MySqlParser extends SQLParserBase { } public comparisonOperator(): ComparisonOperatorContext { let localContext = new ComparisonOperatorContext(this.context, this.state); - this.enterRule(localContext, 830, MySqlParser.RULE_comparisonOperator); + this.enterRule(localContext, 828, MySqlParser.RULE_comparisonOperator); try { - this.state = 8085; + this.state = 8079; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1168, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1167, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8077; + this.state = 8071; this.match(MySqlParser.LESS_SYMBOL); - this.state = 8078; + this.state = 8072; this.match(MySqlParser.GREATER_SYMBOL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8079; + this.state = 8073; this.match(MySqlParser.EXCLAMATION_SYMBOL); - this.state = 8080; + this.state = 8074; this.match(MySqlParser.EQUAL_SYMBOL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 8081; + this.state = 8075; this.match(MySqlParser.LESS_SYMBOL); - this.state = 8082; + this.state = 8076; this.match(MySqlParser.EQUAL_SYMBOL); - this.state = 8083; + this.state = 8077; this.match(MySqlParser.GREATER_SYMBOL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 8084; + this.state = 8078; this.comparisonBase(); } break; @@ -48103,47 +48066,47 @@ export class MySqlParser extends SQLParserBase { } public comparisonBase(): ComparisonBaseContext { let localContext = new ComparisonBaseContext(this.context, this.state); - this.enterRule(localContext, 832, MySqlParser.RULE_comparisonBase); + this.enterRule(localContext, 830, MySqlParser.RULE_comparisonBase); try { - this.state = 8094; + this.state = 8088; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1169, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1168, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8087; + this.state = 8081; this.match(MySqlParser.LESS_SYMBOL); - this.state = 8088; + this.state = 8082; this.match(MySqlParser.EQUAL_SYMBOL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8089; + this.state = 8083; this.match(MySqlParser.GREATER_SYMBOL); - this.state = 8090; + this.state = 8084; this.match(MySqlParser.EQUAL_SYMBOL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 8091; + this.state = 8085; this.match(MySqlParser.EQUAL_SYMBOL); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 8092; + this.state = 8086; this.match(MySqlParser.GREATER_SYMBOL); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 8093; + this.state = 8087; this.match(MySqlParser.LESS_SYMBOL); } break; @@ -48165,47 +48128,47 @@ export class MySqlParser extends SQLParserBase { } public logicalOperator(): LogicalOperatorContext { let localContext = new LogicalOperatorContext(this.context, this.state); - this.enterRule(localContext, 834, MySqlParser.RULE_logicalOperator); + this.enterRule(localContext, 832, MySqlParser.RULE_logicalOperator); try { - this.state = 8103; + this.state = 8097; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.KW_AND: this.enterOuterAlt(localContext, 1); { - this.state = 8096; + this.state = 8090; this.match(MySqlParser.KW_AND); } break; case MySqlParser.BIT_AND_OP: this.enterOuterAlt(localContext, 2); { - this.state = 8097; + this.state = 8091; this.match(MySqlParser.BIT_AND_OP); - this.state = 8098; + this.state = 8092; this.match(MySqlParser.BIT_AND_OP); } break; case MySqlParser.KW_XOR: this.enterOuterAlt(localContext, 3); { - this.state = 8099; + this.state = 8093; this.match(MySqlParser.KW_XOR); } break; case MySqlParser.KW_OR: this.enterOuterAlt(localContext, 4); { - this.state = 8100; + this.state = 8094; this.match(MySqlParser.KW_OR); } break; case MySqlParser.BIT_OR_OP: this.enterOuterAlt(localContext, 5); { - this.state = 8101; + this.state = 8095; this.match(MySqlParser.BIT_OR_OP); - this.state = 8102; + this.state = 8096; this.match(MySqlParser.BIT_OR_OP); } break; @@ -48229,47 +48192,47 @@ export class MySqlParser extends SQLParserBase { } public bitOperator(): BitOperatorContext { let localContext = new BitOperatorContext(this.context, this.state); - this.enterRule(localContext, 836, MySqlParser.RULE_bitOperator); + this.enterRule(localContext, 834, MySqlParser.RULE_bitOperator); try { - this.state = 8112; + this.state = 8106; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case MySqlParser.LESS_SYMBOL: this.enterOuterAlt(localContext, 1); { - this.state = 8105; + this.state = 8099; this.match(MySqlParser.LESS_SYMBOL); - this.state = 8106; + this.state = 8100; this.match(MySqlParser.LESS_SYMBOL); } break; case MySqlParser.GREATER_SYMBOL: this.enterOuterAlt(localContext, 2); { - this.state = 8107; + this.state = 8101; this.match(MySqlParser.GREATER_SYMBOL); - this.state = 8108; + this.state = 8102; this.match(MySqlParser.GREATER_SYMBOL); } break; case MySqlParser.BIT_AND_OP: this.enterOuterAlt(localContext, 3); { - this.state = 8109; + this.state = 8103; this.match(MySqlParser.BIT_AND_OP); } break; case MySqlParser.BIT_XOR_OP: this.enterOuterAlt(localContext, 4); { - this.state = 8110; + this.state = 8104; this.match(MySqlParser.BIT_XOR_OP); } break; case MySqlParser.BIT_OR_OP: this.enterOuterAlt(localContext, 5); { - this.state = 8111; + this.state = 8105; this.match(MySqlParser.BIT_OR_OP); } break; @@ -48293,12 +48256,12 @@ export class MySqlParser extends SQLParserBase { } public mathOperator(): MathOperatorContext { let localContext = new MathOperatorContext(this.context, this.state); - this.enterRule(localContext, 838, MySqlParser.RULE_mathOperator); + this.enterRule(localContext, 836, MySqlParser.RULE_mathOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8114; + this.state = 8108; _la = this.tokenStream.LA(1); if(!(((((_la - 850)) & ~0x1F) === 0 && ((1 << (_la - 850)) & 127) !== 0))) { this.errorHandler.recoverInline(this); @@ -48325,28 +48288,28 @@ export class MySqlParser extends SQLParserBase { } public jsonOperator(): JsonOperatorContext { let localContext = new JsonOperatorContext(this.context, this.state); - this.enterRule(localContext, 840, MySqlParser.RULE_jsonOperator); + this.enterRule(localContext, 838, MySqlParser.RULE_jsonOperator); try { - this.state = 8121; + this.state = 8115; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1172, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1171, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8116; + this.state = 8110; this.match(MySqlParser.MINUS); - this.state = 8117; + this.state = 8111; this.match(MySqlParser.GREATER_SYMBOL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8118; + this.state = 8112; this.match(MySqlParser.MINUS); - this.state = 8119; + this.state = 8113; this.match(MySqlParser.GREATER_SYMBOL); - this.state = 8120; + this.state = 8114; this.match(MySqlParser.GREATER_SYMBOL); } break; @@ -48368,12 +48331,12 @@ export class MySqlParser extends SQLParserBase { } public charsetNameBase(): CharsetNameBaseContext { let localContext = new CharsetNameBaseContext(this.context, this.state); - this.enterRule(localContext, 842, MySqlParser.RULE_charsetNameBase); + this.enterRule(localContext, 840, MySqlParser.RULE_charsetNameBase); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8123; + this.state = 8117; _la = this.tokenStream.LA(1); if(!(_la === 228 || ((((_la - 756)) & ~0x1F) === 0 && ((1 << (_la - 756)) & 4294967295) !== 0) || ((((_la - 788)) & ~0x1F) === 0 && ((1 << (_la - 788)) & 511) !== 0))) { this.errorHandler.recoverInline(this); @@ -48400,12 +48363,12 @@ export class MySqlParser extends SQLParserBase { } public transactionLevelBase(): TransactionLevelBaseContext { let localContext = new TransactionLevelBaseContext(this.context, this.state); - this.enterRule(localContext, 844, MySqlParser.RULE_transactionLevelBase); + this.enterRule(localContext, 842, MySqlParser.RULE_transactionLevelBase); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8125; + this.state = 8119; _la = this.tokenStream.LA(1); if(!(((((_la - 809)) & ~0x1F) === 0 && ((1 << (_la - 809)) & 15) !== 0))) { this.errorHandler.recoverInline(this); @@ -48432,12 +48395,12 @@ export class MySqlParser extends SQLParserBase { } public privilegesBase(): PrivilegesBaseContext { let localContext = new PrivilegesBaseContext(this.context, this.state); - this.enterRule(localContext, 846, MySqlParser.RULE_privilegesBase); + this.enterRule(localContext, 844, MySqlParser.RULE_privilegesBase); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8127; + this.state = 8121; _la = this.tokenStream.LA(1); if(!(((((_la - 717)) & ~0x1F) === 0 && ((1 << (_la - 717)) & 68026371) !== 0) || ((((_la - 749)) & ~0x1F) === 0 && ((1 << (_la - 749)) & 11) !== 0))) { this.errorHandler.recoverInline(this); @@ -48464,12 +48427,12 @@ export class MySqlParser extends SQLParserBase { } public intervalTypeBase(): IntervalTypeBaseContext { let localContext = new IntervalTypeBaseContext(this.context, this.state); - this.enterRule(localContext, 848, MySqlParser.RULE_intervalTypeBase); + this.enterRule(localContext, 846, MySqlParser.RULE_intervalTypeBase); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8129; + this.state = 8123; _la = this.tokenStream.LA(1); if(!(((((_la - 696)) & ~0x1F) === 0 && ((1 << (_la - 696)) & 255) !== 0))) { this.errorHandler.recoverInline(this); @@ -48496,12 +48459,12 @@ export class MySqlParser extends SQLParserBase { } public dataTypeBase(): DataTypeBaseContext { let localContext = new DataTypeBaseContext(this.context, this.state); - this.enterRule(localContext, 850, MySqlParser.RULE_dataTypeBase); + this.enterRule(localContext, 848, MySqlParser.RULE_dataTypeBase); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8131; + this.state = 8125; _la = this.tokenStream.LA(1); if(!(((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 1179679) !== 0))) { this.errorHandler.recoverInline(this); @@ -48528,12 +48491,12 @@ export class MySqlParser extends SQLParserBase { } public keywordsCanBeId(): KeywordsCanBeIdContext { let localContext = new KeywordsCanBeIdContext(this.context, this.state); - this.enterRule(localContext, 852, MySqlParser.RULE_keywordsCanBeId); + this.enterRule(localContext, 850, MySqlParser.RULE_keywordsCanBeId); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8133; + this.state = 8127; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 1074302976) !== 0) || ((((_la - 36)) & ~0x1F) === 0 && ((1 << (_la - 36)) & 11014211) !== 0) || _la === 74 || _la === 95 || ((((_la - 117)) & ~0x1F) === 0 && ((1 << (_la - 117)) & 16673) !== 0) || _la === 160 || _la === 170 || ((((_la - 241)) & ~0x1F) === 0 && ((1 << (_la - 241)) & 1648345089) !== 0) || ((((_la - 277)) & ~0x1F) === 0 && ((1 << (_la - 277)) & 4160749823) !== 0) || ((((_la - 309)) & ~0x1F) === 0 && ((1 << (_la - 309)) & 4292870141) !== 0) || ((((_la - 341)) & ~0x1F) === 0 && ((1 << (_la - 341)) & 4294967287) !== 0) || ((((_la - 373)) & ~0x1F) === 0 && ((1 << (_la - 373)) & 4024434671) !== 0) || ((((_la - 406)) & ~0x1F) === 0 && ((1 << (_la - 406)) & 3747609503) !== 0) || ((((_la - 438)) & ~0x1F) === 0 && ((1 << (_la - 438)) & 4227727359) !== 0) || ((((_la - 470)) & ~0x1F) === 0 && ((1 << (_la - 470)) & 3758096239) !== 0) || ((((_la - 502)) & ~0x1F) === 0 && ((1 << (_la - 502)) & 2678062559) !== 0) || ((((_la - 534)) & ~0x1F) === 0 && ((1 << (_la - 534)) & 2682256863) !== 0) || ((((_la - 566)) & ~0x1F) === 0 && ((1 << (_la - 566)) & 4294965887) !== 0) || ((((_la - 598)) & ~0x1F) === 0 && ((1 << (_la - 598)) & 255) !== 0) || ((((_la - 633)) & ~0x1F) === 0 && ((1 << (_la - 633)) & 4294934527) !== 0) || ((((_la - 665)) & ~0x1F) === 0 && ((1 << (_la - 665)) & 2128608253) !== 0) || ((((_la - 704)) & ~0x1F) === 0 && ((1 << (_la - 704)) & 1053007341) !== 0) || ((((_la - 737)) & ~0x1F) === 0 && ((1 << (_la - 737)) & 478907) !== 0) || ((((_la - 802)) & ~0x1F) === 0 && ((1 << (_la - 802)) & 3230662657) !== 0) || _la === 838)) { this.errorHandler.recoverInline(this); @@ -48560,12 +48523,12 @@ export class MySqlParser extends SQLParserBase { } public functionNameBase(): FunctionNameBaseContext { let localContext = new FunctionNameBaseContext(this.context, this.state); - this.enterRule(localContext, 854, MySqlParser.RULE_functionNameBase); + this.enterRule(localContext, 852, MySqlParser.RULE_functionNameBase); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8135; + this.state = 8129; _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 98 || _la === 150 || _la === 152 || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 23) !== 0) || ((((_la - 253)) & ~0x1F) === 0 && ((1 << (_la - 253)) & 16375299) !== 0) || _la === 296 || _la === 435 || ((((_la - 686)) & ~0x1F) === 0 && ((1 << (_la - 686)) & 261121) !== 0) || _la === 746 || ((((_la - 813)) & ~0x1F) === 0 && ((1 << (_la - 813)) & 145190393) !== 0) || _la === 856)) { this.errorHandler.recoverInline(this); @@ -48597,17 +48560,17 @@ export class MySqlParser extends SQLParserBase { return this.queryExpressionBody_sempred(localContext as QueryExpressionBodyContext, predIndex); case 108: return this.queryItem_sempred(localContext as QueryItemContext, predIndex); + case 151: + return this.selectElement_sempred(localContext as SelectElementContext, predIndex); case 337: return this.columnName_sempred(localContext as ColumnNameContext, predIndex); case 339: return this.columnNamePathAllowEmpty_sempred(localContext as ColumnNamePathAllowEmptyContext, predIndex); - case 364: - return this.dottedIdAllowEmpty_sempred(localContext as DottedIdAllowEmptyContext, predIndex); - case 411: + case 410: return this.expression_sempred(localContext as ExpressionContext, predIndex); - case 412: + case 411: return this.predicate_sempred(localContext as PredicateContext, predIndex); - case 413: + case 412: return this.expressionAtom_sempred(localContext as ExpressionAtomContext, predIndex); } return true; @@ -48628,21 +48591,21 @@ export class MySqlParser extends SQLParserBase { } return true; } - private columnName_sempred(localContext: ColumnNameContext | null, predIndex: number): boolean { + private selectElement_sempred(localContext: SelectElementContext | null, predIndex: number): boolean { switch (predIndex) { case 3: return this.shouldMatchEmpty(); } return true; } - private columnNamePathAllowEmpty_sempred(localContext: ColumnNamePathAllowEmptyContext | null, predIndex: number): boolean { + private columnName_sempred(localContext: ColumnNameContext | null, predIndex: number): boolean { switch (predIndex) { case 4: return this.shouldMatchEmpty(); } return true; } - private dottedIdAllowEmpty_sempred(localContext: DottedIdAllowEmptyContext | null, predIndex: number): boolean { + private columnNamePathAllowEmpty_sempred(localContext: ColumnNamePathAllowEmptyContext | null, predIndex: number): boolean { switch (predIndex) { case 5: return this.shouldMatchEmpty(); @@ -48692,7 +48655,7 @@ export class MySqlParser extends SQLParserBase { } public static readonly _serializedATN: number[] = [ - 4,1,895,8138,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2,6, + 4,1,895,8132,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, @@ -48766,751 +48729,750 @@ export class MySqlParser extends SQLParserBase { 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,1,0, - 5,0,858,8,0,10,0,12,0,861,9,0,1,0,1,0,1,1,1,1,3,1,867,8,1,1,1,3, - 1,870,8,1,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,879,8,2,1,3,1,3,1,4,1, + 2,423,7,423,2,424,7,424,2,425,7,425,2,426,7,426,1,0,5,0,856,8,0, + 10,0,12,0,859,9,0,1,0,1,0,1,1,1,1,3,1,865,8,1,1,1,3,1,868,8,1,1, + 2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,877,8,2,1,3,1,3,1,4,1,4,1,4,1,4,1, 4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1, 4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1, - 4,1,4,1,4,1,4,1,4,1,4,1,4,3,4,923,8,4,1,5,1,5,1,5,1,5,1,5,1,5,1, - 5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,3,5,942,8,5,1,6,1,6,1, - 6,1,6,1,6,1,6,1,6,1,6,1,6,3,6,953,8,6,1,7,1,7,1,7,1,7,1,7,1,7,1, - 7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,3,7,969,8,7,1,8,1,8,1,8,3,8,974,8, - 8,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,3,9,986,8,9,1,10,1,10, - 1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10, - 1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10, - 1,10,1,10,1,10,1,10,1,10,3,10,1021,8,10,1,11,1,11,1,11,1,11,1,11, - 1,11,1,11,1,11,3,11,1031,8,11,1,12,1,12,1,12,3,12,1036,8,12,1,12, - 1,12,5,12,1040,8,12,10,12,12,12,1043,9,12,1,13,1,13,3,13,1047,8, - 13,1,13,1,13,3,13,1051,8,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,3, - 13,1060,8,13,1,13,3,13,1063,8,13,1,13,3,13,1066,8,13,1,13,1,13,3, - 13,1070,8,13,1,13,1,13,1,13,1,14,1,14,3,14,1077,8,14,1,14,3,14,1080, - 8,14,1,14,1,14,1,14,3,14,1085,8,14,1,14,1,14,1,14,1,14,5,14,1091, - 8,14,10,14,12,14,1094,9,14,1,14,1,14,3,14,1098,8,14,1,14,1,14,1, - 14,3,14,1103,8,14,1,14,5,14,1106,8,14,10,14,12,14,1109,9,14,1,15, - 1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,3,15,1120,8,15,1,15,3,15, - 1123,8,15,1,15,1,15,3,15,1127,8,15,1,15,3,15,1130,8,15,1,15,1,15, - 3,15,1134,8,15,1,15,3,15,1137,8,15,1,15,1,15,3,15,1141,8,15,1,15, - 3,15,1144,8,15,1,15,3,15,1147,8,15,1,15,1,15,3,15,1151,8,15,1,15, - 3,15,1154,8,15,1,15,1,15,3,15,1158,8,15,1,15,1,15,1,16,1,16,3,16, - 1164,8,16,1,16,1,16,3,16,1168,8,16,1,16,1,16,1,16,3,16,1173,8,16, - 1,16,1,16,5,16,1177,8,16,10,16,12,16,1180,9,16,1,16,1,16,5,16,1184, - 8,16,10,16,12,16,1187,9,16,1,16,1,16,1,17,1,17,3,17,1193,8,17,1, - 17,3,17,1196,8,17,1,17,1,17,3,17,1200,8,17,1,17,1,17,1,17,3,17,1205, - 8,17,1,17,1,17,5,17,1209,8,17,10,17,12,17,1212,9,17,1,17,1,17,1, - 17,1,17,5,17,1218,8,17,10,17,12,17,1221,9,17,1,17,1,17,3,17,1225, - 8,17,1,18,1,18,3,18,1229,8,18,1,18,1,18,3,18,1233,8,18,1,18,1,18, - 1,18,1,18,1,18,1,18,1,19,1,19,1,19,3,19,1244,8,19,1,19,1,19,1,20, - 1,20,1,20,1,20,1,20,1,20,1,20,1,20,1,20,1,20,1,20,1,20,5,20,1260, - 8,20,10,20,12,20,1263,9,20,1,20,1,20,1,21,1,21,3,21,1269,8,21,1, - 21,1,21,3,21,1273,8,21,1,21,1,21,3,21,1277,8,21,1,21,1,21,3,21,1281, - 8,21,1,21,5,21,1284,8,21,10,21,12,21,1287,9,21,3,21,1289,8,21,1, - 21,3,21,1292,8,21,1,21,3,21,1295,8,21,1,21,3,21,1298,8,21,1,21,1, - 21,1,21,1,21,3,21,1304,8,21,1,21,1,21,3,21,1308,8,21,1,21,1,21,1, - 21,1,21,1,21,1,21,1,21,1,21,3,21,1318,8,21,1,21,1,21,3,21,1322,8, - 21,1,21,1,21,3,21,1326,8,21,1,21,1,21,1,21,1,21,3,21,1332,8,21,1, - 21,5,21,1335,8,21,10,21,12,21,1338,9,21,3,21,1340,8,21,1,21,3,21, - 1343,8,21,3,21,1345,8,21,1,22,1,22,3,22,1349,8,22,1,22,1,22,1,22, - 1,22,1,22,3,22,1356,8,22,1,22,1,22,3,22,1360,8,22,1,22,3,22,1363, - 8,22,1,22,1,22,1,22,3,22,1368,8,22,1,22,1,22,3,22,1372,8,22,1,22, - 3,22,1375,8,22,1,22,1,22,3,22,1379,8,22,1,22,3,22,1382,8,22,1,23, - 1,23,3,23,1386,8,23,1,23,1,23,1,23,1,23,1,23,1,23,1,23,1,23,1,23, - 1,23,1,23,3,23,1399,8,23,1,23,3,23,1402,8,23,1,23,1,23,3,23,1406, - 8,23,1,23,3,23,1409,8,23,1,23,1,23,3,23,1413,8,23,1,23,3,23,1416, - 8,23,1,23,1,23,3,23,1420,8,23,1,23,3,23,1423,8,23,1,23,1,23,3,23, - 1427,8,23,1,23,3,23,1430,8,23,1,23,3,23,1433,8,23,1,23,1,23,3,23, - 1437,8,23,1,23,3,23,1440,8,23,1,23,1,23,3,23,1444,8,23,1,23,1,23, - 1,24,1,24,3,24,1450,8,24,1,24,3,24,1453,8,24,1,24,1,24,3,24,1457, - 8,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,3,24,1469, - 8,24,1,24,1,24,1,25,1,25,3,25,1475,8,25,1,25,1,25,1,26,1,26,1,26, - 1,26,1,26,5,26,1484,8,26,10,26,12,26,1487,9,26,1,26,1,26,3,26,1491, - 8,26,1,26,1,26,1,26,1,26,1,26,1,26,3,26,1499,8,26,1,27,1,27,3,27, - 1503,8,27,1,27,1,27,1,27,3,27,1508,8,27,1,27,3,27,1511,8,27,1,27, - 1,27,1,27,3,27,1516,8,27,1,27,1,27,1,27,1,27,1,27,1,27,5,27,1524, - 8,27,10,27,12,27,1527,9,27,1,27,1,27,3,27,1531,8,27,1,27,1,27,1, - 27,3,27,1536,8,27,1,27,1,27,1,27,1,27,3,27,1542,8,27,1,27,1,27,1, - 27,3,27,1547,8,27,1,27,1,27,3,27,1551,8,27,3,27,1553,8,27,1,28,3, - 28,1556,8,28,1,28,1,28,3,28,1560,8,28,1,28,1,28,3,28,1564,8,28,1, - 28,3,28,1567,8,28,1,28,1,28,3,28,1571,8,28,1,28,1,28,3,28,1575,8, - 28,1,28,1,28,3,28,1579,8,28,1,28,1,28,1,28,1,28,3,28,1585,8,28,1, - 28,3,28,1588,8,28,1,29,1,29,1,29,1,29,1,29,3,29,1595,8,29,1,30,1, - 30,1,30,3,30,1600,8,30,1,31,1,31,1,31,1,31,3,31,1606,8,31,1,32,1, - 32,1,32,5,32,1611,8,32,10,32,12,32,1614,9,32,1,32,1,32,1,32,3,32, - 1619,8,32,1,32,1,32,1,32,1,32,5,32,1625,8,32,10,32,12,32,1628,9, - 32,3,32,1630,8,32,1,32,1,32,1,32,5,32,1635,8,32,10,32,12,32,1638, - 9,32,3,32,1640,8,32,3,32,1642,8,32,1,33,1,33,1,33,1,33,3,33,1648, - 8,33,1,34,1,34,1,34,1,34,3,34,1654,8,34,1,34,1,34,1,35,1,35,1,35, - 1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,3,35,1671,8,35, - 1,36,1,36,1,36,1,36,1,36,3,36,1678,8,36,1,37,1,37,1,37,1,38,1,38, - 3,38,1685,8,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38, - 3,38,1697,8,38,1,38,1,38,1,38,3,38,1702,8,38,1,38,3,38,1705,8,38, - 1,39,3,39,1708,8,39,1,39,1,39,1,39,1,40,1,40,1,40,1,41,1,41,1,41, - 1,41,1,41,3,41,1721,8,41,1,41,1,41,1,41,1,41,1,41,1,41,1,41,1,41, - 1,41,1,41,1,41,3,41,1734,8,41,1,41,1,41,1,41,3,41,1739,8,41,1,42, - 1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42, - 3,42,1755,8,42,1,43,1,43,1,43,1,43,5,43,1761,8,43,10,43,12,43,1764, - 9,43,1,43,1,43,1,44,1,44,1,44,1,44,1,44,3,44,1773,8,44,1,44,3,44, - 1776,8,44,1,44,1,44,5,44,1780,8,44,10,44,12,44,1783,9,44,1,44,1, - 44,3,44,1787,8,44,1,44,3,44,1790,8,44,1,44,1,44,5,44,1794,8,44,10, - 44,12,44,1797,9,44,1,44,3,44,1800,8,44,1,44,1,44,1,44,3,44,1805, - 8,44,1,44,1,44,5,44,1809,8,44,10,44,12,44,1812,9,44,1,44,3,44,1815, - 8,44,1,44,1,44,3,44,1819,8,44,1,44,3,44,1822,8,44,1,44,3,44,1825, - 8,44,1,44,1,44,5,44,1829,8,44,10,44,12,44,1832,9,44,1,44,3,44,1835, - 8,44,1,44,1,44,1,44,3,44,1840,8,44,1,44,1,44,1,44,1,44,1,44,1,44, - 1,44,1,44,1,44,3,44,1851,8,44,1,45,3,45,1854,8,45,1,45,1,45,1,45, - 1,45,1,45,3,45,1861,8,45,1,45,3,45,1864,8,45,1,46,1,46,3,46,1868, - 8,46,1,47,1,47,5,47,1872,8,47,10,47,12,47,1875,9,47,1,48,1,48,1, - 48,1,48,1,48,1,48,1,48,1,48,1,48,3,48,1886,8,48,1,48,3,48,1889,8, - 48,1,48,1,48,1,48,3,48,1894,8,48,1,48,1,48,1,48,1,48,1,48,1,48,1, - 48,1,48,1,48,1,48,1,48,3,48,1907,8,48,1,48,1,48,1,48,1,48,1,48,3, - 48,1914,8,48,1,48,1,48,1,48,1,48,3,48,1920,8,48,1,49,1,49,1,49,3, - 49,1925,8,49,1,49,1,49,3,49,1929,8,49,1,49,3,49,1932,8,49,1,50,1, - 50,1,50,1,50,1,50,1,50,3,50,1940,8,50,1,50,1,50,1,50,1,50,1,50,1, - 50,3,50,1948,8,50,3,50,1950,8,50,1,51,1,51,1,51,1,51,1,51,1,51,1, - 51,1,51,3,51,1960,8,51,1,52,1,52,3,52,1964,8,52,1,52,3,52,1967,8, - 52,1,52,1,52,3,52,1971,8,52,1,52,1,52,1,52,3,52,1976,8,52,1,52,1, - 52,1,52,3,52,1981,8,52,1,52,1,52,1,52,3,52,1986,8,52,1,52,1,52,3, - 52,1990,8,52,1,52,1,52,3,52,1994,8,52,1,52,1,52,3,52,1998,8,52,1, - 52,1,52,3,52,2002,8,52,1,52,1,52,3,52,2006,8,52,1,52,1,52,3,52,2010, - 8,52,1,52,1,52,1,52,3,52,2015,8,52,1,52,1,52,1,52,3,52,2020,8,52, - 1,52,1,52,1,52,3,52,2025,8,52,1,52,1,52,1,52,1,52,3,52,2031,8,52, - 1,52,1,52,1,52,3,52,2036,8,52,1,52,1,52,1,52,3,52,2041,8,52,1,52, - 1,52,1,52,3,52,2046,8,52,1,52,1,52,1,52,3,52,2051,8,52,1,52,1,52, - 1,52,3,52,2056,8,52,1,52,1,52,1,52,1,52,3,52,2062,8,52,1,52,1,52, - 1,52,3,52,2067,8,52,1,52,1,52,1,52,3,52,2072,8,52,1,52,1,52,1,52, - 3,52,2077,8,52,1,52,1,52,1,52,3,52,2082,8,52,1,52,1,52,1,52,3,52, - 2087,8,52,1,52,1,52,1,52,3,52,2092,8,52,1,52,1,52,1,52,3,52,2097, - 8,52,1,52,1,52,1,52,1,52,1,52,3,52,2104,8,52,1,52,1,52,1,52,3,52, - 2109,8,52,1,52,1,52,1,52,3,52,2114,8,52,1,52,1,52,1,52,3,52,2119, - 8,52,1,52,1,52,3,52,2123,8,52,1,52,1,52,1,52,3,52,2128,8,52,1,52, - 1,52,1,52,1,52,1,52,1,52,3,52,2136,8,52,1,52,1,52,1,52,3,52,2141, - 8,52,1,52,1,52,1,52,1,52,3,52,2147,8,52,1,53,1,53,1,54,1,54,1,54, - 1,55,1,55,1,55,1,55,1,55,3,55,2159,8,55,1,55,1,55,1,55,1,55,1,55, - 3,55,2166,8,55,3,55,2168,8,55,1,55,1,55,1,55,1,55,5,55,2174,8,55, - 10,55,12,55,2177,9,55,1,55,1,55,3,55,2181,8,55,1,56,3,56,2184,8, - 56,1,56,1,56,1,56,1,56,1,56,1,56,3,56,2192,8,56,1,56,1,56,1,56,1, - 56,3,56,2198,8,56,1,56,1,56,3,56,2202,8,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,2215,8,56,1,56,1,56,1,56,1, - 56,1,56,1,56,1,56,1,56,1,56,1,56,3,56,2227,8,56,3,56,2229,8,56,1, - 57,3,57,2232,8,57,1,57,1,57,1,57,1,57,1,57,1,57,3,57,2240,8,57,1, - 57,1,57,1,57,1,57,3,57,2246,8,57,1,57,1,57,1,57,1,57,3,57,2252,8, - 57,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,5,58,2263,8,58,10, - 58,12,58,2266,9,58,1,58,1,58,5,58,2270,8,58,10,58,12,58,2273,9,58, - 1,58,1,58,1,58,1,58,5,58,2279,8,58,10,58,12,58,2282,9,58,1,58,1, - 58,3,58,2286,8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,5,58,2295,8, - 58,10,58,12,58,2298,9,58,1,58,1,58,1,58,1,58,5,58,2304,8,58,10,58, - 12,58,2307,9,58,1,58,1,58,3,58,2311,8,58,1,58,1,58,1,58,1,58,1,58, - 1,58,1,58,1,58,5,58,2321,8,58,10,58,12,58,2324,9,58,1,58,1,58,5, - 58,2328,8,58,10,58,12,58,2331,9,58,1,58,1,58,1,58,1,58,5,58,2337, - 8,58,10,58,12,58,2340,9,58,1,58,1,58,3,58,2344,8,58,1,58,1,58,1, - 58,1,58,1,58,1,58,1,58,1,58,5,58,2354,8,58,10,58,12,58,2357,9,58, - 1,58,1,58,5,58,2361,8,58,10,58,12,58,2364,9,58,1,58,1,58,1,58,1, - 58,5,58,2370,8,58,10,58,12,58,2373,9,58,1,58,1,58,3,58,2377,8,58, - 1,58,1,58,1,58,5,58,2382,8,58,10,58,12,58,2385,9,58,1,58,1,58,1, - 58,1,58,5,58,2391,8,58,10,58,12,58,2394,9,58,1,58,1,58,3,58,2398, - 8,58,3,58,2400,8,58,1,59,1,59,1,59,3,59,2405,8,59,1,60,1,60,1,60, - 1,60,4,60,2411,8,60,11,60,12,60,2412,1,60,1,60,1,61,1,61,1,61,5, - 61,2420,8,61,10,61,12,61,2423,9,61,1,62,3,62,2426,8,62,1,62,3,62, - 2429,8,62,1,62,1,62,3,62,2433,8,62,1,62,1,62,1,62,3,62,2438,8,62, - 1,62,1,62,1,62,1,62,3,62,2444,8,62,1,62,1,62,1,62,1,62,3,62,2450, - 8,62,1,62,1,62,1,62,3,62,2455,8,62,1,62,1,62,1,62,3,62,2460,8,62, - 1,62,1,62,1,62,3,62,2465,8,62,1,62,1,62,1,62,3,62,2470,8,62,1,62, - 3,62,2473,8,62,1,63,1,63,1,63,3,63,2478,8,63,1,63,4,63,2481,8,63, - 11,63,12,63,2482,1,63,1,63,1,63,1,63,1,63,1,63,1,63,1,63,3,63,2493, - 8,63,1,64,1,64,3,64,2497,8,64,1,64,1,64,1,64,1,64,1,64,3,64,2504, - 8,64,1,64,1,64,1,64,3,64,2509,8,64,1,64,3,64,2512,8,64,1,64,1,64, - 1,64,3,64,2517,8,64,1,64,3,64,2520,8,64,1,64,1,64,3,64,2524,8,64, - 1,64,1,64,3,64,2528,8,64,1,65,1,65,1,65,1,65,5,65,2534,8,65,10,65, - 12,65,2537,9,65,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,67,1,67,1,67, - 1,67,1,67,1,67,1,67,1,67,1,67,3,67,2555,8,67,1,67,3,67,2558,8,67, - 1,67,3,67,2561,8,67,1,67,1,67,3,67,2565,8,67,1,67,1,67,1,68,1,68, - 1,68,1,68,5,68,2573,8,68,10,68,12,68,2576,9,68,1,69,1,69,1,69,1, - 69,1,69,1,69,1,69,1,69,5,69,2586,8,69,10,69,12,69,2589,9,69,1,69, - 1,69,1,70,1,70,1,70,1,70,1,70,1,70,5,70,2599,8,70,10,70,12,70,2602, - 9,70,3,70,2604,8,70,1,70,1,70,5,70,2608,8,70,10,70,12,70,2611,9, - 70,3,70,2613,8,70,1,71,1,71,3,71,2617,8,71,1,71,1,71,1,71,1,71,1, - 71,1,71,1,71,3,71,2626,8,71,1,71,3,71,2629,8,71,1,71,3,71,2632,8, - 71,1,71,1,71,1,71,3,71,2637,8,71,1,71,1,71,3,71,2641,8,71,1,71,3, - 71,2644,8,71,1,71,1,71,3,71,2648,8,71,1,71,1,71,3,71,2652,8,71,1, - 71,3,71,2655,8,71,1,71,1,71,3,71,2659,8,71,1,71,3,71,2662,8,71,1, - 71,1,71,3,71,2666,8,71,1,71,3,71,2669,8,71,1,72,1,72,1,72,1,72,3, - 72,2675,8,72,1,72,3,72,2678,8,72,1,72,1,72,1,72,3,72,2683,8,72,1, - 72,1,72,1,72,1,72,1,72,1,72,3,72,2691,8,72,1,72,1,72,1,72,1,72,3, - 72,2697,8,72,1,72,1,72,3,72,2701,8,72,1,73,1,73,3,73,2705,8,73,1, - 73,5,73,2708,8,73,10,73,12,73,2711,9,73,1,73,1,73,3,73,2715,8,73, - 1,73,1,73,1,73,1,73,1,73,3,73,2722,8,73,1,73,1,73,3,73,2726,8,73, - 1,73,1,73,1,73,1,73,1,73,1,73,1,73,5,73,2735,8,73,10,73,12,73,2738, - 9,73,1,73,1,73,1,73,1,73,1,73,3,73,2745,8,73,1,73,3,73,2748,8,73, - 1,73,1,73,5,73,2752,8,73,10,73,12,73,2755,9,73,1,73,1,73,1,73,3, - 73,2760,8,73,1,73,3,73,2763,8,73,1,73,1,73,5,73,2767,8,73,10,73, - 12,73,2770,9,73,1,73,1,73,1,73,3,73,2775,8,73,3,73,2777,8,73,1,73, - 1,73,1,73,3,73,2782,8,73,1,73,1,73,5,73,2786,8,73,10,73,12,73,2789, - 9,73,1,73,1,73,1,73,3,73,2794,8,73,3,73,2796,8,73,1,73,1,73,3,73, - 2800,8,73,1,73,3,73,2803,8,73,1,73,3,73,2806,8,73,1,73,1,73,5,73, - 2810,8,73,10,73,12,73,2813,9,73,1,73,1,73,1,73,3,73,2818,8,73,3, - 73,2820,8,73,1,73,1,73,1,73,3,73,2825,8,73,1,73,1,73,1,73,1,73,1, - 73,3,73,2832,8,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2841,8, - 73,1,73,3,73,2844,8,73,1,73,1,73,3,73,2848,8,73,1,73,1,73,1,73,3, - 73,2853,8,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2863,8, - 73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2872,8,73,1,73,1,73,1, - 73,1,73,1,73,1,73,3,73,2880,8,73,1,73,3,73,2883,8,73,1,73,1,73,1, - 73,1,73,1,73,1,73,3,73,2891,8,73,1,73,3,73,2894,8,73,1,73,1,73,1, - 73,1,73,1,73,3,73,2901,8,73,1,73,1,73,1,73,3,73,2906,8,73,1,73,1, - 73,1,73,1,73,1,73,1,73,3,73,2914,8,73,1,73,1,73,1,73,1,73,1,73,1, - 73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2930,8,73,1,73,1, - 73,1,73,3,73,2935,8,73,1,73,1,73,1,73,1,73,1,73,3,73,2942,8,73,1, - 73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1, - 73,1,73,1,73,1,73,3,73,2961,8,73,1,73,1,73,1,73,1,73,3,73,2967,8, - 73,1,74,1,74,1,74,1,74,1,74,1,74,5,74,2975,8,74,10,74,12,74,2978, - 9,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,3,74,2989,8,74, - 1,74,1,74,1,74,1,74,1,74,3,74,2996,8,74,1,74,1,74,1,74,1,74,1,74, - 3,74,3003,8,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74, - 1,74,5,74,3016,8,74,10,74,12,74,3019,9,74,1,74,1,74,1,74,1,74,1, - 74,1,74,1,74,1,74,1,74,1,74,3,74,3031,8,74,1,74,1,74,1,74,1,74,3, - 74,3037,8,74,1,74,1,74,1,74,1,74,3,74,3043,8,74,1,74,1,74,1,74,1, - 74,3,74,3049,8,74,1,74,1,74,1,74,1,74,3,74,3055,8,74,1,74,1,74,1, - 74,1,74,3,74,3061,8,74,1,74,1,74,1,74,1,74,3,74,3067,8,74,1,75,1, - 75,1,75,3,75,3072,8,75,1,75,1,75,1,76,1,76,1,76,3,76,3079,8,76,1, - 76,1,76,1,77,1,77,1,77,3,77,3086,8,77,1,77,1,77,1,77,1,77,1,77,3, - 77,3093,8,77,1,77,1,77,1,77,3,77,3098,8,77,1,77,5,77,3101,8,77,10, - 77,12,77,3104,9,77,1,78,1,78,1,78,1,78,1,78,1,78,3,78,3112,8,78, - 1,78,1,78,1,79,1,79,1,79,3,79,3119,8,79,1,79,1,79,1,80,1,80,1,80, - 3,80,3126,8,80,1,80,1,80,1,81,1,81,1,81,3,81,3133,8,81,1,81,1,81, - 1,82,1,82,1,82,1,82,1,82,3,82,3142,8,82,1,82,1,82,1,83,1,83,3,83, - 3148,8,83,1,83,1,83,3,83,3152,8,83,1,83,1,83,3,83,3156,8,83,1,84, - 1,84,3,84,3160,8,84,1,84,1,84,1,84,1,84,3,84,3166,8,84,1,84,3,84, - 3169,8,84,1,85,1,85,1,85,3,85,3174,8,85,1,85,1,85,1,86,1,86,1,86, - 3,86,3181,8,86,1,86,1,86,1,86,5,86,3186,8,86,10,86,12,86,3189,9, - 86,1,86,3,86,3192,8,86,1,87,1,87,1,87,3,87,3197,8,87,1,87,1,87,1, - 88,1,88,1,88,1,88,1,88,1,88,3,88,3207,8,88,1,88,1,88,1,88,1,88,5, - 88,3213,8,88,10,88,12,88,3216,9,88,1,88,1,88,1,88,3,88,3221,8,88, - 1,89,1,89,1,89,1,89,1,89,5,89,3228,8,89,10,89,12,89,3231,9,89,1, - 90,1,90,1,90,1,90,1,91,1,91,3,91,3239,8,91,1,91,1,91,1,92,1,92,1, - 92,1,92,1,92,3,92,3248,8,92,1,92,3,92,3251,8,92,1,93,1,93,3,93,3255, - 8,93,1,94,1,94,1,94,1,95,1,95,1,95,1,95,3,95,3264,8,95,1,96,1,96, - 3,96,3268,8,96,1,96,3,96,3271,8,96,1,96,3,96,3274,8,96,1,96,1,96, - 1,96,1,96,3,96,3280,8,96,1,96,3,96,3283,8,96,1,96,3,96,3286,8,96, - 1,96,1,96,3,96,3290,8,96,1,96,3,96,3293,8,96,1,96,3,96,3296,8,96, - 1,96,3,96,3299,8,96,1,96,1,96,1,96,1,96,1,96,1,96,1,96,5,96,3308, - 8,96,10,96,12,96,3311,9,96,3,96,3313,8,96,1,97,1,97,1,97,3,97,3318, - 8,97,1,98,1,98,1,98,1,98,3,98,3324,8,98,1,99,1,99,1,99,3,99,3329, - 8,99,1,99,4,99,3332,8,99,11,99,12,99,3333,1,100,3,100,3337,8,100, - 1,100,1,100,3,100,3341,8,100,1,101,1,101,1,101,3,101,3346,8,101, - 1,101,3,101,3349,8,101,1,101,1,101,1,101,3,101,3354,8,101,1,101, - 1,101,1,101,1,101,1,101,1,101,1,101,1,101,3,101,3364,8,101,1,101, - 1,101,1,101,3,101,3369,8,101,1,101,1,101,4,101,3373,8,101,11,101, - 12,101,3374,3,101,3377,8,101,1,101,1,101,4,101,3381,8,101,11,101, - 12,101,3382,3,101,3385,8,101,1,101,1,101,1,101,1,101,3,101,3391, - 8,101,1,101,1,101,1,101,1,101,5,101,3397,8,101,10,101,12,101,3400, - 9,101,1,101,1,101,3,101,3404,8,101,1,101,1,101,1,101,1,101,5,101, - 3410,8,101,10,101,12,101,3413,9,101,3,101,3415,8,101,1,102,1,102, - 1,102,3,102,3420,8,102,1,102,3,102,3423,8,102,1,102,1,102,1,102, - 3,102,3428,8,102,1,102,1,102,1,102,1,102,1,102,1,102,3,102,3436, - 8,102,1,102,1,102,1,102,1,102,3,102,3442,8,102,1,102,1,102,3,102, - 3446,8,102,3,102,3448,8,102,1,102,1,102,1,102,1,102,3,102,3454,8, - 102,1,102,1,102,1,102,1,102,5,102,3460,8,102,10,102,12,102,3463, - 9,102,1,102,1,102,3,102,3467,8,102,1,102,1,102,1,102,1,102,5,102, - 3473,8,102,10,102,12,102,3476,9,102,3,102,3478,8,102,1,103,1,103, - 1,103,3,103,3483,8,103,1,103,3,103,3486,8,103,1,103,1,103,3,103, - 3490,8,103,1,103,3,103,3493,8,103,1,103,3,103,3496,8,103,1,104,1, - 104,3,104,3500,8,104,1,104,3,104,3503,8,104,1,104,1,104,1,104,1, - 104,1,104,1,104,3,104,3511,8,104,1,104,1,104,1,104,1,104,3,104,3517, - 8,104,1,104,1,104,3,104,3521,8,104,1,105,1,105,5,105,3525,8,105, - 10,105,12,105,3528,9,105,1,105,1,105,3,105,3532,8,105,1,105,1,105, - 3,105,3536,8,105,3,105,3538,8,105,1,105,1,105,5,105,3542,8,105,10, - 105,12,105,3545,9,105,1,105,3,105,3548,8,105,1,105,3,105,3551,8, - 105,1,105,3,105,3554,8,105,1,105,3,105,3557,8,105,1,105,1,105,5, - 105,3561,8,105,10,105,12,105,3564,9,105,1,105,1,105,3,105,3568,8, - 105,1,105,3,105,3571,8,105,1,105,3,105,3574,8,105,1,105,3,105,3577, - 8,105,1,105,3,105,3580,8,105,3,105,3582,8,105,1,106,3,106,3585,8, - 106,1,106,1,106,3,106,3589,8,106,1,106,3,106,3592,8,106,1,106,3, - 106,3595,8,106,1,107,1,107,1,107,1,107,1,107,1,107,3,107,3603,8, - 107,1,107,1,107,1,107,1,107,3,107,3609,8,107,1,107,5,107,3612,8, - 107,10,107,12,107,3615,9,107,1,108,1,108,1,108,1,108,1,108,1,108, - 3,108,3623,8,108,1,108,5,108,3626,8,108,10,108,12,108,3629,9,108, - 1,109,1,109,1,109,1,109,3,109,3635,8,109,1,109,3,109,3638,8,109, - 1,109,3,109,3641,8,109,1,109,1,109,3,109,3645,8,109,1,110,1,110, - 3,110,3649,8,110,1,111,1,111,1,111,1,111,3,111,3655,8,111,1,111, - 1,111,3,111,3659,8,111,1,112,1,112,1,112,5,112,3664,8,112,10,112, - 12,112,3667,9,112,1,112,3,112,3670,8,112,1,112,3,112,3673,8,112, - 1,112,3,112,3676,8,112,1,113,1,113,1,113,3,113,3681,8,113,1,114, - 1,114,1,114,1,114,1,114,3,114,3688,8,114,1,115,1,115,1,115,1,115, - 1,115,1,115,5,115,3696,8,115,10,115,12,115,3699,9,115,1,116,1,116, - 1,116,1,116,5,116,3705,8,116,10,116,12,116,3708,9,116,1,117,1,117, - 1,117,1,117,1,118,1,118,3,118,3716,8,118,1,119,1,119,1,119,1,119, - 1,119,1,119,5,119,3724,8,119,10,119,12,119,3727,9,119,3,119,3729, - 8,119,1,119,1,119,3,119,3733,8,119,1,119,1,119,1,119,1,119,3,119, - 3739,8,119,1,120,1,120,3,120,3743,8,120,1,120,3,120,3746,8,120,1, - 120,3,120,3749,8,120,1,120,1,120,1,120,3,120,3754,8,120,1,120,3, - 120,3757,8,120,1,120,1,120,1,120,1,120,1,120,3,120,3764,8,120,1, - 120,1,120,3,120,3768,8,120,1,120,3,120,3771,8,120,1,120,1,120,3, - 120,3775,8,120,1,121,1,121,3,121,3779,8,121,1,121,3,121,3782,8,121, - 1,121,3,121,3785,8,121,1,121,1,121,1,121,3,121,3790,8,121,1,121, - 1,121,1,121,1,121,3,121,3796,8,121,5,121,3798,8,121,10,121,12,121, - 3801,9,121,1,121,1,121,1,121,1,121,1,121,1,121,1,121,3,121,3810, - 8,121,1,121,1,121,1,121,1,121,3,121,3816,8,121,5,121,3818,8,121, - 10,121,12,121,3821,9,121,1,121,1,121,1,121,3,121,3826,8,121,1,121, - 1,121,3,121,3830,8,121,1,122,1,122,1,122,1,122,3,122,3836,8,122, - 1,122,3,122,3839,8,122,1,123,1,123,1,123,1,123,1,123,1,123,1,123, - 1,123,1,123,1,123,3,123,3851,8,123,1,123,1,123,3,123,3855,8,123, - 1,123,1,123,3,123,3859,8,123,1,124,1,124,1,124,1,124,1,124,1,124, - 3,124,3867,8,124,1,124,1,124,3,124,3871,8,124,1,125,1,125,1,125, - 1,125,1,126,1,126,1,126,1,126,1,126,1,126,5,126,3883,8,126,10,126, - 12,126,3886,9,126,1,127,1,127,3,127,3890,8,127,1,127,3,127,3893, - 8,127,1,127,1,127,3,127,3897,8,127,1,127,3,127,3900,8,127,1,127, - 1,127,1,127,1,127,5,127,3906,8,127,10,127,12,127,3909,9,127,1,127, - 1,127,3,127,3913,8,127,1,127,3,127,3916,8,127,1,127,3,127,3919,8, - 127,1,128,1,128,3,128,3923,8,128,1,128,3,128,3926,8,128,1,128,1, - 128,1,128,1,128,1,128,5,128,3933,8,128,10,128,12,128,3936,9,128, - 1,128,1,128,3,128,3940,8,128,1,129,1,129,1,129,1,129,1,129,5,129, - 3947,8,129,10,129,12,129,3950,9,129,1,130,1,130,3,130,3954,8,130, - 1,131,1,131,1,131,5,131,3959,8,131,10,131,12,131,3962,9,131,1,132, - 1,132,5,132,3966,8,132,10,132,12,132,3969,9,132,1,132,1,132,1,132, - 5,132,3974,8,132,10,132,12,132,3977,9,132,1,132,1,132,1,132,3,132, - 3982,8,132,1,133,1,133,1,133,1,133,1,133,1,133,3,133,3990,8,133, - 1,133,3,133,3993,8,133,1,133,3,133,3996,8,133,1,133,1,133,1,133, - 5,133,4001,8,133,10,133,12,133,4004,9,133,3,133,4006,8,133,1,133, - 3,133,4009,8,133,1,133,1,133,3,133,4013,8,133,1,133,1,133,3,133, - 4017,8,133,1,133,1,133,1,133,1,133,3,133,4023,8,133,1,134,1,134, - 1,134,1,134,1,134,3,134,4030,8,134,1,135,1,135,1,135,1,135,1,136, - 1,136,1,136,1,136,3,136,4040,8,136,1,136,1,136,3,136,4044,8,136, - 1,136,1,136,1,137,1,137,1,137,1,137,1,137,3,137,4053,8,137,1,138, - 3,138,4056,8,138,1,138,1,138,3,138,4060,8,138,1,138,1,138,5,138, - 4064,8,138,10,138,12,138,4067,9,138,1,138,1,138,1,138,5,138,4072, - 8,138,10,138,12,138,4075,9,138,1,138,1,138,3,138,4079,8,138,1,138, - 1,138,3,138,4083,8,138,1,138,1,138,5,138,4087,8,138,10,138,12,138, - 4090,9,138,1,138,1,138,1,138,3,138,4095,8,138,1,138,3,138,4098,8, - 138,3,138,4100,8,138,1,138,1,138,3,138,4104,8,138,1,139,1,139,1, - 139,3,139,4109,8,139,1,139,1,139,1,139,1,139,1,139,3,139,4116,8, - 139,1,140,1,140,1,140,1,140,1,140,1,140,1,140,1,140,3,140,4126,8, - 140,1,141,1,141,5,141,4130,8,141,10,141,12,141,4133,9,141,1,141, - 1,141,3,141,4137,8,141,1,141,1,141,3,141,4141,8,141,1,141,3,141, - 4144,8,141,1,141,3,141,4147,8,141,1,141,3,141,4150,8,141,1,141,3, - 141,4153,8,141,1,141,3,141,4156,8,141,1,141,3,141,4159,8,141,1,142, - 1,142,3,142,4163,8,142,1,142,1,142,3,142,4167,8,142,1,143,1,143, - 1,143,1,143,1,143,1,143,3,143,4175,8,143,1,143,1,143,3,143,4179, - 8,143,1,143,3,143,4182,8,143,3,143,4184,8,143,1,144,1,144,1,144, - 1,144,1,144,1,144,1,144,1,144,1,144,1,144,1,144,3,144,4197,8,144, - 1,144,3,144,4200,8,144,1,145,1,145,1,145,5,145,4205,8,145,10,145, - 12,145,4208,9,145,1,146,1,146,1,146,1,146,1,146,1,146,1,146,3,146, - 4217,8,146,1,146,3,146,4220,8,146,1,146,1,146,1,146,3,146,4225,8, - 146,3,146,4227,8,146,1,146,1,146,3,146,4231,8,146,1,146,1,146,1, - 146,1,146,1,146,1,146,3,146,4239,8,146,1,147,1,147,1,147,1,147,3, - 147,4245,8,147,1,147,1,147,1,147,1,148,1,148,1,148,1,148,3,148,4254, - 8,148,1,148,1,148,1,148,1,149,1,149,1,149,1,149,1,149,1,149,1,149, - 1,149,3,149,4267,8,149,1,150,1,150,3,150,4271,8,150,1,150,1,150, - 5,150,4275,8,150,10,150,12,150,4278,9,150,1,151,1,151,1,151,3,151, - 4283,8,151,1,151,3,151,4286,8,151,1,151,1,151,3,151,4290,8,151,1, - 151,3,151,4293,8,151,3,151,4295,8,151,1,152,1,152,1,152,1,152,1, - 153,1,153,1,154,1,154,1,155,1,155,3,155,4307,8,155,1,155,1,155,3, - 155,4311,8,155,1,156,1,156,1,156,1,156,5,156,4317,8,156,10,156,12, - 156,4320,9,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1, - 156,3,156,4331,8,156,1,156,1,156,4,156,4335,8,156,11,156,12,156, - 4336,3,156,4339,8,156,1,156,1,156,4,156,4343,8,156,11,156,12,156, - 4344,3,156,4347,8,156,3,156,4349,8,156,1,157,1,157,1,157,1,157,3, - 157,4355,8,157,1,157,1,157,1,157,1,157,1,157,1,157,3,157,4363,8, - 157,1,158,1,158,1,158,1,158,1,158,1,158,3,158,4371,8,158,1,159,1, - 159,3,159,4375,8,159,1,159,1,159,1,159,3,159,4380,8,159,3,159,4382, - 8,159,1,160,1,160,1,160,1,160,1,160,5,160,4389,8,160,10,160,12,160, - 4392,9,160,1,160,1,160,3,160,4396,8,160,1,161,1,161,1,161,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,5,162,4414,8,162,10,162,12,162,4417,9,162,1,163,1,163,3,163, - 4421,8,163,1,164,1,164,1,164,1,164,3,164,4427,8,164,1,164,1,164, - 1,164,1,164,1,164,3,164,4434,8,164,1,165,1,165,1,165,3,165,4439, - 8,165,1,166,1,166,1,166,1,166,1,166,5,166,4446,8,166,10,166,12,166, - 4449,9,166,3,166,4451,8,166,1,167,1,167,3,167,4455,8,167,1,168,1, - 168,3,168,4459,8,168,1,168,1,168,3,168,4463,8,168,1,168,3,168,4466, - 8,168,1,168,3,168,4469,8,168,1,168,3,168,4472,8,168,1,169,1,169, - 3,169,4476,8,169,1,169,1,169,3,169,4480,8,169,1,169,3,169,4483,8, - 169,1,169,3,169,4486,8,169,1,169,3,169,4489,8,169,1,170,1,170,1, - 170,1,171,1,171,3,171,4496,8,171,1,171,1,171,3,171,4500,8,171,1, - 171,1,171,1,172,1,172,1,172,1,172,1,173,1,173,1,173,1,173,1,173, - 5,173,4513,8,173,10,173,12,173,4516,9,173,1,174,1,174,1,174,1,175, - 1,175,1,175,1,175,1,175,1,176,1,176,3,176,4528,8,176,1,176,1,176, - 1,176,1,176,5,176,4534,8,176,10,176,12,176,4537,9,176,1,177,1,177, - 1,177,1,177,1,177,1,177,1,177,3,177,4546,8,177,1,178,1,178,3,178, - 4550,8,178,1,178,3,178,4553,8,178,1,178,1,178,1,179,1,179,3,179, - 4559,8,179,1,179,3,179,4562,8,179,1,179,3,179,4565,8,179,1,180,1, - 180,1,180,1,180,1,180,1,180,1,180,3,180,4574,8,180,1,181,1,181,1, - 181,1,181,1,181,1,181,1,181,3,181,4583,8,181,1,182,1,182,1,182,1, - 182,1,182,1,182,5,182,4591,8,182,10,182,12,182,4594,9,182,1,182, - 3,182,4597,8,182,1,183,1,183,1,183,1,183,1,183,1,183,5,183,4605, - 8,183,10,183,12,183,4608,9,183,1,183,3,183,4611,8,183,1,184,1,184, - 1,184,1,184,1,184,1,184,1,184,5,184,4620,8,184,10,184,12,184,4623, - 9,184,1,184,3,184,4626,8,184,1,185,1,185,1,185,1,185,1,185,1,185, - 1,185,3,185,4635,8,185,1,186,1,186,1,186,1,186,1,186,5,186,4642, - 8,186,10,186,12,186,4645,9,186,3,186,4647,8,186,1,186,1,186,3,186, - 4651,8,186,1,186,5,186,4654,8,186,10,186,12,186,4657,9,186,1,186, - 3,186,4660,8,186,1,187,1,187,1,187,1,187,1,187,5,187,4667,8,187, - 10,187,12,187,4670,9,187,3,187,4672,8,187,1,187,3,187,4675,8,187, - 1,188,1,188,1,188,1,188,1,188,3,188,4682,8,188,1,188,1,188,1,188, - 1,188,3,188,4688,8,188,1,188,1,188,1,188,1,188,3,188,4694,8,188, - 1,189,1,189,1,189,1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,190, + 4,1,4,1,4,1,4,3,4,921,8,4,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,1, + 5,1,5,1,5,1,5,1,5,1,5,1,5,1,5,3,5,940,8,5,1,6,1,6,1,6,1,6,1,6,1, + 6,1,6,1,6,1,6,3,6,951,8,6,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1,7,1, + 7,1,7,1,7,1,7,1,7,3,7,967,8,7,1,8,1,8,1,8,3,8,972,8,8,1,9,1,9,1, + 9,1,9,1,9,1,9,1,9,1,9,1,9,1,9,3,9,984,8,9,1,10,1,10,1,10,1,10,1, + 10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1, + 10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1, + 10,1,10,1,10,3,10,1019,8,10,1,11,1,11,1,11,1,11,1,11,1,11,1,11,1, + 11,3,11,1029,8,11,1,12,1,12,1,12,3,12,1034,8,12,1,12,1,12,5,12,1038, + 8,12,10,12,12,12,1041,9,12,1,13,1,13,3,13,1045,8,13,1,13,1,13,3, + 13,1049,8,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,3,13,1058,8,13,1, + 13,3,13,1061,8,13,1,13,3,13,1064,8,13,1,13,1,13,3,13,1068,8,13,1, + 13,1,13,1,13,1,14,1,14,3,14,1075,8,14,1,14,3,14,1078,8,14,1,14,1, + 14,1,14,3,14,1083,8,14,1,14,1,14,1,14,1,14,5,14,1089,8,14,10,14, + 12,14,1092,9,14,1,14,1,14,3,14,1096,8,14,1,14,1,14,1,14,3,14,1101, + 8,14,1,14,5,14,1104,8,14,10,14,12,14,1107,9,14,1,15,1,15,1,15,1, + 15,1,15,1,15,1,15,1,15,1,15,3,15,1118,8,15,1,15,3,15,1121,8,15,1, + 15,1,15,3,15,1125,8,15,1,15,3,15,1128,8,15,1,15,1,15,3,15,1132,8, + 15,1,15,3,15,1135,8,15,1,15,1,15,3,15,1139,8,15,1,15,3,15,1142,8, + 15,1,15,3,15,1145,8,15,1,15,1,15,3,15,1149,8,15,1,15,3,15,1152,8, + 15,1,15,1,15,3,15,1156,8,15,1,15,1,15,1,16,1,16,3,16,1162,8,16,1, + 16,1,16,3,16,1166,8,16,1,16,1,16,1,16,3,16,1171,8,16,1,16,1,16,5, + 16,1175,8,16,10,16,12,16,1178,9,16,1,16,1,16,5,16,1182,8,16,10,16, + 12,16,1185,9,16,1,16,1,16,1,17,1,17,3,17,1191,8,17,1,17,3,17,1194, + 8,17,1,17,1,17,3,17,1198,8,17,1,17,1,17,1,17,3,17,1203,8,17,1,17, + 1,17,5,17,1207,8,17,10,17,12,17,1210,9,17,1,17,1,17,1,17,1,17,5, + 17,1216,8,17,10,17,12,17,1219,9,17,1,17,1,17,3,17,1223,8,17,1,18, + 1,18,3,18,1227,8,18,1,18,1,18,3,18,1231,8,18,1,18,1,18,1,18,1,18, + 1,18,1,18,1,19,1,19,1,19,3,19,1242,8,19,1,19,1,19,1,20,1,20,1,20, + 1,20,1,20,1,20,1,20,1,20,1,20,1,20,1,20,1,20,5,20,1258,8,20,10,20, + 12,20,1261,9,20,1,20,1,20,1,21,1,21,3,21,1267,8,21,1,21,1,21,3,21, + 1271,8,21,1,21,1,21,3,21,1275,8,21,1,21,1,21,3,21,1279,8,21,1,21, + 5,21,1282,8,21,10,21,12,21,1285,9,21,3,21,1287,8,21,1,21,3,21,1290, + 8,21,1,21,3,21,1293,8,21,1,21,3,21,1296,8,21,1,21,1,21,1,21,1,21, + 3,21,1302,8,21,1,21,1,21,3,21,1306,8,21,1,21,1,21,1,21,1,21,1,21, + 1,21,1,21,1,21,3,21,1316,8,21,1,21,1,21,3,21,1320,8,21,1,21,1,21, + 3,21,1324,8,21,1,21,1,21,1,21,1,21,3,21,1330,8,21,1,21,5,21,1333, + 8,21,10,21,12,21,1336,9,21,3,21,1338,8,21,1,21,3,21,1341,8,21,3, + 21,1343,8,21,1,22,1,22,3,22,1347,8,22,1,22,1,22,1,22,1,22,1,22,3, + 22,1354,8,22,1,22,1,22,3,22,1358,8,22,1,22,3,22,1361,8,22,1,22,1, + 22,1,22,3,22,1366,8,22,1,22,1,22,3,22,1370,8,22,1,22,3,22,1373,8, + 22,1,22,1,22,3,22,1377,8,22,1,22,3,22,1380,8,22,1,23,1,23,3,23,1384, + 8,23,1,23,1,23,1,23,1,23,1,23,1,23,1,23,1,23,1,23,1,23,1,23,3,23, + 1397,8,23,1,23,3,23,1400,8,23,1,23,1,23,3,23,1404,8,23,1,23,3,23, + 1407,8,23,1,23,1,23,3,23,1411,8,23,1,23,3,23,1414,8,23,1,23,1,23, + 3,23,1418,8,23,1,23,3,23,1421,8,23,1,23,1,23,3,23,1425,8,23,1,23, + 3,23,1428,8,23,1,23,3,23,1431,8,23,1,23,1,23,3,23,1435,8,23,1,23, + 3,23,1438,8,23,1,23,1,23,3,23,1442,8,23,1,23,1,23,1,24,1,24,3,24, + 1448,8,24,1,24,3,24,1451,8,24,1,24,1,24,3,24,1455,8,24,1,24,1,24, + 1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,3,24,1467,8,24,1,24,1,24, + 1,25,1,25,3,25,1473,8,25,1,25,1,25,1,26,1,26,1,26,1,26,1,26,5,26, + 1482,8,26,10,26,12,26,1485,9,26,1,26,1,26,3,26,1489,8,26,1,26,1, + 26,1,26,1,26,1,26,1,26,3,26,1497,8,26,1,27,1,27,3,27,1501,8,27,1, + 27,1,27,1,27,3,27,1506,8,27,1,27,3,27,1509,8,27,1,27,1,27,1,27,3, + 27,1514,8,27,1,27,1,27,1,27,1,27,1,27,1,27,5,27,1522,8,27,10,27, + 12,27,1525,9,27,1,27,1,27,3,27,1529,8,27,1,27,1,27,1,27,3,27,1534, + 8,27,1,27,1,27,1,27,1,27,3,27,1540,8,27,1,27,1,27,1,27,3,27,1545, + 8,27,1,27,1,27,3,27,1549,8,27,3,27,1551,8,27,1,28,3,28,1554,8,28, + 1,28,1,28,3,28,1558,8,28,1,28,1,28,3,28,1562,8,28,1,28,3,28,1565, + 8,28,1,28,1,28,3,28,1569,8,28,1,28,1,28,3,28,1573,8,28,1,28,1,28, + 3,28,1577,8,28,1,28,1,28,1,28,1,28,3,28,1583,8,28,1,28,3,28,1586, + 8,28,1,29,1,29,1,29,1,29,1,29,3,29,1593,8,29,1,30,1,30,1,30,3,30, + 1598,8,30,1,31,1,31,1,31,1,31,3,31,1604,8,31,1,32,1,32,1,32,5,32, + 1609,8,32,10,32,12,32,1612,9,32,1,32,1,32,1,32,3,32,1617,8,32,1, + 32,1,32,1,32,1,32,5,32,1623,8,32,10,32,12,32,1626,9,32,3,32,1628, + 8,32,1,32,1,32,1,32,5,32,1633,8,32,10,32,12,32,1636,9,32,3,32,1638, + 8,32,3,32,1640,8,32,1,33,1,33,1,33,1,33,3,33,1646,8,33,1,34,1,34, + 1,34,1,34,3,34,1652,8,34,1,34,1,34,1,35,1,35,1,35,1,35,1,35,1,35, + 1,35,1,35,1,35,1,35,1,35,1,35,1,35,3,35,1669,8,35,1,36,1,36,1,36, + 1,36,1,36,3,36,1676,8,36,1,37,1,37,1,37,1,38,1,38,3,38,1683,8,38, + 1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,3,38,1695,8,38, + 1,38,1,38,1,38,3,38,1700,8,38,1,38,3,38,1703,8,38,1,39,3,39,1706, + 8,39,1,39,1,39,1,39,1,40,1,40,1,40,1,41,1,41,1,41,1,41,1,41,3,41, + 1719,8,41,1,41,1,41,1,41,1,41,1,41,1,41,1,41,1,41,1,41,1,41,1,41, + 3,41,1732,8,41,1,41,1,41,1,41,3,41,1737,8,41,1,42,1,42,1,42,1,42, + 1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,3,42,1753,8,42, + 1,43,1,43,1,43,1,43,5,43,1759,8,43,10,43,12,43,1762,9,43,1,43,1, + 43,1,44,1,44,1,44,1,44,1,44,3,44,1771,8,44,1,44,3,44,1774,8,44,1, + 44,1,44,5,44,1778,8,44,10,44,12,44,1781,9,44,1,44,1,44,3,44,1785, + 8,44,1,44,3,44,1788,8,44,1,44,1,44,5,44,1792,8,44,10,44,12,44,1795, + 9,44,1,44,3,44,1798,8,44,1,44,1,44,1,44,3,44,1803,8,44,1,44,1,44, + 5,44,1807,8,44,10,44,12,44,1810,9,44,1,44,3,44,1813,8,44,1,44,1, + 44,3,44,1817,8,44,1,44,3,44,1820,8,44,1,44,3,44,1823,8,44,1,44,1, + 44,5,44,1827,8,44,10,44,12,44,1830,9,44,1,44,3,44,1833,8,44,1,44, + 1,44,1,44,3,44,1838,8,44,1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,44, + 1,44,3,44,1849,8,44,1,45,3,45,1852,8,45,1,45,1,45,1,45,1,45,1,45, + 3,45,1859,8,45,1,45,3,45,1862,8,45,1,46,1,46,3,46,1866,8,46,1,47, + 1,47,5,47,1870,8,47,10,47,12,47,1873,9,47,1,48,1,48,1,48,1,48,1, + 48,1,48,1,48,1,48,1,48,3,48,1884,8,48,1,48,3,48,1887,8,48,1,48,1, + 48,1,48,3,48,1892,8,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1, + 48,1,48,1,48,3,48,1905,8,48,1,48,1,48,1,48,1,48,1,48,3,48,1912,8, + 48,1,48,1,48,1,48,1,48,3,48,1918,8,48,1,49,1,49,1,49,3,49,1923,8, + 49,1,49,1,49,3,49,1927,8,49,1,49,3,49,1930,8,49,1,50,1,50,1,50,1, + 50,1,50,1,50,3,50,1938,8,50,1,50,1,50,1,50,1,50,1,50,1,50,3,50,1946, + 8,50,3,50,1948,8,50,1,51,1,51,1,51,1,51,1,51,1,51,1,51,1,51,3,51, + 1958,8,51,1,52,1,52,3,52,1962,8,52,1,52,3,52,1965,8,52,1,52,1,52, + 3,52,1969,8,52,1,52,1,52,1,52,3,52,1974,8,52,1,52,1,52,1,52,3,52, + 1979,8,52,1,52,1,52,1,52,3,52,1984,8,52,1,52,1,52,3,52,1988,8,52, + 1,52,1,52,3,52,1992,8,52,1,52,1,52,3,52,1996,8,52,1,52,1,52,3,52, + 2000,8,52,1,52,1,52,3,52,2004,8,52,1,52,1,52,3,52,2008,8,52,1,52, + 1,52,1,52,3,52,2013,8,52,1,52,1,52,1,52,3,52,2018,8,52,1,52,1,52, + 1,52,3,52,2023,8,52,1,52,1,52,1,52,1,52,3,52,2029,8,52,1,52,1,52, + 1,52,3,52,2034,8,52,1,52,1,52,1,52,3,52,2039,8,52,1,52,1,52,1,52, + 3,52,2044,8,52,1,52,1,52,1,52,3,52,2049,8,52,1,52,1,52,1,52,3,52, + 2054,8,52,1,52,1,52,1,52,1,52,3,52,2060,8,52,1,52,1,52,1,52,3,52, + 2065,8,52,1,52,1,52,1,52,3,52,2070,8,52,1,52,1,52,1,52,3,52,2075, + 8,52,1,52,1,52,1,52,3,52,2080,8,52,1,52,1,52,1,52,3,52,2085,8,52, + 1,52,1,52,1,52,3,52,2090,8,52,1,52,1,52,1,52,3,52,2095,8,52,1,52, + 1,52,1,52,1,52,1,52,3,52,2102,8,52,1,52,1,52,1,52,3,52,2107,8,52, + 1,52,1,52,1,52,3,52,2112,8,52,1,52,1,52,1,52,3,52,2117,8,52,1,52, + 1,52,3,52,2121,8,52,1,52,1,52,1,52,3,52,2126,8,52,1,52,1,52,1,52, + 1,52,1,52,1,52,3,52,2134,8,52,1,52,1,52,1,52,3,52,2139,8,52,1,52, + 1,52,1,52,1,52,3,52,2145,8,52,1,53,1,53,1,54,1,54,1,54,1,55,1,55, + 1,55,1,55,1,55,3,55,2157,8,55,1,55,1,55,1,55,1,55,1,55,3,55,2164, + 8,55,3,55,2166,8,55,1,55,1,55,1,55,1,55,5,55,2172,8,55,10,55,12, + 55,2175,9,55,1,55,1,55,3,55,2179,8,55,1,56,3,56,2182,8,56,1,56,1, + 56,1,56,1,56,1,56,1,56,3,56,2190,8,56,1,56,1,56,1,56,1,56,3,56,2196, + 8,56,1,56,1,56,3,56,2200,8,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,2213,8,56,1,56,1,56,1,56,1,56,1,56,1,56, + 1,56,1,56,1,56,1,56,3,56,2225,8,56,3,56,2227,8,56,1,57,3,57,2230, + 8,57,1,57,1,57,1,57,1,57,1,57,1,57,3,57,2238,8,57,1,57,1,57,1,57, + 1,57,3,57,2244,8,57,1,57,1,57,1,57,1,57,3,57,2250,8,57,1,58,1,58, + 1,58,1,58,1,58,1,58,1,58,1,58,1,58,5,58,2261,8,58,10,58,12,58,2264, + 9,58,1,58,1,58,5,58,2268,8,58,10,58,12,58,2271,9,58,1,58,1,58,1, + 58,1,58,5,58,2277,8,58,10,58,12,58,2280,9,58,1,58,1,58,3,58,2284, + 8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,5,58,2293,8,58,10,58,12, + 58,2296,9,58,1,58,1,58,1,58,1,58,5,58,2302,8,58,10,58,12,58,2305, + 9,58,1,58,1,58,3,58,2309,8,58,1,58,1,58,1,58,1,58,1,58,1,58,1,58, + 1,58,5,58,2319,8,58,10,58,12,58,2322,9,58,1,58,1,58,5,58,2326,8, + 58,10,58,12,58,2329,9,58,1,58,1,58,1,58,1,58,5,58,2335,8,58,10,58, + 12,58,2338,9,58,1,58,1,58,3,58,2342,8,58,1,58,1,58,1,58,1,58,1,58, + 1,58,1,58,1,58,5,58,2352,8,58,10,58,12,58,2355,9,58,1,58,1,58,5, + 58,2359,8,58,10,58,12,58,2362,9,58,1,58,1,58,1,58,1,58,5,58,2368, + 8,58,10,58,12,58,2371,9,58,1,58,1,58,3,58,2375,8,58,1,58,1,58,1, + 58,5,58,2380,8,58,10,58,12,58,2383,9,58,1,58,1,58,1,58,1,58,5,58, + 2389,8,58,10,58,12,58,2392,9,58,1,58,1,58,3,58,2396,8,58,3,58,2398, + 8,58,1,59,1,59,1,59,3,59,2403,8,59,1,60,1,60,1,60,1,60,4,60,2409, + 8,60,11,60,12,60,2410,1,60,1,60,1,61,1,61,1,61,5,61,2418,8,61,10, + 61,12,61,2421,9,61,1,62,3,62,2424,8,62,1,62,3,62,2427,8,62,1,62, + 1,62,3,62,2431,8,62,1,62,1,62,1,62,3,62,2436,8,62,1,62,1,62,1,62, + 1,62,3,62,2442,8,62,1,62,1,62,1,62,1,62,3,62,2448,8,62,1,62,1,62, + 1,62,3,62,2453,8,62,1,62,1,62,1,62,3,62,2458,8,62,1,62,1,62,1,62, + 3,62,2463,8,62,1,62,1,62,1,62,3,62,2468,8,62,1,62,3,62,2471,8,62, + 1,63,1,63,1,63,3,63,2476,8,63,1,63,4,63,2479,8,63,11,63,12,63,2480, + 1,63,1,63,1,63,1,63,1,63,1,63,1,63,1,63,3,63,2491,8,63,1,64,1,64, + 3,64,2495,8,64,1,64,1,64,1,64,1,64,1,64,3,64,2502,8,64,1,64,1,64, + 1,64,3,64,2507,8,64,1,64,3,64,2510,8,64,1,64,1,64,1,64,3,64,2515, + 8,64,1,64,3,64,2518,8,64,1,64,1,64,3,64,2522,8,64,1,64,1,64,3,64, + 2526,8,64,1,65,1,65,1,65,1,65,5,65,2532,8,65,10,65,12,65,2535,9, + 65,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,67,1,67,1,67,1,67,1,67,1, + 67,1,67,1,67,1,67,3,67,2553,8,67,1,67,3,67,2556,8,67,1,67,3,67,2559, + 8,67,1,67,1,67,3,67,2563,8,67,1,67,1,67,1,68,1,68,1,68,1,68,5,68, + 2571,8,68,10,68,12,68,2574,9,68,1,69,1,69,1,69,1,69,1,69,1,69,1, + 69,1,69,5,69,2584,8,69,10,69,12,69,2587,9,69,1,69,1,69,1,70,1,70, + 1,70,1,70,1,70,1,70,5,70,2597,8,70,10,70,12,70,2600,9,70,3,70,2602, + 8,70,1,70,1,70,5,70,2606,8,70,10,70,12,70,2609,9,70,3,70,2611,8, + 70,1,71,1,71,3,71,2615,8,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,3, + 71,2624,8,71,1,71,3,71,2627,8,71,1,71,3,71,2630,8,71,1,71,1,71,1, + 71,3,71,2635,8,71,1,71,1,71,3,71,2639,8,71,1,71,3,71,2642,8,71,1, + 71,1,71,3,71,2646,8,71,1,71,1,71,3,71,2650,8,71,1,71,3,71,2653,8, + 71,1,71,1,71,3,71,2657,8,71,1,71,3,71,2660,8,71,1,71,1,71,3,71,2664, + 8,71,1,71,3,71,2667,8,71,1,72,1,72,1,72,1,72,3,72,2673,8,72,1,72, + 3,72,2676,8,72,1,72,1,72,1,72,3,72,2681,8,72,1,72,1,72,1,72,1,72, + 1,72,1,72,3,72,2689,8,72,1,72,1,72,1,72,1,72,3,72,2695,8,72,1,72, + 1,72,3,72,2699,8,72,1,73,1,73,3,73,2703,8,73,1,73,5,73,2706,8,73, + 10,73,12,73,2709,9,73,1,73,1,73,3,73,2713,8,73,1,73,1,73,1,73,1, + 73,1,73,3,73,2720,8,73,1,73,1,73,3,73,2724,8,73,1,73,1,73,1,73,1, + 73,1,73,1,73,1,73,5,73,2733,8,73,10,73,12,73,2736,9,73,1,73,1,73, + 1,73,1,73,1,73,3,73,2743,8,73,1,73,3,73,2746,8,73,1,73,1,73,5,73, + 2750,8,73,10,73,12,73,2753,9,73,1,73,1,73,1,73,3,73,2758,8,73,1, + 73,3,73,2761,8,73,1,73,1,73,5,73,2765,8,73,10,73,12,73,2768,9,73, + 1,73,1,73,1,73,3,73,2773,8,73,3,73,2775,8,73,1,73,1,73,1,73,3,73, + 2780,8,73,1,73,1,73,5,73,2784,8,73,10,73,12,73,2787,9,73,1,73,1, + 73,1,73,3,73,2792,8,73,3,73,2794,8,73,1,73,1,73,3,73,2798,8,73,1, + 73,3,73,2801,8,73,1,73,3,73,2804,8,73,1,73,1,73,5,73,2808,8,73,10, + 73,12,73,2811,9,73,1,73,1,73,1,73,3,73,2816,8,73,3,73,2818,8,73, + 1,73,1,73,1,73,3,73,2823,8,73,1,73,1,73,1,73,1,73,1,73,3,73,2830, + 8,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2839,8,73,1,73,3,73, + 2842,8,73,1,73,1,73,3,73,2846,8,73,1,73,1,73,1,73,3,73,2851,8,73, + 1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,2861,8,73,1,73,1,73, + 1,73,1,73,1,73,1,73,1,73,3,73,2870,8,73,1,73,1,73,1,73,1,73,1,73, + 1,73,3,73,2878,8,73,1,73,3,73,2881,8,73,1,73,1,73,1,73,1,73,1,73, + 1,73,3,73,2889,8,73,1,73,3,73,2892,8,73,1,73,1,73,1,73,1,73,1,73, + 3,73,2899,8,73,1,73,1,73,1,73,3,73,2904,8,73,1,73,1,73,1,73,1,73, + 1,73,1,73,3,73,2912,8,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73, + 1,73,1,73,1,73,1,73,1,73,1,73,3,73,2928,8,73,1,73,1,73,1,73,3,73, + 2933,8,73,1,73,1,73,1,73,1,73,1,73,3,73,2940,8,73,1,73,1,73,1,73, + 1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,73, + 1,73,3,73,2959,8,73,1,73,1,73,1,73,1,73,3,73,2965,8,73,1,74,1,74, + 1,74,1,74,1,74,1,74,5,74,2973,8,74,10,74,12,74,2976,9,74,1,74,1, + 74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,3,74,2987,8,74,1,74,1,74,1, + 74,1,74,1,74,3,74,2994,8,74,1,74,1,74,1,74,1,74,1,74,3,74,3001,8, + 74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,5,74,3014, + 8,74,10,74,12,74,3017,9,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1, + 74,1,74,1,74,3,74,3029,8,74,1,74,1,74,1,74,1,74,3,74,3035,8,74,1, + 74,1,74,1,74,1,74,3,74,3041,8,74,1,74,1,74,1,74,1,74,3,74,3047,8, + 74,1,74,1,74,1,74,1,74,3,74,3053,8,74,1,74,1,74,1,74,1,74,3,74,3059, + 8,74,1,74,1,74,1,74,1,74,3,74,3065,8,74,1,75,1,75,1,75,3,75,3070, + 8,75,1,75,1,75,1,76,1,76,1,76,3,76,3077,8,76,1,76,1,76,1,77,1,77, + 1,77,3,77,3084,8,77,1,77,1,77,1,77,1,77,1,77,3,77,3091,8,77,1,77, + 1,77,1,77,3,77,3096,8,77,1,77,5,77,3099,8,77,10,77,12,77,3102,9, + 77,1,78,1,78,1,78,1,78,1,78,1,78,3,78,3110,8,78,1,78,1,78,1,79,1, + 79,1,79,3,79,3117,8,79,1,79,1,79,1,80,1,80,1,80,3,80,3124,8,80,1, + 80,1,80,1,81,1,81,1,81,3,81,3131,8,81,1,81,1,81,1,82,1,82,1,82,1, + 82,1,82,3,82,3140,8,82,1,82,1,82,1,83,1,83,3,83,3146,8,83,1,83,1, + 83,3,83,3150,8,83,1,83,1,83,3,83,3154,8,83,1,84,1,84,3,84,3158,8, + 84,1,84,1,84,1,84,1,84,3,84,3164,8,84,1,84,3,84,3167,8,84,1,85,1, + 85,1,85,3,85,3172,8,85,1,85,1,85,1,86,1,86,1,86,3,86,3179,8,86,1, + 86,1,86,1,86,5,86,3184,8,86,10,86,12,86,3187,9,86,1,86,3,86,3190, + 8,86,1,87,1,87,1,87,3,87,3195,8,87,1,87,1,87,1,88,1,88,1,88,1,88, + 1,88,1,88,3,88,3205,8,88,1,88,1,88,1,88,1,88,5,88,3211,8,88,10,88, + 12,88,3214,9,88,1,88,1,88,1,88,3,88,3219,8,88,1,89,1,89,1,89,1,89, + 1,89,5,89,3226,8,89,10,89,12,89,3229,9,89,1,90,1,90,1,90,1,90,1, + 91,1,91,3,91,3237,8,91,1,91,1,91,1,92,1,92,1,92,1,92,1,92,3,92,3246, + 8,92,1,92,3,92,3249,8,92,1,93,1,93,3,93,3253,8,93,1,94,1,94,1,94, + 1,95,1,95,1,95,1,95,3,95,3262,8,95,1,96,1,96,3,96,3266,8,96,1,96, + 3,96,3269,8,96,1,96,3,96,3272,8,96,1,96,1,96,1,96,1,96,3,96,3278, + 8,96,1,96,3,96,3281,8,96,1,96,3,96,3284,8,96,1,96,1,96,3,96,3288, + 8,96,1,96,3,96,3291,8,96,1,96,3,96,3294,8,96,1,96,3,96,3297,8,96, + 1,96,1,96,1,96,1,96,1,96,1,96,1,96,5,96,3306,8,96,10,96,12,96,3309, + 9,96,3,96,3311,8,96,1,97,1,97,1,97,3,97,3316,8,97,1,98,1,98,1,98, + 1,98,3,98,3322,8,98,1,99,1,99,1,99,3,99,3327,8,99,1,99,4,99,3330, + 8,99,11,99,12,99,3331,1,100,3,100,3335,8,100,1,100,1,100,3,100,3339, + 8,100,1,101,1,101,1,101,3,101,3344,8,101,1,101,3,101,3347,8,101, + 1,101,1,101,1,101,3,101,3352,8,101,1,101,1,101,1,101,1,101,1,101, + 1,101,1,101,1,101,3,101,3362,8,101,1,101,1,101,1,101,3,101,3367, + 8,101,1,101,1,101,4,101,3371,8,101,11,101,12,101,3372,3,101,3375, + 8,101,1,101,1,101,4,101,3379,8,101,11,101,12,101,3380,3,101,3383, + 8,101,1,101,1,101,1,101,1,101,3,101,3389,8,101,1,101,1,101,1,101, + 1,101,5,101,3395,8,101,10,101,12,101,3398,9,101,1,101,1,101,3,101, + 3402,8,101,1,101,1,101,1,101,1,101,5,101,3408,8,101,10,101,12,101, + 3411,9,101,3,101,3413,8,101,1,102,1,102,1,102,3,102,3418,8,102,1, + 102,3,102,3421,8,102,1,102,1,102,1,102,3,102,3426,8,102,1,102,1, + 102,1,102,1,102,1,102,1,102,3,102,3434,8,102,1,102,1,102,1,102,1, + 102,3,102,3440,8,102,1,102,1,102,3,102,3444,8,102,3,102,3446,8,102, + 1,102,1,102,1,102,1,102,3,102,3452,8,102,1,102,1,102,1,102,1,102, + 5,102,3458,8,102,10,102,12,102,3461,9,102,1,102,1,102,3,102,3465, + 8,102,1,102,1,102,1,102,1,102,5,102,3471,8,102,10,102,12,102,3474, + 9,102,3,102,3476,8,102,1,103,1,103,1,103,3,103,3481,8,103,1,103, + 3,103,3484,8,103,1,103,1,103,3,103,3488,8,103,1,103,3,103,3491,8, + 103,1,103,3,103,3494,8,103,1,104,1,104,3,104,3498,8,104,1,104,3, + 104,3501,8,104,1,104,1,104,1,104,1,104,1,104,1,104,3,104,3509,8, + 104,1,104,1,104,1,104,1,104,3,104,3515,8,104,1,104,1,104,3,104,3519, + 8,104,1,105,1,105,5,105,3523,8,105,10,105,12,105,3526,9,105,1,105, + 1,105,3,105,3530,8,105,1,105,1,105,3,105,3534,8,105,3,105,3536,8, + 105,1,105,1,105,5,105,3540,8,105,10,105,12,105,3543,9,105,1,105, + 3,105,3546,8,105,1,105,3,105,3549,8,105,1,105,3,105,3552,8,105,1, + 105,3,105,3555,8,105,1,105,1,105,5,105,3559,8,105,10,105,12,105, + 3562,9,105,1,105,1,105,3,105,3566,8,105,1,105,3,105,3569,8,105,1, + 105,3,105,3572,8,105,1,105,3,105,3575,8,105,1,105,3,105,3578,8,105, + 3,105,3580,8,105,1,106,3,106,3583,8,106,1,106,1,106,3,106,3587,8, + 106,1,106,3,106,3590,8,106,1,106,3,106,3593,8,106,1,107,1,107,1, + 107,1,107,1,107,1,107,3,107,3601,8,107,1,107,1,107,1,107,1,107,3, + 107,3607,8,107,1,107,5,107,3610,8,107,10,107,12,107,3613,9,107,1, + 108,1,108,1,108,1,108,1,108,1,108,3,108,3621,8,108,1,108,5,108,3624, + 8,108,10,108,12,108,3627,9,108,1,109,1,109,1,109,1,109,3,109,3633, + 8,109,1,109,3,109,3636,8,109,1,109,3,109,3639,8,109,1,109,1,109, + 3,109,3643,8,109,1,110,1,110,3,110,3647,8,110,1,111,1,111,1,111, + 1,111,3,111,3653,8,111,1,111,1,111,3,111,3657,8,111,1,112,1,112, + 1,112,5,112,3662,8,112,10,112,12,112,3665,9,112,1,112,3,112,3668, + 8,112,1,112,3,112,3671,8,112,1,112,3,112,3674,8,112,1,113,1,113, + 1,113,3,113,3679,8,113,1,114,1,114,1,114,1,114,1,114,3,114,3686, + 8,114,1,115,1,115,1,115,1,115,1,115,1,115,5,115,3694,8,115,10,115, + 12,115,3697,9,115,1,116,1,116,1,116,1,116,5,116,3703,8,116,10,116, + 12,116,3706,9,116,1,117,1,117,1,117,1,117,1,118,1,118,3,118,3714, + 8,118,1,119,1,119,1,119,1,119,1,119,1,119,5,119,3722,8,119,10,119, + 12,119,3725,9,119,3,119,3727,8,119,1,119,1,119,3,119,3731,8,119, + 1,119,1,119,1,119,1,119,3,119,3737,8,119,1,120,1,120,3,120,3741, + 8,120,1,120,3,120,3744,8,120,1,120,3,120,3747,8,120,1,120,1,120, + 1,120,3,120,3752,8,120,1,120,3,120,3755,8,120,1,120,1,120,1,120, + 1,120,1,120,3,120,3762,8,120,1,120,1,120,3,120,3766,8,120,1,120, + 3,120,3769,8,120,1,120,1,120,3,120,3773,8,120,1,121,1,121,3,121, + 3777,8,121,1,121,3,121,3780,8,121,1,121,3,121,3783,8,121,1,121,1, + 121,1,121,3,121,3788,8,121,1,121,1,121,1,121,1,121,3,121,3794,8, + 121,5,121,3796,8,121,10,121,12,121,3799,9,121,1,121,1,121,1,121, + 1,121,1,121,1,121,1,121,3,121,3808,8,121,1,121,1,121,1,121,1,121, + 3,121,3814,8,121,5,121,3816,8,121,10,121,12,121,3819,9,121,1,121, + 1,121,1,121,3,121,3824,8,121,1,121,1,121,3,121,3828,8,121,1,122, + 1,122,1,122,1,122,3,122,3834,8,122,1,122,3,122,3837,8,122,1,123, + 1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123,3,123,3849, + 8,123,1,123,1,123,3,123,3853,8,123,1,123,1,123,3,123,3857,8,123, + 1,124,1,124,1,124,1,124,1,124,1,124,3,124,3865,8,124,1,124,1,124, + 3,124,3869,8,124,1,125,1,125,1,125,1,125,1,126,1,126,1,126,1,126, + 1,126,1,126,5,126,3881,8,126,10,126,12,126,3884,9,126,1,127,1,127, + 3,127,3888,8,127,1,127,3,127,3891,8,127,1,127,1,127,3,127,3895,8, + 127,1,127,3,127,3898,8,127,1,127,1,127,1,127,1,127,5,127,3904,8, + 127,10,127,12,127,3907,9,127,1,127,1,127,3,127,3911,8,127,1,127, + 3,127,3914,8,127,1,127,3,127,3917,8,127,1,128,1,128,3,128,3921,8, + 128,1,128,3,128,3924,8,128,1,128,1,128,1,128,1,128,1,128,5,128,3931, + 8,128,10,128,12,128,3934,9,128,1,128,1,128,3,128,3938,8,128,1,129, + 1,129,1,129,1,129,1,129,5,129,3945,8,129,10,129,12,129,3948,9,129, + 1,130,1,130,3,130,3952,8,130,1,131,1,131,1,131,5,131,3957,8,131, + 10,131,12,131,3960,9,131,1,132,1,132,5,132,3964,8,132,10,132,12, + 132,3967,9,132,1,132,1,132,1,132,5,132,3972,8,132,10,132,12,132, + 3975,9,132,1,132,1,132,1,132,3,132,3980,8,132,1,133,1,133,1,133, + 1,133,1,133,1,133,3,133,3988,8,133,1,133,3,133,3991,8,133,1,133, + 3,133,3994,8,133,1,133,1,133,1,133,5,133,3999,8,133,10,133,12,133, + 4002,9,133,3,133,4004,8,133,1,133,3,133,4007,8,133,1,133,1,133,3, + 133,4011,8,133,1,133,1,133,3,133,4015,8,133,1,133,1,133,1,133,1, + 133,3,133,4021,8,133,1,134,1,134,1,134,1,134,1,134,3,134,4028,8, + 134,1,135,1,135,1,135,1,135,1,136,1,136,1,136,1,136,3,136,4038,8, + 136,1,136,1,136,3,136,4042,8,136,1,136,1,136,1,137,1,137,1,137,1, + 137,1,137,3,137,4051,8,137,1,138,3,138,4054,8,138,1,138,1,138,3, + 138,4058,8,138,1,138,1,138,5,138,4062,8,138,10,138,12,138,4065,9, + 138,1,138,1,138,1,138,5,138,4070,8,138,10,138,12,138,4073,9,138, + 1,138,1,138,3,138,4077,8,138,1,138,1,138,3,138,4081,8,138,1,138, + 1,138,5,138,4085,8,138,10,138,12,138,4088,9,138,1,138,1,138,1,138, + 3,138,4093,8,138,1,138,3,138,4096,8,138,3,138,4098,8,138,1,138,1, + 138,3,138,4102,8,138,1,139,1,139,1,139,3,139,4107,8,139,1,139,1, + 139,1,139,1,139,1,139,3,139,4114,8,139,1,140,1,140,1,140,1,140,1, + 140,1,140,1,140,1,140,3,140,4124,8,140,1,141,1,141,5,141,4128,8, + 141,10,141,12,141,4131,9,141,1,141,1,141,3,141,4135,8,141,1,141, + 1,141,3,141,4139,8,141,1,141,3,141,4142,8,141,1,141,3,141,4145,8, + 141,1,141,3,141,4148,8,141,1,141,3,141,4151,8,141,1,141,3,141,4154, + 8,141,1,141,3,141,4157,8,141,1,142,1,142,3,142,4161,8,142,1,142, + 1,142,3,142,4165,8,142,1,143,1,143,1,143,1,143,1,143,1,143,3,143, + 4173,8,143,1,143,1,143,3,143,4177,8,143,1,143,3,143,4180,8,143,3, + 143,4182,8,143,1,144,1,144,1,144,1,144,1,144,1,144,1,144,1,144,1, + 144,1,144,1,144,3,144,4195,8,144,1,144,3,144,4198,8,144,1,145,1, + 145,1,145,5,145,4203,8,145,10,145,12,145,4206,9,145,1,146,1,146, + 1,146,1,146,1,146,1,146,1,146,3,146,4215,8,146,1,146,3,146,4218, + 8,146,1,146,1,146,1,146,3,146,4223,8,146,3,146,4225,8,146,1,146, + 1,146,3,146,4229,8,146,1,146,1,146,1,146,1,146,1,146,1,146,3,146, + 4237,8,146,1,147,1,147,1,147,1,147,3,147,4243,8,147,1,147,1,147, + 1,147,1,148,1,148,1,148,1,148,3,148,4252,8,148,1,148,1,148,1,148, + 1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,3,149,4265,8,149, + 1,150,1,150,3,150,4269,8,150,1,150,1,150,5,150,4273,8,150,10,150, + 12,150,4276,9,150,1,151,1,151,1,151,3,151,4281,8,151,1,151,3,151, + 4284,8,151,1,151,1,151,3,151,4288,8,151,1,151,3,151,4291,8,151,1, + 151,1,151,1,151,1,151,1,151,3,151,4298,8,151,1,152,1,152,1,152,1, + 152,1,153,1,153,1,154,1,154,1,155,1,155,3,155,4310,8,155,1,155,1, + 155,3,155,4314,8,155,1,156,1,156,1,156,1,156,5,156,4320,8,156,10, + 156,12,156,4323,9,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156, + 1,156,1,156,3,156,4334,8,156,1,156,1,156,4,156,4338,8,156,11,156, + 12,156,4339,3,156,4342,8,156,1,156,1,156,4,156,4346,8,156,11,156, + 12,156,4347,3,156,4350,8,156,3,156,4352,8,156,1,157,1,157,1,157, + 1,157,3,157,4358,8,157,1,157,1,157,1,157,1,157,1,157,1,157,3,157, + 4366,8,157,1,158,1,158,1,158,1,158,1,158,1,158,3,158,4374,8,158, + 1,159,1,159,3,159,4378,8,159,1,159,1,159,1,159,3,159,4383,8,159, + 3,159,4385,8,159,1,160,1,160,1,160,1,160,1,160,5,160,4392,8,160, + 10,160,12,160,4395,9,160,1,160,1,160,3,160,4399,8,160,1,161,1,161, + 1,161,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,5,162,4417,8,162,10,162,12,162,4420,9,162,1,163, + 1,163,3,163,4424,8,163,1,164,1,164,1,164,1,164,3,164,4430,8,164, + 1,164,1,164,1,164,1,164,1,164,3,164,4437,8,164,1,165,1,165,1,165, + 3,165,4442,8,165,1,166,1,166,1,166,1,166,1,166,5,166,4449,8,166, + 10,166,12,166,4452,9,166,3,166,4454,8,166,1,167,1,167,3,167,4458, + 8,167,1,168,1,168,3,168,4462,8,168,1,168,1,168,3,168,4466,8,168, + 1,168,3,168,4469,8,168,1,168,3,168,4472,8,168,1,168,3,168,4475,8, + 168,1,169,1,169,3,169,4479,8,169,1,169,1,169,3,169,4483,8,169,1, + 169,3,169,4486,8,169,1,169,3,169,4489,8,169,1,169,3,169,4492,8,169, + 1,170,1,170,1,170,1,171,1,171,3,171,4499,8,171,1,171,1,171,3,171, + 4503,8,171,1,171,1,171,1,172,1,172,1,172,1,172,1,173,1,173,1,173, + 1,173,1,173,5,173,4516,8,173,10,173,12,173,4519,9,173,1,174,1,174, + 1,174,1,175,1,175,1,175,1,175,1,175,1,176,1,176,3,176,4531,8,176, + 1,176,1,176,1,176,1,176,5,176,4537,8,176,10,176,12,176,4540,9,176, + 1,177,1,177,1,177,1,177,1,177,1,177,1,177,3,177,4549,8,177,1,178, + 1,178,3,178,4553,8,178,1,178,3,178,4556,8,178,1,178,1,178,1,179, + 1,179,3,179,4562,8,179,1,179,3,179,4565,8,179,1,179,3,179,4568,8, + 179,1,180,1,180,1,180,1,180,1,180,1,180,1,180,3,180,4577,8,180,1, + 181,1,181,1,181,1,181,1,181,1,181,1,181,3,181,4586,8,181,1,182,1, + 182,1,182,1,182,1,182,1,182,5,182,4594,8,182,10,182,12,182,4597, + 9,182,1,182,3,182,4600,8,182,1,183,1,183,1,183,1,183,1,183,1,183, + 5,183,4608,8,183,10,183,12,183,4611,9,183,1,183,3,183,4614,8,183, + 1,184,1,184,1,184,1,184,1,184,1,184,1,184,5,184,4623,8,184,10,184, + 12,184,4626,9,184,1,184,3,184,4629,8,184,1,185,1,185,1,185,1,185, + 1,185,1,185,1,185,3,185,4638,8,185,1,186,1,186,1,186,1,186,1,186, + 5,186,4645,8,186,10,186,12,186,4648,9,186,3,186,4650,8,186,1,186, + 1,186,3,186,4654,8,186,1,186,5,186,4657,8,186,10,186,12,186,4660, + 9,186,1,186,3,186,4663,8,186,1,187,1,187,1,187,1,187,1,187,5,187, + 4670,8,187,10,187,12,187,4673,9,187,3,187,4675,8,187,1,187,3,187, + 4678,8,187,1,188,1,188,1,188,1,188,1,188,3,188,4685,8,188,1,188, + 1,188,1,188,1,188,3,188,4691,8,188,1,188,1,188,1,188,1,188,3,188, + 4697,8,188,1,189,1,189,1,189,1,190,1,190,1,190,1,190,1,190,1,190, 1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,190, - 5,190,4718,8,190,10,190,12,190,4721,9,190,3,190,4723,8,190,1,190, - 3,190,4726,8,190,1,191,1,191,1,192,1,192,1,193,1,193,1,194,1,194, - 1,194,1,194,1,194,1,194,1,194,1,194,1,194,1,194,1,194,3,194,4745, - 8,194,3,194,4747,8,194,1,195,1,195,1,195,1,195,1,195,1,195,1,195, + 1,190,1,190,5,190,4721,8,190,10,190,12,190,4724,9,190,3,190,4726, + 8,190,1,190,3,190,4729,8,190,1,191,1,191,1,192,1,192,1,193,1,193, + 1,194,1,194,1,194,1,194,1,194,1,194,1,194,1,194,1,194,1,194,1,194, + 3,194,4748,8,194,3,194,4750,8,194,1,195,1,195,1,195,1,195,1,195, 1,195,1,195,1,195,1,195,1,195,1,195,1,195,1,195,1,195,1,195,1,195, - 1,195,5,195,4768,8,195,10,195,12,195,4771,9,195,3,195,4773,8,195, - 1,195,3,195,4776,8,195,1,196,1,196,1,197,1,197,1,198,1,198,1,199, - 1,199,1,199,1,199,1,199,1,199,1,199,1,199,1,199,1,199,1,199,3,199, - 4795,8,199,3,199,4797,8,199,1,200,1,200,1,200,1,200,1,201,1,201, - 1,201,1,201,1,201,1,201,5,201,4809,8,201,10,201,12,201,4812,9,201, - 1,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201,5,201,4822,8,201, - 10,201,12,201,4825,9,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201, + 1,195,1,195,1,195,5,195,4771,8,195,10,195,12,195,4774,9,195,3,195, + 4776,8,195,1,195,3,195,4779,8,195,1,196,1,196,1,197,1,197,1,198, + 1,198,1,199,1,199,1,199,1,199,1,199,1,199,1,199,1,199,1,199,1,199, + 1,199,3,199,4798,8,199,3,199,4800,8,199,1,200,1,200,1,200,1,200, + 1,201,1,201,1,201,1,201,1,201,1,201,5,201,4812,8,201,10,201,12,201, + 4815,9,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201,5,201, + 4825,8,201,10,201,12,201,4828,9,201,1,201,1,201,1,201,1,201,1,201, 1,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201, 1,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201,1,201, - 1,201,1,201,1,201,5,201,4859,8,201,10,201,12,201,4862,9,201,1,201, - 1,201,3,201,4866,8,201,1,202,1,202,1,202,1,202,1,202,1,202,1,203, - 1,203,1,204,1,204,1,204,1,204,1,204,1,204,1,204,1,204,1,204,1,204, + 1,201,1,201,1,201,1,201,1,201,5,201,4862,8,201,10,201,12,201,4865, + 9,201,1,201,1,201,3,201,4869,8,201,1,202,1,202,1,202,1,202,1,202, + 1,202,1,203,1,203,1,204,1,204,1,204,1,204,1,204,1,204,1,204,1,204, 1,204,1,204,1,204,1,204,1,204,1,204,1,204,1,204,1,204,1,204,1,204, - 1,204,1,204,1,204,1,204,3,204,4901,8,204,1,205,1,205,1,205,1,205, - 1,205,1,205,1,205,1,205,1,205,1,205,1,205,1,205,3,205,4915,8,205, - 1,206,1,206,1,206,5,206,4920,8,206,10,206,12,206,4923,9,206,1,206, - 3,206,4926,8,206,1,207,1,207,1,207,1,207,3,207,4932,8,207,1,208, - 1,208,1,208,1,208,1,208,1,208,3,208,4940,8,208,3,208,4942,8,208, - 1,209,1,209,1,209,1,209,1,210,1,210,1,210,1,210,1,210,3,210,4953, - 8,210,1,211,1,211,1,211,1,211,1,212,1,212,1,212,1,212,3,212,4963, - 8,212,1,213,1,213,1,213,1,213,1,213,3,213,4970,8,213,1,214,1,214, - 1,214,1,214,3,214,4976,8,214,1,215,1,215,1,215,1,215,1,216,1,216, - 3,216,4984,8,216,1,217,1,217,1,217,3,217,4989,8,217,1,217,1,217, - 1,217,1,217,5,217,4995,8,217,10,217,12,217,4998,9,217,1,217,1,217, - 1,217,5,217,5003,8,217,10,217,12,217,5006,9,217,1,217,1,217,1,217, - 5,217,5011,8,217,10,217,12,217,5014,9,217,1,217,1,217,1,217,5,217, - 5019,8,217,10,217,12,217,5022,9,217,1,217,5,217,5025,8,217,10,217, - 12,217,5028,9,217,1,217,1,217,3,217,5032,8,217,1,218,1,218,1,218, - 3,218,5037,8,218,1,218,4,218,5040,8,218,11,218,12,218,5041,1,218, - 1,218,4,218,5046,8,218,11,218,12,218,5047,3,218,5050,8,218,1,218, - 1,218,1,218,1,219,1,219,1,219,1,219,4,219,5059,8,219,11,219,12,219, - 5060,1,219,5,219,5064,8,219,10,219,12,219,5067,9,219,1,219,1,219, - 4,219,5071,8,219,11,219,12,219,5072,3,219,5075,8,219,1,219,1,219, - 1,219,1,220,1,220,1,220,1,221,1,221,1,221,1,222,1,222,1,222,3,222, - 5089,8,222,1,222,1,222,4,222,5093,8,222,11,222,12,222,5094,1,222, - 1,222,1,222,3,222,5100,8,222,1,223,1,223,1,223,3,223,5105,8,223, - 1,223,1,223,4,223,5109,8,223,11,223,12,223,5110,1,223,1,223,1,223, - 1,223,1,223,3,223,5118,8,223,1,224,1,224,1,224,1,225,1,225,1,225, - 3,225,5126,8,225,1,225,1,225,1,225,1,225,4,225,5132,8,225,11,225, - 12,225,5133,1,225,1,225,1,225,3,225,5139,8,225,1,226,1,226,1,226, - 1,226,3,226,5145,8,226,1,226,3,226,5148,8,226,1,226,1,226,1,226, - 1,226,1,226,1,226,3,226,5156,8,226,1,227,1,227,1,227,1,227,1,227, - 3,227,5163,8,227,1,228,1,228,1,228,1,228,1,228,1,228,1,228,3,228, - 5172,8,228,1,228,3,228,5175,8,228,1,229,1,229,1,229,1,229,1,229, - 1,229,1,230,1,230,1,230,1,230,1,230,1,230,1,230,5,230,5190,8,230, - 10,230,12,230,5193,9,230,1,230,1,230,1,231,1,231,1,231,3,231,5200, - 8,231,1,231,1,231,1,231,1,231,1,231,1,231,3,231,5208,8,231,1,232, - 1,232,3,232,5212,8,232,1,232,1,232,1,233,1,233,1,233,3,233,5219, - 8,233,1,233,1,233,4,233,5223,8,233,11,233,12,233,5224,1,234,1,234, - 1,234,1,234,4,234,5231,8,234,11,234,12,234,5232,1,235,1,235,1,235, - 3,235,5238,8,235,1,235,1,235,1,235,5,235,5243,8,235,10,235,12,235, - 5246,9,235,1,235,1,235,1,235,5,235,5251,8,235,10,235,12,235,5254, - 9,235,1,235,1,235,1,235,1,235,3,235,5260,8,235,1,235,5,235,5263, - 8,235,10,235,12,235,5266,9,235,3,235,5268,8,235,3,235,5270,8,235, - 1,235,1,235,4,235,5274,8,235,11,235,12,235,5275,3,235,5278,8,235, - 1,235,1,235,5,235,5282,8,235,10,235,12,235,5285,9,235,1,235,1,235, - 3,235,5289,8,235,1,235,1,235,1,235,1,235,1,235,3,235,5296,8,235, - 1,236,1,236,1,236,3,236,5301,8,236,1,236,1,236,3,236,5305,8,236, - 1,236,1,236,1,236,3,236,5310,8,236,5,236,5312,8,236,10,236,12,236, - 5315,9,236,1,236,1,236,1,236,3,236,5320,8,236,1,236,1,236,1,236, - 1,236,3,236,5326,8,236,1,236,5,236,5329,8,236,10,236,12,236,5332, - 9,236,3,236,5334,8,236,3,236,5336,8,236,1,236,1,236,4,236,5340,8, - 236,11,236,12,236,5341,3,236,5344,8,236,1,236,1,236,5,236,5348,8, - 236,10,236,12,236,5351,9,236,1,236,1,236,3,236,5355,8,236,1,237, - 1,237,1,237,3,237,5360,8,237,1,237,1,237,1,237,5,237,5365,8,237, - 10,237,12,237,5368,9,237,1,238,1,238,1,238,1,238,5,238,5374,8,238, - 10,238,12,238,5377,9,238,1,238,1,238,3,238,5381,8,238,1,238,1,238, - 1,238,1,238,1,238,5,238,5388,8,238,10,238,12,238,5391,9,238,1,238, - 3,238,5394,8,238,1,238,1,238,1,238,1,238,3,238,5400,8,238,1,238, - 5,238,5403,8,238,10,238,12,238,5406,9,238,3,238,5408,8,238,3,238, - 5410,8,238,1,238,1,238,1,238,1,238,5,238,5416,8,238,10,238,12,238, - 5419,9,238,3,238,5421,8,238,1,238,1,238,1,238,1,238,1,238,3,238, - 5428,8,238,3,238,5430,8,238,1,238,1,238,1,238,3,238,5435,8,238,1, - 238,1,238,1,238,5,238,5440,8,238,10,238,12,238,5443,9,238,1,238, - 1,238,1,238,1,238,5,238,5449,8,238,10,238,12,238,5452,9,238,1,238, - 1,238,1,238,3,238,5457,8,238,3,238,5459,8,238,1,239,1,239,1,239, - 1,239,1,239,3,239,5466,8,239,1,239,3,239,5469,8,239,1,240,1,240, - 1,240,1,240,1,240,1,240,1,240,1,240,5,240,5479,8,240,10,240,12,240, - 5482,9,240,1,240,1,240,1,240,3,240,5487,8,240,1,241,1,241,1,241, - 1,241,1,241,1,241,3,241,5495,8,241,1,241,3,241,5498,8,241,1,241, - 1,241,3,241,5502,8,241,1,241,3,241,5505,8,241,1,241,1,241,3,241, - 5509,8,241,3,241,5511,8,241,1,242,1,242,1,242,1,242,1,242,1,242, - 1,242,1,242,1,242,3,242,5522,8,242,1,242,3,242,5525,8,242,1,242, - 1,242,3,242,5529,8,242,1,242,3,242,5532,8,242,1,242,3,242,5535,8, - 242,1,243,1,243,1,243,1,243,1,243,3,243,5542,8,243,1,244,1,244,1, - 244,1,244,1,244,1,244,1,244,1,244,5,244,5552,8,244,10,244,12,244, - 5555,9,244,3,244,5557,8,244,1,245,1,245,1,245,1,245,1,245,3,245, - 5564,8,245,1,245,1,245,5,245,5568,8,245,10,245,12,245,5571,9,245, - 1,246,1,246,1,246,1,246,1,246,5,246,5578,8,246,10,246,12,246,5581, - 9,246,1,247,1,247,3,247,5585,8,247,1,247,1,247,1,247,5,247,5590, - 8,247,10,247,12,247,5593,9,247,1,247,1,247,3,247,5597,8,247,1,247, - 1,247,1,247,1,247,3,247,5603,8,247,1,247,1,247,3,247,5607,8,247, - 1,247,1,247,3,247,5611,8,247,1,247,1,247,1,247,1,247,1,247,1,247, - 3,247,5619,8,247,1,247,1,247,3,247,5623,8,247,1,247,1,247,3,247, - 5627,8,247,1,247,1,247,1,247,1,247,3,247,5633,8,247,3,247,5635,8, - 247,1,248,1,248,1,248,1,248,1,249,1,249,1,250,1,250,1,250,1,250, - 3,250,5647,8,250,1,250,1,250,1,250,3,250,5652,8,250,1,250,1,250, - 1,250,1,250,3,250,5658,8,250,1,250,1,250,1,250,1,250,3,250,5664, - 8,250,1,250,1,250,3,250,5668,8,250,1,250,1,250,1,250,3,250,5673, - 8,250,3,250,5675,8,250,1,251,1,251,1,251,1,252,1,252,1,252,1,252, + 1,204,1,204,1,204,1,204,1,204,1,204,3,204,4904,8,204,1,205,1,205, + 1,205,1,205,1,205,1,205,1,205,1,205,1,205,1,205,1,205,1,205,3,205, + 4918,8,205,1,206,1,206,1,206,5,206,4923,8,206,10,206,12,206,4926, + 9,206,1,206,3,206,4929,8,206,1,207,1,207,1,207,1,207,3,207,4935, + 8,207,1,208,1,208,1,208,1,208,1,208,1,208,3,208,4943,8,208,3,208, + 4945,8,208,1,209,1,209,1,209,1,209,1,210,1,210,1,210,1,210,1,210, + 3,210,4956,8,210,1,211,1,211,1,211,1,211,1,212,1,212,1,212,1,212, + 3,212,4966,8,212,1,213,1,213,1,213,1,213,1,213,3,213,4973,8,213, + 1,214,1,214,1,214,1,214,3,214,4979,8,214,1,215,1,215,1,215,1,215, + 1,216,1,216,3,216,4987,8,216,1,217,1,217,1,217,3,217,4992,8,217, + 1,217,1,217,1,217,1,217,5,217,4998,8,217,10,217,12,217,5001,9,217, + 1,217,1,217,1,217,5,217,5006,8,217,10,217,12,217,5009,9,217,1,217, + 1,217,1,217,5,217,5014,8,217,10,217,12,217,5017,9,217,1,217,1,217, + 1,217,5,217,5022,8,217,10,217,12,217,5025,9,217,1,217,5,217,5028, + 8,217,10,217,12,217,5031,9,217,1,217,1,217,3,217,5035,8,217,1,218, + 1,218,1,218,3,218,5040,8,218,1,218,4,218,5043,8,218,11,218,12,218, + 5044,1,218,1,218,4,218,5049,8,218,11,218,12,218,5050,3,218,5053, + 8,218,1,218,1,218,1,218,1,219,1,219,1,219,1,219,4,219,5062,8,219, + 11,219,12,219,5063,1,219,5,219,5067,8,219,10,219,12,219,5070,9,219, + 1,219,1,219,4,219,5074,8,219,11,219,12,219,5075,3,219,5078,8,219, + 1,219,1,219,1,219,1,220,1,220,1,220,1,221,1,221,1,221,1,222,1,222, + 1,222,3,222,5092,8,222,1,222,1,222,4,222,5096,8,222,11,222,12,222, + 5097,1,222,1,222,1,222,3,222,5103,8,222,1,223,1,223,1,223,3,223, + 5108,8,223,1,223,1,223,4,223,5112,8,223,11,223,12,223,5113,1,223, + 1,223,1,223,1,223,1,223,3,223,5121,8,223,1,224,1,224,1,224,1,225, + 1,225,1,225,3,225,5129,8,225,1,225,1,225,1,225,1,225,4,225,5135, + 8,225,11,225,12,225,5136,1,225,1,225,1,225,3,225,5142,8,225,1,226, + 1,226,1,226,1,226,3,226,5148,8,226,1,226,3,226,5151,8,226,1,226, + 1,226,1,226,1,226,1,226,1,226,3,226,5159,8,226,1,227,1,227,1,227, + 1,227,1,227,3,227,5166,8,227,1,228,1,228,1,228,1,228,1,228,1,228, + 1,228,3,228,5175,8,228,1,228,3,228,5178,8,228,1,229,1,229,1,229, + 1,229,1,229,1,229,1,230,1,230,1,230,1,230,1,230,1,230,1,230,5,230, + 5193,8,230,10,230,12,230,5196,9,230,1,230,1,230,1,231,1,231,1,231, + 3,231,5203,8,231,1,231,1,231,1,231,1,231,1,231,1,231,3,231,5211, + 8,231,1,232,1,232,3,232,5215,8,232,1,232,1,232,1,233,1,233,1,233, + 3,233,5222,8,233,1,233,1,233,4,233,5226,8,233,11,233,12,233,5227, + 1,234,1,234,1,234,1,234,4,234,5234,8,234,11,234,12,234,5235,1,235, + 1,235,1,235,3,235,5241,8,235,1,235,1,235,1,235,5,235,5246,8,235, + 10,235,12,235,5249,9,235,1,235,1,235,1,235,5,235,5254,8,235,10,235, + 12,235,5257,9,235,1,235,1,235,1,235,1,235,3,235,5263,8,235,1,235, + 5,235,5266,8,235,10,235,12,235,5269,9,235,3,235,5271,8,235,3,235, + 5273,8,235,1,235,1,235,4,235,5277,8,235,11,235,12,235,5278,3,235, + 5281,8,235,1,235,1,235,5,235,5285,8,235,10,235,12,235,5288,9,235, + 1,235,1,235,3,235,5292,8,235,1,235,1,235,1,235,1,235,1,235,3,235, + 5299,8,235,1,236,1,236,1,236,3,236,5304,8,236,1,236,1,236,3,236, + 5308,8,236,1,236,1,236,1,236,3,236,5313,8,236,5,236,5315,8,236,10, + 236,12,236,5318,9,236,1,236,1,236,1,236,3,236,5323,8,236,1,236,1, + 236,1,236,1,236,3,236,5329,8,236,1,236,5,236,5332,8,236,10,236,12, + 236,5335,9,236,3,236,5337,8,236,3,236,5339,8,236,1,236,1,236,4,236, + 5343,8,236,11,236,12,236,5344,3,236,5347,8,236,1,236,1,236,5,236, + 5351,8,236,10,236,12,236,5354,9,236,1,236,1,236,3,236,5358,8,236, + 1,237,1,237,1,237,3,237,5363,8,237,1,237,1,237,1,237,5,237,5368, + 8,237,10,237,12,237,5371,9,237,1,238,1,238,1,238,1,238,5,238,5377, + 8,238,10,238,12,238,5380,9,238,1,238,1,238,3,238,5384,8,238,1,238, + 1,238,1,238,1,238,1,238,5,238,5391,8,238,10,238,12,238,5394,9,238, + 1,238,3,238,5397,8,238,1,238,1,238,1,238,1,238,3,238,5403,8,238, + 1,238,5,238,5406,8,238,10,238,12,238,5409,9,238,3,238,5411,8,238, + 3,238,5413,8,238,1,238,1,238,1,238,1,238,5,238,5419,8,238,10,238, + 12,238,5422,9,238,3,238,5424,8,238,1,238,1,238,1,238,1,238,1,238, + 3,238,5431,8,238,3,238,5433,8,238,1,238,1,238,1,238,3,238,5438,8, + 238,1,238,1,238,1,238,5,238,5443,8,238,10,238,12,238,5446,9,238, + 1,238,1,238,1,238,1,238,5,238,5452,8,238,10,238,12,238,5455,9,238, + 1,238,1,238,1,238,3,238,5460,8,238,3,238,5462,8,238,1,239,1,239, + 1,239,1,239,1,239,3,239,5469,8,239,1,239,3,239,5472,8,239,1,240, + 1,240,1,240,1,240,1,240,1,240,1,240,1,240,5,240,5482,8,240,10,240, + 12,240,5485,9,240,1,240,1,240,1,240,3,240,5490,8,240,1,241,1,241, + 1,241,1,241,1,241,1,241,3,241,5498,8,241,1,241,3,241,5501,8,241, + 1,241,1,241,3,241,5505,8,241,1,241,3,241,5508,8,241,1,241,1,241, + 3,241,5512,8,241,3,241,5514,8,241,1,242,1,242,1,242,1,242,1,242, + 1,242,1,242,1,242,1,242,3,242,5525,8,242,1,242,3,242,5528,8,242, + 1,242,1,242,3,242,5532,8,242,1,242,3,242,5535,8,242,1,242,3,242, + 5538,8,242,1,243,1,243,1,243,1,243,1,243,3,243,5545,8,243,1,244, + 1,244,1,244,1,244,1,244,1,244,1,244,1,244,5,244,5555,8,244,10,244, + 12,244,5558,9,244,3,244,5560,8,244,1,245,1,245,1,245,1,245,1,245, + 3,245,5567,8,245,1,245,1,245,5,245,5571,8,245,10,245,12,245,5574, + 9,245,1,246,1,246,1,246,1,246,1,246,5,246,5581,8,246,10,246,12,246, + 5584,9,246,1,247,1,247,3,247,5588,8,247,1,247,1,247,1,247,5,247, + 5593,8,247,10,247,12,247,5596,9,247,1,247,1,247,3,247,5600,8,247, + 1,247,1,247,1,247,1,247,3,247,5606,8,247,1,247,1,247,3,247,5610, + 8,247,1,247,1,247,3,247,5614,8,247,1,247,1,247,1,247,1,247,1,247, + 1,247,3,247,5622,8,247,1,247,1,247,3,247,5626,8,247,1,247,1,247, + 3,247,5630,8,247,1,247,1,247,1,247,1,247,3,247,5636,8,247,3,247, + 5638,8,247,1,248,1,248,1,248,1,248,1,249,1,249,1,250,1,250,1,250, + 1,250,3,250,5650,8,250,1,250,1,250,1,250,3,250,5655,8,250,1,250, + 1,250,1,250,1,250,3,250,5661,8,250,1,250,1,250,1,250,1,250,3,250, + 5667,8,250,1,250,1,250,3,250,5671,8,250,1,250,1,250,1,250,3,250, + 5676,8,250,3,250,5678,8,250,1,251,1,251,1,251,1,252,1,252,1,252, 1,252,1,252,1,252,1,252,1,252,1,252,1,252,1,252,1,252,1,252,1,252, - 1,252,1,252,1,252,1,252,3,252,5699,8,252,4,252,5701,8,252,11,252, - 12,252,5702,1,252,3,252,5706,8,252,1,253,1,253,1,253,1,253,1,253, - 1,253,1,253,3,253,5715,8,253,1,253,1,253,3,253,5719,8,253,1,253, - 1,253,1,253,1,253,1,253,1,253,1,253,3,253,5728,8,253,1,253,1,253, - 3,253,5732,8,253,1,253,1,253,3,253,5736,8,253,1,253,1,253,1,253, - 1,253,3,253,5742,8,253,3,253,5744,8,253,1,254,1,254,1,254,1,254, - 1,254,1,254,1,254,3,254,5753,8,254,1,254,1,254,1,254,1,254,1,254, - 1,254,1,254,1,254,3,254,5763,8,254,1,255,1,255,1,255,1,255,1,255, + 1,252,1,252,1,252,1,252,1,252,3,252,5702,8,252,4,252,5704,8,252, + 11,252,12,252,5705,1,252,3,252,5709,8,252,1,253,1,253,1,253,1,253, + 1,253,1,253,1,253,3,253,5718,8,253,1,253,1,253,3,253,5722,8,253, + 1,253,1,253,1,253,1,253,1,253,1,253,1,253,3,253,5731,8,253,1,253, + 1,253,3,253,5735,8,253,1,253,1,253,3,253,5739,8,253,1,253,1,253, + 1,253,1,253,3,253,5745,8,253,3,253,5747,8,253,1,254,1,254,1,254, + 1,254,1,254,1,254,1,254,3,254,5756,8,254,1,254,1,254,1,254,1,254, + 1,254,1,254,1,254,1,254,3,254,5766,8,254,1,255,1,255,1,255,1,255, 1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255, - 1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,3,255,5790, - 8,255,1,256,1,256,3,256,5794,8,256,1,256,1,256,1,256,3,256,5799, - 8,256,1,257,1,257,1,257,1,257,1,257,3,257,5806,8,257,1,257,3,257, - 5809,8,257,1,257,1,257,1,257,1,257,3,257,5815,8,257,1,258,1,258, - 1,258,1,258,1,258,1,258,1,258,1,258,3,258,5825,8,258,1,259,1,259, - 1,259,1,259,1,259,1,259,1,259,1,259,3,259,5835,8,259,1,260,1,260, - 1,260,1,260,1,260,1,260,1,260,1,260,3,260,5845,8,260,1,260,1,260, - 1,260,1,260,3,260,5851,8,260,1,260,1,260,1,260,1,260,1,260,1,260, - 1,260,3,260,5860,8,260,1,260,1,260,1,260,1,260,3,260,5866,8,260, - 1,260,1,260,1,260,1,260,1,260,3,260,5873,8,260,3,260,5875,8,260, - 1,261,1,261,1,261,1,262,1,262,1,262,3,262,5883,8,262,1,262,1,262, - 1,262,1,262,3,262,5889,8,262,1,262,1,262,3,262,5893,8,262,1,263, + 1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,1,255,3,255, + 5793,8,255,1,256,1,256,3,256,5797,8,256,1,256,1,256,1,256,3,256, + 5802,8,256,1,257,1,257,1,257,1,257,1,257,3,257,5809,8,257,1,257, + 3,257,5812,8,257,1,257,1,257,1,257,1,257,3,257,5818,8,257,1,258, + 1,258,1,258,1,258,1,258,1,258,1,258,1,258,3,258,5828,8,258,1,259, + 1,259,1,259,1,259,1,259,1,259,1,259,1,259,3,259,5838,8,259,1,260, + 1,260,1,260,1,260,1,260,1,260,1,260,1,260,3,260,5848,8,260,1,260, + 1,260,1,260,1,260,3,260,5854,8,260,1,260,1,260,1,260,1,260,1,260, + 1,260,1,260,3,260,5863,8,260,1,260,1,260,1,260,1,260,3,260,5869, + 8,260,1,260,1,260,1,260,1,260,1,260,3,260,5876,8,260,3,260,5878, + 8,260,1,261,1,261,1,261,1,262,1,262,1,262,3,262,5886,8,262,1,262, + 1,262,1,262,1,262,3,262,5892,8,262,1,262,1,262,3,262,5896,8,262, 1,263,1,263,1,263,1,263,1,263,1,263,1,263,1,263,1,263,1,263,1,263, - 1,263,1,263,1,263,3,263,5910,8,263,1,264,1,264,1,264,1,265,1,265, - 1,265,1,265,1,265,3,265,5920,8,265,1,266,1,266,3,266,5924,8,266, - 1,266,1,266,3,266,5928,8,266,1,266,1,266,1,266,1,266,1,266,1,266, - 1,266,1,266,3,266,5938,8,266,1,266,1,266,1,266,3,266,5943,8,266, + 1,263,1,263,1,263,1,263,3,263,5913,8,263,1,264,1,264,1,264,1,265, + 1,265,1,265,1,265,1,265,3,265,5923,8,265,1,266,1,266,3,266,5927, + 8,266,1,266,1,266,3,266,5931,8,266,1,266,1,266,1,266,1,266,1,266, + 1,266,1,266,1,266,3,266,5941,8,266,1,266,1,266,1,266,3,266,5946, + 8,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266, 1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266, 1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266, 1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266, 1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266, 1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266, - 1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266,1,266, - 1,266,1,266,1,266,1,266,3,266,6015,8,266,1,267,1,267,1,267,1,267, + 1,266,1,266,1,266,1,266,1,266,3,266,6018,8,266,1,267,1,267,1,267, 1,267,1,267,1,267,1,267,1,267,1,267,1,267,1,267,1,267,1,267,1,267, - 1,267,3,267,6033,8,267,1,268,1,268,1,268,1,268,1,269,1,269,3,269, - 6041,8,269,1,269,1,269,1,269,1,269,3,269,6047,8,269,1,269,1,269, - 1,269,1,269,1,269,1,269,1,269,1,269,1,269,1,269,3,269,6059,8,269, - 1,269,1,269,3,269,6063,8,269,1,269,1,269,1,269,1,269,1,269,1,269, - 1,269,1,269,1,269,3,269,6074,8,269,1,269,1,269,3,269,6078,8,269, - 1,269,1,269,1,269,1,269,1,269,1,269,1,269,3,269,6087,8,269,1,270, - 1,270,1,270,1,270,5,270,6093,8,270,10,270,12,270,6096,9,270,1,271, - 1,271,1,271,1,271,3,271,6102,8,271,1,272,1,272,3,272,6106,8,272, - 1,272,1,272,1,272,1,273,1,273,3,273,6113,8,273,1,273,1,273,1,273, - 3,273,6118,8,273,1,273,3,273,6121,8,273,1,273,3,273,6124,8,273,1, - 274,1,274,1,275,1,275,1,275,1,275,1,275,1,275,1,275,3,275,6135,8, - 275,1,276,1,276,1,276,1,276,1,276,5,276,6142,8,276,10,276,12,276, - 6145,9,276,1,276,1,276,1,276,1,276,5,276,6151,8,276,10,276,12,276, - 6154,9,276,3,276,6156,8,276,1,277,1,277,1,277,1,277,1,277,1,278, - 1,278,1,278,1,278,1,278,5,278,6168,8,278,10,278,12,278,6171,9,278, - 1,279,1,279,1,279,1,279,1,279,1,279,1,280,1,280,1,280,1,280,1,281, - 1,281,1,281,1,281,1,281,3,281,6188,8,281,1,281,1,281,1,281,1,281, - 1,281,1,281,1,281,1,281,1,281,1,281,1,281,3,281,6201,8,281,1,281, - 3,281,6204,8,281,1,281,1,281,3,281,6208,8,281,1,281,3,281,6211,8, - 281,3,281,6213,8,281,1,282,1,282,1,282,1,282,1,282,3,282,6220,8, - 282,1,282,1,282,1,282,1,282,1,282,3,282,6227,8,282,5,282,6229,8, - 282,10,282,12,282,6232,9,282,1,282,1,282,1,282,1,282,3,282,6238, - 8,282,1,282,1,282,1,282,1,282,1,282,3,282,6245,8,282,1,282,3,282, - 6248,8,282,1,282,1,282,1,282,1,282,1,282,1,282,1,282,1,282,1,282, - 1,282,1,282,1,282,5,282,6262,8,282,10,282,12,282,6265,9,282,3,282, - 6267,8,282,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,3,283, - 6277,8,283,1,283,1,283,3,283,6281,8,283,1,283,1,283,1,283,1,283, - 3,283,6287,8,283,1,283,3,283,6290,8,283,1,283,3,283,6293,8,283,1, - 283,1,283,1,283,3,283,6298,8,283,1,283,1,283,3,283,6302,8,283,1, - 283,3,283,6305,8,283,1,283,1,283,1,283,1,283,1,283,3,283,6312,8, - 283,1,283,3,283,6315,8,283,1,283,1,283,1,283,1,283,3,283,6321,8, - 283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283, + 1,267,1,267,3,267,6036,8,267,1,268,1,268,1,268,1,268,1,269,1,269, + 3,269,6044,8,269,1,269,1,269,1,269,1,269,3,269,6050,8,269,1,269, + 1,269,1,269,1,269,1,269,1,269,1,269,1,269,1,269,1,269,3,269,6062, + 8,269,1,269,1,269,3,269,6066,8,269,1,269,1,269,1,269,1,269,1,269, + 1,269,1,269,1,269,1,269,3,269,6077,8,269,1,269,1,269,3,269,6081, + 8,269,1,269,1,269,1,269,1,269,1,269,1,269,1,269,3,269,6090,8,269, + 1,270,1,270,1,270,1,270,5,270,6096,8,270,10,270,12,270,6099,9,270, + 1,271,1,271,1,271,1,271,3,271,6105,8,271,1,272,1,272,3,272,6109, + 8,272,1,272,1,272,1,272,1,273,1,273,3,273,6116,8,273,1,273,1,273, + 1,273,3,273,6121,8,273,1,273,3,273,6124,8,273,1,273,3,273,6127,8, + 273,1,274,1,274,1,275,1,275,1,275,1,275,1,275,1,275,1,275,3,275, + 6138,8,275,1,276,1,276,1,276,1,276,1,276,5,276,6145,8,276,10,276, + 12,276,6148,9,276,1,276,1,276,1,276,1,276,5,276,6154,8,276,10,276, + 12,276,6157,9,276,3,276,6159,8,276,1,277,1,277,1,277,1,277,1,277, + 1,278,1,278,1,278,1,278,1,278,5,278,6171,8,278,10,278,12,278,6174, + 9,278,1,279,1,279,1,279,1,279,1,279,1,279,1,280,1,280,1,280,1,280, + 1,281,1,281,1,281,1,281,1,281,3,281,6191,8,281,1,281,1,281,1,281, + 1,281,1,281,1,281,1,281,1,281,1,281,1,281,1,281,3,281,6204,8,281, + 1,281,3,281,6207,8,281,1,281,1,281,3,281,6211,8,281,1,281,3,281, + 6214,8,281,3,281,6216,8,281,1,282,1,282,1,282,1,282,1,282,3,282, + 6223,8,282,1,282,1,282,1,282,1,282,1,282,3,282,6230,8,282,5,282, + 6232,8,282,10,282,12,282,6235,9,282,1,282,1,282,1,282,1,282,3,282, + 6241,8,282,1,282,1,282,1,282,1,282,1,282,3,282,6248,8,282,1,282, + 3,282,6251,8,282,1,282,1,282,1,282,1,282,1,282,1,282,1,282,1,282, + 1,282,1,282,1,282,1,282,5,282,6265,8,282,10,282,12,282,6268,9,282, + 3,282,6270,8,282,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283, + 3,283,6280,8,283,1,283,1,283,3,283,6284,8,283,1,283,1,283,1,283, + 1,283,3,283,6290,8,283,1,283,3,283,6293,8,283,1,283,3,283,6296,8, + 283,1,283,1,283,1,283,3,283,6301,8,283,1,283,1,283,3,283,6305,8, + 283,1,283,3,283,6308,8,283,1,283,1,283,1,283,1,283,1,283,3,283,6315, + 8,283,1,283,3,283,6318,8,283,1,283,1,283,1,283,1,283,3,283,6324, + 8,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283, 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283, 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283, - 1,283,1,283,3,283,6357,8,283,1,283,3,283,6360,8,283,1,283,1,283, - 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,3,283,6372,8,283, - 1,283,3,283,6375,8,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283, - 1,283,1,283,1,283,1,283,1,283,1,283,1,283,3,283,6391,8,283,3,283, - 6393,8,283,1,283,1,283,3,283,6397,8,283,1,283,1,283,1,283,1,283, - 1,283,3,283,6404,8,283,1,283,1,283,3,283,6408,8,283,1,283,1,283, - 1,283,1,283,1,283,3,283,6415,8,283,1,283,3,283,6418,8,283,1,283, - 1,283,1,283,1,283,1,283,5,283,6425,8,283,10,283,12,283,6428,9,283, - 3,283,6430,8,283,1,283,1,283,1,283,3,283,6435,8,283,1,283,1,283, - 1,283,1,283,3,283,6441,8,283,3,283,6443,8,283,1,283,1,283,1,283, - 1,283,3,283,6449,8,283,1,283,1,283,3,283,6453,8,283,1,284,1,284, - 1,284,1,284,3,284,6459,8,284,1,284,3,284,6462,8,284,1,284,3,284, - 6465,8,284,1,285,1,285,1,285,1,285,1,285,1,285,1,285,1,285,1,285, - 1,285,1,285,3,285,6478,8,285,1,285,3,285,6481,8,285,1,286,1,286, - 1,286,1,286,3,286,6487,8,286,1,287,3,287,6490,8,287,1,287,1,287, - 1,287,1,287,1,287,1,287,3,287,6498,8,287,1,287,1,287,1,287,1,287, - 1,287,1,287,3,287,6506,8,287,1,288,1,288,1,288,1,288,3,288,6512, - 8,288,1,288,3,288,6515,8,288,1,288,1,288,3,288,6519,8,288,1,289, + 1,283,1,283,3,283,6360,8,283,1,283,3,283,6363,8,283,1,283,1,283, + 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,3,283,6375,8,283, + 1,283,3,283,6378,8,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283, + 1,283,1,283,1,283,1,283,1,283,1,283,1,283,3,283,6394,8,283,3,283, + 6396,8,283,1,283,1,283,3,283,6400,8,283,1,283,1,283,1,283,1,283, + 1,283,3,283,6407,8,283,1,283,1,283,3,283,6411,8,283,1,283,1,283, + 1,283,1,283,1,283,3,283,6418,8,283,1,283,3,283,6421,8,283,1,283, + 1,283,1,283,1,283,1,283,5,283,6428,8,283,10,283,12,283,6431,9,283, + 3,283,6433,8,283,1,283,1,283,1,283,3,283,6438,8,283,1,283,1,283, + 1,283,1,283,3,283,6444,8,283,3,283,6446,8,283,1,283,1,283,1,283, + 1,283,3,283,6452,8,283,1,283,1,283,3,283,6456,8,283,1,284,1,284, + 1,284,1,284,3,284,6462,8,284,1,284,3,284,6465,8,284,1,284,3,284, + 6468,8,284,1,285,1,285,1,285,1,285,1,285,1,285,1,285,1,285,1,285, + 1,285,1,285,3,285,6481,8,285,1,285,3,285,6484,8,285,1,286,1,286, + 1,286,1,286,3,286,6490,8,286,1,287,3,287,6493,8,287,1,287,1,287, + 1,287,1,287,1,287,1,287,3,287,6501,8,287,1,287,1,287,1,287,1,287, + 1,287,1,287,3,287,6509,8,287,1,288,1,288,1,288,1,288,3,288,6515, + 8,288,1,288,3,288,6518,8,288,1,288,1,288,3,288,6522,8,288,1,289, 1,289,1,289,1,289,1,289,1,289,1,289,1,289,1,289,1,289,1,289,1,289, - 3,289,6533,8,289,1,290,1,290,1,290,1,291,1,291,1,291,1,291,1,291, - 5,291,6543,8,291,10,291,12,291,6546,9,291,1,291,1,291,1,291,1,291, - 1,291,3,291,6553,8,291,1,291,1,291,3,291,6557,8,291,1,291,1,291, - 1,291,1,292,1,292,3,292,6564,8,292,1,292,1,292,1,292,5,292,6569, - 8,292,10,292,12,292,6572,9,292,1,293,1,293,3,293,6576,8,293,1,293, - 1,293,1,294,1,294,1,294,1,294,1,294,1,294,1,294,5,294,6587,8,294, - 10,294,12,294,6590,9,294,1,295,1,295,1,295,1,295,5,295,6596,8,295, - 10,295,12,295,6599,9,295,1,296,1,296,1,296,1,296,1,296,3,296,6606, - 8,296,1,297,1,297,1,297,3,297,6611,8,297,1,297,3,297,6614,8,297, - 1,298,1,298,1,298,3,298,6619,8,298,1,298,3,298,6622,8,298,1,299, - 1,299,1,300,1,300,1,301,1,301,1,301,1,301,1,301,1,301,3,301,6634, - 8,301,1,302,1,302,1,302,3,302,6639,8,302,1,302,1,302,1,302,1,302, - 1,302,1,302,1,302,1,302,1,302,1,302,1,302,3,302,6652,8,302,3,302, - 6654,8,302,1,302,1,302,1,302,3,302,6659,8,302,1,302,1,302,3,302, - 6663,8,302,1,302,3,302,6666,8,302,3,302,6668,8,302,1,303,1,303,1, - 303,1,303,1,303,3,303,6675,8,303,1,304,1,304,1,304,1,304,1,304,3, - 304,6682,8,304,1,304,3,304,6685,8,304,1,304,3,304,6688,8,304,1,304, - 1,304,1,304,1,304,3,304,6694,8,304,1,304,1,304,3,304,6698,8,304, - 1,305,1,305,1,305,1,305,3,305,6704,8,305,1,306,1,306,1,306,1,306, - 1,306,1,306,3,306,6712,8,306,1,306,1,306,1,307,1,307,1,307,1,307, - 1,307,3,307,6721,8,307,1,307,1,307,1,308,1,308,1,308,1,309,1,309, - 1,309,1,310,1,310,1,310,3,310,6734,8,310,1,310,1,310,1,310,3,310, - 6739,8,310,1,310,1,310,1,310,1,310,5,310,6745,8,310,10,310,12,310, - 6748,9,310,3,310,6750,8,310,1,311,1,311,1,311,3,311,6755,8,311,1, - 311,1,311,1,311,3,311,6760,8,311,1,311,1,311,1,311,1,311,5,311,6766, - 8,311,10,311,12,311,6769,9,311,3,311,6771,8,311,1,312,1,312,1,312, - 1,312,1,312,1,312,3,312,6779,8,312,1,313,1,313,3,313,6783,8,313, - 1,313,1,313,1,313,5,313,6788,8,313,10,313,12,313,6791,9,313,1,314, - 1,314,1,314,3,314,6796,8,314,1,314,3,314,6799,8,314,1,315,1,315, - 3,315,6803,8,315,1,315,1,315,1,315,1,315,1,315,1,315,1,315,1,315, - 1,315,5,315,6814,8,315,10,315,12,315,6817,9,315,1,315,1,315,1,315, - 3,315,6822,8,315,1,315,1,315,1,315,1,315,1,315,1,315,1,315,1,315, - 5,315,6832,8,315,10,315,12,315,6835,9,315,3,315,6837,8,315,1,316, - 1,316,1,317,1,317,1,317,1,317,1,317,3,317,6846,8,317,1,317,1,317, - 1,317,3,317,6851,8,317,1,318,1,318,1,319,1,319,1,320,1,320,1,321, + 3,289,6536,8,289,1,290,1,290,1,290,1,291,1,291,1,291,1,291,1,291, + 5,291,6546,8,291,10,291,12,291,6549,9,291,1,291,1,291,1,291,1,291, + 1,291,3,291,6556,8,291,1,291,1,291,3,291,6560,8,291,1,291,1,291, + 1,291,1,292,1,292,3,292,6567,8,292,1,292,1,292,1,292,5,292,6572, + 8,292,10,292,12,292,6575,9,292,1,293,1,293,3,293,6579,8,293,1,293, + 1,293,1,294,1,294,1,294,1,294,1,294,1,294,1,294,5,294,6590,8,294, + 10,294,12,294,6593,9,294,1,295,1,295,1,295,1,295,5,295,6599,8,295, + 10,295,12,295,6602,9,295,1,296,1,296,1,296,1,296,1,296,3,296,6609, + 8,296,1,297,1,297,1,297,3,297,6614,8,297,1,297,3,297,6617,8,297, + 1,298,1,298,1,298,3,298,6622,8,298,1,298,3,298,6625,8,298,1,299, + 1,299,1,300,1,300,1,301,1,301,1,301,1,301,1,301,1,301,3,301,6637, + 8,301,1,302,1,302,1,302,3,302,6642,8,302,1,302,1,302,1,302,1,302, + 1,302,1,302,1,302,1,302,1,302,1,302,1,302,3,302,6655,8,302,3,302, + 6657,8,302,1,302,1,302,1,302,3,302,6662,8,302,1,302,1,302,3,302, + 6666,8,302,1,302,3,302,6669,8,302,3,302,6671,8,302,1,303,1,303,1, + 303,1,303,1,303,3,303,6678,8,303,1,304,1,304,1,304,1,304,1,304,3, + 304,6685,8,304,1,304,3,304,6688,8,304,1,304,3,304,6691,8,304,1,304, + 1,304,1,304,1,304,3,304,6697,8,304,1,304,1,304,3,304,6701,8,304, + 1,305,1,305,1,305,1,305,3,305,6707,8,305,1,306,1,306,1,306,1,306, + 1,306,1,306,3,306,6715,8,306,1,306,1,306,1,307,1,307,1,307,1,307, + 1,307,3,307,6724,8,307,1,307,1,307,1,308,1,308,1,308,1,309,1,309, + 1,309,1,310,1,310,1,310,3,310,6737,8,310,1,310,1,310,1,310,3,310, + 6742,8,310,1,310,1,310,1,310,1,310,5,310,6748,8,310,10,310,12,310, + 6751,9,310,3,310,6753,8,310,1,311,1,311,1,311,3,311,6758,8,311,1, + 311,1,311,1,311,3,311,6763,8,311,1,311,1,311,1,311,1,311,5,311,6769, + 8,311,10,311,12,311,6772,9,311,3,311,6774,8,311,1,312,1,312,1,312, + 1,312,1,312,1,312,3,312,6782,8,312,1,313,1,313,3,313,6786,8,313, + 1,313,1,313,1,313,5,313,6791,8,313,10,313,12,313,6794,9,313,1,314, + 1,314,1,314,3,314,6799,8,314,1,314,3,314,6802,8,314,1,315,1,315, + 3,315,6806,8,315,1,315,1,315,1,315,1,315,1,315,1,315,1,315,1,315, + 1,315,5,315,6817,8,315,10,315,12,315,6820,9,315,1,315,1,315,1,315, + 3,315,6825,8,315,1,315,1,315,1,315,1,315,1,315,1,315,1,315,1,315, + 5,315,6835,8,315,10,315,12,315,6838,9,315,3,315,6840,8,315,1,316, + 1,316,1,317,1,317,1,317,1,317,1,317,3,317,6849,8,317,1,317,1,317, + 1,317,3,317,6854,8,317,1,318,1,318,1,319,1,319,1,320,1,320,1,321, 1,321,1,322,1,322,1,323,1,323,1,324,1,324,1,325,1,325,1,325,5,325, - 6870,8,325,10,325,12,325,6873,9,325,1,326,1,326,1,327,1,327,1,328, - 1,328,1,329,1,329,1,330,1,330,1,330,5,330,6886,8,330,10,330,12,330, - 6889,9,330,1,331,1,331,1,332,1,332,1,332,5,332,6896,8,332,10,332, - 12,332,6899,9,332,1,333,1,333,3,333,6903,8,333,1,334,1,334,1,334, - 3,334,6908,8,334,3,334,6910,8,334,1,334,3,334,6913,8,334,1,334,1, - 334,3,334,6917,8,334,3,334,6919,8,334,1,335,1,335,1,335,5,335,6924, - 8,335,10,335,12,335,6927,9,335,1,336,1,336,1,337,1,337,1,337,3,337, - 6934,8,337,3,337,6936,8,337,1,337,3,337,6939,8,337,1,337,1,337,3, - 337,6943,8,337,1,337,1,337,3,337,6947,8,337,1,338,1,338,1,338,3, - 338,6952,8,338,3,338,6954,8,338,1,338,3,338,6957,8,338,1,338,1,338, - 3,338,6961,8,338,3,338,6963,8,338,1,339,1,339,1,339,1,339,1,339, - 3,339,6970,8,339,3,339,6972,8,339,3,339,6974,8,339,1,340,1,340,1, - 341,1,341,1,342,1,342,1,343,1,343,1,343,5,343,6985,8,343,10,343, - 12,343,6988,9,343,1,344,1,344,1,345,1,345,1,345,1,345,1,345,3,345, - 6997,8,345,1,345,3,345,7000,8,345,1,345,3,345,7003,8,345,1,346,1, + 6873,8,325,10,325,12,325,6876,9,325,1,326,1,326,1,327,1,327,1,328, + 1,328,1,329,1,329,1,330,1,330,1,330,5,330,6889,8,330,10,330,12,330, + 6892,9,330,1,331,1,331,1,332,1,332,1,332,5,332,6899,8,332,10,332, + 12,332,6902,9,332,1,333,1,333,3,333,6906,8,333,1,334,1,334,1,334, + 3,334,6911,8,334,3,334,6913,8,334,1,334,3,334,6916,8,334,1,334,1, + 334,3,334,6920,8,334,3,334,6922,8,334,1,335,1,335,1,335,5,335,6927, + 8,335,10,335,12,335,6930,9,335,1,336,1,336,1,337,1,337,1,337,3,337, + 6937,8,337,3,337,6939,8,337,1,337,3,337,6942,8,337,1,337,1,337,3, + 337,6946,8,337,1,337,1,337,3,337,6950,8,337,1,338,1,338,1,338,3, + 338,6955,8,338,3,338,6957,8,338,1,338,3,338,6960,8,338,1,338,1,338, + 3,338,6964,8,338,3,338,6966,8,338,1,339,1,339,1,339,1,339,1,339, + 3,339,6973,8,339,3,339,6975,8,339,3,339,6977,8,339,1,340,1,340,1, + 341,1,341,1,342,1,342,1,343,1,343,1,343,5,343,6988,8,343,10,343, + 12,343,6991,9,343,1,344,1,344,1,345,1,345,1,345,1,345,1,345,3,345, + 7000,8,345,1,345,3,345,7003,8,345,1,345,3,345,7006,8,345,1,346,1, 346,1,346,1,346,1,347,1,347,1,347,1,348,1,348,1,348,1,348,3,348, - 7016,8,348,1,349,1,349,1,350,1,350,3,350,7022,8,350,1,350,3,350, - 7025,8,350,1,351,1,351,1,352,1,352,1,352,1,352,3,352,7033,8,352, - 1,353,1,353,1,354,1,354,1,354,3,354,7040,8,354,1,355,1,355,1,356, + 7019,8,348,1,349,1,349,1,350,1,350,3,350,7025,8,350,1,350,3,350, + 7028,8,350,1,351,1,351,1,352,1,352,1,352,1,352,3,352,7036,8,352, + 1,353,1,353,1,354,1,354,1,354,3,354,7043,8,354,1,355,1,355,1,356, 1,356,1,356,1,356,1,356,1,356,1,356,1,356,1,356,1,356,1,356,1,356, - 1,356,1,356,4,356,7058,8,356,11,356,12,356,7059,1,357,1,357,1,357, - 1,357,1,357,3,357,7067,8,357,3,357,7069,8,357,1,358,1,358,1,358, - 4,358,7074,8,358,11,358,12,358,7075,3,358,7078,8,358,1,359,1,359, - 3,359,7082,8,359,1,360,1,360,1,360,5,360,7087,8,360,10,360,12,360, - 7090,9,360,1,361,1,361,1,361,3,361,7095,8,361,1,362,1,362,1,362, - 1,362,1,362,1,362,1,362,1,362,1,362,3,362,7106,8,362,1,363,1,363, - 1,363,1,363,3,363,7112,8,363,1,364,1,364,1,364,1,364,1,364,1,364, - 1,364,3,364,7121,8,364,1,365,1,365,1,366,1,366,3,366,7127,8,366, - 1,367,3,367,7130,8,367,1,367,1,367,3,367,7134,8,367,1,367,4,367, - 7137,8,367,11,367,12,367,7138,1,367,3,367,7142,8,367,1,367,1,367, - 3,367,7146,8,367,1,367,1,367,3,367,7150,8,367,3,367,7152,8,367,1, - 368,1,368,1,369,3,369,7157,8,369,1,369,1,369,1,370,3,370,7162,8, - 370,1,370,1,370,1,371,1,371,1,371,1,371,1,371,1,371,1,371,1,371, - 1,371,3,371,7175,8,371,1,371,3,371,7178,8,371,1,372,1,372,3,372, - 7182,8,372,1,372,3,372,7185,8,372,1,372,3,372,7188,8,372,1,372,1, - 372,1,372,3,372,7193,8,372,1,372,1,372,1,372,3,372,7198,8,372,1, - 372,1,372,1,372,1,372,3,372,7204,8,372,1,372,3,372,7207,8,372,1, - 372,1,372,1,372,3,372,7212,8,372,1,372,3,372,7215,8,372,1,372,1, - 372,1,372,3,372,7220,8,372,1,372,3,372,7223,8,372,1,372,1,372,3, - 372,7227,8,372,1,372,5,372,7230,8,372,10,372,12,372,7233,9,372,1, - 372,1,372,3,372,7237,8,372,1,372,5,372,7240,8,372,10,372,12,372, - 7243,9,372,1,372,1,372,3,372,7247,8,372,1,372,3,372,7250,8,372,1, - 372,5,372,7253,8,372,10,372,12,372,7256,9,372,1,372,1,372,3,372, - 7260,8,372,1,372,5,372,7263,8,372,10,372,12,372,7266,9,372,1,372, - 1,372,1,372,3,372,7271,8,372,1,372,1,372,1,372,3,372,7276,8,372, - 1,372,1,372,1,372,3,372,7281,8,372,1,372,1,372,1,372,3,372,7286, - 8,372,1,372,1,372,3,372,7290,8,372,1,372,3,372,7293,8,372,1,372, - 1,372,1,372,3,372,7298,8,372,1,372,1,372,3,372,7302,8,372,1,372, - 1,372,3,372,7306,8,372,1,373,1,373,1,373,1,373,5,373,7312,8,373, - 10,373,12,373,7315,9,373,1,373,1,373,1,374,1,374,3,374,7321,8,374, - 1,374,1,374,3,374,7325,8,374,1,374,1,374,1,374,3,374,7330,8,374, - 1,374,1,374,1,374,3,374,7335,8,374,1,374,1,374,3,374,7339,8,374, - 3,374,7341,8,374,1,374,3,374,7344,8,374,1,375,1,375,1,375,1,375, - 1,376,1,376,1,376,1,376,1,376,1,376,1,377,1,377,1,377,1,377,3,377, - 7360,8,377,1,377,1,377,1,378,1,378,1,378,1,378,5,378,7368,8,378, - 10,378,12,378,7371,9,378,1,378,1,378,1,379,1,379,1,379,5,379,7378, - 8,379,10,379,12,379,7381,9,379,1,380,1,380,1,380,1,380,5,380,7387, - 8,380,10,380,12,380,7390,9,380,1,381,1,381,1,381,1,381,5,381,7396, - 8,381,10,381,12,381,7399,9,381,1,381,1,381,1,382,1,382,3,382,7405, - 8,382,1,383,1,383,1,383,5,383,7410,8,383,10,383,12,383,7413,9,383, - 1,384,1,384,1,384,5,384,7418,8,384,10,384,12,384,7421,9,384,1,385, - 1,385,1,385,5,385,7426,8,385,10,385,12,385,7429,9,385,1,386,1,386, - 1,386,1,386,1,386,1,386,1,386,1,386,1,386,3,386,7440,8,386,1,386, - 1,386,1,386,1,386,1,386,3,386,7447,8,386,1,386,1,386,1,386,1,386, - 1,386,1,386,1,386,1,386,3,386,7457,8,386,1,387,1,387,1,387,3,387, - 7462,8,387,1,387,3,387,7465,8,387,1,387,1,387,1,387,3,387,7470,8, - 387,1,387,3,387,7473,8,387,1,388,1,388,1,388,1,389,1,389,1,389,1, - 389,1,390,1,390,1,390,1,391,1,391,1,391,1,391,1,391,1,391,1,391, - 1,391,1,391,1,391,3,391,7495,8,391,1,391,1,391,1,391,1,391,1,391, - 1,391,1,391,3,391,7504,8,391,1,391,3,391,7507,8,391,1,392,1,392, - 1,392,3,392,7512,8,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392, - 1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392, - 1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392, - 4,392,7543,8,392,11,392,12,392,7544,1,392,1,392,3,392,7549,8,392, - 1,392,1,392,1,392,1,392,1,392,4,392,7556,8,392,11,392,12,392,7557, - 1,392,1,392,3,392,7562,8,392,1,392,1,392,1,392,1,392,1,392,1,392, - 1,392,3,392,7571,8,392,1,392,1,392,1,392,1,392,1,392,1,392,3,392, - 7579,8,392,1,392,1,392,1,392,3,392,7584,8,392,1,392,1,392,1,392, - 1,392,1,392,1,392,3,392,7592,8,392,1,392,1,392,1,392,3,392,7597, - 8,392,1,392,1,392,1,392,3,392,7602,8,392,3,392,7604,8,392,1,392, - 1,392,1,392,1,392,1,392,1,392,1,392,3,392,7613,8,392,1,392,1,392, - 1,392,3,392,7618,8,392,1,392,1,392,1,392,1,392,1,392,1,392,3,392, - 7626,8,392,1,392,1,392,1,392,3,392,7631,8,392,1,392,1,392,1,392, - 1,392,1,392,1,392,3,392,7639,8,392,1,392,1,392,1,392,1,392,1,392, - 1,392,3,392,7647,8,392,1,392,3,392,7650,8,392,1,392,1,392,1,392, - 1,392,1,392,1,392,1,392,1,392,3,392,7660,8,392,1,392,1,392,1,392, - 1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392,1,392, - 1,392,1,392,3,392,7678,8,392,1,392,3,392,7681,8,392,1,392,3,392, - 7684,8,392,1,392,1,392,3,392,7688,8,392,1,393,1,393,1,393,1,393, - 1,393,1,394,1,394,1,394,1,394,5,394,7699,8,394,10,394,12,394,7702, - 9,394,1,394,1,394,1,394,1,394,1,394,3,394,7709,8,394,1,395,1,395, - 3,395,7713,8,395,1,396,1,396,1,396,3,396,7718,8,396,1,396,1,396, - 1,396,3,396,7723,8,396,1,396,1,396,1,396,1,396,3,396,7729,8,396, - 1,396,1,396,1,396,3,396,7734,8,396,1,396,1,396,3,396,7738,8,396, - 1,396,1,396,1,396,3,396,7743,8,396,1,396,1,396,1,396,3,396,7748, - 8,396,1,396,1,396,1,396,3,396,7753,8,396,1,396,1,396,1,396,1,396, - 1,396,1,396,5,396,7761,8,396,10,396,12,396,7764,9,396,3,396,7766, - 8,396,1,396,1,396,3,396,7770,8,396,1,396,1,396,3,396,7774,8,396, - 1,397,1,397,1,397,1,397,1,397,3,397,7781,8,397,1,397,1,397,3,397, - 7785,8,397,1,397,1,397,1,397,1,397,1,397,1,397,1,397,1,397,1,397, - 1,397,1,397,1,397,1,397,1,397,1,397,1,397,1,397,1,397,1,397,1,397, - 1,397,1,397,1,397,1,397,1,397,1,397,1,397,3,397,7814,8,397,1,398, - 1,398,1,398,1,398,1,398,1,398,3,398,7822,8,398,1,399,3,399,7825, - 8,399,1,399,3,399,7828,8,399,1,399,3,399,7831,8,399,1,399,3,399, - 7834,8,399,1,400,1,400,1,401,1,401,1,401,1,402,1,402,1,403,1,403, - 3,403,7845,8,403,1,404,1,404,1,404,1,404,1,404,1,405,1,405,1,405, - 1,405,1,405,1,405,1,405,3,405,7859,8,405,1,406,1,406,1,406,1,406, - 1,406,5,406,7866,8,406,10,406,12,406,7869,9,406,1,407,1,407,1,407, - 1,407,1,407,1,407,1,407,1,407,1,407,1,407,1,407,1,407,1,407,1,407, - 1,407,1,407,1,407,1,407,1,407,1,407,1,407,1,407,1,407,1,407,3,407, - 7895,8,407,1,408,1,408,1,408,1,408,1,408,1,409,1,409,1,409,5,409, - 7905,8,409,10,409,12,409,7908,9,409,1,410,1,410,1,410,3,410,7913, - 8,410,1,411,1,411,1,411,1,411,1,411,1,411,3,411,7921,8,411,1,411, - 1,411,1,411,3,411,7926,8,411,1,411,1,411,1,411,1,411,5,411,7932, - 8,411,10,411,12,411,7935,9,411,1,412,1,412,1,412,1,412,1,412,3,412, - 7942,8,412,1,412,1,412,1,412,1,412,1,412,1,412,1,412,1,412,1,412, - 1,412,1,412,3,412,7955,8,412,1,412,1,412,1,412,1,412,3,412,7961, - 8,412,1,412,1,412,1,412,1,412,3,412,7967,8,412,1,412,1,412,1,412, - 1,412,1,412,1,412,1,412,1,412,1,412,1,412,1,412,1,412,1,412,3,412, - 7982,8,412,1,412,1,412,3,412,7986,8,412,1,412,1,412,1,412,1,412, - 3,412,7992,8,412,1,412,1,412,1,412,1,412,1,412,1,412,1,412,5,412, - 8001,8,412,10,412,12,412,8004,9,412,1,413,1,413,1,413,1,413,1,413, - 1,413,1,413,1,413,1,413,1,413,1,413,1,413,1,413,1,413,1,413,1,413, - 5,413,8022,8,413,10,413,12,413,8025,9,413,1,413,1,413,1,413,1,413, - 1,413,1,413,1,413,4,413,8034,8,413,11,413,12,413,8035,1,413,1,413, - 1,413,1,413,1,413,1,413,1,413,1,413,1,413,1,413,1,413,1,413,1,413, - 1,413,1,413,1,413,3,413,8054,8,413,1,413,1,413,1,413,1,413,1,413, - 1,413,1,413,1,413,1,413,1,413,1,413,1,413,1,413,1,413,1,413,5,413, - 8071,8,413,10,413,12,413,8074,9,413,1,414,1,414,1,415,1,415,1,415, - 1,415,1,415,1,415,1,415,1,415,3,415,8086,8,415,1,416,1,416,1,416, - 1,416,1,416,1,416,1,416,3,416,8095,8,416,1,417,1,417,1,417,1,417, - 1,417,1,417,1,417,3,417,8104,8,417,1,418,1,418,1,418,1,418,1,418, - 1,418,1,418,3,418,8113,8,418,1,419,1,419,1,420,1,420,1,420,1,420, - 1,420,3,420,8122,8,420,1,421,1,421,1,422,1,422,1,423,1,423,1,424, - 1,424,1,425,1,425,1,426,1,426,1,427,1,427,1,427,0,5,214,216,822, - 824,826,428,0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36, + 1,356,1,356,4,356,7061,8,356,11,356,12,356,7062,1,357,1,357,1,357, + 1,357,1,357,3,357,7070,8,357,3,357,7072,8,357,1,358,1,358,1,358, + 4,358,7077,8,358,11,358,12,358,7078,3,358,7081,8,358,1,359,1,359, + 3,359,7085,8,359,1,360,1,360,1,360,5,360,7090,8,360,10,360,12,360, + 7093,9,360,1,361,1,361,1,361,3,361,7098,8,361,1,362,1,362,1,362, + 1,362,1,362,1,362,1,362,1,362,1,362,3,362,7109,8,362,1,363,1,363, + 1,363,1,363,3,363,7115,8,363,1,364,1,364,1,365,1,365,3,365,7121, + 8,365,1,366,3,366,7124,8,366,1,366,1,366,3,366,7128,8,366,1,366, + 4,366,7131,8,366,11,366,12,366,7132,1,366,3,366,7136,8,366,1,366, + 1,366,3,366,7140,8,366,1,366,1,366,3,366,7144,8,366,3,366,7146,8, + 366,1,367,1,367,1,368,3,368,7151,8,368,1,368,1,368,1,369,3,369,7156, + 8,369,1,369,1,369,1,370,1,370,1,370,1,370,1,370,1,370,1,370,1,370, + 1,370,3,370,7169,8,370,1,370,3,370,7172,8,370,1,371,1,371,3,371, + 7176,8,371,1,371,3,371,7179,8,371,1,371,3,371,7182,8,371,1,371,1, + 371,1,371,3,371,7187,8,371,1,371,1,371,1,371,3,371,7192,8,371,1, + 371,1,371,1,371,1,371,3,371,7198,8,371,1,371,3,371,7201,8,371,1, + 371,1,371,1,371,3,371,7206,8,371,1,371,3,371,7209,8,371,1,371,1, + 371,1,371,3,371,7214,8,371,1,371,3,371,7217,8,371,1,371,1,371,3, + 371,7221,8,371,1,371,5,371,7224,8,371,10,371,12,371,7227,9,371,1, + 371,1,371,3,371,7231,8,371,1,371,5,371,7234,8,371,10,371,12,371, + 7237,9,371,1,371,1,371,3,371,7241,8,371,1,371,3,371,7244,8,371,1, + 371,5,371,7247,8,371,10,371,12,371,7250,9,371,1,371,1,371,3,371, + 7254,8,371,1,371,5,371,7257,8,371,10,371,12,371,7260,9,371,1,371, + 1,371,1,371,3,371,7265,8,371,1,371,1,371,1,371,3,371,7270,8,371, + 1,371,1,371,1,371,3,371,7275,8,371,1,371,1,371,1,371,3,371,7280, + 8,371,1,371,1,371,3,371,7284,8,371,1,371,3,371,7287,8,371,1,371, + 1,371,1,371,3,371,7292,8,371,1,371,1,371,3,371,7296,8,371,1,371, + 1,371,3,371,7300,8,371,1,372,1,372,1,372,1,372,5,372,7306,8,372, + 10,372,12,372,7309,9,372,1,372,1,372,1,373,1,373,3,373,7315,8,373, + 1,373,1,373,3,373,7319,8,373,1,373,1,373,1,373,3,373,7324,8,373, + 1,373,1,373,1,373,3,373,7329,8,373,1,373,1,373,3,373,7333,8,373, + 3,373,7335,8,373,1,373,3,373,7338,8,373,1,374,1,374,1,374,1,374, + 1,375,1,375,1,375,1,375,1,375,1,375,1,376,1,376,1,376,1,376,3,376, + 7354,8,376,1,376,1,376,1,377,1,377,1,377,1,377,5,377,7362,8,377, + 10,377,12,377,7365,9,377,1,377,1,377,1,378,1,378,1,378,5,378,7372, + 8,378,10,378,12,378,7375,9,378,1,379,1,379,1,379,1,379,5,379,7381, + 8,379,10,379,12,379,7384,9,379,1,380,1,380,1,380,1,380,5,380,7390, + 8,380,10,380,12,380,7393,9,380,1,380,1,380,1,381,1,381,3,381,7399, + 8,381,1,382,1,382,1,382,5,382,7404,8,382,10,382,12,382,7407,9,382, + 1,383,1,383,1,383,5,383,7412,8,383,10,383,12,383,7415,9,383,1,384, + 1,384,1,384,5,384,7420,8,384,10,384,12,384,7423,9,384,1,385,1,385, + 1,385,1,385,1,385,1,385,1,385,1,385,1,385,3,385,7434,8,385,1,385, + 1,385,1,385,1,385,1,385,3,385,7441,8,385,1,385,1,385,1,385,1,385, + 1,385,1,385,1,385,1,385,3,385,7451,8,385,1,386,1,386,1,386,3,386, + 7456,8,386,1,386,3,386,7459,8,386,1,386,1,386,1,386,3,386,7464,8, + 386,1,386,3,386,7467,8,386,1,387,1,387,1,387,1,388,1,388,1,388,1, + 388,1,389,1,389,1,389,1,390,1,390,1,390,1,390,1,390,1,390,1,390, + 1,390,1,390,1,390,3,390,7489,8,390,1,390,1,390,1,390,1,390,1,390, + 1,390,1,390,3,390,7498,8,390,1,390,3,390,7501,8,390,1,391,1,391, + 1,391,3,391,7506,8,391,1,391,1,391,1,391,1,391,1,391,1,391,1,391, + 1,391,1,391,1,391,1,391,1,391,1,391,1,391,1,391,1,391,1,391,1,391, + 1,391,1,391,1,391,1,391,1,391,1,391,1,391,1,391,1,391,1,391,1,391, + 4,391,7537,8,391,11,391,12,391,7538,1,391,1,391,3,391,7543,8,391, + 1,391,1,391,1,391,1,391,1,391,4,391,7550,8,391,11,391,12,391,7551, + 1,391,1,391,3,391,7556,8,391,1,391,1,391,1,391,1,391,1,391,1,391, + 1,391,3,391,7565,8,391,1,391,1,391,1,391,1,391,1,391,1,391,3,391, + 7573,8,391,1,391,1,391,1,391,3,391,7578,8,391,1,391,1,391,1,391, + 1,391,1,391,1,391,3,391,7586,8,391,1,391,1,391,1,391,3,391,7591, + 8,391,1,391,1,391,1,391,3,391,7596,8,391,3,391,7598,8,391,1,391, + 1,391,1,391,1,391,1,391,1,391,1,391,3,391,7607,8,391,1,391,1,391, + 1,391,3,391,7612,8,391,1,391,1,391,1,391,1,391,1,391,1,391,3,391, + 7620,8,391,1,391,1,391,1,391,3,391,7625,8,391,1,391,1,391,1,391, + 1,391,1,391,1,391,3,391,7633,8,391,1,391,1,391,1,391,1,391,1,391, + 1,391,3,391,7641,8,391,1,391,3,391,7644,8,391,1,391,1,391,1,391, + 1,391,1,391,1,391,1,391,1,391,3,391,7654,8,391,1,391,1,391,1,391, + 1,391,1,391,1,391,1,391,1,391,1,391,1,391,1,391,1,391,1,391,1,391, + 1,391,1,391,3,391,7672,8,391,1,391,3,391,7675,8,391,1,391,3,391, + 7678,8,391,1,391,1,391,3,391,7682,8,391,1,392,1,392,1,392,1,392, + 1,392,1,393,1,393,1,393,1,393,5,393,7693,8,393,10,393,12,393,7696, + 9,393,1,393,1,393,1,393,1,393,1,393,3,393,7703,8,393,1,394,1,394, + 3,394,7707,8,394,1,395,1,395,1,395,3,395,7712,8,395,1,395,1,395, + 1,395,3,395,7717,8,395,1,395,1,395,1,395,1,395,3,395,7723,8,395, + 1,395,1,395,1,395,3,395,7728,8,395,1,395,1,395,3,395,7732,8,395, + 1,395,1,395,1,395,3,395,7737,8,395,1,395,1,395,1,395,3,395,7742, + 8,395,1,395,1,395,1,395,3,395,7747,8,395,1,395,1,395,1,395,1,395, + 1,395,1,395,5,395,7755,8,395,10,395,12,395,7758,9,395,3,395,7760, + 8,395,1,395,1,395,3,395,7764,8,395,1,395,1,395,3,395,7768,8,395, + 1,396,1,396,1,396,1,396,1,396,3,396,7775,8,396,1,396,1,396,3,396, + 7779,8,396,1,396,1,396,1,396,1,396,1,396,1,396,1,396,1,396,1,396, + 1,396,1,396,1,396,1,396,1,396,1,396,1,396,1,396,1,396,1,396,1,396, + 1,396,1,396,1,396,1,396,1,396,1,396,1,396,3,396,7808,8,396,1,397, + 1,397,1,397,1,397,1,397,1,397,3,397,7816,8,397,1,398,3,398,7819, + 8,398,1,398,3,398,7822,8,398,1,398,3,398,7825,8,398,1,398,3,398, + 7828,8,398,1,399,1,399,1,400,1,400,1,400,1,401,1,401,1,402,1,402, + 3,402,7839,8,402,1,403,1,403,1,403,1,403,1,403,1,404,1,404,1,404, + 1,404,1,404,1,404,1,404,3,404,7853,8,404,1,405,1,405,1,405,1,405, + 1,405,5,405,7860,8,405,10,405,12,405,7863,9,405,1,406,1,406,1,406, + 1,406,1,406,1,406,1,406,1,406,1,406,1,406,1,406,1,406,1,406,1,406, + 1,406,1,406,1,406,1,406,1,406,1,406,1,406,1,406,1,406,1,406,3,406, + 7889,8,406,1,407,1,407,1,407,1,407,1,407,1,408,1,408,1,408,5,408, + 7899,8,408,10,408,12,408,7902,9,408,1,409,1,409,1,409,3,409,7907, + 8,409,1,410,1,410,1,410,1,410,1,410,1,410,3,410,7915,8,410,1,410, + 1,410,1,410,3,410,7920,8,410,1,410,1,410,1,410,1,410,5,410,7926, + 8,410,10,410,12,410,7929,9,410,1,411,1,411,1,411,1,411,1,411,3,411, + 7936,8,411,1,411,1,411,1,411,1,411,1,411,1,411,1,411,1,411,1,411, + 1,411,1,411,3,411,7949,8,411,1,411,1,411,1,411,1,411,3,411,7955, + 8,411,1,411,1,411,1,411,1,411,3,411,7961,8,411,1,411,1,411,1,411, + 1,411,1,411,1,411,1,411,1,411,1,411,1,411,1,411,1,411,1,411,3,411, + 7976,8,411,1,411,1,411,3,411,7980,8,411,1,411,1,411,1,411,1,411, + 3,411,7986,8,411,1,411,1,411,1,411,1,411,1,411,1,411,1,411,5,411, + 7995,8,411,10,411,12,411,7998,9,411,1,412,1,412,1,412,1,412,1,412, + 1,412,1,412,1,412,1,412,1,412,1,412,1,412,1,412,1,412,1,412,1,412, + 5,412,8016,8,412,10,412,12,412,8019,9,412,1,412,1,412,1,412,1,412, + 1,412,1,412,1,412,4,412,8028,8,412,11,412,12,412,8029,1,412,1,412, + 1,412,1,412,1,412,1,412,1,412,1,412,1,412,1,412,1,412,1,412,1,412, + 1,412,1,412,1,412,3,412,8048,8,412,1,412,1,412,1,412,1,412,1,412, + 1,412,1,412,1,412,1,412,1,412,1,412,1,412,1,412,1,412,1,412,5,412, + 8065,8,412,10,412,12,412,8068,9,412,1,413,1,413,1,414,1,414,1,414, + 1,414,1,414,1,414,1,414,1,414,3,414,8080,8,414,1,415,1,415,1,415, + 1,415,1,415,1,415,1,415,3,415,8089,8,415,1,416,1,416,1,416,1,416, + 1,416,1,416,1,416,3,416,8098,8,416,1,417,1,417,1,417,1,417,1,417, + 1,417,1,417,3,417,8107,8,417,1,418,1,418,1,419,1,419,1,419,1,419, + 1,419,3,419,8116,8,419,1,420,1,420,1,421,1,421,1,422,1,422,1,423, + 1,423,1,424,1,424,1,425,1,425,1,426,1,426,1,426,0,5,214,216,820, + 822,824,427,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, @@ -49535,40 +49497,40 @@ export class MySqlParser extends SQLParserBase { 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, - 0,160,2,0,39,39,152,152,2,0,508,508,514,514,3,0,69,69,161,161,182, - 182,3,0,42,42,357,357,430,430,4,0,42,42,389,389,505,505,595,595, - 4,0,208,208,210,210,216,216,649,649,2,0,494,494,882,882,2,0,79,79, - 143,143,2,0,16,16,306,306,3,0,44,44,86,86,185,185,2,0,406,406,538, - 538,3,0,486,486,661,661,670,670,2,0,364,364,436,436,2,0,325,325, - 450,450,2,0,42,42,871,872,2,0,37,37,678,678,2,0,323,323,418,418, - 2,0,435,435,686,686,3,0,80,80,85,85,126,126,2,0,82,82,92,92,2,0, - 69,69,161,161,3,0,42,42,374,374,403,403,3,0,42,42,370,370,802,802, - 2,0,648,648,685,685,3,0,408,408,526,526,597,597,2,0,329,329,522, - 522,1,0,871,872,2,0,882,882,889,889,2,0,82,82,360,360,2,0,523,523, - 882,882,2,0,524,524,882,882,3,0,402,402,445,445,502,502,7,0,42,42, - 342,342,345,345,374,374,403,403,554,554,889,889,2,0,494,494,506, - 506,1,0,872,873,2,0,6,6,51,51,2,0,5,5,81,81,2,0,27,27,31,31,4,0, - 42,42,357,357,430,430,434,434,2,0,368,368,375,375,2,0,369,369,425, - 425,2,0,13,13,176,176,2,0,194,194,690,690,2,0,22,22,146,146,3,0, - 43,43,76,76,107,107,2,0,7,7,49,49,2,0,107,107,347,347,2,0,337,337, - 398,398,2,0,102,102,587,587,2,0,43,43,107,107,3,0,59,59,181,181, - 828,828,2,0,185,185,594,594,2,0,159,159,503,503,4,0,402,402,445, - 445,501,501,542,542,2,0,402,402,501,501,2,0,14,14,45,45,3,0,66,66, - 79,79,187,187,2,0,35,35,84,84,2,0,98,98,150,150,2,0,7,7,49,50,1, - 0,637,638,2,0,173,173,752,752,2,0,413,413,593,593,2,0,228,228,453, - 453,2,0,563,563,598,598,8,0,108,108,455,455,459,460,462,462,464, - 464,467,476,499,499,557,557,6,0,456,458,461,461,463,463,465,465, - 477,477,558,558,7,0,109,109,411,411,416,416,454,454,466,466,573, - 573,617,617,2,0,116,116,882,882,2,0,118,119,507,507,7,0,499,499, - 557,557,606,609,611,611,619,619,622,628,630,632,6,0,558,558,610, - 610,612,612,614,616,618,618,620,620,7,0,412,412,416,416,573,573, - 613,613,617,617,621,621,629,629,3,0,70,70,118,119,507,507,2,0,438, - 438,639,639,2,0,633,633,635,635,2,0,317,317,640,640,2,0,91,91,577, - 577,2,0,51,51,362,362,3,0,32,32,61,61,180,180,2,0,15,15,340,340, - 2,0,678,678,835,835,3,0,132,132,173,173,409,409,3,0,6,6,51,51,492, - 492,3,0,13,13,20,20,188,188,2,0,42,42,122,122,2,0,104,104,183,183, - 1,0,873,874,2,0,333,333,598,598,2,0,40,40,684,684,2,0,392,392,549, + 824,826,828,830,832,834,836,838,840,842,844,846,848,850,852,0,160, + 2,0,39,39,152,152,2,0,508,508,514,514,3,0,69,69,161,161,182,182, + 3,0,42,42,357,357,430,430,4,0,42,42,389,389,505,505,595,595,4,0, + 208,208,210,210,216,216,649,649,2,0,494,494,882,882,2,0,79,79,143, + 143,2,0,16,16,306,306,3,0,44,44,86,86,185,185,2,0,406,406,538,538, + 3,0,486,486,661,661,670,670,2,0,364,364,436,436,2,0,325,325,450, + 450,2,0,42,42,871,872,2,0,37,37,678,678,2,0,323,323,418,418,2,0, + 435,435,686,686,3,0,80,80,85,85,126,126,2,0,82,82,92,92,2,0,69,69, + 161,161,3,0,42,42,374,374,403,403,3,0,42,42,370,370,802,802,2,0, + 648,648,685,685,3,0,408,408,526,526,597,597,2,0,329,329,522,522, + 1,0,871,872,2,0,882,882,889,889,2,0,82,82,360,360,2,0,523,523,882, + 882,2,0,524,524,882,882,3,0,402,402,445,445,502,502,7,0,42,42,342, + 342,345,345,374,374,403,403,554,554,889,889,2,0,494,494,506,506, + 1,0,872,873,2,0,6,6,51,51,2,0,5,5,81,81,2,0,27,27,31,31,4,0,42,42, + 357,357,430,430,434,434,2,0,368,368,375,375,2,0,369,369,425,425, + 2,0,13,13,176,176,2,0,194,194,690,690,2,0,22,22,146,146,3,0,43,43, + 76,76,107,107,2,0,7,7,49,49,2,0,107,107,347,347,2,0,337,337,398, + 398,2,0,102,102,587,587,2,0,43,43,107,107,3,0,59,59,181,181,828, + 828,2,0,185,185,594,594,2,0,159,159,503,503,4,0,402,402,445,445, + 501,501,542,542,2,0,402,402,501,501,2,0,14,14,45,45,3,0,66,66,79, + 79,187,187,2,0,35,35,84,84,2,0,98,98,150,150,2,0,7,7,49,50,1,0,637, + 638,2,0,173,173,752,752,2,0,413,413,593,593,2,0,228,228,453,453, + 2,0,563,563,598,598,8,0,108,108,455,455,459,460,462,462,464,464, + 467,476,499,499,557,557,6,0,456,458,461,461,463,463,465,465,477, + 477,558,558,7,0,109,109,411,411,416,416,454,454,466,466,573,573, + 617,617,2,0,116,116,882,882,2,0,118,119,507,507,7,0,499,499,557, + 557,606,609,611,611,619,619,622,628,630,632,6,0,558,558,610,610, + 612,612,614,616,618,618,620,620,7,0,412,412,416,416,573,573,613, + 613,617,617,621,621,629,629,3,0,70,70,118,119,507,507,2,0,438,438, + 639,639,2,0,633,633,635,635,2,0,317,317,640,640,2,0,91,91,577,577, + 2,0,51,51,362,362,3,0,32,32,61,61,180,180,2,0,15,15,340,340,2,0, + 678,678,835,835,3,0,132,132,173,173,409,409,3,0,6,6,51,51,492,492, + 3,0,13,13,20,20,188,188,2,0,42,42,122,122,2,0,104,104,183,183,1, + 0,873,874,2,0,333,333,598,598,2,0,40,40,684,684,2,0,392,392,549, 549,2,0,115,115,450,450,3,0,413,413,531,531,893,894,2,0,841,841, 857,857,2,0,318,318,559,559,2,0,68,68,80,80,3,0,132,132,178,178, 385,385,2,0,493,493,645,645,2,0,383,383,688,688,3,0,82,82,93,93, @@ -49607,2842 +49569,2840 @@ export class MySqlParser extends SQLParserBase { 838,24,0,39,39,98,98,150,150,152,152,219,221,223,223,253,254,262, 265,267,269,272,276,296,296,435,435,686,686,696,703,746,746,813, 813,816,821,823,824,826,827,829,831,834,834,836,836,840,840,856, - 856,9507,0,859,1,0,0,0,2,869,1,0,0,0,4,878,1,0,0,0,6,880,1,0,0,0, - 8,922,1,0,0,0,10,941,1,0,0,0,12,952,1,0,0,0,14,968,1,0,0,0,16,973, - 1,0,0,0,18,985,1,0,0,0,20,1020,1,0,0,0,22,1030,1,0,0,0,24,1032,1, - 0,0,0,26,1044,1,0,0,0,28,1074,1,0,0,0,30,1110,1,0,0,0,32,1161,1, - 0,0,0,34,1190,1,0,0,0,36,1226,1,0,0,0,38,1240,1,0,0,0,40,1247,1, - 0,0,0,42,1344,1,0,0,0,44,1346,1,0,0,0,46,1383,1,0,0,0,48,1447,1, - 0,0,0,50,1472,1,0,0,0,52,1478,1,0,0,0,54,1500,1,0,0,0,56,1587,1, - 0,0,0,58,1594,1,0,0,0,60,1596,1,0,0,0,62,1601,1,0,0,0,64,1641,1, - 0,0,0,66,1647,1,0,0,0,68,1649,1,0,0,0,70,1670,1,0,0,0,72,1677,1, - 0,0,0,74,1679,1,0,0,0,76,1704,1,0,0,0,78,1707,1,0,0,0,80,1712,1, - 0,0,0,82,1738,1,0,0,0,84,1754,1,0,0,0,86,1756,1,0,0,0,88,1850,1, - 0,0,0,90,1853,1,0,0,0,92,1865,1,0,0,0,94,1869,1,0,0,0,96,1919,1, - 0,0,0,98,1921,1,0,0,0,100,1949,1,0,0,0,102,1959,1,0,0,0,104,2146, - 1,0,0,0,106,2148,1,0,0,0,108,2150,1,0,0,0,110,2153,1,0,0,0,112,2228, - 1,0,0,0,114,2251,1,0,0,0,116,2399,1,0,0,0,118,2404,1,0,0,0,120,2406, - 1,0,0,0,122,2416,1,0,0,0,124,2472,1,0,0,0,126,2492,1,0,0,0,128,2494, - 1,0,0,0,130,2529,1,0,0,0,132,2538,1,0,0,0,134,2545,1,0,0,0,136,2568, - 1,0,0,0,138,2577,1,0,0,0,140,2592,1,0,0,0,142,2614,1,0,0,0,144,2670, - 1,0,0,0,146,2966,1,0,0,0,148,3066,1,0,0,0,150,3068,1,0,0,0,152,3075, - 1,0,0,0,154,3082,1,0,0,0,156,3105,1,0,0,0,158,3115,1,0,0,0,160,3122, - 1,0,0,0,162,3129,1,0,0,0,164,3136,1,0,0,0,166,3145,1,0,0,0,168,3157, - 1,0,0,0,170,3170,1,0,0,0,172,3177,1,0,0,0,174,3193,1,0,0,0,176,3220, - 1,0,0,0,178,3222,1,0,0,0,180,3232,1,0,0,0,182,3236,1,0,0,0,184,3242, - 1,0,0,0,186,3254,1,0,0,0,188,3256,1,0,0,0,190,3263,1,0,0,0,192,3265, - 1,0,0,0,194,3314,1,0,0,0,196,3323,1,0,0,0,198,3325,1,0,0,0,200,3336, - 1,0,0,0,202,3342,1,0,0,0,204,3416,1,0,0,0,206,3479,1,0,0,0,208,3497, - 1,0,0,0,210,3581,1,0,0,0,212,3584,1,0,0,0,214,3596,1,0,0,0,216,3616, - 1,0,0,0,218,3644,1,0,0,0,220,3648,1,0,0,0,222,3650,1,0,0,0,224,3660, - 1,0,0,0,226,3680,1,0,0,0,228,3687,1,0,0,0,230,3689,1,0,0,0,232,3700, - 1,0,0,0,234,3709,1,0,0,0,236,3715,1,0,0,0,238,3738,1,0,0,0,240,3740, - 1,0,0,0,242,3776,1,0,0,0,244,3831,1,0,0,0,246,3840,1,0,0,0,248,3860, - 1,0,0,0,250,3872,1,0,0,0,252,3876,1,0,0,0,254,3887,1,0,0,0,256,3920, - 1,0,0,0,258,3941,1,0,0,0,260,3951,1,0,0,0,262,3955,1,0,0,0,264,3981, - 1,0,0,0,266,4022,1,0,0,0,268,4029,1,0,0,0,270,4031,1,0,0,0,272,4035, - 1,0,0,0,274,4052,1,0,0,0,276,4103,1,0,0,0,278,4115,1,0,0,0,280,4125, - 1,0,0,0,282,4127,1,0,0,0,284,4160,1,0,0,0,286,4168,1,0,0,0,288,4185, - 1,0,0,0,290,4201,1,0,0,0,292,4238,1,0,0,0,294,4244,1,0,0,0,296,4253, - 1,0,0,0,298,4266,1,0,0,0,300,4270,1,0,0,0,302,4294,1,0,0,0,304,4296, - 1,0,0,0,306,4300,1,0,0,0,308,4302,1,0,0,0,310,4310,1,0,0,0,312,4348, - 1,0,0,0,314,4362,1,0,0,0,316,4370,1,0,0,0,318,4374,1,0,0,0,320,4383, - 1,0,0,0,322,4397,1,0,0,0,324,4400,1,0,0,0,326,4418,1,0,0,0,328,4422, - 1,0,0,0,330,4438,1,0,0,0,332,4440,1,0,0,0,334,4452,1,0,0,0,336,4456, - 1,0,0,0,338,4473,1,0,0,0,340,4490,1,0,0,0,342,4493,1,0,0,0,344,4503, - 1,0,0,0,346,4507,1,0,0,0,348,4517,1,0,0,0,350,4520,1,0,0,0,352,4525, - 1,0,0,0,354,4545,1,0,0,0,356,4547,1,0,0,0,358,4564,1,0,0,0,360,4573, - 1,0,0,0,362,4582,1,0,0,0,364,4584,1,0,0,0,366,4598,1,0,0,0,368,4612, - 1,0,0,0,370,4627,1,0,0,0,372,4636,1,0,0,0,374,4661,1,0,0,0,376,4676, - 1,0,0,0,378,4695,1,0,0,0,380,4725,1,0,0,0,382,4727,1,0,0,0,384,4729, - 1,0,0,0,386,4731,1,0,0,0,388,4746,1,0,0,0,390,4775,1,0,0,0,392,4777, - 1,0,0,0,394,4779,1,0,0,0,396,4781,1,0,0,0,398,4796,1,0,0,0,400,4798, - 1,0,0,0,402,4865,1,0,0,0,404,4867,1,0,0,0,406,4873,1,0,0,0,408,4900, - 1,0,0,0,410,4914,1,0,0,0,412,4925,1,0,0,0,414,4927,1,0,0,0,416,4933, - 1,0,0,0,418,4943,1,0,0,0,420,4947,1,0,0,0,422,4954,1,0,0,0,424,4958, - 1,0,0,0,426,4964,1,0,0,0,428,4971,1,0,0,0,430,4977,1,0,0,0,432,4983, - 1,0,0,0,434,4988,1,0,0,0,436,5033,1,0,0,0,438,5054,1,0,0,0,440,5079, - 1,0,0,0,442,5082,1,0,0,0,444,5088,1,0,0,0,446,5104,1,0,0,0,448,5119, - 1,0,0,0,450,5125,1,0,0,0,452,5155,1,0,0,0,454,5157,1,0,0,0,456,5164, - 1,0,0,0,458,5176,1,0,0,0,460,5182,1,0,0,0,462,5207,1,0,0,0,464,5211, - 1,0,0,0,466,5215,1,0,0,0,468,5226,1,0,0,0,470,5234,1,0,0,0,472,5297, - 1,0,0,0,474,5356,1,0,0,0,476,5458,1,0,0,0,478,5468,1,0,0,0,480,5470, - 1,0,0,0,482,5488,1,0,0,0,484,5512,1,0,0,0,486,5536,1,0,0,0,488,5543, - 1,0,0,0,490,5563,1,0,0,0,492,5572,1,0,0,0,494,5634,1,0,0,0,496,5636, - 1,0,0,0,498,5640,1,0,0,0,500,5674,1,0,0,0,502,5676,1,0,0,0,504,5679, - 1,0,0,0,506,5743,1,0,0,0,508,5762,1,0,0,0,510,5789,1,0,0,0,512,5793, - 1,0,0,0,514,5814,1,0,0,0,516,5824,1,0,0,0,518,5834,1,0,0,0,520,5874, - 1,0,0,0,522,5876,1,0,0,0,524,5879,1,0,0,0,526,5909,1,0,0,0,528,5911, - 1,0,0,0,530,5914,1,0,0,0,532,6014,1,0,0,0,534,6032,1,0,0,0,536,6034, - 1,0,0,0,538,6086,1,0,0,0,540,6088,1,0,0,0,542,6097,1,0,0,0,544,6103, - 1,0,0,0,546,6110,1,0,0,0,548,6125,1,0,0,0,550,6134,1,0,0,0,552,6136, - 1,0,0,0,554,6157,1,0,0,0,556,6162,1,0,0,0,558,6172,1,0,0,0,560,6178, - 1,0,0,0,562,6212,1,0,0,0,564,6266,1,0,0,0,566,6452,1,0,0,0,568,6464, - 1,0,0,0,570,6480,1,0,0,0,572,6486,1,0,0,0,574,6505,1,0,0,0,576,6518, - 1,0,0,0,578,6532,1,0,0,0,580,6534,1,0,0,0,582,6537,1,0,0,0,584,6561, - 1,0,0,0,586,6573,1,0,0,0,588,6579,1,0,0,0,590,6591,1,0,0,0,592,6605, - 1,0,0,0,594,6607,1,0,0,0,596,6615,1,0,0,0,598,6623,1,0,0,0,600,6625, - 1,0,0,0,602,6627,1,0,0,0,604,6667,1,0,0,0,606,6674,1,0,0,0,608,6676, - 1,0,0,0,610,6699,1,0,0,0,612,6705,1,0,0,0,614,6715,1,0,0,0,616,6724, - 1,0,0,0,618,6727,1,0,0,0,620,6730,1,0,0,0,622,6751,1,0,0,0,624,6772, - 1,0,0,0,626,6780,1,0,0,0,628,6792,1,0,0,0,630,6800,1,0,0,0,632,6838, - 1,0,0,0,634,6850,1,0,0,0,636,6852,1,0,0,0,638,6854,1,0,0,0,640,6856, - 1,0,0,0,642,6858,1,0,0,0,644,6860,1,0,0,0,646,6862,1,0,0,0,648,6864, - 1,0,0,0,650,6866,1,0,0,0,652,6874,1,0,0,0,654,6876,1,0,0,0,656,6878, - 1,0,0,0,658,6880,1,0,0,0,660,6882,1,0,0,0,662,6890,1,0,0,0,664,6892, - 1,0,0,0,666,6902,1,0,0,0,668,6918,1,0,0,0,670,6920,1,0,0,0,672,6928, - 1,0,0,0,674,6946,1,0,0,0,676,6962,1,0,0,0,678,6973,1,0,0,0,680,6975, - 1,0,0,0,682,6977,1,0,0,0,684,6979,1,0,0,0,686,6981,1,0,0,0,688,6989, - 1,0,0,0,690,6999,1,0,0,0,692,7004,1,0,0,0,694,7008,1,0,0,0,696,7015, - 1,0,0,0,698,7017,1,0,0,0,700,7024,1,0,0,0,702,7026,1,0,0,0,704,7032, - 1,0,0,0,706,7034,1,0,0,0,708,7039,1,0,0,0,710,7041,1,0,0,0,712,7043, - 1,0,0,0,714,7061,1,0,0,0,716,7077,1,0,0,0,718,7079,1,0,0,0,720,7083, - 1,0,0,0,722,7094,1,0,0,0,724,7105,1,0,0,0,726,7111,1,0,0,0,728,7120, - 1,0,0,0,730,7122,1,0,0,0,732,7126,1,0,0,0,734,7151,1,0,0,0,736,7153, - 1,0,0,0,738,7156,1,0,0,0,740,7161,1,0,0,0,742,7177,1,0,0,0,744,7305, - 1,0,0,0,746,7307,1,0,0,0,748,7340,1,0,0,0,750,7345,1,0,0,0,752,7349, - 1,0,0,0,754,7355,1,0,0,0,756,7363,1,0,0,0,758,7374,1,0,0,0,760,7382, - 1,0,0,0,762,7391,1,0,0,0,764,7404,1,0,0,0,766,7406,1,0,0,0,768,7414, - 1,0,0,0,770,7422,1,0,0,0,772,7456,1,0,0,0,774,7472,1,0,0,0,776,7474, - 1,0,0,0,778,7477,1,0,0,0,780,7481,1,0,0,0,782,7506,1,0,0,0,784,7687, - 1,0,0,0,786,7689,1,0,0,0,788,7708,1,0,0,0,790,7710,1,0,0,0,792,7773, - 1,0,0,0,794,7813,1,0,0,0,796,7815,1,0,0,0,798,7824,1,0,0,0,800,7835, - 1,0,0,0,802,7837,1,0,0,0,804,7840,1,0,0,0,806,7844,1,0,0,0,808,7846, - 1,0,0,0,810,7858,1,0,0,0,812,7860,1,0,0,0,814,7894,1,0,0,0,816,7896, - 1,0,0,0,818,7901,1,0,0,0,820,7912,1,0,0,0,822,7925,1,0,0,0,824,7936, - 1,0,0,0,826,8053,1,0,0,0,828,8075,1,0,0,0,830,8085,1,0,0,0,832,8094, - 1,0,0,0,834,8103,1,0,0,0,836,8112,1,0,0,0,838,8114,1,0,0,0,840,8121, - 1,0,0,0,842,8123,1,0,0,0,844,8125,1,0,0,0,846,8127,1,0,0,0,848,8129, - 1,0,0,0,850,8131,1,0,0,0,852,8133,1,0,0,0,854,8135,1,0,0,0,856,858, - 3,2,1,0,857,856,1,0,0,0,858,861,1,0,0,0,859,857,1,0,0,0,859,860, - 1,0,0,0,860,862,1,0,0,0,861,859,1,0,0,0,862,863,5,0,0,1,863,1,1, - 0,0,0,864,866,3,4,2,0,865,867,5,869,0,0,866,865,1,0,0,0,866,867, - 1,0,0,0,867,870,1,0,0,0,868,870,3,6,3,0,869,864,1,0,0,0,869,868, - 1,0,0,0,870,3,1,0,0,0,871,879,3,8,4,0,872,879,3,10,5,0,873,879,3, - 12,6,0,874,879,3,14,7,0,875,879,3,16,8,0,876,879,3,20,10,0,877,879, - 3,22,11,0,878,871,1,0,0,0,878,872,1,0,0,0,878,873,1,0,0,0,878,874, - 1,0,0,0,878,875,1,0,0,0,878,876,1,0,0,0,878,877,1,0,0,0,879,5,1, - 0,0,0,880,881,5,869,0,0,881,7,1,0,0,0,882,923,3,24,12,0,883,923, - 3,26,13,0,884,923,3,28,14,0,885,923,3,30,15,0,886,923,3,32,16,0, - 887,923,3,34,17,0,888,923,3,36,18,0,889,923,3,40,20,0,890,923,3, - 42,21,0,891,923,3,44,22,0,892,923,3,46,23,0,893,923,3,48,24,0,894, - 923,3,54,27,0,895,923,3,38,19,0,896,923,3,126,63,0,897,923,3,128, - 64,0,898,923,3,130,65,0,899,923,3,132,66,0,900,923,3,134,67,0,901, - 923,3,136,68,0,902,923,3,138,69,0,903,923,3,140,70,0,904,923,3,142, - 71,0,905,923,3,144,72,0,906,923,3,150,75,0,907,923,3,152,76,0,908, - 923,3,154,77,0,909,923,3,156,78,0,910,923,3,158,79,0,911,923,3,160, - 80,0,912,923,3,162,81,0,913,923,3,164,82,0,914,923,3,166,83,0,915, - 923,3,168,84,0,916,923,3,170,85,0,917,923,3,172,86,0,918,923,3,174, - 87,0,919,923,3,176,88,0,920,923,3,178,89,0,921,923,3,182,91,0,922, - 882,1,0,0,0,922,883,1,0,0,0,922,884,1,0,0,0,922,885,1,0,0,0,922, - 886,1,0,0,0,922,887,1,0,0,0,922,888,1,0,0,0,922,889,1,0,0,0,922, - 890,1,0,0,0,922,891,1,0,0,0,922,892,1,0,0,0,922,893,1,0,0,0,922, - 894,1,0,0,0,922,895,1,0,0,0,922,896,1,0,0,0,922,897,1,0,0,0,922, - 898,1,0,0,0,922,899,1,0,0,0,922,900,1,0,0,0,922,901,1,0,0,0,922, - 902,1,0,0,0,922,903,1,0,0,0,922,904,1,0,0,0,922,905,1,0,0,0,922, - 906,1,0,0,0,922,907,1,0,0,0,922,908,1,0,0,0,922,909,1,0,0,0,922, - 910,1,0,0,0,922,911,1,0,0,0,922,912,1,0,0,0,922,913,1,0,0,0,922, - 914,1,0,0,0,922,915,1,0,0,0,922,916,1,0,0,0,922,917,1,0,0,0,922, - 918,1,0,0,0,922,919,1,0,0,0,922,920,1,0,0,0,922,921,1,0,0,0,923, - 9,1,0,0,0,924,942,3,210,105,0,925,942,3,212,106,0,926,942,3,192, - 96,0,927,942,3,220,110,0,928,942,3,186,93,0,929,942,3,208,104,0, - 930,942,3,184,92,0,931,942,3,198,99,0,932,942,3,202,101,0,933,942, - 3,204,102,0,934,942,3,206,103,0,935,942,3,188,94,0,936,942,3,190, - 95,0,937,942,3,252,126,0,938,942,3,222,111,0,939,942,3,626,313,0, - 940,942,3,628,314,0,941,924,1,0,0,0,941,925,1,0,0,0,941,926,1,0, - 0,0,941,927,1,0,0,0,941,928,1,0,0,0,941,929,1,0,0,0,941,930,1,0, - 0,0,941,931,1,0,0,0,941,932,1,0,0,0,941,933,1,0,0,0,941,934,1,0, - 0,0,941,935,1,0,0,0,941,936,1,0,0,0,941,937,1,0,0,0,941,938,1,0, - 0,0,941,939,1,0,0,0,941,940,1,0,0,0,942,11,1,0,0,0,943,953,3,332, - 166,0,944,953,3,334,167,0,945,953,3,336,168,0,946,953,3,338,169, - 0,947,953,3,340,170,0,948,953,3,342,171,0,949,953,3,344,172,0,950, - 953,3,346,173,0,951,953,3,348,174,0,952,943,1,0,0,0,952,944,1,0, - 0,0,952,945,1,0,0,0,952,946,1,0,0,0,952,947,1,0,0,0,952,948,1,0, - 0,0,952,949,1,0,0,0,952,950,1,0,0,0,952,951,1,0,0,0,953,13,1,0,0, - 0,954,969,3,364,182,0,955,969,3,366,183,0,956,969,3,368,184,0,957, - 969,3,370,185,0,958,969,3,372,186,0,959,969,3,374,187,0,960,969, - 3,376,188,0,961,969,3,378,189,0,962,969,3,414,207,0,963,969,3,416, - 208,0,964,969,3,418,209,0,965,969,3,420,210,0,966,969,3,422,211, - 0,967,969,3,424,212,0,968,954,1,0,0,0,968,955,1,0,0,0,968,956,1, - 0,0,0,968,957,1,0,0,0,968,958,1,0,0,0,968,959,1,0,0,0,968,960,1, - 0,0,0,968,961,1,0,0,0,968,962,1,0,0,0,968,963,1,0,0,0,968,964,1, - 0,0,0,968,965,1,0,0,0,968,966,1,0,0,0,968,967,1,0,0,0,969,15,1,0, - 0,0,970,974,3,426,213,0,971,974,3,428,214,0,972,974,3,430,215,0, - 973,970,1,0,0,0,973,971,1,0,0,0,973,972,1,0,0,0,974,17,1,0,0,0,975, - 986,3,434,217,0,976,986,3,436,218,0,977,986,3,438,219,0,978,986, - 3,442,221,0,979,986,3,444,222,0,980,986,3,446,223,0,981,986,3,450, - 225,0,982,986,3,440,220,0,983,986,3,448,224,0,984,986,3,452,226, - 0,985,975,1,0,0,0,985,976,1,0,0,0,985,977,1,0,0,0,985,978,1,0,0, - 0,985,979,1,0,0,0,985,980,1,0,0,0,985,981,1,0,0,0,985,982,1,0,0, - 0,985,983,1,0,0,0,985,984,1,0,0,0,986,19,1,0,0,0,987,1021,3,470, - 235,0,988,1021,3,472,236,0,989,1021,3,474,237,0,990,1021,3,476,238, - 0,991,1021,3,480,240,0,992,1021,3,492,246,0,993,1021,3,494,247,0, - 994,1021,3,482,241,0,995,1021,3,484,242,0,996,1021,3,486,243,0,997, - 1021,3,488,244,0,998,1021,3,538,269,0,999,1021,3,540,270,0,1000, - 1021,3,542,271,0,1001,1021,3,544,272,0,1002,1021,3,546,273,0,1003, - 1021,3,552,276,0,1004,1021,3,556,278,0,1005,1021,3,558,279,0,1006, - 1021,3,560,280,0,1007,1021,3,562,281,0,1008,1021,3,564,282,0,1009, - 1021,3,566,283,0,1010,1021,3,580,290,0,1011,1021,3,582,291,0,1012, - 1021,3,584,292,0,1013,1021,3,586,293,0,1014,1021,3,588,294,0,1015, - 1021,3,590,295,0,1016,1021,3,594,297,0,1017,1021,3,596,298,0,1018, - 1021,3,598,299,0,1019,1021,3,600,300,0,1020,987,1,0,0,0,1020,988, - 1,0,0,0,1020,989,1,0,0,0,1020,990,1,0,0,0,1020,991,1,0,0,0,1020, - 992,1,0,0,0,1020,993,1,0,0,0,1020,994,1,0,0,0,1020,995,1,0,0,0,1020, - 996,1,0,0,0,1020,997,1,0,0,0,1020,998,1,0,0,0,1020,999,1,0,0,0,1020, - 1000,1,0,0,0,1020,1001,1,0,0,0,1020,1002,1,0,0,0,1020,1003,1,0,0, - 0,1020,1004,1,0,0,0,1020,1005,1,0,0,0,1020,1006,1,0,0,0,1020,1007, - 1,0,0,0,1020,1008,1,0,0,0,1020,1009,1,0,0,0,1020,1010,1,0,0,0,1020, - 1011,1,0,0,0,1020,1012,1,0,0,0,1020,1013,1,0,0,0,1020,1014,1,0,0, - 0,1020,1015,1,0,0,0,1020,1016,1,0,0,0,1020,1017,1,0,0,0,1020,1018, - 1,0,0,0,1020,1019,1,0,0,0,1021,21,1,0,0,0,1022,1031,3,612,306,0, - 1023,1031,3,610,305,0,1024,1031,3,614,307,0,1025,1031,3,616,308, - 0,1026,1031,3,618,309,0,1027,1031,3,620,310,0,1028,1031,3,622,311, - 0,1029,1031,3,630,315,0,1030,1022,1,0,0,0,1030,1023,1,0,0,0,1030, - 1024,1,0,0,0,1030,1025,1,0,0,0,1030,1026,1,0,0,0,1030,1027,1,0,0, - 0,1030,1028,1,0,0,0,1030,1029,1,0,0,0,1031,23,1,0,0,0,1032,1033, - 5,34,0,0,1033,1035,7,0,0,0,1034,1036,3,778,389,0,1035,1034,1,0,0, - 0,1035,1036,1,0,0,0,1036,1037,1,0,0,0,1037,1041,3,636,318,0,1038, - 1040,3,56,28,0,1039,1038,1,0,0,0,1040,1043,1,0,0,0,1041,1039,1,0, - 0,0,1041,1042,1,0,0,0,1042,25,1,0,0,0,1043,1041,1,0,0,0,1044,1046, - 5,34,0,0,1045,1047,3,62,31,0,1046,1045,1,0,0,0,1046,1047,1,0,0,0, - 1047,1048,1,0,0,0,1048,1050,5,385,0,0,1049,1051,3,778,389,0,1050, - 1049,1,0,0,0,1050,1051,1,0,0,0,1051,1052,1,0,0,0,1052,1053,3,718, - 359,0,1053,1054,5,119,0,0,1054,1055,5,590,0,0,1055,1062,3,64,32, - 0,1056,1057,5,119,0,0,1057,1059,5,343,0,0,1058,1060,5,114,0,0,1059, - 1058,1,0,0,0,1059,1060,1,0,0,0,1060,1061,1,0,0,0,1061,1063,5,541, - 0,0,1062,1056,1,0,0,0,1062,1063,1,0,0,0,1063,1065,1,0,0,0,1064,1066, - 3,72,36,0,1065,1064,1,0,0,0,1065,1066,1,0,0,0,1066,1069,1,0,0,0, - 1067,1068,5,340,0,0,1068,1070,5,882,0,0,1069,1067,1,0,0,0,1069,1070, - 1,0,0,0,1070,1071,1,0,0,0,1071,1072,5,371,0,0,1072,1073,3,432,216, - 0,1073,27,1,0,0,0,1074,1076,5,34,0,0,1075,1077,7,1,0,0,1076,1075, - 1,0,0,0,1076,1077,1,0,0,0,1077,1079,1,0,0,0,1078,1080,7,2,0,0,1079, - 1078,1,0,0,0,1079,1080,1,0,0,0,1080,1081,1,0,0,0,1081,1082,5,82, - 0,0,1082,1084,3,648,324,0,1083,1085,3,74,37,0,1084,1083,1,0,0,0, - 1084,1085,1,0,0,0,1085,1086,1,0,0,0,1086,1087,5,119,0,0,1087,1088, - 3,662,331,0,1088,1092,3,756,378,0,1089,1091,3,76,38,0,1090,1089, - 1,0,0,0,1091,1094,1,0,0,0,1092,1090,1,0,0,0,1092,1093,1,0,0,0,1093, - 1107,1,0,0,0,1094,1092,1,0,0,0,1095,1097,5,308,0,0,1096,1098,5,857, - 0,0,1097,1096,1,0,0,0,1097,1098,1,0,0,0,1098,1099,1,0,0,0,1099,1106, - 7,3,0,0,1100,1102,5,104,0,0,1101,1103,5,857,0,0,1102,1101,1,0,0, - 0,1102,1103,1,0,0,0,1103,1104,1,0,0,0,1104,1106,7,4,0,0,1105,1095, - 1,0,0,0,1105,1100,1,0,0,0,1106,1109,1,0,0,0,1107,1105,1,0,0,0,1107, - 1108,1,0,0,0,1108,29,1,0,0,0,1109,1107,1,0,0,0,1110,1111,5,34,0, - 0,1111,1112,5,451,0,0,1112,1113,5,74,0,0,1113,1114,3,722,361,0,1114, - 1115,5,6,0,0,1115,1116,5,671,0,0,1116,1122,5,882,0,0,1117,1119,5, - 428,0,0,1118,1120,5,857,0,0,1119,1118,1,0,0,0,1119,1120,1,0,0,0, - 1120,1121,1,0,0,0,1121,1123,3,732,366,0,1122,1117,1,0,0,0,1122,1123, - 1,0,0,0,1123,1129,1,0,0,0,1124,1126,5,672,0,0,1125,1127,5,857,0, - 0,1126,1125,1,0,0,0,1126,1127,1,0,0,0,1127,1128,1,0,0,0,1128,1130, - 3,732,366,0,1129,1124,1,0,0,0,1129,1130,1,0,0,0,1130,1136,1,0,0, - 0,1131,1133,5,553,0,0,1132,1134,5,857,0,0,1133,1132,1,0,0,0,1133, - 1134,1,0,0,0,1134,1135,1,0,0,0,1135,1137,3,732,366,0,1136,1131,1, - 0,0,0,1136,1137,1,0,0,0,1137,1143,1,0,0,0,1138,1140,5,504,0,0,1139, - 1141,5,857,0,0,1140,1139,1,0,0,0,1140,1141,1,0,0,0,1141,1142,1,0, - 0,0,1142,1144,3,722,361,0,1143,1138,1,0,0,0,1143,1144,1,0,0,0,1144, - 1146,1,0,0,0,1145,1147,5,687,0,0,1146,1145,1,0,0,0,1146,1147,1,0, - 0,0,1147,1153,1,0,0,0,1148,1150,5,340,0,0,1149,1151,5,857,0,0,1150, - 1149,1,0,0,0,1150,1151,1,0,0,0,1151,1152,1,0,0,0,1152,1154,5,882, - 0,0,1153,1148,1,0,0,0,1153,1154,1,0,0,0,1154,1155,1,0,0,0,1155,1157, - 5,380,0,0,1156,1158,5,857,0,0,1157,1156,1,0,0,0,1157,1158,1,0,0, - 0,1158,1159,1,0,0,0,1159,1160,3,708,354,0,1160,31,1,0,0,0,1161,1163, - 5,34,0,0,1162,1164,3,62,31,0,1163,1162,1,0,0,0,1163,1164,1,0,0,0, - 1164,1165,1,0,0,0,1165,1167,5,132,0,0,1166,1168,3,778,389,0,1167, - 1166,1,0,0,0,1167,1168,1,0,0,0,1168,1169,1,0,0,0,1169,1170,3,718, - 359,0,1170,1172,5,866,0,0,1171,1173,3,78,39,0,1172,1171,1,0,0,0, - 1172,1173,1,0,0,0,1173,1178,1,0,0,0,1174,1175,5,868,0,0,1175,1177, - 3,78,39,0,1176,1174,1,0,0,0,1177,1180,1,0,0,0,1178,1176,1,0,0,0, - 1178,1179,1,0,0,0,1179,1181,1,0,0,0,1180,1178,1,0,0,0,1181,1185, - 5,867,0,0,1182,1184,3,82,41,0,1183,1182,1,0,0,0,1184,1187,1,0,0, - 0,1185,1183,1,0,0,0,1185,1186,1,0,0,0,1186,1188,1,0,0,0,1187,1185, - 1,0,0,0,1188,1189,3,432,216,0,1189,33,1,0,0,0,1190,1192,5,34,0,0, - 1191,1193,3,62,31,0,1192,1191,1,0,0,0,1192,1193,1,0,0,0,1193,1195, - 1,0,0,0,1194,1196,5,307,0,0,1195,1194,1,0,0,0,1195,1196,1,0,0,0, - 1196,1197,1,0,0,0,1197,1199,5,409,0,0,1198,1200,3,778,389,0,1199, - 1198,1,0,0,0,1199,1200,1,0,0,0,1200,1201,1,0,0,0,1201,1202,3,640, - 320,0,1202,1204,5,866,0,0,1203,1205,3,80,40,0,1204,1203,1,0,0,0, - 1204,1205,1,0,0,0,1205,1210,1,0,0,0,1206,1207,5,868,0,0,1207,1209, - 3,80,40,0,1208,1206,1,0,0,0,1209,1212,1,0,0,0,1210,1208,1,0,0,0, - 1210,1211,1,0,0,0,1211,1213,1,0,0,0,1212,1210,1,0,0,0,1213,1214, - 5,867,0,0,1214,1215,5,580,0,0,1215,1219,3,744,372,0,1216,1218,3, - 82,41,0,1217,1216,1,0,0,0,1218,1221,1,0,0,0,1219,1217,1,0,0,0,1219, - 1220,1,0,0,0,1220,1224,1,0,0,0,1221,1219,1,0,0,0,1222,1225,3,432, - 216,0,1223,1225,3,448,224,0,1224,1222,1,0,0,0,1224,1223,1,0,0,0, - 1225,35,1,0,0,0,1226,1228,5,34,0,0,1227,1229,5,307,0,0,1228,1227, - 1,0,0,0,1228,1229,1,0,0,0,1229,1230,1,0,0,0,1230,1232,5,409,0,0, - 1231,1233,3,778,389,0,1232,1231,1,0,0,0,1232,1233,1,0,0,0,1233,1234, - 1,0,0,0,1234,1235,3,640,320,0,1235,1236,5,580,0,0,1236,1237,7,5, - 0,0,1237,1238,5,603,0,0,1238,1239,5,882,0,0,1239,37,1,0,0,0,1240, - 1241,5,34,0,0,1241,1243,5,582,0,0,1242,1244,3,778,389,0,1243,1242, - 1,0,0,0,1243,1244,1,0,0,0,1244,1245,1,0,0,0,1245,1246,3,664,332, - 0,1246,39,1,0,0,0,1247,1248,5,34,0,0,1248,1249,5,592,0,0,1249,1250, - 3,722,361,0,1250,1251,5,67,0,0,1251,1252,5,360,0,0,1252,1253,5,692, - 0,0,1253,1254,7,6,0,0,1254,1255,5,518,0,0,1255,1256,5,866,0,0,1256, - 1261,3,84,42,0,1257,1258,5,868,0,0,1258,1260,3,84,42,0,1259,1257, - 1,0,0,0,1260,1263,1,0,0,0,1261,1259,1,0,0,0,1261,1262,1,0,0,0,1262, - 1264,1,0,0,0,1263,1261,1,0,0,0,1264,1265,5,867,0,0,1265,41,1,0,0, - 0,1266,1268,5,34,0,0,1267,1269,5,660,0,0,1268,1267,1,0,0,0,1268, - 1269,1,0,0,0,1269,1270,1,0,0,0,1270,1272,5,173,0,0,1271,1273,3,778, - 389,0,1272,1271,1,0,0,0,1272,1273,1,0,0,0,1273,1274,1,0,0,0,1274, - 1276,3,658,329,0,1275,1277,3,86,43,0,1276,1275,1,0,0,0,1276,1277, - 1,0,0,0,1277,1288,1,0,0,0,1278,1285,3,104,52,0,1279,1281,5,868,0, - 0,1280,1279,1,0,0,0,1280,1281,1,0,0,0,1281,1282,1,0,0,0,1282,1284, - 3,104,52,0,1283,1280,1,0,0,0,1284,1287,1,0,0,0,1285,1283,1,0,0,0, - 1285,1286,1,0,0,0,1286,1289,1,0,0,0,1287,1285,1,0,0,0,1288,1278, - 1,0,0,0,1288,1289,1,0,0,0,1289,1291,1,0,0,0,1290,1292,3,110,55,0, - 1291,1290,1,0,0,0,1291,1292,1,0,0,0,1292,1294,1,0,0,0,1293,1295, - 7,7,0,0,1294,1293,1,0,0,0,1294,1295,1,0,0,0,1295,1297,1,0,0,0,1296, - 1298,5,13,0,0,1297,1296,1,0,0,0,1297,1298,1,0,0,0,1298,1299,1,0, - 0,0,1299,1300,3,210,105,0,1300,1345,1,0,0,0,1301,1303,5,34,0,0,1302, - 1304,5,660,0,0,1303,1302,1,0,0,0,1303,1304,1,0,0,0,1304,1305,1,0, - 0,0,1305,1307,5,173,0,0,1306,1308,3,778,389,0,1307,1306,1,0,0,0, - 1307,1308,1,0,0,0,1308,1309,1,0,0,0,1309,1317,3,658,329,0,1310,1311, - 5,99,0,0,1311,1318,3,662,331,0,1312,1313,5,866,0,0,1313,1314,5,99, - 0,0,1314,1315,3,662,331,0,1315,1316,5,867,0,0,1316,1318,1,0,0,0, - 1317,1310,1,0,0,0,1317,1312,1,0,0,0,1318,1345,1,0,0,0,1319,1321, - 5,34,0,0,1320,1322,5,660,0,0,1321,1320,1,0,0,0,1321,1322,1,0,0,0, - 1322,1323,1,0,0,0,1323,1325,5,173,0,0,1324,1326,3,778,389,0,1325, - 1324,1,0,0,0,1325,1326,1,0,0,0,1326,1327,1,0,0,0,1327,1328,3,658, - 329,0,1328,1339,3,86,43,0,1329,1336,3,104,52,0,1330,1332,5,868,0, - 0,1331,1330,1,0,0,0,1331,1332,1,0,0,0,1332,1333,1,0,0,0,1333,1335, - 3,104,52,0,1334,1331,1,0,0,0,1335,1338,1,0,0,0,1336,1334,1,0,0,0, - 1336,1337,1,0,0,0,1337,1340,1,0,0,0,1338,1336,1,0,0,0,1339,1329, - 1,0,0,0,1339,1340,1,0,0,0,1340,1342,1,0,0,0,1341,1343,3,110,55,0, - 1342,1341,1,0,0,0,1342,1343,1,0,0,0,1343,1345,1,0,0,0,1344,1266, - 1,0,0,0,1344,1301,1,0,0,0,1344,1319,1,0,0,0,1345,43,1,0,0,0,1346, - 1348,5,34,0,0,1347,1349,5,180,0,0,1348,1347,1,0,0,0,1348,1349,1, - 0,0,0,1349,1350,1,0,0,0,1350,1351,5,658,0,0,1351,1355,3,680,340, - 0,1352,1353,5,6,0,0,1353,1354,5,361,0,0,1354,1356,5,882,0,0,1355, - 1352,1,0,0,0,1355,1356,1,0,0,0,1356,1362,1,0,0,0,1357,1359,5,314, - 0,0,1358,1360,5,857,0,0,1359,1358,1,0,0,0,1359,1360,1,0,0,0,1360, - 1361,1,0,0,0,1361,1363,3,732,366,0,1362,1357,1,0,0,0,1362,1363,1, - 0,0,0,1363,1367,1,0,0,0,1364,1365,5,399,0,0,1365,1366,5,857,0,0, - 1366,1368,3,732,366,0,1367,1364,1,0,0,0,1367,1368,1,0,0,0,1368,1374, - 1,0,0,0,1369,1371,5,380,0,0,1370,1372,5,857,0,0,1371,1370,1,0,0, - 0,1371,1372,1,0,0,0,1372,1373,1,0,0,0,1373,1375,3,708,354,0,1374, - 1369,1,0,0,0,1374,1375,1,0,0,0,1375,1381,1,0,0,0,1376,1378,5,825, - 0,0,1377,1379,5,857,0,0,1378,1377,1,0,0,0,1378,1379,1,0,0,0,1379, - 1380,1,0,0,0,1380,1382,5,882,0,0,1381,1376,1,0,0,0,1381,1382,1,0, - 0,0,1382,45,1,0,0,0,1383,1385,5,34,0,0,1384,1386,5,180,0,0,1385, - 1384,1,0,0,0,1385,1386,1,0,0,0,1386,1387,1,0,0,0,1387,1388,5,658, - 0,0,1388,1389,3,680,340,0,1389,1390,5,6,0,0,1390,1391,5,361,0,0, - 1391,1392,5,882,0,0,1392,1393,5,187,0,0,1393,1394,5,451,0,0,1394, - 1395,5,74,0,0,1395,1401,3,722,361,0,1396,1398,5,393,0,0,1397,1399, - 5,857,0,0,1398,1397,1,0,0,0,1398,1399,1,0,0,0,1399,1400,1,0,0,0, - 1400,1402,3,732,366,0,1401,1396,1,0,0,0,1401,1402,1,0,0,0,1402,1408, - 1,0,0,0,1403,1405,5,428,0,0,1404,1406,5,857,0,0,1405,1404,1,0,0, - 0,1405,1406,1,0,0,0,1406,1407,1,0,0,0,1407,1409,3,732,366,0,1408, - 1403,1,0,0,0,1408,1409,1,0,0,0,1409,1415,1,0,0,0,1410,1412,5,314, - 0,0,1411,1413,5,857,0,0,1412,1411,1,0,0,0,1412,1413,1,0,0,0,1413, - 1414,1,0,0,0,1414,1416,3,732,366,0,1415,1410,1,0,0,0,1415,1416,1, - 0,0,0,1416,1422,1,0,0,0,1417,1419,5,481,0,0,1418,1420,5,857,0,0, - 1419,1418,1,0,0,0,1419,1420,1,0,0,0,1420,1421,1,0,0,0,1421,1423, - 3,732,366,0,1422,1417,1,0,0,0,1422,1423,1,0,0,0,1423,1429,1,0,0, - 0,1424,1426,5,504,0,0,1425,1427,5,857,0,0,1426,1425,1,0,0,0,1426, - 1427,1,0,0,0,1427,1428,1,0,0,0,1428,1430,3,722,361,0,1429,1424,1, - 0,0,0,1429,1430,1,0,0,0,1430,1432,1,0,0,0,1431,1433,5,687,0,0,1432, - 1431,1,0,0,0,1432,1433,1,0,0,0,1433,1439,1,0,0,0,1434,1436,5,340, - 0,0,1435,1437,5,857,0,0,1436,1435,1,0,0,0,1436,1437,1,0,0,0,1437, - 1438,1,0,0,0,1438,1440,5,882,0,0,1439,1434,1,0,0,0,1439,1440,1,0, - 0,0,1440,1441,1,0,0,0,1441,1443,5,380,0,0,1442,1444,5,857,0,0,1443, - 1442,1,0,0,0,1443,1444,1,0,0,0,1444,1445,1,0,0,0,1445,1446,3,708, - 354,0,1446,47,1,0,0,0,1447,1449,5,34,0,0,1448,1450,3,62,31,0,1449, - 1448,1,0,0,0,1449,1450,1,0,0,0,1450,1452,1,0,0,0,1451,1453,3,778, - 389,0,1452,1451,1,0,0,0,1452,1453,1,0,0,0,1453,1454,1,0,0,0,1454, - 1456,5,178,0,0,1455,1457,3,778,389,0,1456,1455,1,0,0,0,1456,1457, - 1,0,0,0,1457,1458,1,0,0,0,1458,1459,3,718,359,0,1459,1460,7,8,0, - 0,1460,1461,7,9,0,0,1461,1462,5,119,0,0,1462,1463,3,662,331,0,1463, - 1464,5,65,0,0,1464,1465,5,52,0,0,1465,1468,5,586,0,0,1466,1467,7, - 10,0,0,1467,1469,3,718,359,0,1468,1466,1,0,0,0,1468,1469,1,0,0,0, - 1469,1470,1,0,0,0,1470,1471,3,432,216,0,1471,49,1,0,0,0,1472,1474, - 5,194,0,0,1473,1475,5,552,0,0,1474,1473,1,0,0,0,1474,1475,1,0,0, - 0,1475,1476,1,0,0,0,1476,1477,3,52,26,0,1477,51,1,0,0,0,1478,1490, - 3,722,361,0,1479,1480,5,866,0,0,1480,1485,3,722,361,0,1481,1482, - 5,868,0,0,1482,1484,3,722,361,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,1488,1,0,0,0,1487,1485, - 1,0,0,0,1488,1489,5,867,0,0,1489,1491,1,0,0,0,1490,1479,1,0,0,0, - 1490,1491,1,0,0,0,1491,1492,1,0,0,0,1492,1493,5,13,0,0,1493,1494, - 5,866,0,0,1494,1495,3,10,5,0,1495,1498,5,867,0,0,1496,1497,5,868, - 0,0,1497,1499,3,52,26,0,1498,1496,1,0,0,0,1498,1499,1,0,0,0,1499, - 53,1,0,0,0,1500,1502,5,34,0,0,1501,1503,3,780,390,0,1502,1501,1, - 0,0,0,1502,1503,1,0,0,0,1503,1507,1,0,0,0,1504,1505,5,308,0,0,1505, - 1506,5,857,0,0,1506,1508,7,11,0,0,1507,1504,1,0,0,0,1507,1508,1, - 0,0,0,1508,1510,1,0,0,0,1509,1511,3,62,31,0,1510,1509,1,0,0,0,1510, - 1511,1,0,0,0,1511,1515,1,0,0,0,1512,1513,5,162,0,0,1513,1514,5,591, - 0,0,1514,1516,7,12,0,0,1515,1512,1,0,0,0,1515,1516,1,0,0,0,1516, - 1517,1,0,0,0,1517,1518,5,684,0,0,1518,1530,3,644,322,0,1519,1520, - 5,866,0,0,1520,1525,3,668,334,0,1521,1522,5,868,0,0,1522,1524,3, - 668,334,0,1523,1521,1,0,0,0,1524,1527,1,0,0,0,1525,1523,1,0,0,0, - 1525,1526,1,0,0,0,1526,1528,1,0,0,0,1527,1525,1,0,0,0,1528,1529, - 5,867,0,0,1529,1531,1,0,0,0,1530,1519,1,0,0,0,1530,1531,1,0,0,0, - 1531,1532,1,0,0,0,1532,1552,5,13,0,0,1533,1535,5,866,0,0,1534,1536, - 3,50,25,0,1535,1534,1,0,0,0,1535,1536,1,0,0,0,1536,1537,1,0,0,0, - 1537,1538,3,210,105,0,1538,1539,5,867,0,0,1539,1553,1,0,0,0,1540, - 1542,3,50,25,0,1541,1540,1,0,0,0,1541,1542,1,0,0,0,1542,1543,1,0, - 0,0,1543,1550,3,210,105,0,1544,1546,5,194,0,0,1545,1547,7,13,0,0, - 1546,1545,1,0,0,0,1546,1547,1,0,0,0,1547,1548,1,0,0,0,1548,1549, - 5,27,0,0,1549,1551,5,121,0,0,1550,1544,1,0,0,0,1550,1551,1,0,0,0, - 1551,1553,1,0,0,0,1552,1533,1,0,0,0,1552,1541,1,0,0,0,1553,55,1, - 0,0,0,1554,1556,5,42,0,0,1555,1554,1,0,0,0,1555,1556,1,0,0,0,1556, - 1557,1,0,0,0,1557,1559,3,58,29,0,1558,1560,5,857,0,0,1559,1558,1, - 0,0,0,1559,1560,1,0,0,0,1560,1563,1,0,0,0,1561,1564,3,704,352,0, - 1562,1564,5,42,0,0,1563,1561,1,0,0,0,1563,1562,1,0,0,0,1564,1588, - 1,0,0,0,1565,1567,5,42,0,0,1566,1565,1,0,0,0,1566,1567,1,0,0,0,1567, - 1568,1,0,0,0,1568,1570,5,28,0,0,1569,1571,5,857,0,0,1570,1569,1, - 0,0,0,1570,1571,1,0,0,0,1571,1572,1,0,0,0,1572,1588,3,706,353,0, - 1573,1575,5,42,0,0,1574,1573,1,0,0,0,1574,1575,1,0,0,0,1575,1576, - 1,0,0,0,1576,1578,5,376,0,0,1577,1579,5,857,0,0,1578,1577,1,0,0, - 0,1578,1579,1,0,0,0,1579,1580,1,0,0,0,1580,1588,5,882,0,0,1581,1582, - 5,135,0,0,1582,1584,5,515,0,0,1583,1585,5,857,0,0,1584,1583,1,0, - 0,0,1584,1585,1,0,0,0,1585,1586,1,0,0,0,1586,1588,7,14,0,0,1587, - 1555,1,0,0,0,1587,1566,1,0,0,0,1587,1574,1,0,0,0,1587,1581,1,0,0, - 0,1588,57,1,0,0,0,1589,1590,5,26,0,0,1590,1595,5,155,0,0,1591,1595, - 5,823,0,0,1592,1593,5,224,0,0,1593,1595,5,155,0,0,1594,1589,1,0, - 0,0,1594,1591,1,0,0,0,1594,1592,1,0,0,0,1595,59,1,0,0,0,1596,1599, - 7,15,0,0,1597,1598,5,866,0,0,1598,1600,5,867,0,0,1599,1597,1,0,0, - 0,1599,1600,1,0,0,0,1600,61,1,0,0,0,1601,1602,5,364,0,0,1602,1605, - 5,857,0,0,1603,1606,3,700,350,0,1604,1606,3,60,30,0,1605,1603,1, - 0,0,0,1605,1604,1,0,0,0,1606,63,1,0,0,0,1607,1608,5,311,0,0,1608, - 1612,3,66,33,0,1609,1611,3,68,34,0,1610,1609,1,0,0,0,1611,1614,1, - 0,0,0,1612,1610,1,0,0,0,1612,1613,1,0,0,0,1613,1642,1,0,0,0,1614, - 1612,1,0,0,0,1615,1618,5,387,0,0,1616,1619,3,730,365,0,1617,1619, - 3,822,411,0,1618,1616,1,0,0,0,1618,1617,1,0,0,0,1619,1620,1,0,0, - 0,1620,1629,3,70,35,0,1621,1622,5,641,0,0,1622,1626,3,66,33,0,1623, - 1625,3,68,34,0,1624,1623,1,0,0,0,1625,1628,1,0,0,0,1626,1624,1,0, - 0,0,1626,1627,1,0,0,0,1627,1630,1,0,0,0,1628,1626,1,0,0,0,1629,1621, - 1,0,0,0,1629,1630,1,0,0,0,1630,1639,1,0,0,0,1631,1632,5,379,0,0, - 1632,1636,3,66,33,0,1633,1635,3,68,34,0,1634,1633,1,0,0,0,1635,1638, - 1,0,0,0,1636,1634,1,0,0,0,1636,1637,1,0,0,0,1637,1640,1,0,0,0,1638, - 1636,1,0,0,0,1639,1631,1,0,0,0,1639,1640,1,0,0,0,1640,1642,1,0,0, - 0,1641,1607,1,0,0,0,1641,1615,1,0,0,0,1642,65,1,0,0,0,1643,1648, - 5,287,0,0,1644,1648,3,734,367,0,1645,1648,3,730,365,0,1646,1648, - 3,822,411,0,1647,1643,1,0,0,0,1647,1644,1,0,0,0,1647,1645,1,0,0, - 0,1647,1646,1,0,0,0,1648,67,1,0,0,0,1649,1650,5,853,0,0,1650,1653, - 5,87,0,0,1651,1654,3,730,365,0,1652,1654,3,822,411,0,1653,1651,1, - 0,0,0,1653,1652,1,0,0,0,1654,1655,1,0,0,0,1655,1656,3,70,35,0,1656, - 69,1,0,0,0,1657,1671,3,848,424,0,1658,1671,5,223,0,0,1659,1671,5, - 242,0,0,1660,1671,5,243,0,0,1661,1671,5,244,0,0,1662,1671,5,245, - 0,0,1663,1671,5,246,0,0,1664,1671,5,247,0,0,1665,1671,5,248,0,0, - 1666,1671,5,249,0,0,1667,1671,5,250,0,0,1668,1671,5,251,0,0,1669, - 1671,5,252,0,0,1670,1657,1,0,0,0,1670,1658,1,0,0,0,1670,1659,1,0, - 0,0,1670,1660,1,0,0,0,1670,1661,1,0,0,0,1670,1662,1,0,0,0,1670,1663, - 1,0,0,0,1670,1664,1,0,0,0,1670,1665,1,0,0,0,1670,1666,1,0,0,0,1670, - 1667,1,0,0,0,1670,1668,1,0,0,0,1670,1669,1,0,0,0,1671,71,1,0,0,0, - 1672,1678,5,375,0,0,1673,1678,5,368,0,0,1674,1675,5,368,0,0,1675, - 1676,5,119,0,0,1676,1678,5,598,0,0,1677,1672,1,0,0,0,1677,1673,1, - 0,0,0,1677,1674,1,0,0,0,1678,73,1,0,0,0,1679,1680,5,188,0,0,1680, - 1681,7,16,0,0,1681,75,1,0,0,0,1682,1684,5,443,0,0,1683,1685,5,857, - 0,0,1684,1683,1,0,0,0,1684,1685,1,0,0,0,1685,1686,1,0,0,0,1686,1705, - 3,732,366,0,1687,1705,3,74,37,0,1688,1689,5,194,0,0,1689,1690,5, - 525,0,0,1690,1705,3,722,361,0,1691,1692,5,340,0,0,1692,1705,5,882, - 0,0,1693,1705,7,17,0,0,1694,1696,5,825,0,0,1695,1697,5,857,0,0,1696, - 1695,1,0,0,0,1696,1697,1,0,0,0,1697,1698,1,0,0,0,1698,1705,5,882, - 0,0,1699,1701,5,833,0,0,1700,1702,5,857,0,0,1701,1700,1,0,0,0,1701, - 1702,1,0,0,0,1702,1703,1,0,0,0,1703,1705,5,882,0,0,1704,1682,1,0, - 0,0,1704,1687,1,0,0,0,1704,1688,1,0,0,0,1704,1691,1,0,0,0,1704,1693, - 1,0,0,0,1704,1694,1,0,0,0,1704,1699,1,0,0,0,1705,77,1,0,0,0,1706, - 1708,7,18,0,0,1707,1706,1,0,0,0,1707,1708,1,0,0,0,1708,1709,1,0, - 0,0,1709,1710,3,722,361,0,1710,1711,3,744,372,0,1711,79,1,0,0,0, - 1712,1713,3,722,361,0,1713,1714,3,744,372,0,1714,81,1,0,0,0,1715, - 1716,5,340,0,0,1716,1739,5,882,0,0,1717,1718,5,444,0,0,1718,1739, - 5,162,0,0,1719,1721,5,114,0,0,1720,1719,1,0,0,0,1720,1721,1,0,0, - 0,1721,1722,1,0,0,0,1722,1739,5,47,0,0,1723,1724,5,354,0,0,1724, - 1734,5,162,0,0,1725,1726,5,502,0,0,1726,1734,5,162,0,0,1727,1728, - 5,136,0,0,1728,1729,5,162,0,0,1729,1734,5,360,0,0,1730,1731,5,112, - 0,0,1731,1732,5,162,0,0,1732,1734,5,360,0,0,1733,1723,1,0,0,0,1733, - 1725,1,0,0,0,1733,1727,1,0,0,0,1733,1730,1,0,0,0,1734,1739,1,0,0, - 0,1735,1736,5,162,0,0,1736,1737,5,591,0,0,1737,1739,7,12,0,0,1738, - 1715,1,0,0,0,1738,1717,1,0,0,0,1738,1720,1,0,0,0,1738,1733,1,0,0, - 0,1738,1735,1,0,0,0,1739,83,1,0,0,0,1740,1741,5,421,0,0,1741,1755, - 5,882,0,0,1742,1743,5,39,0,0,1743,1755,5,882,0,0,1744,1745,5,678, - 0,0,1745,1755,5,882,0,0,1746,1747,5,529,0,0,1747,1755,5,882,0,0, - 1748,1749,5,601,0,0,1749,1755,5,882,0,0,1750,1751,5,519,0,0,1751, - 1755,5,882,0,0,1752,1753,5,537,0,0,1753,1755,3,730,365,0,1754,1740, - 1,0,0,0,1754,1742,1,0,0,0,1754,1744,1,0,0,0,1754,1746,1,0,0,0,1754, - 1748,1,0,0,0,1754,1750,1,0,0,0,1754,1752,1,0,0,0,1755,85,1,0,0,0, - 1756,1757,5,866,0,0,1757,1762,3,88,44,0,1758,1759,5,868,0,0,1759, - 1761,3,88,44,0,1760,1758,1,0,0,0,1761,1764,1,0,0,0,1762,1760,1,0, - 0,0,1762,1763,1,0,0,0,1763,1765,1,0,0,0,1764,1762,1,0,0,0,1765,1766, - 5,867,0,0,1766,87,1,0,0,0,1767,1768,3,668,334,0,1768,1769,3,94,47, - 0,1769,1851,1,0,0,0,1770,1772,7,19,0,0,1771,1773,3,652,326,0,1772, - 1771,1,0,0,0,1772,1773,1,0,0,0,1773,1775,1,0,0,0,1774,1776,3,74, - 37,0,1775,1774,1,0,0,0,1775,1776,1,0,0,0,1776,1777,1,0,0,0,1777, - 1781,3,756,378,0,1778,1780,3,76,38,0,1779,1778,1,0,0,0,1780,1783, - 1,0,0,0,1781,1779,1,0,0,0,1781,1782,1,0,0,0,1782,1851,1,0,0,0,1783, - 1781,1,0,0,0,1784,1786,7,20,0,0,1785,1787,7,19,0,0,1786,1785,1,0, - 0,0,1786,1787,1,0,0,0,1787,1789,1,0,0,0,1788,1790,3,652,326,0,1789, - 1788,1,0,0,0,1789,1790,1,0,0,0,1790,1791,1,0,0,0,1791,1795,3,756, - 378,0,1792,1794,3,76,38,0,1793,1792,1,0,0,0,1794,1797,1,0,0,0,1795, - 1793,1,0,0,0,1795,1796,1,0,0,0,1796,1851,1,0,0,0,1797,1795,1,0,0, - 0,1798,1800,3,92,46,0,1799,1798,1,0,0,0,1799,1800,1,0,0,0,1800,1801, - 1,0,0,0,1801,1802,5,131,0,0,1802,1804,5,92,0,0,1803,1805,3,74,37, - 0,1804,1803,1,0,0,0,1804,1805,1,0,0,0,1805,1806,1,0,0,0,1806,1810, - 3,756,378,0,1807,1809,3,76,38,0,1808,1807,1,0,0,0,1809,1812,1,0, - 0,0,1810,1808,1,0,0,0,1810,1811,1,0,0,0,1811,1851,1,0,0,0,1812,1810, - 1,0,0,0,1813,1815,3,92,46,0,1814,1813,1,0,0,0,1814,1815,1,0,0,0, - 1815,1816,1,0,0,0,1816,1818,5,182,0,0,1817,1819,7,19,0,0,1818,1817, - 1,0,0,0,1818,1819,1,0,0,0,1819,1821,1,0,0,0,1820,1822,3,652,326, - 0,1821,1820,1,0,0,0,1821,1822,1,0,0,0,1822,1824,1,0,0,0,1823,1825, - 3,74,37,0,1824,1823,1,0,0,0,1824,1825,1,0,0,0,1825,1826,1,0,0,0, - 1826,1830,3,756,378,0,1827,1829,3,76,38,0,1828,1827,1,0,0,0,1829, - 1832,1,0,0,0,1830,1828,1,0,0,0,1830,1831,1,0,0,0,1831,1851,1,0,0, - 0,1832,1830,1,0,0,0,1833,1835,3,92,46,0,1834,1833,1,0,0,0,1834,1835, - 1,0,0,0,1835,1836,1,0,0,0,1836,1837,5,67,0,0,1837,1839,5,92,0,0, - 1838,1840,3,652,326,0,1839,1838,1,0,0,0,1839,1840,1,0,0,0,1840,1841, - 1,0,0,0,1841,1842,3,756,378,0,1842,1843,3,98,49,0,1843,1851,1,0, - 0,0,1844,1845,5,27,0,0,1845,1846,5,866,0,0,1846,1847,3,822,411,0, - 1847,1848,5,867,0,0,1848,1851,1,0,0,0,1849,1851,3,90,45,0,1850,1767, - 1,0,0,0,1850,1770,1,0,0,0,1850,1784,1,0,0,0,1850,1799,1,0,0,0,1850, - 1814,1,0,0,0,1850,1834,1,0,0,0,1850,1844,1,0,0,0,1850,1849,1,0,0, - 0,1851,89,1,0,0,0,1852,1854,3,92,46,0,1853,1852,1,0,0,0,1853,1854, - 1,0,0,0,1854,1855,1,0,0,0,1855,1856,5,27,0,0,1856,1857,5,866,0,0, - 1857,1858,3,822,411,0,1858,1863,5,867,0,0,1859,1861,5,114,0,0,1860, - 1859,1,0,0,0,1860,1861,1,0,0,0,1861,1862,1,0,0,0,1862,1864,5,57, - 0,0,1863,1860,1,0,0,0,1863,1864,1,0,0,0,1864,91,1,0,0,0,1865,1867, - 5,31,0,0,1866,1868,3,722,361,0,1867,1866,1,0,0,0,1867,1868,1,0,0, - 0,1868,93,1,0,0,0,1869,1873,3,744,372,0,1870,1872,3,96,48,0,1871, - 1870,1,0,0,0,1872,1875,1,0,0,0,1873,1871,1,0,0,0,1873,1874,1,0,0, - 0,1874,95,1,0,0,0,1875,1873,1,0,0,0,1876,1920,3,740,370,0,1877,1878, - 5,42,0,0,1878,1920,3,772,386,0,1879,1920,5,686,0,0,1880,1920,5,435, - 0,0,1881,1886,5,315,0,0,1882,1883,5,119,0,0,1883,1884,5,185,0,0, - 1884,1886,3,774,387,0,1885,1881,1,0,0,0,1885,1882,1,0,0,0,1886,1920, - 1,0,0,0,1887,1889,5,131,0,0,1888,1887,1,0,0,0,1888,1889,1,0,0,0, - 1889,1890,1,0,0,0,1890,1920,5,92,0,0,1891,1893,5,182,0,0,1892,1894, - 5,92,0,0,1893,1892,1,0,0,0,1893,1894,1,0,0,0,1894,1920,1,0,0,0,1895, - 1896,5,340,0,0,1896,1920,5,882,0,0,1897,1898,5,338,0,0,1898,1920, - 7,21,0,0,1899,1900,5,647,0,0,1900,1920,7,22,0,0,1901,1920,3,98,49, - 0,1902,1903,5,28,0,0,1903,1920,3,706,353,0,1904,1905,5,71,0,0,1905, - 1907,5,9,0,0,1906,1904,1,0,0,0,1906,1907,1,0,0,0,1907,1908,1,0,0, - 0,1908,1909,5,13,0,0,1909,1910,5,866,0,0,1910,1911,3,822,411,0,1911, - 1913,5,867,0,0,1912,1914,7,23,0,0,1913,1912,1,0,0,0,1913,1914,1, - 0,0,0,1914,1920,1,0,0,0,1915,1916,5,241,0,0,1916,1917,5,42,0,0,1917, - 1920,5,682,0,0,1918,1920,3,90,45,0,1919,1876,1,0,0,0,1919,1877,1, - 0,0,0,1919,1879,1,0,0,0,1919,1880,1,0,0,0,1919,1885,1,0,0,0,1919, - 1888,1,0,0,0,1919,1891,1,0,0,0,1919,1895,1,0,0,0,1919,1897,1,0,0, - 0,1919,1899,1,0,0,0,1919,1901,1,0,0,0,1919,1902,1,0,0,0,1919,1906, - 1,0,0,0,1919,1915,1,0,0,0,1919,1918,1,0,0,0,1920,97,1,0,0,0,1921, - 1922,5,138,0,0,1922,1924,3,662,331,0,1923,1925,3,756,378,0,1924, - 1923,1,0,0,0,1924,1925,1,0,0,0,1925,1928,1,0,0,0,1926,1927,5,110, - 0,0,1927,1929,7,24,0,0,1928,1926,1,0,0,0,1928,1929,1,0,0,0,1929, - 1931,1,0,0,0,1930,1932,3,100,50,0,1931,1930,1,0,0,0,1931,1932,1, - 0,0,0,1932,99,1,0,0,0,1933,1934,5,119,0,0,1934,1935,5,44,0,0,1935, - 1939,3,102,51,0,1936,1937,5,119,0,0,1937,1938,5,185,0,0,1938,1940, - 3,102,51,0,1939,1936,1,0,0,0,1939,1940,1,0,0,0,1940,1950,1,0,0,0, - 1941,1942,5,119,0,0,1942,1943,5,185,0,0,1943,1947,3,102,51,0,1944, - 1945,5,119,0,0,1945,1946,5,44,0,0,1946,1948,3,102,51,0,1947,1944, - 1,0,0,0,1947,1948,1,0,0,0,1948,1950,1,0,0,0,1949,1933,1,0,0,0,1949, - 1941,1,0,0,0,1950,101,1,0,0,0,1951,1960,5,146,0,0,1952,1960,5,22, - 0,0,1953,1954,5,155,0,0,1954,1960,5,116,0,0,1955,1956,5,502,0,0, - 1956,1960,5,305,0,0,1957,1958,5,155,0,0,1958,1960,5,42,0,0,1959, - 1951,1,0,0,0,1959,1952,1,0,0,0,1959,1953,1,0,0,0,1959,1955,1,0,0, - 0,1959,1957,1,0,0,0,1960,103,1,0,0,0,1961,1963,5,380,0,0,1962,1964, - 5,857,0,0,1963,1962,1,0,0,0,1963,1964,1,0,0,0,1964,1966,1,0,0,0, - 1965,1967,3,708,354,0,1966,1965,1,0,0,0,1966,1967,1,0,0,0,1967,2147, - 1,0,0,0,1968,1970,5,825,0,0,1969,1971,5,857,0,0,1970,1969,1,0,0, - 0,1970,1971,1,0,0,0,1971,1972,1,0,0,0,1972,2147,5,882,0,0,1973,1975, - 5,314,0,0,1974,1976,5,857,0,0,1975,1974,1,0,0,0,1975,1976,1,0,0, - 0,1976,1977,1,0,0,0,1977,2147,3,730,365,0,1978,1980,5,315,0,0,1979, - 1981,5,857,0,0,1980,1979,1,0,0,0,1980,1981,1,0,0,0,1981,1982,1,0, - 0,0,1982,2147,3,730,365,0,1983,1985,5,316,0,0,1984,1986,5,857,0, - 0,1985,1984,1,0,0,0,1985,1986,1,0,0,0,1986,1987,1,0,0,0,1987,2147, - 3,730,365,0,1988,1990,5,42,0,0,1989,1988,1,0,0,0,1989,1990,1,0,0, - 0,1990,1991,1,0,0,0,1991,1993,3,58,29,0,1992,1994,5,857,0,0,1993, - 1992,1,0,0,0,1993,1994,1,0,0,0,1994,1997,1,0,0,0,1995,1998,3,704, - 352,0,1996,1998,5,42,0,0,1997,1995,1,0,0,0,1997,1996,1,0,0,0,1998, - 2147,1,0,0,0,1999,2001,7,25,0,0,2000,2002,5,857,0,0,2001,2000,1, - 0,0,0,2001,2002,1,0,0,0,2002,2003,1,0,0,0,2003,2147,7,26,0,0,2004, - 2006,5,42,0,0,2005,2004,1,0,0,0,2005,2006,1,0,0,0,2006,2007,1,0, - 0,0,2007,2009,5,28,0,0,2008,2010,5,857,0,0,2009,2008,1,0,0,0,2009, - 2010,1,0,0,0,2010,2011,1,0,0,0,2011,2147,3,706,353,0,2012,2014,5, - 340,0,0,2013,2015,5,857,0,0,2014,2013,1,0,0,0,2014,2015,1,0,0,0, - 2015,2016,1,0,0,0,2016,2147,5,882,0,0,2017,2019,5,346,0,0,2018,2020, - 5,857,0,0,2019,2018,1,0,0,0,2019,2020,1,0,0,0,2020,2021,1,0,0,0, - 2021,2147,7,27,0,0,2022,2024,5,349,0,0,2023,2025,5,857,0,0,2024, - 2023,1,0,0,0,2024,2025,1,0,0,0,2025,2026,1,0,0,0,2026,2147,5,882, - 0,0,2027,2028,7,28,0,0,2028,2030,5,367,0,0,2029,2031,5,857,0,0,2030, - 2029,1,0,0,0,2030,2031,1,0,0,0,2031,2032,1,0,0,0,2032,2147,5,882, - 0,0,2033,2035,5,365,0,0,2034,2036,5,857,0,0,2035,2034,1,0,0,0,2035, - 2036,1,0,0,0,2036,2037,1,0,0,0,2037,2147,7,26,0,0,2038,2040,5,376, - 0,0,2039,2041,5,857,0,0,2040,2039,1,0,0,0,2040,2041,1,0,0,0,2041, - 2042,1,0,0,0,2042,2147,5,882,0,0,2043,2045,7,29,0,0,2044,2046,5, - 857,0,0,2045,2044,1,0,0,0,2045,2046,1,0,0,0,2046,2047,1,0,0,0,2047, - 2147,7,26,0,0,2048,2050,7,30,0,0,2049,2051,5,857,0,0,2050,2049,1, - 0,0,0,2050,2051,1,0,0,0,2051,2052,1,0,0,0,2052,2147,3,730,365,0, - 2053,2055,5,377,0,0,2054,2056,5,857,0,0,2055,2054,1,0,0,0,2055,2056, - 1,0,0,0,2056,2057,1,0,0,0,2057,2147,3,730,365,0,2058,2059,5,82,0, - 0,2059,2061,5,367,0,0,2060,2062,5,857,0,0,2061,2060,1,0,0,0,2061, - 2062,1,0,0,0,2062,2063,1,0,0,0,2063,2147,5,882,0,0,2064,2066,5,431, - 0,0,2065,2067,5,857,0,0,2066,2065,1,0,0,0,2066,2067,1,0,0,0,2067, - 2068,1,0,0,0,2068,2147,7,31,0,0,2069,2071,5,443,0,0,2070,2072,5, - 857,0,0,2071,2070,1,0,0,0,2071,2072,1,0,0,0,2072,2073,1,0,0,0,2073, - 2147,3,732,366,0,2074,2076,5,480,0,0,2075,2077,5,857,0,0,2076,2075, - 1,0,0,0,2076,2077,1,0,0,0,2077,2078,1,0,0,0,2078,2147,3,730,365, - 0,2079,2081,5,490,0,0,2080,2082,5,857,0,0,2081,2080,1,0,0,0,2081, - 2082,1,0,0,0,2082,2083,1,0,0,0,2083,2147,3,730,365,0,2084,2086,5, - 520,0,0,2085,2087,5,857,0,0,2086,2085,1,0,0,0,2086,2087,1,0,0,0, - 2087,2088,1,0,0,0,2088,2147,7,14,0,0,2089,2091,5,529,0,0,2090,2092, - 5,857,0,0,2091,2090,1,0,0,0,2091,2092,1,0,0,0,2092,2093,1,0,0,0, - 2093,2147,5,882,0,0,2094,2096,5,588,0,0,2095,2097,5,857,0,0,2096, - 2095,1,0,0,0,2096,2097,1,0,0,0,2097,2098,1,0,0,0,2098,2147,7,32, - 0,0,2099,2100,5,640,0,0,2100,2147,5,664,0,0,2101,2103,5,833,0,0, - 2102,2104,5,857,0,0,2103,2102,1,0,0,0,2103,2104,1,0,0,0,2104,2105, - 1,0,0,0,2105,2147,5,882,0,0,2106,2108,5,642,0,0,2107,2109,5,857, - 0,0,2108,2107,1,0,0,0,2108,2109,1,0,0,0,2109,2110,1,0,0,0,2110,2147, - 7,14,0,0,2111,2113,5,643,0,0,2112,2114,5,857,0,0,2113,2112,1,0,0, - 0,2113,2114,1,0,0,0,2114,2115,1,0,0,0,2115,2147,7,14,0,0,2116,2118, - 5,644,0,0,2117,2119,5,857,0,0,2118,2117,1,0,0,0,2118,2119,1,0,0, - 0,2119,2122,1,0,0,0,2120,2123,5,42,0,0,2121,2123,3,730,365,0,2122, - 2120,1,0,0,0,2122,2121,1,0,0,0,2123,2147,1,0,0,0,2124,2125,5,658, - 0,0,2125,2127,3,682,341,0,2126,2128,3,108,54,0,2127,2126,1,0,0,0, - 2127,2128,1,0,0,0,2128,2147,1,0,0,0,2129,2130,5,659,0,0,2130,2131, - 5,857,0,0,2131,2147,3,106,53,0,2132,2147,3,108,54,0,2133,2135,5, - 665,0,0,2134,2136,5,857,0,0,2135,2134,1,0,0,0,2135,2136,1,0,0,0, - 2136,2137,1,0,0,0,2137,2147,7,26,0,0,2138,2140,5,181,0,0,2139,2141, - 5,857,0,0,2140,2139,1,0,0,0,2140,2141,1,0,0,0,2141,2142,1,0,0,0, - 2142,2143,5,866,0,0,2143,2144,3,660,330,0,2144,2145,5,867,0,0,2145, - 2147,1,0,0,0,2146,1961,1,0,0,0,2146,1968,1,0,0,0,2146,1973,1,0,0, - 0,2146,1978,1,0,0,0,2146,1983,1,0,0,0,2146,1989,1,0,0,0,2146,1999, - 1,0,0,0,2146,2005,1,0,0,0,2146,2012,1,0,0,0,2146,2017,1,0,0,0,2146, - 2022,1,0,0,0,2146,2027,1,0,0,0,2146,2033,1,0,0,0,2146,2038,1,0,0, - 0,2146,2043,1,0,0,0,2146,2048,1,0,0,0,2146,2053,1,0,0,0,2146,2058, - 1,0,0,0,2146,2064,1,0,0,0,2146,2069,1,0,0,0,2146,2074,1,0,0,0,2146, - 2079,1,0,0,0,2146,2084,1,0,0,0,2146,2089,1,0,0,0,2146,2094,1,0,0, - 0,2146,2099,1,0,0,0,2146,2101,1,0,0,0,2146,2106,1,0,0,0,2146,2111, - 1,0,0,0,2146,2116,1,0,0,0,2146,2124,1,0,0,0,2146,2129,1,0,0,0,2146, - 2132,1,0,0,0,2146,2133,1,0,0,0,2146,2138,1,0,0,0,2147,105,1,0,0, - 0,2148,2149,7,33,0,0,2149,107,1,0,0,0,2150,2151,5,647,0,0,2151,2152, - 7,22,0,0,2152,109,1,0,0,0,2153,2154,5,130,0,0,2154,2155,5,20,0,0, - 2155,2158,3,112,56,0,2156,2157,5,528,0,0,2157,2159,3,730,365,0,2158, - 2156,1,0,0,0,2158,2159,1,0,0,0,2159,2167,1,0,0,0,2160,2161,5,652, - 0,0,2161,2162,5,20,0,0,2162,2165,3,114,57,0,2163,2164,5,653,0,0, - 2164,2166,3,730,365,0,2165,2163,1,0,0,0,2165,2166,1,0,0,0,2166,2168, - 1,0,0,0,2167,2160,1,0,0,0,2167,2168,1,0,0,0,2168,2180,1,0,0,0,2169, - 2170,5,866,0,0,2170,2175,3,116,58,0,2171,2172,5,868,0,0,2172,2174, - 3,116,58,0,2173,2171,1,0,0,0,2174,2177,1,0,0,0,2175,2173,1,0,0,0, - 2175,2176,1,0,0,0,2176,2178,1,0,0,0,2177,2175,1,0,0,0,2178,2179, - 5,867,0,0,2179,2181,1,0,0,0,2180,2169,1,0,0,0,2180,2181,1,0,0,0, - 2181,111,1,0,0,0,2182,2184,5,101,0,0,2183,2182,1,0,0,0,2183,2184, - 1,0,0,0,2184,2185,1,0,0,0,2185,2186,5,418,0,0,2186,2187,5,866,0, - 0,2187,2188,3,822,411,0,2188,2189,5,867,0,0,2189,2229,1,0,0,0,2190, - 2192,5,101,0,0,2191,2190,1,0,0,0,2191,2192,1,0,0,0,2192,2193,1,0, - 0,0,2193,2197,5,92,0,0,2194,2195,5,308,0,0,2195,2196,5,857,0,0,2196, - 2198,7,34,0,0,2197,2194,1,0,0,0,2197,2198,1,0,0,0,2198,2199,1,0, - 0,0,2199,2201,5,866,0,0,2200,2202,3,670,335,0,2201,2200,1,0,0,0, - 2201,2202,1,0,0,0,2202,2203,1,0,0,0,2203,2229,5,867,0,0,2204,2214, - 5,134,0,0,2205,2206,5,866,0,0,2206,2207,3,822,411,0,2207,2208,5, - 867,0,0,2208,2215,1,0,0,0,2209,2210,5,337,0,0,2210,2211,5,866,0, - 0,2211,2212,3,670,335,0,2212,2213,5,867,0,0,2213,2215,1,0,0,0,2214, - 2205,1,0,0,0,2214,2209,1,0,0,0,2215,2229,1,0,0,0,2216,2226,5,449, - 0,0,2217,2218,5,866,0,0,2218,2219,3,822,411,0,2219,2220,5,867,0, - 0,2220,2227,1,0,0,0,2221,2222,5,337,0,0,2222,2223,5,866,0,0,2223, - 2224,3,670,335,0,2224,2225,5,867,0,0,2225,2227,1,0,0,0,2226,2217, - 1,0,0,0,2226,2221,1,0,0,0,2227,2229,1,0,0,0,2228,2183,1,0,0,0,2228, - 2191,1,0,0,0,2228,2204,1,0,0,0,2228,2216,1,0,0,0,2229,113,1,0,0, - 0,2230,2232,5,101,0,0,2231,2230,1,0,0,0,2231,2232,1,0,0,0,2232,2233, - 1,0,0,0,2233,2234,5,418,0,0,2234,2235,5,866,0,0,2235,2236,3,822, - 411,0,2236,2237,5,867,0,0,2237,2252,1,0,0,0,2238,2240,5,101,0,0, - 2239,2238,1,0,0,0,2239,2240,1,0,0,0,2240,2241,1,0,0,0,2241,2245, - 5,92,0,0,2242,2243,5,308,0,0,2243,2244,5,857,0,0,2244,2246,7,34, - 0,0,2245,2242,1,0,0,0,2245,2246,1,0,0,0,2246,2247,1,0,0,0,2247,2248, - 5,866,0,0,2248,2249,3,670,335,0,2249,2250,5,867,0,0,2250,2252,1, - 0,0,0,2251,2231,1,0,0,0,2251,2239,1,0,0,0,2252,115,1,0,0,0,2253, - 2254,5,130,0,0,2254,2255,3,688,344,0,2255,2256,5,189,0,0,2256,2257, - 5,447,0,0,2257,2258,5,662,0,0,2258,2259,5,866,0,0,2259,2264,3,118, - 59,0,2260,2261,5,868,0,0,2261,2263,3,118,59,0,2262,2260,1,0,0,0, - 2263,2266,1,0,0,0,2264,2262,1,0,0,0,2264,2265,1,0,0,0,2265,2267, - 1,0,0,0,2266,2264,1,0,0,0,2267,2271,5,867,0,0,2268,2270,3,124,62, - 0,2269,2268,1,0,0,0,2270,2273,1,0,0,0,2271,2269,1,0,0,0,2271,2272, - 1,0,0,0,2272,2285,1,0,0,0,2273,2271,1,0,0,0,2274,2275,5,866,0,0, - 2275,2280,3,122,61,0,2276,2277,5,868,0,0,2277,2279,3,122,61,0,2278, - 2276,1,0,0,0,2279,2282,1,0,0,0,2280,2278,1,0,0,0,2280,2281,1,0,0, - 0,2281,2283,1,0,0,0,2282,2280,1,0,0,0,2283,2284,5,867,0,0,2284,2286, - 1,0,0,0,2285,2274,1,0,0,0,2285,2286,1,0,0,0,2286,2400,1,0,0,0,2287, - 2288,5,130,0,0,2288,2289,3,688,344,0,2289,2290,5,189,0,0,2290,2291, - 5,447,0,0,2291,2292,5,662,0,0,2292,2296,3,118,59,0,2293,2295,3,124, - 62,0,2294,2293,1,0,0,0,2295,2298,1,0,0,0,2296,2294,1,0,0,0,2296, - 2297,1,0,0,0,2297,2310,1,0,0,0,2298,2296,1,0,0,0,2299,2300,5,866, - 0,0,2300,2305,3,122,61,0,2301,2302,5,868,0,0,2302,2304,3,122,61, - 0,2303,2301,1,0,0,0,2304,2307,1,0,0,0,2305,2303,1,0,0,0,2305,2306, - 1,0,0,0,2306,2308,1,0,0,0,2307,2305,1,0,0,0,2308,2309,5,867,0,0, - 2309,2311,1,0,0,0,2310,2299,1,0,0,0,2310,2311,1,0,0,0,2311,2400, - 1,0,0,0,2312,2313,5,130,0,0,2313,2314,3,688,344,0,2314,2315,5,189, - 0,0,2315,2316,5,80,0,0,2316,2317,5,866,0,0,2317,2322,3,118,59,0, - 2318,2319,5,868,0,0,2319,2321,3,118,59,0,2320,2318,1,0,0,0,2321, - 2324,1,0,0,0,2322,2320,1,0,0,0,2322,2323,1,0,0,0,2323,2325,1,0,0, - 0,2324,2322,1,0,0,0,2325,2329,5,867,0,0,2326,2328,3,124,62,0,2327, - 2326,1,0,0,0,2328,2331,1,0,0,0,2329,2327,1,0,0,0,2329,2330,1,0,0, - 0,2330,2343,1,0,0,0,2331,2329,1,0,0,0,2332,2333,5,866,0,0,2333,2338, - 3,122,61,0,2334,2335,5,868,0,0,2335,2337,3,122,61,0,2336,2334,1, - 0,0,0,2337,2340,1,0,0,0,2338,2336,1,0,0,0,2338,2339,1,0,0,0,2339, - 2341,1,0,0,0,2340,2338,1,0,0,0,2341,2342,5,867,0,0,2342,2344,1,0, - 0,0,2343,2332,1,0,0,0,2343,2344,1,0,0,0,2344,2400,1,0,0,0,2345,2346, - 5,130,0,0,2346,2347,3,688,344,0,2347,2348,5,189,0,0,2348,2349,5, - 80,0,0,2349,2350,5,866,0,0,2350,2355,3,120,60,0,2351,2352,5,868, - 0,0,2352,2354,3,120,60,0,2353,2351,1,0,0,0,2354,2357,1,0,0,0,2355, - 2353,1,0,0,0,2355,2356,1,0,0,0,2356,2358,1,0,0,0,2357,2355,1,0,0, - 0,2358,2362,5,867,0,0,2359,2361,3,124,62,0,2360,2359,1,0,0,0,2361, - 2364,1,0,0,0,2362,2360,1,0,0,0,2362,2363,1,0,0,0,2363,2376,1,0,0, - 0,2364,2362,1,0,0,0,2365,2366,5,866,0,0,2366,2371,3,122,61,0,2367, - 2368,5,868,0,0,2368,2370,3,122,61,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,2374,1,0,0,0,2373, - 2371,1,0,0,0,2374,2375,5,867,0,0,2375,2377,1,0,0,0,2376,2365,1,0, - 0,0,2376,2377,1,0,0,0,2377,2400,1,0,0,0,2378,2379,5,130,0,0,2379, - 2383,3,688,344,0,2380,2382,3,124,62,0,2381,2380,1,0,0,0,2382,2385, - 1,0,0,0,2383,2381,1,0,0,0,2383,2384,1,0,0,0,2384,2397,1,0,0,0,2385, - 2383,1,0,0,0,2386,2387,5,866,0,0,2387,2392,3,122,61,0,2388,2389, - 5,868,0,0,2389,2391,3,122,61,0,2390,2388,1,0,0,0,2391,2394,1,0,0, - 0,2392,2390,1,0,0,0,2392,2393,1,0,0,0,2393,2395,1,0,0,0,2394,2392, - 1,0,0,0,2395,2396,5,867,0,0,2396,2398,1,0,0,0,2397,2386,1,0,0,0, - 2397,2398,1,0,0,0,2398,2400,1,0,0,0,2399,2253,1,0,0,0,2399,2287, - 1,0,0,0,2399,2312,1,0,0,0,2399,2345,1,0,0,0,2399,2378,1,0,0,0,2400, - 117,1,0,0,0,2401,2405,3,742,371,0,2402,2405,3,822,411,0,2403,2405, - 5,111,0,0,2404,2401,1,0,0,0,2404,2402,1,0,0,0,2404,2403,1,0,0,0, - 2405,119,1,0,0,0,2406,2407,5,866,0,0,2407,2410,3,118,59,0,2408,2409, - 5,868,0,0,2409,2411,3,118,59,0,2410,2408,1,0,0,0,2411,2412,1,0,0, - 0,2412,2410,1,0,0,0,2412,2413,1,0,0,0,2413,2414,1,0,0,0,2414,2415, - 5,867,0,0,2415,121,1,0,0,0,2416,2417,5,652,0,0,2417,2421,3,722,361, - 0,2418,2420,3,124,62,0,2419,2418,1,0,0,0,2420,2423,1,0,0,0,2421, - 2419,1,0,0,0,2421,2422,1,0,0,0,2422,123,1,0,0,0,2423,2421,1,0,0, - 0,2424,2426,5,42,0,0,2425,2424,1,0,0,0,2425,2426,1,0,0,0,2426,2428, - 1,0,0,0,2427,2429,5,647,0,0,2428,2427,1,0,0,0,2428,2429,1,0,0,0, - 2429,2430,1,0,0,0,2430,2432,5,380,0,0,2431,2433,5,857,0,0,2432,2431, - 1,0,0,0,2432,2433,1,0,0,0,2433,2434,1,0,0,0,2434,2473,3,708,354, - 0,2435,2437,5,340,0,0,2436,2438,5,857,0,0,2437,2436,1,0,0,0,2437, - 2438,1,0,0,0,2438,2439,1,0,0,0,2439,2473,5,882,0,0,2440,2441,5,360, - 0,0,2441,2443,5,367,0,0,2442,2444,5,857,0,0,2443,2442,1,0,0,0,2443, - 2444,1,0,0,0,2444,2445,1,0,0,0,2445,2473,5,882,0,0,2446,2447,5,82, - 0,0,2447,2449,5,367,0,0,2448,2450,5,857,0,0,2449,2448,1,0,0,0,2449, - 2450,1,0,0,0,2450,2451,1,0,0,0,2451,2473,5,882,0,0,2452,2454,5,480, - 0,0,2453,2455,5,857,0,0,2454,2453,1,0,0,0,2454,2455,1,0,0,0,2455, - 2456,1,0,0,0,2456,2473,3,730,365,0,2457,2459,5,490,0,0,2458,2460, - 5,857,0,0,2459,2458,1,0,0,0,2459,2460,1,0,0,0,2460,2461,1,0,0,0, - 2461,2473,3,730,365,0,2462,2464,5,658,0,0,2463,2465,5,857,0,0,2464, - 2463,1,0,0,0,2464,2465,1,0,0,0,2465,2466,1,0,0,0,2466,2473,3,682, - 341,0,2467,2469,5,504,0,0,2468,2470,5,857,0,0,2469,2468,1,0,0,0, - 2469,2470,1,0,0,0,2470,2471,1,0,0,0,2471,2473,3,722,361,0,2472,2425, - 1,0,0,0,2472,2435,1,0,0,0,2472,2440,1,0,0,0,2472,2446,1,0,0,0,2472, - 2452,1,0,0,0,2472,2457,1,0,0,0,2472,2462,1,0,0,0,2472,2467,1,0,0, - 0,2473,125,1,0,0,0,2474,2475,5,8,0,0,2475,2477,7,0,0,0,2476,2478, - 3,638,319,0,2477,2476,1,0,0,0,2477,2478,1,0,0,0,2478,2480,1,0,0, - 0,2479,2481,3,56,28,0,2480,2479,1,0,0,0,2481,2482,1,0,0,0,2482,2480, - 1,0,0,0,2482,2483,1,0,0,0,2483,2493,1,0,0,0,2484,2485,5,8,0,0,2485, - 2486,7,0,0,0,2486,2487,3,638,319,0,2487,2488,5,677,0,0,2488,2489, - 5,360,0,0,2489,2490,5,367,0,0,2490,2491,5,496,0,0,2491,2493,1,0, - 0,0,2492,2474,1,0,0,0,2492,2484,1,0,0,0,2493,127,1,0,0,0,2494,2496, - 5,8,0,0,2495,2497,3,62,31,0,2496,2495,1,0,0,0,2496,2497,1,0,0,0, - 2497,2498,1,0,0,0,2498,2499,5,385,0,0,2499,2503,3,718,359,0,2500, - 2501,5,119,0,0,2501,2502,5,590,0,0,2502,2504,3,64,32,0,2503,2500, - 1,0,0,0,2503,2504,1,0,0,0,2504,2511,1,0,0,0,2505,2506,5,119,0,0, - 2506,2508,5,343,0,0,2507,2509,5,114,0,0,2508,2507,1,0,0,0,2508,2509, - 1,0,0,0,2509,2510,1,0,0,0,2510,2512,5,541,0,0,2511,2505,1,0,0,0, - 2511,2512,1,0,0,0,2512,2516,1,0,0,0,2513,2514,5,141,0,0,2514,2515, - 5,176,0,0,2515,2517,3,718,359,0,2516,2513,1,0,0,0,2516,2517,1,0, - 0,0,2517,2519,1,0,0,0,2518,2520,3,72,36,0,2519,2518,1,0,0,0,2519, - 2520,1,0,0,0,2520,2523,1,0,0,0,2521,2522,5,340,0,0,2522,2524,5,882, - 0,0,2523,2521,1,0,0,0,2523,2524,1,0,0,0,2524,2527,1,0,0,0,2525,2526, - 5,371,0,0,2526,2528,3,432,216,0,2527,2525,1,0,0,0,2527,2528,1,0, - 0,0,2528,129,1,0,0,0,2529,2530,5,8,0,0,2530,2531,5,409,0,0,2531, - 2535,3,642,321,0,2532,2534,3,82,41,0,2533,2532,1,0,0,0,2534,2537, - 1,0,0,0,2535,2533,1,0,0,0,2535,2536,1,0,0,0,2536,131,1,0,0,0,2537, - 2535,1,0,0,0,2538,2539,5,8,0,0,2539,2540,5,433,0,0,2540,2541,5,585, - 0,0,2541,2542,5,801,0,0,2542,2543,5,453,0,0,2543,2544,5,92,0,0,2544, - 133,1,0,0,0,2545,2546,5,8,0,0,2546,2547,5,451,0,0,2547,2548,5,74, - 0,0,2548,2549,3,722,361,0,2549,2550,5,6,0,0,2550,2551,5,671,0,0, - 2551,2557,5,882,0,0,2552,2554,5,428,0,0,2553,2555,5,857,0,0,2554, - 2553,1,0,0,0,2554,2555,1,0,0,0,2555,2556,1,0,0,0,2556,2558,3,732, - 366,0,2557,2552,1,0,0,0,2557,2558,1,0,0,0,2558,2560,1,0,0,0,2559, - 2561,5,687,0,0,2560,2559,1,0,0,0,2560,2561,1,0,0,0,2561,2562,1,0, - 0,0,2562,2564,5,380,0,0,2563,2565,5,857,0,0,2564,2563,1,0,0,0,2564, - 2565,1,0,0,0,2565,2566,1,0,0,0,2566,2567,3,708,354,0,2567,135,1, - 0,0,0,2568,2569,5,8,0,0,2569,2570,5,132,0,0,2570,2574,3,718,359, - 0,2571,2573,3,82,41,0,2572,2571,1,0,0,0,2573,2576,1,0,0,0,2574,2572, - 1,0,0,0,2574,2575,1,0,0,0,2575,137,1,0,0,0,2576,2574,1,0,0,0,2577, - 2578,5,8,0,0,2578,2579,5,592,0,0,2579,2580,3,722,361,0,2580,2581, - 5,518,0,0,2581,2582,5,866,0,0,2582,2587,3,84,42,0,2583,2584,5,868, - 0,0,2584,2586,3,84,42,0,2585,2583,1,0,0,0,2586,2589,1,0,0,0,2587, - 2585,1,0,0,0,2587,2588,1,0,0,0,2588,2590,1,0,0,0,2589,2587,1,0,0, - 0,2590,2591,5,867,0,0,2591,139,1,0,0,0,2592,2593,5,8,0,0,2593,2594, - 5,173,0,0,2594,2603,3,662,331,0,2595,2600,3,146,73,0,2596,2597,5, - 868,0,0,2597,2599,3,146,73,0,2598,2596,1,0,0,0,2599,2602,1,0,0,0, - 2600,2598,1,0,0,0,2600,2601,1,0,0,0,2601,2604,1,0,0,0,2602,2600, - 1,0,0,0,2603,2595,1,0,0,0,2603,2604,1,0,0,0,2604,2612,1,0,0,0,2605, - 2609,3,148,74,0,2606,2608,3,148,74,0,2607,2606,1,0,0,0,2608,2611, - 1,0,0,0,2609,2607,1,0,0,0,2609,2610,1,0,0,0,2610,2613,1,0,0,0,2611, - 2609,1,0,0,0,2612,2605,1,0,0,0,2612,2613,1,0,0,0,2613,141,1,0,0, - 0,2614,2616,5,8,0,0,2615,2617,5,180,0,0,2616,2615,1,0,0,0,2616,2617, - 1,0,0,0,2617,2618,1,0,0,0,2618,2619,5,658,0,0,2619,2620,3,682,341, - 0,2620,2621,7,35,0,0,2621,2622,5,361,0,0,2622,2628,5,882,0,0,2623, - 2625,5,428,0,0,2624,2626,5,857,0,0,2625,2624,1,0,0,0,2625,2626,1, - 0,0,0,2626,2627,1,0,0,0,2627,2629,3,732,366,0,2628,2623,1,0,0,0, - 2628,2629,1,0,0,0,2629,2631,1,0,0,0,2630,2632,5,687,0,0,2631,2630, - 1,0,0,0,2631,2632,1,0,0,0,2632,2636,1,0,0,0,2633,2634,5,141,0,0, - 2634,2635,5,176,0,0,2635,2637,3,680,340,0,2636,2633,1,0,0,0,2636, - 2637,1,0,0,0,2637,2643,1,0,0,0,2638,2640,5,314,0,0,2639,2641,5,857, - 0,0,2640,2639,1,0,0,0,2640,2641,1,0,0,0,2641,2642,1,0,0,0,2642,2644, - 3,732,366,0,2643,2638,1,0,0,0,2643,2644,1,0,0,0,2644,2647,1,0,0, - 0,2645,2646,5,155,0,0,2646,2648,7,36,0,0,2647,2645,1,0,0,0,2647, - 2648,1,0,0,0,2648,2654,1,0,0,0,2649,2651,5,376,0,0,2650,2652,5,857, - 0,0,2651,2650,1,0,0,0,2651,2652,1,0,0,0,2652,2653,1,0,0,0,2653,2655, - 5,882,0,0,2654,2649,1,0,0,0,2654,2655,1,0,0,0,2655,2661,1,0,0,0, - 2656,2658,5,380,0,0,2657,2659,5,857,0,0,2658,2657,1,0,0,0,2658,2659, - 1,0,0,0,2659,2660,1,0,0,0,2660,2662,3,708,354,0,2661,2656,1,0,0, - 0,2661,2662,1,0,0,0,2662,2668,1,0,0,0,2663,2665,5,825,0,0,2664,2666, - 5,857,0,0,2665,2664,1,0,0,0,2665,2666,1,0,0,0,2666,2667,1,0,0,0, - 2667,2669,5,882,0,0,2668,2663,1,0,0,0,2668,2669,1,0,0,0,2669,143, - 1,0,0,0,2670,2674,5,8,0,0,2671,2672,5,308,0,0,2672,2673,5,857,0, - 0,2673,2675,7,11,0,0,2674,2671,1,0,0,0,2674,2675,1,0,0,0,2675,2677, - 1,0,0,0,2676,2678,3,62,31,0,2677,2676,1,0,0,0,2677,2678,1,0,0,0, - 2678,2682,1,0,0,0,2679,2680,5,162,0,0,2680,2681,5,591,0,0,2681,2683, - 7,12,0,0,2682,2679,1,0,0,0,2682,2683,1,0,0,0,2683,2684,1,0,0,0,2684, - 2685,5,684,0,0,2685,2690,3,646,323,0,2686,2687,5,866,0,0,2687,2688, - 3,670,335,0,2688,2689,5,867,0,0,2689,2691,1,0,0,0,2690,2686,1,0, - 0,0,2690,2691,1,0,0,0,2691,2692,1,0,0,0,2692,2693,5,13,0,0,2693, - 2700,3,210,105,0,2694,2696,5,194,0,0,2695,2697,7,13,0,0,2696,2695, - 1,0,0,0,2696,2697,1,0,0,0,2697,2698,1,0,0,0,2698,2699,5,27,0,0,2699, - 2701,5,121,0,0,2700,2694,1,0,0,0,2700,2701,1,0,0,0,2701,145,1,0, - 0,0,2702,2709,3,104,52,0,2703,2705,5,868,0,0,2704,2703,1,0,0,0,2704, - 2705,1,0,0,0,2705,2706,1,0,0,0,2706,2708,3,104,52,0,2707,2704,1, - 0,0,0,2708,2711,1,0,0,0,2709,2707,1,0,0,0,2709,2710,1,0,0,0,2710, - 2967,1,0,0,0,2711,2709,1,0,0,0,2712,2714,5,6,0,0,2713,2715,5,29, - 0,0,2714,2713,1,0,0,0,2714,2715,1,0,0,0,2715,2716,1,0,0,0,2716,2717, - 3,674,337,0,2717,2721,3,94,47,0,2718,2722,5,402,0,0,2719,2720,5, - 306,0,0,2720,2722,3,674,337,0,2721,2718,1,0,0,0,2721,2719,1,0,0, - 0,2721,2722,1,0,0,0,2722,2967,1,0,0,0,2723,2725,5,6,0,0,2724,2726, - 5,29,0,0,2725,2724,1,0,0,0,2725,2726,1,0,0,0,2726,2727,1,0,0,0,2727, - 2728,5,866,0,0,2728,2729,3,674,337,0,2729,2736,3,94,47,0,2730,2731, - 5,868,0,0,2731,2732,3,674,337,0,2732,2733,3,94,47,0,2733,2735,1, - 0,0,0,2734,2730,1,0,0,0,2735,2738,1,0,0,0,2736,2734,1,0,0,0,2736, - 2737,1,0,0,0,2737,2739,1,0,0,0,2738,2736,1,0,0,0,2739,2740,5,867, - 0,0,2740,2967,1,0,0,0,2741,2742,5,6,0,0,2742,2744,7,19,0,0,2743, - 2745,3,652,326,0,2744,2743,1,0,0,0,2744,2745,1,0,0,0,2745,2747,1, - 0,0,0,2746,2748,3,74,37,0,2747,2746,1,0,0,0,2747,2748,1,0,0,0,2748, - 2749,1,0,0,0,2749,2753,3,756,378,0,2750,2752,3,76,38,0,2751,2750, - 1,0,0,0,2752,2755,1,0,0,0,2753,2751,1,0,0,0,2753,2754,1,0,0,0,2754, - 2967,1,0,0,0,2755,2753,1,0,0,0,2756,2757,5,6,0,0,2757,2759,7,20, - 0,0,2758,2760,7,19,0,0,2759,2758,1,0,0,0,2759,2760,1,0,0,0,2760, - 2762,1,0,0,0,2761,2763,3,652,326,0,2762,2761,1,0,0,0,2762,2763,1, - 0,0,0,2763,2764,1,0,0,0,2764,2768,3,756,378,0,2765,2767,3,76,38, - 0,2766,2765,1,0,0,0,2767,2770,1,0,0,0,2768,2766,1,0,0,0,2768,2769, - 1,0,0,0,2769,2967,1,0,0,0,2770,2768,1,0,0,0,2771,2776,5,6,0,0,2772, - 2774,5,31,0,0,2773,2775,3,722,361,0,2774,2773,1,0,0,0,2774,2775, - 1,0,0,0,2775,2777,1,0,0,0,2776,2772,1,0,0,0,2776,2777,1,0,0,0,2777, - 2778,1,0,0,0,2778,2779,5,131,0,0,2779,2781,5,92,0,0,2780,2782,3, - 74,37,0,2781,2780,1,0,0,0,2781,2782,1,0,0,0,2782,2783,1,0,0,0,2783, - 2787,3,756,378,0,2784,2786,3,76,38,0,2785,2784,1,0,0,0,2786,2789, - 1,0,0,0,2787,2785,1,0,0,0,2787,2788,1,0,0,0,2788,2967,1,0,0,0,2789, - 2787,1,0,0,0,2790,2795,5,6,0,0,2791,2793,5,31,0,0,2792,2794,3,722, - 361,0,2793,2792,1,0,0,0,2793,2794,1,0,0,0,2794,2796,1,0,0,0,2795, - 2791,1,0,0,0,2795,2796,1,0,0,0,2796,2797,1,0,0,0,2797,2799,5,182, - 0,0,2798,2800,7,19,0,0,2799,2798,1,0,0,0,2799,2800,1,0,0,0,2800, - 2802,1,0,0,0,2801,2803,3,652,326,0,2802,2801,1,0,0,0,2802,2803,1, - 0,0,0,2803,2805,1,0,0,0,2804,2806,3,74,37,0,2805,2804,1,0,0,0,2805, - 2806,1,0,0,0,2806,2807,1,0,0,0,2807,2811,3,756,378,0,2808,2810,3, - 76,38,0,2809,2808,1,0,0,0,2810,2813,1,0,0,0,2811,2809,1,0,0,0,2811, - 2812,1,0,0,0,2812,2967,1,0,0,0,2813,2811,1,0,0,0,2814,2819,5,6,0, - 0,2815,2817,5,31,0,0,2816,2818,3,722,361,0,2817,2816,1,0,0,0,2817, - 2818,1,0,0,0,2818,2820,1,0,0,0,2819,2815,1,0,0,0,2819,2820,1,0,0, - 0,2820,2821,1,0,0,0,2821,2822,5,67,0,0,2822,2824,5,92,0,0,2823,2825, - 3,652,326,0,2824,2823,1,0,0,0,2824,2825,1,0,0,0,2825,2826,1,0,0, - 0,2826,2827,3,756,378,0,2827,2828,3,98,49,0,2828,2967,1,0,0,0,2829, - 2831,5,6,0,0,2830,2832,3,90,45,0,2831,2830,1,0,0,0,2831,2832,1,0, - 0,0,2832,2967,1,0,0,0,2833,2834,5,51,0,0,2834,2835,7,37,0,0,2835, - 2967,3,722,361,0,2836,2837,5,8,0,0,2837,2838,7,37,0,0,2838,2840, - 3,722,361,0,2839,2841,5,114,0,0,2840,2839,1,0,0,0,2840,2841,1,0, - 0,0,2841,2843,1,0,0,0,2842,2844,5,57,0,0,2843,2842,1,0,0,0,2843, - 2844,1,0,0,0,2844,2967,1,0,0,0,2845,2847,5,308,0,0,2846,2848,5,857, - 0,0,2847,2846,1,0,0,0,2847,2848,1,0,0,0,2848,2849,1,0,0,0,2849,2967, - 7,38,0,0,2850,2852,5,8,0,0,2851,2853,5,29,0,0,2852,2851,1,0,0,0, - 2852,2853,1,0,0,0,2853,2854,1,0,0,0,2854,2862,3,674,337,0,2855,2856, - 5,155,0,0,2856,2857,5,42,0,0,2857,2863,3,772,386,0,2858,2859,5,155, - 0,0,2859,2863,7,17,0,0,2860,2861,5,51,0,0,2861,2863,5,42,0,0,2862, - 2855,1,0,0,0,2862,2858,1,0,0,0,2862,2860,1,0,0,0,2863,2967,1,0,0, - 0,2864,2865,5,8,0,0,2865,2866,5,82,0,0,2866,2867,3,652,326,0,2867, - 2868,7,17,0,0,2868,2967,1,0,0,0,2869,2871,5,25,0,0,2870,2872,5,29, - 0,0,2871,2870,1,0,0,0,2871,2872,1,0,0,0,2872,2873,1,0,0,0,2873,2874, - 3,674,337,0,2874,2875,3,668,334,0,2875,2879,3,94,47,0,2876,2880, - 5,402,0,0,2877,2878,5,306,0,0,2878,2880,3,674,337,0,2879,2876,1, - 0,0,0,2879,2877,1,0,0,0,2879,2880,1,0,0,0,2880,2967,1,0,0,0,2881, - 2883,5,42,0,0,2882,2881,1,0,0,0,2882,2883,1,0,0,0,2883,2884,1,0, - 0,0,2884,2885,5,26,0,0,2885,2886,5,155,0,0,2886,2887,5,857,0,0,2887, - 2893,3,704,352,0,2888,2890,5,28,0,0,2889,2891,5,857,0,0,2890,2889, - 1,0,0,0,2890,2891,1,0,0,0,2891,2892,1,0,0,0,2892,2894,3,706,353, - 0,2893,2888,1,0,0,0,2893,2894,1,0,0,0,2894,2967,1,0,0,0,2895,2896, - 5,33,0,0,2896,2900,5,176,0,0,2897,2901,5,823,0,0,2898,2899,5,26, - 0,0,2899,2901,5,155,0,0,2900,2897,1,0,0,0,2900,2898,1,0,0,0,2901, - 2902,1,0,0,0,2902,2905,3,704,352,0,2903,2904,5,28,0,0,2904,2906, - 3,706,353,0,2905,2903,1,0,0,0,2905,2906,1,0,0,0,2906,2967,1,0,0, - 0,2907,2908,7,39,0,0,2908,2967,5,93,0,0,2909,2910,7,40,0,0,2910, - 2967,5,658,0,0,2911,2913,5,51,0,0,2912,2914,5,29,0,0,2913,2912,1, - 0,0,0,2913,2914,1,0,0,0,2914,2915,1,0,0,0,2915,2967,3,674,337,0, - 2916,2917,5,51,0,0,2917,2918,7,19,0,0,2918,2967,3,652,326,0,2919, - 2920,5,51,0,0,2920,2921,5,131,0,0,2921,2967,5,92,0,0,2922,2923,5, - 51,0,0,2923,2924,5,67,0,0,2924,2925,5,92,0,0,2925,2967,3,722,361, - 0,2926,2967,5,66,0,0,2927,2929,5,104,0,0,2928,2930,5,857,0,0,2929, - 2928,1,0,0,0,2929,2930,1,0,0,0,2930,2931,1,0,0,0,2931,2967,7,4,0, - 0,2932,2934,5,492,0,0,2933,2935,5,29,0,0,2934,2933,1,0,0,0,2934, - 2935,1,0,0,0,2935,2936,1,0,0,0,2936,2937,3,674,337,0,2937,2941,3, - 94,47,0,2938,2942,5,402,0,0,2939,2940,5,306,0,0,2940,2942,3,674, - 337,0,2941,2938,1,0,0,0,2941,2939,1,0,0,0,2941,2942,1,0,0,0,2942, - 2967,1,0,0,0,2943,2944,5,125,0,0,2944,2945,5,20,0,0,2945,2967,3, - 670,335,0,2946,2947,5,141,0,0,2947,2948,5,29,0,0,2948,2949,3,674, - 337,0,2949,2950,5,176,0,0,2950,2951,3,668,334,0,2951,2967,1,0,0, - 0,2952,2953,5,141,0,0,2953,2954,7,19,0,0,2954,2955,3,652,326,0,2955, - 2956,5,176,0,0,2956,2957,3,648,324,0,2957,2967,1,0,0,0,2958,2960, - 5,141,0,0,2959,2961,7,41,0,0,2960,2959,1,0,0,0,2960,2961,1,0,0,0, - 2961,2962,1,0,0,0,2962,2967,3,658,329,0,2963,2964,7,42,0,0,2964, - 2967,5,681,0,0,2965,2967,3,148,74,0,2966,2702,1,0,0,0,2966,2712, - 1,0,0,0,2966,2723,1,0,0,0,2966,2741,1,0,0,0,2966,2756,1,0,0,0,2966, - 2771,1,0,0,0,2966,2790,1,0,0,0,2966,2814,1,0,0,0,2966,2829,1,0,0, - 0,2966,2833,1,0,0,0,2966,2836,1,0,0,0,2966,2845,1,0,0,0,2966,2850, - 1,0,0,0,2966,2864,1,0,0,0,2966,2869,1,0,0,0,2966,2882,1,0,0,0,2966, - 2895,1,0,0,0,2966,2907,1,0,0,0,2966,2909,1,0,0,0,2966,2911,1,0,0, - 0,2966,2916,1,0,0,0,2966,2919,1,0,0,0,2966,2922,1,0,0,0,2966,2926, - 1,0,0,0,2966,2927,1,0,0,0,2966,2932,1,0,0,0,2966,2943,1,0,0,0,2966, - 2946,1,0,0,0,2966,2952,1,0,0,0,2966,2958,1,0,0,0,2966,2963,1,0,0, - 0,2966,2965,1,0,0,0,2967,147,1,0,0,0,2968,2969,5,6,0,0,2969,2970, - 5,130,0,0,2970,2971,5,866,0,0,2971,2976,3,116,58,0,2972,2973,5,868, - 0,0,2973,2975,3,116,58,0,2974,2972,1,0,0,0,2975,2978,1,0,0,0,2976, - 2974,1,0,0,0,2976,2977,1,0,0,0,2977,2979,1,0,0,0,2978,2976,1,0,0, - 0,2979,2980,5,867,0,0,2980,3067,1,0,0,0,2981,2982,5,51,0,0,2982, - 2983,5,130,0,0,2983,3067,3,686,343,0,2984,2985,5,369,0,0,2985,2988, - 5,130,0,0,2986,2989,3,686,343,0,2987,2989,5,7,0,0,2988,2986,1,0, - 0,0,2988,2987,1,0,0,0,2989,2990,1,0,0,0,2990,3067,5,658,0,0,2991, - 2992,5,425,0,0,2992,2995,5,130,0,0,2993,2996,3,686,343,0,2994,2996, - 5,7,0,0,2995,2993,1,0,0,0,2995,2994,1,0,0,0,2996,2997,1,0,0,0,2997, - 3067,5,658,0,0,2998,2999,5,668,0,0,2999,3002,5,130,0,0,3000,3003, - 3,686,343,0,3001,3003,5,7,0,0,3002,3000,1,0,0,0,3002,3001,1,0,0, - 0,3003,3067,1,0,0,0,3004,3005,5,335,0,0,3005,3006,5,130,0,0,3006, - 3067,3,730,365,0,3007,3008,5,561,0,0,3008,3009,5,130,0,0,3009,3010, - 3,686,343,0,3010,3011,5,88,0,0,3011,3012,5,866,0,0,3012,3017,3,116, - 58,0,3013,3014,5,868,0,0,3014,3016,3,116,58,0,3015,3013,1,0,0,0, - 3016,3019,1,0,0,0,3017,3015,1,0,0,0,3017,3018,1,0,0,0,3018,3020, - 1,0,0,0,3019,3017,1,0,0,0,3020,3021,5,867,0,0,3021,3067,1,0,0,0, - 3022,3023,5,388,0,0,3023,3024,5,130,0,0,3024,3025,3,688,344,0,3025, - 3026,5,194,0,0,3026,3027,5,173,0,0,3027,3030,3,662,331,0,3028,3029, - 7,42,0,0,3029,3031,5,681,0,0,3030,3028,1,0,0,0,3030,3031,1,0,0,0, - 3031,3067,1,0,0,0,3032,3033,5,10,0,0,3033,3036,5,130,0,0,3034,3037, - 3,686,343,0,3035,3037,5,7,0,0,3036,3034,1,0,0,0,3036,3035,1,0,0, - 0,3037,3067,1,0,0,0,3038,3039,5,27,0,0,3039,3042,5,130,0,0,3040, - 3043,3,686,343,0,3041,3043,5,7,0,0,3042,3040,1,0,0,0,3042,3041,1, - 0,0,0,3043,3067,1,0,0,0,3044,3045,5,120,0,0,3045,3048,5,130,0,0, - 3046,3049,3,686,343,0,3047,3049,5,7,0,0,3048,3046,1,0,0,0,3048,3047, - 1,0,0,0,3049,3067,1,0,0,0,3050,3051,5,550,0,0,3051,3054,5,130,0, - 0,3052,3055,3,686,343,0,3053,3055,5,7,0,0,3054,3052,1,0,0,0,3054, - 3053,1,0,0,0,3055,3067,1,0,0,0,3056,3057,5,562,0,0,3057,3060,5,130, - 0,0,3058,3061,3,686,343,0,3059,3061,5,7,0,0,3060,3058,1,0,0,0,3060, - 3059,1,0,0,0,3061,3067,1,0,0,0,3062,3063,5,560,0,0,3063,3067,5,527, - 0,0,3064,3065,5,677,0,0,3065,3067,5,527,0,0,3066,2968,1,0,0,0,3066, - 2981,1,0,0,0,3066,2984,1,0,0,0,3066,2991,1,0,0,0,3066,2998,1,0,0, - 0,3066,3004,1,0,0,0,3066,3007,1,0,0,0,3066,3022,1,0,0,0,3066,3032, - 1,0,0,0,3066,3038,1,0,0,0,3066,3044,1,0,0,0,3066,3050,1,0,0,0,3066, - 3056,1,0,0,0,3066,3062,1,0,0,0,3066,3064,1,0,0,0,3067,149,1,0,0, - 0,3068,3069,5,51,0,0,3069,3071,7,0,0,0,3070,3072,3,776,388,0,3071, - 3070,1,0,0,0,3071,3072,1,0,0,0,3072,3073,1,0,0,0,3073,3074,3,638, - 319,0,3074,151,1,0,0,0,3075,3076,5,51,0,0,3076,3078,5,385,0,0,3077, - 3079,3,776,388,0,3078,3077,1,0,0,0,3078,3079,1,0,0,0,3079,3080,1, - 0,0,0,3080,3081,3,718,359,0,3081,153,1,0,0,0,3082,3083,5,51,0,0, - 3083,3085,5,82,0,0,3084,3086,7,1,0,0,3085,3084,1,0,0,0,3085,3086, - 1,0,0,0,3086,3087,1,0,0,0,3087,3088,3,652,326,0,3088,3089,5,119, - 0,0,3089,3102,3,662,331,0,3090,3092,5,308,0,0,3091,3093,5,857,0, - 0,3092,3091,1,0,0,0,3092,3093,1,0,0,0,3093,3094,1,0,0,0,3094,3101, - 7,3,0,0,3095,3097,5,104,0,0,3096,3098,5,857,0,0,3097,3096,1,0,0, - 0,3097,3098,1,0,0,0,3098,3099,1,0,0,0,3099,3101,7,4,0,0,3100,3090, - 1,0,0,0,3100,3095,1,0,0,0,3101,3104,1,0,0,0,3102,3100,1,0,0,0,3102, - 3103,1,0,0,0,3103,155,1,0,0,0,3104,3102,1,0,0,0,3105,3106,5,51,0, - 0,3106,3107,5,451,0,0,3107,3108,5,74,0,0,3108,3109,3,722,361,0,3109, - 3111,5,380,0,0,3110,3112,5,857,0,0,3111,3110,1,0,0,0,3111,3112,1, - 0,0,0,3112,3113,1,0,0,0,3113,3114,3,708,354,0,3114,157,1,0,0,0,3115, - 3116,5,51,0,0,3116,3118,5,132,0,0,3117,3119,3,776,388,0,3118,3117, - 1,0,0,0,3118,3119,1,0,0,0,3119,3120,1,0,0,0,3120,3121,3,718,359, - 0,3121,159,1,0,0,0,3122,3123,5,51,0,0,3123,3125,5,409,0,0,3124,3126, - 3,776,388,0,3125,3124,1,0,0,0,3125,3126,1,0,0,0,3126,3127,1,0,0, - 0,3127,3128,3,642,321,0,3128,161,1,0,0,0,3129,3130,5,51,0,0,3130, - 3132,5,592,0,0,3131,3133,3,776,388,0,3132,3131,1,0,0,0,3132,3133, - 1,0,0,0,3133,3134,1,0,0,0,3134,3135,3,722,361,0,3135,163,1,0,0,0, - 3136,3137,5,51,0,0,3137,3138,5,161,0,0,3138,3139,5,137,0,0,3139, - 3141,5,835,0,0,3140,3142,3,776,388,0,3141,3140,1,0,0,0,3141,3142, - 1,0,0,0,3142,3143,1,0,0,0,3143,3144,5,883,0,0,3144,165,1,0,0,0,3145, - 3147,5,51,0,0,3146,3148,5,660,0,0,3147,3146,1,0,0,0,3147,3148,1, - 0,0,0,3148,3149,1,0,0,0,3149,3151,5,173,0,0,3150,3152,3,776,388, - 0,3151,3150,1,0,0,0,3151,3152,1,0,0,0,3152,3153,1,0,0,0,3153,3155, - 3,660,330,0,3154,3156,7,43,0,0,3155,3154,1,0,0,0,3155,3156,1,0,0, - 0,3156,167,1,0,0,0,3157,3159,5,51,0,0,3158,3160,5,180,0,0,3159,3158, - 1,0,0,0,3159,3160,1,0,0,0,3160,3161,1,0,0,0,3161,3162,5,658,0,0, - 3162,3168,3,682,341,0,3163,3165,5,380,0,0,3164,3166,5,857,0,0,3165, - 3164,1,0,0,0,3165,3166,1,0,0,0,3166,3167,1,0,0,0,3167,3169,3,708, - 354,0,3168,3163,1,0,0,0,3168,3169,1,0,0,0,3169,169,1,0,0,0,3170, - 3171,5,51,0,0,3171,3173,5,178,0,0,3172,3174,3,776,388,0,3173,3172, - 1,0,0,0,3173,3174,1,0,0,0,3174,3175,1,0,0,0,3175,3176,3,718,359, - 0,3176,171,1,0,0,0,3177,3178,5,51,0,0,3178,3180,5,684,0,0,3179,3181, - 3,776,388,0,3180,3179,1,0,0,0,3180,3181,1,0,0,0,3181,3182,1,0,0, - 0,3182,3187,3,646,323,0,3183,3184,5,868,0,0,3184,3186,3,646,323, - 0,3185,3183,1,0,0,0,3186,3189,1,0,0,0,3187,3185,1,0,0,0,3187,3188, - 1,0,0,0,3188,3191,1,0,0,0,3189,3187,1,0,0,0,3190,3192,7,43,0,0,3191, - 3190,1,0,0,0,3191,3192,1,0,0,0,3192,173,1,0,0,0,3193,3194,5,51,0, - 0,3194,3196,5,582,0,0,3195,3197,3,776,388,0,3196,3195,1,0,0,0,3196, - 3197,1,0,0,0,3197,3198,1,0,0,0,3198,3199,3,664,332,0,3199,175,1, - 0,0,0,3200,3201,5,155,0,0,3201,3202,5,42,0,0,3202,3206,5,582,0,0, - 3203,3207,5,505,0,0,3204,3207,5,7,0,0,3205,3207,3,664,332,0,3206, - 3203,1,0,0,0,3206,3204,1,0,0,0,3206,3205,1,0,0,0,3207,3208,1,0,0, - 0,3208,3209,5,176,0,0,3209,3214,3,666,333,0,3210,3211,5,868,0,0, - 3211,3213,3,666,333,0,3212,3210,1,0,0,0,3213,3216,1,0,0,0,3214,3212, - 1,0,0,0,3214,3215,1,0,0,0,3215,3221,1,0,0,0,3216,3214,1,0,0,0,3217, - 3218,5,155,0,0,3218,3219,5,582,0,0,3219,3221,3,478,239,0,3220,3200, - 1,0,0,0,3220,3217,1,0,0,0,3221,177,1,0,0,0,3222,3223,5,141,0,0,3223, - 3224,5,173,0,0,3224,3229,3,180,90,0,3225,3226,5,868,0,0,3226,3228, - 3,180,90,0,3227,3225,1,0,0,0,3228,3231,1,0,0,0,3229,3227,1,0,0,0, - 3229,3230,1,0,0,0,3230,179,1,0,0,0,3231,3229,1,0,0,0,3232,3233,3, - 662,331,0,3233,3234,5,176,0,0,3234,3235,3,658,329,0,3235,181,1,0, - 0,0,3236,3238,5,668,0,0,3237,3239,5,173,0,0,3238,3237,1,0,0,0,3238, - 3239,1,0,0,0,3239,3240,1,0,0,0,3240,3241,3,662,331,0,3241,183,1, - 0,0,0,3242,3243,5,21,0,0,3243,3250,3,718,359,0,3244,3247,5,866,0, - 0,3245,3248,3,766,383,0,3246,3248,3,758,379,0,3247,3245,1,0,0,0, - 3247,3246,1,0,0,0,3247,3248,1,0,0,0,3248,3249,1,0,0,0,3249,3251, - 5,867,0,0,3250,3244,1,0,0,0,3250,3251,1,0,0,0,3251,185,1,0,0,0,3252, - 3255,3,240,120,0,3253,3255,3,242,121,0,3254,3252,1,0,0,0,3254,3253, - 1,0,0,0,3255,187,1,0,0,0,3256,3257,5,371,0,0,3257,3258,3,758,379, - 0,3258,189,1,0,0,0,3259,3264,3,244,122,0,3260,3264,3,246,123,0,3261, - 3264,3,248,124,0,3262,3264,3,250,125,0,3263,3259,1,0,0,0,3263,3260, - 1,0,0,0,3263,3261,1,0,0,0,3263,3262,1,0,0,0,3264,191,1,0,0,0,3265, - 3267,5,86,0,0,3266,3268,7,44,0,0,3267,3266,1,0,0,0,3267,3268,1,0, - 0,0,3268,3270,1,0,0,0,3269,3271,5,79,0,0,3270,3269,1,0,0,0,3270, - 3271,1,0,0,0,3271,3273,1,0,0,0,3272,3274,5,88,0,0,3273,3272,1,0, - 0,0,3273,3274,1,0,0,0,3274,3275,1,0,0,0,3275,3282,3,662,331,0,3276, - 3277,5,130,0,0,3277,3279,5,866,0,0,3278,3280,3,686,343,0,3279,3278, - 1,0,0,0,3279,3280,1,0,0,0,3280,3281,1,0,0,0,3281,3283,5,867,0,0, - 3282,3276,1,0,0,0,3282,3283,1,0,0,0,3283,3295,1,0,0,0,3284,3286, - 3,270,135,0,3285,3284,1,0,0,0,3285,3286,1,0,0,0,3286,3289,1,0,0, - 0,3287,3290,3,760,380,0,3288,3290,3,196,98,0,3289,3287,1,0,0,0,3289, - 3288,1,0,0,0,3289,3290,1,0,0,0,3290,3292,1,0,0,0,3291,3293,3,194, - 97,0,3292,3291,1,0,0,0,3292,3293,1,0,0,0,3293,3296,1,0,0,0,3294, - 3296,3,232,116,0,3295,3285,1,0,0,0,3295,3294,1,0,0,0,3296,3298,1, - 0,0,0,3297,3299,3,194,97,0,3298,3297,1,0,0,0,3298,3299,1,0,0,0,3299, - 3312,1,0,0,0,3300,3301,5,119,0,0,3301,3302,5,373,0,0,3302,3303,5, - 92,0,0,3303,3304,5,185,0,0,3304,3309,3,234,117,0,3305,3306,5,868, - 0,0,3306,3308,3,234,117,0,3307,3305,1,0,0,0,3308,3311,1,0,0,0,3309, - 3307,1,0,0,0,3309,3310,1,0,0,0,3310,3313,1,0,0,0,3311,3309,1,0,0, - 0,3312,3300,1,0,0,0,3312,3313,1,0,0,0,3313,193,1,0,0,0,3314,3315, - 5,13,0,0,3315,3317,3,722,361,0,3316,3318,3,270,135,0,3317,3316,1, - 0,0,0,3317,3318,1,0,0,0,3318,195,1,0,0,0,3319,3324,3,210,105,0,3320, - 3321,5,173,0,0,3321,3324,3,662,331,0,3322,3324,3,230,115,0,3323, - 3319,1,0,0,0,3323,3320,1,0,0,0,3323,3322,1,0,0,0,3324,197,1,0,0, - 0,3325,3331,3,200,100,0,3326,3328,5,828,0,0,3327,3329,7,45,0,0,3328, - 3327,1,0,0,0,3328,3329,1,0,0,0,3329,3330,1,0,0,0,3330,3332,3,200, - 100,0,3331,3326,1,0,0,0,3332,3333,1,0,0,0,3333,3331,1,0,0,0,3333, - 3334,1,0,0,0,3334,199,1,0,0,0,3335,3337,5,866,0,0,3336,3335,1,0, - 0,0,3336,3337,1,0,0,0,3337,3338,1,0,0,0,3338,3340,3,282,141,0,3339, - 3341,5,867,0,0,3340,3339,1,0,0,0,3340,3341,1,0,0,0,3341,201,1,0, - 0,0,3342,3343,5,103,0,0,3343,3345,5,360,0,0,3344,3346,7,46,0,0,3345, - 3344,1,0,0,0,3345,3346,1,0,0,0,3346,3348,1,0,0,0,3347,3349,5,450, - 0,0,3348,3347,1,0,0,0,3348,3349,1,0,0,0,3349,3350,1,0,0,0,3350,3351, - 5,83,0,0,3351,3353,5,882,0,0,3352,3354,7,7,0,0,3353,3352,1,0,0,0, - 3353,3354,1,0,0,0,3354,3355,1,0,0,0,3355,3356,5,88,0,0,3356,3357, - 5,173,0,0,3357,3363,3,662,331,0,3358,3359,5,130,0,0,3359,3360,5, - 866,0,0,3360,3361,3,686,343,0,3361,3362,5,867,0,0,3362,3364,1,0, - 0,0,3363,3358,1,0,0,0,3363,3364,1,0,0,0,3364,3368,1,0,0,0,3365,3366, - 5,26,0,0,3366,3367,5,155,0,0,3367,3369,3,704,352,0,3368,3365,1,0, - 0,0,3368,3369,1,0,0,0,3369,3376,1,0,0,0,3370,3372,7,47,0,0,3371, - 3373,3,314,157,0,3372,3371,1,0,0,0,3373,3374,1,0,0,0,3374,3372,1, - 0,0,0,3374,3375,1,0,0,0,3375,3377,1,0,0,0,3376,3370,1,0,0,0,3376, - 3377,1,0,0,0,3377,3384,1,0,0,0,3378,3380,5,102,0,0,3379,3381,3,316, - 158,0,3380,3379,1,0,0,0,3381,3382,1,0,0,0,3382,3380,1,0,0,0,3382, - 3383,1,0,0,0,3383,3385,1,0,0,0,3384,3378,1,0,0,0,3384,3385,1,0,0, - 0,3385,3390,1,0,0,0,3386,3387,5,79,0,0,3387,3388,3,730,365,0,3388, - 3389,7,48,0,0,3389,3391,1,0,0,0,3390,3386,1,0,0,0,3390,3391,1,0, - 0,0,3391,3403,1,0,0,0,3392,3393,5,866,0,0,3393,3398,3,236,118,0, - 3394,3395,5,868,0,0,3395,3397,3,236,118,0,3396,3394,1,0,0,0,3397, - 3400,1,0,0,0,3398,3396,1,0,0,0,3398,3399,1,0,0,0,3399,3401,1,0,0, - 0,3400,3398,1,0,0,0,3401,3402,5,867,0,0,3402,3404,1,0,0,0,3403,3392, - 1,0,0,0,3403,3404,1,0,0,0,3404,3414,1,0,0,0,3405,3406,5,155,0,0, - 3406,3411,3,234,117,0,3407,3408,5,868,0,0,3408,3410,3,234,117,0, - 3409,3407,1,0,0,0,3410,3413,1,0,0,0,3411,3409,1,0,0,0,3411,3412, - 1,0,0,0,3412,3415,1,0,0,0,3413,3411,1,0,0,0,3414,3405,1,0,0,0,3414, - 3415,1,0,0,0,3415,203,1,0,0,0,3416,3417,5,103,0,0,3417,3419,5,695, - 0,0,3418,3420,7,46,0,0,3419,3418,1,0,0,0,3419,3420,1,0,0,0,3420, - 3422,1,0,0,0,3421,3423,5,450,0,0,3422,3421,1,0,0,0,3422,3423,1,0, - 0,0,3423,3424,1,0,0,0,3424,3425,5,83,0,0,3425,3427,5,882,0,0,3426, - 3428,7,7,0,0,3427,3426,1,0,0,0,3427,3428,1,0,0,0,3428,3429,1,0,0, - 0,3429,3430,5,88,0,0,3430,3431,5,173,0,0,3431,3435,3,662,331,0,3432, - 3433,5,26,0,0,3433,3434,5,155,0,0,3434,3436,3,704,352,0,3435,3432, - 1,0,0,0,3435,3436,1,0,0,0,3436,3447,1,0,0,0,3437,3438,5,587,0,0, - 3438,3439,5,423,0,0,3439,3441,5,20,0,0,3440,3442,5,859,0,0,3441, - 3440,1,0,0,0,3441,3442,1,0,0,0,3442,3443,1,0,0,0,3443,3445,5,882, - 0,0,3444,3446,5,858,0,0,3445,3444,1,0,0,0,3445,3446,1,0,0,0,3446, - 3448,1,0,0,0,3447,3437,1,0,0,0,3447,3448,1,0,0,0,3448,3453,1,0,0, - 0,3449,3450,5,79,0,0,3450,3451,3,730,365,0,3451,3452,7,48,0,0,3452, - 3454,1,0,0,0,3453,3449,1,0,0,0,3453,3454,1,0,0,0,3454,3466,1,0,0, - 0,3455,3456,5,866,0,0,3456,3461,3,236,118,0,3457,3458,5,868,0,0, - 3458,3460,3,236,118,0,3459,3457,1,0,0,0,3460,3463,1,0,0,0,3461,3459, - 1,0,0,0,3461,3462,1,0,0,0,3462,3464,1,0,0,0,3463,3461,1,0,0,0,3464, - 3465,5,867,0,0,3465,3467,1,0,0,0,3466,3455,1,0,0,0,3466,3467,1,0, - 0,0,3467,3477,1,0,0,0,3468,3469,5,155,0,0,3469,3474,3,234,117,0, - 3470,3471,5,868,0,0,3471,3473,3,234,117,0,3472,3470,1,0,0,0,3473, - 3476,1,0,0,0,3474,3472,1,0,0,0,3474,3475,1,0,0,0,3475,3478,1,0,0, - 0,3476,3474,1,0,0,0,3477,3468,1,0,0,0,3477,3478,1,0,0,0,3478,205, - 1,0,0,0,3479,3480,5,866,0,0,3480,3482,3,224,112,0,3481,3483,3,258, - 129,0,3482,3481,1,0,0,0,3482,3483,1,0,0,0,3483,3485,1,0,0,0,3484, - 3486,3,328,164,0,3485,3484,1,0,0,0,3485,3486,1,0,0,0,3486,3487,1, - 0,0,0,3487,3489,5,867,0,0,3488,3490,3,258,129,0,3489,3488,1,0,0, - 0,3489,3490,1,0,0,0,3490,3492,1,0,0,0,3491,3493,3,328,164,0,3492, - 3491,1,0,0,0,3492,3493,1,0,0,0,3493,3495,1,0,0,0,3494,3496,3,312, - 156,0,3495,3494,1,0,0,0,3495,3496,1,0,0,0,3496,207,1,0,0,0,3497, - 3499,5,143,0,0,3498,3500,7,49,0,0,3499,3498,1,0,0,0,3499,3500,1, - 0,0,0,3500,3502,1,0,0,0,3501,3503,5,88,0,0,3502,3501,1,0,0,0,3502, - 3503,1,0,0,0,3503,3504,1,0,0,0,3504,3510,3,662,331,0,3505,3506,5, - 130,0,0,3506,3507,5,866,0,0,3507,3508,3,686,343,0,3508,3509,5,867, - 0,0,3509,3511,1,0,0,0,3510,3505,1,0,0,0,3510,3511,1,0,0,0,3511,3520, - 1,0,0,0,3512,3513,5,866,0,0,3513,3514,3,670,335,0,3514,3515,5,867, - 0,0,3515,3517,1,0,0,0,3516,3512,1,0,0,0,3516,3517,1,0,0,0,3517,3518, - 1,0,0,0,3518,3521,3,228,114,0,3519,3521,3,232,116,0,3520,3516,1, - 0,0,0,3520,3519,1,0,0,0,3521,209,1,0,0,0,3522,3526,3,282,141,0,3523, - 3525,3,284,142,0,3524,3523,1,0,0,0,3525,3528,1,0,0,0,3526,3524,1, - 0,0,0,3526,3527,1,0,0,0,3527,3537,1,0,0,0,3528,3526,1,0,0,0,3529, - 3531,5,181,0,0,3530,3532,7,45,0,0,3531,3530,1,0,0,0,3531,3532,1, - 0,0,0,3532,3535,1,0,0,0,3533,3536,3,282,141,0,3534,3536,3,280,140, - 0,3535,3533,1,0,0,0,3535,3534,1,0,0,0,3536,3538,1,0,0,0,3537,3529, - 1,0,0,0,3537,3538,1,0,0,0,3538,3543,1,0,0,0,3539,3540,5,868,0,0, - 3540,3542,3,286,143,0,3541,3539,1,0,0,0,3542,3545,1,0,0,0,3543,3541, - 1,0,0,0,3543,3544,1,0,0,0,3544,3547,1,0,0,0,3545,3543,1,0,0,0,3546, - 3548,3,258,129,0,3547,3546,1,0,0,0,3547,3548,1,0,0,0,3548,3550,1, - 0,0,0,3549,3551,3,328,164,0,3550,3549,1,0,0,0,3550,3551,1,0,0,0, - 3551,3553,1,0,0,0,3552,3554,3,238,119,0,3553,3552,1,0,0,0,3553,3554, - 1,0,0,0,3554,3556,1,0,0,0,3555,3557,3,312,156,0,3556,3555,1,0,0, - 0,3556,3557,1,0,0,0,3557,3582,1,0,0,0,3558,3562,3,280,140,0,3559, - 3561,3,284,142,0,3560,3559,1,0,0,0,3561,3564,1,0,0,0,3562,3560,1, - 0,0,0,3562,3563,1,0,0,0,3563,3570,1,0,0,0,3564,3562,1,0,0,0,3565, - 3567,5,181,0,0,3566,3568,7,45,0,0,3567,3566,1,0,0,0,3567,3568,1, - 0,0,0,3568,3569,1,0,0,0,3569,3571,3,280,140,0,3570,3565,1,0,0,0, - 3570,3571,1,0,0,0,3571,3573,1,0,0,0,3572,3574,3,258,129,0,3573,3572, - 1,0,0,0,3573,3574,1,0,0,0,3574,3576,1,0,0,0,3575,3577,3,328,164, - 0,3576,3575,1,0,0,0,3576,3577,1,0,0,0,3577,3579,1,0,0,0,3578,3580, - 3,238,119,0,3579,3578,1,0,0,0,3579,3580,1,0,0,0,3580,3582,1,0,0, - 0,3581,3522,1,0,0,0,3581,3558,1,0,0,0,3582,211,1,0,0,0,3583,3585, - 3,50,25,0,3584,3583,1,0,0,0,3584,3585,1,0,0,0,3585,3586,1,0,0,0, - 3586,3588,3,214,107,0,3587,3589,3,258,129,0,3588,3587,1,0,0,0,3588, - 3589,1,0,0,0,3589,3591,1,0,0,0,3590,3592,3,328,164,0,3591,3590,1, - 0,0,0,3591,3592,1,0,0,0,3592,3594,1,0,0,0,3593,3595,3,312,156,0, - 3594,3593,1,0,0,0,3594,3595,1,0,0,0,3595,213,1,0,0,0,3596,3597,6, - 107,-1,0,3597,3598,3,216,108,0,3598,3613,1,0,0,0,3599,3600,10,2, - 0,0,3600,3602,5,181,0,0,3601,3603,7,45,0,0,3602,3601,1,0,0,0,3602, - 3603,1,0,0,0,3603,3604,1,0,0,0,3604,3612,3,216,108,0,3605,3606,10, - 1,0,0,3606,3608,5,59,0,0,3607,3609,7,45,0,0,3608,3607,1,0,0,0,3608, - 3609,1,0,0,0,3609,3610,1,0,0,0,3610,3612,3,216,108,0,3611,3599,1, - 0,0,0,3611,3605,1,0,0,0,3612,3615,1,0,0,0,3613,3611,1,0,0,0,3613, - 3614,1,0,0,0,3614,215,1,0,0,0,3615,3613,1,0,0,0,3616,3617,6,108, - -1,0,3617,3618,3,218,109,0,3618,3627,1,0,0,0,3619,3620,10,1,0,0, - 3620,3622,5,828,0,0,3621,3623,7,45,0,0,3622,3621,1,0,0,0,3622,3623, - 1,0,0,0,3623,3624,1,0,0,0,3624,3626,3,218,109,0,3625,3619,1,0,0, - 0,3626,3629,1,0,0,0,3627,3625,1,0,0,0,3627,3628,1,0,0,0,3628,217, - 1,0,0,0,3629,3627,1,0,0,0,3630,3645,3,226,113,0,3631,3632,5,866, - 0,0,3632,3634,3,214,107,0,3633,3635,3,258,129,0,3634,3633,1,0,0, - 0,3634,3635,1,0,0,0,3635,3637,1,0,0,0,3636,3638,3,328,164,0,3637, - 3636,1,0,0,0,3637,3638,1,0,0,0,3638,3640,1,0,0,0,3639,3641,3,312, - 156,0,3640,3639,1,0,0,0,3640,3641,1,0,0,0,3641,3642,1,0,0,0,3642, - 3643,5,867,0,0,3643,3645,1,0,0,0,3644,3630,1,0,0,0,3644,3631,1,0, - 0,0,3645,219,1,0,0,0,3646,3649,3,254,127,0,3647,3649,3,256,128,0, - 3648,3646,1,0,0,0,3648,3647,1,0,0,0,3649,221,1,0,0,0,3650,3654,3, - 230,115,0,3651,3652,5,125,0,0,3652,3653,5,20,0,0,3653,3655,3,690, - 345,0,3654,3651,1,0,0,0,3654,3655,1,0,0,0,3655,3658,1,0,0,0,3656, - 3657,5,100,0,0,3657,3659,3,330,165,0,3658,3656,1,0,0,0,3658,3659, - 1,0,0,0,3659,223,1,0,0,0,3660,3665,3,226,113,0,3661,3662,7,50,0, - 0,3662,3664,3,226,113,0,3663,3661,1,0,0,0,3664,3667,1,0,0,0,3665, - 3663,1,0,0,0,3665,3666,1,0,0,0,3666,3669,1,0,0,0,3667,3665,1,0,0, - 0,3668,3670,3,258,129,0,3669,3668,1,0,0,0,3669,3670,1,0,0,0,3670, - 3672,1,0,0,0,3671,3673,3,328,164,0,3672,3671,1,0,0,0,3672,3673,1, - 0,0,0,3673,3675,1,0,0,0,3674,3676,3,312,156,0,3675,3674,1,0,0,0, - 3675,3676,1,0,0,0,3676,225,1,0,0,0,3677,3681,3,210,105,0,3678,3681, - 3,628,314,0,3679,3681,3,222,111,0,3680,3677,1,0,0,0,3680,3678,1, - 0,0,0,3680,3679,1,0,0,0,3681,227,1,0,0,0,3682,3688,3,210,105,0,3683, - 3684,5,173,0,0,3684,3688,3,662,331,0,3685,3688,3,760,380,0,3686, - 3688,3,230,115,0,3687,3682,1,0,0,0,3687,3683,1,0,0,0,3687,3685,1, - 0,0,0,3687,3686,1,0,0,0,3688,229,1,0,0,0,3689,3690,5,189,0,0,3690, - 3691,5,586,0,0,3691,3697,3,762,381,0,3692,3693,5,868,0,0,3693,3694, - 5,586,0,0,3694,3696,3,762,381,0,3695,3692,1,0,0,0,3696,3699,1,0, - 0,0,3697,3695,1,0,0,0,3697,3698,1,0,0,0,3698,231,1,0,0,0,3699,3697, - 1,0,0,0,3700,3701,5,155,0,0,3701,3706,3,234,117,0,3702,3703,5,868, - 0,0,3703,3705,3,234,117,0,3704,3702,1,0,0,0,3705,3708,1,0,0,0,3706, - 3704,1,0,0,0,3706,3707,1,0,0,0,3707,233,1,0,0,0,3708,3706,1,0,0, - 0,3709,3710,3,674,337,0,3710,3711,5,857,0,0,3711,3712,3,764,382, - 0,3712,235,1,0,0,0,3713,3716,3,722,361,0,3714,3716,5,892,0,0,3715, - 3713,1,0,0,0,3715,3714,1,0,0,0,3716,237,1,0,0,0,3717,3718,5,65,0, - 0,3718,3728,7,51,0,0,3719,3720,5,510,0,0,3720,3725,3,662,331,0,3721, - 3722,5,868,0,0,3722,3724,3,662,331,0,3723,3721,1,0,0,0,3724,3727, - 1,0,0,0,3725,3723,1,0,0,0,3725,3726,1,0,0,0,3726,3729,1,0,0,0,3727, - 3725,1,0,0,0,3728,3719,1,0,0,0,3728,3729,1,0,0,0,3729,3732,1,0,0, - 0,3730,3731,7,52,0,0,3731,3733,5,105,0,0,3732,3730,1,0,0,0,3732, - 3733,1,0,0,0,3733,3739,1,0,0,0,3734,3735,5,104,0,0,3735,3736,5,80, - 0,0,3736,3737,5,594,0,0,3737,3739,5,491,0,0,3738,3717,1,0,0,0,3738, - 3734,1,0,0,0,3739,239,1,0,0,0,3740,3742,5,44,0,0,3741,3743,5,107, - 0,0,3742,3741,1,0,0,0,3742,3743,1,0,0,0,3743,3745,1,0,0,0,3744,3746, - 5,549,0,0,3745,3744,1,0,0,0,3745,3746,1,0,0,0,3746,3748,1,0,0,0, - 3747,3749,5,79,0,0,3748,3747,1,0,0,0,3748,3749,1,0,0,0,3749,3750, - 1,0,0,0,3750,3751,5,68,0,0,3751,3756,3,662,331,0,3752,3754,5,13, - 0,0,3753,3752,1,0,0,0,3753,3754,1,0,0,0,3754,3755,1,0,0,0,3755,3757, - 3,722,361,0,3756,3753,1,0,0,0,3756,3757,1,0,0,0,3757,3763,1,0,0, - 0,3758,3759,5,130,0,0,3759,3760,5,866,0,0,3760,3761,3,686,343,0, - 3761,3762,5,867,0,0,3762,3764,1,0,0,0,3763,3758,1,0,0,0,3763,3764, - 1,0,0,0,3764,3767,1,0,0,0,3765,3766,5,192,0,0,3766,3768,3,822,411, - 0,3767,3765,1,0,0,0,3767,3768,1,0,0,0,3768,3770,1,0,0,0,3769,3771, - 3,258,129,0,3770,3769,1,0,0,0,3770,3771,1,0,0,0,3771,3774,1,0,0, - 0,3772,3773,5,100,0,0,3773,3775,3,330,165,0,3774,3772,1,0,0,0,3774, - 3775,1,0,0,0,3775,241,1,0,0,0,3776,3778,5,44,0,0,3777,3779,5,107, - 0,0,3778,3777,1,0,0,0,3778,3779,1,0,0,0,3779,3781,1,0,0,0,3780,3782, - 5,549,0,0,3781,3780,1,0,0,0,3781,3782,1,0,0,0,3782,3784,1,0,0,0, - 3783,3785,5,79,0,0,3784,3783,1,0,0,0,3784,3785,1,0,0,0,3785,3825, - 1,0,0,0,3786,3789,3,662,331,0,3787,3788,5,865,0,0,3788,3790,5,850, - 0,0,3789,3787,1,0,0,0,3789,3790,1,0,0,0,3790,3799,1,0,0,0,3791,3792, - 5,868,0,0,3792,3795,3,662,331,0,3793,3794,5,865,0,0,3794,3796,5, - 850,0,0,3795,3793,1,0,0,0,3795,3796,1,0,0,0,3796,3798,1,0,0,0,3797, - 3791,1,0,0,0,3798,3801,1,0,0,0,3799,3797,1,0,0,0,3799,3800,1,0,0, - 0,3800,3802,1,0,0,0,3801,3799,1,0,0,0,3802,3803,5,68,0,0,3803,3804, - 3,262,131,0,3804,3826,1,0,0,0,3805,3806,5,68,0,0,3806,3809,3,662, - 331,0,3807,3808,5,865,0,0,3808,3810,5,850,0,0,3809,3807,1,0,0,0, - 3809,3810,1,0,0,0,3810,3819,1,0,0,0,3811,3812,5,868,0,0,3812,3815, - 3,662,331,0,3813,3814,5,865,0,0,3814,3816,5,850,0,0,3815,3813,1, - 0,0,0,3815,3816,1,0,0,0,3816,3818,1,0,0,0,3817,3811,1,0,0,0,3818, - 3821,1,0,0,0,3819,3817,1,0,0,0,3819,3820,1,0,0,0,3820,3822,1,0,0, - 0,3821,3819,1,0,0,0,3822,3823,5,188,0,0,3823,3824,3,262,131,0,3824, - 3826,1,0,0,0,3825,3786,1,0,0,0,3825,3805,1,0,0,0,3826,3829,1,0,0, - 0,3827,3828,5,192,0,0,3828,3830,3,822,411,0,3829,3827,1,0,0,0,3829, - 3830,1,0,0,0,3830,243,1,0,0,0,3831,3832,5,417,0,0,3832,3833,3,662, - 331,0,3833,3838,5,516,0,0,3834,3836,5,13,0,0,3835,3834,1,0,0,0,3835, - 3836,1,0,0,0,3836,3837,1,0,0,0,3837,3839,3,722,361,0,3838,3835,1, - 0,0,0,3838,3839,1,0,0,0,3839,245,1,0,0,0,3840,3841,5,417,0,0,3841, - 3842,3,662,331,0,3842,3843,5,135,0,0,3843,3850,3,652,326,0,3844, - 3845,3,832,416,0,3845,3846,5,866,0,0,3846,3847,3,766,383,0,3847, - 3848,5,867,0,0,3848,3851,1,0,0,0,3849,3851,7,53,0,0,3850,3844,1, - 0,0,0,3850,3849,1,0,0,0,3851,3854,1,0,0,0,3852,3853,5,192,0,0,3853, - 3855,3,822,411,0,3854,3852,1,0,0,0,3854,3855,1,0,0,0,3855,3858,1, - 0,0,0,3856,3857,5,100,0,0,3857,3859,3,330,165,0,3858,3856,1,0,0, - 0,3858,3859,1,0,0,0,3859,247,1,0,0,0,3860,3861,5,417,0,0,3861,3862, - 3,662,331,0,3862,3863,5,135,0,0,3863,3866,7,54,0,0,3864,3865,5,192, - 0,0,3865,3867,3,822,411,0,3866,3864,1,0,0,0,3866,3867,1,0,0,0,3867, - 3870,1,0,0,0,3868,3869,5,100,0,0,3869,3871,3,330,165,0,3870,3868, - 1,0,0,0,3870,3871,1,0,0,0,3871,249,1,0,0,0,3872,3873,5,417,0,0,3873, - 3874,3,662,331,0,3874,3875,5,334,0,0,3875,251,1,0,0,0,3876,3877, - 5,425,0,0,3877,3878,5,173,0,0,3878,3879,5,68,0,0,3879,3884,3,734, - 367,0,3880,3881,5,868,0,0,3881,3883,3,734,367,0,3882,3880,1,0,0, - 0,3883,3886,1,0,0,0,3884,3882,1,0,0,0,3884,3885,1,0,0,0,3885,253, - 1,0,0,0,3886,3884,1,0,0,0,3887,3889,5,185,0,0,3888,3890,5,107,0, - 0,3889,3888,1,0,0,0,3889,3890,1,0,0,0,3890,3892,1,0,0,0,3891,3893, - 5,79,0,0,3892,3891,1,0,0,0,3892,3893,1,0,0,0,3893,3894,1,0,0,0,3894, - 3899,3,662,331,0,3895,3897,5,13,0,0,3896,3895,1,0,0,0,3896,3897, - 1,0,0,0,3897,3898,1,0,0,0,3898,3900,3,722,361,0,3899,3896,1,0,0, - 0,3899,3900,1,0,0,0,3900,3901,1,0,0,0,3901,3902,5,155,0,0,3902,3907, - 3,234,117,0,3903,3904,5,868,0,0,3904,3906,3,234,117,0,3905,3903, - 1,0,0,0,3906,3909,1,0,0,0,3907,3905,1,0,0,0,3907,3908,1,0,0,0,3908, - 3912,1,0,0,0,3909,3907,1,0,0,0,3910,3911,5,192,0,0,3911,3913,3,822, - 411,0,3912,3910,1,0,0,0,3912,3913,1,0,0,0,3913,3915,1,0,0,0,3914, - 3916,3,258,129,0,3915,3914,1,0,0,0,3915,3916,1,0,0,0,3916,3918,1, - 0,0,0,3917,3919,3,328,164,0,3918,3917,1,0,0,0,3918,3919,1,0,0,0, - 3919,255,1,0,0,0,3920,3922,5,185,0,0,3921,3923,5,107,0,0,3922,3921, - 1,0,0,0,3922,3923,1,0,0,0,3923,3925,1,0,0,0,3924,3926,5,79,0,0,3925, - 3924,1,0,0,0,3925,3926,1,0,0,0,3926,3927,1,0,0,0,3927,3928,3,262, - 131,0,3928,3929,5,155,0,0,3929,3934,3,234,117,0,3930,3931,5,868, - 0,0,3931,3933,3,234,117,0,3932,3930,1,0,0,0,3933,3936,1,0,0,0,3934, - 3932,1,0,0,0,3934,3935,1,0,0,0,3935,3939,1,0,0,0,3936,3934,1,0,0, - 0,3937,3938,5,192,0,0,3938,3940,3,822,411,0,3939,3937,1,0,0,0,3939, - 3940,1,0,0,0,3940,257,1,0,0,0,3941,3942,5,125,0,0,3942,3943,5,20, - 0,0,3943,3948,3,260,130,0,3944,3945,5,868,0,0,3945,3947,3,260,130, - 0,3946,3944,1,0,0,0,3947,3950,1,0,0,0,3948,3946,1,0,0,0,3948,3949, - 1,0,0,0,3949,259,1,0,0,0,3950,3948,1,0,0,0,3951,3953,3,822,411,0, - 3952,3954,7,55,0,0,3953,3952,1,0,0,0,3953,3954,1,0,0,0,3954,261, - 1,0,0,0,3955,3960,3,264,132,0,3956,3957,5,868,0,0,3957,3959,3,264, - 132,0,3958,3956,1,0,0,0,3959,3962,1,0,0,0,3960,3958,1,0,0,0,3960, - 3961,1,0,0,0,3961,263,1,0,0,0,3962,3960,1,0,0,0,3963,3967,3,266, - 133,0,3964,3966,3,276,138,0,3965,3964,1,0,0,0,3966,3969,1,0,0,0, - 3967,3965,1,0,0,0,3967,3968,1,0,0,0,3968,3982,1,0,0,0,3969,3967, - 1,0,0,0,3970,3971,5,866,0,0,3971,3975,3,266,133,0,3972,3974,3,276, - 138,0,3973,3972,1,0,0,0,3974,3977,1,0,0,0,3975,3973,1,0,0,0,3975, - 3976,1,0,0,0,3976,3978,1,0,0,0,3977,3975,1,0,0,0,3978,3979,5,867, - 0,0,3979,3982,1,0,0,0,3980,3982,3,288,144,0,3981,3963,1,0,0,0,3981, - 3970,1,0,0,0,3981,3980,1,0,0,0,3982,265,1,0,0,0,3983,3989,3,662, - 331,0,3984,3985,5,130,0,0,3985,3986,5,866,0,0,3986,3987,3,686,343, - 0,3987,3988,5,867,0,0,3988,3990,1,0,0,0,3989,3984,1,0,0,0,3989,3990, - 1,0,0,0,3990,3995,1,0,0,0,3991,3993,5,13,0,0,3992,3991,1,0,0,0,3992, - 3993,1,0,0,0,3993,3994,1,0,0,0,3994,3996,3,722,361,0,3995,3992,1, - 0,0,0,3995,3996,1,0,0,0,3996,4005,1,0,0,0,3997,4002,3,272,136,0, - 3998,3999,5,868,0,0,3999,4001,3,272,136,0,4000,3998,1,0,0,0,4001, - 4004,1,0,0,0,4002,4000,1,0,0,0,4002,4003,1,0,0,0,4003,4006,1,0,0, - 0,4004,4002,1,0,0,0,4005,3997,1,0,0,0,4005,4006,1,0,0,0,4006,4023, - 1,0,0,0,4007,4009,5,95,0,0,4008,4007,1,0,0,0,4008,4009,1,0,0,0,4009, - 4010,1,0,0,0,4010,4012,3,268,134,0,4011,4013,5,13,0,0,4012,4011, - 1,0,0,0,4012,4013,1,0,0,0,4013,4014,1,0,0,0,4014,4016,3,722,361, - 0,4015,4017,3,270,135,0,4016,4015,1,0,0,0,4016,4017,1,0,0,0,4017, - 4023,1,0,0,0,4018,4019,5,866,0,0,4019,4020,3,262,131,0,4020,4021, - 5,867,0,0,4021,4023,1,0,0,0,4022,3983,1,0,0,0,4022,4008,1,0,0,0, - 4022,4018,1,0,0,0,4023,267,1,0,0,0,4024,4030,3,210,105,0,4025,4026, - 5,866,0,0,4026,4027,3,210,105,0,4027,4028,5,867,0,0,4028,4030,1, - 0,0,0,4029,4024,1,0,0,0,4029,4025,1,0,0,0,4030,269,1,0,0,0,4031, - 4032,5,866,0,0,4032,4033,3,670,335,0,4033,4034,5,867,0,0,4034,271, - 1,0,0,0,4035,4036,7,56,0,0,4036,4039,7,19,0,0,4037,4038,5,65,0,0, - 4038,4040,3,274,137,0,4039,4037,1,0,0,0,4039,4040,1,0,0,0,4040,4041, - 1,0,0,0,4041,4043,5,866,0,0,4042,4044,3,650,325,0,4043,4042,1,0, - 0,0,4043,4044,1,0,0,0,4044,4045,1,0,0,0,4045,4046,5,867,0,0,4046, - 273,1,0,0,0,4047,4053,5,91,0,0,4048,4049,5,125,0,0,4049,4053,5,20, - 0,0,4050,4051,5,74,0,0,4051,4053,5,20,0,0,4052,4047,1,0,0,0,4052, - 4048,1,0,0,0,4052,4050,1,0,0,0,4053,275,1,0,0,0,4054,4056,7,57,0, - 0,4055,4054,1,0,0,0,4055,4056,1,0,0,0,4056,4057,1,0,0,0,4057,4059, - 5,91,0,0,4058,4060,5,95,0,0,4059,4058,1,0,0,0,4059,4060,1,0,0,0, - 4060,4061,1,0,0,0,4061,4065,3,266,133,0,4062,4064,3,278,139,0,4063, - 4062,1,0,0,0,4064,4067,1,0,0,0,4065,4063,1,0,0,0,4065,4066,1,0,0, - 0,4066,4104,1,0,0,0,4067,4065,1,0,0,0,4068,4069,5,172,0,0,4069,4073, - 3,266,133,0,4070,4072,3,278,139,0,4071,4070,1,0,0,0,4072,4075,1, - 0,0,0,4073,4071,1,0,0,0,4073,4074,1,0,0,0,4074,4104,1,0,0,0,4075, - 4073,1,0,0,0,4076,4078,7,58,0,0,4077,4079,5,127,0,0,4078,4077,1, - 0,0,0,4078,4079,1,0,0,0,4079,4080,1,0,0,0,4080,4082,5,91,0,0,4081, - 4083,5,95,0,0,4082,4081,1,0,0,0,4082,4083,1,0,0,0,4083,4084,1,0, - 0,0,4084,4088,3,266,133,0,4085,4087,3,278,139,0,4086,4085,1,0,0, - 0,4087,4090,1,0,0,0,4088,4086,1,0,0,0,4088,4089,1,0,0,0,4089,4104, - 1,0,0,0,4090,4088,1,0,0,0,4091,4099,5,113,0,0,4092,4095,5,84,0,0, - 4093,4095,7,58,0,0,4094,4092,1,0,0,0,4094,4093,1,0,0,0,4095,4097, - 1,0,0,0,4096,4098,5,127,0,0,4097,4096,1,0,0,0,4097,4098,1,0,0,0, - 4098,4100,1,0,0,0,4099,4094,1,0,0,0,4099,4100,1,0,0,0,4100,4101, - 1,0,0,0,4101,4102,5,91,0,0,4102,4104,3,266,133,0,4103,4055,1,0,0, - 0,4103,4068,1,0,0,0,4103,4076,1,0,0,0,4103,4091,1,0,0,0,4104,277, - 1,0,0,0,4105,4108,5,119,0,0,4106,4109,3,822,411,0,4107,4109,3,678, - 339,0,4108,4106,1,0,0,0,4108,4107,1,0,0,0,4109,4116,1,0,0,0,4110, - 4111,5,188,0,0,4111,4112,5,866,0,0,4112,4113,3,670,335,0,4113,4114, - 5,867,0,0,4114,4116,1,0,0,0,4115,4105,1,0,0,0,4115,4110,1,0,0,0, - 4116,279,1,0,0,0,4117,4118,5,866,0,0,4118,4119,3,282,141,0,4119, - 4120,5,867,0,0,4120,4126,1,0,0,0,4121,4122,5,866,0,0,4122,4123,3, - 280,140,0,4123,4124,5,867,0,0,4124,4126,1,0,0,0,4125,4117,1,0,0, - 0,4125,4121,1,0,0,0,4126,281,1,0,0,0,4127,4131,5,154,0,0,4128,4130, - 3,298,149,0,4129,4128,1,0,0,0,4130,4133,1,0,0,0,4131,4129,1,0,0, - 0,4131,4132,1,0,0,0,4132,4134,1,0,0,0,4133,4131,1,0,0,0,4134,4136, - 3,300,150,0,4135,4137,3,312,156,0,4136,4135,1,0,0,0,4136,4137,1, - 0,0,0,4137,4138,1,0,0,0,4138,4140,3,318,159,0,4139,4141,3,320,160, - 0,4140,4139,1,0,0,0,4140,4141,1,0,0,0,4141,4143,1,0,0,0,4142,4144, - 3,322,161,0,4143,4142,1,0,0,0,4143,4144,1,0,0,0,4144,4146,1,0,0, - 0,4145,4147,3,324,162,0,4146,4145,1,0,0,0,4146,4147,1,0,0,0,4147, - 4149,1,0,0,0,4148,4150,3,258,129,0,4149,4148,1,0,0,0,4149,4150,1, - 0,0,0,4150,4152,1,0,0,0,4151,4153,3,328,164,0,4152,4151,1,0,0,0, - 4152,4153,1,0,0,0,4153,4155,1,0,0,0,4154,4156,3,312,156,0,4155,4154, - 1,0,0,0,4155,4156,1,0,0,0,4156,4158,1,0,0,0,4157,4159,3,284,142, - 0,4158,4157,1,0,0,0,4158,4159,1,0,0,0,4159,283,1,0,0,0,4160,4162, - 5,181,0,0,4161,4163,7,45,0,0,4162,4161,1,0,0,0,4162,4163,1,0,0,0, - 4163,4166,1,0,0,0,4164,4167,3,282,141,0,4165,4167,3,280,140,0,4166, - 4164,1,0,0,0,4166,4165,1,0,0,0,4167,285,1,0,0,0,4168,4183,5,95,0, - 0,4169,4184,3,282,141,0,4170,4184,3,280,140,0,4171,4174,5,866,0, - 0,4172,4175,3,282,141,0,4173,4175,3,280,140,0,4174,4172,1,0,0,0, - 4174,4173,1,0,0,0,4175,4176,1,0,0,0,4176,4181,5,867,0,0,4177,4179, - 5,13,0,0,4178,4177,1,0,0,0,4178,4179,1,0,0,0,4179,4180,1,0,0,0,4180, - 4182,3,722,361,0,4181,4178,1,0,0,0,4181,4182,1,0,0,0,4182,4184,1, - 0,0,0,4183,4169,1,0,0,0,4183,4170,1,0,0,0,4183,4171,1,0,0,0,4184, - 287,1,0,0,0,4185,4186,5,253,0,0,4186,4187,5,866,0,0,4187,4188,5, - 882,0,0,4188,4189,5,868,0,0,4189,4190,5,882,0,0,4190,4191,5,337, - 0,0,4191,4192,5,866,0,0,4192,4193,3,290,145,0,4193,4194,5,867,0, - 0,4194,4199,5,867,0,0,4195,4197,5,13,0,0,4196,4195,1,0,0,0,4196, - 4197,1,0,0,0,4197,4198,1,0,0,0,4198,4200,3,722,361,0,4199,4196,1, - 0,0,0,4199,4200,1,0,0,0,4200,289,1,0,0,0,4201,4206,3,292,146,0,4202, - 4203,5,868,0,0,4203,4205,3,292,146,0,4204,4202,1,0,0,0,4205,4208, - 1,0,0,0,4206,4204,1,0,0,0,4206,4207,1,0,0,0,4207,291,1,0,0,0,4208, - 4206,1,0,0,0,4209,4226,3,674,337,0,4210,4211,5,65,0,0,4211,4227, - 5,256,0,0,4212,4224,3,744,372,0,4213,4214,5,257,0,0,4214,4216,5, - 882,0,0,4215,4217,3,294,147,0,4216,4215,1,0,0,0,4216,4217,1,0,0, - 0,4217,4219,1,0,0,0,4218,4220,3,296,148,0,4219,4218,1,0,0,0,4219, - 4220,1,0,0,0,4220,4225,1,0,0,0,4221,4222,5,60,0,0,4222,4223,5,257, - 0,0,4223,4225,5,882,0,0,4224,4213,1,0,0,0,4224,4221,1,0,0,0,4225, - 4227,1,0,0,0,4226,4210,1,0,0,0,4226,4212,1,0,0,0,4227,4239,1,0,0, - 0,4228,4230,5,255,0,0,4229,4231,5,257,0,0,4230,4229,1,0,0,0,4230, - 4231,1,0,0,0,4231,4232,1,0,0,0,4232,4233,5,882,0,0,4233,4234,5,337, - 0,0,4234,4235,5,866,0,0,4235,4236,3,290,145,0,4236,4237,5,867,0, - 0,4237,4239,1,0,0,0,4238,4209,1,0,0,0,4238,4228,1,0,0,0,4239,293, - 1,0,0,0,4240,4245,5,116,0,0,4241,4245,5,382,0,0,4242,4243,5,42,0, - 0,4243,4245,3,772,386,0,4244,4240,1,0,0,0,4244,4241,1,0,0,0,4244, - 4242,1,0,0,0,4245,4246,1,0,0,0,4246,4247,5,119,0,0,4247,4248,5,55, - 0,0,4248,295,1,0,0,0,4249,4254,5,116,0,0,4250,4254,5,382,0,0,4251, - 4252,5,42,0,0,4252,4254,3,772,386,0,4253,4249,1,0,0,0,4253,4250, - 1,0,0,0,4253,4251,1,0,0,0,4254,4255,1,0,0,0,4255,4256,5,119,0,0, - 4256,4257,5,382,0,0,4257,297,1,0,0,0,4258,4267,7,59,0,0,4259,4267, - 5,76,0,0,4260,4267,5,172,0,0,4261,4267,5,168,0,0,4262,4267,5,166, - 0,0,4263,4267,5,636,0,0,4264,4267,7,60,0,0,4265,4267,5,167,0,0,4266, - 4258,1,0,0,0,4266,4259,1,0,0,0,4266,4260,1,0,0,0,4266,4261,1,0,0, - 0,4266,4262,1,0,0,0,4266,4263,1,0,0,0,4266,4264,1,0,0,0,4266,4265, - 1,0,0,0,4267,299,1,0,0,0,4268,4271,3,306,153,0,4269,4271,3,302,151, - 0,4270,4268,1,0,0,0,4270,4269,1,0,0,0,4271,4276,1,0,0,0,4272,4273, - 5,868,0,0,4273,4275,3,302,151,0,4274,4272,1,0,0,0,4275,4278,1,0, - 0,0,4276,4274,1,0,0,0,4276,4277,1,0,0,0,4277,301,1,0,0,0,4278,4276, - 1,0,0,0,4279,4295,3,304,152,0,4280,4285,3,308,154,0,4281,4283,5, - 13,0,0,4282,4281,1,0,0,0,4282,4283,1,0,0,0,4283,4284,1,0,0,0,4284, - 4286,3,722,361,0,4285,4282,1,0,0,0,4285,4286,1,0,0,0,4286,4295,1, - 0,0,0,4287,4292,3,310,155,0,4288,4290,5,13,0,0,4289,4288,1,0,0,0, - 4289,4290,1,0,0,0,4290,4291,1,0,0,0,4291,4293,3,722,361,0,4292,4289, - 1,0,0,0,4292,4293,1,0,0,0,4293,4295,1,0,0,0,4294,4279,1,0,0,0,4294, - 4280,1,0,0,0,4294,4287,1,0,0,0,4295,303,1,0,0,0,4296,4297,3,718, - 359,0,4297,4298,5,865,0,0,4298,4299,5,850,0,0,4299,305,1,0,0,0,4300, - 4301,5,850,0,0,4301,307,1,0,0,0,4302,4303,3,674,337,0,4303,309,1, - 0,0,0,4304,4305,5,892,0,0,4305,4307,5,841,0,0,4306,4304,1,0,0,0, - 4306,4307,1,0,0,0,4307,4308,1,0,0,0,4308,4311,3,822,411,0,4309,4311, - 3,782,391,0,4310,4306,1,0,0,0,4310,4309,1,0,0,0,4311,311,1,0,0,0, - 4312,4313,5,88,0,0,4313,4318,3,236,118,0,4314,4315,5,868,0,0,4315, - 4317,3,236,118,0,4316,4314,1,0,0,0,4317,4320,1,0,0,0,4318,4316,1, - 0,0,0,4318,4319,1,0,0,0,4319,4349,1,0,0,0,4320,4318,1,0,0,0,4321, - 4322,5,88,0,0,4322,4323,5,372,0,0,4323,4349,5,882,0,0,4324,4325, - 5,88,0,0,4325,4326,5,128,0,0,4326,4330,5,882,0,0,4327,4328,5,26, - 0,0,4328,4329,5,155,0,0,4329,4331,3,704,352,0,4330,4327,1,0,0,0, - 4330,4331,1,0,0,0,4331,4338,1,0,0,0,4332,4334,7,47,0,0,4333,4335, - 3,314,157,0,4334,4333,1,0,0,0,4335,4336,1,0,0,0,4336,4334,1,0,0, - 0,4336,4337,1,0,0,0,4337,4339,1,0,0,0,4338,4332,1,0,0,0,4338,4339, - 1,0,0,0,4339,4346,1,0,0,0,4340,4342,5,102,0,0,4341,4343,3,316,158, - 0,4342,4341,1,0,0,0,4343,4344,1,0,0,0,4344,4342,1,0,0,0,4344,4345, - 1,0,0,0,4345,4347,1,0,0,0,4346,4340,1,0,0,0,4346,4347,1,0,0,0,4347, - 4349,1,0,0,0,4348,4312,1,0,0,0,4348,4321,1,0,0,0,4348,4324,1,0,0, - 0,4349,313,1,0,0,0,4350,4351,5,174,0,0,4351,4352,5,20,0,0,4352,4363, - 5,882,0,0,4353,4355,5,123,0,0,4354,4353,1,0,0,0,4354,4355,1,0,0, - 0,4355,4356,1,0,0,0,4356,4357,5,56,0,0,4357,4358,5,20,0,0,4358,4363, - 5,882,0,0,4359,4360,5,58,0,0,4360,4361,5,20,0,0,4361,4363,5,882, - 0,0,4362,4350,1,0,0,0,4362,4354,1,0,0,0,4362,4359,1,0,0,0,4363,315, - 1,0,0,0,4364,4365,5,171,0,0,4365,4366,5,20,0,0,4366,4371,5,882,0, - 0,4367,4368,5,174,0,0,4368,4369,5,20,0,0,4369,4371,5,882,0,0,4370, - 4364,1,0,0,0,4370,4367,1,0,0,0,4371,317,1,0,0,0,4372,4373,5,68,0, - 0,4373,4375,3,262,131,0,4374,4372,1,0,0,0,4374,4375,1,0,0,0,4375, - 4381,1,0,0,0,4376,4379,5,192,0,0,4377,4380,3,822,411,0,4378,4380, - 3,678,339,0,4379,4377,1,0,0,0,4379,4378,1,0,0,0,4380,4382,1,0,0, - 0,4381,4376,1,0,0,0,4381,4382,1,0,0,0,4382,319,1,0,0,0,4383,4384, - 5,74,0,0,4384,4385,5,20,0,0,4385,4390,3,326,163,0,4386,4387,5,868, - 0,0,4387,4389,3,326,163,0,4388,4386,1,0,0,0,4389,4392,1,0,0,0,4390, - 4388,1,0,0,0,4390,4391,1,0,0,0,4391,4395,1,0,0,0,4392,4390,1,0,0, - 0,4393,4394,5,194,0,0,4394,4396,5,584,0,0,4395,4393,1,0,0,0,4395, - 4396,1,0,0,0,4396,321,1,0,0,0,4397,4398,5,75,0,0,4398,4399,3,822, - 411,0,4399,323,1,0,0,0,4400,4401,5,689,0,0,4401,4402,3,800,400,0, - 4402,4403,5,13,0,0,4403,4404,5,866,0,0,4404,4405,3,798,399,0,4405, - 4415,5,867,0,0,4406,4407,5,868,0,0,4407,4408,3,800,400,0,4408,4409, - 5,13,0,0,4409,4410,5,866,0,0,4410,4411,3,798,399,0,4411,4412,5,867, - 0,0,4412,4414,1,0,0,0,4413,4406,1,0,0,0,4414,4417,1,0,0,0,4415,4413, - 1,0,0,0,4415,4416,1,0,0,0,4416,325,1,0,0,0,4417,4415,1,0,0,0,4418, - 4420,3,822,411,0,4419,4421,7,55,0,0,4420,4419,1,0,0,0,4420,4421, - 1,0,0,0,4421,327,1,0,0,0,4422,4433,5,100,0,0,4423,4424,3,330,165, - 0,4424,4425,5,868,0,0,4425,4427,1,0,0,0,4426,4423,1,0,0,0,4426,4427, - 1,0,0,0,4427,4428,1,0,0,0,4428,4434,3,330,165,0,4429,4430,3,330, - 165,0,4430,4431,5,509,0,0,4431,4432,3,330,165,0,4432,4434,1,0,0, - 0,4433,4426,1,0,0,0,4433,4429,1,0,0,0,4434,329,1,0,0,0,4435,4439, - 3,730,365,0,4436,4439,3,702,351,0,4437,4439,3,724,362,0,4438,4435, - 1,0,0,0,4438,4436,1,0,0,0,4438,4437,1,0,0,0,4439,331,1,0,0,0,4440, - 4441,5,640,0,0,4441,4450,5,664,0,0,4442,4447,3,354,177,0,4443,4444, - 5,868,0,0,4444,4446,3,354,177,0,4445,4443,1,0,0,0,4446,4449,1,0, - 0,0,4447,4445,1,0,0,0,4447,4448,1,0,0,0,4448,4451,1,0,0,0,4449,4447, - 1,0,0,0,4450,4442,1,0,0,0,4450,4451,1,0,0,0,4451,333,1,0,0,0,4452, - 4454,5,317,0,0,4453,4455,5,691,0,0,4454,4453,1,0,0,0,4454,4455,1, - 0,0,0,4455,335,1,0,0,0,4456,4458,5,341,0,0,4457,4459,5,691,0,0,4458, - 4457,1,0,0,0,4458,4459,1,0,0,0,4459,4465,1,0,0,0,4460,4462,5,11, - 0,0,4461,4463,5,502,0,0,4462,4461,1,0,0,0,4462,4463,1,0,0,0,4463, - 4464,1,0,0,0,4464,4466,5,326,0,0,4465,4460,1,0,0,0,4465,4466,1,0, - 0,0,4466,4471,1,0,0,0,4467,4469,5,502,0,0,4468,4467,1,0,0,0,4468, - 4469,1,0,0,0,4469,4470,1,0,0,0,4470,4472,5,140,0,0,4471,4468,1,0, - 0,0,4471,4472,1,0,0,0,4472,337,1,0,0,0,4473,4475,5,583,0,0,4474, - 4476,5,691,0,0,4475,4474,1,0,0,0,4475,4476,1,0,0,0,4476,4482,1,0, - 0,0,4477,4479,5,11,0,0,4478,4480,5,502,0,0,4479,4478,1,0,0,0,4479, - 4480,1,0,0,0,4480,4481,1,0,0,0,4481,4483,5,326,0,0,4482,4477,1,0, - 0,0,4482,4483,1,0,0,0,4483,4488,1,0,0,0,4484,4486,5,502,0,0,4485, - 4484,1,0,0,0,4485,4486,1,0,0,0,4486,4487,1,0,0,0,4487,4489,5,140, - 0,0,4488,4485,1,0,0,0,4488,4489,1,0,0,0,4489,339,1,0,0,0,4490,4491, - 5,589,0,0,4491,4492,3,722,361,0,4492,341,1,0,0,0,4493,4495,5,583, - 0,0,4494,4496,5,691,0,0,4495,4494,1,0,0,0,4495,4496,1,0,0,0,4496, - 4497,1,0,0,0,4497,4499,5,176,0,0,4498,4500,5,589,0,0,4499,4498,1, - 0,0,0,4499,4500,1,0,0,0,4500,4501,1,0,0,0,4501,4502,3,722,361,0, - 4502,343,1,0,0,0,4503,4504,5,140,0,0,4504,4505,5,589,0,0,4505,4506, - 3,722,361,0,4506,345,1,0,0,0,4507,4508,5,104,0,0,4508,4509,7,61, - 0,0,4509,4514,3,356,178,0,4510,4511,5,868,0,0,4511,4513,3,356,178, - 0,4512,4510,1,0,0,0,4513,4516,1,0,0,0,4514,4512,1,0,0,0,4514,4515, - 1,0,0,0,4515,347,1,0,0,0,4516,4514,1,0,0,0,4517,4518,5,183,0,0,4518, - 4519,5,752,0,0,4519,349,1,0,0,0,4520,4521,5,155,0,0,4521,4522,5, - 313,0,0,4522,4523,5,857,0,0,4523,4524,7,26,0,0,4524,351,1,0,0,0, - 4525,4527,5,155,0,0,4526,4528,7,62,0,0,4527,4526,1,0,0,0,4527,4528, - 1,0,0,0,4528,4529,1,0,0,0,4529,4530,5,664,0,0,4530,4535,3,360,180, - 0,4531,4532,5,868,0,0,4532,4534,3,360,180,0,4533,4531,1,0,0,0,4534, - 4537,1,0,0,0,4535,4533,1,0,0,0,4535,4536,1,0,0,0,4536,353,1,0,0, - 0,4537,4535,1,0,0,0,4538,4539,5,194,0,0,4539,4540,5,350,0,0,4540, - 4546,5,600,0,0,4541,4542,5,135,0,0,4542,4546,5,195,0,0,4543,4544, - 5,135,0,0,4544,4546,5,515,0,0,4545,4538,1,0,0,0,4545,4541,1,0,0, - 0,4545,4543,1,0,0,0,4546,355,1,0,0,0,4547,4552,3,662,331,0,4548, - 4550,5,13,0,0,4549,4548,1,0,0,0,4549,4550,1,0,0,0,4550,4551,1,0, - 0,0,4551,4553,3,722,361,0,4552,4549,1,0,0,0,4552,4553,1,0,0,0,4553, - 4554,1,0,0,0,4554,4555,3,358,179,0,4555,357,1,0,0,0,4556,4558,5, - 135,0,0,4557,4559,5,450,0,0,4558,4557,1,0,0,0,4558,4559,1,0,0,0, - 4559,4565,1,0,0,0,4560,4562,5,107,0,0,4561,4560,1,0,0,0,4561,4562, - 1,0,0,0,4562,4563,1,0,0,0,4563,4565,5,195,0,0,4564,4556,1,0,0,0, - 4564,4561,1,0,0,0,4565,359,1,0,0,0,4566,4567,5,440,0,0,4567,4568, - 5,448,0,0,4568,4574,3,362,181,0,4569,4570,5,135,0,0,4570,4574,5, - 195,0,0,4571,4572,5,135,0,0,4572,4574,5,515,0,0,4573,4566,1,0,0, - 0,4573,4569,1,0,0,0,4573,4571,1,0,0,0,4574,361,1,0,0,0,4575,4576, - 5,809,0,0,4576,4583,5,135,0,0,4577,4578,5,135,0,0,4578,4583,5,810, - 0,0,4579,4580,5,135,0,0,4580,4583,5,811,0,0,4581,4583,5,812,0,0, - 4582,4575,1,0,0,0,4582,4577,1,0,0,0,4582,4579,1,0,0,0,4582,4581, - 1,0,0,0,4583,363,1,0,0,0,4584,4585,5,25,0,0,4585,4586,5,453,0,0, - 4586,4587,5,176,0,0,4587,4592,3,380,190,0,4588,4589,5,868,0,0,4589, - 4591,3,380,190,0,4590,4588,1,0,0,0,4591,4594,1,0,0,0,4592,4590,1, - 0,0,0,4592,4593,1,0,0,0,4593,4596,1,0,0,0,4594,4592,1,0,0,0,4595, - 4597,3,400,200,0,4596,4595,1,0,0,0,4596,4597,1,0,0,0,4597,365,1, - 0,0,0,4598,4599,5,25,0,0,4599,4600,5,572,0,0,4600,4601,5,400,0,0, - 4601,4606,3,402,201,0,4602,4603,5,868,0,0,4603,4605,3,402,201,0, - 4604,4602,1,0,0,0,4605,4608,1,0,0,0,4606,4604,1,0,0,0,4606,4607, - 1,0,0,0,4607,4610,1,0,0,0,4608,4606,1,0,0,0,4609,4611,3,400,200, - 0,4610,4609,1,0,0,0,4610,4611,1,0,0,0,4611,367,1,0,0,0,4612,4613, - 5,25,0,0,4613,4614,5,572,0,0,4614,4615,5,605,0,0,4615,4616,5,176, - 0,0,4616,4621,3,390,195,0,4617,4618,5,868,0,0,4618,4620,3,390,195, - 0,4619,4617,1,0,0,0,4620,4623,1,0,0,0,4621,4619,1,0,0,0,4621,4622, - 1,0,0,0,4622,4625,1,0,0,0,4623,4621,1,0,0,0,4624,4626,3,400,200, - 0,4625,4624,1,0,0,0,4625,4626,1,0,0,0,4626,369,1,0,0,0,4627,4628, - 5,133,0,0,4628,4629,7,63,0,0,4629,4634,5,452,0,0,4630,4631,5,176, - 0,0,4631,4635,5,882,0,0,4632,4633,5,16,0,0,4633,4635,5,882,0,0,4634, - 4630,1,0,0,0,4634,4632,1,0,0,0,4635,371,1,0,0,0,4636,4637,5,640, - 0,0,4637,4646,7,64,0,0,4638,4643,3,406,203,0,4639,4640,5,868,0,0, - 4640,4642,3,406,203,0,4641,4639,1,0,0,0,4642,4645,1,0,0,0,4643,4641, - 1,0,0,0,4643,4644,1,0,0,0,4644,4647,1,0,0,0,4645,4643,1,0,0,0,4646, - 4638,1,0,0,0,4646,4647,1,0,0,0,4647,4650,1,0,0,0,4648,4649,5,676, - 0,0,4649,4651,3,408,204,0,4650,4648,1,0,0,0,4650,4651,1,0,0,0,4651, - 4655,1,0,0,0,4652,4654,3,410,205,0,4653,4652,1,0,0,0,4654,4657,1, - 0,0,0,4655,4653,1,0,0,0,4655,4656,1,0,0,0,4656,4659,1,0,0,0,4657, - 4655,1,0,0,0,4658,4660,3,400,200,0,4659,4658,1,0,0,0,4659,4660,1, - 0,0,0,4660,373,1,0,0,0,4661,4662,5,646,0,0,4662,4671,7,64,0,0,4663, - 4668,3,406,203,0,4664,4665,5,868,0,0,4665,4667,3,406,203,0,4666, - 4664,1,0,0,0,4667,4670,1,0,0,0,4668,4666,1,0,0,0,4668,4669,1,0,0, - 0,4669,4672,1,0,0,0,4670,4668,1,0,0,0,4671,4663,1,0,0,0,4671,4672, - 1,0,0,0,4672,4674,1,0,0,0,4673,4675,3,400,200,0,4674,4673,1,0,0, - 0,4674,4675,1,0,0,0,4675,375,1,0,0,0,4676,4677,5,640,0,0,4677,4681, - 5,415,0,0,4678,4679,5,678,0,0,4679,4680,5,857,0,0,4680,4682,5,882, - 0,0,4681,4678,1,0,0,0,4681,4682,1,0,0,0,4682,4687,1,0,0,0,4683,4684, - 5,868,0,0,4684,4685,5,529,0,0,4685,4686,5,857,0,0,4686,4688,5,882, - 0,0,4687,4683,1,0,0,0,4687,4688,1,0,0,0,4688,4693,1,0,0,0,4689,4690, - 5,868,0,0,4690,4691,5,363,0,0,4691,4692,5,857,0,0,4692,4694,5,882, - 0,0,4693,4689,1,0,0,0,4693,4694,1,0,0,0,4694,377,1,0,0,0,4695,4696, - 5,646,0,0,4696,4697,5,415,0,0,4697,379,1,0,0,0,4698,4699,3,382,191, - 0,4699,4700,5,857,0,0,4700,4701,5,882,0,0,4701,4726,1,0,0,0,4702, - 4703,3,384,192,0,4703,4704,5,857,0,0,4704,4705,3,730,365,0,4705, - 4726,1,0,0,0,4706,4707,3,386,193,0,4707,4708,5,857,0,0,4708,4709, - 7,26,0,0,4709,4726,1,0,0,0,4710,4726,3,388,194,0,4711,4712,5,424, - 0,0,4712,4713,5,857,0,0,4713,4722,5,866,0,0,4714,4719,3,722,361, - 0,4715,4716,5,868,0,0,4716,4718,3,722,361,0,4717,4715,1,0,0,0,4718, - 4721,1,0,0,0,4719,4717,1,0,0,0,4719,4720,1,0,0,0,4720,4723,1,0,0, - 0,4721,4719,1,0,0,0,4722,4714,1,0,0,0,4722,4723,1,0,0,0,4723,4724, - 1,0,0,0,4724,4726,5,867,0,0,4725,4698,1,0,0,0,4725,4702,1,0,0,0, - 4725,4706,1,0,0,0,4725,4710,1,0,0,0,4725,4711,1,0,0,0,4726,381,1, - 0,0,0,4727,4728,7,65,0,0,4728,383,1,0,0,0,4729,4730,7,66,0,0,4730, - 385,1,0,0,0,4731,4732,7,67,0,0,4732,387,1,0,0,0,4733,4734,5,543, - 0,0,4734,4735,5,857,0,0,4735,4747,7,68,0,0,4736,4737,5,574,0,0,4737, - 4738,5,857,0,0,4738,4747,7,69,0,0,4739,4740,5,310,0,0,4740,4744, - 5,857,0,0,4741,4745,5,507,0,0,4742,4745,5,450,0,0,4743,4745,3,412, - 206,0,4744,4741,1,0,0,0,4744,4742,1,0,0,0,4744,4743,1,0,0,0,4745, - 4747,1,0,0,0,4746,4733,1,0,0,0,4746,4736,1,0,0,0,4746,4739,1,0,0, - 0,4747,389,1,0,0,0,4748,4749,3,392,196,0,4749,4750,5,857,0,0,4750, - 4751,5,882,0,0,4751,4776,1,0,0,0,4752,4753,3,394,197,0,4753,4754, - 5,857,0,0,4754,4755,3,730,365,0,4755,4776,1,0,0,0,4756,4757,3,396, - 198,0,4757,4758,5,857,0,0,4758,4759,7,26,0,0,4759,4776,1,0,0,0,4760, - 4776,3,398,199,0,4761,4762,5,424,0,0,4762,4763,5,857,0,0,4763,4772, - 5,866,0,0,4764,4769,3,722,361,0,4765,4766,5,868,0,0,4766,4768,3, - 722,361,0,4767,4765,1,0,0,0,4768,4771,1,0,0,0,4769,4767,1,0,0,0, - 4769,4770,1,0,0,0,4770,4773,1,0,0,0,4771,4769,1,0,0,0,4772,4764, - 1,0,0,0,4772,4773,1,0,0,0,4773,4774,1,0,0,0,4774,4776,5,867,0,0, - 4775,4748,1,0,0,0,4775,4752,1,0,0,0,4775,4756,1,0,0,0,4775,4760, - 1,0,0,0,4775,4761,1,0,0,0,4776,391,1,0,0,0,4777,4778,7,70,0,0,4778, - 393,1,0,0,0,4779,4780,7,71,0,0,4780,395,1,0,0,0,4781,4782,7,72,0, - 0,4782,397,1,0,0,0,4783,4784,5,543,0,0,4784,4785,5,857,0,0,4785, - 4797,7,68,0,0,4786,4787,5,574,0,0,4787,4788,5,857,0,0,4788,4797, - 7,73,0,0,4789,4790,5,310,0,0,4790,4794,5,857,0,0,4791,4795,5,507, - 0,0,4792,4795,5,450,0,0,4793,4795,3,412,206,0,4794,4791,1,0,0,0, - 4794,4792,1,0,0,0,4794,4793,1,0,0,0,4795,4797,1,0,0,0,4796,4783, - 1,0,0,0,4796,4786,1,0,0,0,4796,4789,1,0,0,0,4797,399,1,0,0,0,4798, - 4799,5,65,0,0,4799,4800,5,328,0,0,4800,4801,5,882,0,0,4801,401,1, - 0,0,0,4802,4803,5,565,0,0,4803,4804,5,857,0,0,4804,4805,5,866,0, - 0,4805,4810,3,638,319,0,4806,4807,5,868,0,0,4807,4809,3,638,319, - 0,4808,4806,1,0,0,0,4809,4812,1,0,0,0,4810,4808,1,0,0,0,4810,4811, - 1,0,0,0,4811,4813,1,0,0,0,4812,4810,1,0,0,0,4813,4814,5,867,0,0, - 4814,4866,1,0,0,0,4815,4816,5,567,0,0,4816,4817,5,857,0,0,4817,4818, - 5,866,0,0,4818,4823,3,638,319,0,4819,4820,5,868,0,0,4820,4822,3, - 638,319,0,4821,4819,1,0,0,0,4822,4825,1,0,0,0,4823,4821,1,0,0,0, - 4823,4824,1,0,0,0,4824,4826,1,0,0,0,4825,4823,1,0,0,0,4826,4827, - 5,867,0,0,4827,4866,1,0,0,0,4828,4829,5,566,0,0,4829,4830,5,857, - 0,0,4830,4831,5,866,0,0,4831,4832,3,660,330,0,4832,4833,5,867,0, - 0,4833,4866,1,0,0,0,4834,4835,5,568,0,0,4835,4836,5,857,0,0,4836, - 4837,5,866,0,0,4837,4838,3,660,330,0,4838,4839,5,867,0,0,4839,4866, - 1,0,0,0,4840,4841,5,570,0,0,4841,4842,5,857,0,0,4842,4843,5,866, - 0,0,4843,4844,3,768,384,0,4844,4845,5,867,0,0,4845,4866,1,0,0,0, - 4846,4847,5,571,0,0,4847,4848,5,857,0,0,4848,4849,5,866,0,0,4849, - 4850,3,768,384,0,4850,4851,5,867,0,0,4851,4866,1,0,0,0,4852,4853, - 5,569,0,0,4853,4854,5,857,0,0,4854,4855,5,866,0,0,4855,4860,3,404, - 202,0,4856,4857,5,868,0,0,4857,4859,3,404,202,0,4858,4856,1,0,0, - 0,4859,4862,1,0,0,0,4860,4858,1,0,0,0,4860,4861,1,0,0,0,4861,4863, - 1,0,0,0,4862,4860,1,0,0,0,4863,4864,5,867,0,0,4864,4866,1,0,0,0, - 4865,4802,1,0,0,0,4865,4815,1,0,0,0,4865,4828,1,0,0,0,4865,4834, - 1,0,0,0,4865,4840,1,0,0,0,4865,4846,1,0,0,0,4865,4852,1,0,0,0,4866, - 403,1,0,0,0,4867,4868,5,866,0,0,4868,4869,3,662,331,0,4869,4870, - 5,868,0,0,4870,4871,3,662,331,0,4871,4872,5,867,0,0,4872,405,1,0, - 0,0,4873,4874,7,74,0,0,4874,407,1,0,0,0,4875,4876,7,75,0,0,4876, - 4877,5,857,0,0,4877,4901,3,412,206,0,4878,4879,5,460,0,0,4879,4880, - 5,857,0,0,4880,4881,5,882,0,0,4881,4882,5,868,0,0,4882,4883,5,461, - 0,0,4883,4884,5,857,0,0,4884,4901,3,730,365,0,4885,4886,5,611,0, - 0,4886,4887,5,857,0,0,4887,4888,5,882,0,0,4888,4889,5,868,0,0,4889, - 4890,5,612,0,0,4890,4891,5,857,0,0,4891,4901,3,730,365,0,4892,4893, - 5,557,0,0,4893,4894,5,857,0,0,4894,4895,5,882,0,0,4895,4896,5,868, - 0,0,4896,4897,5,558,0,0,4897,4898,5,857,0,0,4898,4901,3,730,365, - 0,4899,4901,5,634,0,0,4900,4875,1,0,0,0,4900,4878,1,0,0,0,4900,4885, - 1,0,0,0,4900,4892,1,0,0,0,4900,4899,1,0,0,0,4901,409,1,0,0,0,4902, - 4903,5,678,0,0,4903,4904,5,857,0,0,4904,4915,5,882,0,0,4905,4906, - 5,529,0,0,4906,4907,5,857,0,0,4907,4915,5,882,0,0,4908,4909,5,363, - 0,0,4909,4910,5,857,0,0,4910,4915,5,882,0,0,4911,4912,5,535,0,0, - 4912,4913,5,857,0,0,4913,4915,5,882,0,0,4914,4902,1,0,0,0,4914,4905, - 1,0,0,0,4914,4908,1,0,0,0,4914,4911,1,0,0,0,4915,411,1,0,0,0,4916, - 4921,3,712,356,0,4917,4918,5,868,0,0,4918,4920,3,712,356,0,4919, - 4917,1,0,0,0,4920,4923,1,0,0,0,4921,4919,1,0,0,0,4921,4922,1,0,0, - 0,4922,4926,1,0,0,0,4923,4921,1,0,0,0,4924,4926,5,882,0,0,4925,4916, - 1,0,0,0,4925,4924,1,0,0,0,4926,413,1,0,0,0,4927,4928,5,694,0,0,4928, - 4929,7,76,0,0,4929,4931,3,714,357,0,4930,4932,7,77,0,0,4931,4930, - 1,0,0,0,4931,4932,1,0,0,0,4932,415,1,0,0,0,4933,4934,5,694,0,0,4934, - 4935,5,378,0,0,4935,4941,3,714,357,0,4936,4939,5,654,0,0,4937,4938, - 5,65,0,0,4938,4940,5,489,0,0,4939,4937,1,0,0,0,4939,4940,1,0,0,0, - 4940,4942,1,0,0,0,4941,4936,1,0,0,0,4941,4942,1,0,0,0,4942,417,1, - 0,0,0,4943,4944,5,694,0,0,4944,4945,5,540,0,0,4945,4946,3,714,357, - 0,4946,419,1,0,0,0,4947,4948,5,694,0,0,4948,4949,5,341,0,0,4949, - 4952,3,714,357,0,4950,4951,5,513,0,0,4951,4953,5,533,0,0,4952,4950, - 1,0,0,0,4952,4953,1,0,0,0,4953,421,1,0,0,0,4954,4955,5,694,0,0,4955, - 4956,5,583,0,0,4956,4957,3,714,357,0,4957,423,1,0,0,0,4958,4959, - 5,694,0,0,4959,4962,5,551,0,0,4960,4961,5,33,0,0,4961,4963,3,714, - 357,0,4962,4960,1,0,0,0,4962,4963,1,0,0,0,4963,425,1,0,0,0,4964, - 4965,5,540,0,0,4965,4966,3,722,361,0,4966,4969,5,68,0,0,4967,4970, - 5,882,0,0,4968,4970,5,892,0,0,4969,4967,1,0,0,0,4969,4968,1,0,0, - 0,4970,427,1,0,0,0,4971,4972,5,717,0,0,4972,4975,3,722,361,0,4973, - 4974,5,188,0,0,4974,4976,3,770,385,0,4975,4973,1,0,0,0,4975,4976, - 1,0,0,0,4976,429,1,0,0,0,4977,4978,7,78,0,0,4978,4979,5,540,0,0, - 4979,4980,3,722,361,0,4980,431,1,0,0,0,4981,4984,3,434,217,0,4982, - 4984,3,4,2,0,4983,4981,1,0,0,0,4983,4982,1,0,0,0,4984,433,1,0,0, - 0,4985,4986,3,722,361,0,4986,4987,5,878,0,0,4987,4989,1,0,0,0,4988, - 4985,1,0,0,0,4988,4989,1,0,0,0,4989,4990,1,0,0,0,4990,4996,5,317, - 0,0,4991,4992,3,454,227,0,4992,4993,5,869,0,0,4993,4995,1,0,0,0, - 4994,4991,1,0,0,0,4995,4998,1,0,0,0,4996,4994,1,0,0,0,4996,4997, - 1,0,0,0,4997,5004,1,0,0,0,4998,4996,1,0,0,0,4999,5000,3,456,228, - 0,5000,5001,5,869,0,0,5001,5003,1,0,0,0,5002,4999,1,0,0,0,5003,5006, - 1,0,0,0,5004,5002,1,0,0,0,5004,5005,1,0,0,0,5005,5012,1,0,0,0,5006, - 5004,1,0,0,0,5007,5008,3,458,229,0,5008,5009,5,869,0,0,5009,5011, - 1,0,0,0,5010,5007,1,0,0,0,5011,5014,1,0,0,0,5012,5010,1,0,0,0,5012, - 5013,1,0,0,0,5013,5020,1,0,0,0,5014,5012,1,0,0,0,5015,5016,3,460, - 230,0,5016,5017,5,869,0,0,5017,5019,1,0,0,0,5018,5015,1,0,0,0,5019, - 5022,1,0,0,0,5020,5018,1,0,0,0,5020,5021,1,0,0,0,5021,5026,1,0,0, - 0,5022,5020,1,0,0,0,5023,5025,3,464,232,0,5024,5023,1,0,0,0,5025, - 5028,1,0,0,0,5026,5024,1,0,0,0,5026,5027,1,0,0,0,5027,5029,1,0,0, - 0,5028,5026,1,0,0,0,5029,5031,5,378,0,0,5030,5032,3,722,361,0,5031, - 5030,1,0,0,0,5031,5032,1,0,0,0,5032,435,1,0,0,0,5033,5036,5,23,0, - 0,5034,5037,3,722,361,0,5035,5037,3,822,411,0,5036,5034,1,0,0,0, - 5036,5035,1,0,0,0,5036,5037,1,0,0,0,5037,5039,1,0,0,0,5038,5040, - 3,466,233,0,5039,5038,1,0,0,0,5040,5041,1,0,0,0,5041,5039,1,0,0, - 0,5041,5042,1,0,0,0,5042,5049,1,0,0,0,5043,5045,5,53,0,0,5044,5046, - 3,464,232,0,5045,5044,1,0,0,0,5046,5047,1,0,0,0,5047,5045,1,0,0, - 0,5047,5048,1,0,0,0,5048,5050,1,0,0,0,5049,5043,1,0,0,0,5049,5050, - 1,0,0,0,5050,5051,1,0,0,0,5051,5052,5,378,0,0,5052,5053,5,23,0,0, - 5053,437,1,0,0,0,5054,5055,5,78,0,0,5055,5056,3,822,411,0,5056,5058, - 5,175,0,0,5057,5059,3,464,232,0,5058,5057,1,0,0,0,5059,5060,1,0, - 0,0,5060,5058,1,0,0,0,5060,5061,1,0,0,0,5061,5065,1,0,0,0,5062,5064, - 3,468,234,0,5063,5062,1,0,0,0,5064,5067,1,0,0,0,5065,5063,1,0,0, - 0,5065,5066,1,0,0,0,5066,5074,1,0,0,0,5067,5065,1,0,0,0,5068,5070, - 5,53,0,0,5069,5071,3,464,232,0,5070,5069,1,0,0,0,5071,5072,1,0,0, - 0,5072,5070,1,0,0,0,5072,5073,1,0,0,0,5073,5075,1,0,0,0,5074,5068, - 1,0,0,0,5074,5075,1,0,0,0,5075,5076,1,0,0,0,5076,5077,5,378,0,0, - 5077,5078,5,78,0,0,5078,439,1,0,0,0,5079,5080,5,90,0,0,5080,5081, - 3,722,361,0,5081,441,1,0,0,0,5082,5083,5,97,0,0,5083,5084,3,722, - 361,0,5084,443,1,0,0,0,5085,5086,3,722,361,0,5086,5087,5,878,0,0, - 5087,5089,1,0,0,0,5088,5085,1,0,0,0,5088,5089,1,0,0,0,5089,5090, - 1,0,0,0,5090,5092,5,106,0,0,5091,5093,3,464,232,0,5092,5091,1,0, - 0,0,5093,5094,1,0,0,0,5094,5092,1,0,0,0,5094,5095,1,0,0,0,5095,5096, - 1,0,0,0,5096,5097,5,378,0,0,5097,5099,5,106,0,0,5098,5100,3,722, - 361,0,5099,5098,1,0,0,0,5099,5100,1,0,0,0,5100,445,1,0,0,0,5101, - 5102,3,722,361,0,5102,5103,5,878,0,0,5103,5105,1,0,0,0,5104,5101, - 1,0,0,0,5104,5105,1,0,0,0,5105,5106,1,0,0,0,5106,5108,5,142,0,0, - 5107,5109,3,464,232,0,5108,5107,1,0,0,0,5109,5110,1,0,0,0,5110,5108, - 1,0,0,0,5110,5111,1,0,0,0,5111,5112,1,0,0,0,5112,5113,5,676,0,0, - 5113,5114,3,822,411,0,5114,5115,5,378,0,0,5115,5117,5,142,0,0,5116, - 5118,3,722,361,0,5117,5116,1,0,0,0,5117,5118,1,0,0,0,5118,447,1, - 0,0,0,5119,5120,5,148,0,0,5120,5121,3,822,411,0,5121,449,1,0,0,0, - 5122,5123,3,722,361,0,5123,5124,5,878,0,0,5124,5126,1,0,0,0,5125, - 5122,1,0,0,0,5125,5126,1,0,0,0,5126,5127,1,0,0,0,5127,5128,5,193, - 0,0,5128,5129,3,822,411,0,5129,5131,5,371,0,0,5130,5132,3,464,232, - 0,5131,5130,1,0,0,0,5132,5133,1,0,0,0,5133,5131,1,0,0,0,5133,5134, - 1,0,0,0,5134,5135,1,0,0,0,5135,5136,5,378,0,0,5136,5138,5,193,0, - 0,5137,5139,3,722,361,0,5138,5137,1,0,0,0,5138,5139,1,0,0,0,5139, - 451,1,0,0,0,5140,5141,5,334,0,0,5141,5156,3,722,361,0,5142,5147, - 5,64,0,0,5143,5145,5,501,0,0,5144,5143,1,0,0,0,5144,5145,1,0,0,0, - 5145,5146,1,0,0,0,5146,5148,5,68,0,0,5147,5144,1,0,0,0,5147,5148, - 1,0,0,0,5148,5149,1,0,0,0,5149,5150,3,722,361,0,5150,5151,5,88,0, - 0,5151,5152,3,720,360,0,5152,5156,1,0,0,0,5153,5154,5,516,0,0,5154, - 5156,3,722,361,0,5155,5140,1,0,0,0,5155,5142,1,0,0,0,5155,5153,1, - 0,0,0,5156,453,1,0,0,0,5157,5158,5,41,0,0,5158,5159,3,720,360,0, - 5159,5162,3,744,372,0,5160,5161,5,42,0,0,5161,5163,3,822,411,0,5162, - 5160,1,0,0,0,5162,5163,1,0,0,0,5163,455,1,0,0,0,5164,5165,5,41,0, - 0,5165,5166,3,722,361,0,5166,5167,5,30,0,0,5167,5174,5,65,0,0,5168, - 5175,3,730,365,0,5169,5171,5,164,0,0,5170,5172,5,682,0,0,5171,5170, - 1,0,0,0,5171,5172,1,0,0,0,5172,5173,1,0,0,0,5173,5175,5,882,0,0, - 5174,5168,1,0,0,0,5174,5169,1,0,0,0,5175,457,1,0,0,0,5176,5177,5, - 41,0,0,5177,5178,3,722,361,0,5178,5179,5,38,0,0,5179,5180,5,65,0, - 0,5180,5181,3,210,105,0,5181,459,1,0,0,0,5182,5183,5,41,0,0,5183, - 5184,7,79,0,0,5184,5185,5,417,0,0,5185,5186,5,65,0,0,5186,5191,3, - 462,231,0,5187,5188,5,868,0,0,5188,5190,3,462,231,0,5189,5187,1, - 0,0,0,5190,5193,1,0,0,0,5191,5189,1,0,0,0,5191,5192,1,0,0,0,5192, - 5194,1,0,0,0,5193,5191,1,0,0,0,5194,5195,3,432,216,0,5195,461,1, - 0,0,0,5196,5208,3,730,365,0,5197,5199,5,164,0,0,5198,5200,5,682, - 0,0,5199,5198,1,0,0,0,5199,5200,1,0,0,0,5200,5201,1,0,0,0,5201,5208, - 5,882,0,0,5202,5208,3,722,361,0,5203,5208,5,165,0,0,5204,5205,5, - 114,0,0,5205,5208,5,407,0,0,5206,5208,5,163,0,0,5207,5196,1,0,0, - 0,5207,5197,1,0,0,0,5207,5202,1,0,0,0,5207,5203,1,0,0,0,5207,5204, - 1,0,0,0,5207,5206,1,0,0,0,5208,463,1,0,0,0,5209,5212,3,18,9,0,5210, - 5212,3,4,2,0,5211,5209,1,0,0,0,5211,5210,1,0,0,0,5212,5213,1,0,0, - 0,5213,5214,5,869,0,0,5214,465,1,0,0,0,5215,5218,5,191,0,0,5216, - 5219,3,742,371,0,5217,5219,3,822,411,0,5218,5216,1,0,0,0,5218,5217, - 1,0,0,0,5219,5220,1,0,0,0,5220,5222,5,175,0,0,5221,5223,3,464,232, - 0,5222,5221,1,0,0,0,5223,5224,1,0,0,0,5224,5222,1,0,0,0,5224,5225, - 1,0,0,0,5225,467,1,0,0,0,5226,5227,5,54,0,0,5227,5228,3,822,411, - 0,5228,5230,5,175,0,0,5229,5231,3,464,232,0,5230,5229,1,0,0,0,5231, - 5232,1,0,0,0,5232,5230,1,0,0,0,5232,5233,1,0,0,0,5233,469,1,0,0, - 0,5234,5235,5,8,0,0,5235,5237,5,678,0,0,5236,5238,3,776,388,0,5237, - 5236,1,0,0,0,5237,5238,1,0,0,0,5238,5295,1,0,0,0,5239,5244,3,502, - 251,0,5240,5241,5,868,0,0,5241,5243,3,502,251,0,5242,5240,1,0,0, - 0,5243,5246,1,0,0,0,5244,5242,1,0,0,0,5244,5245,1,0,0,0,5245,5296, - 1,0,0,0,5246,5244,1,0,0,0,5247,5252,3,504,252,0,5248,5249,5,868, - 0,0,5249,5251,3,504,252,0,5250,5248,1,0,0,0,5251,5254,1,0,0,0,5252, - 5250,1,0,0,0,5252,5253,1,0,0,0,5253,5269,1,0,0,0,5254,5252,1,0,0, - 0,5255,5267,5,144,0,0,5256,5268,5,505,0,0,5257,5264,3,516,258,0, - 5258,5260,5,11,0,0,5259,5258,1,0,0,0,5259,5260,1,0,0,0,5260,5261, - 1,0,0,0,5261,5263,3,516,258,0,5262,5259,1,0,0,0,5263,5266,1,0,0, - 0,5264,5262,1,0,0,0,5264,5265,1,0,0,0,5265,5268,1,0,0,0,5266,5264, - 1,0,0,0,5267,5256,1,0,0,0,5267,5257,1,0,0,0,5268,5270,1,0,0,0,5269, - 5255,1,0,0,0,5269,5270,1,0,0,0,5270,5277,1,0,0,0,5271,5273,5,194, - 0,0,5272,5274,3,518,259,0,5273,5272,1,0,0,0,5274,5275,1,0,0,0,5275, - 5273,1,0,0,0,5275,5276,1,0,0,0,5276,5278,1,0,0,0,5277,5271,1,0,0, - 0,5277,5278,1,0,0,0,5278,5283,1,0,0,0,5279,5282,3,520,260,0,5280, - 5282,3,522,261,0,5281,5279,1,0,0,0,5281,5280,1,0,0,0,5282,5285,1, - 0,0,0,5283,5281,1,0,0,0,5283,5284,1,0,0,0,5284,5288,1,0,0,0,5285, - 5283,1,0,0,0,5286,5287,7,80,0,0,5287,5289,5,882,0,0,5288,5286,1, - 0,0,0,5288,5289,1,0,0,0,5289,5296,1,0,0,0,5290,5291,3,666,333,0, - 5291,5292,5,42,0,0,5292,5293,5,582,0,0,5293,5294,3,478,239,0,5294, - 5296,1,0,0,0,5295,5239,1,0,0,0,5295,5247,1,0,0,0,5295,5290,1,0,0, - 0,5296,471,1,0,0,0,5297,5298,5,34,0,0,5298,5300,5,678,0,0,5299,5301, - 3,778,389,0,5300,5299,1,0,0,0,5300,5301,1,0,0,0,5301,5302,1,0,0, - 0,5302,5304,3,700,350,0,5303,5305,3,506,253,0,5304,5303,1,0,0,0, - 5304,5305,1,0,0,0,5305,5313,1,0,0,0,5306,5307,5,868,0,0,5307,5309, - 3,700,350,0,5308,5310,3,506,253,0,5309,5308,1,0,0,0,5309,5310,1, - 0,0,0,5310,5312,1,0,0,0,5311,5306,1,0,0,0,5312,5315,1,0,0,0,5313, - 5311,1,0,0,0,5313,5314,1,0,0,0,5314,5319,1,0,0,0,5315,5313,1,0,0, - 0,5316,5317,5,42,0,0,5317,5318,5,582,0,0,5318,5320,3,478,239,0,5319, - 5316,1,0,0,0,5319,5320,1,0,0,0,5320,5335,1,0,0,0,5321,5333,5,144, - 0,0,5322,5334,5,505,0,0,5323,5330,3,516,258,0,5324,5326,5,11,0,0, - 5325,5324,1,0,0,0,5325,5326,1,0,0,0,5326,5327,1,0,0,0,5327,5329, - 3,516,258,0,5328,5325,1,0,0,0,5329,5332,1,0,0,0,5330,5328,1,0,0, - 0,5330,5331,1,0,0,0,5331,5334,1,0,0,0,5332,5330,1,0,0,0,5333,5322, - 1,0,0,0,5333,5323,1,0,0,0,5334,5336,1,0,0,0,5335,5321,1,0,0,0,5335, - 5336,1,0,0,0,5336,5343,1,0,0,0,5337,5339,5,194,0,0,5338,5340,3,518, - 259,0,5339,5338,1,0,0,0,5340,5341,1,0,0,0,5341,5339,1,0,0,0,5341, - 5342,1,0,0,0,5342,5344,1,0,0,0,5343,5337,1,0,0,0,5343,5344,1,0,0, - 0,5344,5349,1,0,0,0,5345,5348,3,520,260,0,5346,5348,3,522,261,0, - 5347,5345,1,0,0,0,5347,5346,1,0,0,0,5348,5351,1,0,0,0,5349,5347, - 1,0,0,0,5349,5350,1,0,0,0,5350,5354,1,0,0,0,5351,5349,1,0,0,0,5352, - 5353,7,80,0,0,5353,5355,5,882,0,0,5354,5352,1,0,0,0,5354,5355,1, - 0,0,0,5355,473,1,0,0,0,5356,5357,5,51,0,0,5357,5359,5,678,0,0,5358, - 5360,3,776,388,0,5359,5358,1,0,0,0,5359,5360,1,0,0,0,5360,5361,1, - 0,0,0,5361,5366,3,700,350,0,5362,5363,5,868,0,0,5363,5365,3,700, - 350,0,5364,5362,1,0,0,0,5365,5368,1,0,0,0,5366,5364,1,0,0,0,5366, - 5367,1,0,0,0,5367,475,1,0,0,0,5368,5366,1,0,0,0,5369,5370,5,73,0, - 0,5370,5375,3,530,265,0,5371,5372,5,868,0,0,5372,5374,3,530,265, - 0,5373,5371,1,0,0,0,5374,5377,1,0,0,0,5375,5373,1,0,0,0,5375,5376, - 1,0,0,0,5376,5378,1,0,0,0,5377,5375,1,0,0,0,5378,5380,5,119,0,0, - 5379,5381,3,498,249,0,5380,5379,1,0,0,0,5380,5381,1,0,0,0,5381,5382, - 1,0,0,0,5382,5383,3,534,267,0,5383,5393,5,176,0,0,5384,5389,3,510, - 255,0,5385,5386,5,868,0,0,5386,5388,3,510,255,0,5387,5385,1,0,0, - 0,5388,5391,1,0,0,0,5389,5387,1,0,0,0,5389,5390,1,0,0,0,5390,5394, - 1,0,0,0,5391,5389,1,0,0,0,5392,5394,3,664,332,0,5393,5384,1,0,0, - 0,5393,5392,1,0,0,0,5394,5409,1,0,0,0,5395,5407,5,144,0,0,5396,5408, - 5,505,0,0,5397,5404,3,516,258,0,5398,5400,5,11,0,0,5399,5398,1,0, - 0,0,5399,5400,1,0,0,0,5400,5401,1,0,0,0,5401,5403,3,516,258,0,5402, - 5399,1,0,0,0,5403,5406,1,0,0,0,5404,5402,1,0,0,0,5404,5405,1,0,0, - 0,5405,5408,1,0,0,0,5406,5404,1,0,0,0,5407,5396,1,0,0,0,5407,5397, - 1,0,0,0,5408,5410,1,0,0,0,5409,5395,1,0,0,0,5409,5410,1,0,0,0,5410, - 5420,1,0,0,0,5411,5417,5,194,0,0,5412,5413,5,73,0,0,5413,5416,5, - 121,0,0,5414,5416,3,518,259,0,5415,5412,1,0,0,0,5415,5414,1,0,0, - 0,5416,5419,1,0,0,0,5417,5415,1,0,0,0,5417,5418,1,0,0,0,5418,5421, - 1,0,0,0,5419,5417,1,0,0,0,5420,5411,1,0,0,0,5420,5421,1,0,0,0,5421, - 5429,1,0,0,0,5422,5423,5,13,0,0,5423,5427,3,700,350,0,5424,5425, - 5,194,0,0,5425,5426,5,582,0,0,5426,5428,3,478,239,0,5427,5424,1, - 0,0,0,5427,5428,1,0,0,0,5428,5430,1,0,0,0,5429,5422,1,0,0,0,5429, - 5430,1,0,0,0,5430,5459,1,0,0,0,5431,5434,5,73,0,0,5432,5433,5,547, - 0,0,5433,5435,5,119,0,0,5434,5432,1,0,0,0,5434,5435,1,0,0,0,5435, - 5436,1,0,0,0,5436,5441,3,666,333,0,5437,5438,5,868,0,0,5438,5440, - 3,666,333,0,5439,5437,1,0,0,0,5440,5443,1,0,0,0,5441,5439,1,0,0, - 0,5441,5442,1,0,0,0,5442,5444,1,0,0,0,5443,5441,1,0,0,0,5444,5445, - 5,176,0,0,5445,5450,3,666,333,0,5446,5447,5,868,0,0,5447,5449,3, - 666,333,0,5448,5446,1,0,0,0,5449,5452,1,0,0,0,5450,5448,1,0,0,0, - 5450,5451,1,0,0,0,5451,5456,1,0,0,0,5452,5450,1,0,0,0,5453,5454, - 5,194,0,0,5454,5455,5,704,0,0,5455,5457,5,121,0,0,5456,5453,1,0, - 0,0,5456,5457,1,0,0,0,5457,5459,1,0,0,0,5458,5369,1,0,0,0,5458,5431, - 1,0,0,0,5459,477,1,0,0,0,5460,5469,5,42,0,0,5461,5469,5,505,0,0, - 5462,5465,5,7,0,0,5463,5464,5,59,0,0,5464,5466,3,664,332,0,5465, - 5463,1,0,0,0,5465,5466,1,0,0,0,5466,5469,1,0,0,0,5467,5469,3,664, - 332,0,5468,5460,1,0,0,0,5468,5461,1,0,0,0,5468,5462,1,0,0,0,5468, - 5467,1,0,0,0,5469,479,1,0,0,0,5470,5471,5,73,0,0,5471,5472,5,547, - 0,0,5472,5473,5,119,0,0,5473,5474,3,700,350,0,5474,5475,5,176,0, - 0,5475,5480,3,700,350,0,5476,5477,5,868,0,0,5477,5479,3,700,350, - 0,5478,5476,1,0,0,0,5479,5482,1,0,0,0,5480,5478,1,0,0,0,5480,5481, - 1,0,0,0,5481,5486,1,0,0,0,5482,5480,1,0,0,0,5483,5484,5,194,0,0, - 5484,5485,5,73,0,0,5485,5487,5,121,0,0,5486,5483,1,0,0,0,5486,5487, - 1,0,0,0,5487,481,1,0,0,0,5488,5489,5,8,0,0,5489,5490,5,739,0,0,5490, - 5491,5,74,0,0,5491,5497,3,656,328,0,5492,5494,5,190,0,0,5493,5495, - 5,857,0,0,5494,5493,1,0,0,0,5494,5495,1,0,0,0,5495,5496,1,0,0,0, - 5496,5498,3,490,245,0,5497,5492,1,0,0,0,5497,5498,1,0,0,0,5498,5504, - 1,0,0,0,5499,5501,5,837,0,0,5500,5502,5,857,0,0,5501,5500,1,0,0, - 0,5501,5502,1,0,0,0,5502,5503,1,0,0,0,5503,5505,3,730,365,0,5504, - 5499,1,0,0,0,5504,5505,1,0,0,0,5505,5510,1,0,0,0,5506,5508,7,39, - 0,0,5507,5509,5,66,0,0,5508,5507,1,0,0,0,5508,5509,1,0,0,0,5509, - 5511,1,0,0,0,5510,5506,1,0,0,0,5510,5511,1,0,0,0,5511,483,1,0,0, - 0,5512,5513,5,34,0,0,5513,5514,5,739,0,0,5514,5515,5,74,0,0,5515, - 5516,3,654,327,0,5516,5517,5,839,0,0,5517,5518,5,857,0,0,5518,5524, - 7,81,0,0,5519,5521,5,190,0,0,5520,5522,5,857,0,0,5521,5520,1,0,0, - 0,5521,5522,1,0,0,0,5522,5523,1,0,0,0,5523,5525,3,490,245,0,5524, - 5519,1,0,0,0,5524,5525,1,0,0,0,5525,5531,1,0,0,0,5526,5528,5,837, - 0,0,5527,5529,5,857,0,0,5528,5527,1,0,0,0,5528,5529,1,0,0,0,5529, - 5530,1,0,0,0,5530,5532,3,730,365,0,5531,5526,1,0,0,0,5531,5532,1, - 0,0,0,5532,5534,1,0,0,0,5533,5535,7,39,0,0,5534,5533,1,0,0,0,5534, - 5535,1,0,0,0,5535,485,1,0,0,0,5536,5537,5,51,0,0,5537,5538,5,739, - 0,0,5538,5539,5,74,0,0,5539,5541,3,656,328,0,5540,5542,5,66,0,0, - 5541,5540,1,0,0,0,5541,5542,1,0,0,0,5542,487,1,0,0,0,5543,5544,5, - 155,0,0,5544,5545,5,739,0,0,5545,5546,5,74,0,0,5546,5556,3,656,328, - 0,5547,5548,5,65,0,0,5548,5553,3,730,365,0,5549,5550,5,868,0,0,5550, - 5552,3,730,365,0,5551,5549,1,0,0,0,5552,5555,1,0,0,0,5553,5551,1, - 0,0,0,5553,5554,1,0,0,0,5554,5557,1,0,0,0,5555,5553,1,0,0,0,5556, - 5547,1,0,0,0,5556,5557,1,0,0,0,5557,489,1,0,0,0,5558,5564,3,730, - 365,0,5559,5560,3,730,365,0,5560,5561,5,854,0,0,5561,5562,3,730, - 365,0,5562,5564,1,0,0,0,5563,5558,1,0,0,0,5563,5559,1,0,0,0,5564, - 5569,1,0,0,0,5565,5566,5,868,0,0,5566,5568,3,490,245,0,5567,5565, - 1,0,0,0,5568,5571,1,0,0,0,5569,5567,1,0,0,0,5569,5570,1,0,0,0,5570, - 491,1,0,0,0,5571,5569,1,0,0,0,5572,5573,5,141,0,0,5573,5574,5,678, - 0,0,5574,5579,3,536,268,0,5575,5576,5,868,0,0,5576,5578,3,536,268, - 0,5577,5575,1,0,0,0,5578,5581,1,0,0,0,5579,5577,1,0,0,0,5579,5580, - 1,0,0,0,5580,493,1,0,0,0,5581,5579,1,0,0,0,5582,5584,5,149,0,0,5583, - 5585,3,776,388,0,5584,5583,1,0,0,0,5584,5585,1,0,0,0,5585,5586,1, - 0,0,0,5586,5591,3,530,265,0,5587,5588,5,868,0,0,5588,5590,3,530, - 265,0,5589,5587,1,0,0,0,5590,5593,1,0,0,0,5591,5589,1,0,0,0,5591, - 5592,1,0,0,0,5592,5594,1,0,0,0,5593,5591,1,0,0,0,5594,5596,5,119, - 0,0,5595,5597,3,498,249,0,5596,5595,1,0,0,0,5596,5597,1,0,0,0,5597, - 5598,1,0,0,0,5598,5599,3,534,267,0,5599,5600,5,68,0,0,5600,5602, - 3,664,332,0,5601,5603,3,496,248,0,5602,5601,1,0,0,0,5602,5603,1, - 0,0,0,5603,5635,1,0,0,0,5604,5606,5,149,0,0,5605,5607,3,776,388, - 0,5606,5605,1,0,0,0,5606,5607,1,0,0,0,5607,5608,1,0,0,0,5608,5610, - 5,7,0,0,5609,5611,5,734,0,0,5610,5609,1,0,0,0,5610,5611,1,0,0,0, - 5611,5612,1,0,0,0,5612,5613,5,868,0,0,5613,5614,5,73,0,0,5614,5615, - 5,121,0,0,5615,5616,5,68,0,0,5616,5618,3,664,332,0,5617,5619,3,496, - 248,0,5618,5617,1,0,0,0,5618,5619,1,0,0,0,5619,5635,1,0,0,0,5620, - 5622,5,149,0,0,5621,5623,3,776,388,0,5622,5621,1,0,0,0,5622,5623, - 1,0,0,0,5623,5626,1,0,0,0,5624,5625,5,547,0,0,5625,5627,5,119,0, - 0,5626,5624,1,0,0,0,5626,5627,1,0,0,0,5627,5628,1,0,0,0,5628,5629, - 3,664,332,0,5629,5630,5,68,0,0,5630,5632,3,664,332,0,5631,5633,3, - 496,248,0,5632,5631,1,0,0,0,5632,5633,1,0,0,0,5633,5635,1,0,0,0, - 5634,5582,1,0,0,0,5634,5604,1,0,0,0,5634,5620,1,0,0,0,5635,495,1, - 0,0,0,5636,5637,5,79,0,0,5637,5638,5,674,0,0,5638,5639,5,678,0,0, - 5639,497,1,0,0,0,5640,5641,7,82,0,0,5641,499,1,0,0,0,5642,5643,5, - 155,0,0,5643,5646,5,529,0,0,5644,5645,5,65,0,0,5645,5647,3,700,350, - 0,5646,5644,1,0,0,0,5646,5647,1,0,0,0,5647,5648,1,0,0,0,5648,5651, - 5,857,0,0,5649,5652,3,816,408,0,5650,5652,5,882,0,0,5651,5649,1, - 0,0,0,5651,5650,1,0,0,0,5652,5675,1,0,0,0,5653,5654,5,155,0,0,5654, - 5657,5,529,0,0,5655,5656,5,65,0,0,5656,5658,3,700,350,0,5657,5655, - 1,0,0,0,5657,5658,1,0,0,0,5658,5663,1,0,0,0,5659,5660,5,176,0,0, - 5660,5664,5,829,0,0,5661,5662,5,857,0,0,5662,5664,5,882,0,0,5663, - 5659,1,0,0,0,5663,5661,1,0,0,0,5664,5667,1,0,0,0,5665,5666,5,143, - 0,0,5666,5668,5,882,0,0,5667,5665,1,0,0,0,5667,5668,1,0,0,0,5668, - 5672,1,0,0,0,5669,5670,5,147,0,0,5670,5671,5,36,0,0,5671,5673,5, - 529,0,0,5672,5669,1,0,0,0,5672,5673,1,0,0,0,5673,5675,1,0,0,0,5674, - 5642,1,0,0,0,5674,5653,1,0,0,0,5675,501,1,0,0,0,5676,5677,3,700, - 350,0,5677,5678,3,520,260,0,5678,503,1,0,0,0,5679,5705,3,700,350, - 0,5680,5681,5,423,0,0,5681,5682,5,20,0,0,5682,5683,5,882,0,0,5683, - 5706,3,512,256,0,5684,5685,5,423,0,0,5685,5686,5,20,0,0,5686,5687, - 5,829,0,0,5687,5688,5,529,0,0,5688,5706,3,512,256,0,5689,5690,5, - 423,0,0,5690,5691,5,194,0,0,5691,5706,3,514,257,0,5692,5693,5,369, - 0,0,5693,5694,5,511,0,0,5694,5706,5,529,0,0,5695,5696,7,83,0,0,5696, - 5698,3,528,264,0,5697,5699,3,524,262,0,5698,5697,1,0,0,0,5698,5699, - 1,0,0,0,5699,5701,1,0,0,0,5700,5695,1,0,0,0,5701,5702,1,0,0,0,5702, - 5700,1,0,0,0,5702,5703,1,0,0,0,5703,5706,1,0,0,0,5704,5706,3,526, - 263,0,5705,5680,1,0,0,0,5705,5684,1,0,0,0,5705,5689,1,0,0,0,5705, - 5692,1,0,0,0,5705,5700,1,0,0,0,5705,5704,1,0,0,0,5705,5706,1,0,0, - 0,5706,505,1,0,0,0,5707,5708,5,423,0,0,5708,5714,5,20,0,0,5709,5715, - 5,882,0,0,5710,5711,5,829,0,0,5711,5715,5,529,0,0,5712,5713,5,529, - 0,0,5713,5715,5,882,0,0,5714,5709,1,0,0,0,5714,5710,1,0,0,0,5714, - 5712,1,0,0,0,5715,5718,1,0,0,0,5716,5717,5,11,0,0,5717,5719,3,506, - 253,0,5718,5716,1,0,0,0,5718,5719,1,0,0,0,5719,5744,1,0,0,0,5720, - 5721,5,423,0,0,5721,5722,5,194,0,0,5722,5731,3,722,361,0,5723,5727, - 5,20,0,0,5724,5728,5,882,0,0,5725,5726,5,829,0,0,5726,5728,5,529, - 0,0,5727,5724,1,0,0,0,5727,5725,1,0,0,0,5728,5732,1,0,0,0,5729,5730, - 5,13,0,0,5730,5732,5,882,0,0,5731,5723,1,0,0,0,5731,5729,1,0,0,0, - 5731,5732,1,0,0,0,5732,5735,1,0,0,0,5733,5734,5,11,0,0,5734,5736, - 3,506,253,0,5735,5733,1,0,0,0,5735,5736,1,0,0,0,5736,5744,1,0,0, - 0,5737,5738,5,423,0,0,5738,5739,5,194,0,0,5739,5741,3,722,361,0, - 5740,5742,3,508,254,0,5741,5740,1,0,0,0,5741,5742,1,0,0,0,5742,5744, - 1,0,0,0,5743,5707,1,0,0,0,5743,5720,1,0,0,0,5743,5737,1,0,0,0,5744, - 507,1,0,0,0,5745,5746,5,427,0,0,5746,5747,5,708,0,0,5747,5748,5, - 423,0,0,5748,5752,5,20,0,0,5749,5750,5,829,0,0,5750,5753,5,529,0, - 0,5751,5753,5,882,0,0,5752,5749,1,0,0,0,5752,5751,1,0,0,0,5753,5763, - 1,0,0,0,5754,5755,5,427,0,0,5755,5756,5,708,0,0,5756,5757,5,423, - 0,0,5757,5758,5,194,0,0,5758,5759,3,722,361,0,5759,5760,5,13,0,0, - 5760,5761,5,882,0,0,5761,5763,1,0,0,0,5762,5745,1,0,0,0,5762,5754, - 1,0,0,0,5763,509,1,0,0,0,5764,5765,3,700,350,0,5765,5766,5,423,0, - 0,5766,5767,5,20,0,0,5767,5768,5,529,0,0,5768,5769,5,882,0,0,5769, - 5790,1,0,0,0,5770,5771,3,700,350,0,5771,5772,5,423,0,0,5772,5773, - 5,20,0,0,5773,5774,5,829,0,0,5774,5775,5,529,0,0,5775,5776,3,512, - 256,0,5776,5790,1,0,0,0,5777,5778,3,700,350,0,5778,5779,5,423,0, - 0,5779,5780,5,20,0,0,5780,5781,5,882,0,0,5781,5782,3,512,256,0,5782, - 5790,1,0,0,0,5783,5784,3,700,350,0,5784,5785,5,423,0,0,5785,5786, - 5,194,0,0,5786,5787,3,514,257,0,5787,5790,1,0,0,0,5788,5790,3,700, - 350,0,5789,5764,1,0,0,0,5789,5770,1,0,0,0,5789,5777,1,0,0,0,5789, - 5783,1,0,0,0,5789,5788,1,0,0,0,5790,511,1,0,0,0,5791,5792,5,143, - 0,0,5792,5794,5,882,0,0,5793,5791,1,0,0,0,5793,5794,1,0,0,0,5794, - 5798,1,0,0,0,5795,5796,5,147,0,0,5796,5797,5,36,0,0,5797,5799,5, - 529,0,0,5798,5795,1,0,0,0,5798,5799,1,0,0,0,5799,513,1,0,0,0,5800, - 5808,3,722,361,0,5801,5805,7,84,0,0,5802,5806,5,882,0,0,5803,5804, - 5,829,0,0,5804,5806,5,529,0,0,5805,5802,1,0,0,0,5805,5803,1,0,0, - 0,5806,5807,1,0,0,0,5807,5809,3,512,256,0,5808,5801,1,0,0,0,5808, - 5809,1,0,0,0,5809,5815,1,0,0,0,5810,5811,3,722,361,0,5811,5812,5, - 188,0,0,5812,5813,3,816,408,0,5813,5815,1,0,0,0,5814,5800,1,0,0, - 0,5814,5810,1,0,0,0,5815,515,1,0,0,0,5816,5825,5,169,0,0,5817,5825, - 5,693,0,0,5818,5819,5,331,0,0,5819,5825,5,882,0,0,5820,5821,5,441, - 0,0,5821,5825,5,882,0,0,5822,5823,5,651,0,0,5823,5825,5,882,0,0, - 5824,5816,1,0,0,0,5824,5817,1,0,0,0,5824,5818,1,0,0,0,5824,5820, - 1,0,0,0,5824,5822,1,0,0,0,5825,517,1,0,0,0,5826,5827,5,479,0,0,5827, - 5835,3,730,365,0,5828,5829,5,482,0,0,5829,5835,3,730,365,0,5830, - 5831,5,478,0,0,5831,5835,3,730,365,0,5832,5833,5,483,0,0,5833,5835, - 3,730,365,0,5834,5826,1,0,0,0,5834,5828,1,0,0,0,5834,5830,1,0,0, - 0,5834,5832,1,0,0,0,5835,519,1,0,0,0,5836,5837,5,529,0,0,5837,5844, - 5,390,0,0,5838,5845,5,42,0,0,5839,5845,5,500,0,0,5840,5841,5,87, - 0,0,5841,5842,3,730,365,0,5842,5843,5,698,0,0,5843,5845,1,0,0,0, - 5844,5838,1,0,0,0,5844,5839,1,0,0,0,5844,5840,1,0,0,0,5844,5845, - 1,0,0,0,5845,5875,1,0,0,0,5846,5847,5,529,0,0,5847,5850,5,420,0, - 0,5848,5851,5,42,0,0,5849,5851,3,730,365,0,5850,5848,1,0,0,0,5850, - 5849,1,0,0,0,5851,5875,1,0,0,0,5852,5853,5,529,0,0,5853,5854,5,581, - 0,0,5854,5859,5,87,0,0,5855,5860,5,42,0,0,5856,5857,3,730,365,0, - 5857,5858,5,698,0,0,5858,5860,1,0,0,0,5859,5855,1,0,0,0,5859,5856, - 1,0,0,0,5860,5875,1,0,0,0,5861,5862,5,529,0,0,5862,5863,5,144,0, - 0,5863,5865,5,36,0,0,5864,5866,7,85,0,0,5865,5864,1,0,0,0,5865,5866, - 1,0,0,0,5866,5875,1,0,0,0,5867,5868,5,395,0,0,5868,5875,3,730,365, - 0,5869,5872,5,530,0,0,5870,5873,3,730,365,0,5871,5873,5,669,0,0, - 5872,5870,1,0,0,0,5872,5871,1,0,0,0,5873,5875,1,0,0,0,5874,5836, - 1,0,0,0,5874,5846,1,0,0,0,5874,5852,1,0,0,0,5874,5861,1,0,0,0,5874, - 5867,1,0,0,0,5874,5869,1,0,0,0,5875,521,1,0,0,0,5876,5877,5,304, - 0,0,5877,5878,7,86,0,0,5878,523,1,0,0,0,5879,5882,5,423,0,0,5880, - 5881,5,194,0,0,5881,5883,3,722,361,0,5882,5880,1,0,0,0,5882,5883, - 1,0,0,0,5883,5892,1,0,0,0,5884,5888,5,20,0,0,5885,5889,5,882,0,0, - 5886,5887,5,829,0,0,5887,5889,5,529,0,0,5888,5885,1,0,0,0,5888,5886, - 1,0,0,0,5889,5893,1,0,0,0,5890,5891,5,13,0,0,5891,5893,5,882,0,0, - 5892,5884,1,0,0,0,5892,5890,1,0,0,0,5893,525,1,0,0,0,5894,5895,3, - 528,264,0,5895,5896,5,429,0,0,5896,5897,5,555,0,0,5897,5910,1,0, - 0,0,5898,5899,3,528,264,0,5899,5900,5,401,0,0,5900,5901,5,555,0, - 0,5901,5902,5,155,0,0,5902,5903,5,330,0,0,5903,5904,5,13,0,0,5904, - 5905,5,882,0,0,5905,5910,1,0,0,0,5906,5907,3,528,264,0,5907,5908, - 5,675,0,0,5908,5910,1,0,0,0,5909,5894,1,0,0,0,5909,5898,1,0,0,0, - 5909,5906,1,0,0,0,5910,527,1,0,0,0,5911,5912,7,87,0,0,5912,5913, - 5,394,0,0,5913,529,1,0,0,0,5914,5919,3,532,266,0,5915,5916,5,866, - 0,0,5916,5917,3,670,335,0,5917,5918,5,867,0,0,5918,5920,1,0,0,0, - 5919,5915,1,0,0,0,5919,5920,1,0,0,0,5920,531,1,0,0,0,5921,5923,5, - 7,0,0,5922,5924,5,734,0,0,5923,5922,1,0,0,0,5923,5924,1,0,0,0,5924, - 6015,1,0,0,0,5925,5927,5,8,0,0,5926,5928,5,743,0,0,5927,5926,1,0, - 0,0,5927,5928,1,0,0,0,5928,6015,1,0,0,0,5929,5937,5,34,0,0,5930, - 5931,5,660,0,0,5931,5938,5,752,0,0,5932,5938,5,743,0,0,5933,5938, - 5,684,0,0,5934,5938,5,678,0,0,5935,5938,5,658,0,0,5936,5938,5,582, - 0,0,5937,5930,1,0,0,0,5937,5932,1,0,0,0,5937,5933,1,0,0,0,5937,5934, - 1,0,0,0,5937,5935,1,0,0,0,5937,5936,1,0,0,0,5937,5938,1,0,0,0,5938, - 6015,1,0,0,0,5939,6015,5,44,0,0,5940,5942,5,51,0,0,5941,5943,5,582, - 0,0,5942,5941,1,0,0,0,5942,5943,1,0,0,0,5943,6015,1,0,0,0,5944,6015, - 5,385,0,0,5945,6015,5,717,0,0,5946,6015,5,718,0,0,5947,5948,5,73, - 0,0,5948,6015,5,121,0,0,5949,6015,5,82,0,0,5950,6015,5,86,0,0,5951, - 5952,5,104,0,0,5952,6015,5,752,0,0,5953,6015,5,735,0,0,5954,6015, - 5,547,0,0,5955,6015,5,138,0,0,5956,6015,5,736,0,0,5957,5958,5,572, - 0,0,5958,6015,7,88,0,0,5959,6015,5,154,0,0,5960,5961,5,157,0,0,5961, - 6015,7,89,0,0,5962,6015,5,749,0,0,5963,6015,5,750,0,0,5964,6015, - 5,178,0,0,5965,6015,5,185,0,0,5966,6015,5,186,0,0,5967,6015,5,705, - 0,0,5968,6015,5,706,0,0,5969,6015,5,707,0,0,5970,6015,5,709,0,0, - 5971,6015,5,710,0,0,5972,6015,5,711,0,0,5973,6015,5,712,0,0,5974, - 6015,5,714,0,0,5975,6015,5,715,0,0,5976,6015,5,716,0,0,5977,6015, - 5,719,0,0,5978,6015,5,720,0,0,5979,6015,5,721,0,0,5980,6015,5,722, - 0,0,5981,6015,5,723,0,0,5982,6015,5,724,0,0,5983,6015,5,725,0,0, - 5984,6015,5,726,0,0,5985,6015,5,727,0,0,5986,6015,5,728,0,0,5987, - 6015,5,731,0,0,5988,6015,5,732,0,0,5989,6015,5,733,0,0,5990,6015, - 5,737,0,0,5991,6015,5,738,0,0,5992,6015,5,740,0,0,5993,6015,5,741, - 0,0,5994,6015,5,742,0,0,5995,6015,5,745,0,0,5996,6015,5,746,0,0, - 5997,6015,5,747,0,0,5998,6015,5,160,0,0,5999,6015,5,748,0,0,6000, - 6015,5,836,0,0,6001,6015,5,751,0,0,6002,6015,5,753,0,0,6003,6015, - 5,838,0,0,6004,6015,5,754,0,0,6005,6015,5,755,0,0,6006,6007,5,103, - 0,0,6007,6008,5,68,0,0,6008,6015,5,744,0,0,6009,6010,5,154,0,0,6010, - 6011,5,88,0,0,6011,6015,5,744,0,0,6012,6013,5,729,0,0,6013,6015, - 5,730,0,0,6014,5921,1,0,0,0,6014,5925,1,0,0,0,6014,5929,1,0,0,0, - 6014,5939,1,0,0,0,6014,5940,1,0,0,0,6014,5944,1,0,0,0,6014,5945, - 1,0,0,0,6014,5946,1,0,0,0,6014,5947,1,0,0,0,6014,5949,1,0,0,0,6014, - 5950,1,0,0,0,6014,5951,1,0,0,0,6014,5953,1,0,0,0,6014,5954,1,0,0, - 0,6014,5955,1,0,0,0,6014,5956,1,0,0,0,6014,5957,1,0,0,0,6014,5959, - 1,0,0,0,6014,5960,1,0,0,0,6014,5962,1,0,0,0,6014,5963,1,0,0,0,6014, - 5964,1,0,0,0,6014,5965,1,0,0,0,6014,5966,1,0,0,0,6014,5967,1,0,0, - 0,6014,5968,1,0,0,0,6014,5969,1,0,0,0,6014,5970,1,0,0,0,6014,5971, - 1,0,0,0,6014,5972,1,0,0,0,6014,5973,1,0,0,0,6014,5974,1,0,0,0,6014, - 5975,1,0,0,0,6014,5976,1,0,0,0,6014,5977,1,0,0,0,6014,5978,1,0,0, - 0,6014,5979,1,0,0,0,6014,5980,1,0,0,0,6014,5981,1,0,0,0,6014,5982, - 1,0,0,0,6014,5983,1,0,0,0,6014,5984,1,0,0,0,6014,5985,1,0,0,0,6014, - 5986,1,0,0,0,6014,5987,1,0,0,0,6014,5988,1,0,0,0,6014,5989,1,0,0, - 0,6014,5990,1,0,0,0,6014,5991,1,0,0,0,6014,5992,1,0,0,0,6014,5993, - 1,0,0,0,6014,5994,1,0,0,0,6014,5995,1,0,0,0,6014,5996,1,0,0,0,6014, - 5997,1,0,0,0,6014,5998,1,0,0,0,6014,5999,1,0,0,0,6014,6000,1,0,0, - 0,6014,6001,1,0,0,0,6014,6002,1,0,0,0,6014,6003,1,0,0,0,6014,6004, - 1,0,0,0,6014,6005,1,0,0,0,6014,6006,1,0,0,0,6014,6009,1,0,0,0,6014, - 6012,1,0,0,0,6015,533,1,0,0,0,6016,6033,5,850,0,0,6017,6018,5,850, - 0,0,6018,6019,5,865,0,0,6019,6033,5,850,0,0,6020,6021,3,722,361, - 0,6021,6022,5,865,0,0,6022,6023,5,850,0,0,6023,6033,1,0,0,0,6024, - 6025,3,722,361,0,6025,6026,5,865,0,0,6026,6027,3,722,361,0,6027, - 6033,1,0,0,0,6028,6029,3,722,361,0,6029,6030,3,726,363,0,6030,6033, - 1,0,0,0,6031,6033,3,722,361,0,6032,6016,1,0,0,0,6032,6017,1,0,0, - 0,6032,6020,1,0,0,0,6032,6024,1,0,0,0,6032,6028,1,0,0,0,6032,6031, - 1,0,0,0,6033,535,1,0,0,0,6034,6035,3,700,350,0,6035,6036,5,176,0, - 0,6036,6037,3,700,350,0,6037,537,1,0,0,0,6038,6040,5,10,0,0,6039, - 6041,3,548,274,0,6040,6039,1,0,0,0,6040,6041,1,0,0,0,6041,6042,1, - 0,0,0,6042,6043,5,173,0,0,6043,6087,3,660,330,0,6044,6046,5,10,0, - 0,6045,6047,3,548,274,0,6046,6045,1,0,0,0,6046,6047,1,0,0,0,6047, - 6048,1,0,0,0,6048,6049,5,173,0,0,6049,6050,3,662,331,0,6050,6051, - 5,185,0,0,6051,6052,5,77,0,0,6052,6053,5,119,0,0,6053,6058,3,670, - 335,0,6054,6055,5,194,0,0,6055,6056,3,730,365,0,6056,6057,5,19,0, - 0,6057,6059,1,0,0,0,6058,6054,1,0,0,0,6058,6059,1,0,0,0,6059,6087, - 1,0,0,0,6060,6062,5,10,0,0,6061,6063,3,548,274,0,6062,6061,1,0,0, - 0,6062,6063,1,0,0,0,6063,6064,1,0,0,0,6064,6065,5,173,0,0,6065,6066, - 3,662,331,0,6066,6067,5,185,0,0,6067,6068,5,77,0,0,6068,6069,5,119, - 0,0,6069,6073,3,674,337,0,6070,6071,5,188,0,0,6071,6072,5,360,0, - 0,6072,6074,5,882,0,0,6073,6070,1,0,0,0,6073,6074,1,0,0,0,6074,6087, - 1,0,0,0,6075,6077,5,10,0,0,6076,6078,3,548,274,0,6077,6076,1,0,0, - 0,6077,6078,1,0,0,0,6078,6079,1,0,0,0,6079,6080,5,173,0,0,6080,6081, - 3,662,331,0,6081,6082,5,51,0,0,6082,6083,5,77,0,0,6083,6084,5,119, - 0,0,6084,6085,3,670,335,0,6085,6087,1,0,0,0,6086,6038,1,0,0,0,6086, - 6044,1,0,0,0,6086,6060,1,0,0,0,6086,6075,1,0,0,0,6087,539,1,0,0, - 0,6088,6089,5,27,0,0,6089,6090,5,173,0,0,6090,6094,3,660,330,0,6091, - 6093,3,550,275,0,6092,6091,1,0,0,0,6093,6096,1,0,0,0,6094,6092,1, - 0,0,0,6094,6095,1,0,0,0,6095,541,1,0,0,0,6096,6094,1,0,0,0,6097, - 6098,5,329,0,0,6098,6099,5,173,0,0,6099,6101,3,660,330,0,6100,6102, - 7,90,0,0,6101,6100,1,0,0,0,6101,6102,1,0,0,0,6102,543,1,0,0,0,6103, - 6105,5,120,0,0,6104,6106,3,548,274,0,6105,6104,1,0,0,0,6105,6106, - 1,0,0,0,6106,6107,1,0,0,0,6107,6108,7,61,0,0,6108,6109,3,660,330, - 0,6109,545,1,0,0,0,6110,6112,5,562,0,0,6111,6113,3,548,274,0,6112, - 6111,1,0,0,0,6112,6113,1,0,0,0,6113,6114,1,0,0,0,6114,6115,5,173, - 0,0,6115,6117,3,660,330,0,6116,6118,5,549,0,0,6117,6116,1,0,0,0, - 6117,6118,1,0,0,0,6118,6120,1,0,0,0,6119,6121,5,392,0,0,6120,6119, - 1,0,0,0,6120,6121,1,0,0,0,6121,6123,1,0,0,0,6122,6124,5,679,0,0, - 6123,6122,1,0,0,0,6123,6124,1,0,0,0,6124,547,1,0,0,0,6125,6126,7, - 91,0,0,6126,549,1,0,0,0,6127,6128,5,65,0,0,6128,6135,5,677,0,0,6129, - 6135,5,549,0,0,6130,6135,5,396,0,0,6131,6135,5,484,0,0,6132,6135, - 5,392,0,0,6133,6135,5,327,0,0,6134,6127,1,0,0,0,6134,6129,1,0,0, - 0,6134,6130,1,0,0,0,6134,6131,1,0,0,0,6134,6132,1,0,0,0,6134,6133, - 1,0,0,0,6135,551,1,0,0,0,6136,6137,5,432,0,0,6137,6138,5,344,0,0, - 6138,6143,3,722,361,0,6139,6140,5,868,0,0,6140,6142,3,722,361,0, - 6141,6139,1,0,0,0,6142,6145,1,0,0,0,6143,6141,1,0,0,0,6143,6144, - 1,0,0,0,6144,6155,1,0,0,0,6145,6143,1,0,0,0,6146,6147,5,155,0,0, - 6147,6152,3,554,277,0,6148,6149,5,868,0,0,6149,6151,3,554,277,0, - 6150,6148,1,0,0,0,6151,6154,1,0,0,0,6152,6150,1,0,0,0,6152,6153, - 1,0,0,0,6153,6156,1,0,0,0,6154,6152,1,0,0,0,6155,6146,1,0,0,0,6155, - 6156,1,0,0,0,6156,553,1,0,0,0,6157,6158,7,92,0,0,6158,6159,3,718, - 359,0,6159,6160,5,857,0,0,6160,6161,3,822,411,0,6161,555,1,0,0,0, - 6162,6163,5,673,0,0,6163,6164,5,344,0,0,6164,6169,3,722,361,0,6165, - 6166,5,868,0,0,6166,6168,3,722,361,0,6167,6165,1,0,0,0,6168,6171, - 1,0,0,0,6169,6167,1,0,0,0,6169,6170,1,0,0,0,6170,557,1,0,0,0,6171, - 6169,1,0,0,0,6172,6173,5,432,0,0,6173,6174,5,534,0,0,6174,6175,3, - 722,361,0,6175,6176,5,603,0,0,6176,6177,5,882,0,0,6177,559,1,0,0, - 0,6178,6179,5,673,0,0,6179,6180,5,534,0,0,6180,6181,3,722,361,0, - 6181,561,1,0,0,0,6182,6183,5,713,0,0,6183,6184,5,450,0,0,6184,6185, - 5,360,0,0,6185,6187,5,367,0,0,6186,6188,5,857,0,0,6187,6186,1,0, - 0,0,6187,6188,1,0,0,0,6188,6189,1,0,0,0,6189,6213,5,882,0,0,6190, - 6191,5,713,0,0,6191,6192,5,433,0,0,6192,6193,5,68,0,0,6193,6194, - 3,692,346,0,6194,6195,5,423,0,0,6195,6196,5,20,0,0,6196,6203,5,882, - 0,0,6197,6198,5,360,0,0,6198,6200,5,367,0,0,6199,6201,5,857,0,0, - 6200,6199,1,0,0,0,6200,6201,1,0,0,0,6201,6202,1,0,0,0,6202,6204, - 5,882,0,0,6203,6197,1,0,0,0,6203,6204,1,0,0,0,6204,6210,1,0,0,0, - 6205,6207,5,144,0,0,6206,6208,5,502,0,0,6207,6206,1,0,0,0,6207,6208, - 1,0,0,0,6208,6209,1,0,0,0,6209,6211,5,169,0,0,6210,6205,1,0,0,0, - 6210,6211,1,0,0,0,6211,6213,1,0,0,0,6212,6182,1,0,0,0,6212,6190, - 1,0,0,0,6213,563,1,0,0,0,6214,6215,5,155,0,0,6215,6216,3,568,284, - 0,6216,6219,7,93,0,0,6217,6220,3,822,411,0,6218,6220,5,119,0,0,6219, - 6217,1,0,0,0,6219,6218,1,0,0,0,6220,6230,1,0,0,0,6221,6222,5,868, - 0,0,6222,6223,3,568,284,0,6223,6226,7,93,0,0,6224,6227,3,822,411, - 0,6225,6227,5,119,0,0,6226,6224,1,0,0,0,6226,6225,1,0,0,0,6227,6229, - 1,0,0,0,6228,6221,1,0,0,0,6229,6232,1,0,0,0,6230,6228,1,0,0,0,6230, - 6231,1,0,0,0,6231,6267,1,0,0,0,6232,6230,1,0,0,0,6233,6234,5,155, - 0,0,6234,6237,3,58,29,0,6235,6238,3,704,352,0,6236,6238,5,42,0,0, - 6237,6235,1,0,0,0,6237,6236,1,0,0,0,6238,6267,1,0,0,0,6239,6240, - 5,155,0,0,6240,6247,5,497,0,0,6241,6244,3,704,352,0,6242,6243,5, - 28,0,0,6243,6245,3,706,353,0,6244,6242,1,0,0,0,6244,6245,1,0,0,0, - 6245,6248,1,0,0,0,6246,6248,5,42,0,0,6247,6241,1,0,0,0,6247,6246, - 1,0,0,0,6248,6267,1,0,0,0,6249,6267,3,500,250,0,6250,6267,3,352, - 176,0,6251,6267,3,350,175,0,6252,6253,5,155,0,0,6253,6254,3,718, - 359,0,6254,6255,7,93,0,0,6255,6263,3,822,411,0,6256,6257,5,868,0, - 0,6257,6258,3,718,359,0,6258,6259,7,93,0,0,6259,6260,3,822,411,0, - 6260,6262,1,0,0,0,6261,6256,1,0,0,0,6262,6265,1,0,0,0,6263,6261, - 1,0,0,0,6263,6264,1,0,0,0,6264,6267,1,0,0,0,6265,6263,1,0,0,0,6266, - 6214,1,0,0,0,6266,6233,1,0,0,0,6266,6239,1,0,0,0,6266,6249,1,0,0, - 0,6266,6250,1,0,0,0,6266,6251,1,0,0,0,6266,6252,1,0,0,0,6267,565, - 1,0,0,0,6268,6269,5,157,0,0,6269,6270,7,63,0,0,6270,6453,5,452,0, - 0,6271,6272,5,157,0,0,6272,6273,7,94,0,0,6273,6276,5,386,0,0,6274, - 6275,5,80,0,0,6275,6277,5,882,0,0,6276,6274,1,0,0,0,6276,6277,1, - 0,0,0,6277,6280,1,0,0,0,6278,6279,5,68,0,0,6279,6281,3,730,365,0, - 6280,6278,1,0,0,0,6280,6281,1,0,0,0,6281,6289,1,0,0,0,6282,6286, - 5,100,0,0,6283,6284,3,730,365,0,6284,6285,5,868,0,0,6285,6287,1, - 0,0,0,6286,6283,1,0,0,0,6286,6287,1,0,0,0,6287,6288,1,0,0,0,6288, - 6290,3,730,365,0,6289,6282,1,0,0,0,6289,6290,1,0,0,0,6290,6292,1, - 0,0,0,6291,6293,3,400,200,0,6292,6291,1,0,0,0,6292,6293,1,0,0,0, - 6293,6453,1,0,0,0,6294,6295,5,157,0,0,6295,6297,3,570,285,0,6296, - 6298,3,572,286,0,6297,6296,1,0,0,0,6297,6298,1,0,0,0,6298,6453,1, - 0,0,0,6299,6301,5,157,0,0,6300,6302,5,392,0,0,6301,6300,1,0,0,0, - 6301,6302,1,0,0,0,6302,6304,1,0,0,0,6303,6305,5,408,0,0,6304,6303, - 1,0,0,0,6304,6305,1,0,0,0,6305,6306,1,0,0,0,6306,6307,7,47,0,0,6307, - 6308,7,95,0,0,6308,6311,3,662,331,0,6309,6310,7,95,0,0,6310,6312, - 3,638,319,0,6311,6309,1,0,0,0,6311,6312,1,0,0,0,6312,6314,1,0,0, - 0,6313,6315,3,572,286,0,6314,6313,1,0,0,0,6314,6315,1,0,0,0,6315, - 6453,1,0,0,0,6316,6317,5,157,0,0,6317,6318,5,34,0,0,6318,6320,7, - 0,0,0,6319,6321,3,778,389,0,6320,6319,1,0,0,0,6320,6321,1,0,0,0, - 6321,6322,1,0,0,0,6322,6453,3,638,319,0,6323,6324,5,157,0,0,6324, - 6325,5,34,0,0,6325,6326,7,96,0,0,6326,6453,3,718,359,0,6327,6328, - 5,157,0,0,6328,6329,5,34,0,0,6329,6330,5,409,0,0,6330,6453,3,642, - 321,0,6331,6332,5,157,0,0,6332,6333,5,34,0,0,6333,6334,5,684,0,0, - 6334,6453,3,646,323,0,6335,6336,5,157,0,0,6336,6337,5,34,0,0,6337, - 6338,5,173,0,0,6338,6453,3,662,331,0,6339,6340,5,157,0,0,6340,6341, - 5,34,0,0,6341,6342,5,678,0,0,6342,6453,3,700,350,0,6343,6344,5,157, - 0,0,6344,6345,5,380,0,0,6345,6346,3,708,354,0,6346,6347,7,97,0,0, - 6347,6453,1,0,0,0,6348,6349,5,157,0,0,6349,6453,3,574,287,0,6350, - 6351,5,157,0,0,6351,6359,7,98,0,0,6352,6356,5,100,0,0,6353,6354, - 3,730,365,0,6354,6355,5,868,0,0,6355,6357,1,0,0,0,6356,6353,1,0, - 0,0,6356,6357,1,0,0,0,6357,6358,1,0,0,0,6358,6360,3,730,365,0,6359, - 6352,1,0,0,0,6359,6360,1,0,0,0,6360,6453,1,0,0,0,6361,6362,5,157, - 0,0,6362,6363,5,262,0,0,6363,6364,5,866,0,0,6364,6365,5,850,0,0, - 6365,6366,5,867,0,0,6366,6453,7,98,0,0,6367,6368,5,157,0,0,6368, - 6371,3,576,288,0,6369,6370,7,95,0,0,6370,6372,3,638,319,0,6371,6369, - 1,0,0,0,6371,6372,1,0,0,0,6372,6374,1,0,0,0,6373,6375,3,572,286, - 0,6374,6373,1,0,0,0,6374,6375,1,0,0,0,6375,6453,1,0,0,0,6376,6377, - 5,157,0,0,6377,6378,5,132,0,0,6378,6379,5,336,0,0,6379,6453,3,718, - 359,0,6380,6381,5,157,0,0,6381,6382,5,409,0,0,6382,6383,5,336,0, - 0,6383,6453,3,642,321,0,6384,6385,5,157,0,0,6385,6392,5,414,0,0, - 6386,6387,5,65,0,0,6387,6390,3,666,333,0,6388,6389,5,188,0,0,6389, - 6391,3,664,332,0,6390,6388,1,0,0,0,6390,6391,1,0,0,0,6391,6393,1, - 0,0,0,6392,6386,1,0,0,0,6392,6393,1,0,0,0,6393,6453,1,0,0,0,6394, - 6396,5,157,0,0,6395,6397,5,392,0,0,6396,6395,1,0,0,0,6396,6397,1, - 0,0,0,6397,6398,1,0,0,0,6398,6399,7,99,0,0,6399,6400,7,95,0,0,6400, - 6403,3,662,331,0,6401,6402,7,95,0,0,6402,6404,3,638,319,0,6403,6401, - 1,0,0,0,6403,6404,1,0,0,0,6404,6407,1,0,0,0,6405,6406,5,192,0,0, - 6406,6408,3,822,411,0,6407,6405,1,0,0,0,6407,6408,1,0,0,0,6408,6453, - 1,0,0,0,6409,6410,5,157,0,0,6410,6411,5,516,0,0,6411,6414,5,752, - 0,0,6412,6413,7,95,0,0,6413,6415,3,638,319,0,6414,6412,1,0,0,0,6414, - 6415,1,0,0,0,6415,6417,1,0,0,0,6416,6418,3,572,286,0,6417,6416,1, - 0,0,0,6417,6418,1,0,0,0,6418,6453,1,0,0,0,6419,6420,5,157,0,0,6420, - 6429,5,545,0,0,6421,6426,3,578,289,0,6422,6423,5,868,0,0,6423,6425, - 3,578,289,0,6424,6422,1,0,0,0,6425,6428,1,0,0,0,6426,6424,1,0,0, - 0,6426,6427,1,0,0,0,6427,6430,1,0,0,0,6428,6426,1,0,0,0,6429,6421, - 1,0,0,0,6429,6430,1,0,0,0,6430,6434,1,0,0,0,6431,6432,5,65,0,0,6432, - 6433,5,548,0,0,6433,6435,3,730,365,0,6434,6431,1,0,0,0,6434,6435, - 1,0,0,0,6435,6442,1,0,0,0,6436,6437,5,100,0,0,6437,6440,3,730,365, - 0,6438,6439,5,509,0,0,6439,6441,3,730,365,0,6440,6438,1,0,0,0,6440, - 6441,1,0,0,0,6441,6443,1,0,0,0,6442,6436,1,0,0,0,6442,6443,1,0,0, - 0,6443,6453,1,0,0,0,6444,6445,5,157,0,0,6445,6446,7,64,0,0,6446, - 6448,5,645,0,0,6447,6449,3,400,200,0,6448,6447,1,0,0,0,6448,6449, - 1,0,0,0,6449,6453,1,0,0,0,6450,6451,5,157,0,0,6451,6453,5,564,0, - 0,6452,6268,1,0,0,0,6452,6271,1,0,0,0,6452,6294,1,0,0,0,6452,6299, - 1,0,0,0,6452,6316,1,0,0,0,6452,6323,1,0,0,0,6452,6327,1,0,0,0,6452, - 6331,1,0,0,0,6452,6335,1,0,0,0,6452,6339,1,0,0,0,6452,6343,1,0,0, - 0,6452,6348,1,0,0,0,6452,6350,1,0,0,0,6452,6361,1,0,0,0,6452,6367, - 1,0,0,0,6452,6376,1,0,0,0,6452,6380,1,0,0,0,6452,6384,1,0,0,0,6452, - 6394,1,0,0,0,6452,6409,1,0,0,0,6452,6419,1,0,0,0,6452,6444,1,0,0, - 0,6452,6450,1,0,0,0,6453,567,1,0,0,0,6454,6465,5,892,0,0,6455,6465, - 5,893,0,0,6456,6457,5,870,0,0,6457,6459,5,870,0,0,6458,6456,1,0, - 0,0,6458,6459,1,0,0,0,6459,6460,1,0,0,0,6460,6462,7,100,0,0,6461, - 6458,1,0,0,0,6461,6462,1,0,0,0,6462,6463,1,0,0,0,6463,6465,3,722, - 361,0,6464,6454,1,0,0,0,6464,6455,1,0,0,0,6464,6461,1,0,0,0,6465, - 569,1,0,0,0,6466,6467,5,26,0,0,6467,6481,5,155,0,0,6468,6481,5,823, - 0,0,6469,6481,5,824,0,0,6470,6481,5,40,0,0,6471,6481,5,153,0,0,6472, - 6473,5,409,0,0,6473,6481,5,645,0,0,6474,6475,5,132,0,0,6475,6481, - 5,645,0,0,6476,6478,7,62,0,0,6477,6476,1,0,0,0,6477,6478,1,0,0,0, - 6478,6479,1,0,0,0,6479,6481,7,101,0,0,6480,6466,1,0,0,0,6480,6468, - 1,0,0,0,6480,6469,1,0,0,0,6480,6470,1,0,0,0,6480,6471,1,0,0,0,6480, - 6472,1,0,0,0,6480,6474,1,0,0,0,6480,6477,1,0,0,0,6481,571,1,0,0, - 0,6482,6483,5,99,0,0,6483,6487,5,882,0,0,6484,6485,5,192,0,0,6485, - 6487,3,822,411,0,6486,6482,1,0,0,0,6486,6484,1,0,0,0,6487,573,1, - 0,0,0,6488,6490,5,647,0,0,6489,6488,1,0,0,0,6489,6490,1,0,0,0,6490, - 6491,1,0,0,0,6491,6506,5,381,0,0,6492,6493,5,453,0,0,6493,6506,5, - 645,0,0,6494,6506,5,536,0,0,6495,6506,5,734,0,0,6496,6498,5,408, - 0,0,6497,6496,1,0,0,0,6497,6498,1,0,0,0,6498,6499,1,0,0,0,6499,6506, - 5,544,0,0,6500,6506,5,546,0,0,6501,6502,5,598,0,0,6502,6506,5,422, - 0,0,6503,6506,5,312,0,0,6504,6506,5,356,0,0,6505,6489,1,0,0,0,6505, - 6492,1,0,0,0,6505,6494,1,0,0,0,6505,6495,1,0,0,0,6505,6497,1,0,0, - 0,6505,6500,1,0,0,0,6505,6501,1,0,0,0,6505,6503,1,0,0,0,6505,6504, - 1,0,0,0,6506,575,1,0,0,0,6507,6519,5,386,0,0,6508,6509,5,173,0,0, - 6509,6519,5,645,0,0,6510,6512,5,392,0,0,6511,6510,1,0,0,0,6511,6512, - 1,0,0,0,6512,6514,1,0,0,0,6513,6515,5,408,0,0,6514,6513,1,0,0,0, - 6514,6515,1,0,0,0,6515,6516,1,0,0,0,6516,6519,5,752,0,0,6517,6519, - 5,667,0,0,6518,6507,1,0,0,0,6518,6508,1,0,0,0,6518,6511,1,0,0,0, - 6518,6517,1,0,0,0,6519,577,1,0,0,0,6520,6533,5,7,0,0,6521,6522,5, - 320,0,0,6522,6533,5,437,0,0,6523,6524,5,355,0,0,6524,6533,5,656, - 0,0,6525,6533,5,358,0,0,6526,6533,5,439,0,0,6527,6533,5,802,0,0, - 6528,6529,5,521,0,0,6529,6533,5,397,0,0,6530,6533,5,605,0,0,6531, - 6533,5,655,0,0,6532,6520,1,0,0,0,6532,6521,1,0,0,0,6532,6523,1,0, - 0,0,6532,6525,1,0,0,0,6532,6526,1,0,0,0,6532,6527,1,0,0,0,6532,6528, - 1,0,0,0,6532,6530,1,0,0,0,6532,6531,1,0,0,0,6533,579,1,0,0,0,6534, - 6535,5,318,0,0,6535,6536,5,882,0,0,6536,581,1,0,0,0,6537,6538,5, - 324,0,0,6538,6556,5,82,0,0,6539,6544,3,602,301,0,6540,6541,5,868, - 0,0,6541,6543,3,602,301,0,6542,6540,1,0,0,0,6543,6546,1,0,0,0,6544, - 6542,1,0,0,0,6544,6545,1,0,0,0,6545,6557,1,0,0,0,6546,6544,1,0,0, - 0,6547,6548,3,662,331,0,6548,6549,5,130,0,0,6549,6552,5,866,0,0, - 6550,6553,3,686,343,0,6551,6553,5,7,0,0,6552,6550,1,0,0,0,6552,6551, - 1,0,0,0,6553,6554,1,0,0,0,6554,6555,5,867,0,0,6555,6557,1,0,0,0, - 6556,6539,1,0,0,0,6556,6547,1,0,0,0,6557,6558,1,0,0,0,6558,6559, - 5,80,0,0,6559,6560,3,638,319,0,6560,583,1,0,0,0,6561,6563,5,404, - 0,0,6562,6564,3,548,274,0,6563,6562,1,0,0,0,6563,6564,1,0,0,0,6564, - 6565,1,0,0,0,6565,6570,3,604,302,0,6566,6567,5,868,0,0,6567,6569, - 3,604,302,0,6568,6566,1,0,0,0,6569,6572,1,0,0,0,6570,6568,1,0,0, - 0,6570,6571,1,0,0,0,6571,585,1,0,0,0,6572,6570,1,0,0,0,6573,6575, - 5,94,0,0,6574,6576,7,102,0,0,6575,6574,1,0,0,0,6575,6576,1,0,0,0, - 6576,6577,1,0,0,0,6577,6578,3,822,411,0,6578,587,1,0,0,0,6579,6580, - 5,103,0,0,6580,6581,5,82,0,0,6581,6582,5,88,0,0,6582,6583,5,324, - 0,0,6583,6588,3,608,304,0,6584,6585,5,868,0,0,6585,6587,3,608,304, - 0,6586,6584,1,0,0,0,6587,6590,1,0,0,0,6588,6586,1,0,0,0,6588,6589, - 1,0,0,0,6589,589,1,0,0,0,6590,6588,1,0,0,0,6591,6592,5,575,0,0,6592, - 6597,3,592,296,0,6593,6594,5,868,0,0,6594,6596,3,592,296,0,6595, - 6593,1,0,0,0,6596,6599,1,0,0,0,6597,6595,1,0,0,0,6597,6598,1,0,0, - 0,6598,591,1,0,0,0,6599,6597,1,0,0,0,6600,6606,5,453,0,0,6601,6606, - 5,563,0,0,6602,6603,5,548,0,0,6603,6606,5,324,0,0,6604,6606,5,598, - 0,0,6605,6600,1,0,0,0,6605,6601,1,0,0,0,6605,6602,1,0,0,0,6605,6604, - 1,0,0,0,6606,593,1,0,0,0,6607,6608,5,575,0,0,6608,6613,5,531,0,0, - 6609,6611,3,776,388,0,6610,6609,1,0,0,0,6610,6611,1,0,0,0,6611,6612, - 1,0,0,0,6612,6614,3,722,361,0,6613,6610,1,0,0,0,6613,6614,1,0,0, - 0,6614,595,1,0,0,0,6615,6616,5,575,0,0,6616,6618,7,64,0,0,6617,6619, - 5,7,0,0,6618,6617,1,0,0,0,6618,6619,1,0,0,0,6619,6621,1,0,0,0,6620, - 6622,3,400,200,0,6621,6620,1,0,0,0,6621,6622,1,0,0,0,6622,597,1, - 0,0,0,6623,6624,5,576,0,0,6624,599,1,0,0,0,6625,6626,5,749,0,0,6626, - 601,1,0,0,0,6627,6633,3,662,331,0,6628,6629,7,19,0,0,6629,6630,5, - 866,0,0,6630,6631,3,650,325,0,6631,6632,5,867,0,0,6632,6634,1,0, - 0,0,6633,6628,1,0,0,0,6633,6634,1,0,0,0,6634,603,1,0,0,0,6635,6654, - 5,366,0,0,6636,6654,5,422,0,0,6637,6639,7,103,0,0,6638,6637,1,0, - 0,0,6638,6639,1,0,0,0,6639,6640,1,0,0,0,6640,6654,5,452,0,0,6641, - 6654,5,517,0,0,6642,6654,5,734,0,0,6643,6644,5,548,0,0,6644,6654, - 5,324,0,0,6645,6654,5,645,0,0,6646,6654,5,680,0,0,6647,6651,5,752, - 0,0,6648,6649,5,194,0,0,6649,6650,5,135,0,0,6650,6652,5,104,0,0, - 6651,6648,1,0,0,0,6651,6652,1,0,0,0,6652,6654,1,0,0,0,6653,6635, - 1,0,0,0,6653,6636,1,0,0,0,6653,6638,1,0,0,0,6653,6641,1,0,0,0,6653, - 6642,1,0,0,0,6653,6643,1,0,0,0,6653,6645,1,0,0,0,6653,6646,1,0,0, - 0,6653,6647,1,0,0,0,6654,6668,1,0,0,0,6655,6656,5,556,0,0,6656,6658, - 5,452,0,0,6657,6659,3,400,200,0,6658,6657,1,0,0,0,6658,6659,1,0, - 0,0,6659,6668,1,0,0,0,6660,6662,7,61,0,0,6661,6663,3,660,330,0,6662, - 6661,1,0,0,0,6662,6663,1,0,0,0,6663,6665,1,0,0,0,6664,6666,3,606, - 303,0,6665,6664,1,0,0,0,6665,6666,1,0,0,0,6666,6668,1,0,0,0,6667, - 6653,1,0,0,0,6667,6655,1,0,0,0,6667,6660,1,0,0,0,6668,605,1,0,0, - 0,6669,6670,5,194,0,0,6670,6671,5,135,0,0,6671,6675,5,104,0,0,6672, - 6673,5,65,0,0,6673,6675,5,391,0,0,6674,6669,1,0,0,0,6674,6672,1, - 0,0,0,6675,607,1,0,0,0,6676,6684,3,662,331,0,6677,6678,5,130,0,0, - 6678,6681,5,866,0,0,6679,6682,3,686,343,0,6680,6682,5,7,0,0,6681, - 6679,1,0,0,0,6681,6680,1,0,0,0,6682,6683,1,0,0,0,6683,6685,5,867, - 0,0,6684,6677,1,0,0,0,6684,6685,1,0,0,0,6685,6693,1,0,0,0,6686,6688, - 7,19,0,0,6687,6686,1,0,0,0,6687,6688,1,0,0,0,6688,6689,1,0,0,0,6689, - 6690,5,866,0,0,6690,6691,3,650,325,0,6691,6692,5,867,0,0,6692,6694, - 1,0,0,0,6693,6687,1,0,0,0,6693,6694,1,0,0,0,6694,6697,1,0,0,0,6695, - 6696,5,79,0,0,6696,6698,5,446,0,0,6697,6695,1,0,0,0,6697,6698,1, - 0,0,0,6698,609,1,0,0,0,6699,6700,7,104,0,0,6700,6703,3,662,331,0, - 6701,6704,3,674,337,0,6702,6704,5,882,0,0,6703,6701,1,0,0,0,6703, - 6702,1,0,0,0,6703,6704,1,0,0,0,6704,611,1,0,0,0,6705,6711,7,104, - 0,0,6706,6712,5,392,0,0,6707,6712,5,528,0,0,6708,6709,5,826,0,0, - 6709,6710,5,857,0,0,6710,6712,7,105,0,0,6711,6706,1,0,0,0,6711,6707, - 1,0,0,0,6711,6708,1,0,0,0,6711,6712,1,0,0,0,6712,6713,1,0,0,0,6713, - 6714,3,634,317,0,6714,613,1,0,0,0,6715,6716,7,104,0,0,6716,6720, - 5,10,0,0,6717,6718,5,826,0,0,6718,6719,5,857,0,0,6719,6721,5,666, - 0,0,6720,6717,1,0,0,0,6720,6721,1,0,0,0,6721,6722,1,0,0,0,6722,6723, - 3,210,105,0,6723,615,1,0,0,0,6724,6725,5,419,0,0,6725,6726,5,882, - 0,0,6726,617,1,0,0,0,6727,6728,5,187,0,0,6728,6729,3,638,319,0,6729, - 619,1,0,0,0,6730,6738,5,158,0,0,6731,6733,5,164,0,0,6732,6734,5, - 682,0,0,6733,6732,1,0,0,0,6733,6734,1,0,0,0,6734,6735,1,0,0,0,6735, - 6739,3,734,367,0,6736,6739,5,889,0,0,6737,6739,5,890,0,0,6738,6731, - 1,0,0,0,6738,6736,1,0,0,0,6738,6737,1,0,0,0,6739,6749,1,0,0,0,6740, - 6741,5,155,0,0,6741,6746,3,624,312,0,6742,6743,5,868,0,0,6743,6745, - 3,624,312,0,6744,6742,1,0,0,0,6745,6748,1,0,0,0,6746,6744,1,0,0, - 0,6746,6747,1,0,0,0,6747,6750,1,0,0,0,6748,6746,1,0,0,0,6749,6740, - 1,0,0,0,6749,6750,1,0,0,0,6750,621,1,0,0,0,6751,6759,5,145,0,0,6752, - 6754,5,164,0,0,6753,6755,5,682,0,0,6754,6753,1,0,0,0,6754,6755,1, - 0,0,0,6755,6756,1,0,0,0,6756,6760,3,734,367,0,6757,6760,5,889,0, - 0,6758,6760,5,890,0,0,6759,6752,1,0,0,0,6759,6757,1,0,0,0,6759,6758, - 1,0,0,0,6759,6760,1,0,0,0,6760,6770,1,0,0,0,6761,6762,5,155,0,0, - 6762,6767,3,624,312,0,6763,6764,5,868,0,0,6764,6766,3,624,312,0, - 6765,6763,1,0,0,0,6766,6769,1,0,0,0,6767,6765,1,0,0,0,6767,6768, - 1,0,0,0,6768,6771,1,0,0,0,6769,6767,1,0,0,0,6770,6761,1,0,0,0,6770, - 6771,1,0,0,0,6771,623,1,0,0,0,6772,6773,7,106,0,0,6773,6778,5,857, - 0,0,6774,6779,3,734,367,0,6775,6779,5,883,0,0,6776,6779,3,702,351, - 0,6777,6779,3,724,362,0,6778,6774,1,0,0,0,6778,6775,1,0,0,0,6778, - 6776,1,0,0,0,6778,6777,1,0,0,0,6779,625,1,0,0,0,6780,6782,5,194, - 0,0,6781,6783,5,552,0,0,6782,6781,1,0,0,0,6782,6783,1,0,0,0,6783, - 6784,1,0,0,0,6784,6789,3,52,26,0,6785,6786,5,868,0,0,6786,6788,3, - 52,26,0,6787,6785,1,0,0,0,6788,6791,1,0,0,0,6789,6787,1,0,0,0,6789, - 6790,1,0,0,0,6790,627,1,0,0,0,6791,6789,1,0,0,0,6792,6793,5,173, - 0,0,6793,6795,3,662,331,0,6794,6796,3,258,129,0,6795,6794,1,0,0, - 0,6795,6796,1,0,0,0,6796,6798,1,0,0,0,6797,6799,3,328,164,0,6798, - 6797,1,0,0,0,6798,6799,1,0,0,0,6799,629,1,0,0,0,6800,6802,5,72,0, - 0,6801,6803,7,107,0,0,6802,6801,1,0,0,0,6802,6803,1,0,0,0,6803,6804, - 1,0,0,0,6804,6836,5,48,0,0,6805,6806,3,568,284,0,6806,6807,5,857, - 0,0,6807,6815,7,108,0,0,6808,6809,5,868,0,0,6809,6810,3,568,284, - 0,6810,6811,5,857,0,0,6811,6812,7,108,0,0,6812,6814,1,0,0,0,6813, - 6808,1,0,0,0,6814,6817,1,0,0,0,6815,6813,1,0,0,0,6815,6816,1,0,0, - 0,6816,6837,1,0,0,0,6817,6815,1,0,0,0,6818,6821,5,30,0,0,6819,6822, - 3,730,365,0,6820,6822,3,568,284,0,6821,6819,1,0,0,0,6821,6820,1, - 0,0,0,6822,6823,1,0,0,0,6823,6824,3,568,284,0,6824,6825,5,857,0, - 0,6825,6833,3,632,316,0,6826,6827,5,868,0,0,6827,6828,3,568,284, - 0,6828,6829,5,857,0,0,6829,6830,3,632,316,0,6830,6832,1,0,0,0,6831, - 6826,1,0,0,0,6832,6835,1,0,0,0,6833,6831,1,0,0,0,6833,6834,1,0,0, - 0,6834,6837,1,0,0,0,6835,6833,1,0,0,0,6836,6805,1,0,0,0,6836,6818, - 1,0,0,0,6837,631,1,0,0,0,6838,6839,7,109,0,0,6839,633,1,0,0,0,6840, - 6846,3,210,105,0,6841,6846,3,186,93,0,6842,6846,3,192,96,0,6843, - 6846,3,208,104,0,6844,6846,3,220,110,0,6845,6840,1,0,0,0,6845,6841, - 1,0,0,0,6845,6842,1,0,0,0,6845,6843,1,0,0,0,6845,6844,1,0,0,0,6846, - 6851,1,0,0,0,6847,6848,5,65,0,0,6848,6849,5,349,0,0,6849,6851,3, - 722,361,0,6850,6845,1,0,0,0,6850,6847,1,0,0,0,6851,635,1,0,0,0,6852, - 6853,3,718,359,0,6853,637,1,0,0,0,6854,6855,3,718,359,0,6855,639, - 1,0,0,0,6856,6857,3,718,359,0,6857,641,1,0,0,0,6858,6859,3,718,359, - 0,6859,643,1,0,0,0,6860,6861,3,718,359,0,6861,645,1,0,0,0,6862,6863, - 3,718,359,0,6863,647,1,0,0,0,6864,6865,3,722,361,0,6865,649,1,0, - 0,0,6866,6871,3,652,326,0,6867,6868,5,868,0,0,6868,6870,3,652,326, - 0,6869,6867,1,0,0,0,6870,6873,1,0,0,0,6871,6869,1,0,0,0,6871,6872, - 1,0,0,0,6872,651,1,0,0,0,6873,6871,1,0,0,0,6874,6875,3,722,361,0, - 6875,653,1,0,0,0,6876,6877,3,722,361,0,6877,655,1,0,0,0,6878,6879, - 3,722,361,0,6879,657,1,0,0,0,6880,6881,3,718,359,0,6881,659,1,0, - 0,0,6882,6887,3,662,331,0,6883,6884,5,868,0,0,6884,6886,3,662,331, - 0,6885,6883,1,0,0,0,6886,6889,1,0,0,0,6887,6885,1,0,0,0,6887,6888, - 1,0,0,0,6888,661,1,0,0,0,6889,6887,1,0,0,0,6890,6891,3,718,359,0, - 6891,663,1,0,0,0,6892,6897,3,666,333,0,6893,6894,5,868,0,0,6894, - 6896,3,666,333,0,6895,6893,1,0,0,0,6896,6899,1,0,0,0,6897,6895,1, - 0,0,0,6897,6898,1,0,0,0,6898,665,1,0,0,0,6899,6897,1,0,0,0,6900, - 6903,3,700,350,0,6901,6903,3,722,361,0,6902,6900,1,0,0,0,6902,6901, - 1,0,0,0,6903,667,1,0,0,0,6904,6909,3,722,361,0,6905,6907,3,726,363, - 0,6906,6908,3,726,363,0,6907,6906,1,0,0,0,6907,6908,1,0,0,0,6908, - 6910,1,0,0,0,6909,6905,1,0,0,0,6909,6910,1,0,0,0,6910,6919,1,0,0, - 0,6911,6913,9,0,0,0,6912,6911,1,0,0,0,6912,6913,1,0,0,0,6913,6914, - 1,0,0,0,6914,6916,3,726,363,0,6915,6917,3,726,363,0,6916,6915,1, - 0,0,0,6916,6917,1,0,0,0,6917,6919,1,0,0,0,6918,6904,1,0,0,0,6918, - 6912,1,0,0,0,6919,669,1,0,0,0,6920,6925,3,674,337,0,6921,6922,5, - 868,0,0,6922,6924,3,674,337,0,6923,6921,1,0,0,0,6924,6927,1,0,0, - 0,6925,6923,1,0,0,0,6925,6926,1,0,0,0,6926,671,1,0,0,0,6927,6925, - 1,0,0,0,6928,6929,1,0,0,0,6929,673,1,0,0,0,6930,6935,3,722,361,0, - 6931,6933,3,728,364,0,6932,6934,3,728,364,0,6933,6932,1,0,0,0,6933, - 6934,1,0,0,0,6934,6936,1,0,0,0,6935,6931,1,0,0,0,6935,6936,1,0,0, - 0,6936,6947,1,0,0,0,6937,6939,9,0,0,0,6938,6937,1,0,0,0,6938,6939, - 1,0,0,0,6939,6940,1,0,0,0,6940,6942,3,726,363,0,6941,6943,3,726, - 363,0,6942,6941,1,0,0,0,6942,6943,1,0,0,0,6943,6947,1,0,0,0,6944, - 6945,4,337,3,0,6945,6947,3,672,336,0,6946,6930,1,0,0,0,6946,6938, - 1,0,0,0,6946,6944,1,0,0,0,6947,675,1,0,0,0,6948,6953,3,722,361,0, - 6949,6951,3,726,363,0,6950,6952,3,726,363,0,6951,6950,1,0,0,0,6951, - 6952,1,0,0,0,6952,6954,1,0,0,0,6953,6949,1,0,0,0,6953,6954,1,0,0, - 0,6954,6963,1,0,0,0,6955,6957,9,0,0,0,6956,6955,1,0,0,0,6956,6957, - 1,0,0,0,6957,6958,1,0,0,0,6958,6960,3,726,363,0,6959,6961,3,726, - 363,0,6960,6959,1,0,0,0,6960,6961,1,0,0,0,6961,6963,1,0,0,0,6962, - 6948,1,0,0,0,6962,6956,1,0,0,0,6963,677,1,0,0,0,6964,6965,4,339, - 4,0,6965,6974,3,672,336,0,6966,6971,3,722,361,0,6967,6969,3,728, - 364,0,6968,6970,3,728,364,0,6969,6968,1,0,0,0,6969,6970,1,0,0,0, - 6970,6972,1,0,0,0,6971,6967,1,0,0,0,6971,6972,1,0,0,0,6972,6974, - 1,0,0,0,6973,6964,1,0,0,0,6973,6966,1,0,0,0,6974,679,1,0,0,0,6975, - 6976,3,722,361,0,6976,681,1,0,0,0,6977,6978,3,722,361,0,6978,683, - 1,0,0,0,6979,6980,3,722,361,0,6980,685,1,0,0,0,6981,6986,3,688,344, - 0,6982,6983,5,868,0,0,6983,6985,3,688,344,0,6984,6982,1,0,0,0,6985, - 6988,1,0,0,0,6986,6984,1,0,0,0,6986,6987,1,0,0,0,6987,687,1,0,0, - 0,6988,6986,1,0,0,0,6989,6990,3,722,361,0,6990,689,1,0,0,0,6991, - 6996,3,722,361,0,6992,6993,5,866,0,0,6993,6994,3,730,365,0,6994, - 6995,5,867,0,0,6995,6997,1,0,0,0,6996,6992,1,0,0,0,6996,6997,1,0, - 0,0,6997,7000,1,0,0,0,6998,7000,3,822,411,0,6999,6991,1,0,0,0,6999, - 6998,1,0,0,0,7000,7002,1,0,0,0,7001,7003,7,55,0,0,7002,7001,1,0, - 0,0,7002,7003,1,0,0,0,7003,691,1,0,0,0,7004,7005,3,694,347,0,7005, - 7006,5,878,0,0,7006,7007,3,730,365,0,7007,693,1,0,0,0,7008,7009, - 3,696,348,0,7009,7010,5,891,0,0,7010,695,1,0,0,0,7011,7016,5,882, - 0,0,7012,7016,5,889,0,0,7013,7016,5,704,0,0,7014,7016,3,852,426, - 0,7015,7011,1,0,0,0,7015,7012,1,0,0,0,7015,7013,1,0,0,0,7015,7014, - 1,0,0,0,7016,697,1,0,0,0,7017,7018,7,110,0,0,7018,699,1,0,0,0,7019, - 7021,3,696,348,0,7020,7022,3,698,349,0,7021,7020,1,0,0,0,7021,7022, - 1,0,0,0,7022,7025,1,0,0,0,7023,7025,3,60,30,0,7024,7019,1,0,0,0, - 7024,7023,1,0,0,0,7025,701,1,0,0,0,7026,7027,7,111,0,0,7027,703, - 1,0,0,0,7028,7033,5,228,0,0,7029,7033,3,842,421,0,7030,7033,5,882, - 0,0,7031,7033,5,879,0,0,7032,7028,1,0,0,0,7032,7029,1,0,0,0,7032, - 7030,1,0,0,0,7032,7031,1,0,0,0,7033,705,1,0,0,0,7034,7035,3,722, - 361,0,7035,707,1,0,0,0,7036,7040,3,710,355,0,7037,7040,5,889,0,0, - 7038,7040,5,882,0,0,7039,7036,1,0,0,0,7039,7037,1,0,0,0,7039,7038, - 1,0,0,0,7040,709,1,0,0,0,7041,7042,7,112,0,0,7042,711,1,0,0,0,7043, - 7044,3,730,365,0,7044,7045,5,854,0,0,7045,7046,3,730,365,0,7046, - 7047,5,854,0,0,7047,7048,3,730,365,0,7048,7049,5,854,0,0,7049,7050, - 3,730,365,0,7050,7051,5,854,0,0,7051,7057,3,730,365,0,7052,7053, - 5,878,0,0,7053,7054,3,730,365,0,7054,7055,5,854,0,0,7055,7056,3, - 730,365,0,7056,7058,1,0,0,0,7057,7052,1,0,0,0,7058,7059,1,0,0,0, - 7059,7057,1,0,0,0,7059,7060,1,0,0,0,7060,713,1,0,0,0,7061,7068,3, - 716,358,0,7062,7063,5,868,0,0,7063,7066,3,716,358,0,7064,7065,5, - 868,0,0,7065,7067,3,730,365,0,7066,7064,1,0,0,0,7066,7067,1,0,0, - 0,7067,7069,1,0,0,0,7068,7062,1,0,0,0,7068,7069,1,0,0,0,7069,715, - 1,0,0,0,7070,7078,5,882,0,0,7071,7078,5,887,0,0,7072,7074,5,884, - 0,0,7073,7072,1,0,0,0,7074,7075,1,0,0,0,7075,7073,1,0,0,0,7075,7076, - 1,0,0,0,7076,7078,1,0,0,0,7077,7070,1,0,0,0,7077,7071,1,0,0,0,7077, - 7073,1,0,0,0,7078,717,1,0,0,0,7079,7081,3,722,361,0,7080,7082,3, - 726,363,0,7081,7080,1,0,0,0,7081,7082,1,0,0,0,7082,719,1,0,0,0,7083, - 7088,3,722,361,0,7084,7085,5,868,0,0,7085,7087,3,722,361,0,7086, - 7084,1,0,0,0,7087,7090,1,0,0,0,7088,7086,1,0,0,0,7088,7089,1,0,0, - 0,7089,721,1,0,0,0,7090,7088,1,0,0,0,7091,7095,3,724,362,0,7092, - 7095,5,879,0,0,7093,7095,5,882,0,0,7094,7091,1,0,0,0,7094,7092,1, - 0,0,0,7094,7093,1,0,0,0,7095,723,1,0,0,0,7096,7106,5,889,0,0,7097, - 7106,3,842,421,0,7098,7106,3,844,422,0,7099,7106,3,710,355,0,7100, - 7106,3,846,423,0,7101,7106,3,848,424,0,7102,7106,3,850,425,0,7103, - 7106,3,852,426,0,7104,7106,3,814,407,0,7105,7096,1,0,0,0,7105,7097, - 1,0,0,0,7105,7098,1,0,0,0,7105,7099,1,0,0,0,7105,7100,1,0,0,0,7105, - 7101,1,0,0,0,7105,7102,1,0,0,0,7105,7103,1,0,0,0,7105,7104,1,0,0, - 0,7106,725,1,0,0,0,7107,7108,5,865,0,0,7108,7112,5,889,0,0,7109, - 7110,5,865,0,0,7110,7112,3,722,361,0,7111,7107,1,0,0,0,7111,7109, - 1,0,0,0,7112,727,1,0,0,0,7113,7114,5,865,0,0,7114,7121,5,889,0,0, - 7115,7116,5,865,0,0,7116,7121,3,722,361,0,7117,7118,4,364,5,0,7118, - 7119,5,865,0,0,7119,7121,3,672,336,0,7120,7113,1,0,0,0,7120,7115, - 1,0,0,0,7120,7117,1,0,0,0,7121,729,1,0,0,0,7122,7123,7,113,0,0,7123, - 731,1,0,0,0,7124,7127,5,880,0,0,7125,7127,3,730,365,0,7126,7124, - 1,0,0,0,7126,7125,1,0,0,0,7127,733,1,0,0,0,7128,7130,5,888,0,0,7129, - 7128,1,0,0,0,7129,7130,1,0,0,0,7130,7131,1,0,0,0,7131,7134,5,882, - 0,0,7132,7134,5,881,0,0,7133,7129,1,0,0,0,7133,7132,1,0,0,0,7134, - 7136,1,0,0,0,7135,7137,5,882,0,0,7136,7135,1,0,0,0,7137,7138,1,0, - 0,0,7138,7136,1,0,0,0,7138,7139,1,0,0,0,7139,7152,1,0,0,0,7140,7142, - 5,888,0,0,7141,7140,1,0,0,0,7141,7142,1,0,0,0,7142,7143,1,0,0,0, - 7143,7146,5,882,0,0,7144,7146,5,881,0,0,7145,7141,1,0,0,0,7145,7144, - 1,0,0,0,7146,7149,1,0,0,0,7147,7148,5,28,0,0,7148,7150,3,706,353, - 0,7149,7147,1,0,0,0,7149,7150,1,0,0,0,7150,7152,1,0,0,0,7151,7133, - 1,0,0,0,7151,7145,1,0,0,0,7152,735,1,0,0,0,7153,7154,7,114,0,0,7154, - 737,1,0,0,0,7155,7157,5,888,0,0,7156,7155,1,0,0,0,7156,7157,1,0, - 0,0,7157,7158,1,0,0,0,7158,7159,5,884,0,0,7159,739,1,0,0,0,7160, - 7162,5,114,0,0,7161,7160,1,0,0,0,7161,7162,1,0,0,0,7162,7163,1,0, - 0,0,7163,7164,7,115,0,0,7164,741,1,0,0,0,7165,7178,3,734,367,0,7166, - 7178,3,730,365,0,7167,7168,5,854,0,0,7168,7178,3,730,365,0,7169, - 7178,3,738,369,0,7170,7178,3,736,368,0,7171,7178,5,885,0,0,7172, - 7178,5,887,0,0,7173,7175,5,114,0,0,7174,7173,1,0,0,0,7174,7175,1, - 0,0,0,7175,7176,1,0,0,0,7176,7178,7,115,0,0,7177,7165,1,0,0,0,7177, - 7166,1,0,0,0,7177,7167,1,0,0,0,7177,7169,1,0,0,0,7177,7170,1,0,0, - 0,7177,7171,1,0,0,0,7177,7172,1,0,0,0,7177,7174,1,0,0,0,7178,743, - 1,0,0,0,7179,7181,7,116,0,0,7180,7182,5,240,0,0,7181,7180,1,0,0, - 0,7181,7182,1,0,0,0,7182,7184,1,0,0,0,7183,7185,3,750,375,0,7184, - 7183,1,0,0,0,7184,7185,1,0,0,0,7185,7187,1,0,0,0,7186,7188,5,228, - 0,0,7187,7186,1,0,0,0,7187,7188,1,0,0,0,7188,7192,1,0,0,0,7189,7190, - 3,58,29,0,7190,7191,3,704,352,0,7191,7193,1,0,0,0,7192,7189,1,0, - 0,0,7192,7193,1,0,0,0,7193,7197,1,0,0,0,7194,7195,5,28,0,0,7195, - 7198,3,706,353,0,7196,7198,5,228,0,0,7197,7194,1,0,0,0,7197,7196, - 1,0,0,0,7197,7198,1,0,0,0,7198,7306,1,0,0,0,7199,7200,5,227,0,0, - 7200,7201,7,117,0,0,7201,7203,5,240,0,0,7202,7204,3,750,375,0,7203, - 7202,1,0,0,0,7203,7204,1,0,0,0,7204,7206,1,0,0,0,7205,7207,5,228, - 0,0,7206,7205,1,0,0,0,7206,7207,1,0,0,0,7207,7306,1,0,0,0,7208,7209, - 5,227,0,0,7209,7211,7,118,0,0,7210,7212,3,750,375,0,7211,7210,1, - 0,0,0,7211,7212,1,0,0,0,7212,7214,1,0,0,0,7213,7215,5,228,0,0,7214, - 7213,1,0,0,0,7214,7215,1,0,0,0,7215,7306,1,0,0,0,7216,7217,5,498, - 0,0,7217,7219,5,225,0,0,7218,7220,3,750,375,0,7219,7218,1,0,0,0, - 7219,7220,1,0,0,0,7220,7222,1,0,0,0,7221,7223,5,228,0,0,7222,7221, - 1,0,0,0,7222,7223,1,0,0,0,7223,7306,1,0,0,0,7224,7226,7,119,0,0, - 7225,7227,3,750,375,0,7226,7225,1,0,0,0,7226,7227,1,0,0,0,7227,7231, - 1,0,0,0,7228,7230,7,120,0,0,7229,7228,1,0,0,0,7230,7233,1,0,0,0, - 7231,7229,1,0,0,0,7231,7232,1,0,0,0,7232,7306,1,0,0,0,7233,7231, - 1,0,0,0,7234,7236,5,210,0,0,7235,7237,3,752,376,0,7236,7235,1,0, - 0,0,7236,7237,1,0,0,0,7237,7241,1,0,0,0,7238,7240,7,120,0,0,7239, - 7238,1,0,0,0,7240,7243,1,0,0,0,7241,7239,1,0,0,0,7241,7242,1,0,0, - 0,7242,7306,1,0,0,0,7243,7241,1,0,0,0,7244,7246,5,211,0,0,7245,7247, - 5,212,0,0,7246,7245,1,0,0,0,7246,7247,1,0,0,0,7247,7249,1,0,0,0, - 7248,7250,3,752,376,0,7249,7248,1,0,0,0,7249,7250,1,0,0,0,7250,7254, - 1,0,0,0,7251,7253,7,120,0,0,7252,7251,1,0,0,0,7253,7256,1,0,0,0, - 7254,7252,1,0,0,0,7254,7255,1,0,0,0,7255,7306,1,0,0,0,7256,7254, - 1,0,0,0,7257,7259,7,121,0,0,7258,7260,3,754,377,0,7259,7258,1,0, - 0,0,7259,7260,1,0,0,0,7260,7264,1,0,0,0,7261,7263,7,120,0,0,7262, - 7261,1,0,0,0,7263,7266,1,0,0,0,7264,7262,1,0,0,0,7264,7265,1,0,0, - 0,7265,7306,1,0,0,0,7266,7264,1,0,0,0,7267,7306,7,122,0,0,7268,7270, - 7,123,0,0,7269,7271,3,750,375,0,7270,7269,1,0,0,0,7270,7271,1,0, - 0,0,7271,7306,1,0,0,0,7272,7273,7,124,0,0,7273,7275,3,746,373,0, - 7274,7276,5,228,0,0,7275,7274,1,0,0,0,7275,7276,1,0,0,0,7276,7280, - 1,0,0,0,7277,7278,3,58,29,0,7278,7279,3,704,352,0,7279,7281,1,0, - 0,0,7280,7277,1,0,0,0,7280,7281,1,0,0,0,7281,7306,1,0,0,0,7282,7285, - 7,125,0,0,7283,7284,5,834,0,0,7284,7286,3,730,365,0,7285,7283,1, - 0,0,0,7285,7286,1,0,0,0,7286,7306,1,0,0,0,7287,7289,5,233,0,0,7288, - 7290,5,225,0,0,7289,7288,1,0,0,0,7289,7290,1,0,0,0,7290,7292,1,0, - 0,0,7291,7293,5,228,0,0,7292,7291,1,0,0,0,7292,7293,1,0,0,0,7293, - 7297,1,0,0,0,7294,7295,3,58,29,0,7295,7296,3,704,352,0,7296,7298, - 1,0,0,0,7297,7294,1,0,0,0,7297,7298,1,0,0,0,7298,7301,1,0,0,0,7299, - 7300,5,28,0,0,7300,7302,3,706,353,0,7301,7299,1,0,0,0,7301,7302, - 1,0,0,0,7302,7306,1,0,0,0,7303,7304,5,233,0,0,7304,7306,5,229,0, - 0,7305,7179,1,0,0,0,7305,7199,1,0,0,0,7305,7208,1,0,0,0,7305,7216, - 1,0,0,0,7305,7224,1,0,0,0,7305,7234,1,0,0,0,7305,7244,1,0,0,0,7305, - 7257,1,0,0,0,7305,7267,1,0,0,0,7305,7268,1,0,0,0,7305,7272,1,0,0, - 0,7305,7282,1,0,0,0,7305,7287,1,0,0,0,7305,7303,1,0,0,0,7306,745, - 1,0,0,0,7307,7308,5,866,0,0,7308,7313,5,882,0,0,7309,7310,5,868, - 0,0,7310,7312,5,882,0,0,7311,7309,1,0,0,0,7312,7315,1,0,0,0,7313, - 7311,1,0,0,0,7313,7314,1,0,0,0,7314,7316,1,0,0,0,7315,7313,1,0,0, - 0,7316,7317,5,867,0,0,7317,747,1,0,0,0,7318,7320,7,126,0,0,7319, - 7321,3,750,375,0,7320,7319,1,0,0,0,7320,7321,1,0,0,0,7321,7341,1, - 0,0,0,7322,7324,5,224,0,0,7323,7325,3,750,375,0,7324,7323,1,0,0, - 0,7324,7325,1,0,0,0,7325,7329,1,0,0,0,7326,7327,3,58,29,0,7327,7328, - 3,704,352,0,7328,7330,1,0,0,0,7329,7326,1,0,0,0,7329,7330,1,0,0, - 0,7330,7341,1,0,0,0,7331,7341,7,127,0,0,7332,7334,7,128,0,0,7333, - 7335,3,754,377,0,7334,7333,1,0,0,0,7334,7335,1,0,0,0,7335,7341,1, - 0,0,0,7336,7338,7,129,0,0,7337,7339,7,130,0,0,7338,7337,1,0,0,0, - 7338,7339,1,0,0,0,7339,7341,1,0,0,0,7340,7318,1,0,0,0,7340,7322, - 1,0,0,0,7340,7331,1,0,0,0,7340,7332,1,0,0,0,7340,7336,1,0,0,0,7341, - 7343,1,0,0,0,7342,7344,5,12,0,0,7343,7342,1,0,0,0,7343,7344,1,0, - 0,0,7344,749,1,0,0,0,7345,7346,5,866,0,0,7346,7347,3,730,365,0,7347, - 7348,5,867,0,0,7348,751,1,0,0,0,7349,7350,5,866,0,0,7350,7351,3, - 730,365,0,7351,7352,5,868,0,0,7352,7353,3,730,365,0,7353,7354,5, - 867,0,0,7354,753,1,0,0,0,7355,7356,5,866,0,0,7356,7359,3,730,365, - 0,7357,7358,5,868,0,0,7358,7360,3,730,365,0,7359,7357,1,0,0,0,7359, - 7360,1,0,0,0,7360,7361,1,0,0,0,7361,7362,5,867,0,0,7362,755,1,0, - 0,0,7363,7364,5,866,0,0,7364,7369,3,690,345,0,7365,7366,5,868,0, - 0,7366,7368,3,690,345,0,7367,7365,1,0,0,0,7368,7371,1,0,0,0,7369, - 7367,1,0,0,0,7369,7370,1,0,0,0,7370,7372,1,0,0,0,7371,7369,1,0,0, - 0,7372,7373,5,867,0,0,7373,757,1,0,0,0,7374,7379,3,822,411,0,7375, - 7376,5,868,0,0,7376,7378,3,822,411,0,7377,7375,1,0,0,0,7378,7381, - 1,0,0,0,7379,7377,1,0,0,0,7379,7380,1,0,0,0,7380,759,1,0,0,0,7381, - 7379,1,0,0,0,7382,7383,7,131,0,0,7383,7388,3,762,381,0,7384,7385, - 5,868,0,0,7385,7387,3,762,381,0,7386,7384,1,0,0,0,7387,7390,1,0, - 0,0,7388,7386,1,0,0,0,7388,7389,1,0,0,0,7389,761,1,0,0,0,7390,7388, - 1,0,0,0,7391,7392,5,866,0,0,7392,7397,3,764,382,0,7393,7394,5,868, - 0,0,7394,7396,3,764,382,0,7395,7393,1,0,0,0,7396,7399,1,0,0,0,7397, - 7395,1,0,0,0,7397,7398,1,0,0,0,7398,7400,1,0,0,0,7399,7397,1,0,0, - 0,7400,7401,5,867,0,0,7401,763,1,0,0,0,7402,7405,3,822,411,0,7403, - 7405,5,42,0,0,7404,7402,1,0,0,0,7404,7403,1,0,0,0,7405,765,1,0,0, - 0,7406,7411,3,742,371,0,7407,7408,5,868,0,0,7408,7410,3,742,371, - 0,7409,7407,1,0,0,0,7410,7413,1,0,0,0,7411,7409,1,0,0,0,7411,7412, - 1,0,0,0,7412,767,1,0,0,0,7413,7411,1,0,0,0,7414,7419,5,882,0,0,7415, - 7416,5,868,0,0,7416,7418,5,882,0,0,7417,7415,1,0,0,0,7418,7421,1, - 0,0,0,7419,7417,1,0,0,0,7419,7420,1,0,0,0,7420,769,1,0,0,0,7421, - 7419,1,0,0,0,7422,7427,5,892,0,0,7423,7424,5,868,0,0,7424,7426,5, - 892,0,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,771,1,0,0,0,7429,7427,1,0,0,0,7430,7457,5,116, - 0,0,7431,7432,5,24,0,0,7432,7433,5,866,0,0,7433,7434,3,822,411,0, - 7434,7435,5,13,0,0,7435,7436,3,748,374,0,7436,7437,5,867,0,0,7437, - 7457,1,0,0,0,7438,7440,3,828,414,0,7439,7438,1,0,0,0,7439,7440,1, - 0,0,0,7440,7441,1,0,0,0,7441,7457,3,742,371,0,7442,7446,3,774,387, - 0,7443,7444,5,119,0,0,7444,7445,5,185,0,0,7445,7447,3,774,387,0, - 7446,7443,1,0,0,0,7446,7447,1,0,0,0,7447,7457,1,0,0,0,7448,7449, - 5,866,0,0,7449,7450,3,822,411,0,7450,7451,5,867,0,0,7451,7457,1, - 0,0,0,7452,7453,5,866,0,0,7453,7454,3,718,359,0,7454,7455,5,867, - 0,0,7455,7457,1,0,0,0,7456,7430,1,0,0,0,7456,7431,1,0,0,0,7456,7439, - 1,0,0,0,7456,7442,1,0,0,0,7456,7448,1,0,0,0,7456,7452,1,0,0,0,7457, - 773,1,0,0,0,7458,7464,7,132,0,0,7459,7461,5,866,0,0,7460,7462,3, - 730,365,0,7461,7460,1,0,0,0,7461,7462,1,0,0,0,7462,7463,1,0,0,0, - 7463,7465,5,867,0,0,7464,7459,1,0,0,0,7464,7465,1,0,0,0,7465,7473, - 1,0,0,0,7466,7467,5,295,0,0,7467,7469,5,866,0,0,7468,7470,3,730, - 365,0,7469,7468,1,0,0,0,7469,7470,1,0,0,0,7470,7471,1,0,0,0,7471, - 7473,5,867,0,0,7472,7458,1,0,0,0,7472,7466,1,0,0,0,7473,775,1,0, - 0,0,7474,7475,5,78,0,0,7475,7476,5,60,0,0,7476,777,1,0,0,0,7477, - 7478,5,78,0,0,7478,7479,5,114,0,0,7479,7480,5,60,0,0,7480,779,1, - 0,0,0,7481,7482,5,124,0,0,7482,7483,5,143,0,0,7483,781,1,0,0,0,7484, - 7507,3,784,392,0,7485,7507,3,792,396,0,7486,7507,3,794,397,0,7487, - 7494,3,814,407,0,7488,7489,5,866,0,0,7489,7495,5,867,0,0,7490,7491, - 5,866,0,0,7491,7492,3,818,409,0,7492,7493,5,867,0,0,7493,7495,1, - 0,0,0,7494,7488,1,0,0,0,7494,7490,1,0,0,0,7495,7507,1,0,0,0,7496, - 7503,3,642,321,0,7497,7498,5,866,0,0,7498,7504,5,867,0,0,7499,7500, - 5,866,0,0,7500,7501,3,818,409,0,7501,7502,5,867,0,0,7502,7504,1, - 0,0,0,7503,7497,1,0,0,0,7503,7499,1,0,0,0,7504,7507,1,0,0,0,7505, - 7507,3,816,408,0,7506,7484,1,0,0,0,7506,7485,1,0,0,0,7506,7486,1, - 0,0,0,7506,7487,1,0,0,0,7506,7496,1,0,0,0,7506,7505,1,0,0,0,7507, - 783,1,0,0,0,7508,7511,7,133,0,0,7509,7510,5,866,0,0,7510,7512,5, - 867,0,0,7511,7509,1,0,0,0,7511,7512,1,0,0,0,7512,7688,1,0,0,0,7513, - 7688,3,60,30,0,7514,7515,5,33,0,0,7515,7516,5,866,0,0,7516,7517, - 3,822,411,0,7517,7518,5,868,0,0,7518,7519,3,748,374,0,7519,7520, - 5,867,0,0,7520,7688,1,0,0,0,7521,7522,5,33,0,0,7522,7523,5,866,0, - 0,7523,7524,3,822,411,0,7524,7525,5,188,0,0,7525,7526,3,704,352, - 0,7526,7527,5,867,0,0,7527,7688,1,0,0,0,7528,7529,5,24,0,0,7529, - 7530,5,866,0,0,7530,7531,3,822,411,0,7531,7532,5,13,0,0,7532,7533, - 3,748,374,0,7533,7534,5,867,0,0,7534,7688,1,0,0,0,7535,7536,5,189, - 0,0,7536,7537,5,866,0,0,7537,7538,3,674,337,0,7538,7539,5,867,0, - 0,7539,7688,1,0,0,0,7540,7542,5,23,0,0,7541,7543,3,786,393,0,7542, - 7541,1,0,0,0,7543,7544,1,0,0,0,7544,7542,1,0,0,0,7544,7545,1,0,0, - 0,7545,7548,1,0,0,0,7546,7547,5,53,0,0,7547,7549,3,820,410,0,7548, - 7546,1,0,0,0,7548,7549,1,0,0,0,7549,7550,1,0,0,0,7550,7551,5,378, - 0,0,7551,7688,1,0,0,0,7552,7553,5,23,0,0,7553,7555,3,822,411,0,7554, - 7556,3,786,393,0,7555,7554,1,0,0,0,7556,7557,1,0,0,0,7557,7555,1, - 0,0,0,7557,7558,1,0,0,0,7558,7561,1,0,0,0,7559,7560,5,53,0,0,7560, - 7562,3,820,410,0,7561,7559,1,0,0,0,7561,7562,1,0,0,0,7562,7563,1, - 0,0,0,7563,7564,5,378,0,0,7564,7688,1,0,0,0,7565,7566,5,224,0,0, - 7566,7567,5,866,0,0,7567,7570,3,818,409,0,7568,7569,5,188,0,0,7569, - 7571,3,704,352,0,7570,7568,1,0,0,0,7570,7571,1,0,0,0,7571,7572,1, - 0,0,0,7572,7573,5,867,0,0,7573,7688,1,0,0,0,7574,7575,5,296,0,0, - 7575,7578,5,866,0,0,7576,7579,3,734,367,0,7577,7579,3,822,411,0, - 7578,7576,1,0,0,0,7578,7577,1,0,0,0,7579,7580,1,0,0,0,7580,7583, - 5,80,0,0,7581,7584,3,734,367,0,7582,7584,3,822,411,0,7583,7581,1, - 0,0,0,7583,7582,1,0,0,0,7584,7585,1,0,0,0,7585,7586,5,867,0,0,7586, - 7688,1,0,0,0,7587,7588,7,134,0,0,7588,7591,5,866,0,0,7589,7592,3, - 734,367,0,7590,7592,3,822,411,0,7591,7589,1,0,0,0,7591,7590,1,0, - 0,0,7592,7593,1,0,0,0,7593,7596,5,68,0,0,7594,7597,3,730,365,0,7595, - 7597,3,822,411,0,7596,7594,1,0,0,0,7596,7595,1,0,0,0,7597,7603,1, - 0,0,0,7598,7601,5,65,0,0,7599,7602,3,730,365,0,7600,7602,3,822,411, - 0,7601,7599,1,0,0,0,7601,7600,1,0,0,0,7602,7604,1,0,0,0,7603,7598, - 1,0,0,0,7603,7604,1,0,0,0,7604,7605,1,0,0,0,7605,7606,5,867,0,0, - 7606,7688,1,0,0,0,7607,7608,5,300,0,0,7608,7609,5,866,0,0,7609,7612, - 7,135,0,0,7610,7613,3,734,367,0,7611,7613,3,822,411,0,7612,7610, - 1,0,0,0,7612,7611,1,0,0,0,7612,7613,1,0,0,0,7613,7614,1,0,0,0,7614, - 7617,5,68,0,0,7615,7618,3,734,367,0,7616,7618,3,822,411,0,7617,7615, - 1,0,0,0,7617,7616,1,0,0,0,7618,7619,1,0,0,0,7619,7620,5,867,0,0, - 7620,7688,1,0,0,0,7621,7622,5,300,0,0,7622,7625,5,866,0,0,7623,7626, - 3,734,367,0,7624,7626,3,822,411,0,7625,7623,1,0,0,0,7625,7624,1, - 0,0,0,7626,7627,1,0,0,0,7627,7630,5,68,0,0,7628,7631,3,734,367,0, - 7629,7631,3,822,411,0,7630,7628,1,0,0,0,7630,7629,1,0,0,0,7631,7632, - 1,0,0,0,7632,7633,5,867,0,0,7633,7688,1,0,0,0,7634,7635,5,840,0, - 0,7635,7638,5,866,0,0,7636,7639,3,734,367,0,7637,7639,3,822,411, - 0,7638,7636,1,0,0,0,7638,7637,1,0,0,0,7639,7646,1,0,0,0,7640,7641, - 5,13,0,0,7641,7642,7,136,0,0,7642,7643,5,866,0,0,7643,7644,3,730, - 365,0,7644,7645,5,867,0,0,7645,7647,1,0,0,0,7646,7640,1,0,0,0,7646, - 7647,1,0,0,0,7647,7649,1,0,0,0,7648,7650,3,788,394,0,7649,7648,1, - 0,0,0,7649,7650,1,0,0,0,7650,7651,1,0,0,0,7651,7652,5,867,0,0,7652, - 7688,1,0,0,0,7653,7654,5,293,0,0,7654,7655,5,866,0,0,7655,7656,3, - 70,35,0,7656,7659,5,68,0,0,7657,7660,3,734,367,0,7658,7660,3,822, - 411,0,7659,7657,1,0,0,0,7659,7658,1,0,0,0,7660,7661,1,0,0,0,7661, - 7662,5,867,0,0,7662,7688,1,0,0,0,7663,7664,5,827,0,0,7664,7665,5, - 866,0,0,7665,7666,7,137,0,0,7666,7667,5,868,0,0,7667,7668,3,734, - 367,0,7668,7669,5,867,0,0,7669,7688,1,0,0,0,7670,7671,5,254,0,0, - 7671,7672,5,866,0,0,7672,7673,3,822,411,0,7673,7674,5,868,0,0,7674, - 7677,3,822,411,0,7675,7676,5,579,0,0,7676,7678,3,748,374,0,7677, - 7675,1,0,0,0,7677,7678,1,0,0,0,7678,7680,1,0,0,0,7679,7681,3,294, - 147,0,7680,7679,1,0,0,0,7680,7681,1,0,0,0,7681,7683,1,0,0,0,7682, - 7684,3,296,148,0,7683,7682,1,0,0,0,7683,7684,1,0,0,0,7684,7685,1, - 0,0,0,7685,7686,5,867,0,0,7686,7688,1,0,0,0,7687,7508,1,0,0,0,7687, - 7513,1,0,0,0,7687,7514,1,0,0,0,7687,7521,1,0,0,0,7687,7528,1,0,0, - 0,7687,7535,1,0,0,0,7687,7540,1,0,0,0,7687,7552,1,0,0,0,7687,7565, - 1,0,0,0,7687,7574,1,0,0,0,7687,7587,1,0,0,0,7687,7607,1,0,0,0,7687, - 7621,1,0,0,0,7687,7634,1,0,0,0,7687,7653,1,0,0,0,7687,7663,1,0,0, - 0,7687,7670,1,0,0,0,7688,785,1,0,0,0,7689,7690,5,191,0,0,7690,7691, - 3,820,410,0,7691,7692,5,175,0,0,7692,7693,3,820,410,0,7693,787,1, - 0,0,0,7694,7695,5,448,0,0,7695,7700,3,790,395,0,7696,7697,5,868, - 0,0,7697,7699,3,790,395,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,7709,1,0,0,0,7702,7700,1,0,0, - 0,7703,7704,5,448,0,0,7704,7705,3,730,365,0,7705,7706,5,854,0,0, - 7706,7707,3,730,365,0,7707,7709,1,0,0,0,7708,7694,1,0,0,0,7708,7703, - 1,0,0,0,7709,789,1,0,0,0,7710,7712,3,730,365,0,7711,7713,7,138,0, - 0,7712,7711,1,0,0,0,7712,7713,1,0,0,0,7713,791,1,0,0,0,7714,7715, - 7,139,0,0,7715,7717,5,866,0,0,7716,7718,7,45,0,0,7717,7716,1,0,0, - 0,7717,7718,1,0,0,0,7718,7719,1,0,0,0,7719,7720,3,820,410,0,7720, - 7722,5,867,0,0,7721,7723,3,796,398,0,7722,7721,1,0,0,0,7722,7723, - 1,0,0,0,7723,7774,1,0,0,0,7724,7725,5,262,0,0,7725,7733,5,866,0, - 0,7726,7734,5,850,0,0,7727,7729,5,7,0,0,7728,7727,1,0,0,0,7728,7729, - 1,0,0,0,7729,7730,1,0,0,0,7730,7734,3,820,410,0,7731,7732,5,49,0, - 0,7732,7734,3,818,409,0,7733,7726,1,0,0,0,7733,7728,1,0,0,0,7733, - 7731,1,0,0,0,7734,7735,1,0,0,0,7735,7737,5,867,0,0,7736,7738,3,796, - 398,0,7737,7736,1,0,0,0,7737,7738,1,0,0,0,7738,7774,1,0,0,0,7739, - 7740,7,140,0,0,7740,7742,5,866,0,0,7741,7743,5,7,0,0,7742,7741,1, - 0,0,0,7742,7743,1,0,0,0,7743,7744,1,0,0,0,7744,7745,3,820,410,0, - 7745,7747,5,867,0,0,7746,7748,3,796,398,0,7747,7746,1,0,0,0,7747, - 7748,1,0,0,0,7748,7774,1,0,0,0,7749,7750,5,266,0,0,7750,7752,5,866, - 0,0,7751,7753,5,49,0,0,7752,7751,1,0,0,0,7752,7753,1,0,0,0,7753, - 7754,1,0,0,0,7754,7765,3,818,409,0,7755,7756,5,125,0,0,7756,7757, - 5,20,0,0,7757,7762,3,260,130,0,7758,7759,5,868,0,0,7759,7761,3,260, - 130,0,7760,7758,1,0,0,0,7761,7764,1,0,0,0,7762,7760,1,0,0,0,7762, - 7763,1,0,0,0,7763,7766,1,0,0,0,7764,7762,1,0,0,0,7765,7755,1,0,0, - 0,7765,7766,1,0,0,0,7766,7769,1,0,0,0,7767,7768,5,156,0,0,7768,7770, - 5,882,0,0,7769,7767,1,0,0,0,7769,7770,1,0,0,0,7770,7771,1,0,0,0, - 7771,7772,5,867,0,0,7772,7774,1,0,0,0,7773,7714,1,0,0,0,7773,7724, - 1,0,0,0,7773,7739,1,0,0,0,7773,7749,1,0,0,0,7774,793,1,0,0,0,7775, - 7776,7,141,0,0,7776,7777,5,866,0,0,7777,7780,3,822,411,0,7778,7779, - 5,868,0,0,7779,7781,3,730,365,0,7780,7778,1,0,0,0,7780,7781,1,0, - 0,0,7781,7784,1,0,0,0,7782,7783,5,868,0,0,7783,7785,3,730,365,0, - 7784,7782,1,0,0,0,7784,7785,1,0,0,0,7785,7786,1,0,0,0,7786,7787, - 5,867,0,0,7787,7788,3,796,398,0,7788,7814,1,0,0,0,7789,7790,7,142, - 0,0,7790,7791,5,866,0,0,7791,7792,3,822,411,0,7792,7793,5,867,0, - 0,7793,7794,3,796,398,0,7794,7814,1,0,0,0,7795,7796,7,143,0,0,7796, - 7797,5,866,0,0,7797,7798,5,867,0,0,7798,7814,3,796,398,0,7799,7800, - 5,273,0,0,7800,7801,5,866,0,0,7801,7802,3,822,411,0,7802,7803,5, - 868,0,0,7803,7804,3,730,365,0,7804,7805,5,867,0,0,7805,7806,3,796, - 398,0,7806,7814,1,0,0,0,7807,7808,5,272,0,0,7808,7809,5,866,0,0, - 7809,7810,3,730,365,0,7810,7811,5,867,0,0,7811,7812,3,796,398,0, - 7812,7814,1,0,0,0,7813,7775,1,0,0,0,7813,7789,1,0,0,0,7813,7795, - 1,0,0,0,7813,7799,1,0,0,0,7813,7807,1,0,0,0,7814,795,1,0,0,0,7815, - 7821,5,129,0,0,7816,7817,5,866,0,0,7817,7818,3,798,399,0,7818,7819, - 5,867,0,0,7819,7822,1,0,0,0,7820,7822,3,800,400,0,7821,7816,1,0, - 0,0,7821,7820,1,0,0,0,7822,797,1,0,0,0,7823,7825,3,800,400,0,7824, - 7823,1,0,0,0,7824,7825,1,0,0,0,7825,7827,1,0,0,0,7826,7828,3,812, - 406,0,7827,7826,1,0,0,0,7827,7828,1,0,0,0,7828,7830,1,0,0,0,7829, - 7831,3,258,129,0,7830,7829,1,0,0,0,7830,7831,1,0,0,0,7831,7833,1, - 0,0,0,7832,7834,3,802,401,0,7833,7832,1,0,0,0,7833,7834,1,0,0,0, - 7834,799,1,0,0,0,7835,7836,3,722,361,0,7836,801,1,0,0,0,7837,7838, - 3,804,402,0,7838,7839,3,806,403,0,7839,803,1,0,0,0,7840,7841,7,144, - 0,0,7841,805,1,0,0,0,7842,7845,3,810,405,0,7843,7845,3,808,404,0, - 7844,7842,1,0,0,0,7844,7843,1,0,0,0,7845,807,1,0,0,0,7846,7847,5, - 17,0,0,7847,7848,3,810,405,0,7848,7849,5,11,0,0,7849,7850,3,810, - 405,0,7850,809,1,0,0,0,7851,7852,5,36,0,0,7852,7859,5,586,0,0,7853, - 7854,5,669,0,0,7854,7859,7,145,0,0,7855,7856,3,822,411,0,7856,7857, - 7,145,0,0,7857,7859,1,0,0,0,7858,7851,1,0,0,0,7858,7853,1,0,0,0, - 7858,7855,1,0,0,0,7859,811,1,0,0,0,7860,7861,5,130,0,0,7861,7862, - 5,20,0,0,7862,7867,3,822,411,0,7863,7864,5,868,0,0,7864,7866,3,822, - 411,0,7865,7863,1,0,0,0,7866,7869,1,0,0,0,7867,7865,1,0,0,0,7867, - 7868,1,0,0,0,7868,813,1,0,0,0,7869,7867,1,0,0,0,7870,7895,3,854, - 427,0,7871,7895,5,757,0,0,7872,7895,5,289,0,0,7873,7895,5,285,0, - 0,7874,7895,5,286,0,0,7875,7895,5,287,0,0,7876,7895,5,290,0,0,7877, - 7895,5,291,0,0,7878,7895,5,292,0,0,7879,7895,5,78,0,0,7880,7895, - 5,86,0,0,7881,7895,5,288,0,0,7882,7895,5,294,0,0,7883,7895,5,488, - 0,0,7884,7895,5,295,0,0,7885,7895,5,142,0,0,7886,7895,5,143,0,0, - 7887,7895,5,297,0,0,7888,7895,5,298,0,0,7889,7895,5,299,0,0,7890, - 7895,5,300,0,0,7891,7895,5,301,0,0,7892,7895,5,302,0,0,7893,7895, - 5,303,0,0,7894,7870,1,0,0,0,7894,7871,1,0,0,0,7894,7872,1,0,0,0, - 7894,7873,1,0,0,0,7894,7874,1,0,0,0,7894,7875,1,0,0,0,7894,7876, - 1,0,0,0,7894,7877,1,0,0,0,7894,7878,1,0,0,0,7894,7879,1,0,0,0,7894, - 7880,1,0,0,0,7894,7881,1,0,0,0,7894,7882,1,0,0,0,7894,7883,1,0,0, - 0,7894,7884,1,0,0,0,7894,7885,1,0,0,0,7894,7886,1,0,0,0,7894,7887, - 1,0,0,0,7894,7888,1,0,0,0,7894,7889,1,0,0,0,7894,7890,1,0,0,0,7894, - 7891,1,0,0,0,7894,7892,1,0,0,0,7894,7893,1,0,0,0,7895,815,1,0,0, - 0,7896,7897,7,146,0,0,7897,7898,5,866,0,0,7898,7899,3,820,410,0, - 7899,7900,5,867,0,0,7900,817,1,0,0,0,7901,7906,3,820,410,0,7902, - 7903,5,868,0,0,7903,7905,3,820,410,0,7904,7902,1,0,0,0,7905,7908, - 1,0,0,0,7906,7904,1,0,0,0,7906,7907,1,0,0,0,7907,819,1,0,0,0,7908, - 7906,1,0,0,0,7909,7913,3,742,371,0,7910,7913,3,782,391,0,7911,7913, - 3,822,411,0,7912,7909,1,0,0,0,7912,7910,1,0,0,0,7912,7911,1,0,0, - 0,7913,821,1,0,0,0,7914,7915,6,411,-1,0,7915,7916,7,147,0,0,7916, - 7926,3,822,411,4,7917,7918,3,824,412,0,7918,7920,5,89,0,0,7919,7921, - 5,114,0,0,7920,7919,1,0,0,0,7920,7921,1,0,0,0,7921,7922,1,0,0,0, - 7922,7923,7,148,0,0,7923,7926,1,0,0,0,7924,7926,3,824,412,0,7925, - 7914,1,0,0,0,7925,7917,1,0,0,0,7925,7924,1,0,0,0,7926,7933,1,0,0, - 0,7927,7928,10,3,0,0,7928,7929,3,834,417,0,7929,7930,3,822,411,4, - 7930,7932,1,0,0,0,7931,7927,1,0,0,0,7932,7935,1,0,0,0,7933,7931, - 1,0,0,0,7933,7934,1,0,0,0,7934,823,1,0,0,0,7935,7933,1,0,0,0,7936, - 7937,6,412,-1,0,7937,7938,3,826,413,0,7938,8002,1,0,0,0,7939,7941, - 10,6,0,0,7940,7942,5,114,0,0,7941,7940,1,0,0,0,7941,7942,1,0,0,0, - 7942,7943,1,0,0,0,7943,7944,5,17,0,0,7944,7945,3,824,412,0,7945, - 7946,5,11,0,0,7946,7947,3,824,412,7,7947,8001,1,0,0,0,7948,7949, - 10,5,0,0,7949,7950,5,604,0,0,7950,7951,5,99,0,0,7951,8001,3,824, - 412,6,7952,7954,10,3,0,0,7953,7955,5,114,0,0,7954,7953,1,0,0,0,7954, - 7955,1,0,0,0,7955,7956,1,0,0,0,7956,7957,7,149,0,0,7957,8001,3,824, - 412,4,7958,7960,10,9,0,0,7959,7961,5,114,0,0,7960,7959,1,0,0,0,7960, - 7961,1,0,0,0,7961,7962,1,0,0,0,7962,7963,5,80,0,0,7963,7966,5,866, - 0,0,7964,7967,3,210,105,0,7965,7967,3,758,379,0,7966,7964,1,0,0, - 0,7966,7965,1,0,0,0,7967,7968,1,0,0,0,7968,7969,5,867,0,0,7969,8001, - 1,0,0,0,7970,7971,10,8,0,0,7971,7972,5,89,0,0,7972,8001,3,740,370, - 0,7973,7974,10,7,0,0,7974,7981,3,830,415,0,7975,7976,7,150,0,0,7976, - 7977,5,866,0,0,7977,7978,3,210,105,0,7978,7979,5,867,0,0,7979,7982, - 1,0,0,0,7980,7982,3,824,412,0,7981,7975,1,0,0,0,7981,7980,1,0,0, - 0,7982,8001,1,0,0,0,7983,7985,10,4,0,0,7984,7986,5,114,0,0,7985, - 7984,1,0,0,0,7985,7986,1,0,0,0,7986,7987,1,0,0,0,7987,7988,5,99, - 0,0,7988,7991,3,824,412,0,7989,7990,5,384,0,0,7990,7992,5,882,0, - 0,7991,7989,1,0,0,0,7991,7992,1,0,0,0,7992,8001,1,0,0,0,7993,7994, - 10,2,0,0,7994,7995,5,485,0,0,7995,7996,5,510,0,0,7996,7997,5,866, - 0,0,7997,7998,3,824,412,0,7998,7999,5,867,0,0,7999,8001,1,0,0,0, - 8000,7939,1,0,0,0,8000,7948,1,0,0,0,8000,7952,1,0,0,0,8000,7958, - 1,0,0,0,8000,7970,1,0,0,0,8000,7973,1,0,0,0,8000,7983,1,0,0,0,8000, - 7993,1,0,0,0,8001,8004,1,0,0,0,8002,8000,1,0,0,0,8002,8003,1,0,0, - 0,8003,825,1,0,0,0,8004,8002,1,0,0,0,8005,8006,6,413,-1,0,8006,8054, - 3,742,371,0,8007,8054,3,782,391,0,8008,8054,3,702,351,0,8009,8010, - 3,828,414,0,8010,8011,3,826,413,12,8011,8054,1,0,0,0,8012,8013,5, - 228,0,0,8013,8054,3,826,413,11,8014,8015,5,892,0,0,8015,8016,5,841, - 0,0,8016,8054,3,826,413,10,8017,8018,5,866,0,0,8018,8023,3,822,411, - 0,8019,8020,5,868,0,0,8020,8022,3,822,411,0,8021,8019,1,0,0,0,8022, - 8025,1,0,0,0,8023,8021,1,0,0,0,8023,8024,1,0,0,0,8024,8026,1,0,0, - 0,8025,8023,1,0,0,0,8026,8027,5,867,0,0,8027,8054,1,0,0,0,8028,8029, - 5,586,0,0,8029,8030,5,866,0,0,8030,8033,3,822,411,0,8031,8032,5, - 868,0,0,8032,8034,3,822,411,0,8033,8031,1,0,0,0,8034,8035,1,0,0, - 0,8035,8033,1,0,0,0,8035,8036,1,0,0,0,8036,8037,1,0,0,0,8037,8038, - 5,867,0,0,8038,8054,1,0,0,0,8039,8040,5,60,0,0,8040,8041,5,866,0, - 0,8041,8042,3,210,105,0,8042,8043,5,867,0,0,8043,8054,1,0,0,0,8044, - 8045,5,866,0,0,8045,8046,3,210,105,0,8046,8047,5,867,0,0,8047,8054, - 1,0,0,0,8048,8049,5,87,0,0,8049,8050,3,822,411,0,8050,8051,3,70, - 35,0,8051,8054,1,0,0,0,8052,8054,3,676,338,0,8053,8005,1,0,0,0,8053, - 8007,1,0,0,0,8053,8008,1,0,0,0,8053,8009,1,0,0,0,8053,8012,1,0,0, - 0,8053,8014,1,0,0,0,8053,8017,1,0,0,0,8053,8028,1,0,0,0,8053,8039, - 1,0,0,0,8053,8044,1,0,0,0,8053,8048,1,0,0,0,8053,8052,1,0,0,0,8054, - 8072,1,0,0,0,8055,8056,10,4,0,0,8056,8057,3,840,420,0,8057,8058, - 3,826,413,5,8058,8071,1,0,0,0,8059,8060,10,3,0,0,8060,8061,3,836, - 418,0,8061,8062,3,826,413,4,8062,8071,1,0,0,0,8063,8064,10,2,0,0, - 8064,8065,3,838,419,0,8065,8066,3,826,413,3,8066,8071,1,0,0,0,8067, - 8068,10,14,0,0,8068,8069,5,28,0,0,8069,8071,3,706,353,0,8070,8055, - 1,0,0,0,8070,8059,1,0,0,0,8070,8063,1,0,0,0,8070,8067,1,0,0,0,8071, - 8074,1,0,0,0,8072,8070,1,0,0,0,8072,8073,1,0,0,0,8073,827,1,0,0, - 0,8074,8072,1,0,0,0,8075,8076,7,151,0,0,8076,829,1,0,0,0,8077,8078, - 5,859,0,0,8078,8086,5,858,0,0,8079,8080,5,860,0,0,8080,8086,5,857, - 0,0,8081,8082,5,859,0,0,8082,8083,5,857,0,0,8083,8086,5,858,0,0, - 8084,8086,3,832,416,0,8085,8077,1,0,0,0,8085,8079,1,0,0,0,8085,8081, - 1,0,0,0,8085,8084,1,0,0,0,8086,831,1,0,0,0,8087,8088,5,859,0,0,8088, - 8095,5,857,0,0,8089,8090,5,858,0,0,8090,8095,5,857,0,0,8091,8095, - 5,857,0,0,8092,8095,5,858,0,0,8093,8095,5,859,0,0,8094,8087,1,0, - 0,0,8094,8089,1,0,0,0,8094,8091,1,0,0,0,8094,8092,1,0,0,0,8094,8093, - 1,0,0,0,8095,833,1,0,0,0,8096,8104,5,11,0,0,8097,8098,5,863,0,0, - 8098,8104,5,863,0,0,8099,8104,5,196,0,0,8100,8104,5,124,0,0,8101, - 8102,5,862,0,0,8102,8104,5,862,0,0,8103,8096,1,0,0,0,8103,8097,1, - 0,0,0,8103,8099,1,0,0,0,8103,8100,1,0,0,0,8103,8101,1,0,0,0,8104, - 835,1,0,0,0,8105,8106,5,859,0,0,8106,8113,5,859,0,0,8107,8108,5, - 858,0,0,8108,8113,5,858,0,0,8109,8113,5,863,0,0,8110,8113,5,864, - 0,0,8111,8113,5,862,0,0,8112,8105,1,0,0,0,8112,8107,1,0,0,0,8112, - 8109,1,0,0,0,8112,8110,1,0,0,0,8112,8111,1,0,0,0,8113,837,1,0,0, - 0,8114,8115,7,152,0,0,8115,839,1,0,0,0,8116,8117,5,854,0,0,8117, - 8122,5,858,0,0,8118,8119,5,854,0,0,8119,8120,5,858,0,0,8120,8122, - 5,858,0,0,8121,8116,1,0,0,0,8121,8118,1,0,0,0,8122,841,1,0,0,0,8123, - 8124,7,153,0,0,8124,843,1,0,0,0,8125,8126,7,154,0,0,8126,845,1,0, - 0,0,8127,8128,7,155,0,0,8128,847,1,0,0,0,8129,8130,7,156,0,0,8130, - 849,1,0,0,0,8131,8132,7,157,0,0,8132,851,1,0,0,0,8133,8134,7,158, - 0,0,8134,853,1,0,0,0,8135,8136,7,159,0,0,8136,855,1,0,0,0,1173,859, - 866,869,878,922,941,952,968,973,985,1020,1030,1035,1041,1046,1050, - 1059,1062,1065,1069,1076,1079,1084,1092,1097,1102,1105,1107,1119, - 1122,1126,1129,1133,1136,1140,1143,1146,1150,1153,1157,1163,1167, - 1172,1178,1185,1192,1195,1199,1204,1210,1219,1224,1228,1232,1243, - 1261,1268,1272,1276,1280,1285,1288,1291,1294,1297,1303,1307,1317, - 1321,1325,1331,1336,1339,1342,1344,1348,1355,1359,1362,1367,1371, - 1374,1378,1381,1385,1398,1401,1405,1408,1412,1415,1419,1422,1426, - 1429,1432,1436,1439,1443,1449,1452,1456,1468,1474,1485,1490,1498, - 1502,1507,1510,1515,1525,1530,1535,1541,1546,1550,1552,1555,1559, - 1563,1566,1570,1574,1578,1584,1587,1594,1599,1605,1612,1618,1626, - 1629,1636,1639,1641,1647,1653,1670,1677,1684,1696,1701,1704,1707, - 1720,1733,1738,1754,1762,1772,1775,1781,1786,1789,1795,1799,1804, - 1810,1814,1818,1821,1824,1830,1834,1839,1850,1853,1860,1863,1867, - 1873,1885,1888,1893,1906,1913,1919,1924,1928,1931,1939,1947,1949, - 1959,1963,1966,1970,1975,1980,1985,1989,1993,1997,2001,2005,2009, - 2014,2019,2024,2030,2035,2040,2045,2050,2055,2061,2066,2071,2076, - 2081,2086,2091,2096,2103,2108,2113,2118,2122,2127,2135,2140,2146, - 2158,2165,2167,2175,2180,2183,2191,2197,2201,2214,2226,2228,2231, - 2239,2245,2251,2264,2271,2280,2285,2296,2305,2310,2322,2329,2338, - 2343,2355,2362,2371,2376,2383,2392,2397,2399,2404,2412,2421,2425, - 2428,2432,2437,2443,2449,2454,2459,2464,2469,2472,2477,2482,2492, - 2496,2503,2508,2511,2516,2519,2523,2527,2535,2554,2557,2560,2564, - 2574,2587,2600,2603,2609,2612,2616,2625,2628,2631,2636,2640,2643, - 2647,2651,2654,2658,2661,2665,2668,2674,2677,2682,2690,2696,2700, - 2704,2709,2714,2721,2725,2736,2744,2747,2753,2759,2762,2768,2774, - 2776,2781,2787,2793,2795,2799,2802,2805,2811,2817,2819,2824,2831, - 2840,2843,2847,2852,2862,2871,2879,2882,2890,2893,2900,2905,2913, - 2929,2934,2941,2960,2966,2976,2988,2995,3002,3017,3030,3036,3042, - 3048,3054,3060,3066,3071,3078,3085,3092,3097,3100,3102,3111,3118, - 3125,3132,3141,3147,3151,3155,3159,3165,3168,3173,3180,3187,3191, - 3196,3206,3214,3220,3229,3238,3247,3250,3254,3263,3267,3270,3273, - 3279,3282,3285,3289,3292,3295,3298,3309,3312,3317,3323,3328,3333, - 3336,3340,3345,3348,3353,3363,3368,3374,3376,3382,3384,3390,3398, - 3403,3411,3414,3419,3422,3427,3435,3441,3445,3447,3453,3461,3466, - 3474,3477,3482,3485,3489,3492,3495,3499,3502,3510,3516,3520,3526, - 3531,3535,3537,3543,3547,3550,3553,3556,3562,3567,3570,3573,3576, - 3579,3581,3584,3588,3591,3594,3602,3608,3611,3613,3622,3627,3634, - 3637,3640,3644,3648,3654,3658,3665,3669,3672,3675,3680,3687,3697, - 3706,3715,3725,3728,3732,3738,3742,3745,3748,3753,3756,3763,3767, - 3770,3774,3778,3781,3784,3789,3795,3799,3809,3815,3819,3825,3829, - 3835,3838,3850,3854,3858,3866,3870,3884,3889,3892,3896,3899,3907, - 3912,3915,3918,3922,3925,3934,3939,3948,3953,3960,3967,3975,3981, - 3989,3992,3995,4002,4005,4008,4012,4016,4022,4029,4039,4043,4052, - 4055,4059,4065,4073,4078,4082,4088,4094,4097,4099,4103,4108,4115, - 4125,4131,4136,4140,4143,4146,4149,4152,4155,4158,4162,4166,4174, - 4178,4181,4183,4196,4199,4206,4216,4219,4224,4226,4230,4238,4244, - 4253,4266,4270,4276,4282,4285,4289,4292,4294,4306,4310,4318,4330, - 4336,4338,4344,4346,4348,4354,4362,4370,4374,4379,4381,4390,4395, - 4415,4420,4426,4433,4438,4447,4450,4454,4458,4462,4465,4468,4471, - 4475,4479,4482,4485,4488,4495,4499,4514,4527,4535,4545,4549,4552, - 4558,4561,4564,4573,4582,4592,4596,4606,4610,4621,4625,4634,4643, - 4646,4650,4655,4659,4668,4671,4674,4681,4687,4693,4719,4722,4725, - 4744,4746,4769,4772,4775,4794,4796,4810,4823,4860,4865,4900,4914, - 4921,4925,4931,4939,4941,4952,4962,4969,4975,4983,4988,4996,5004, - 5012,5020,5026,5031,5036,5041,5047,5049,5060,5065,5072,5074,5088, - 5094,5099,5104,5110,5117,5125,5133,5138,5144,5147,5155,5162,5171, - 5174,5191,5199,5207,5211,5218,5224,5232,5237,5244,5252,5259,5264, - 5267,5269,5275,5277,5281,5283,5288,5295,5300,5304,5309,5313,5319, - 5325,5330,5333,5335,5341,5343,5347,5349,5354,5359,5366,5375,5380, - 5389,5393,5399,5404,5407,5409,5415,5417,5420,5427,5429,5434,5441, - 5450,5456,5458,5465,5468,5480,5486,5494,5497,5501,5504,5508,5510, - 5521,5524,5528,5531,5534,5541,5553,5556,5563,5569,5579,5584,5591, - 5596,5602,5606,5610,5618,5622,5626,5632,5634,5646,5651,5657,5663, - 5667,5672,5674,5698,5702,5705,5714,5718,5727,5731,5735,5741,5743, - 5752,5762,5789,5793,5798,5805,5808,5814,5824,5834,5844,5850,5859, - 5865,5872,5874,5882,5888,5892,5909,5919,5923,5927,5937,5942,6014, - 6032,6040,6046,6058,6062,6073,6077,6086,6094,6101,6105,6112,6117, - 6120,6123,6134,6143,6152,6155,6169,6187,6200,6203,6207,6210,6212, - 6219,6226,6230,6237,6244,6247,6263,6266,6276,6280,6286,6289,6292, - 6297,6301,6304,6311,6314,6320,6356,6359,6371,6374,6390,6392,6396, - 6403,6407,6414,6417,6426,6429,6434,6440,6442,6448,6452,6458,6461, - 6464,6477,6480,6486,6489,6497,6505,6511,6514,6518,6532,6544,6552, - 6556,6563,6570,6575,6588,6597,6605,6610,6613,6618,6621,6633,6638, - 6651,6653,6658,6662,6665,6667,6674,6681,6684,6687,6693,6697,6703, - 6711,6720,6733,6738,6746,6749,6754,6759,6767,6770,6778,6782,6789, - 6795,6798,6802,6815,6821,6833,6836,6845,6850,6871,6887,6897,6902, - 6907,6909,6912,6916,6918,6925,6933,6935,6938,6942,6946,6951,6953, - 6956,6960,6962,6969,6971,6973,6986,6996,6999,7002,7015,7021,7024, - 7032,7039,7059,7066,7068,7075,7077,7081,7088,7094,7105,7111,7120, - 7126,7129,7133,7138,7141,7145,7149,7151,7156,7161,7174,7177,7181, - 7184,7187,7192,7197,7203,7206,7211,7214,7219,7222,7226,7231,7236, - 7241,7246,7249,7254,7259,7264,7270,7275,7280,7285,7289,7292,7297, - 7301,7305,7313,7320,7324,7329,7334,7338,7340,7343,7359,7369,7379, - 7388,7397,7404,7411,7419,7427,7439,7446,7456,7461,7464,7469,7472, - 7494,7503,7506,7511,7544,7548,7557,7561,7570,7578,7583,7591,7596, - 7601,7603,7612,7617,7625,7630,7638,7646,7649,7659,7677,7680,7683, - 7687,7700,7708,7712,7717,7722,7728,7733,7737,7742,7747,7752,7762, - 7765,7769,7773,7780,7784,7813,7821,7824,7827,7830,7833,7844,7858, - 7867,7894,7906,7912,7920,7925,7933,7941,7954,7960,7966,7981,7985, - 7991,8000,8002,8023,8035,8053,8070,8072,8085,8094,8103,8112,8121 + 856,9501,0,857,1,0,0,0,2,867,1,0,0,0,4,876,1,0,0,0,6,878,1,0,0,0, + 8,920,1,0,0,0,10,939,1,0,0,0,12,950,1,0,0,0,14,966,1,0,0,0,16,971, + 1,0,0,0,18,983,1,0,0,0,20,1018,1,0,0,0,22,1028,1,0,0,0,24,1030,1, + 0,0,0,26,1042,1,0,0,0,28,1072,1,0,0,0,30,1108,1,0,0,0,32,1159,1, + 0,0,0,34,1188,1,0,0,0,36,1224,1,0,0,0,38,1238,1,0,0,0,40,1245,1, + 0,0,0,42,1342,1,0,0,0,44,1344,1,0,0,0,46,1381,1,0,0,0,48,1445,1, + 0,0,0,50,1470,1,0,0,0,52,1476,1,0,0,0,54,1498,1,0,0,0,56,1585,1, + 0,0,0,58,1592,1,0,0,0,60,1594,1,0,0,0,62,1599,1,0,0,0,64,1639,1, + 0,0,0,66,1645,1,0,0,0,68,1647,1,0,0,0,70,1668,1,0,0,0,72,1675,1, + 0,0,0,74,1677,1,0,0,0,76,1702,1,0,0,0,78,1705,1,0,0,0,80,1710,1, + 0,0,0,82,1736,1,0,0,0,84,1752,1,0,0,0,86,1754,1,0,0,0,88,1848,1, + 0,0,0,90,1851,1,0,0,0,92,1863,1,0,0,0,94,1867,1,0,0,0,96,1917,1, + 0,0,0,98,1919,1,0,0,0,100,1947,1,0,0,0,102,1957,1,0,0,0,104,2144, + 1,0,0,0,106,2146,1,0,0,0,108,2148,1,0,0,0,110,2151,1,0,0,0,112,2226, + 1,0,0,0,114,2249,1,0,0,0,116,2397,1,0,0,0,118,2402,1,0,0,0,120,2404, + 1,0,0,0,122,2414,1,0,0,0,124,2470,1,0,0,0,126,2490,1,0,0,0,128,2492, + 1,0,0,0,130,2527,1,0,0,0,132,2536,1,0,0,0,134,2543,1,0,0,0,136,2566, + 1,0,0,0,138,2575,1,0,0,0,140,2590,1,0,0,0,142,2612,1,0,0,0,144,2668, + 1,0,0,0,146,2964,1,0,0,0,148,3064,1,0,0,0,150,3066,1,0,0,0,152,3073, + 1,0,0,0,154,3080,1,0,0,0,156,3103,1,0,0,0,158,3113,1,0,0,0,160,3120, + 1,0,0,0,162,3127,1,0,0,0,164,3134,1,0,0,0,166,3143,1,0,0,0,168,3155, + 1,0,0,0,170,3168,1,0,0,0,172,3175,1,0,0,0,174,3191,1,0,0,0,176,3218, + 1,0,0,0,178,3220,1,0,0,0,180,3230,1,0,0,0,182,3234,1,0,0,0,184,3240, + 1,0,0,0,186,3252,1,0,0,0,188,3254,1,0,0,0,190,3261,1,0,0,0,192,3263, + 1,0,0,0,194,3312,1,0,0,0,196,3321,1,0,0,0,198,3323,1,0,0,0,200,3334, + 1,0,0,0,202,3340,1,0,0,0,204,3414,1,0,0,0,206,3477,1,0,0,0,208,3495, + 1,0,0,0,210,3579,1,0,0,0,212,3582,1,0,0,0,214,3594,1,0,0,0,216,3614, + 1,0,0,0,218,3642,1,0,0,0,220,3646,1,0,0,0,222,3648,1,0,0,0,224,3658, + 1,0,0,0,226,3678,1,0,0,0,228,3685,1,0,0,0,230,3687,1,0,0,0,232,3698, + 1,0,0,0,234,3707,1,0,0,0,236,3713,1,0,0,0,238,3736,1,0,0,0,240,3738, + 1,0,0,0,242,3774,1,0,0,0,244,3829,1,0,0,0,246,3838,1,0,0,0,248,3858, + 1,0,0,0,250,3870,1,0,0,0,252,3874,1,0,0,0,254,3885,1,0,0,0,256,3918, + 1,0,0,0,258,3939,1,0,0,0,260,3949,1,0,0,0,262,3953,1,0,0,0,264,3979, + 1,0,0,0,266,4020,1,0,0,0,268,4027,1,0,0,0,270,4029,1,0,0,0,272,4033, + 1,0,0,0,274,4050,1,0,0,0,276,4101,1,0,0,0,278,4113,1,0,0,0,280,4123, + 1,0,0,0,282,4125,1,0,0,0,284,4158,1,0,0,0,286,4166,1,0,0,0,288,4183, + 1,0,0,0,290,4199,1,0,0,0,292,4236,1,0,0,0,294,4242,1,0,0,0,296,4251, + 1,0,0,0,298,4264,1,0,0,0,300,4268,1,0,0,0,302,4297,1,0,0,0,304,4299, + 1,0,0,0,306,4303,1,0,0,0,308,4305,1,0,0,0,310,4313,1,0,0,0,312,4351, + 1,0,0,0,314,4365,1,0,0,0,316,4373,1,0,0,0,318,4377,1,0,0,0,320,4386, + 1,0,0,0,322,4400,1,0,0,0,324,4403,1,0,0,0,326,4421,1,0,0,0,328,4425, + 1,0,0,0,330,4441,1,0,0,0,332,4443,1,0,0,0,334,4455,1,0,0,0,336,4459, + 1,0,0,0,338,4476,1,0,0,0,340,4493,1,0,0,0,342,4496,1,0,0,0,344,4506, + 1,0,0,0,346,4510,1,0,0,0,348,4520,1,0,0,0,350,4523,1,0,0,0,352,4528, + 1,0,0,0,354,4548,1,0,0,0,356,4550,1,0,0,0,358,4567,1,0,0,0,360,4576, + 1,0,0,0,362,4585,1,0,0,0,364,4587,1,0,0,0,366,4601,1,0,0,0,368,4615, + 1,0,0,0,370,4630,1,0,0,0,372,4639,1,0,0,0,374,4664,1,0,0,0,376,4679, + 1,0,0,0,378,4698,1,0,0,0,380,4728,1,0,0,0,382,4730,1,0,0,0,384,4732, + 1,0,0,0,386,4734,1,0,0,0,388,4749,1,0,0,0,390,4778,1,0,0,0,392,4780, + 1,0,0,0,394,4782,1,0,0,0,396,4784,1,0,0,0,398,4799,1,0,0,0,400,4801, + 1,0,0,0,402,4868,1,0,0,0,404,4870,1,0,0,0,406,4876,1,0,0,0,408,4903, + 1,0,0,0,410,4917,1,0,0,0,412,4928,1,0,0,0,414,4930,1,0,0,0,416,4936, + 1,0,0,0,418,4946,1,0,0,0,420,4950,1,0,0,0,422,4957,1,0,0,0,424,4961, + 1,0,0,0,426,4967,1,0,0,0,428,4974,1,0,0,0,430,4980,1,0,0,0,432,4986, + 1,0,0,0,434,4991,1,0,0,0,436,5036,1,0,0,0,438,5057,1,0,0,0,440,5082, + 1,0,0,0,442,5085,1,0,0,0,444,5091,1,0,0,0,446,5107,1,0,0,0,448,5122, + 1,0,0,0,450,5128,1,0,0,0,452,5158,1,0,0,0,454,5160,1,0,0,0,456,5167, + 1,0,0,0,458,5179,1,0,0,0,460,5185,1,0,0,0,462,5210,1,0,0,0,464,5214, + 1,0,0,0,466,5218,1,0,0,0,468,5229,1,0,0,0,470,5237,1,0,0,0,472,5300, + 1,0,0,0,474,5359,1,0,0,0,476,5461,1,0,0,0,478,5471,1,0,0,0,480,5473, + 1,0,0,0,482,5491,1,0,0,0,484,5515,1,0,0,0,486,5539,1,0,0,0,488,5546, + 1,0,0,0,490,5566,1,0,0,0,492,5575,1,0,0,0,494,5637,1,0,0,0,496,5639, + 1,0,0,0,498,5643,1,0,0,0,500,5677,1,0,0,0,502,5679,1,0,0,0,504,5682, + 1,0,0,0,506,5746,1,0,0,0,508,5765,1,0,0,0,510,5792,1,0,0,0,512,5796, + 1,0,0,0,514,5817,1,0,0,0,516,5827,1,0,0,0,518,5837,1,0,0,0,520,5877, + 1,0,0,0,522,5879,1,0,0,0,524,5882,1,0,0,0,526,5912,1,0,0,0,528,5914, + 1,0,0,0,530,5917,1,0,0,0,532,6017,1,0,0,0,534,6035,1,0,0,0,536,6037, + 1,0,0,0,538,6089,1,0,0,0,540,6091,1,0,0,0,542,6100,1,0,0,0,544,6106, + 1,0,0,0,546,6113,1,0,0,0,548,6128,1,0,0,0,550,6137,1,0,0,0,552,6139, + 1,0,0,0,554,6160,1,0,0,0,556,6165,1,0,0,0,558,6175,1,0,0,0,560,6181, + 1,0,0,0,562,6215,1,0,0,0,564,6269,1,0,0,0,566,6455,1,0,0,0,568,6467, + 1,0,0,0,570,6483,1,0,0,0,572,6489,1,0,0,0,574,6508,1,0,0,0,576,6521, + 1,0,0,0,578,6535,1,0,0,0,580,6537,1,0,0,0,582,6540,1,0,0,0,584,6564, + 1,0,0,0,586,6576,1,0,0,0,588,6582,1,0,0,0,590,6594,1,0,0,0,592,6608, + 1,0,0,0,594,6610,1,0,0,0,596,6618,1,0,0,0,598,6626,1,0,0,0,600,6628, + 1,0,0,0,602,6630,1,0,0,0,604,6670,1,0,0,0,606,6677,1,0,0,0,608,6679, + 1,0,0,0,610,6702,1,0,0,0,612,6708,1,0,0,0,614,6718,1,0,0,0,616,6727, + 1,0,0,0,618,6730,1,0,0,0,620,6733,1,0,0,0,622,6754,1,0,0,0,624,6775, + 1,0,0,0,626,6783,1,0,0,0,628,6795,1,0,0,0,630,6803,1,0,0,0,632,6841, + 1,0,0,0,634,6853,1,0,0,0,636,6855,1,0,0,0,638,6857,1,0,0,0,640,6859, + 1,0,0,0,642,6861,1,0,0,0,644,6863,1,0,0,0,646,6865,1,0,0,0,648,6867, + 1,0,0,0,650,6869,1,0,0,0,652,6877,1,0,0,0,654,6879,1,0,0,0,656,6881, + 1,0,0,0,658,6883,1,0,0,0,660,6885,1,0,0,0,662,6893,1,0,0,0,664,6895, + 1,0,0,0,666,6905,1,0,0,0,668,6921,1,0,0,0,670,6923,1,0,0,0,672,6931, + 1,0,0,0,674,6949,1,0,0,0,676,6965,1,0,0,0,678,6976,1,0,0,0,680,6978, + 1,0,0,0,682,6980,1,0,0,0,684,6982,1,0,0,0,686,6984,1,0,0,0,688,6992, + 1,0,0,0,690,7002,1,0,0,0,692,7007,1,0,0,0,694,7011,1,0,0,0,696,7018, + 1,0,0,0,698,7020,1,0,0,0,700,7027,1,0,0,0,702,7029,1,0,0,0,704,7035, + 1,0,0,0,706,7037,1,0,0,0,708,7042,1,0,0,0,710,7044,1,0,0,0,712,7046, + 1,0,0,0,714,7064,1,0,0,0,716,7080,1,0,0,0,718,7082,1,0,0,0,720,7086, + 1,0,0,0,722,7097,1,0,0,0,724,7108,1,0,0,0,726,7114,1,0,0,0,728,7116, + 1,0,0,0,730,7120,1,0,0,0,732,7145,1,0,0,0,734,7147,1,0,0,0,736,7150, + 1,0,0,0,738,7155,1,0,0,0,740,7171,1,0,0,0,742,7299,1,0,0,0,744,7301, + 1,0,0,0,746,7334,1,0,0,0,748,7339,1,0,0,0,750,7343,1,0,0,0,752,7349, + 1,0,0,0,754,7357,1,0,0,0,756,7368,1,0,0,0,758,7376,1,0,0,0,760,7385, + 1,0,0,0,762,7398,1,0,0,0,764,7400,1,0,0,0,766,7408,1,0,0,0,768,7416, + 1,0,0,0,770,7450,1,0,0,0,772,7466,1,0,0,0,774,7468,1,0,0,0,776,7471, + 1,0,0,0,778,7475,1,0,0,0,780,7500,1,0,0,0,782,7681,1,0,0,0,784,7683, + 1,0,0,0,786,7702,1,0,0,0,788,7704,1,0,0,0,790,7767,1,0,0,0,792,7807, + 1,0,0,0,794,7809,1,0,0,0,796,7818,1,0,0,0,798,7829,1,0,0,0,800,7831, + 1,0,0,0,802,7834,1,0,0,0,804,7838,1,0,0,0,806,7840,1,0,0,0,808,7852, + 1,0,0,0,810,7854,1,0,0,0,812,7888,1,0,0,0,814,7890,1,0,0,0,816,7895, + 1,0,0,0,818,7906,1,0,0,0,820,7919,1,0,0,0,822,7930,1,0,0,0,824,8047, + 1,0,0,0,826,8069,1,0,0,0,828,8079,1,0,0,0,830,8088,1,0,0,0,832,8097, + 1,0,0,0,834,8106,1,0,0,0,836,8108,1,0,0,0,838,8115,1,0,0,0,840,8117, + 1,0,0,0,842,8119,1,0,0,0,844,8121,1,0,0,0,846,8123,1,0,0,0,848,8125, + 1,0,0,0,850,8127,1,0,0,0,852,8129,1,0,0,0,854,856,3,2,1,0,855,854, + 1,0,0,0,856,859,1,0,0,0,857,855,1,0,0,0,857,858,1,0,0,0,858,860, + 1,0,0,0,859,857,1,0,0,0,860,861,5,0,0,1,861,1,1,0,0,0,862,864,3, + 4,2,0,863,865,5,869,0,0,864,863,1,0,0,0,864,865,1,0,0,0,865,868, + 1,0,0,0,866,868,3,6,3,0,867,862,1,0,0,0,867,866,1,0,0,0,868,3,1, + 0,0,0,869,877,3,8,4,0,870,877,3,10,5,0,871,877,3,12,6,0,872,877, + 3,14,7,0,873,877,3,16,8,0,874,877,3,20,10,0,875,877,3,22,11,0,876, + 869,1,0,0,0,876,870,1,0,0,0,876,871,1,0,0,0,876,872,1,0,0,0,876, + 873,1,0,0,0,876,874,1,0,0,0,876,875,1,0,0,0,877,5,1,0,0,0,878,879, + 5,869,0,0,879,7,1,0,0,0,880,921,3,24,12,0,881,921,3,26,13,0,882, + 921,3,28,14,0,883,921,3,30,15,0,884,921,3,32,16,0,885,921,3,34,17, + 0,886,921,3,36,18,0,887,921,3,40,20,0,888,921,3,42,21,0,889,921, + 3,44,22,0,890,921,3,46,23,0,891,921,3,48,24,0,892,921,3,54,27,0, + 893,921,3,38,19,0,894,921,3,126,63,0,895,921,3,128,64,0,896,921, + 3,130,65,0,897,921,3,132,66,0,898,921,3,134,67,0,899,921,3,136,68, + 0,900,921,3,138,69,0,901,921,3,140,70,0,902,921,3,142,71,0,903,921, + 3,144,72,0,904,921,3,150,75,0,905,921,3,152,76,0,906,921,3,154,77, + 0,907,921,3,156,78,0,908,921,3,158,79,0,909,921,3,160,80,0,910,921, + 3,162,81,0,911,921,3,164,82,0,912,921,3,166,83,0,913,921,3,168,84, + 0,914,921,3,170,85,0,915,921,3,172,86,0,916,921,3,174,87,0,917,921, + 3,176,88,0,918,921,3,178,89,0,919,921,3,182,91,0,920,880,1,0,0,0, + 920,881,1,0,0,0,920,882,1,0,0,0,920,883,1,0,0,0,920,884,1,0,0,0, + 920,885,1,0,0,0,920,886,1,0,0,0,920,887,1,0,0,0,920,888,1,0,0,0, + 920,889,1,0,0,0,920,890,1,0,0,0,920,891,1,0,0,0,920,892,1,0,0,0, + 920,893,1,0,0,0,920,894,1,0,0,0,920,895,1,0,0,0,920,896,1,0,0,0, + 920,897,1,0,0,0,920,898,1,0,0,0,920,899,1,0,0,0,920,900,1,0,0,0, + 920,901,1,0,0,0,920,902,1,0,0,0,920,903,1,0,0,0,920,904,1,0,0,0, + 920,905,1,0,0,0,920,906,1,0,0,0,920,907,1,0,0,0,920,908,1,0,0,0, + 920,909,1,0,0,0,920,910,1,0,0,0,920,911,1,0,0,0,920,912,1,0,0,0, + 920,913,1,0,0,0,920,914,1,0,0,0,920,915,1,0,0,0,920,916,1,0,0,0, + 920,917,1,0,0,0,920,918,1,0,0,0,920,919,1,0,0,0,921,9,1,0,0,0,922, + 940,3,210,105,0,923,940,3,212,106,0,924,940,3,192,96,0,925,940,3, + 220,110,0,926,940,3,186,93,0,927,940,3,208,104,0,928,940,3,184,92, + 0,929,940,3,198,99,0,930,940,3,202,101,0,931,940,3,204,102,0,932, + 940,3,206,103,0,933,940,3,188,94,0,934,940,3,190,95,0,935,940,3, + 252,126,0,936,940,3,222,111,0,937,940,3,626,313,0,938,940,3,628, + 314,0,939,922,1,0,0,0,939,923,1,0,0,0,939,924,1,0,0,0,939,925,1, + 0,0,0,939,926,1,0,0,0,939,927,1,0,0,0,939,928,1,0,0,0,939,929,1, + 0,0,0,939,930,1,0,0,0,939,931,1,0,0,0,939,932,1,0,0,0,939,933,1, + 0,0,0,939,934,1,0,0,0,939,935,1,0,0,0,939,936,1,0,0,0,939,937,1, + 0,0,0,939,938,1,0,0,0,940,11,1,0,0,0,941,951,3,332,166,0,942,951, + 3,334,167,0,943,951,3,336,168,0,944,951,3,338,169,0,945,951,3,340, + 170,0,946,951,3,342,171,0,947,951,3,344,172,0,948,951,3,346,173, + 0,949,951,3,348,174,0,950,941,1,0,0,0,950,942,1,0,0,0,950,943,1, + 0,0,0,950,944,1,0,0,0,950,945,1,0,0,0,950,946,1,0,0,0,950,947,1, + 0,0,0,950,948,1,0,0,0,950,949,1,0,0,0,951,13,1,0,0,0,952,967,3,364, + 182,0,953,967,3,366,183,0,954,967,3,368,184,0,955,967,3,370,185, + 0,956,967,3,372,186,0,957,967,3,374,187,0,958,967,3,376,188,0,959, + 967,3,378,189,0,960,967,3,414,207,0,961,967,3,416,208,0,962,967, + 3,418,209,0,963,967,3,420,210,0,964,967,3,422,211,0,965,967,3,424, + 212,0,966,952,1,0,0,0,966,953,1,0,0,0,966,954,1,0,0,0,966,955,1, + 0,0,0,966,956,1,0,0,0,966,957,1,0,0,0,966,958,1,0,0,0,966,959,1, + 0,0,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,15,1,0,0,0,968,972,3,426, + 213,0,969,972,3,428,214,0,970,972,3,430,215,0,971,968,1,0,0,0,971, + 969,1,0,0,0,971,970,1,0,0,0,972,17,1,0,0,0,973,984,3,434,217,0,974, + 984,3,436,218,0,975,984,3,438,219,0,976,984,3,442,221,0,977,984, + 3,444,222,0,978,984,3,446,223,0,979,984,3,450,225,0,980,984,3,440, + 220,0,981,984,3,448,224,0,982,984,3,452,226,0,983,973,1,0,0,0,983, + 974,1,0,0,0,983,975,1,0,0,0,983,976,1,0,0,0,983,977,1,0,0,0,983, + 978,1,0,0,0,983,979,1,0,0,0,983,980,1,0,0,0,983,981,1,0,0,0,983, + 982,1,0,0,0,984,19,1,0,0,0,985,1019,3,470,235,0,986,1019,3,472,236, + 0,987,1019,3,474,237,0,988,1019,3,476,238,0,989,1019,3,480,240,0, + 990,1019,3,492,246,0,991,1019,3,494,247,0,992,1019,3,482,241,0,993, + 1019,3,484,242,0,994,1019,3,486,243,0,995,1019,3,488,244,0,996,1019, + 3,538,269,0,997,1019,3,540,270,0,998,1019,3,542,271,0,999,1019,3, + 544,272,0,1000,1019,3,546,273,0,1001,1019,3,552,276,0,1002,1019, + 3,556,278,0,1003,1019,3,558,279,0,1004,1019,3,560,280,0,1005,1019, + 3,562,281,0,1006,1019,3,564,282,0,1007,1019,3,566,283,0,1008,1019, + 3,580,290,0,1009,1019,3,582,291,0,1010,1019,3,584,292,0,1011,1019, + 3,586,293,0,1012,1019,3,588,294,0,1013,1019,3,590,295,0,1014,1019, + 3,594,297,0,1015,1019,3,596,298,0,1016,1019,3,598,299,0,1017,1019, + 3,600,300,0,1018,985,1,0,0,0,1018,986,1,0,0,0,1018,987,1,0,0,0,1018, + 988,1,0,0,0,1018,989,1,0,0,0,1018,990,1,0,0,0,1018,991,1,0,0,0,1018, + 992,1,0,0,0,1018,993,1,0,0,0,1018,994,1,0,0,0,1018,995,1,0,0,0,1018, + 996,1,0,0,0,1018,997,1,0,0,0,1018,998,1,0,0,0,1018,999,1,0,0,0,1018, + 1000,1,0,0,0,1018,1001,1,0,0,0,1018,1002,1,0,0,0,1018,1003,1,0,0, + 0,1018,1004,1,0,0,0,1018,1005,1,0,0,0,1018,1006,1,0,0,0,1018,1007, + 1,0,0,0,1018,1008,1,0,0,0,1018,1009,1,0,0,0,1018,1010,1,0,0,0,1018, + 1011,1,0,0,0,1018,1012,1,0,0,0,1018,1013,1,0,0,0,1018,1014,1,0,0, + 0,1018,1015,1,0,0,0,1018,1016,1,0,0,0,1018,1017,1,0,0,0,1019,21, + 1,0,0,0,1020,1029,3,612,306,0,1021,1029,3,610,305,0,1022,1029,3, + 614,307,0,1023,1029,3,616,308,0,1024,1029,3,618,309,0,1025,1029, + 3,620,310,0,1026,1029,3,622,311,0,1027,1029,3,630,315,0,1028,1020, + 1,0,0,0,1028,1021,1,0,0,0,1028,1022,1,0,0,0,1028,1023,1,0,0,0,1028, + 1024,1,0,0,0,1028,1025,1,0,0,0,1028,1026,1,0,0,0,1028,1027,1,0,0, + 0,1029,23,1,0,0,0,1030,1031,5,34,0,0,1031,1033,7,0,0,0,1032,1034, + 3,776,388,0,1033,1032,1,0,0,0,1033,1034,1,0,0,0,1034,1035,1,0,0, + 0,1035,1039,3,636,318,0,1036,1038,3,56,28,0,1037,1036,1,0,0,0,1038, + 1041,1,0,0,0,1039,1037,1,0,0,0,1039,1040,1,0,0,0,1040,25,1,0,0,0, + 1041,1039,1,0,0,0,1042,1044,5,34,0,0,1043,1045,3,62,31,0,1044,1043, + 1,0,0,0,1044,1045,1,0,0,0,1045,1046,1,0,0,0,1046,1048,5,385,0,0, + 1047,1049,3,776,388,0,1048,1047,1,0,0,0,1048,1049,1,0,0,0,1049,1050, + 1,0,0,0,1050,1051,3,718,359,0,1051,1052,5,119,0,0,1052,1053,5,590, + 0,0,1053,1060,3,64,32,0,1054,1055,5,119,0,0,1055,1057,5,343,0,0, + 1056,1058,5,114,0,0,1057,1056,1,0,0,0,1057,1058,1,0,0,0,1058,1059, + 1,0,0,0,1059,1061,5,541,0,0,1060,1054,1,0,0,0,1060,1061,1,0,0,0, + 1061,1063,1,0,0,0,1062,1064,3,72,36,0,1063,1062,1,0,0,0,1063,1064, + 1,0,0,0,1064,1067,1,0,0,0,1065,1066,5,340,0,0,1066,1068,5,882,0, + 0,1067,1065,1,0,0,0,1067,1068,1,0,0,0,1068,1069,1,0,0,0,1069,1070, + 5,371,0,0,1070,1071,3,432,216,0,1071,27,1,0,0,0,1072,1074,5,34,0, + 0,1073,1075,7,1,0,0,1074,1073,1,0,0,0,1074,1075,1,0,0,0,1075,1077, + 1,0,0,0,1076,1078,7,2,0,0,1077,1076,1,0,0,0,1077,1078,1,0,0,0,1078, + 1079,1,0,0,0,1079,1080,5,82,0,0,1080,1082,3,648,324,0,1081,1083, + 3,74,37,0,1082,1081,1,0,0,0,1082,1083,1,0,0,0,1083,1084,1,0,0,0, + 1084,1085,5,119,0,0,1085,1086,3,662,331,0,1086,1090,3,754,377,0, + 1087,1089,3,76,38,0,1088,1087,1,0,0,0,1089,1092,1,0,0,0,1090,1088, + 1,0,0,0,1090,1091,1,0,0,0,1091,1105,1,0,0,0,1092,1090,1,0,0,0,1093, + 1095,5,308,0,0,1094,1096,5,857,0,0,1095,1094,1,0,0,0,1095,1096,1, + 0,0,0,1096,1097,1,0,0,0,1097,1104,7,3,0,0,1098,1100,5,104,0,0,1099, + 1101,5,857,0,0,1100,1099,1,0,0,0,1100,1101,1,0,0,0,1101,1102,1,0, + 0,0,1102,1104,7,4,0,0,1103,1093,1,0,0,0,1103,1098,1,0,0,0,1104,1107, + 1,0,0,0,1105,1103,1,0,0,0,1105,1106,1,0,0,0,1106,29,1,0,0,0,1107, + 1105,1,0,0,0,1108,1109,5,34,0,0,1109,1110,5,451,0,0,1110,1111,5, + 74,0,0,1111,1112,3,722,361,0,1112,1113,5,6,0,0,1113,1114,5,671,0, + 0,1114,1120,5,882,0,0,1115,1117,5,428,0,0,1116,1118,5,857,0,0,1117, + 1116,1,0,0,0,1117,1118,1,0,0,0,1118,1119,1,0,0,0,1119,1121,3,730, + 365,0,1120,1115,1,0,0,0,1120,1121,1,0,0,0,1121,1127,1,0,0,0,1122, + 1124,5,672,0,0,1123,1125,5,857,0,0,1124,1123,1,0,0,0,1124,1125,1, + 0,0,0,1125,1126,1,0,0,0,1126,1128,3,730,365,0,1127,1122,1,0,0,0, + 1127,1128,1,0,0,0,1128,1134,1,0,0,0,1129,1131,5,553,0,0,1130,1132, + 5,857,0,0,1131,1130,1,0,0,0,1131,1132,1,0,0,0,1132,1133,1,0,0,0, + 1133,1135,3,730,365,0,1134,1129,1,0,0,0,1134,1135,1,0,0,0,1135,1141, + 1,0,0,0,1136,1138,5,504,0,0,1137,1139,5,857,0,0,1138,1137,1,0,0, + 0,1138,1139,1,0,0,0,1139,1140,1,0,0,0,1140,1142,3,722,361,0,1141, + 1136,1,0,0,0,1141,1142,1,0,0,0,1142,1144,1,0,0,0,1143,1145,5,687, + 0,0,1144,1143,1,0,0,0,1144,1145,1,0,0,0,1145,1151,1,0,0,0,1146,1148, + 5,340,0,0,1147,1149,5,857,0,0,1148,1147,1,0,0,0,1148,1149,1,0,0, + 0,1149,1150,1,0,0,0,1150,1152,5,882,0,0,1151,1146,1,0,0,0,1151,1152, + 1,0,0,0,1152,1153,1,0,0,0,1153,1155,5,380,0,0,1154,1156,5,857,0, + 0,1155,1154,1,0,0,0,1155,1156,1,0,0,0,1156,1157,1,0,0,0,1157,1158, + 3,708,354,0,1158,31,1,0,0,0,1159,1161,5,34,0,0,1160,1162,3,62,31, + 0,1161,1160,1,0,0,0,1161,1162,1,0,0,0,1162,1163,1,0,0,0,1163,1165, + 5,132,0,0,1164,1166,3,776,388,0,1165,1164,1,0,0,0,1165,1166,1,0, + 0,0,1166,1167,1,0,0,0,1167,1168,3,718,359,0,1168,1170,5,866,0,0, + 1169,1171,3,78,39,0,1170,1169,1,0,0,0,1170,1171,1,0,0,0,1171,1176, + 1,0,0,0,1172,1173,5,868,0,0,1173,1175,3,78,39,0,1174,1172,1,0,0, + 0,1175,1178,1,0,0,0,1176,1174,1,0,0,0,1176,1177,1,0,0,0,1177,1179, + 1,0,0,0,1178,1176,1,0,0,0,1179,1183,5,867,0,0,1180,1182,3,82,41, + 0,1181,1180,1,0,0,0,1182,1185,1,0,0,0,1183,1181,1,0,0,0,1183,1184, + 1,0,0,0,1184,1186,1,0,0,0,1185,1183,1,0,0,0,1186,1187,3,432,216, + 0,1187,33,1,0,0,0,1188,1190,5,34,0,0,1189,1191,3,62,31,0,1190,1189, + 1,0,0,0,1190,1191,1,0,0,0,1191,1193,1,0,0,0,1192,1194,5,307,0,0, + 1193,1192,1,0,0,0,1193,1194,1,0,0,0,1194,1195,1,0,0,0,1195,1197, + 5,409,0,0,1196,1198,3,776,388,0,1197,1196,1,0,0,0,1197,1198,1,0, + 0,0,1198,1199,1,0,0,0,1199,1200,3,640,320,0,1200,1202,5,866,0,0, + 1201,1203,3,80,40,0,1202,1201,1,0,0,0,1202,1203,1,0,0,0,1203,1208, + 1,0,0,0,1204,1205,5,868,0,0,1205,1207,3,80,40,0,1206,1204,1,0,0, + 0,1207,1210,1,0,0,0,1208,1206,1,0,0,0,1208,1209,1,0,0,0,1209,1211, + 1,0,0,0,1210,1208,1,0,0,0,1211,1212,5,867,0,0,1212,1213,5,580,0, + 0,1213,1217,3,742,371,0,1214,1216,3,82,41,0,1215,1214,1,0,0,0,1216, + 1219,1,0,0,0,1217,1215,1,0,0,0,1217,1218,1,0,0,0,1218,1222,1,0,0, + 0,1219,1217,1,0,0,0,1220,1223,3,432,216,0,1221,1223,3,448,224,0, + 1222,1220,1,0,0,0,1222,1221,1,0,0,0,1223,35,1,0,0,0,1224,1226,5, + 34,0,0,1225,1227,5,307,0,0,1226,1225,1,0,0,0,1226,1227,1,0,0,0,1227, + 1228,1,0,0,0,1228,1230,5,409,0,0,1229,1231,3,776,388,0,1230,1229, + 1,0,0,0,1230,1231,1,0,0,0,1231,1232,1,0,0,0,1232,1233,3,640,320, + 0,1233,1234,5,580,0,0,1234,1235,7,5,0,0,1235,1236,5,603,0,0,1236, + 1237,5,882,0,0,1237,37,1,0,0,0,1238,1239,5,34,0,0,1239,1241,5,582, + 0,0,1240,1242,3,776,388,0,1241,1240,1,0,0,0,1241,1242,1,0,0,0,1242, + 1243,1,0,0,0,1243,1244,3,664,332,0,1244,39,1,0,0,0,1245,1246,5,34, + 0,0,1246,1247,5,592,0,0,1247,1248,3,722,361,0,1248,1249,5,67,0,0, + 1249,1250,5,360,0,0,1250,1251,5,692,0,0,1251,1252,7,6,0,0,1252,1253, + 5,518,0,0,1253,1254,5,866,0,0,1254,1259,3,84,42,0,1255,1256,5,868, + 0,0,1256,1258,3,84,42,0,1257,1255,1,0,0,0,1258,1261,1,0,0,0,1259, + 1257,1,0,0,0,1259,1260,1,0,0,0,1260,1262,1,0,0,0,1261,1259,1,0,0, + 0,1262,1263,5,867,0,0,1263,41,1,0,0,0,1264,1266,5,34,0,0,1265,1267, + 5,660,0,0,1266,1265,1,0,0,0,1266,1267,1,0,0,0,1267,1268,1,0,0,0, + 1268,1270,5,173,0,0,1269,1271,3,776,388,0,1270,1269,1,0,0,0,1270, + 1271,1,0,0,0,1271,1272,1,0,0,0,1272,1274,3,658,329,0,1273,1275,3, + 86,43,0,1274,1273,1,0,0,0,1274,1275,1,0,0,0,1275,1286,1,0,0,0,1276, + 1283,3,104,52,0,1277,1279,5,868,0,0,1278,1277,1,0,0,0,1278,1279, + 1,0,0,0,1279,1280,1,0,0,0,1280,1282,3,104,52,0,1281,1278,1,0,0,0, + 1282,1285,1,0,0,0,1283,1281,1,0,0,0,1283,1284,1,0,0,0,1284,1287, + 1,0,0,0,1285,1283,1,0,0,0,1286,1276,1,0,0,0,1286,1287,1,0,0,0,1287, + 1289,1,0,0,0,1288,1290,3,110,55,0,1289,1288,1,0,0,0,1289,1290,1, + 0,0,0,1290,1292,1,0,0,0,1291,1293,7,7,0,0,1292,1291,1,0,0,0,1292, + 1293,1,0,0,0,1293,1295,1,0,0,0,1294,1296,5,13,0,0,1295,1294,1,0, + 0,0,1295,1296,1,0,0,0,1296,1297,1,0,0,0,1297,1298,3,210,105,0,1298, + 1343,1,0,0,0,1299,1301,5,34,0,0,1300,1302,5,660,0,0,1301,1300,1, + 0,0,0,1301,1302,1,0,0,0,1302,1303,1,0,0,0,1303,1305,5,173,0,0,1304, + 1306,3,776,388,0,1305,1304,1,0,0,0,1305,1306,1,0,0,0,1306,1307,1, + 0,0,0,1307,1315,3,658,329,0,1308,1309,5,99,0,0,1309,1316,3,662,331, + 0,1310,1311,5,866,0,0,1311,1312,5,99,0,0,1312,1313,3,662,331,0,1313, + 1314,5,867,0,0,1314,1316,1,0,0,0,1315,1308,1,0,0,0,1315,1310,1,0, + 0,0,1316,1343,1,0,0,0,1317,1319,5,34,0,0,1318,1320,5,660,0,0,1319, + 1318,1,0,0,0,1319,1320,1,0,0,0,1320,1321,1,0,0,0,1321,1323,5,173, + 0,0,1322,1324,3,776,388,0,1323,1322,1,0,0,0,1323,1324,1,0,0,0,1324, + 1325,1,0,0,0,1325,1326,3,658,329,0,1326,1337,3,86,43,0,1327,1334, + 3,104,52,0,1328,1330,5,868,0,0,1329,1328,1,0,0,0,1329,1330,1,0,0, + 0,1330,1331,1,0,0,0,1331,1333,3,104,52,0,1332,1329,1,0,0,0,1333, + 1336,1,0,0,0,1334,1332,1,0,0,0,1334,1335,1,0,0,0,1335,1338,1,0,0, + 0,1336,1334,1,0,0,0,1337,1327,1,0,0,0,1337,1338,1,0,0,0,1338,1340, + 1,0,0,0,1339,1341,3,110,55,0,1340,1339,1,0,0,0,1340,1341,1,0,0,0, + 1341,1343,1,0,0,0,1342,1264,1,0,0,0,1342,1299,1,0,0,0,1342,1317, + 1,0,0,0,1343,43,1,0,0,0,1344,1346,5,34,0,0,1345,1347,5,180,0,0,1346, + 1345,1,0,0,0,1346,1347,1,0,0,0,1347,1348,1,0,0,0,1348,1349,5,658, + 0,0,1349,1353,3,680,340,0,1350,1351,5,6,0,0,1351,1352,5,361,0,0, + 1352,1354,5,882,0,0,1353,1350,1,0,0,0,1353,1354,1,0,0,0,1354,1360, + 1,0,0,0,1355,1357,5,314,0,0,1356,1358,5,857,0,0,1357,1356,1,0,0, + 0,1357,1358,1,0,0,0,1358,1359,1,0,0,0,1359,1361,3,730,365,0,1360, + 1355,1,0,0,0,1360,1361,1,0,0,0,1361,1365,1,0,0,0,1362,1363,5,399, + 0,0,1363,1364,5,857,0,0,1364,1366,3,730,365,0,1365,1362,1,0,0,0, + 1365,1366,1,0,0,0,1366,1372,1,0,0,0,1367,1369,5,380,0,0,1368,1370, + 5,857,0,0,1369,1368,1,0,0,0,1369,1370,1,0,0,0,1370,1371,1,0,0,0, + 1371,1373,3,708,354,0,1372,1367,1,0,0,0,1372,1373,1,0,0,0,1373,1379, + 1,0,0,0,1374,1376,5,825,0,0,1375,1377,5,857,0,0,1376,1375,1,0,0, + 0,1376,1377,1,0,0,0,1377,1378,1,0,0,0,1378,1380,5,882,0,0,1379,1374, + 1,0,0,0,1379,1380,1,0,0,0,1380,45,1,0,0,0,1381,1383,5,34,0,0,1382, + 1384,5,180,0,0,1383,1382,1,0,0,0,1383,1384,1,0,0,0,1384,1385,1,0, + 0,0,1385,1386,5,658,0,0,1386,1387,3,680,340,0,1387,1388,5,6,0,0, + 1388,1389,5,361,0,0,1389,1390,5,882,0,0,1390,1391,5,187,0,0,1391, + 1392,5,451,0,0,1392,1393,5,74,0,0,1393,1399,3,722,361,0,1394,1396, + 5,393,0,0,1395,1397,5,857,0,0,1396,1395,1,0,0,0,1396,1397,1,0,0, + 0,1397,1398,1,0,0,0,1398,1400,3,730,365,0,1399,1394,1,0,0,0,1399, + 1400,1,0,0,0,1400,1406,1,0,0,0,1401,1403,5,428,0,0,1402,1404,5,857, + 0,0,1403,1402,1,0,0,0,1403,1404,1,0,0,0,1404,1405,1,0,0,0,1405,1407, + 3,730,365,0,1406,1401,1,0,0,0,1406,1407,1,0,0,0,1407,1413,1,0,0, + 0,1408,1410,5,314,0,0,1409,1411,5,857,0,0,1410,1409,1,0,0,0,1410, + 1411,1,0,0,0,1411,1412,1,0,0,0,1412,1414,3,730,365,0,1413,1408,1, + 0,0,0,1413,1414,1,0,0,0,1414,1420,1,0,0,0,1415,1417,5,481,0,0,1416, + 1418,5,857,0,0,1417,1416,1,0,0,0,1417,1418,1,0,0,0,1418,1419,1,0, + 0,0,1419,1421,3,730,365,0,1420,1415,1,0,0,0,1420,1421,1,0,0,0,1421, + 1427,1,0,0,0,1422,1424,5,504,0,0,1423,1425,5,857,0,0,1424,1423,1, + 0,0,0,1424,1425,1,0,0,0,1425,1426,1,0,0,0,1426,1428,3,722,361,0, + 1427,1422,1,0,0,0,1427,1428,1,0,0,0,1428,1430,1,0,0,0,1429,1431, + 5,687,0,0,1430,1429,1,0,0,0,1430,1431,1,0,0,0,1431,1437,1,0,0,0, + 1432,1434,5,340,0,0,1433,1435,5,857,0,0,1434,1433,1,0,0,0,1434,1435, + 1,0,0,0,1435,1436,1,0,0,0,1436,1438,5,882,0,0,1437,1432,1,0,0,0, + 1437,1438,1,0,0,0,1438,1439,1,0,0,0,1439,1441,5,380,0,0,1440,1442, + 5,857,0,0,1441,1440,1,0,0,0,1441,1442,1,0,0,0,1442,1443,1,0,0,0, + 1443,1444,3,708,354,0,1444,47,1,0,0,0,1445,1447,5,34,0,0,1446,1448, + 3,62,31,0,1447,1446,1,0,0,0,1447,1448,1,0,0,0,1448,1450,1,0,0,0, + 1449,1451,3,776,388,0,1450,1449,1,0,0,0,1450,1451,1,0,0,0,1451,1452, + 1,0,0,0,1452,1454,5,178,0,0,1453,1455,3,776,388,0,1454,1453,1,0, + 0,0,1454,1455,1,0,0,0,1455,1456,1,0,0,0,1456,1457,3,718,359,0,1457, + 1458,7,8,0,0,1458,1459,7,9,0,0,1459,1460,5,119,0,0,1460,1461,3,662, + 331,0,1461,1462,5,65,0,0,1462,1463,5,52,0,0,1463,1466,5,586,0,0, + 1464,1465,7,10,0,0,1465,1467,3,718,359,0,1466,1464,1,0,0,0,1466, + 1467,1,0,0,0,1467,1468,1,0,0,0,1468,1469,3,432,216,0,1469,49,1,0, + 0,0,1470,1472,5,194,0,0,1471,1473,5,552,0,0,1472,1471,1,0,0,0,1472, + 1473,1,0,0,0,1473,1474,1,0,0,0,1474,1475,3,52,26,0,1475,51,1,0,0, + 0,1476,1488,3,722,361,0,1477,1478,5,866,0,0,1478,1483,3,722,361, + 0,1479,1480,5,868,0,0,1480,1482,3,722,361,0,1481,1479,1,0,0,0,1482, + 1485,1,0,0,0,1483,1481,1,0,0,0,1483,1484,1,0,0,0,1484,1486,1,0,0, + 0,1485,1483,1,0,0,0,1486,1487,5,867,0,0,1487,1489,1,0,0,0,1488,1477, + 1,0,0,0,1488,1489,1,0,0,0,1489,1490,1,0,0,0,1490,1491,5,13,0,0,1491, + 1492,5,866,0,0,1492,1493,3,10,5,0,1493,1496,5,867,0,0,1494,1495, + 5,868,0,0,1495,1497,3,52,26,0,1496,1494,1,0,0,0,1496,1497,1,0,0, + 0,1497,53,1,0,0,0,1498,1500,5,34,0,0,1499,1501,3,778,389,0,1500, + 1499,1,0,0,0,1500,1501,1,0,0,0,1501,1505,1,0,0,0,1502,1503,5,308, + 0,0,1503,1504,5,857,0,0,1504,1506,7,11,0,0,1505,1502,1,0,0,0,1505, + 1506,1,0,0,0,1506,1508,1,0,0,0,1507,1509,3,62,31,0,1508,1507,1,0, + 0,0,1508,1509,1,0,0,0,1509,1513,1,0,0,0,1510,1511,5,162,0,0,1511, + 1512,5,591,0,0,1512,1514,7,12,0,0,1513,1510,1,0,0,0,1513,1514,1, + 0,0,0,1514,1515,1,0,0,0,1515,1516,5,684,0,0,1516,1528,3,644,322, + 0,1517,1518,5,866,0,0,1518,1523,3,668,334,0,1519,1520,5,868,0,0, + 1520,1522,3,668,334,0,1521,1519,1,0,0,0,1522,1525,1,0,0,0,1523,1521, + 1,0,0,0,1523,1524,1,0,0,0,1524,1526,1,0,0,0,1525,1523,1,0,0,0,1526, + 1527,5,867,0,0,1527,1529,1,0,0,0,1528,1517,1,0,0,0,1528,1529,1,0, + 0,0,1529,1530,1,0,0,0,1530,1550,5,13,0,0,1531,1533,5,866,0,0,1532, + 1534,3,50,25,0,1533,1532,1,0,0,0,1533,1534,1,0,0,0,1534,1535,1,0, + 0,0,1535,1536,3,210,105,0,1536,1537,5,867,0,0,1537,1551,1,0,0,0, + 1538,1540,3,50,25,0,1539,1538,1,0,0,0,1539,1540,1,0,0,0,1540,1541, + 1,0,0,0,1541,1548,3,210,105,0,1542,1544,5,194,0,0,1543,1545,7,13, + 0,0,1544,1543,1,0,0,0,1544,1545,1,0,0,0,1545,1546,1,0,0,0,1546,1547, + 5,27,0,0,1547,1549,5,121,0,0,1548,1542,1,0,0,0,1548,1549,1,0,0,0, + 1549,1551,1,0,0,0,1550,1531,1,0,0,0,1550,1539,1,0,0,0,1551,55,1, + 0,0,0,1552,1554,5,42,0,0,1553,1552,1,0,0,0,1553,1554,1,0,0,0,1554, + 1555,1,0,0,0,1555,1557,3,58,29,0,1556,1558,5,857,0,0,1557,1556,1, + 0,0,0,1557,1558,1,0,0,0,1558,1561,1,0,0,0,1559,1562,3,704,352,0, + 1560,1562,5,42,0,0,1561,1559,1,0,0,0,1561,1560,1,0,0,0,1562,1586, + 1,0,0,0,1563,1565,5,42,0,0,1564,1563,1,0,0,0,1564,1565,1,0,0,0,1565, + 1566,1,0,0,0,1566,1568,5,28,0,0,1567,1569,5,857,0,0,1568,1567,1, + 0,0,0,1568,1569,1,0,0,0,1569,1570,1,0,0,0,1570,1586,3,706,353,0, + 1571,1573,5,42,0,0,1572,1571,1,0,0,0,1572,1573,1,0,0,0,1573,1574, + 1,0,0,0,1574,1576,5,376,0,0,1575,1577,5,857,0,0,1576,1575,1,0,0, + 0,1576,1577,1,0,0,0,1577,1578,1,0,0,0,1578,1586,5,882,0,0,1579,1580, + 5,135,0,0,1580,1582,5,515,0,0,1581,1583,5,857,0,0,1582,1581,1,0, + 0,0,1582,1583,1,0,0,0,1583,1584,1,0,0,0,1584,1586,7,14,0,0,1585, + 1553,1,0,0,0,1585,1564,1,0,0,0,1585,1572,1,0,0,0,1585,1579,1,0,0, + 0,1586,57,1,0,0,0,1587,1588,5,26,0,0,1588,1593,5,155,0,0,1589,1593, + 5,823,0,0,1590,1591,5,224,0,0,1591,1593,5,155,0,0,1592,1587,1,0, + 0,0,1592,1589,1,0,0,0,1592,1590,1,0,0,0,1593,59,1,0,0,0,1594,1597, + 7,15,0,0,1595,1596,5,866,0,0,1596,1598,5,867,0,0,1597,1595,1,0,0, + 0,1597,1598,1,0,0,0,1598,61,1,0,0,0,1599,1600,5,364,0,0,1600,1603, + 5,857,0,0,1601,1604,3,700,350,0,1602,1604,3,60,30,0,1603,1601,1, + 0,0,0,1603,1602,1,0,0,0,1604,63,1,0,0,0,1605,1606,5,311,0,0,1606, + 1610,3,66,33,0,1607,1609,3,68,34,0,1608,1607,1,0,0,0,1609,1612,1, + 0,0,0,1610,1608,1,0,0,0,1610,1611,1,0,0,0,1611,1640,1,0,0,0,1612, + 1610,1,0,0,0,1613,1616,5,387,0,0,1614,1617,3,728,364,0,1615,1617, + 3,820,410,0,1616,1614,1,0,0,0,1616,1615,1,0,0,0,1617,1618,1,0,0, + 0,1618,1627,3,70,35,0,1619,1620,5,641,0,0,1620,1624,3,66,33,0,1621, + 1623,3,68,34,0,1622,1621,1,0,0,0,1623,1626,1,0,0,0,1624,1622,1,0, + 0,0,1624,1625,1,0,0,0,1625,1628,1,0,0,0,1626,1624,1,0,0,0,1627,1619, + 1,0,0,0,1627,1628,1,0,0,0,1628,1637,1,0,0,0,1629,1630,5,379,0,0, + 1630,1634,3,66,33,0,1631,1633,3,68,34,0,1632,1631,1,0,0,0,1633,1636, + 1,0,0,0,1634,1632,1,0,0,0,1634,1635,1,0,0,0,1635,1638,1,0,0,0,1636, + 1634,1,0,0,0,1637,1629,1,0,0,0,1637,1638,1,0,0,0,1638,1640,1,0,0, + 0,1639,1605,1,0,0,0,1639,1613,1,0,0,0,1640,65,1,0,0,0,1641,1646, + 5,287,0,0,1642,1646,3,732,366,0,1643,1646,3,728,364,0,1644,1646, + 3,820,410,0,1645,1641,1,0,0,0,1645,1642,1,0,0,0,1645,1643,1,0,0, + 0,1645,1644,1,0,0,0,1646,67,1,0,0,0,1647,1648,5,853,0,0,1648,1651, + 5,87,0,0,1649,1652,3,728,364,0,1650,1652,3,820,410,0,1651,1649,1, + 0,0,0,1651,1650,1,0,0,0,1652,1653,1,0,0,0,1653,1654,3,70,35,0,1654, + 69,1,0,0,0,1655,1669,3,846,423,0,1656,1669,5,223,0,0,1657,1669,5, + 242,0,0,1658,1669,5,243,0,0,1659,1669,5,244,0,0,1660,1669,5,245, + 0,0,1661,1669,5,246,0,0,1662,1669,5,247,0,0,1663,1669,5,248,0,0, + 1664,1669,5,249,0,0,1665,1669,5,250,0,0,1666,1669,5,251,0,0,1667, + 1669,5,252,0,0,1668,1655,1,0,0,0,1668,1656,1,0,0,0,1668,1657,1,0, + 0,0,1668,1658,1,0,0,0,1668,1659,1,0,0,0,1668,1660,1,0,0,0,1668,1661, + 1,0,0,0,1668,1662,1,0,0,0,1668,1663,1,0,0,0,1668,1664,1,0,0,0,1668, + 1665,1,0,0,0,1668,1666,1,0,0,0,1668,1667,1,0,0,0,1669,71,1,0,0,0, + 1670,1676,5,375,0,0,1671,1676,5,368,0,0,1672,1673,5,368,0,0,1673, + 1674,5,119,0,0,1674,1676,5,598,0,0,1675,1670,1,0,0,0,1675,1671,1, + 0,0,0,1675,1672,1,0,0,0,1676,73,1,0,0,0,1677,1678,5,188,0,0,1678, + 1679,7,16,0,0,1679,75,1,0,0,0,1680,1682,5,443,0,0,1681,1683,5,857, + 0,0,1682,1681,1,0,0,0,1682,1683,1,0,0,0,1683,1684,1,0,0,0,1684,1703, + 3,730,365,0,1685,1703,3,74,37,0,1686,1687,5,194,0,0,1687,1688,5, + 525,0,0,1688,1703,3,722,361,0,1689,1690,5,340,0,0,1690,1703,5,882, + 0,0,1691,1703,7,17,0,0,1692,1694,5,825,0,0,1693,1695,5,857,0,0,1694, + 1693,1,0,0,0,1694,1695,1,0,0,0,1695,1696,1,0,0,0,1696,1703,5,882, + 0,0,1697,1699,5,833,0,0,1698,1700,5,857,0,0,1699,1698,1,0,0,0,1699, + 1700,1,0,0,0,1700,1701,1,0,0,0,1701,1703,5,882,0,0,1702,1680,1,0, + 0,0,1702,1685,1,0,0,0,1702,1686,1,0,0,0,1702,1689,1,0,0,0,1702,1691, + 1,0,0,0,1702,1692,1,0,0,0,1702,1697,1,0,0,0,1703,77,1,0,0,0,1704, + 1706,7,18,0,0,1705,1704,1,0,0,0,1705,1706,1,0,0,0,1706,1707,1,0, + 0,0,1707,1708,3,722,361,0,1708,1709,3,742,371,0,1709,79,1,0,0,0, + 1710,1711,3,722,361,0,1711,1712,3,742,371,0,1712,81,1,0,0,0,1713, + 1714,5,340,0,0,1714,1737,5,882,0,0,1715,1716,5,444,0,0,1716,1737, + 5,162,0,0,1717,1719,5,114,0,0,1718,1717,1,0,0,0,1718,1719,1,0,0, + 0,1719,1720,1,0,0,0,1720,1737,5,47,0,0,1721,1722,5,354,0,0,1722, + 1732,5,162,0,0,1723,1724,5,502,0,0,1724,1732,5,162,0,0,1725,1726, + 5,136,0,0,1726,1727,5,162,0,0,1727,1732,5,360,0,0,1728,1729,5,112, + 0,0,1729,1730,5,162,0,0,1730,1732,5,360,0,0,1731,1721,1,0,0,0,1731, + 1723,1,0,0,0,1731,1725,1,0,0,0,1731,1728,1,0,0,0,1732,1737,1,0,0, + 0,1733,1734,5,162,0,0,1734,1735,5,591,0,0,1735,1737,7,12,0,0,1736, + 1713,1,0,0,0,1736,1715,1,0,0,0,1736,1718,1,0,0,0,1736,1731,1,0,0, + 0,1736,1733,1,0,0,0,1737,83,1,0,0,0,1738,1739,5,421,0,0,1739,1753, + 5,882,0,0,1740,1741,5,39,0,0,1741,1753,5,882,0,0,1742,1743,5,678, + 0,0,1743,1753,5,882,0,0,1744,1745,5,529,0,0,1745,1753,5,882,0,0, + 1746,1747,5,601,0,0,1747,1753,5,882,0,0,1748,1749,5,519,0,0,1749, + 1753,5,882,0,0,1750,1751,5,537,0,0,1751,1753,3,728,364,0,1752,1738, + 1,0,0,0,1752,1740,1,0,0,0,1752,1742,1,0,0,0,1752,1744,1,0,0,0,1752, + 1746,1,0,0,0,1752,1748,1,0,0,0,1752,1750,1,0,0,0,1753,85,1,0,0,0, + 1754,1755,5,866,0,0,1755,1760,3,88,44,0,1756,1757,5,868,0,0,1757, + 1759,3,88,44,0,1758,1756,1,0,0,0,1759,1762,1,0,0,0,1760,1758,1,0, + 0,0,1760,1761,1,0,0,0,1761,1763,1,0,0,0,1762,1760,1,0,0,0,1763,1764, + 5,867,0,0,1764,87,1,0,0,0,1765,1766,3,668,334,0,1766,1767,3,94,47, + 0,1767,1849,1,0,0,0,1768,1770,7,19,0,0,1769,1771,3,652,326,0,1770, + 1769,1,0,0,0,1770,1771,1,0,0,0,1771,1773,1,0,0,0,1772,1774,3,74, + 37,0,1773,1772,1,0,0,0,1773,1774,1,0,0,0,1774,1775,1,0,0,0,1775, + 1779,3,754,377,0,1776,1778,3,76,38,0,1777,1776,1,0,0,0,1778,1781, + 1,0,0,0,1779,1777,1,0,0,0,1779,1780,1,0,0,0,1780,1849,1,0,0,0,1781, + 1779,1,0,0,0,1782,1784,7,20,0,0,1783,1785,7,19,0,0,1784,1783,1,0, + 0,0,1784,1785,1,0,0,0,1785,1787,1,0,0,0,1786,1788,3,652,326,0,1787, + 1786,1,0,0,0,1787,1788,1,0,0,0,1788,1789,1,0,0,0,1789,1793,3,754, + 377,0,1790,1792,3,76,38,0,1791,1790,1,0,0,0,1792,1795,1,0,0,0,1793, + 1791,1,0,0,0,1793,1794,1,0,0,0,1794,1849,1,0,0,0,1795,1793,1,0,0, + 0,1796,1798,3,92,46,0,1797,1796,1,0,0,0,1797,1798,1,0,0,0,1798,1799, + 1,0,0,0,1799,1800,5,131,0,0,1800,1802,5,92,0,0,1801,1803,3,74,37, + 0,1802,1801,1,0,0,0,1802,1803,1,0,0,0,1803,1804,1,0,0,0,1804,1808, + 3,754,377,0,1805,1807,3,76,38,0,1806,1805,1,0,0,0,1807,1810,1,0, + 0,0,1808,1806,1,0,0,0,1808,1809,1,0,0,0,1809,1849,1,0,0,0,1810,1808, + 1,0,0,0,1811,1813,3,92,46,0,1812,1811,1,0,0,0,1812,1813,1,0,0,0, + 1813,1814,1,0,0,0,1814,1816,5,182,0,0,1815,1817,7,19,0,0,1816,1815, + 1,0,0,0,1816,1817,1,0,0,0,1817,1819,1,0,0,0,1818,1820,3,652,326, + 0,1819,1818,1,0,0,0,1819,1820,1,0,0,0,1820,1822,1,0,0,0,1821,1823, + 3,74,37,0,1822,1821,1,0,0,0,1822,1823,1,0,0,0,1823,1824,1,0,0,0, + 1824,1828,3,754,377,0,1825,1827,3,76,38,0,1826,1825,1,0,0,0,1827, + 1830,1,0,0,0,1828,1826,1,0,0,0,1828,1829,1,0,0,0,1829,1849,1,0,0, + 0,1830,1828,1,0,0,0,1831,1833,3,92,46,0,1832,1831,1,0,0,0,1832,1833, + 1,0,0,0,1833,1834,1,0,0,0,1834,1835,5,67,0,0,1835,1837,5,92,0,0, + 1836,1838,3,652,326,0,1837,1836,1,0,0,0,1837,1838,1,0,0,0,1838,1839, + 1,0,0,0,1839,1840,3,754,377,0,1840,1841,3,98,49,0,1841,1849,1,0, + 0,0,1842,1843,5,27,0,0,1843,1844,5,866,0,0,1844,1845,3,820,410,0, + 1845,1846,5,867,0,0,1846,1849,1,0,0,0,1847,1849,3,90,45,0,1848,1765, + 1,0,0,0,1848,1768,1,0,0,0,1848,1782,1,0,0,0,1848,1797,1,0,0,0,1848, + 1812,1,0,0,0,1848,1832,1,0,0,0,1848,1842,1,0,0,0,1848,1847,1,0,0, + 0,1849,89,1,0,0,0,1850,1852,3,92,46,0,1851,1850,1,0,0,0,1851,1852, + 1,0,0,0,1852,1853,1,0,0,0,1853,1854,5,27,0,0,1854,1855,5,866,0,0, + 1855,1856,3,820,410,0,1856,1861,5,867,0,0,1857,1859,5,114,0,0,1858, + 1857,1,0,0,0,1858,1859,1,0,0,0,1859,1860,1,0,0,0,1860,1862,5,57, + 0,0,1861,1858,1,0,0,0,1861,1862,1,0,0,0,1862,91,1,0,0,0,1863,1865, + 5,31,0,0,1864,1866,3,722,361,0,1865,1864,1,0,0,0,1865,1866,1,0,0, + 0,1866,93,1,0,0,0,1867,1871,3,742,371,0,1868,1870,3,96,48,0,1869, + 1868,1,0,0,0,1870,1873,1,0,0,0,1871,1869,1,0,0,0,1871,1872,1,0,0, + 0,1872,95,1,0,0,0,1873,1871,1,0,0,0,1874,1918,3,738,369,0,1875,1876, + 5,42,0,0,1876,1918,3,770,385,0,1877,1918,5,686,0,0,1878,1918,5,435, + 0,0,1879,1884,5,315,0,0,1880,1881,5,119,0,0,1881,1882,5,185,0,0, + 1882,1884,3,772,386,0,1883,1879,1,0,0,0,1883,1880,1,0,0,0,1884,1918, + 1,0,0,0,1885,1887,5,131,0,0,1886,1885,1,0,0,0,1886,1887,1,0,0,0, + 1887,1888,1,0,0,0,1888,1918,5,92,0,0,1889,1891,5,182,0,0,1890,1892, + 5,92,0,0,1891,1890,1,0,0,0,1891,1892,1,0,0,0,1892,1918,1,0,0,0,1893, + 1894,5,340,0,0,1894,1918,5,882,0,0,1895,1896,5,338,0,0,1896,1918, + 7,21,0,0,1897,1898,5,647,0,0,1898,1918,7,22,0,0,1899,1918,3,98,49, + 0,1900,1901,5,28,0,0,1901,1918,3,706,353,0,1902,1903,5,71,0,0,1903, + 1905,5,9,0,0,1904,1902,1,0,0,0,1904,1905,1,0,0,0,1905,1906,1,0,0, + 0,1906,1907,5,13,0,0,1907,1908,5,866,0,0,1908,1909,3,820,410,0,1909, + 1911,5,867,0,0,1910,1912,7,23,0,0,1911,1910,1,0,0,0,1911,1912,1, + 0,0,0,1912,1918,1,0,0,0,1913,1914,5,241,0,0,1914,1915,5,42,0,0,1915, + 1918,5,682,0,0,1916,1918,3,90,45,0,1917,1874,1,0,0,0,1917,1875,1, + 0,0,0,1917,1877,1,0,0,0,1917,1878,1,0,0,0,1917,1883,1,0,0,0,1917, + 1886,1,0,0,0,1917,1889,1,0,0,0,1917,1893,1,0,0,0,1917,1895,1,0,0, + 0,1917,1897,1,0,0,0,1917,1899,1,0,0,0,1917,1900,1,0,0,0,1917,1904, + 1,0,0,0,1917,1913,1,0,0,0,1917,1916,1,0,0,0,1918,97,1,0,0,0,1919, + 1920,5,138,0,0,1920,1922,3,662,331,0,1921,1923,3,754,377,0,1922, + 1921,1,0,0,0,1922,1923,1,0,0,0,1923,1926,1,0,0,0,1924,1925,5,110, + 0,0,1925,1927,7,24,0,0,1926,1924,1,0,0,0,1926,1927,1,0,0,0,1927, + 1929,1,0,0,0,1928,1930,3,100,50,0,1929,1928,1,0,0,0,1929,1930,1, + 0,0,0,1930,99,1,0,0,0,1931,1932,5,119,0,0,1932,1933,5,44,0,0,1933, + 1937,3,102,51,0,1934,1935,5,119,0,0,1935,1936,5,185,0,0,1936,1938, + 3,102,51,0,1937,1934,1,0,0,0,1937,1938,1,0,0,0,1938,1948,1,0,0,0, + 1939,1940,5,119,0,0,1940,1941,5,185,0,0,1941,1945,3,102,51,0,1942, + 1943,5,119,0,0,1943,1944,5,44,0,0,1944,1946,3,102,51,0,1945,1942, + 1,0,0,0,1945,1946,1,0,0,0,1946,1948,1,0,0,0,1947,1931,1,0,0,0,1947, + 1939,1,0,0,0,1948,101,1,0,0,0,1949,1958,5,146,0,0,1950,1958,5,22, + 0,0,1951,1952,5,155,0,0,1952,1958,5,116,0,0,1953,1954,5,502,0,0, + 1954,1958,5,305,0,0,1955,1956,5,155,0,0,1956,1958,5,42,0,0,1957, + 1949,1,0,0,0,1957,1950,1,0,0,0,1957,1951,1,0,0,0,1957,1953,1,0,0, + 0,1957,1955,1,0,0,0,1958,103,1,0,0,0,1959,1961,5,380,0,0,1960,1962, + 5,857,0,0,1961,1960,1,0,0,0,1961,1962,1,0,0,0,1962,1964,1,0,0,0, + 1963,1965,3,708,354,0,1964,1963,1,0,0,0,1964,1965,1,0,0,0,1965,2145, + 1,0,0,0,1966,1968,5,825,0,0,1967,1969,5,857,0,0,1968,1967,1,0,0, + 0,1968,1969,1,0,0,0,1969,1970,1,0,0,0,1970,2145,5,882,0,0,1971,1973, + 5,314,0,0,1972,1974,5,857,0,0,1973,1972,1,0,0,0,1973,1974,1,0,0, + 0,1974,1975,1,0,0,0,1975,2145,3,728,364,0,1976,1978,5,315,0,0,1977, + 1979,5,857,0,0,1978,1977,1,0,0,0,1978,1979,1,0,0,0,1979,1980,1,0, + 0,0,1980,2145,3,728,364,0,1981,1983,5,316,0,0,1982,1984,5,857,0, + 0,1983,1982,1,0,0,0,1983,1984,1,0,0,0,1984,1985,1,0,0,0,1985,2145, + 3,728,364,0,1986,1988,5,42,0,0,1987,1986,1,0,0,0,1987,1988,1,0,0, + 0,1988,1989,1,0,0,0,1989,1991,3,58,29,0,1990,1992,5,857,0,0,1991, + 1990,1,0,0,0,1991,1992,1,0,0,0,1992,1995,1,0,0,0,1993,1996,3,704, + 352,0,1994,1996,5,42,0,0,1995,1993,1,0,0,0,1995,1994,1,0,0,0,1996, + 2145,1,0,0,0,1997,1999,7,25,0,0,1998,2000,5,857,0,0,1999,1998,1, + 0,0,0,1999,2000,1,0,0,0,2000,2001,1,0,0,0,2001,2145,7,26,0,0,2002, + 2004,5,42,0,0,2003,2002,1,0,0,0,2003,2004,1,0,0,0,2004,2005,1,0, + 0,0,2005,2007,5,28,0,0,2006,2008,5,857,0,0,2007,2006,1,0,0,0,2007, + 2008,1,0,0,0,2008,2009,1,0,0,0,2009,2145,3,706,353,0,2010,2012,5, + 340,0,0,2011,2013,5,857,0,0,2012,2011,1,0,0,0,2012,2013,1,0,0,0, + 2013,2014,1,0,0,0,2014,2145,5,882,0,0,2015,2017,5,346,0,0,2016,2018, + 5,857,0,0,2017,2016,1,0,0,0,2017,2018,1,0,0,0,2018,2019,1,0,0,0, + 2019,2145,7,27,0,0,2020,2022,5,349,0,0,2021,2023,5,857,0,0,2022, + 2021,1,0,0,0,2022,2023,1,0,0,0,2023,2024,1,0,0,0,2024,2145,5,882, + 0,0,2025,2026,7,28,0,0,2026,2028,5,367,0,0,2027,2029,5,857,0,0,2028, + 2027,1,0,0,0,2028,2029,1,0,0,0,2029,2030,1,0,0,0,2030,2145,5,882, + 0,0,2031,2033,5,365,0,0,2032,2034,5,857,0,0,2033,2032,1,0,0,0,2033, + 2034,1,0,0,0,2034,2035,1,0,0,0,2035,2145,7,26,0,0,2036,2038,5,376, + 0,0,2037,2039,5,857,0,0,2038,2037,1,0,0,0,2038,2039,1,0,0,0,2039, + 2040,1,0,0,0,2040,2145,5,882,0,0,2041,2043,7,29,0,0,2042,2044,5, + 857,0,0,2043,2042,1,0,0,0,2043,2044,1,0,0,0,2044,2045,1,0,0,0,2045, + 2145,7,26,0,0,2046,2048,7,30,0,0,2047,2049,5,857,0,0,2048,2047,1, + 0,0,0,2048,2049,1,0,0,0,2049,2050,1,0,0,0,2050,2145,3,728,364,0, + 2051,2053,5,377,0,0,2052,2054,5,857,0,0,2053,2052,1,0,0,0,2053,2054, + 1,0,0,0,2054,2055,1,0,0,0,2055,2145,3,728,364,0,2056,2057,5,82,0, + 0,2057,2059,5,367,0,0,2058,2060,5,857,0,0,2059,2058,1,0,0,0,2059, + 2060,1,0,0,0,2060,2061,1,0,0,0,2061,2145,5,882,0,0,2062,2064,5,431, + 0,0,2063,2065,5,857,0,0,2064,2063,1,0,0,0,2064,2065,1,0,0,0,2065, + 2066,1,0,0,0,2066,2145,7,31,0,0,2067,2069,5,443,0,0,2068,2070,5, + 857,0,0,2069,2068,1,0,0,0,2069,2070,1,0,0,0,2070,2071,1,0,0,0,2071, + 2145,3,730,365,0,2072,2074,5,480,0,0,2073,2075,5,857,0,0,2074,2073, + 1,0,0,0,2074,2075,1,0,0,0,2075,2076,1,0,0,0,2076,2145,3,728,364, + 0,2077,2079,5,490,0,0,2078,2080,5,857,0,0,2079,2078,1,0,0,0,2079, + 2080,1,0,0,0,2080,2081,1,0,0,0,2081,2145,3,728,364,0,2082,2084,5, + 520,0,0,2083,2085,5,857,0,0,2084,2083,1,0,0,0,2084,2085,1,0,0,0, + 2085,2086,1,0,0,0,2086,2145,7,14,0,0,2087,2089,5,529,0,0,2088,2090, + 5,857,0,0,2089,2088,1,0,0,0,2089,2090,1,0,0,0,2090,2091,1,0,0,0, + 2091,2145,5,882,0,0,2092,2094,5,588,0,0,2093,2095,5,857,0,0,2094, + 2093,1,0,0,0,2094,2095,1,0,0,0,2095,2096,1,0,0,0,2096,2145,7,32, + 0,0,2097,2098,5,640,0,0,2098,2145,5,664,0,0,2099,2101,5,833,0,0, + 2100,2102,5,857,0,0,2101,2100,1,0,0,0,2101,2102,1,0,0,0,2102,2103, + 1,0,0,0,2103,2145,5,882,0,0,2104,2106,5,642,0,0,2105,2107,5,857, + 0,0,2106,2105,1,0,0,0,2106,2107,1,0,0,0,2107,2108,1,0,0,0,2108,2145, + 7,14,0,0,2109,2111,5,643,0,0,2110,2112,5,857,0,0,2111,2110,1,0,0, + 0,2111,2112,1,0,0,0,2112,2113,1,0,0,0,2113,2145,7,14,0,0,2114,2116, + 5,644,0,0,2115,2117,5,857,0,0,2116,2115,1,0,0,0,2116,2117,1,0,0, + 0,2117,2120,1,0,0,0,2118,2121,5,42,0,0,2119,2121,3,728,364,0,2120, + 2118,1,0,0,0,2120,2119,1,0,0,0,2121,2145,1,0,0,0,2122,2123,5,658, + 0,0,2123,2125,3,682,341,0,2124,2126,3,108,54,0,2125,2124,1,0,0,0, + 2125,2126,1,0,0,0,2126,2145,1,0,0,0,2127,2128,5,659,0,0,2128,2129, + 5,857,0,0,2129,2145,3,106,53,0,2130,2145,3,108,54,0,2131,2133,5, + 665,0,0,2132,2134,5,857,0,0,2133,2132,1,0,0,0,2133,2134,1,0,0,0, + 2134,2135,1,0,0,0,2135,2145,7,26,0,0,2136,2138,5,181,0,0,2137,2139, + 5,857,0,0,2138,2137,1,0,0,0,2138,2139,1,0,0,0,2139,2140,1,0,0,0, + 2140,2141,5,866,0,0,2141,2142,3,660,330,0,2142,2143,5,867,0,0,2143, + 2145,1,0,0,0,2144,1959,1,0,0,0,2144,1966,1,0,0,0,2144,1971,1,0,0, + 0,2144,1976,1,0,0,0,2144,1981,1,0,0,0,2144,1987,1,0,0,0,2144,1997, + 1,0,0,0,2144,2003,1,0,0,0,2144,2010,1,0,0,0,2144,2015,1,0,0,0,2144, + 2020,1,0,0,0,2144,2025,1,0,0,0,2144,2031,1,0,0,0,2144,2036,1,0,0, + 0,2144,2041,1,0,0,0,2144,2046,1,0,0,0,2144,2051,1,0,0,0,2144,2056, + 1,0,0,0,2144,2062,1,0,0,0,2144,2067,1,0,0,0,2144,2072,1,0,0,0,2144, + 2077,1,0,0,0,2144,2082,1,0,0,0,2144,2087,1,0,0,0,2144,2092,1,0,0, + 0,2144,2097,1,0,0,0,2144,2099,1,0,0,0,2144,2104,1,0,0,0,2144,2109, + 1,0,0,0,2144,2114,1,0,0,0,2144,2122,1,0,0,0,2144,2127,1,0,0,0,2144, + 2130,1,0,0,0,2144,2131,1,0,0,0,2144,2136,1,0,0,0,2145,105,1,0,0, + 0,2146,2147,7,33,0,0,2147,107,1,0,0,0,2148,2149,5,647,0,0,2149,2150, + 7,22,0,0,2150,109,1,0,0,0,2151,2152,5,130,0,0,2152,2153,5,20,0,0, + 2153,2156,3,112,56,0,2154,2155,5,528,0,0,2155,2157,3,728,364,0,2156, + 2154,1,0,0,0,2156,2157,1,0,0,0,2157,2165,1,0,0,0,2158,2159,5,652, + 0,0,2159,2160,5,20,0,0,2160,2163,3,114,57,0,2161,2162,5,653,0,0, + 2162,2164,3,728,364,0,2163,2161,1,0,0,0,2163,2164,1,0,0,0,2164,2166, + 1,0,0,0,2165,2158,1,0,0,0,2165,2166,1,0,0,0,2166,2178,1,0,0,0,2167, + 2168,5,866,0,0,2168,2173,3,116,58,0,2169,2170,5,868,0,0,2170,2172, + 3,116,58,0,2171,2169,1,0,0,0,2172,2175,1,0,0,0,2173,2171,1,0,0,0, + 2173,2174,1,0,0,0,2174,2176,1,0,0,0,2175,2173,1,0,0,0,2176,2177, + 5,867,0,0,2177,2179,1,0,0,0,2178,2167,1,0,0,0,2178,2179,1,0,0,0, + 2179,111,1,0,0,0,2180,2182,5,101,0,0,2181,2180,1,0,0,0,2181,2182, + 1,0,0,0,2182,2183,1,0,0,0,2183,2184,5,418,0,0,2184,2185,5,866,0, + 0,2185,2186,3,820,410,0,2186,2187,5,867,0,0,2187,2227,1,0,0,0,2188, + 2190,5,101,0,0,2189,2188,1,0,0,0,2189,2190,1,0,0,0,2190,2191,1,0, + 0,0,2191,2195,5,92,0,0,2192,2193,5,308,0,0,2193,2194,5,857,0,0,2194, + 2196,7,34,0,0,2195,2192,1,0,0,0,2195,2196,1,0,0,0,2196,2197,1,0, + 0,0,2197,2199,5,866,0,0,2198,2200,3,670,335,0,2199,2198,1,0,0,0, + 2199,2200,1,0,0,0,2200,2201,1,0,0,0,2201,2227,5,867,0,0,2202,2212, + 5,134,0,0,2203,2204,5,866,0,0,2204,2205,3,820,410,0,2205,2206,5, + 867,0,0,2206,2213,1,0,0,0,2207,2208,5,337,0,0,2208,2209,5,866,0, + 0,2209,2210,3,670,335,0,2210,2211,5,867,0,0,2211,2213,1,0,0,0,2212, + 2203,1,0,0,0,2212,2207,1,0,0,0,2213,2227,1,0,0,0,2214,2224,5,449, + 0,0,2215,2216,5,866,0,0,2216,2217,3,820,410,0,2217,2218,5,867,0, + 0,2218,2225,1,0,0,0,2219,2220,5,337,0,0,2220,2221,5,866,0,0,2221, + 2222,3,670,335,0,2222,2223,5,867,0,0,2223,2225,1,0,0,0,2224,2215, + 1,0,0,0,2224,2219,1,0,0,0,2225,2227,1,0,0,0,2226,2181,1,0,0,0,2226, + 2189,1,0,0,0,2226,2202,1,0,0,0,2226,2214,1,0,0,0,2227,113,1,0,0, + 0,2228,2230,5,101,0,0,2229,2228,1,0,0,0,2229,2230,1,0,0,0,2230,2231, + 1,0,0,0,2231,2232,5,418,0,0,2232,2233,5,866,0,0,2233,2234,3,820, + 410,0,2234,2235,5,867,0,0,2235,2250,1,0,0,0,2236,2238,5,101,0,0, + 2237,2236,1,0,0,0,2237,2238,1,0,0,0,2238,2239,1,0,0,0,2239,2243, + 5,92,0,0,2240,2241,5,308,0,0,2241,2242,5,857,0,0,2242,2244,7,34, + 0,0,2243,2240,1,0,0,0,2243,2244,1,0,0,0,2244,2245,1,0,0,0,2245,2246, + 5,866,0,0,2246,2247,3,670,335,0,2247,2248,5,867,0,0,2248,2250,1, + 0,0,0,2249,2229,1,0,0,0,2249,2237,1,0,0,0,2250,115,1,0,0,0,2251, + 2252,5,130,0,0,2252,2253,3,688,344,0,2253,2254,5,189,0,0,2254,2255, + 5,447,0,0,2255,2256,5,662,0,0,2256,2257,5,866,0,0,2257,2262,3,118, + 59,0,2258,2259,5,868,0,0,2259,2261,3,118,59,0,2260,2258,1,0,0,0, + 2261,2264,1,0,0,0,2262,2260,1,0,0,0,2262,2263,1,0,0,0,2263,2265, + 1,0,0,0,2264,2262,1,0,0,0,2265,2269,5,867,0,0,2266,2268,3,124,62, + 0,2267,2266,1,0,0,0,2268,2271,1,0,0,0,2269,2267,1,0,0,0,2269,2270, + 1,0,0,0,2270,2283,1,0,0,0,2271,2269,1,0,0,0,2272,2273,5,866,0,0, + 2273,2278,3,122,61,0,2274,2275,5,868,0,0,2275,2277,3,122,61,0,2276, + 2274,1,0,0,0,2277,2280,1,0,0,0,2278,2276,1,0,0,0,2278,2279,1,0,0, + 0,2279,2281,1,0,0,0,2280,2278,1,0,0,0,2281,2282,5,867,0,0,2282,2284, + 1,0,0,0,2283,2272,1,0,0,0,2283,2284,1,0,0,0,2284,2398,1,0,0,0,2285, + 2286,5,130,0,0,2286,2287,3,688,344,0,2287,2288,5,189,0,0,2288,2289, + 5,447,0,0,2289,2290,5,662,0,0,2290,2294,3,118,59,0,2291,2293,3,124, + 62,0,2292,2291,1,0,0,0,2293,2296,1,0,0,0,2294,2292,1,0,0,0,2294, + 2295,1,0,0,0,2295,2308,1,0,0,0,2296,2294,1,0,0,0,2297,2298,5,866, + 0,0,2298,2303,3,122,61,0,2299,2300,5,868,0,0,2300,2302,3,122,61, + 0,2301,2299,1,0,0,0,2302,2305,1,0,0,0,2303,2301,1,0,0,0,2303,2304, + 1,0,0,0,2304,2306,1,0,0,0,2305,2303,1,0,0,0,2306,2307,5,867,0,0, + 2307,2309,1,0,0,0,2308,2297,1,0,0,0,2308,2309,1,0,0,0,2309,2398, + 1,0,0,0,2310,2311,5,130,0,0,2311,2312,3,688,344,0,2312,2313,5,189, + 0,0,2313,2314,5,80,0,0,2314,2315,5,866,0,0,2315,2320,3,118,59,0, + 2316,2317,5,868,0,0,2317,2319,3,118,59,0,2318,2316,1,0,0,0,2319, + 2322,1,0,0,0,2320,2318,1,0,0,0,2320,2321,1,0,0,0,2321,2323,1,0,0, + 0,2322,2320,1,0,0,0,2323,2327,5,867,0,0,2324,2326,3,124,62,0,2325, + 2324,1,0,0,0,2326,2329,1,0,0,0,2327,2325,1,0,0,0,2327,2328,1,0,0, + 0,2328,2341,1,0,0,0,2329,2327,1,0,0,0,2330,2331,5,866,0,0,2331,2336, + 3,122,61,0,2332,2333,5,868,0,0,2333,2335,3,122,61,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, + 2339,1,0,0,0,2338,2336,1,0,0,0,2339,2340,5,867,0,0,2340,2342,1,0, + 0,0,2341,2330,1,0,0,0,2341,2342,1,0,0,0,2342,2398,1,0,0,0,2343,2344, + 5,130,0,0,2344,2345,3,688,344,0,2345,2346,5,189,0,0,2346,2347,5, + 80,0,0,2347,2348,5,866,0,0,2348,2353,3,120,60,0,2349,2350,5,868, + 0,0,2350,2352,3,120,60,0,2351,2349,1,0,0,0,2352,2355,1,0,0,0,2353, + 2351,1,0,0,0,2353,2354,1,0,0,0,2354,2356,1,0,0,0,2355,2353,1,0,0, + 0,2356,2360,5,867,0,0,2357,2359,3,124,62,0,2358,2357,1,0,0,0,2359, + 2362,1,0,0,0,2360,2358,1,0,0,0,2360,2361,1,0,0,0,2361,2374,1,0,0, + 0,2362,2360,1,0,0,0,2363,2364,5,866,0,0,2364,2369,3,122,61,0,2365, + 2366,5,868,0,0,2366,2368,3,122,61,0,2367,2365,1,0,0,0,2368,2371, + 1,0,0,0,2369,2367,1,0,0,0,2369,2370,1,0,0,0,2370,2372,1,0,0,0,2371, + 2369,1,0,0,0,2372,2373,5,867,0,0,2373,2375,1,0,0,0,2374,2363,1,0, + 0,0,2374,2375,1,0,0,0,2375,2398,1,0,0,0,2376,2377,5,130,0,0,2377, + 2381,3,688,344,0,2378,2380,3,124,62,0,2379,2378,1,0,0,0,2380,2383, + 1,0,0,0,2381,2379,1,0,0,0,2381,2382,1,0,0,0,2382,2395,1,0,0,0,2383, + 2381,1,0,0,0,2384,2385,5,866,0,0,2385,2390,3,122,61,0,2386,2387, + 5,868,0,0,2387,2389,3,122,61,0,2388,2386,1,0,0,0,2389,2392,1,0,0, + 0,2390,2388,1,0,0,0,2390,2391,1,0,0,0,2391,2393,1,0,0,0,2392,2390, + 1,0,0,0,2393,2394,5,867,0,0,2394,2396,1,0,0,0,2395,2384,1,0,0,0, + 2395,2396,1,0,0,0,2396,2398,1,0,0,0,2397,2251,1,0,0,0,2397,2285, + 1,0,0,0,2397,2310,1,0,0,0,2397,2343,1,0,0,0,2397,2376,1,0,0,0,2398, + 117,1,0,0,0,2399,2403,3,740,370,0,2400,2403,3,820,410,0,2401,2403, + 5,111,0,0,2402,2399,1,0,0,0,2402,2400,1,0,0,0,2402,2401,1,0,0,0, + 2403,119,1,0,0,0,2404,2405,5,866,0,0,2405,2408,3,118,59,0,2406,2407, + 5,868,0,0,2407,2409,3,118,59,0,2408,2406,1,0,0,0,2409,2410,1,0,0, + 0,2410,2408,1,0,0,0,2410,2411,1,0,0,0,2411,2412,1,0,0,0,2412,2413, + 5,867,0,0,2413,121,1,0,0,0,2414,2415,5,652,0,0,2415,2419,3,722,361, + 0,2416,2418,3,124,62,0,2417,2416,1,0,0,0,2418,2421,1,0,0,0,2419, + 2417,1,0,0,0,2419,2420,1,0,0,0,2420,123,1,0,0,0,2421,2419,1,0,0, + 0,2422,2424,5,42,0,0,2423,2422,1,0,0,0,2423,2424,1,0,0,0,2424,2426, + 1,0,0,0,2425,2427,5,647,0,0,2426,2425,1,0,0,0,2426,2427,1,0,0,0, + 2427,2428,1,0,0,0,2428,2430,5,380,0,0,2429,2431,5,857,0,0,2430,2429, + 1,0,0,0,2430,2431,1,0,0,0,2431,2432,1,0,0,0,2432,2471,3,708,354, + 0,2433,2435,5,340,0,0,2434,2436,5,857,0,0,2435,2434,1,0,0,0,2435, + 2436,1,0,0,0,2436,2437,1,0,0,0,2437,2471,5,882,0,0,2438,2439,5,360, + 0,0,2439,2441,5,367,0,0,2440,2442,5,857,0,0,2441,2440,1,0,0,0,2441, + 2442,1,0,0,0,2442,2443,1,0,0,0,2443,2471,5,882,0,0,2444,2445,5,82, + 0,0,2445,2447,5,367,0,0,2446,2448,5,857,0,0,2447,2446,1,0,0,0,2447, + 2448,1,0,0,0,2448,2449,1,0,0,0,2449,2471,5,882,0,0,2450,2452,5,480, + 0,0,2451,2453,5,857,0,0,2452,2451,1,0,0,0,2452,2453,1,0,0,0,2453, + 2454,1,0,0,0,2454,2471,3,728,364,0,2455,2457,5,490,0,0,2456,2458, + 5,857,0,0,2457,2456,1,0,0,0,2457,2458,1,0,0,0,2458,2459,1,0,0,0, + 2459,2471,3,728,364,0,2460,2462,5,658,0,0,2461,2463,5,857,0,0,2462, + 2461,1,0,0,0,2462,2463,1,0,0,0,2463,2464,1,0,0,0,2464,2471,3,682, + 341,0,2465,2467,5,504,0,0,2466,2468,5,857,0,0,2467,2466,1,0,0,0, + 2467,2468,1,0,0,0,2468,2469,1,0,0,0,2469,2471,3,722,361,0,2470,2423, + 1,0,0,0,2470,2433,1,0,0,0,2470,2438,1,0,0,0,2470,2444,1,0,0,0,2470, + 2450,1,0,0,0,2470,2455,1,0,0,0,2470,2460,1,0,0,0,2470,2465,1,0,0, + 0,2471,125,1,0,0,0,2472,2473,5,8,0,0,2473,2475,7,0,0,0,2474,2476, + 3,638,319,0,2475,2474,1,0,0,0,2475,2476,1,0,0,0,2476,2478,1,0,0, + 0,2477,2479,3,56,28,0,2478,2477,1,0,0,0,2479,2480,1,0,0,0,2480,2478, + 1,0,0,0,2480,2481,1,0,0,0,2481,2491,1,0,0,0,2482,2483,5,8,0,0,2483, + 2484,7,0,0,0,2484,2485,3,638,319,0,2485,2486,5,677,0,0,2486,2487, + 5,360,0,0,2487,2488,5,367,0,0,2488,2489,5,496,0,0,2489,2491,1,0, + 0,0,2490,2472,1,0,0,0,2490,2482,1,0,0,0,2491,127,1,0,0,0,2492,2494, + 5,8,0,0,2493,2495,3,62,31,0,2494,2493,1,0,0,0,2494,2495,1,0,0,0, + 2495,2496,1,0,0,0,2496,2497,5,385,0,0,2497,2501,3,718,359,0,2498, + 2499,5,119,0,0,2499,2500,5,590,0,0,2500,2502,3,64,32,0,2501,2498, + 1,0,0,0,2501,2502,1,0,0,0,2502,2509,1,0,0,0,2503,2504,5,119,0,0, + 2504,2506,5,343,0,0,2505,2507,5,114,0,0,2506,2505,1,0,0,0,2506,2507, + 1,0,0,0,2507,2508,1,0,0,0,2508,2510,5,541,0,0,2509,2503,1,0,0,0, + 2509,2510,1,0,0,0,2510,2514,1,0,0,0,2511,2512,5,141,0,0,2512,2513, + 5,176,0,0,2513,2515,3,718,359,0,2514,2511,1,0,0,0,2514,2515,1,0, + 0,0,2515,2517,1,0,0,0,2516,2518,3,72,36,0,2517,2516,1,0,0,0,2517, + 2518,1,0,0,0,2518,2521,1,0,0,0,2519,2520,5,340,0,0,2520,2522,5,882, + 0,0,2521,2519,1,0,0,0,2521,2522,1,0,0,0,2522,2525,1,0,0,0,2523,2524, + 5,371,0,0,2524,2526,3,432,216,0,2525,2523,1,0,0,0,2525,2526,1,0, + 0,0,2526,129,1,0,0,0,2527,2528,5,8,0,0,2528,2529,5,409,0,0,2529, + 2533,3,642,321,0,2530,2532,3,82,41,0,2531,2530,1,0,0,0,2532,2535, + 1,0,0,0,2533,2531,1,0,0,0,2533,2534,1,0,0,0,2534,131,1,0,0,0,2535, + 2533,1,0,0,0,2536,2537,5,8,0,0,2537,2538,5,433,0,0,2538,2539,5,585, + 0,0,2539,2540,5,801,0,0,2540,2541,5,453,0,0,2541,2542,5,92,0,0,2542, + 133,1,0,0,0,2543,2544,5,8,0,0,2544,2545,5,451,0,0,2545,2546,5,74, + 0,0,2546,2547,3,722,361,0,2547,2548,5,6,0,0,2548,2549,5,671,0,0, + 2549,2555,5,882,0,0,2550,2552,5,428,0,0,2551,2553,5,857,0,0,2552, + 2551,1,0,0,0,2552,2553,1,0,0,0,2553,2554,1,0,0,0,2554,2556,3,730, + 365,0,2555,2550,1,0,0,0,2555,2556,1,0,0,0,2556,2558,1,0,0,0,2557, + 2559,5,687,0,0,2558,2557,1,0,0,0,2558,2559,1,0,0,0,2559,2560,1,0, + 0,0,2560,2562,5,380,0,0,2561,2563,5,857,0,0,2562,2561,1,0,0,0,2562, + 2563,1,0,0,0,2563,2564,1,0,0,0,2564,2565,3,708,354,0,2565,135,1, + 0,0,0,2566,2567,5,8,0,0,2567,2568,5,132,0,0,2568,2572,3,718,359, + 0,2569,2571,3,82,41,0,2570,2569,1,0,0,0,2571,2574,1,0,0,0,2572,2570, + 1,0,0,0,2572,2573,1,0,0,0,2573,137,1,0,0,0,2574,2572,1,0,0,0,2575, + 2576,5,8,0,0,2576,2577,5,592,0,0,2577,2578,3,722,361,0,2578,2579, + 5,518,0,0,2579,2580,5,866,0,0,2580,2585,3,84,42,0,2581,2582,5,868, + 0,0,2582,2584,3,84,42,0,2583,2581,1,0,0,0,2584,2587,1,0,0,0,2585, + 2583,1,0,0,0,2585,2586,1,0,0,0,2586,2588,1,0,0,0,2587,2585,1,0,0, + 0,2588,2589,5,867,0,0,2589,139,1,0,0,0,2590,2591,5,8,0,0,2591,2592, + 5,173,0,0,2592,2601,3,662,331,0,2593,2598,3,146,73,0,2594,2595,5, + 868,0,0,2595,2597,3,146,73,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,2602,1,0,0,0,2600,2598, + 1,0,0,0,2601,2593,1,0,0,0,2601,2602,1,0,0,0,2602,2610,1,0,0,0,2603, + 2607,3,148,74,0,2604,2606,3,148,74,0,2605,2604,1,0,0,0,2606,2609, + 1,0,0,0,2607,2605,1,0,0,0,2607,2608,1,0,0,0,2608,2611,1,0,0,0,2609, + 2607,1,0,0,0,2610,2603,1,0,0,0,2610,2611,1,0,0,0,2611,141,1,0,0, + 0,2612,2614,5,8,0,0,2613,2615,5,180,0,0,2614,2613,1,0,0,0,2614,2615, + 1,0,0,0,2615,2616,1,0,0,0,2616,2617,5,658,0,0,2617,2618,3,682,341, + 0,2618,2619,7,35,0,0,2619,2620,5,361,0,0,2620,2626,5,882,0,0,2621, + 2623,5,428,0,0,2622,2624,5,857,0,0,2623,2622,1,0,0,0,2623,2624,1, + 0,0,0,2624,2625,1,0,0,0,2625,2627,3,730,365,0,2626,2621,1,0,0,0, + 2626,2627,1,0,0,0,2627,2629,1,0,0,0,2628,2630,5,687,0,0,2629,2628, + 1,0,0,0,2629,2630,1,0,0,0,2630,2634,1,0,0,0,2631,2632,5,141,0,0, + 2632,2633,5,176,0,0,2633,2635,3,680,340,0,2634,2631,1,0,0,0,2634, + 2635,1,0,0,0,2635,2641,1,0,0,0,2636,2638,5,314,0,0,2637,2639,5,857, + 0,0,2638,2637,1,0,0,0,2638,2639,1,0,0,0,2639,2640,1,0,0,0,2640,2642, + 3,730,365,0,2641,2636,1,0,0,0,2641,2642,1,0,0,0,2642,2645,1,0,0, + 0,2643,2644,5,155,0,0,2644,2646,7,36,0,0,2645,2643,1,0,0,0,2645, + 2646,1,0,0,0,2646,2652,1,0,0,0,2647,2649,5,376,0,0,2648,2650,5,857, + 0,0,2649,2648,1,0,0,0,2649,2650,1,0,0,0,2650,2651,1,0,0,0,2651,2653, + 5,882,0,0,2652,2647,1,0,0,0,2652,2653,1,0,0,0,2653,2659,1,0,0,0, + 2654,2656,5,380,0,0,2655,2657,5,857,0,0,2656,2655,1,0,0,0,2656,2657, + 1,0,0,0,2657,2658,1,0,0,0,2658,2660,3,708,354,0,2659,2654,1,0,0, + 0,2659,2660,1,0,0,0,2660,2666,1,0,0,0,2661,2663,5,825,0,0,2662,2664, + 5,857,0,0,2663,2662,1,0,0,0,2663,2664,1,0,0,0,2664,2665,1,0,0,0, + 2665,2667,5,882,0,0,2666,2661,1,0,0,0,2666,2667,1,0,0,0,2667,143, + 1,0,0,0,2668,2672,5,8,0,0,2669,2670,5,308,0,0,2670,2671,5,857,0, + 0,2671,2673,7,11,0,0,2672,2669,1,0,0,0,2672,2673,1,0,0,0,2673,2675, + 1,0,0,0,2674,2676,3,62,31,0,2675,2674,1,0,0,0,2675,2676,1,0,0,0, + 2676,2680,1,0,0,0,2677,2678,5,162,0,0,2678,2679,5,591,0,0,2679,2681, + 7,12,0,0,2680,2677,1,0,0,0,2680,2681,1,0,0,0,2681,2682,1,0,0,0,2682, + 2683,5,684,0,0,2683,2688,3,646,323,0,2684,2685,5,866,0,0,2685,2686, + 3,670,335,0,2686,2687,5,867,0,0,2687,2689,1,0,0,0,2688,2684,1,0, + 0,0,2688,2689,1,0,0,0,2689,2690,1,0,0,0,2690,2691,5,13,0,0,2691, + 2698,3,210,105,0,2692,2694,5,194,0,0,2693,2695,7,13,0,0,2694,2693, + 1,0,0,0,2694,2695,1,0,0,0,2695,2696,1,0,0,0,2696,2697,5,27,0,0,2697, + 2699,5,121,0,0,2698,2692,1,0,0,0,2698,2699,1,0,0,0,2699,145,1,0, + 0,0,2700,2707,3,104,52,0,2701,2703,5,868,0,0,2702,2701,1,0,0,0,2702, + 2703,1,0,0,0,2703,2704,1,0,0,0,2704,2706,3,104,52,0,2705,2702,1, + 0,0,0,2706,2709,1,0,0,0,2707,2705,1,0,0,0,2707,2708,1,0,0,0,2708, + 2965,1,0,0,0,2709,2707,1,0,0,0,2710,2712,5,6,0,0,2711,2713,5,29, + 0,0,2712,2711,1,0,0,0,2712,2713,1,0,0,0,2713,2714,1,0,0,0,2714,2715, + 3,674,337,0,2715,2719,3,94,47,0,2716,2720,5,402,0,0,2717,2718,5, + 306,0,0,2718,2720,3,674,337,0,2719,2716,1,0,0,0,2719,2717,1,0,0, + 0,2719,2720,1,0,0,0,2720,2965,1,0,0,0,2721,2723,5,6,0,0,2722,2724, + 5,29,0,0,2723,2722,1,0,0,0,2723,2724,1,0,0,0,2724,2725,1,0,0,0,2725, + 2726,5,866,0,0,2726,2727,3,674,337,0,2727,2734,3,94,47,0,2728,2729, + 5,868,0,0,2729,2730,3,674,337,0,2730,2731,3,94,47,0,2731,2733,1, + 0,0,0,2732,2728,1,0,0,0,2733,2736,1,0,0,0,2734,2732,1,0,0,0,2734, + 2735,1,0,0,0,2735,2737,1,0,0,0,2736,2734,1,0,0,0,2737,2738,5,867, + 0,0,2738,2965,1,0,0,0,2739,2740,5,6,0,0,2740,2742,7,19,0,0,2741, + 2743,3,652,326,0,2742,2741,1,0,0,0,2742,2743,1,0,0,0,2743,2745,1, + 0,0,0,2744,2746,3,74,37,0,2745,2744,1,0,0,0,2745,2746,1,0,0,0,2746, + 2747,1,0,0,0,2747,2751,3,754,377,0,2748,2750,3,76,38,0,2749,2748, + 1,0,0,0,2750,2753,1,0,0,0,2751,2749,1,0,0,0,2751,2752,1,0,0,0,2752, + 2965,1,0,0,0,2753,2751,1,0,0,0,2754,2755,5,6,0,0,2755,2757,7,20, + 0,0,2756,2758,7,19,0,0,2757,2756,1,0,0,0,2757,2758,1,0,0,0,2758, + 2760,1,0,0,0,2759,2761,3,652,326,0,2760,2759,1,0,0,0,2760,2761,1, + 0,0,0,2761,2762,1,0,0,0,2762,2766,3,754,377,0,2763,2765,3,76,38, + 0,2764,2763,1,0,0,0,2765,2768,1,0,0,0,2766,2764,1,0,0,0,2766,2767, + 1,0,0,0,2767,2965,1,0,0,0,2768,2766,1,0,0,0,2769,2774,5,6,0,0,2770, + 2772,5,31,0,0,2771,2773,3,722,361,0,2772,2771,1,0,0,0,2772,2773, + 1,0,0,0,2773,2775,1,0,0,0,2774,2770,1,0,0,0,2774,2775,1,0,0,0,2775, + 2776,1,0,0,0,2776,2777,5,131,0,0,2777,2779,5,92,0,0,2778,2780,3, + 74,37,0,2779,2778,1,0,0,0,2779,2780,1,0,0,0,2780,2781,1,0,0,0,2781, + 2785,3,754,377,0,2782,2784,3,76,38,0,2783,2782,1,0,0,0,2784,2787, + 1,0,0,0,2785,2783,1,0,0,0,2785,2786,1,0,0,0,2786,2965,1,0,0,0,2787, + 2785,1,0,0,0,2788,2793,5,6,0,0,2789,2791,5,31,0,0,2790,2792,3,722, + 361,0,2791,2790,1,0,0,0,2791,2792,1,0,0,0,2792,2794,1,0,0,0,2793, + 2789,1,0,0,0,2793,2794,1,0,0,0,2794,2795,1,0,0,0,2795,2797,5,182, + 0,0,2796,2798,7,19,0,0,2797,2796,1,0,0,0,2797,2798,1,0,0,0,2798, + 2800,1,0,0,0,2799,2801,3,652,326,0,2800,2799,1,0,0,0,2800,2801,1, + 0,0,0,2801,2803,1,0,0,0,2802,2804,3,74,37,0,2803,2802,1,0,0,0,2803, + 2804,1,0,0,0,2804,2805,1,0,0,0,2805,2809,3,754,377,0,2806,2808,3, + 76,38,0,2807,2806,1,0,0,0,2808,2811,1,0,0,0,2809,2807,1,0,0,0,2809, + 2810,1,0,0,0,2810,2965,1,0,0,0,2811,2809,1,0,0,0,2812,2817,5,6,0, + 0,2813,2815,5,31,0,0,2814,2816,3,722,361,0,2815,2814,1,0,0,0,2815, + 2816,1,0,0,0,2816,2818,1,0,0,0,2817,2813,1,0,0,0,2817,2818,1,0,0, + 0,2818,2819,1,0,0,0,2819,2820,5,67,0,0,2820,2822,5,92,0,0,2821,2823, + 3,652,326,0,2822,2821,1,0,0,0,2822,2823,1,0,0,0,2823,2824,1,0,0, + 0,2824,2825,3,754,377,0,2825,2826,3,98,49,0,2826,2965,1,0,0,0,2827, + 2829,5,6,0,0,2828,2830,3,90,45,0,2829,2828,1,0,0,0,2829,2830,1,0, + 0,0,2830,2965,1,0,0,0,2831,2832,5,51,0,0,2832,2833,7,37,0,0,2833, + 2965,3,722,361,0,2834,2835,5,8,0,0,2835,2836,7,37,0,0,2836,2838, + 3,722,361,0,2837,2839,5,114,0,0,2838,2837,1,0,0,0,2838,2839,1,0, + 0,0,2839,2841,1,0,0,0,2840,2842,5,57,0,0,2841,2840,1,0,0,0,2841, + 2842,1,0,0,0,2842,2965,1,0,0,0,2843,2845,5,308,0,0,2844,2846,5,857, + 0,0,2845,2844,1,0,0,0,2845,2846,1,0,0,0,2846,2847,1,0,0,0,2847,2965, + 7,38,0,0,2848,2850,5,8,0,0,2849,2851,5,29,0,0,2850,2849,1,0,0,0, + 2850,2851,1,0,0,0,2851,2852,1,0,0,0,2852,2860,3,674,337,0,2853,2854, + 5,155,0,0,2854,2855,5,42,0,0,2855,2861,3,770,385,0,2856,2857,5,155, + 0,0,2857,2861,7,17,0,0,2858,2859,5,51,0,0,2859,2861,5,42,0,0,2860, + 2853,1,0,0,0,2860,2856,1,0,0,0,2860,2858,1,0,0,0,2861,2965,1,0,0, + 0,2862,2863,5,8,0,0,2863,2864,5,82,0,0,2864,2865,3,652,326,0,2865, + 2866,7,17,0,0,2866,2965,1,0,0,0,2867,2869,5,25,0,0,2868,2870,5,29, + 0,0,2869,2868,1,0,0,0,2869,2870,1,0,0,0,2870,2871,1,0,0,0,2871,2872, + 3,674,337,0,2872,2873,3,668,334,0,2873,2877,3,94,47,0,2874,2878, + 5,402,0,0,2875,2876,5,306,0,0,2876,2878,3,674,337,0,2877,2874,1, + 0,0,0,2877,2875,1,0,0,0,2877,2878,1,0,0,0,2878,2965,1,0,0,0,2879, + 2881,5,42,0,0,2880,2879,1,0,0,0,2880,2881,1,0,0,0,2881,2882,1,0, + 0,0,2882,2883,5,26,0,0,2883,2884,5,155,0,0,2884,2885,5,857,0,0,2885, + 2891,3,704,352,0,2886,2888,5,28,0,0,2887,2889,5,857,0,0,2888,2887, + 1,0,0,0,2888,2889,1,0,0,0,2889,2890,1,0,0,0,2890,2892,3,706,353, + 0,2891,2886,1,0,0,0,2891,2892,1,0,0,0,2892,2965,1,0,0,0,2893,2894, + 5,33,0,0,2894,2898,5,176,0,0,2895,2899,5,823,0,0,2896,2897,5,26, + 0,0,2897,2899,5,155,0,0,2898,2895,1,0,0,0,2898,2896,1,0,0,0,2899, + 2900,1,0,0,0,2900,2903,3,704,352,0,2901,2902,5,28,0,0,2902,2904, + 3,706,353,0,2903,2901,1,0,0,0,2903,2904,1,0,0,0,2904,2965,1,0,0, + 0,2905,2906,7,39,0,0,2906,2965,5,93,0,0,2907,2908,7,40,0,0,2908, + 2965,5,658,0,0,2909,2911,5,51,0,0,2910,2912,5,29,0,0,2911,2910,1, + 0,0,0,2911,2912,1,0,0,0,2912,2913,1,0,0,0,2913,2965,3,674,337,0, + 2914,2915,5,51,0,0,2915,2916,7,19,0,0,2916,2965,3,652,326,0,2917, + 2918,5,51,0,0,2918,2919,5,131,0,0,2919,2965,5,92,0,0,2920,2921,5, + 51,0,0,2921,2922,5,67,0,0,2922,2923,5,92,0,0,2923,2965,3,722,361, + 0,2924,2965,5,66,0,0,2925,2927,5,104,0,0,2926,2928,5,857,0,0,2927, + 2926,1,0,0,0,2927,2928,1,0,0,0,2928,2929,1,0,0,0,2929,2965,7,4,0, + 0,2930,2932,5,492,0,0,2931,2933,5,29,0,0,2932,2931,1,0,0,0,2932, + 2933,1,0,0,0,2933,2934,1,0,0,0,2934,2935,3,674,337,0,2935,2939,3, + 94,47,0,2936,2940,5,402,0,0,2937,2938,5,306,0,0,2938,2940,3,674, + 337,0,2939,2936,1,0,0,0,2939,2937,1,0,0,0,2939,2940,1,0,0,0,2940, + 2965,1,0,0,0,2941,2942,5,125,0,0,2942,2943,5,20,0,0,2943,2965,3, + 670,335,0,2944,2945,5,141,0,0,2945,2946,5,29,0,0,2946,2947,3,674, + 337,0,2947,2948,5,176,0,0,2948,2949,3,668,334,0,2949,2965,1,0,0, + 0,2950,2951,5,141,0,0,2951,2952,7,19,0,0,2952,2953,3,652,326,0,2953, + 2954,5,176,0,0,2954,2955,3,648,324,0,2955,2965,1,0,0,0,2956,2958, + 5,141,0,0,2957,2959,7,41,0,0,2958,2957,1,0,0,0,2958,2959,1,0,0,0, + 2959,2960,1,0,0,0,2960,2965,3,658,329,0,2961,2962,7,42,0,0,2962, + 2965,5,681,0,0,2963,2965,3,148,74,0,2964,2700,1,0,0,0,2964,2710, + 1,0,0,0,2964,2721,1,0,0,0,2964,2739,1,0,0,0,2964,2754,1,0,0,0,2964, + 2769,1,0,0,0,2964,2788,1,0,0,0,2964,2812,1,0,0,0,2964,2827,1,0,0, + 0,2964,2831,1,0,0,0,2964,2834,1,0,0,0,2964,2843,1,0,0,0,2964,2848, + 1,0,0,0,2964,2862,1,0,0,0,2964,2867,1,0,0,0,2964,2880,1,0,0,0,2964, + 2893,1,0,0,0,2964,2905,1,0,0,0,2964,2907,1,0,0,0,2964,2909,1,0,0, + 0,2964,2914,1,0,0,0,2964,2917,1,0,0,0,2964,2920,1,0,0,0,2964,2924, + 1,0,0,0,2964,2925,1,0,0,0,2964,2930,1,0,0,0,2964,2941,1,0,0,0,2964, + 2944,1,0,0,0,2964,2950,1,0,0,0,2964,2956,1,0,0,0,2964,2961,1,0,0, + 0,2964,2963,1,0,0,0,2965,147,1,0,0,0,2966,2967,5,6,0,0,2967,2968, + 5,130,0,0,2968,2969,5,866,0,0,2969,2974,3,116,58,0,2970,2971,5,868, + 0,0,2971,2973,3,116,58,0,2972,2970,1,0,0,0,2973,2976,1,0,0,0,2974, + 2972,1,0,0,0,2974,2975,1,0,0,0,2975,2977,1,0,0,0,2976,2974,1,0,0, + 0,2977,2978,5,867,0,0,2978,3065,1,0,0,0,2979,2980,5,51,0,0,2980, + 2981,5,130,0,0,2981,3065,3,686,343,0,2982,2983,5,369,0,0,2983,2986, + 5,130,0,0,2984,2987,3,686,343,0,2985,2987,5,7,0,0,2986,2984,1,0, + 0,0,2986,2985,1,0,0,0,2987,2988,1,0,0,0,2988,3065,5,658,0,0,2989, + 2990,5,425,0,0,2990,2993,5,130,0,0,2991,2994,3,686,343,0,2992,2994, + 5,7,0,0,2993,2991,1,0,0,0,2993,2992,1,0,0,0,2994,2995,1,0,0,0,2995, + 3065,5,658,0,0,2996,2997,5,668,0,0,2997,3000,5,130,0,0,2998,3001, + 3,686,343,0,2999,3001,5,7,0,0,3000,2998,1,0,0,0,3000,2999,1,0,0, + 0,3001,3065,1,0,0,0,3002,3003,5,335,0,0,3003,3004,5,130,0,0,3004, + 3065,3,728,364,0,3005,3006,5,561,0,0,3006,3007,5,130,0,0,3007,3008, + 3,686,343,0,3008,3009,5,88,0,0,3009,3010,5,866,0,0,3010,3015,3,116, + 58,0,3011,3012,5,868,0,0,3012,3014,3,116,58,0,3013,3011,1,0,0,0, + 3014,3017,1,0,0,0,3015,3013,1,0,0,0,3015,3016,1,0,0,0,3016,3018, + 1,0,0,0,3017,3015,1,0,0,0,3018,3019,5,867,0,0,3019,3065,1,0,0,0, + 3020,3021,5,388,0,0,3021,3022,5,130,0,0,3022,3023,3,688,344,0,3023, + 3024,5,194,0,0,3024,3025,5,173,0,0,3025,3028,3,662,331,0,3026,3027, + 7,42,0,0,3027,3029,5,681,0,0,3028,3026,1,0,0,0,3028,3029,1,0,0,0, + 3029,3065,1,0,0,0,3030,3031,5,10,0,0,3031,3034,5,130,0,0,3032,3035, + 3,686,343,0,3033,3035,5,7,0,0,3034,3032,1,0,0,0,3034,3033,1,0,0, + 0,3035,3065,1,0,0,0,3036,3037,5,27,0,0,3037,3040,5,130,0,0,3038, + 3041,3,686,343,0,3039,3041,5,7,0,0,3040,3038,1,0,0,0,3040,3039,1, + 0,0,0,3041,3065,1,0,0,0,3042,3043,5,120,0,0,3043,3046,5,130,0,0, + 3044,3047,3,686,343,0,3045,3047,5,7,0,0,3046,3044,1,0,0,0,3046,3045, + 1,0,0,0,3047,3065,1,0,0,0,3048,3049,5,550,0,0,3049,3052,5,130,0, + 0,3050,3053,3,686,343,0,3051,3053,5,7,0,0,3052,3050,1,0,0,0,3052, + 3051,1,0,0,0,3053,3065,1,0,0,0,3054,3055,5,562,0,0,3055,3058,5,130, + 0,0,3056,3059,3,686,343,0,3057,3059,5,7,0,0,3058,3056,1,0,0,0,3058, + 3057,1,0,0,0,3059,3065,1,0,0,0,3060,3061,5,560,0,0,3061,3065,5,527, + 0,0,3062,3063,5,677,0,0,3063,3065,5,527,0,0,3064,2966,1,0,0,0,3064, + 2979,1,0,0,0,3064,2982,1,0,0,0,3064,2989,1,0,0,0,3064,2996,1,0,0, + 0,3064,3002,1,0,0,0,3064,3005,1,0,0,0,3064,3020,1,0,0,0,3064,3030, + 1,0,0,0,3064,3036,1,0,0,0,3064,3042,1,0,0,0,3064,3048,1,0,0,0,3064, + 3054,1,0,0,0,3064,3060,1,0,0,0,3064,3062,1,0,0,0,3065,149,1,0,0, + 0,3066,3067,5,51,0,0,3067,3069,7,0,0,0,3068,3070,3,774,387,0,3069, + 3068,1,0,0,0,3069,3070,1,0,0,0,3070,3071,1,0,0,0,3071,3072,3,638, + 319,0,3072,151,1,0,0,0,3073,3074,5,51,0,0,3074,3076,5,385,0,0,3075, + 3077,3,774,387,0,3076,3075,1,0,0,0,3076,3077,1,0,0,0,3077,3078,1, + 0,0,0,3078,3079,3,718,359,0,3079,153,1,0,0,0,3080,3081,5,51,0,0, + 3081,3083,5,82,0,0,3082,3084,7,1,0,0,3083,3082,1,0,0,0,3083,3084, + 1,0,0,0,3084,3085,1,0,0,0,3085,3086,3,652,326,0,3086,3087,5,119, + 0,0,3087,3100,3,662,331,0,3088,3090,5,308,0,0,3089,3091,5,857,0, + 0,3090,3089,1,0,0,0,3090,3091,1,0,0,0,3091,3092,1,0,0,0,3092,3099, + 7,3,0,0,3093,3095,5,104,0,0,3094,3096,5,857,0,0,3095,3094,1,0,0, + 0,3095,3096,1,0,0,0,3096,3097,1,0,0,0,3097,3099,7,4,0,0,3098,3088, + 1,0,0,0,3098,3093,1,0,0,0,3099,3102,1,0,0,0,3100,3098,1,0,0,0,3100, + 3101,1,0,0,0,3101,155,1,0,0,0,3102,3100,1,0,0,0,3103,3104,5,51,0, + 0,3104,3105,5,451,0,0,3105,3106,5,74,0,0,3106,3107,3,722,361,0,3107, + 3109,5,380,0,0,3108,3110,5,857,0,0,3109,3108,1,0,0,0,3109,3110,1, + 0,0,0,3110,3111,1,0,0,0,3111,3112,3,708,354,0,3112,157,1,0,0,0,3113, + 3114,5,51,0,0,3114,3116,5,132,0,0,3115,3117,3,774,387,0,3116,3115, + 1,0,0,0,3116,3117,1,0,0,0,3117,3118,1,0,0,0,3118,3119,3,718,359, + 0,3119,159,1,0,0,0,3120,3121,5,51,0,0,3121,3123,5,409,0,0,3122,3124, + 3,774,387,0,3123,3122,1,0,0,0,3123,3124,1,0,0,0,3124,3125,1,0,0, + 0,3125,3126,3,642,321,0,3126,161,1,0,0,0,3127,3128,5,51,0,0,3128, + 3130,5,592,0,0,3129,3131,3,774,387,0,3130,3129,1,0,0,0,3130,3131, + 1,0,0,0,3131,3132,1,0,0,0,3132,3133,3,722,361,0,3133,163,1,0,0,0, + 3134,3135,5,51,0,0,3135,3136,5,161,0,0,3136,3137,5,137,0,0,3137, + 3139,5,835,0,0,3138,3140,3,774,387,0,3139,3138,1,0,0,0,3139,3140, + 1,0,0,0,3140,3141,1,0,0,0,3141,3142,5,883,0,0,3142,165,1,0,0,0,3143, + 3145,5,51,0,0,3144,3146,5,660,0,0,3145,3144,1,0,0,0,3145,3146,1, + 0,0,0,3146,3147,1,0,0,0,3147,3149,5,173,0,0,3148,3150,3,774,387, + 0,3149,3148,1,0,0,0,3149,3150,1,0,0,0,3150,3151,1,0,0,0,3151,3153, + 3,660,330,0,3152,3154,7,43,0,0,3153,3152,1,0,0,0,3153,3154,1,0,0, + 0,3154,167,1,0,0,0,3155,3157,5,51,0,0,3156,3158,5,180,0,0,3157,3156, + 1,0,0,0,3157,3158,1,0,0,0,3158,3159,1,0,0,0,3159,3160,5,658,0,0, + 3160,3166,3,682,341,0,3161,3163,5,380,0,0,3162,3164,5,857,0,0,3163, + 3162,1,0,0,0,3163,3164,1,0,0,0,3164,3165,1,0,0,0,3165,3167,3,708, + 354,0,3166,3161,1,0,0,0,3166,3167,1,0,0,0,3167,169,1,0,0,0,3168, + 3169,5,51,0,0,3169,3171,5,178,0,0,3170,3172,3,774,387,0,3171,3170, + 1,0,0,0,3171,3172,1,0,0,0,3172,3173,1,0,0,0,3173,3174,3,718,359, + 0,3174,171,1,0,0,0,3175,3176,5,51,0,0,3176,3178,5,684,0,0,3177,3179, + 3,774,387,0,3178,3177,1,0,0,0,3178,3179,1,0,0,0,3179,3180,1,0,0, + 0,3180,3185,3,646,323,0,3181,3182,5,868,0,0,3182,3184,3,646,323, + 0,3183,3181,1,0,0,0,3184,3187,1,0,0,0,3185,3183,1,0,0,0,3185,3186, + 1,0,0,0,3186,3189,1,0,0,0,3187,3185,1,0,0,0,3188,3190,7,43,0,0,3189, + 3188,1,0,0,0,3189,3190,1,0,0,0,3190,173,1,0,0,0,3191,3192,5,51,0, + 0,3192,3194,5,582,0,0,3193,3195,3,774,387,0,3194,3193,1,0,0,0,3194, + 3195,1,0,0,0,3195,3196,1,0,0,0,3196,3197,3,664,332,0,3197,175,1, + 0,0,0,3198,3199,5,155,0,0,3199,3200,5,42,0,0,3200,3204,5,582,0,0, + 3201,3205,5,505,0,0,3202,3205,5,7,0,0,3203,3205,3,664,332,0,3204, + 3201,1,0,0,0,3204,3202,1,0,0,0,3204,3203,1,0,0,0,3205,3206,1,0,0, + 0,3206,3207,5,176,0,0,3207,3212,3,666,333,0,3208,3209,5,868,0,0, + 3209,3211,3,666,333,0,3210,3208,1,0,0,0,3211,3214,1,0,0,0,3212,3210, + 1,0,0,0,3212,3213,1,0,0,0,3213,3219,1,0,0,0,3214,3212,1,0,0,0,3215, + 3216,5,155,0,0,3216,3217,5,582,0,0,3217,3219,3,478,239,0,3218,3198, + 1,0,0,0,3218,3215,1,0,0,0,3219,177,1,0,0,0,3220,3221,5,141,0,0,3221, + 3222,5,173,0,0,3222,3227,3,180,90,0,3223,3224,5,868,0,0,3224,3226, + 3,180,90,0,3225,3223,1,0,0,0,3226,3229,1,0,0,0,3227,3225,1,0,0,0, + 3227,3228,1,0,0,0,3228,179,1,0,0,0,3229,3227,1,0,0,0,3230,3231,3, + 662,331,0,3231,3232,5,176,0,0,3232,3233,3,658,329,0,3233,181,1,0, + 0,0,3234,3236,5,668,0,0,3235,3237,5,173,0,0,3236,3235,1,0,0,0,3236, + 3237,1,0,0,0,3237,3238,1,0,0,0,3238,3239,3,662,331,0,3239,183,1, + 0,0,0,3240,3241,5,21,0,0,3241,3248,3,718,359,0,3242,3245,5,866,0, + 0,3243,3246,3,764,382,0,3244,3246,3,756,378,0,3245,3243,1,0,0,0, + 3245,3244,1,0,0,0,3245,3246,1,0,0,0,3246,3247,1,0,0,0,3247,3249, + 5,867,0,0,3248,3242,1,0,0,0,3248,3249,1,0,0,0,3249,185,1,0,0,0,3250, + 3253,3,240,120,0,3251,3253,3,242,121,0,3252,3250,1,0,0,0,3252,3251, + 1,0,0,0,3253,187,1,0,0,0,3254,3255,5,371,0,0,3255,3256,3,756,378, + 0,3256,189,1,0,0,0,3257,3262,3,244,122,0,3258,3262,3,246,123,0,3259, + 3262,3,248,124,0,3260,3262,3,250,125,0,3261,3257,1,0,0,0,3261,3258, + 1,0,0,0,3261,3259,1,0,0,0,3261,3260,1,0,0,0,3262,191,1,0,0,0,3263, + 3265,5,86,0,0,3264,3266,7,44,0,0,3265,3264,1,0,0,0,3265,3266,1,0, + 0,0,3266,3268,1,0,0,0,3267,3269,5,79,0,0,3268,3267,1,0,0,0,3268, + 3269,1,0,0,0,3269,3271,1,0,0,0,3270,3272,5,88,0,0,3271,3270,1,0, + 0,0,3271,3272,1,0,0,0,3272,3273,1,0,0,0,3273,3280,3,662,331,0,3274, + 3275,5,130,0,0,3275,3277,5,866,0,0,3276,3278,3,686,343,0,3277,3276, + 1,0,0,0,3277,3278,1,0,0,0,3278,3279,1,0,0,0,3279,3281,5,867,0,0, + 3280,3274,1,0,0,0,3280,3281,1,0,0,0,3281,3293,1,0,0,0,3282,3284, + 3,270,135,0,3283,3282,1,0,0,0,3283,3284,1,0,0,0,3284,3287,1,0,0, + 0,3285,3288,3,758,379,0,3286,3288,3,196,98,0,3287,3285,1,0,0,0,3287, + 3286,1,0,0,0,3287,3288,1,0,0,0,3288,3290,1,0,0,0,3289,3291,3,194, + 97,0,3290,3289,1,0,0,0,3290,3291,1,0,0,0,3291,3294,1,0,0,0,3292, + 3294,3,232,116,0,3293,3283,1,0,0,0,3293,3292,1,0,0,0,3294,3296,1, + 0,0,0,3295,3297,3,194,97,0,3296,3295,1,0,0,0,3296,3297,1,0,0,0,3297, + 3310,1,0,0,0,3298,3299,5,119,0,0,3299,3300,5,373,0,0,3300,3301,5, + 92,0,0,3301,3302,5,185,0,0,3302,3307,3,234,117,0,3303,3304,5,868, + 0,0,3304,3306,3,234,117,0,3305,3303,1,0,0,0,3306,3309,1,0,0,0,3307, + 3305,1,0,0,0,3307,3308,1,0,0,0,3308,3311,1,0,0,0,3309,3307,1,0,0, + 0,3310,3298,1,0,0,0,3310,3311,1,0,0,0,3311,193,1,0,0,0,3312,3313, + 5,13,0,0,3313,3315,3,722,361,0,3314,3316,3,270,135,0,3315,3314,1, + 0,0,0,3315,3316,1,0,0,0,3316,195,1,0,0,0,3317,3322,3,210,105,0,3318, + 3319,5,173,0,0,3319,3322,3,662,331,0,3320,3322,3,230,115,0,3321, + 3317,1,0,0,0,3321,3318,1,0,0,0,3321,3320,1,0,0,0,3322,197,1,0,0, + 0,3323,3329,3,200,100,0,3324,3326,5,828,0,0,3325,3327,7,45,0,0,3326, + 3325,1,0,0,0,3326,3327,1,0,0,0,3327,3328,1,0,0,0,3328,3330,3,200, + 100,0,3329,3324,1,0,0,0,3330,3331,1,0,0,0,3331,3329,1,0,0,0,3331, + 3332,1,0,0,0,3332,199,1,0,0,0,3333,3335,5,866,0,0,3334,3333,1,0, + 0,0,3334,3335,1,0,0,0,3335,3336,1,0,0,0,3336,3338,3,282,141,0,3337, + 3339,5,867,0,0,3338,3337,1,0,0,0,3338,3339,1,0,0,0,3339,201,1,0, + 0,0,3340,3341,5,103,0,0,3341,3343,5,360,0,0,3342,3344,7,46,0,0,3343, + 3342,1,0,0,0,3343,3344,1,0,0,0,3344,3346,1,0,0,0,3345,3347,5,450, + 0,0,3346,3345,1,0,0,0,3346,3347,1,0,0,0,3347,3348,1,0,0,0,3348,3349, + 5,83,0,0,3349,3351,5,882,0,0,3350,3352,7,7,0,0,3351,3350,1,0,0,0, + 3351,3352,1,0,0,0,3352,3353,1,0,0,0,3353,3354,5,88,0,0,3354,3355, + 5,173,0,0,3355,3361,3,662,331,0,3356,3357,5,130,0,0,3357,3358,5, + 866,0,0,3358,3359,3,686,343,0,3359,3360,5,867,0,0,3360,3362,1,0, + 0,0,3361,3356,1,0,0,0,3361,3362,1,0,0,0,3362,3366,1,0,0,0,3363,3364, + 5,26,0,0,3364,3365,5,155,0,0,3365,3367,3,704,352,0,3366,3363,1,0, + 0,0,3366,3367,1,0,0,0,3367,3374,1,0,0,0,3368,3370,7,47,0,0,3369, + 3371,3,314,157,0,3370,3369,1,0,0,0,3371,3372,1,0,0,0,3372,3370,1, + 0,0,0,3372,3373,1,0,0,0,3373,3375,1,0,0,0,3374,3368,1,0,0,0,3374, + 3375,1,0,0,0,3375,3382,1,0,0,0,3376,3378,5,102,0,0,3377,3379,3,316, + 158,0,3378,3377,1,0,0,0,3379,3380,1,0,0,0,3380,3378,1,0,0,0,3380, + 3381,1,0,0,0,3381,3383,1,0,0,0,3382,3376,1,0,0,0,3382,3383,1,0,0, + 0,3383,3388,1,0,0,0,3384,3385,5,79,0,0,3385,3386,3,728,364,0,3386, + 3387,7,48,0,0,3387,3389,1,0,0,0,3388,3384,1,0,0,0,3388,3389,1,0, + 0,0,3389,3401,1,0,0,0,3390,3391,5,866,0,0,3391,3396,3,236,118,0, + 3392,3393,5,868,0,0,3393,3395,3,236,118,0,3394,3392,1,0,0,0,3395, + 3398,1,0,0,0,3396,3394,1,0,0,0,3396,3397,1,0,0,0,3397,3399,1,0,0, + 0,3398,3396,1,0,0,0,3399,3400,5,867,0,0,3400,3402,1,0,0,0,3401,3390, + 1,0,0,0,3401,3402,1,0,0,0,3402,3412,1,0,0,0,3403,3404,5,155,0,0, + 3404,3409,3,234,117,0,3405,3406,5,868,0,0,3406,3408,3,234,117,0, + 3407,3405,1,0,0,0,3408,3411,1,0,0,0,3409,3407,1,0,0,0,3409,3410, + 1,0,0,0,3410,3413,1,0,0,0,3411,3409,1,0,0,0,3412,3403,1,0,0,0,3412, + 3413,1,0,0,0,3413,203,1,0,0,0,3414,3415,5,103,0,0,3415,3417,5,695, + 0,0,3416,3418,7,46,0,0,3417,3416,1,0,0,0,3417,3418,1,0,0,0,3418, + 3420,1,0,0,0,3419,3421,5,450,0,0,3420,3419,1,0,0,0,3420,3421,1,0, + 0,0,3421,3422,1,0,0,0,3422,3423,5,83,0,0,3423,3425,5,882,0,0,3424, + 3426,7,7,0,0,3425,3424,1,0,0,0,3425,3426,1,0,0,0,3426,3427,1,0,0, + 0,3427,3428,5,88,0,0,3428,3429,5,173,0,0,3429,3433,3,662,331,0,3430, + 3431,5,26,0,0,3431,3432,5,155,0,0,3432,3434,3,704,352,0,3433,3430, + 1,0,0,0,3433,3434,1,0,0,0,3434,3445,1,0,0,0,3435,3436,5,587,0,0, + 3436,3437,5,423,0,0,3437,3439,5,20,0,0,3438,3440,5,859,0,0,3439, + 3438,1,0,0,0,3439,3440,1,0,0,0,3440,3441,1,0,0,0,3441,3443,5,882, + 0,0,3442,3444,5,858,0,0,3443,3442,1,0,0,0,3443,3444,1,0,0,0,3444, + 3446,1,0,0,0,3445,3435,1,0,0,0,3445,3446,1,0,0,0,3446,3451,1,0,0, + 0,3447,3448,5,79,0,0,3448,3449,3,728,364,0,3449,3450,7,48,0,0,3450, + 3452,1,0,0,0,3451,3447,1,0,0,0,3451,3452,1,0,0,0,3452,3464,1,0,0, + 0,3453,3454,5,866,0,0,3454,3459,3,236,118,0,3455,3456,5,868,0,0, + 3456,3458,3,236,118,0,3457,3455,1,0,0,0,3458,3461,1,0,0,0,3459,3457, + 1,0,0,0,3459,3460,1,0,0,0,3460,3462,1,0,0,0,3461,3459,1,0,0,0,3462, + 3463,5,867,0,0,3463,3465,1,0,0,0,3464,3453,1,0,0,0,3464,3465,1,0, + 0,0,3465,3475,1,0,0,0,3466,3467,5,155,0,0,3467,3472,3,234,117,0, + 3468,3469,5,868,0,0,3469,3471,3,234,117,0,3470,3468,1,0,0,0,3471, + 3474,1,0,0,0,3472,3470,1,0,0,0,3472,3473,1,0,0,0,3473,3476,1,0,0, + 0,3474,3472,1,0,0,0,3475,3466,1,0,0,0,3475,3476,1,0,0,0,3476,205, + 1,0,0,0,3477,3478,5,866,0,0,3478,3480,3,224,112,0,3479,3481,3,258, + 129,0,3480,3479,1,0,0,0,3480,3481,1,0,0,0,3481,3483,1,0,0,0,3482, + 3484,3,328,164,0,3483,3482,1,0,0,0,3483,3484,1,0,0,0,3484,3485,1, + 0,0,0,3485,3487,5,867,0,0,3486,3488,3,258,129,0,3487,3486,1,0,0, + 0,3487,3488,1,0,0,0,3488,3490,1,0,0,0,3489,3491,3,328,164,0,3490, + 3489,1,0,0,0,3490,3491,1,0,0,0,3491,3493,1,0,0,0,3492,3494,3,312, + 156,0,3493,3492,1,0,0,0,3493,3494,1,0,0,0,3494,207,1,0,0,0,3495, + 3497,5,143,0,0,3496,3498,7,49,0,0,3497,3496,1,0,0,0,3497,3498,1, + 0,0,0,3498,3500,1,0,0,0,3499,3501,5,88,0,0,3500,3499,1,0,0,0,3500, + 3501,1,0,0,0,3501,3502,1,0,0,0,3502,3508,3,662,331,0,3503,3504,5, + 130,0,0,3504,3505,5,866,0,0,3505,3506,3,686,343,0,3506,3507,5,867, + 0,0,3507,3509,1,0,0,0,3508,3503,1,0,0,0,3508,3509,1,0,0,0,3509,3518, + 1,0,0,0,3510,3511,5,866,0,0,3511,3512,3,670,335,0,3512,3513,5,867, + 0,0,3513,3515,1,0,0,0,3514,3510,1,0,0,0,3514,3515,1,0,0,0,3515,3516, + 1,0,0,0,3516,3519,3,228,114,0,3517,3519,3,232,116,0,3518,3514,1, + 0,0,0,3518,3517,1,0,0,0,3519,209,1,0,0,0,3520,3524,3,282,141,0,3521, + 3523,3,284,142,0,3522,3521,1,0,0,0,3523,3526,1,0,0,0,3524,3522,1, + 0,0,0,3524,3525,1,0,0,0,3525,3535,1,0,0,0,3526,3524,1,0,0,0,3527, + 3529,5,181,0,0,3528,3530,7,45,0,0,3529,3528,1,0,0,0,3529,3530,1, + 0,0,0,3530,3533,1,0,0,0,3531,3534,3,282,141,0,3532,3534,3,280,140, + 0,3533,3531,1,0,0,0,3533,3532,1,0,0,0,3534,3536,1,0,0,0,3535,3527, + 1,0,0,0,3535,3536,1,0,0,0,3536,3541,1,0,0,0,3537,3538,5,868,0,0, + 3538,3540,3,286,143,0,3539,3537,1,0,0,0,3540,3543,1,0,0,0,3541,3539, + 1,0,0,0,3541,3542,1,0,0,0,3542,3545,1,0,0,0,3543,3541,1,0,0,0,3544, + 3546,3,258,129,0,3545,3544,1,0,0,0,3545,3546,1,0,0,0,3546,3548,1, + 0,0,0,3547,3549,3,328,164,0,3548,3547,1,0,0,0,3548,3549,1,0,0,0, + 3549,3551,1,0,0,0,3550,3552,3,238,119,0,3551,3550,1,0,0,0,3551,3552, + 1,0,0,0,3552,3554,1,0,0,0,3553,3555,3,312,156,0,3554,3553,1,0,0, + 0,3554,3555,1,0,0,0,3555,3580,1,0,0,0,3556,3560,3,280,140,0,3557, + 3559,3,284,142,0,3558,3557,1,0,0,0,3559,3562,1,0,0,0,3560,3558,1, + 0,0,0,3560,3561,1,0,0,0,3561,3568,1,0,0,0,3562,3560,1,0,0,0,3563, + 3565,5,181,0,0,3564,3566,7,45,0,0,3565,3564,1,0,0,0,3565,3566,1, + 0,0,0,3566,3567,1,0,0,0,3567,3569,3,280,140,0,3568,3563,1,0,0,0, + 3568,3569,1,0,0,0,3569,3571,1,0,0,0,3570,3572,3,258,129,0,3571,3570, + 1,0,0,0,3571,3572,1,0,0,0,3572,3574,1,0,0,0,3573,3575,3,328,164, + 0,3574,3573,1,0,0,0,3574,3575,1,0,0,0,3575,3577,1,0,0,0,3576,3578, + 3,238,119,0,3577,3576,1,0,0,0,3577,3578,1,0,0,0,3578,3580,1,0,0, + 0,3579,3520,1,0,0,0,3579,3556,1,0,0,0,3580,211,1,0,0,0,3581,3583, + 3,50,25,0,3582,3581,1,0,0,0,3582,3583,1,0,0,0,3583,3584,1,0,0,0, + 3584,3586,3,214,107,0,3585,3587,3,258,129,0,3586,3585,1,0,0,0,3586, + 3587,1,0,0,0,3587,3589,1,0,0,0,3588,3590,3,328,164,0,3589,3588,1, + 0,0,0,3589,3590,1,0,0,0,3590,3592,1,0,0,0,3591,3593,3,312,156,0, + 3592,3591,1,0,0,0,3592,3593,1,0,0,0,3593,213,1,0,0,0,3594,3595,6, + 107,-1,0,3595,3596,3,216,108,0,3596,3611,1,0,0,0,3597,3598,10,2, + 0,0,3598,3600,5,181,0,0,3599,3601,7,45,0,0,3600,3599,1,0,0,0,3600, + 3601,1,0,0,0,3601,3602,1,0,0,0,3602,3610,3,216,108,0,3603,3604,10, + 1,0,0,3604,3606,5,59,0,0,3605,3607,7,45,0,0,3606,3605,1,0,0,0,3606, + 3607,1,0,0,0,3607,3608,1,0,0,0,3608,3610,3,216,108,0,3609,3597,1, + 0,0,0,3609,3603,1,0,0,0,3610,3613,1,0,0,0,3611,3609,1,0,0,0,3611, + 3612,1,0,0,0,3612,215,1,0,0,0,3613,3611,1,0,0,0,3614,3615,6,108, + -1,0,3615,3616,3,218,109,0,3616,3625,1,0,0,0,3617,3618,10,1,0,0, + 3618,3620,5,828,0,0,3619,3621,7,45,0,0,3620,3619,1,0,0,0,3620,3621, + 1,0,0,0,3621,3622,1,0,0,0,3622,3624,3,218,109,0,3623,3617,1,0,0, + 0,3624,3627,1,0,0,0,3625,3623,1,0,0,0,3625,3626,1,0,0,0,3626,217, + 1,0,0,0,3627,3625,1,0,0,0,3628,3643,3,226,113,0,3629,3630,5,866, + 0,0,3630,3632,3,214,107,0,3631,3633,3,258,129,0,3632,3631,1,0,0, + 0,3632,3633,1,0,0,0,3633,3635,1,0,0,0,3634,3636,3,328,164,0,3635, + 3634,1,0,0,0,3635,3636,1,0,0,0,3636,3638,1,0,0,0,3637,3639,3,312, + 156,0,3638,3637,1,0,0,0,3638,3639,1,0,0,0,3639,3640,1,0,0,0,3640, + 3641,5,867,0,0,3641,3643,1,0,0,0,3642,3628,1,0,0,0,3642,3629,1,0, + 0,0,3643,219,1,0,0,0,3644,3647,3,254,127,0,3645,3647,3,256,128,0, + 3646,3644,1,0,0,0,3646,3645,1,0,0,0,3647,221,1,0,0,0,3648,3652,3, + 230,115,0,3649,3650,5,125,0,0,3650,3651,5,20,0,0,3651,3653,3,690, + 345,0,3652,3649,1,0,0,0,3652,3653,1,0,0,0,3653,3656,1,0,0,0,3654, + 3655,5,100,0,0,3655,3657,3,330,165,0,3656,3654,1,0,0,0,3656,3657, + 1,0,0,0,3657,223,1,0,0,0,3658,3663,3,226,113,0,3659,3660,7,50,0, + 0,3660,3662,3,226,113,0,3661,3659,1,0,0,0,3662,3665,1,0,0,0,3663, + 3661,1,0,0,0,3663,3664,1,0,0,0,3664,3667,1,0,0,0,3665,3663,1,0,0, + 0,3666,3668,3,258,129,0,3667,3666,1,0,0,0,3667,3668,1,0,0,0,3668, + 3670,1,0,0,0,3669,3671,3,328,164,0,3670,3669,1,0,0,0,3670,3671,1, + 0,0,0,3671,3673,1,0,0,0,3672,3674,3,312,156,0,3673,3672,1,0,0,0, + 3673,3674,1,0,0,0,3674,225,1,0,0,0,3675,3679,3,210,105,0,3676,3679, + 3,628,314,0,3677,3679,3,222,111,0,3678,3675,1,0,0,0,3678,3676,1, + 0,0,0,3678,3677,1,0,0,0,3679,227,1,0,0,0,3680,3686,3,210,105,0,3681, + 3682,5,173,0,0,3682,3686,3,662,331,0,3683,3686,3,758,379,0,3684, + 3686,3,230,115,0,3685,3680,1,0,0,0,3685,3681,1,0,0,0,3685,3683,1, + 0,0,0,3685,3684,1,0,0,0,3686,229,1,0,0,0,3687,3688,5,189,0,0,3688, + 3689,5,586,0,0,3689,3695,3,760,380,0,3690,3691,5,868,0,0,3691,3692, + 5,586,0,0,3692,3694,3,760,380,0,3693,3690,1,0,0,0,3694,3697,1,0, + 0,0,3695,3693,1,0,0,0,3695,3696,1,0,0,0,3696,231,1,0,0,0,3697,3695, + 1,0,0,0,3698,3699,5,155,0,0,3699,3704,3,234,117,0,3700,3701,5,868, + 0,0,3701,3703,3,234,117,0,3702,3700,1,0,0,0,3703,3706,1,0,0,0,3704, + 3702,1,0,0,0,3704,3705,1,0,0,0,3705,233,1,0,0,0,3706,3704,1,0,0, + 0,3707,3708,3,674,337,0,3708,3709,5,857,0,0,3709,3710,3,762,381, + 0,3710,235,1,0,0,0,3711,3714,3,722,361,0,3712,3714,5,892,0,0,3713, + 3711,1,0,0,0,3713,3712,1,0,0,0,3714,237,1,0,0,0,3715,3716,5,65,0, + 0,3716,3726,7,51,0,0,3717,3718,5,510,0,0,3718,3723,3,662,331,0,3719, + 3720,5,868,0,0,3720,3722,3,662,331,0,3721,3719,1,0,0,0,3722,3725, + 1,0,0,0,3723,3721,1,0,0,0,3723,3724,1,0,0,0,3724,3727,1,0,0,0,3725, + 3723,1,0,0,0,3726,3717,1,0,0,0,3726,3727,1,0,0,0,3727,3730,1,0,0, + 0,3728,3729,7,52,0,0,3729,3731,5,105,0,0,3730,3728,1,0,0,0,3730, + 3731,1,0,0,0,3731,3737,1,0,0,0,3732,3733,5,104,0,0,3733,3734,5,80, + 0,0,3734,3735,5,594,0,0,3735,3737,5,491,0,0,3736,3715,1,0,0,0,3736, + 3732,1,0,0,0,3737,239,1,0,0,0,3738,3740,5,44,0,0,3739,3741,5,107, + 0,0,3740,3739,1,0,0,0,3740,3741,1,0,0,0,3741,3743,1,0,0,0,3742,3744, + 5,549,0,0,3743,3742,1,0,0,0,3743,3744,1,0,0,0,3744,3746,1,0,0,0, + 3745,3747,5,79,0,0,3746,3745,1,0,0,0,3746,3747,1,0,0,0,3747,3748, + 1,0,0,0,3748,3749,5,68,0,0,3749,3754,3,662,331,0,3750,3752,5,13, + 0,0,3751,3750,1,0,0,0,3751,3752,1,0,0,0,3752,3753,1,0,0,0,3753,3755, + 3,722,361,0,3754,3751,1,0,0,0,3754,3755,1,0,0,0,3755,3761,1,0,0, + 0,3756,3757,5,130,0,0,3757,3758,5,866,0,0,3758,3759,3,686,343,0, + 3759,3760,5,867,0,0,3760,3762,1,0,0,0,3761,3756,1,0,0,0,3761,3762, + 1,0,0,0,3762,3765,1,0,0,0,3763,3764,5,192,0,0,3764,3766,3,820,410, + 0,3765,3763,1,0,0,0,3765,3766,1,0,0,0,3766,3768,1,0,0,0,3767,3769, + 3,258,129,0,3768,3767,1,0,0,0,3768,3769,1,0,0,0,3769,3772,1,0,0, + 0,3770,3771,5,100,0,0,3771,3773,3,330,165,0,3772,3770,1,0,0,0,3772, + 3773,1,0,0,0,3773,241,1,0,0,0,3774,3776,5,44,0,0,3775,3777,5,107, + 0,0,3776,3775,1,0,0,0,3776,3777,1,0,0,0,3777,3779,1,0,0,0,3778,3780, + 5,549,0,0,3779,3778,1,0,0,0,3779,3780,1,0,0,0,3780,3782,1,0,0,0, + 3781,3783,5,79,0,0,3782,3781,1,0,0,0,3782,3783,1,0,0,0,3783,3823, + 1,0,0,0,3784,3787,3,662,331,0,3785,3786,5,865,0,0,3786,3788,5,850, + 0,0,3787,3785,1,0,0,0,3787,3788,1,0,0,0,3788,3797,1,0,0,0,3789,3790, + 5,868,0,0,3790,3793,3,662,331,0,3791,3792,5,865,0,0,3792,3794,5, + 850,0,0,3793,3791,1,0,0,0,3793,3794,1,0,0,0,3794,3796,1,0,0,0,3795, + 3789,1,0,0,0,3796,3799,1,0,0,0,3797,3795,1,0,0,0,3797,3798,1,0,0, + 0,3798,3800,1,0,0,0,3799,3797,1,0,0,0,3800,3801,5,68,0,0,3801,3802, + 3,262,131,0,3802,3824,1,0,0,0,3803,3804,5,68,0,0,3804,3807,3,662, + 331,0,3805,3806,5,865,0,0,3806,3808,5,850,0,0,3807,3805,1,0,0,0, + 3807,3808,1,0,0,0,3808,3817,1,0,0,0,3809,3810,5,868,0,0,3810,3813, + 3,662,331,0,3811,3812,5,865,0,0,3812,3814,5,850,0,0,3813,3811,1, + 0,0,0,3813,3814,1,0,0,0,3814,3816,1,0,0,0,3815,3809,1,0,0,0,3816, + 3819,1,0,0,0,3817,3815,1,0,0,0,3817,3818,1,0,0,0,3818,3820,1,0,0, + 0,3819,3817,1,0,0,0,3820,3821,5,188,0,0,3821,3822,3,262,131,0,3822, + 3824,1,0,0,0,3823,3784,1,0,0,0,3823,3803,1,0,0,0,3824,3827,1,0,0, + 0,3825,3826,5,192,0,0,3826,3828,3,820,410,0,3827,3825,1,0,0,0,3827, + 3828,1,0,0,0,3828,243,1,0,0,0,3829,3830,5,417,0,0,3830,3831,3,662, + 331,0,3831,3836,5,516,0,0,3832,3834,5,13,0,0,3833,3832,1,0,0,0,3833, + 3834,1,0,0,0,3834,3835,1,0,0,0,3835,3837,3,722,361,0,3836,3833,1, + 0,0,0,3836,3837,1,0,0,0,3837,245,1,0,0,0,3838,3839,5,417,0,0,3839, + 3840,3,662,331,0,3840,3841,5,135,0,0,3841,3848,3,652,326,0,3842, + 3843,3,830,415,0,3843,3844,5,866,0,0,3844,3845,3,764,382,0,3845, + 3846,5,867,0,0,3846,3849,1,0,0,0,3847,3849,7,53,0,0,3848,3842,1, + 0,0,0,3848,3847,1,0,0,0,3849,3852,1,0,0,0,3850,3851,5,192,0,0,3851, + 3853,3,820,410,0,3852,3850,1,0,0,0,3852,3853,1,0,0,0,3853,3856,1, + 0,0,0,3854,3855,5,100,0,0,3855,3857,3,330,165,0,3856,3854,1,0,0, + 0,3856,3857,1,0,0,0,3857,247,1,0,0,0,3858,3859,5,417,0,0,3859,3860, + 3,662,331,0,3860,3861,5,135,0,0,3861,3864,7,54,0,0,3862,3863,5,192, + 0,0,3863,3865,3,820,410,0,3864,3862,1,0,0,0,3864,3865,1,0,0,0,3865, + 3868,1,0,0,0,3866,3867,5,100,0,0,3867,3869,3,330,165,0,3868,3866, + 1,0,0,0,3868,3869,1,0,0,0,3869,249,1,0,0,0,3870,3871,5,417,0,0,3871, + 3872,3,662,331,0,3872,3873,5,334,0,0,3873,251,1,0,0,0,3874,3875, + 5,425,0,0,3875,3876,5,173,0,0,3876,3877,5,68,0,0,3877,3882,3,732, + 366,0,3878,3879,5,868,0,0,3879,3881,3,732,366,0,3880,3878,1,0,0, + 0,3881,3884,1,0,0,0,3882,3880,1,0,0,0,3882,3883,1,0,0,0,3883,253, + 1,0,0,0,3884,3882,1,0,0,0,3885,3887,5,185,0,0,3886,3888,5,107,0, + 0,3887,3886,1,0,0,0,3887,3888,1,0,0,0,3888,3890,1,0,0,0,3889,3891, + 5,79,0,0,3890,3889,1,0,0,0,3890,3891,1,0,0,0,3891,3892,1,0,0,0,3892, + 3897,3,662,331,0,3893,3895,5,13,0,0,3894,3893,1,0,0,0,3894,3895, + 1,0,0,0,3895,3896,1,0,0,0,3896,3898,3,722,361,0,3897,3894,1,0,0, + 0,3897,3898,1,0,0,0,3898,3899,1,0,0,0,3899,3900,5,155,0,0,3900,3905, + 3,234,117,0,3901,3902,5,868,0,0,3902,3904,3,234,117,0,3903,3901, + 1,0,0,0,3904,3907,1,0,0,0,3905,3903,1,0,0,0,3905,3906,1,0,0,0,3906, + 3910,1,0,0,0,3907,3905,1,0,0,0,3908,3909,5,192,0,0,3909,3911,3,820, + 410,0,3910,3908,1,0,0,0,3910,3911,1,0,0,0,3911,3913,1,0,0,0,3912, + 3914,3,258,129,0,3913,3912,1,0,0,0,3913,3914,1,0,0,0,3914,3916,1, + 0,0,0,3915,3917,3,328,164,0,3916,3915,1,0,0,0,3916,3917,1,0,0,0, + 3917,255,1,0,0,0,3918,3920,5,185,0,0,3919,3921,5,107,0,0,3920,3919, + 1,0,0,0,3920,3921,1,0,0,0,3921,3923,1,0,0,0,3922,3924,5,79,0,0,3923, + 3922,1,0,0,0,3923,3924,1,0,0,0,3924,3925,1,0,0,0,3925,3926,3,262, + 131,0,3926,3927,5,155,0,0,3927,3932,3,234,117,0,3928,3929,5,868, + 0,0,3929,3931,3,234,117,0,3930,3928,1,0,0,0,3931,3934,1,0,0,0,3932, + 3930,1,0,0,0,3932,3933,1,0,0,0,3933,3937,1,0,0,0,3934,3932,1,0,0, + 0,3935,3936,5,192,0,0,3936,3938,3,820,410,0,3937,3935,1,0,0,0,3937, + 3938,1,0,0,0,3938,257,1,0,0,0,3939,3940,5,125,0,0,3940,3941,5,20, + 0,0,3941,3946,3,260,130,0,3942,3943,5,868,0,0,3943,3945,3,260,130, + 0,3944,3942,1,0,0,0,3945,3948,1,0,0,0,3946,3944,1,0,0,0,3946,3947, + 1,0,0,0,3947,259,1,0,0,0,3948,3946,1,0,0,0,3949,3951,3,820,410,0, + 3950,3952,7,55,0,0,3951,3950,1,0,0,0,3951,3952,1,0,0,0,3952,261, + 1,0,0,0,3953,3958,3,264,132,0,3954,3955,5,868,0,0,3955,3957,3,264, + 132,0,3956,3954,1,0,0,0,3957,3960,1,0,0,0,3958,3956,1,0,0,0,3958, + 3959,1,0,0,0,3959,263,1,0,0,0,3960,3958,1,0,0,0,3961,3965,3,266, + 133,0,3962,3964,3,276,138,0,3963,3962,1,0,0,0,3964,3967,1,0,0,0, + 3965,3963,1,0,0,0,3965,3966,1,0,0,0,3966,3980,1,0,0,0,3967,3965, + 1,0,0,0,3968,3969,5,866,0,0,3969,3973,3,266,133,0,3970,3972,3,276, + 138,0,3971,3970,1,0,0,0,3972,3975,1,0,0,0,3973,3971,1,0,0,0,3973, + 3974,1,0,0,0,3974,3976,1,0,0,0,3975,3973,1,0,0,0,3976,3977,5,867, + 0,0,3977,3980,1,0,0,0,3978,3980,3,288,144,0,3979,3961,1,0,0,0,3979, + 3968,1,0,0,0,3979,3978,1,0,0,0,3980,265,1,0,0,0,3981,3987,3,662, + 331,0,3982,3983,5,130,0,0,3983,3984,5,866,0,0,3984,3985,3,686,343, + 0,3985,3986,5,867,0,0,3986,3988,1,0,0,0,3987,3982,1,0,0,0,3987,3988, + 1,0,0,0,3988,3993,1,0,0,0,3989,3991,5,13,0,0,3990,3989,1,0,0,0,3990, + 3991,1,0,0,0,3991,3992,1,0,0,0,3992,3994,3,722,361,0,3993,3990,1, + 0,0,0,3993,3994,1,0,0,0,3994,4003,1,0,0,0,3995,4000,3,272,136,0, + 3996,3997,5,868,0,0,3997,3999,3,272,136,0,3998,3996,1,0,0,0,3999, + 4002,1,0,0,0,4000,3998,1,0,0,0,4000,4001,1,0,0,0,4001,4004,1,0,0, + 0,4002,4000,1,0,0,0,4003,3995,1,0,0,0,4003,4004,1,0,0,0,4004,4021, + 1,0,0,0,4005,4007,5,95,0,0,4006,4005,1,0,0,0,4006,4007,1,0,0,0,4007, + 4008,1,0,0,0,4008,4010,3,268,134,0,4009,4011,5,13,0,0,4010,4009, + 1,0,0,0,4010,4011,1,0,0,0,4011,4012,1,0,0,0,4012,4014,3,722,361, + 0,4013,4015,3,270,135,0,4014,4013,1,0,0,0,4014,4015,1,0,0,0,4015, + 4021,1,0,0,0,4016,4017,5,866,0,0,4017,4018,3,262,131,0,4018,4019, + 5,867,0,0,4019,4021,1,0,0,0,4020,3981,1,0,0,0,4020,4006,1,0,0,0, + 4020,4016,1,0,0,0,4021,267,1,0,0,0,4022,4028,3,210,105,0,4023,4024, + 5,866,0,0,4024,4025,3,210,105,0,4025,4026,5,867,0,0,4026,4028,1, + 0,0,0,4027,4022,1,0,0,0,4027,4023,1,0,0,0,4028,269,1,0,0,0,4029, + 4030,5,866,0,0,4030,4031,3,670,335,0,4031,4032,5,867,0,0,4032,271, + 1,0,0,0,4033,4034,7,56,0,0,4034,4037,7,19,0,0,4035,4036,5,65,0,0, + 4036,4038,3,274,137,0,4037,4035,1,0,0,0,4037,4038,1,0,0,0,4038,4039, + 1,0,0,0,4039,4041,5,866,0,0,4040,4042,3,650,325,0,4041,4040,1,0, + 0,0,4041,4042,1,0,0,0,4042,4043,1,0,0,0,4043,4044,5,867,0,0,4044, + 273,1,0,0,0,4045,4051,5,91,0,0,4046,4047,5,125,0,0,4047,4051,5,20, + 0,0,4048,4049,5,74,0,0,4049,4051,5,20,0,0,4050,4045,1,0,0,0,4050, + 4046,1,0,0,0,4050,4048,1,0,0,0,4051,275,1,0,0,0,4052,4054,7,57,0, + 0,4053,4052,1,0,0,0,4053,4054,1,0,0,0,4054,4055,1,0,0,0,4055,4057, + 5,91,0,0,4056,4058,5,95,0,0,4057,4056,1,0,0,0,4057,4058,1,0,0,0, + 4058,4059,1,0,0,0,4059,4063,3,266,133,0,4060,4062,3,278,139,0,4061, + 4060,1,0,0,0,4062,4065,1,0,0,0,4063,4061,1,0,0,0,4063,4064,1,0,0, + 0,4064,4102,1,0,0,0,4065,4063,1,0,0,0,4066,4067,5,172,0,0,4067,4071, + 3,266,133,0,4068,4070,3,278,139,0,4069,4068,1,0,0,0,4070,4073,1, + 0,0,0,4071,4069,1,0,0,0,4071,4072,1,0,0,0,4072,4102,1,0,0,0,4073, + 4071,1,0,0,0,4074,4076,7,58,0,0,4075,4077,5,127,0,0,4076,4075,1, + 0,0,0,4076,4077,1,0,0,0,4077,4078,1,0,0,0,4078,4080,5,91,0,0,4079, + 4081,5,95,0,0,4080,4079,1,0,0,0,4080,4081,1,0,0,0,4081,4082,1,0, + 0,0,4082,4086,3,266,133,0,4083,4085,3,278,139,0,4084,4083,1,0,0, + 0,4085,4088,1,0,0,0,4086,4084,1,0,0,0,4086,4087,1,0,0,0,4087,4102, + 1,0,0,0,4088,4086,1,0,0,0,4089,4097,5,113,0,0,4090,4093,5,84,0,0, + 4091,4093,7,58,0,0,4092,4090,1,0,0,0,4092,4091,1,0,0,0,4093,4095, + 1,0,0,0,4094,4096,5,127,0,0,4095,4094,1,0,0,0,4095,4096,1,0,0,0, + 4096,4098,1,0,0,0,4097,4092,1,0,0,0,4097,4098,1,0,0,0,4098,4099, + 1,0,0,0,4099,4100,5,91,0,0,4100,4102,3,266,133,0,4101,4053,1,0,0, + 0,4101,4066,1,0,0,0,4101,4074,1,0,0,0,4101,4089,1,0,0,0,4102,277, + 1,0,0,0,4103,4106,5,119,0,0,4104,4107,3,820,410,0,4105,4107,3,678, + 339,0,4106,4104,1,0,0,0,4106,4105,1,0,0,0,4107,4114,1,0,0,0,4108, + 4109,5,188,0,0,4109,4110,5,866,0,0,4110,4111,3,670,335,0,4111,4112, + 5,867,0,0,4112,4114,1,0,0,0,4113,4103,1,0,0,0,4113,4108,1,0,0,0, + 4114,279,1,0,0,0,4115,4116,5,866,0,0,4116,4117,3,282,141,0,4117, + 4118,5,867,0,0,4118,4124,1,0,0,0,4119,4120,5,866,0,0,4120,4121,3, + 280,140,0,4121,4122,5,867,0,0,4122,4124,1,0,0,0,4123,4115,1,0,0, + 0,4123,4119,1,0,0,0,4124,281,1,0,0,0,4125,4129,5,154,0,0,4126,4128, + 3,298,149,0,4127,4126,1,0,0,0,4128,4131,1,0,0,0,4129,4127,1,0,0, + 0,4129,4130,1,0,0,0,4130,4132,1,0,0,0,4131,4129,1,0,0,0,4132,4134, + 3,300,150,0,4133,4135,3,312,156,0,4134,4133,1,0,0,0,4134,4135,1, + 0,0,0,4135,4136,1,0,0,0,4136,4138,3,318,159,0,4137,4139,3,320,160, + 0,4138,4137,1,0,0,0,4138,4139,1,0,0,0,4139,4141,1,0,0,0,4140,4142, + 3,322,161,0,4141,4140,1,0,0,0,4141,4142,1,0,0,0,4142,4144,1,0,0, + 0,4143,4145,3,324,162,0,4144,4143,1,0,0,0,4144,4145,1,0,0,0,4145, + 4147,1,0,0,0,4146,4148,3,258,129,0,4147,4146,1,0,0,0,4147,4148,1, + 0,0,0,4148,4150,1,0,0,0,4149,4151,3,328,164,0,4150,4149,1,0,0,0, + 4150,4151,1,0,0,0,4151,4153,1,0,0,0,4152,4154,3,312,156,0,4153,4152, + 1,0,0,0,4153,4154,1,0,0,0,4154,4156,1,0,0,0,4155,4157,3,284,142, + 0,4156,4155,1,0,0,0,4156,4157,1,0,0,0,4157,283,1,0,0,0,4158,4160, + 5,181,0,0,4159,4161,7,45,0,0,4160,4159,1,0,0,0,4160,4161,1,0,0,0, + 4161,4164,1,0,0,0,4162,4165,3,282,141,0,4163,4165,3,280,140,0,4164, + 4162,1,0,0,0,4164,4163,1,0,0,0,4165,285,1,0,0,0,4166,4181,5,95,0, + 0,4167,4182,3,282,141,0,4168,4182,3,280,140,0,4169,4172,5,866,0, + 0,4170,4173,3,282,141,0,4171,4173,3,280,140,0,4172,4170,1,0,0,0, + 4172,4171,1,0,0,0,4173,4174,1,0,0,0,4174,4179,5,867,0,0,4175,4177, + 5,13,0,0,4176,4175,1,0,0,0,4176,4177,1,0,0,0,4177,4178,1,0,0,0,4178, + 4180,3,722,361,0,4179,4176,1,0,0,0,4179,4180,1,0,0,0,4180,4182,1, + 0,0,0,4181,4167,1,0,0,0,4181,4168,1,0,0,0,4181,4169,1,0,0,0,4182, + 287,1,0,0,0,4183,4184,5,253,0,0,4184,4185,5,866,0,0,4185,4186,5, + 882,0,0,4186,4187,5,868,0,0,4187,4188,5,882,0,0,4188,4189,5,337, + 0,0,4189,4190,5,866,0,0,4190,4191,3,290,145,0,4191,4192,5,867,0, + 0,4192,4197,5,867,0,0,4193,4195,5,13,0,0,4194,4193,1,0,0,0,4194, + 4195,1,0,0,0,4195,4196,1,0,0,0,4196,4198,3,722,361,0,4197,4194,1, + 0,0,0,4197,4198,1,0,0,0,4198,289,1,0,0,0,4199,4204,3,292,146,0,4200, + 4201,5,868,0,0,4201,4203,3,292,146,0,4202,4200,1,0,0,0,4203,4206, + 1,0,0,0,4204,4202,1,0,0,0,4204,4205,1,0,0,0,4205,291,1,0,0,0,4206, + 4204,1,0,0,0,4207,4224,3,674,337,0,4208,4209,5,65,0,0,4209,4225, + 5,256,0,0,4210,4222,3,742,371,0,4211,4212,5,257,0,0,4212,4214,5, + 882,0,0,4213,4215,3,294,147,0,4214,4213,1,0,0,0,4214,4215,1,0,0, + 0,4215,4217,1,0,0,0,4216,4218,3,296,148,0,4217,4216,1,0,0,0,4217, + 4218,1,0,0,0,4218,4223,1,0,0,0,4219,4220,5,60,0,0,4220,4221,5,257, + 0,0,4221,4223,5,882,0,0,4222,4211,1,0,0,0,4222,4219,1,0,0,0,4223, + 4225,1,0,0,0,4224,4208,1,0,0,0,4224,4210,1,0,0,0,4225,4237,1,0,0, + 0,4226,4228,5,255,0,0,4227,4229,5,257,0,0,4228,4227,1,0,0,0,4228, + 4229,1,0,0,0,4229,4230,1,0,0,0,4230,4231,5,882,0,0,4231,4232,5,337, + 0,0,4232,4233,5,866,0,0,4233,4234,3,290,145,0,4234,4235,5,867,0, + 0,4235,4237,1,0,0,0,4236,4207,1,0,0,0,4236,4226,1,0,0,0,4237,293, + 1,0,0,0,4238,4243,5,116,0,0,4239,4243,5,382,0,0,4240,4241,5,42,0, + 0,4241,4243,3,770,385,0,4242,4238,1,0,0,0,4242,4239,1,0,0,0,4242, + 4240,1,0,0,0,4243,4244,1,0,0,0,4244,4245,5,119,0,0,4245,4246,5,55, + 0,0,4246,295,1,0,0,0,4247,4252,5,116,0,0,4248,4252,5,382,0,0,4249, + 4250,5,42,0,0,4250,4252,3,770,385,0,4251,4247,1,0,0,0,4251,4248, + 1,0,0,0,4251,4249,1,0,0,0,4252,4253,1,0,0,0,4253,4254,5,119,0,0, + 4254,4255,5,382,0,0,4255,297,1,0,0,0,4256,4265,7,59,0,0,4257,4265, + 5,76,0,0,4258,4265,5,172,0,0,4259,4265,5,168,0,0,4260,4265,5,166, + 0,0,4261,4265,5,636,0,0,4262,4265,7,60,0,0,4263,4265,5,167,0,0,4264, + 4256,1,0,0,0,4264,4257,1,0,0,0,4264,4258,1,0,0,0,4264,4259,1,0,0, + 0,4264,4260,1,0,0,0,4264,4261,1,0,0,0,4264,4262,1,0,0,0,4264,4263, + 1,0,0,0,4265,299,1,0,0,0,4266,4269,3,306,153,0,4267,4269,3,302,151, + 0,4268,4266,1,0,0,0,4268,4267,1,0,0,0,4269,4274,1,0,0,0,4270,4271, + 5,868,0,0,4271,4273,3,302,151,0,4272,4270,1,0,0,0,4273,4276,1,0, + 0,0,4274,4272,1,0,0,0,4274,4275,1,0,0,0,4275,301,1,0,0,0,4276,4274, + 1,0,0,0,4277,4298,3,304,152,0,4278,4283,3,308,154,0,4279,4281,5, + 13,0,0,4280,4279,1,0,0,0,4280,4281,1,0,0,0,4281,4282,1,0,0,0,4282, + 4284,3,722,361,0,4283,4280,1,0,0,0,4283,4284,1,0,0,0,4284,4298,1, + 0,0,0,4285,4290,3,310,155,0,4286,4288,5,13,0,0,4287,4286,1,0,0,0, + 4287,4288,1,0,0,0,4288,4289,1,0,0,0,4289,4291,3,722,361,0,4290,4287, + 1,0,0,0,4290,4291,1,0,0,0,4291,4298,1,0,0,0,4292,4293,3,722,361, + 0,4293,4294,5,865,0,0,4294,4295,4,151,3,0,4295,4296,3,672,336,0, + 4296,4298,1,0,0,0,4297,4277,1,0,0,0,4297,4278,1,0,0,0,4297,4285, + 1,0,0,0,4297,4292,1,0,0,0,4298,303,1,0,0,0,4299,4300,3,718,359,0, + 4300,4301,5,865,0,0,4301,4302,5,850,0,0,4302,305,1,0,0,0,4303,4304, + 5,850,0,0,4304,307,1,0,0,0,4305,4306,3,674,337,0,4306,309,1,0,0, + 0,4307,4308,5,892,0,0,4308,4310,5,841,0,0,4309,4307,1,0,0,0,4309, + 4310,1,0,0,0,4310,4311,1,0,0,0,4311,4314,3,820,410,0,4312,4314,3, + 780,390,0,4313,4309,1,0,0,0,4313,4312,1,0,0,0,4314,311,1,0,0,0,4315, + 4316,5,88,0,0,4316,4321,3,236,118,0,4317,4318,5,868,0,0,4318,4320, + 3,236,118,0,4319,4317,1,0,0,0,4320,4323,1,0,0,0,4321,4319,1,0,0, + 0,4321,4322,1,0,0,0,4322,4352,1,0,0,0,4323,4321,1,0,0,0,4324,4325, + 5,88,0,0,4325,4326,5,372,0,0,4326,4352,5,882,0,0,4327,4328,5,88, + 0,0,4328,4329,5,128,0,0,4329,4333,5,882,0,0,4330,4331,5,26,0,0,4331, + 4332,5,155,0,0,4332,4334,3,704,352,0,4333,4330,1,0,0,0,4333,4334, + 1,0,0,0,4334,4341,1,0,0,0,4335,4337,7,47,0,0,4336,4338,3,314,157, + 0,4337,4336,1,0,0,0,4338,4339,1,0,0,0,4339,4337,1,0,0,0,4339,4340, + 1,0,0,0,4340,4342,1,0,0,0,4341,4335,1,0,0,0,4341,4342,1,0,0,0,4342, + 4349,1,0,0,0,4343,4345,5,102,0,0,4344,4346,3,316,158,0,4345,4344, + 1,0,0,0,4346,4347,1,0,0,0,4347,4345,1,0,0,0,4347,4348,1,0,0,0,4348, + 4350,1,0,0,0,4349,4343,1,0,0,0,4349,4350,1,0,0,0,4350,4352,1,0,0, + 0,4351,4315,1,0,0,0,4351,4324,1,0,0,0,4351,4327,1,0,0,0,4352,313, + 1,0,0,0,4353,4354,5,174,0,0,4354,4355,5,20,0,0,4355,4366,5,882,0, + 0,4356,4358,5,123,0,0,4357,4356,1,0,0,0,4357,4358,1,0,0,0,4358,4359, + 1,0,0,0,4359,4360,5,56,0,0,4360,4361,5,20,0,0,4361,4366,5,882,0, + 0,4362,4363,5,58,0,0,4363,4364,5,20,0,0,4364,4366,5,882,0,0,4365, + 4353,1,0,0,0,4365,4357,1,0,0,0,4365,4362,1,0,0,0,4366,315,1,0,0, + 0,4367,4368,5,171,0,0,4368,4369,5,20,0,0,4369,4374,5,882,0,0,4370, + 4371,5,174,0,0,4371,4372,5,20,0,0,4372,4374,5,882,0,0,4373,4367, + 1,0,0,0,4373,4370,1,0,0,0,4374,317,1,0,0,0,4375,4376,5,68,0,0,4376, + 4378,3,262,131,0,4377,4375,1,0,0,0,4377,4378,1,0,0,0,4378,4384,1, + 0,0,0,4379,4382,5,192,0,0,4380,4383,3,820,410,0,4381,4383,3,678, + 339,0,4382,4380,1,0,0,0,4382,4381,1,0,0,0,4383,4385,1,0,0,0,4384, + 4379,1,0,0,0,4384,4385,1,0,0,0,4385,319,1,0,0,0,4386,4387,5,74,0, + 0,4387,4388,5,20,0,0,4388,4393,3,326,163,0,4389,4390,5,868,0,0,4390, + 4392,3,326,163,0,4391,4389,1,0,0,0,4392,4395,1,0,0,0,4393,4391,1, + 0,0,0,4393,4394,1,0,0,0,4394,4398,1,0,0,0,4395,4393,1,0,0,0,4396, + 4397,5,194,0,0,4397,4399,5,584,0,0,4398,4396,1,0,0,0,4398,4399,1, + 0,0,0,4399,321,1,0,0,0,4400,4401,5,75,0,0,4401,4402,3,820,410,0, + 4402,323,1,0,0,0,4403,4404,5,689,0,0,4404,4405,3,798,399,0,4405, + 4406,5,13,0,0,4406,4407,5,866,0,0,4407,4408,3,796,398,0,4408,4418, + 5,867,0,0,4409,4410,5,868,0,0,4410,4411,3,798,399,0,4411,4412,5, + 13,0,0,4412,4413,5,866,0,0,4413,4414,3,796,398,0,4414,4415,5,867, + 0,0,4415,4417,1,0,0,0,4416,4409,1,0,0,0,4417,4420,1,0,0,0,4418,4416, + 1,0,0,0,4418,4419,1,0,0,0,4419,325,1,0,0,0,4420,4418,1,0,0,0,4421, + 4423,3,820,410,0,4422,4424,7,55,0,0,4423,4422,1,0,0,0,4423,4424, + 1,0,0,0,4424,327,1,0,0,0,4425,4436,5,100,0,0,4426,4427,3,330,165, + 0,4427,4428,5,868,0,0,4428,4430,1,0,0,0,4429,4426,1,0,0,0,4429,4430, + 1,0,0,0,4430,4431,1,0,0,0,4431,4437,3,330,165,0,4432,4433,3,330, + 165,0,4433,4434,5,509,0,0,4434,4435,3,330,165,0,4435,4437,1,0,0, + 0,4436,4429,1,0,0,0,4436,4432,1,0,0,0,4437,329,1,0,0,0,4438,4442, + 3,728,364,0,4439,4442,3,702,351,0,4440,4442,3,724,362,0,4441,4438, + 1,0,0,0,4441,4439,1,0,0,0,4441,4440,1,0,0,0,4442,331,1,0,0,0,4443, + 4444,5,640,0,0,4444,4453,5,664,0,0,4445,4450,3,354,177,0,4446,4447, + 5,868,0,0,4447,4449,3,354,177,0,4448,4446,1,0,0,0,4449,4452,1,0, + 0,0,4450,4448,1,0,0,0,4450,4451,1,0,0,0,4451,4454,1,0,0,0,4452,4450, + 1,0,0,0,4453,4445,1,0,0,0,4453,4454,1,0,0,0,4454,333,1,0,0,0,4455, + 4457,5,317,0,0,4456,4458,5,691,0,0,4457,4456,1,0,0,0,4457,4458,1, + 0,0,0,4458,335,1,0,0,0,4459,4461,5,341,0,0,4460,4462,5,691,0,0,4461, + 4460,1,0,0,0,4461,4462,1,0,0,0,4462,4468,1,0,0,0,4463,4465,5,11, + 0,0,4464,4466,5,502,0,0,4465,4464,1,0,0,0,4465,4466,1,0,0,0,4466, + 4467,1,0,0,0,4467,4469,5,326,0,0,4468,4463,1,0,0,0,4468,4469,1,0, + 0,0,4469,4474,1,0,0,0,4470,4472,5,502,0,0,4471,4470,1,0,0,0,4471, + 4472,1,0,0,0,4472,4473,1,0,0,0,4473,4475,5,140,0,0,4474,4471,1,0, + 0,0,4474,4475,1,0,0,0,4475,337,1,0,0,0,4476,4478,5,583,0,0,4477, + 4479,5,691,0,0,4478,4477,1,0,0,0,4478,4479,1,0,0,0,4479,4485,1,0, + 0,0,4480,4482,5,11,0,0,4481,4483,5,502,0,0,4482,4481,1,0,0,0,4482, + 4483,1,0,0,0,4483,4484,1,0,0,0,4484,4486,5,326,0,0,4485,4480,1,0, + 0,0,4485,4486,1,0,0,0,4486,4491,1,0,0,0,4487,4489,5,502,0,0,4488, + 4487,1,0,0,0,4488,4489,1,0,0,0,4489,4490,1,0,0,0,4490,4492,5,140, + 0,0,4491,4488,1,0,0,0,4491,4492,1,0,0,0,4492,339,1,0,0,0,4493,4494, + 5,589,0,0,4494,4495,3,722,361,0,4495,341,1,0,0,0,4496,4498,5,583, + 0,0,4497,4499,5,691,0,0,4498,4497,1,0,0,0,4498,4499,1,0,0,0,4499, + 4500,1,0,0,0,4500,4502,5,176,0,0,4501,4503,5,589,0,0,4502,4501,1, + 0,0,0,4502,4503,1,0,0,0,4503,4504,1,0,0,0,4504,4505,3,722,361,0, + 4505,343,1,0,0,0,4506,4507,5,140,0,0,4507,4508,5,589,0,0,4508,4509, + 3,722,361,0,4509,345,1,0,0,0,4510,4511,5,104,0,0,4511,4512,7,61, + 0,0,4512,4517,3,356,178,0,4513,4514,5,868,0,0,4514,4516,3,356,178, + 0,4515,4513,1,0,0,0,4516,4519,1,0,0,0,4517,4515,1,0,0,0,4517,4518, + 1,0,0,0,4518,347,1,0,0,0,4519,4517,1,0,0,0,4520,4521,5,183,0,0,4521, + 4522,5,752,0,0,4522,349,1,0,0,0,4523,4524,5,155,0,0,4524,4525,5, + 313,0,0,4525,4526,5,857,0,0,4526,4527,7,26,0,0,4527,351,1,0,0,0, + 4528,4530,5,155,0,0,4529,4531,7,62,0,0,4530,4529,1,0,0,0,4530,4531, + 1,0,0,0,4531,4532,1,0,0,0,4532,4533,5,664,0,0,4533,4538,3,360,180, + 0,4534,4535,5,868,0,0,4535,4537,3,360,180,0,4536,4534,1,0,0,0,4537, + 4540,1,0,0,0,4538,4536,1,0,0,0,4538,4539,1,0,0,0,4539,353,1,0,0, + 0,4540,4538,1,0,0,0,4541,4542,5,194,0,0,4542,4543,5,350,0,0,4543, + 4549,5,600,0,0,4544,4545,5,135,0,0,4545,4549,5,195,0,0,4546,4547, + 5,135,0,0,4547,4549,5,515,0,0,4548,4541,1,0,0,0,4548,4544,1,0,0, + 0,4548,4546,1,0,0,0,4549,355,1,0,0,0,4550,4555,3,662,331,0,4551, + 4553,5,13,0,0,4552,4551,1,0,0,0,4552,4553,1,0,0,0,4553,4554,1,0, + 0,0,4554,4556,3,722,361,0,4555,4552,1,0,0,0,4555,4556,1,0,0,0,4556, + 4557,1,0,0,0,4557,4558,3,358,179,0,4558,357,1,0,0,0,4559,4561,5, + 135,0,0,4560,4562,5,450,0,0,4561,4560,1,0,0,0,4561,4562,1,0,0,0, + 4562,4568,1,0,0,0,4563,4565,5,107,0,0,4564,4563,1,0,0,0,4564,4565, + 1,0,0,0,4565,4566,1,0,0,0,4566,4568,5,195,0,0,4567,4559,1,0,0,0, + 4567,4564,1,0,0,0,4568,359,1,0,0,0,4569,4570,5,440,0,0,4570,4571, + 5,448,0,0,4571,4577,3,362,181,0,4572,4573,5,135,0,0,4573,4577,5, + 195,0,0,4574,4575,5,135,0,0,4575,4577,5,515,0,0,4576,4569,1,0,0, + 0,4576,4572,1,0,0,0,4576,4574,1,0,0,0,4577,361,1,0,0,0,4578,4579, + 5,809,0,0,4579,4586,5,135,0,0,4580,4581,5,135,0,0,4581,4586,5,810, + 0,0,4582,4583,5,135,0,0,4583,4586,5,811,0,0,4584,4586,5,812,0,0, + 4585,4578,1,0,0,0,4585,4580,1,0,0,0,4585,4582,1,0,0,0,4585,4584, + 1,0,0,0,4586,363,1,0,0,0,4587,4588,5,25,0,0,4588,4589,5,453,0,0, + 4589,4590,5,176,0,0,4590,4595,3,380,190,0,4591,4592,5,868,0,0,4592, + 4594,3,380,190,0,4593,4591,1,0,0,0,4594,4597,1,0,0,0,4595,4593,1, + 0,0,0,4595,4596,1,0,0,0,4596,4599,1,0,0,0,4597,4595,1,0,0,0,4598, + 4600,3,400,200,0,4599,4598,1,0,0,0,4599,4600,1,0,0,0,4600,365,1, + 0,0,0,4601,4602,5,25,0,0,4602,4603,5,572,0,0,4603,4604,5,400,0,0, + 4604,4609,3,402,201,0,4605,4606,5,868,0,0,4606,4608,3,402,201,0, + 4607,4605,1,0,0,0,4608,4611,1,0,0,0,4609,4607,1,0,0,0,4609,4610, + 1,0,0,0,4610,4613,1,0,0,0,4611,4609,1,0,0,0,4612,4614,3,400,200, + 0,4613,4612,1,0,0,0,4613,4614,1,0,0,0,4614,367,1,0,0,0,4615,4616, + 5,25,0,0,4616,4617,5,572,0,0,4617,4618,5,605,0,0,4618,4619,5,176, + 0,0,4619,4624,3,390,195,0,4620,4621,5,868,0,0,4621,4623,3,390,195, + 0,4622,4620,1,0,0,0,4623,4626,1,0,0,0,4624,4622,1,0,0,0,4624,4625, + 1,0,0,0,4625,4628,1,0,0,0,4626,4624,1,0,0,0,4627,4629,3,400,200, + 0,4628,4627,1,0,0,0,4628,4629,1,0,0,0,4629,369,1,0,0,0,4630,4631, + 5,133,0,0,4631,4632,7,63,0,0,4632,4637,5,452,0,0,4633,4634,5,176, + 0,0,4634,4638,5,882,0,0,4635,4636,5,16,0,0,4636,4638,5,882,0,0,4637, + 4633,1,0,0,0,4637,4635,1,0,0,0,4638,371,1,0,0,0,4639,4640,5,640, + 0,0,4640,4649,7,64,0,0,4641,4646,3,406,203,0,4642,4643,5,868,0,0, + 4643,4645,3,406,203,0,4644,4642,1,0,0,0,4645,4648,1,0,0,0,4646,4644, + 1,0,0,0,4646,4647,1,0,0,0,4647,4650,1,0,0,0,4648,4646,1,0,0,0,4649, + 4641,1,0,0,0,4649,4650,1,0,0,0,4650,4653,1,0,0,0,4651,4652,5,676, + 0,0,4652,4654,3,408,204,0,4653,4651,1,0,0,0,4653,4654,1,0,0,0,4654, + 4658,1,0,0,0,4655,4657,3,410,205,0,4656,4655,1,0,0,0,4657,4660,1, + 0,0,0,4658,4656,1,0,0,0,4658,4659,1,0,0,0,4659,4662,1,0,0,0,4660, + 4658,1,0,0,0,4661,4663,3,400,200,0,4662,4661,1,0,0,0,4662,4663,1, + 0,0,0,4663,373,1,0,0,0,4664,4665,5,646,0,0,4665,4674,7,64,0,0,4666, + 4671,3,406,203,0,4667,4668,5,868,0,0,4668,4670,3,406,203,0,4669, + 4667,1,0,0,0,4670,4673,1,0,0,0,4671,4669,1,0,0,0,4671,4672,1,0,0, + 0,4672,4675,1,0,0,0,4673,4671,1,0,0,0,4674,4666,1,0,0,0,4674,4675, + 1,0,0,0,4675,4677,1,0,0,0,4676,4678,3,400,200,0,4677,4676,1,0,0, + 0,4677,4678,1,0,0,0,4678,375,1,0,0,0,4679,4680,5,640,0,0,4680,4684, + 5,415,0,0,4681,4682,5,678,0,0,4682,4683,5,857,0,0,4683,4685,5,882, + 0,0,4684,4681,1,0,0,0,4684,4685,1,0,0,0,4685,4690,1,0,0,0,4686,4687, + 5,868,0,0,4687,4688,5,529,0,0,4688,4689,5,857,0,0,4689,4691,5,882, + 0,0,4690,4686,1,0,0,0,4690,4691,1,0,0,0,4691,4696,1,0,0,0,4692,4693, + 5,868,0,0,4693,4694,5,363,0,0,4694,4695,5,857,0,0,4695,4697,5,882, + 0,0,4696,4692,1,0,0,0,4696,4697,1,0,0,0,4697,377,1,0,0,0,4698,4699, + 5,646,0,0,4699,4700,5,415,0,0,4700,379,1,0,0,0,4701,4702,3,382,191, + 0,4702,4703,5,857,0,0,4703,4704,5,882,0,0,4704,4729,1,0,0,0,4705, + 4706,3,384,192,0,4706,4707,5,857,0,0,4707,4708,3,728,364,0,4708, + 4729,1,0,0,0,4709,4710,3,386,193,0,4710,4711,5,857,0,0,4711,4712, + 7,26,0,0,4712,4729,1,0,0,0,4713,4729,3,388,194,0,4714,4715,5,424, + 0,0,4715,4716,5,857,0,0,4716,4725,5,866,0,0,4717,4722,3,722,361, + 0,4718,4719,5,868,0,0,4719,4721,3,722,361,0,4720,4718,1,0,0,0,4721, + 4724,1,0,0,0,4722,4720,1,0,0,0,4722,4723,1,0,0,0,4723,4726,1,0,0, + 0,4724,4722,1,0,0,0,4725,4717,1,0,0,0,4725,4726,1,0,0,0,4726,4727, + 1,0,0,0,4727,4729,5,867,0,0,4728,4701,1,0,0,0,4728,4705,1,0,0,0, + 4728,4709,1,0,0,0,4728,4713,1,0,0,0,4728,4714,1,0,0,0,4729,381,1, + 0,0,0,4730,4731,7,65,0,0,4731,383,1,0,0,0,4732,4733,7,66,0,0,4733, + 385,1,0,0,0,4734,4735,7,67,0,0,4735,387,1,0,0,0,4736,4737,5,543, + 0,0,4737,4738,5,857,0,0,4738,4750,7,68,0,0,4739,4740,5,574,0,0,4740, + 4741,5,857,0,0,4741,4750,7,69,0,0,4742,4743,5,310,0,0,4743,4747, + 5,857,0,0,4744,4748,5,507,0,0,4745,4748,5,450,0,0,4746,4748,3,412, + 206,0,4747,4744,1,0,0,0,4747,4745,1,0,0,0,4747,4746,1,0,0,0,4748, + 4750,1,0,0,0,4749,4736,1,0,0,0,4749,4739,1,0,0,0,4749,4742,1,0,0, + 0,4750,389,1,0,0,0,4751,4752,3,392,196,0,4752,4753,5,857,0,0,4753, + 4754,5,882,0,0,4754,4779,1,0,0,0,4755,4756,3,394,197,0,4756,4757, + 5,857,0,0,4757,4758,3,728,364,0,4758,4779,1,0,0,0,4759,4760,3,396, + 198,0,4760,4761,5,857,0,0,4761,4762,7,26,0,0,4762,4779,1,0,0,0,4763, + 4779,3,398,199,0,4764,4765,5,424,0,0,4765,4766,5,857,0,0,4766,4775, + 5,866,0,0,4767,4772,3,722,361,0,4768,4769,5,868,0,0,4769,4771,3, + 722,361,0,4770,4768,1,0,0,0,4771,4774,1,0,0,0,4772,4770,1,0,0,0, + 4772,4773,1,0,0,0,4773,4776,1,0,0,0,4774,4772,1,0,0,0,4775,4767, + 1,0,0,0,4775,4776,1,0,0,0,4776,4777,1,0,0,0,4777,4779,5,867,0,0, + 4778,4751,1,0,0,0,4778,4755,1,0,0,0,4778,4759,1,0,0,0,4778,4763, + 1,0,0,0,4778,4764,1,0,0,0,4779,391,1,0,0,0,4780,4781,7,70,0,0,4781, + 393,1,0,0,0,4782,4783,7,71,0,0,4783,395,1,0,0,0,4784,4785,7,72,0, + 0,4785,397,1,0,0,0,4786,4787,5,543,0,0,4787,4788,5,857,0,0,4788, + 4800,7,68,0,0,4789,4790,5,574,0,0,4790,4791,5,857,0,0,4791,4800, + 7,73,0,0,4792,4793,5,310,0,0,4793,4797,5,857,0,0,4794,4798,5,507, + 0,0,4795,4798,5,450,0,0,4796,4798,3,412,206,0,4797,4794,1,0,0,0, + 4797,4795,1,0,0,0,4797,4796,1,0,0,0,4798,4800,1,0,0,0,4799,4786, + 1,0,0,0,4799,4789,1,0,0,0,4799,4792,1,0,0,0,4800,399,1,0,0,0,4801, + 4802,5,65,0,0,4802,4803,5,328,0,0,4803,4804,5,882,0,0,4804,401,1, + 0,0,0,4805,4806,5,565,0,0,4806,4807,5,857,0,0,4807,4808,5,866,0, + 0,4808,4813,3,638,319,0,4809,4810,5,868,0,0,4810,4812,3,638,319, + 0,4811,4809,1,0,0,0,4812,4815,1,0,0,0,4813,4811,1,0,0,0,4813,4814, + 1,0,0,0,4814,4816,1,0,0,0,4815,4813,1,0,0,0,4816,4817,5,867,0,0, + 4817,4869,1,0,0,0,4818,4819,5,567,0,0,4819,4820,5,857,0,0,4820,4821, + 5,866,0,0,4821,4826,3,638,319,0,4822,4823,5,868,0,0,4823,4825,3, + 638,319,0,4824,4822,1,0,0,0,4825,4828,1,0,0,0,4826,4824,1,0,0,0, + 4826,4827,1,0,0,0,4827,4829,1,0,0,0,4828,4826,1,0,0,0,4829,4830, + 5,867,0,0,4830,4869,1,0,0,0,4831,4832,5,566,0,0,4832,4833,5,857, + 0,0,4833,4834,5,866,0,0,4834,4835,3,660,330,0,4835,4836,5,867,0, + 0,4836,4869,1,0,0,0,4837,4838,5,568,0,0,4838,4839,5,857,0,0,4839, + 4840,5,866,0,0,4840,4841,3,660,330,0,4841,4842,5,867,0,0,4842,4869, + 1,0,0,0,4843,4844,5,570,0,0,4844,4845,5,857,0,0,4845,4846,5,866, + 0,0,4846,4847,3,766,383,0,4847,4848,5,867,0,0,4848,4869,1,0,0,0, + 4849,4850,5,571,0,0,4850,4851,5,857,0,0,4851,4852,5,866,0,0,4852, + 4853,3,766,383,0,4853,4854,5,867,0,0,4854,4869,1,0,0,0,4855,4856, + 5,569,0,0,4856,4857,5,857,0,0,4857,4858,5,866,0,0,4858,4863,3,404, + 202,0,4859,4860,5,868,0,0,4860,4862,3,404,202,0,4861,4859,1,0,0, + 0,4862,4865,1,0,0,0,4863,4861,1,0,0,0,4863,4864,1,0,0,0,4864,4866, + 1,0,0,0,4865,4863,1,0,0,0,4866,4867,5,867,0,0,4867,4869,1,0,0,0, + 4868,4805,1,0,0,0,4868,4818,1,0,0,0,4868,4831,1,0,0,0,4868,4837, + 1,0,0,0,4868,4843,1,0,0,0,4868,4849,1,0,0,0,4868,4855,1,0,0,0,4869, + 403,1,0,0,0,4870,4871,5,866,0,0,4871,4872,3,662,331,0,4872,4873, + 5,868,0,0,4873,4874,3,662,331,0,4874,4875,5,867,0,0,4875,405,1,0, + 0,0,4876,4877,7,74,0,0,4877,407,1,0,0,0,4878,4879,7,75,0,0,4879, + 4880,5,857,0,0,4880,4904,3,412,206,0,4881,4882,5,460,0,0,4882,4883, + 5,857,0,0,4883,4884,5,882,0,0,4884,4885,5,868,0,0,4885,4886,5,461, + 0,0,4886,4887,5,857,0,0,4887,4904,3,728,364,0,4888,4889,5,611,0, + 0,4889,4890,5,857,0,0,4890,4891,5,882,0,0,4891,4892,5,868,0,0,4892, + 4893,5,612,0,0,4893,4894,5,857,0,0,4894,4904,3,728,364,0,4895,4896, + 5,557,0,0,4896,4897,5,857,0,0,4897,4898,5,882,0,0,4898,4899,5,868, + 0,0,4899,4900,5,558,0,0,4900,4901,5,857,0,0,4901,4904,3,728,364, + 0,4902,4904,5,634,0,0,4903,4878,1,0,0,0,4903,4881,1,0,0,0,4903,4888, + 1,0,0,0,4903,4895,1,0,0,0,4903,4902,1,0,0,0,4904,409,1,0,0,0,4905, + 4906,5,678,0,0,4906,4907,5,857,0,0,4907,4918,5,882,0,0,4908,4909, + 5,529,0,0,4909,4910,5,857,0,0,4910,4918,5,882,0,0,4911,4912,5,363, + 0,0,4912,4913,5,857,0,0,4913,4918,5,882,0,0,4914,4915,5,535,0,0, + 4915,4916,5,857,0,0,4916,4918,5,882,0,0,4917,4905,1,0,0,0,4917,4908, + 1,0,0,0,4917,4911,1,0,0,0,4917,4914,1,0,0,0,4918,411,1,0,0,0,4919, + 4924,3,712,356,0,4920,4921,5,868,0,0,4921,4923,3,712,356,0,4922, + 4920,1,0,0,0,4923,4926,1,0,0,0,4924,4922,1,0,0,0,4924,4925,1,0,0, + 0,4925,4929,1,0,0,0,4926,4924,1,0,0,0,4927,4929,5,882,0,0,4928,4919, + 1,0,0,0,4928,4927,1,0,0,0,4929,413,1,0,0,0,4930,4931,5,694,0,0,4931, + 4932,7,76,0,0,4932,4934,3,714,357,0,4933,4935,7,77,0,0,4934,4933, + 1,0,0,0,4934,4935,1,0,0,0,4935,415,1,0,0,0,4936,4937,5,694,0,0,4937, + 4938,5,378,0,0,4938,4944,3,714,357,0,4939,4942,5,654,0,0,4940,4941, + 5,65,0,0,4941,4943,5,489,0,0,4942,4940,1,0,0,0,4942,4943,1,0,0,0, + 4943,4945,1,0,0,0,4944,4939,1,0,0,0,4944,4945,1,0,0,0,4945,417,1, + 0,0,0,4946,4947,5,694,0,0,4947,4948,5,540,0,0,4948,4949,3,714,357, + 0,4949,419,1,0,0,0,4950,4951,5,694,0,0,4951,4952,5,341,0,0,4952, + 4955,3,714,357,0,4953,4954,5,513,0,0,4954,4956,5,533,0,0,4955,4953, + 1,0,0,0,4955,4956,1,0,0,0,4956,421,1,0,0,0,4957,4958,5,694,0,0,4958, + 4959,5,583,0,0,4959,4960,3,714,357,0,4960,423,1,0,0,0,4961,4962, + 5,694,0,0,4962,4965,5,551,0,0,4963,4964,5,33,0,0,4964,4966,3,714, + 357,0,4965,4963,1,0,0,0,4965,4966,1,0,0,0,4966,425,1,0,0,0,4967, + 4968,5,540,0,0,4968,4969,3,722,361,0,4969,4972,5,68,0,0,4970,4973, + 5,882,0,0,4971,4973,5,892,0,0,4972,4970,1,0,0,0,4972,4971,1,0,0, + 0,4973,427,1,0,0,0,4974,4975,5,717,0,0,4975,4978,3,722,361,0,4976, + 4977,5,188,0,0,4977,4979,3,768,384,0,4978,4976,1,0,0,0,4978,4979, + 1,0,0,0,4979,429,1,0,0,0,4980,4981,7,78,0,0,4981,4982,5,540,0,0, + 4982,4983,3,722,361,0,4983,431,1,0,0,0,4984,4987,3,434,217,0,4985, + 4987,3,4,2,0,4986,4984,1,0,0,0,4986,4985,1,0,0,0,4987,433,1,0,0, + 0,4988,4989,3,722,361,0,4989,4990,5,878,0,0,4990,4992,1,0,0,0,4991, + 4988,1,0,0,0,4991,4992,1,0,0,0,4992,4993,1,0,0,0,4993,4999,5,317, + 0,0,4994,4995,3,454,227,0,4995,4996,5,869,0,0,4996,4998,1,0,0,0, + 4997,4994,1,0,0,0,4998,5001,1,0,0,0,4999,4997,1,0,0,0,4999,5000, + 1,0,0,0,5000,5007,1,0,0,0,5001,4999,1,0,0,0,5002,5003,3,456,228, + 0,5003,5004,5,869,0,0,5004,5006,1,0,0,0,5005,5002,1,0,0,0,5006,5009, + 1,0,0,0,5007,5005,1,0,0,0,5007,5008,1,0,0,0,5008,5015,1,0,0,0,5009, + 5007,1,0,0,0,5010,5011,3,458,229,0,5011,5012,5,869,0,0,5012,5014, + 1,0,0,0,5013,5010,1,0,0,0,5014,5017,1,0,0,0,5015,5013,1,0,0,0,5015, + 5016,1,0,0,0,5016,5023,1,0,0,0,5017,5015,1,0,0,0,5018,5019,3,460, + 230,0,5019,5020,5,869,0,0,5020,5022,1,0,0,0,5021,5018,1,0,0,0,5022, + 5025,1,0,0,0,5023,5021,1,0,0,0,5023,5024,1,0,0,0,5024,5029,1,0,0, + 0,5025,5023,1,0,0,0,5026,5028,3,464,232,0,5027,5026,1,0,0,0,5028, + 5031,1,0,0,0,5029,5027,1,0,0,0,5029,5030,1,0,0,0,5030,5032,1,0,0, + 0,5031,5029,1,0,0,0,5032,5034,5,378,0,0,5033,5035,3,722,361,0,5034, + 5033,1,0,0,0,5034,5035,1,0,0,0,5035,435,1,0,0,0,5036,5039,5,23,0, + 0,5037,5040,3,722,361,0,5038,5040,3,820,410,0,5039,5037,1,0,0,0, + 5039,5038,1,0,0,0,5039,5040,1,0,0,0,5040,5042,1,0,0,0,5041,5043, + 3,466,233,0,5042,5041,1,0,0,0,5043,5044,1,0,0,0,5044,5042,1,0,0, + 0,5044,5045,1,0,0,0,5045,5052,1,0,0,0,5046,5048,5,53,0,0,5047,5049, + 3,464,232,0,5048,5047,1,0,0,0,5049,5050,1,0,0,0,5050,5048,1,0,0, + 0,5050,5051,1,0,0,0,5051,5053,1,0,0,0,5052,5046,1,0,0,0,5052,5053, + 1,0,0,0,5053,5054,1,0,0,0,5054,5055,5,378,0,0,5055,5056,5,23,0,0, + 5056,437,1,0,0,0,5057,5058,5,78,0,0,5058,5059,3,820,410,0,5059,5061, + 5,175,0,0,5060,5062,3,464,232,0,5061,5060,1,0,0,0,5062,5063,1,0, + 0,0,5063,5061,1,0,0,0,5063,5064,1,0,0,0,5064,5068,1,0,0,0,5065,5067, + 3,468,234,0,5066,5065,1,0,0,0,5067,5070,1,0,0,0,5068,5066,1,0,0, + 0,5068,5069,1,0,0,0,5069,5077,1,0,0,0,5070,5068,1,0,0,0,5071,5073, + 5,53,0,0,5072,5074,3,464,232,0,5073,5072,1,0,0,0,5074,5075,1,0,0, + 0,5075,5073,1,0,0,0,5075,5076,1,0,0,0,5076,5078,1,0,0,0,5077,5071, + 1,0,0,0,5077,5078,1,0,0,0,5078,5079,1,0,0,0,5079,5080,5,378,0,0, + 5080,5081,5,78,0,0,5081,439,1,0,0,0,5082,5083,5,90,0,0,5083,5084, + 3,722,361,0,5084,441,1,0,0,0,5085,5086,5,97,0,0,5086,5087,3,722, + 361,0,5087,443,1,0,0,0,5088,5089,3,722,361,0,5089,5090,5,878,0,0, + 5090,5092,1,0,0,0,5091,5088,1,0,0,0,5091,5092,1,0,0,0,5092,5093, + 1,0,0,0,5093,5095,5,106,0,0,5094,5096,3,464,232,0,5095,5094,1,0, + 0,0,5096,5097,1,0,0,0,5097,5095,1,0,0,0,5097,5098,1,0,0,0,5098,5099, + 1,0,0,0,5099,5100,5,378,0,0,5100,5102,5,106,0,0,5101,5103,3,722, + 361,0,5102,5101,1,0,0,0,5102,5103,1,0,0,0,5103,445,1,0,0,0,5104, + 5105,3,722,361,0,5105,5106,5,878,0,0,5106,5108,1,0,0,0,5107,5104, + 1,0,0,0,5107,5108,1,0,0,0,5108,5109,1,0,0,0,5109,5111,5,142,0,0, + 5110,5112,3,464,232,0,5111,5110,1,0,0,0,5112,5113,1,0,0,0,5113,5111, + 1,0,0,0,5113,5114,1,0,0,0,5114,5115,1,0,0,0,5115,5116,5,676,0,0, + 5116,5117,3,820,410,0,5117,5118,5,378,0,0,5118,5120,5,142,0,0,5119, + 5121,3,722,361,0,5120,5119,1,0,0,0,5120,5121,1,0,0,0,5121,447,1, + 0,0,0,5122,5123,5,148,0,0,5123,5124,3,820,410,0,5124,449,1,0,0,0, + 5125,5126,3,722,361,0,5126,5127,5,878,0,0,5127,5129,1,0,0,0,5128, + 5125,1,0,0,0,5128,5129,1,0,0,0,5129,5130,1,0,0,0,5130,5131,5,193, + 0,0,5131,5132,3,820,410,0,5132,5134,5,371,0,0,5133,5135,3,464,232, + 0,5134,5133,1,0,0,0,5135,5136,1,0,0,0,5136,5134,1,0,0,0,5136,5137, + 1,0,0,0,5137,5138,1,0,0,0,5138,5139,5,378,0,0,5139,5141,5,193,0, + 0,5140,5142,3,722,361,0,5141,5140,1,0,0,0,5141,5142,1,0,0,0,5142, + 451,1,0,0,0,5143,5144,5,334,0,0,5144,5159,3,722,361,0,5145,5150, + 5,64,0,0,5146,5148,5,501,0,0,5147,5146,1,0,0,0,5147,5148,1,0,0,0, + 5148,5149,1,0,0,0,5149,5151,5,68,0,0,5150,5147,1,0,0,0,5150,5151, + 1,0,0,0,5151,5152,1,0,0,0,5152,5153,3,722,361,0,5153,5154,5,88,0, + 0,5154,5155,3,720,360,0,5155,5159,1,0,0,0,5156,5157,5,516,0,0,5157, + 5159,3,722,361,0,5158,5143,1,0,0,0,5158,5145,1,0,0,0,5158,5156,1, + 0,0,0,5159,453,1,0,0,0,5160,5161,5,41,0,0,5161,5162,3,720,360,0, + 5162,5165,3,742,371,0,5163,5164,5,42,0,0,5164,5166,3,820,410,0,5165, + 5163,1,0,0,0,5165,5166,1,0,0,0,5166,455,1,0,0,0,5167,5168,5,41,0, + 0,5168,5169,3,722,361,0,5169,5170,5,30,0,0,5170,5177,5,65,0,0,5171, + 5178,3,728,364,0,5172,5174,5,164,0,0,5173,5175,5,682,0,0,5174,5173, + 1,0,0,0,5174,5175,1,0,0,0,5175,5176,1,0,0,0,5176,5178,5,882,0,0, + 5177,5171,1,0,0,0,5177,5172,1,0,0,0,5178,457,1,0,0,0,5179,5180,5, + 41,0,0,5180,5181,3,722,361,0,5181,5182,5,38,0,0,5182,5183,5,65,0, + 0,5183,5184,3,210,105,0,5184,459,1,0,0,0,5185,5186,5,41,0,0,5186, + 5187,7,79,0,0,5187,5188,5,417,0,0,5188,5189,5,65,0,0,5189,5194,3, + 462,231,0,5190,5191,5,868,0,0,5191,5193,3,462,231,0,5192,5190,1, + 0,0,0,5193,5196,1,0,0,0,5194,5192,1,0,0,0,5194,5195,1,0,0,0,5195, + 5197,1,0,0,0,5196,5194,1,0,0,0,5197,5198,3,432,216,0,5198,461,1, + 0,0,0,5199,5211,3,728,364,0,5200,5202,5,164,0,0,5201,5203,5,682, + 0,0,5202,5201,1,0,0,0,5202,5203,1,0,0,0,5203,5204,1,0,0,0,5204,5211, + 5,882,0,0,5205,5211,3,722,361,0,5206,5211,5,165,0,0,5207,5208,5, + 114,0,0,5208,5211,5,407,0,0,5209,5211,5,163,0,0,5210,5199,1,0,0, + 0,5210,5200,1,0,0,0,5210,5205,1,0,0,0,5210,5206,1,0,0,0,5210,5207, + 1,0,0,0,5210,5209,1,0,0,0,5211,463,1,0,0,0,5212,5215,3,18,9,0,5213, + 5215,3,4,2,0,5214,5212,1,0,0,0,5214,5213,1,0,0,0,5215,5216,1,0,0, + 0,5216,5217,5,869,0,0,5217,465,1,0,0,0,5218,5221,5,191,0,0,5219, + 5222,3,740,370,0,5220,5222,3,820,410,0,5221,5219,1,0,0,0,5221,5220, + 1,0,0,0,5222,5223,1,0,0,0,5223,5225,5,175,0,0,5224,5226,3,464,232, + 0,5225,5224,1,0,0,0,5226,5227,1,0,0,0,5227,5225,1,0,0,0,5227,5228, + 1,0,0,0,5228,467,1,0,0,0,5229,5230,5,54,0,0,5230,5231,3,820,410, + 0,5231,5233,5,175,0,0,5232,5234,3,464,232,0,5233,5232,1,0,0,0,5234, + 5235,1,0,0,0,5235,5233,1,0,0,0,5235,5236,1,0,0,0,5236,469,1,0,0, + 0,5237,5238,5,8,0,0,5238,5240,5,678,0,0,5239,5241,3,774,387,0,5240, + 5239,1,0,0,0,5240,5241,1,0,0,0,5241,5298,1,0,0,0,5242,5247,3,502, + 251,0,5243,5244,5,868,0,0,5244,5246,3,502,251,0,5245,5243,1,0,0, + 0,5246,5249,1,0,0,0,5247,5245,1,0,0,0,5247,5248,1,0,0,0,5248,5299, + 1,0,0,0,5249,5247,1,0,0,0,5250,5255,3,504,252,0,5251,5252,5,868, + 0,0,5252,5254,3,504,252,0,5253,5251,1,0,0,0,5254,5257,1,0,0,0,5255, + 5253,1,0,0,0,5255,5256,1,0,0,0,5256,5272,1,0,0,0,5257,5255,1,0,0, + 0,5258,5270,5,144,0,0,5259,5271,5,505,0,0,5260,5267,3,516,258,0, + 5261,5263,5,11,0,0,5262,5261,1,0,0,0,5262,5263,1,0,0,0,5263,5264, + 1,0,0,0,5264,5266,3,516,258,0,5265,5262,1,0,0,0,5266,5269,1,0,0, + 0,5267,5265,1,0,0,0,5267,5268,1,0,0,0,5268,5271,1,0,0,0,5269,5267, + 1,0,0,0,5270,5259,1,0,0,0,5270,5260,1,0,0,0,5271,5273,1,0,0,0,5272, + 5258,1,0,0,0,5272,5273,1,0,0,0,5273,5280,1,0,0,0,5274,5276,5,194, + 0,0,5275,5277,3,518,259,0,5276,5275,1,0,0,0,5277,5278,1,0,0,0,5278, + 5276,1,0,0,0,5278,5279,1,0,0,0,5279,5281,1,0,0,0,5280,5274,1,0,0, + 0,5280,5281,1,0,0,0,5281,5286,1,0,0,0,5282,5285,3,520,260,0,5283, + 5285,3,522,261,0,5284,5282,1,0,0,0,5284,5283,1,0,0,0,5285,5288,1, + 0,0,0,5286,5284,1,0,0,0,5286,5287,1,0,0,0,5287,5291,1,0,0,0,5288, + 5286,1,0,0,0,5289,5290,7,80,0,0,5290,5292,5,882,0,0,5291,5289,1, + 0,0,0,5291,5292,1,0,0,0,5292,5299,1,0,0,0,5293,5294,3,666,333,0, + 5294,5295,5,42,0,0,5295,5296,5,582,0,0,5296,5297,3,478,239,0,5297, + 5299,1,0,0,0,5298,5242,1,0,0,0,5298,5250,1,0,0,0,5298,5293,1,0,0, + 0,5299,471,1,0,0,0,5300,5301,5,34,0,0,5301,5303,5,678,0,0,5302,5304, + 3,776,388,0,5303,5302,1,0,0,0,5303,5304,1,0,0,0,5304,5305,1,0,0, + 0,5305,5307,3,700,350,0,5306,5308,3,506,253,0,5307,5306,1,0,0,0, + 5307,5308,1,0,0,0,5308,5316,1,0,0,0,5309,5310,5,868,0,0,5310,5312, + 3,700,350,0,5311,5313,3,506,253,0,5312,5311,1,0,0,0,5312,5313,1, + 0,0,0,5313,5315,1,0,0,0,5314,5309,1,0,0,0,5315,5318,1,0,0,0,5316, + 5314,1,0,0,0,5316,5317,1,0,0,0,5317,5322,1,0,0,0,5318,5316,1,0,0, + 0,5319,5320,5,42,0,0,5320,5321,5,582,0,0,5321,5323,3,478,239,0,5322, + 5319,1,0,0,0,5322,5323,1,0,0,0,5323,5338,1,0,0,0,5324,5336,5,144, + 0,0,5325,5337,5,505,0,0,5326,5333,3,516,258,0,5327,5329,5,11,0,0, + 5328,5327,1,0,0,0,5328,5329,1,0,0,0,5329,5330,1,0,0,0,5330,5332, + 3,516,258,0,5331,5328,1,0,0,0,5332,5335,1,0,0,0,5333,5331,1,0,0, + 0,5333,5334,1,0,0,0,5334,5337,1,0,0,0,5335,5333,1,0,0,0,5336,5325, + 1,0,0,0,5336,5326,1,0,0,0,5337,5339,1,0,0,0,5338,5324,1,0,0,0,5338, + 5339,1,0,0,0,5339,5346,1,0,0,0,5340,5342,5,194,0,0,5341,5343,3,518, + 259,0,5342,5341,1,0,0,0,5343,5344,1,0,0,0,5344,5342,1,0,0,0,5344, + 5345,1,0,0,0,5345,5347,1,0,0,0,5346,5340,1,0,0,0,5346,5347,1,0,0, + 0,5347,5352,1,0,0,0,5348,5351,3,520,260,0,5349,5351,3,522,261,0, + 5350,5348,1,0,0,0,5350,5349,1,0,0,0,5351,5354,1,0,0,0,5352,5350, + 1,0,0,0,5352,5353,1,0,0,0,5353,5357,1,0,0,0,5354,5352,1,0,0,0,5355, + 5356,7,80,0,0,5356,5358,5,882,0,0,5357,5355,1,0,0,0,5357,5358,1, + 0,0,0,5358,473,1,0,0,0,5359,5360,5,51,0,0,5360,5362,5,678,0,0,5361, + 5363,3,774,387,0,5362,5361,1,0,0,0,5362,5363,1,0,0,0,5363,5364,1, + 0,0,0,5364,5369,3,700,350,0,5365,5366,5,868,0,0,5366,5368,3,700, + 350,0,5367,5365,1,0,0,0,5368,5371,1,0,0,0,5369,5367,1,0,0,0,5369, + 5370,1,0,0,0,5370,475,1,0,0,0,5371,5369,1,0,0,0,5372,5373,5,73,0, + 0,5373,5378,3,530,265,0,5374,5375,5,868,0,0,5375,5377,3,530,265, + 0,5376,5374,1,0,0,0,5377,5380,1,0,0,0,5378,5376,1,0,0,0,5378,5379, + 1,0,0,0,5379,5381,1,0,0,0,5380,5378,1,0,0,0,5381,5383,5,119,0,0, + 5382,5384,3,498,249,0,5383,5382,1,0,0,0,5383,5384,1,0,0,0,5384,5385, + 1,0,0,0,5385,5386,3,534,267,0,5386,5396,5,176,0,0,5387,5392,3,510, + 255,0,5388,5389,5,868,0,0,5389,5391,3,510,255,0,5390,5388,1,0,0, + 0,5391,5394,1,0,0,0,5392,5390,1,0,0,0,5392,5393,1,0,0,0,5393,5397, + 1,0,0,0,5394,5392,1,0,0,0,5395,5397,3,664,332,0,5396,5387,1,0,0, + 0,5396,5395,1,0,0,0,5397,5412,1,0,0,0,5398,5410,5,144,0,0,5399,5411, + 5,505,0,0,5400,5407,3,516,258,0,5401,5403,5,11,0,0,5402,5401,1,0, + 0,0,5402,5403,1,0,0,0,5403,5404,1,0,0,0,5404,5406,3,516,258,0,5405, + 5402,1,0,0,0,5406,5409,1,0,0,0,5407,5405,1,0,0,0,5407,5408,1,0,0, + 0,5408,5411,1,0,0,0,5409,5407,1,0,0,0,5410,5399,1,0,0,0,5410,5400, + 1,0,0,0,5411,5413,1,0,0,0,5412,5398,1,0,0,0,5412,5413,1,0,0,0,5413, + 5423,1,0,0,0,5414,5420,5,194,0,0,5415,5416,5,73,0,0,5416,5419,5, + 121,0,0,5417,5419,3,518,259,0,5418,5415,1,0,0,0,5418,5417,1,0,0, + 0,5419,5422,1,0,0,0,5420,5418,1,0,0,0,5420,5421,1,0,0,0,5421,5424, + 1,0,0,0,5422,5420,1,0,0,0,5423,5414,1,0,0,0,5423,5424,1,0,0,0,5424, + 5432,1,0,0,0,5425,5426,5,13,0,0,5426,5430,3,700,350,0,5427,5428, + 5,194,0,0,5428,5429,5,582,0,0,5429,5431,3,478,239,0,5430,5427,1, + 0,0,0,5430,5431,1,0,0,0,5431,5433,1,0,0,0,5432,5425,1,0,0,0,5432, + 5433,1,0,0,0,5433,5462,1,0,0,0,5434,5437,5,73,0,0,5435,5436,5,547, + 0,0,5436,5438,5,119,0,0,5437,5435,1,0,0,0,5437,5438,1,0,0,0,5438, + 5439,1,0,0,0,5439,5444,3,666,333,0,5440,5441,5,868,0,0,5441,5443, + 3,666,333,0,5442,5440,1,0,0,0,5443,5446,1,0,0,0,5444,5442,1,0,0, + 0,5444,5445,1,0,0,0,5445,5447,1,0,0,0,5446,5444,1,0,0,0,5447,5448, + 5,176,0,0,5448,5453,3,666,333,0,5449,5450,5,868,0,0,5450,5452,3, + 666,333,0,5451,5449,1,0,0,0,5452,5455,1,0,0,0,5453,5451,1,0,0,0, + 5453,5454,1,0,0,0,5454,5459,1,0,0,0,5455,5453,1,0,0,0,5456,5457, + 5,194,0,0,5457,5458,5,704,0,0,5458,5460,5,121,0,0,5459,5456,1,0, + 0,0,5459,5460,1,0,0,0,5460,5462,1,0,0,0,5461,5372,1,0,0,0,5461,5434, + 1,0,0,0,5462,477,1,0,0,0,5463,5472,5,42,0,0,5464,5472,5,505,0,0, + 5465,5468,5,7,0,0,5466,5467,5,59,0,0,5467,5469,3,664,332,0,5468, + 5466,1,0,0,0,5468,5469,1,0,0,0,5469,5472,1,0,0,0,5470,5472,3,664, + 332,0,5471,5463,1,0,0,0,5471,5464,1,0,0,0,5471,5465,1,0,0,0,5471, + 5470,1,0,0,0,5472,479,1,0,0,0,5473,5474,5,73,0,0,5474,5475,5,547, + 0,0,5475,5476,5,119,0,0,5476,5477,3,700,350,0,5477,5478,5,176,0, + 0,5478,5483,3,700,350,0,5479,5480,5,868,0,0,5480,5482,3,700,350, + 0,5481,5479,1,0,0,0,5482,5485,1,0,0,0,5483,5481,1,0,0,0,5483,5484, + 1,0,0,0,5484,5489,1,0,0,0,5485,5483,1,0,0,0,5486,5487,5,194,0,0, + 5487,5488,5,73,0,0,5488,5490,5,121,0,0,5489,5486,1,0,0,0,5489,5490, + 1,0,0,0,5490,481,1,0,0,0,5491,5492,5,8,0,0,5492,5493,5,739,0,0,5493, + 5494,5,74,0,0,5494,5500,3,656,328,0,5495,5497,5,190,0,0,5496,5498, + 5,857,0,0,5497,5496,1,0,0,0,5497,5498,1,0,0,0,5498,5499,1,0,0,0, + 5499,5501,3,490,245,0,5500,5495,1,0,0,0,5500,5501,1,0,0,0,5501,5507, + 1,0,0,0,5502,5504,5,837,0,0,5503,5505,5,857,0,0,5504,5503,1,0,0, + 0,5504,5505,1,0,0,0,5505,5506,1,0,0,0,5506,5508,3,728,364,0,5507, + 5502,1,0,0,0,5507,5508,1,0,0,0,5508,5513,1,0,0,0,5509,5511,7,39, + 0,0,5510,5512,5,66,0,0,5511,5510,1,0,0,0,5511,5512,1,0,0,0,5512, + 5514,1,0,0,0,5513,5509,1,0,0,0,5513,5514,1,0,0,0,5514,483,1,0,0, + 0,5515,5516,5,34,0,0,5516,5517,5,739,0,0,5517,5518,5,74,0,0,5518, + 5519,3,654,327,0,5519,5520,5,839,0,0,5520,5521,5,857,0,0,5521,5527, + 7,81,0,0,5522,5524,5,190,0,0,5523,5525,5,857,0,0,5524,5523,1,0,0, + 0,5524,5525,1,0,0,0,5525,5526,1,0,0,0,5526,5528,3,490,245,0,5527, + 5522,1,0,0,0,5527,5528,1,0,0,0,5528,5534,1,0,0,0,5529,5531,5,837, + 0,0,5530,5532,5,857,0,0,5531,5530,1,0,0,0,5531,5532,1,0,0,0,5532, + 5533,1,0,0,0,5533,5535,3,728,364,0,5534,5529,1,0,0,0,5534,5535,1, + 0,0,0,5535,5537,1,0,0,0,5536,5538,7,39,0,0,5537,5536,1,0,0,0,5537, + 5538,1,0,0,0,5538,485,1,0,0,0,5539,5540,5,51,0,0,5540,5541,5,739, + 0,0,5541,5542,5,74,0,0,5542,5544,3,656,328,0,5543,5545,5,66,0,0, + 5544,5543,1,0,0,0,5544,5545,1,0,0,0,5545,487,1,0,0,0,5546,5547,5, + 155,0,0,5547,5548,5,739,0,0,5548,5549,5,74,0,0,5549,5559,3,656,328, + 0,5550,5551,5,65,0,0,5551,5556,3,728,364,0,5552,5553,5,868,0,0,5553, + 5555,3,728,364,0,5554,5552,1,0,0,0,5555,5558,1,0,0,0,5556,5554,1, + 0,0,0,5556,5557,1,0,0,0,5557,5560,1,0,0,0,5558,5556,1,0,0,0,5559, + 5550,1,0,0,0,5559,5560,1,0,0,0,5560,489,1,0,0,0,5561,5567,3,728, + 364,0,5562,5563,3,728,364,0,5563,5564,5,854,0,0,5564,5565,3,728, + 364,0,5565,5567,1,0,0,0,5566,5561,1,0,0,0,5566,5562,1,0,0,0,5567, + 5572,1,0,0,0,5568,5569,5,868,0,0,5569,5571,3,490,245,0,5570,5568, + 1,0,0,0,5571,5574,1,0,0,0,5572,5570,1,0,0,0,5572,5573,1,0,0,0,5573, + 491,1,0,0,0,5574,5572,1,0,0,0,5575,5576,5,141,0,0,5576,5577,5,678, + 0,0,5577,5582,3,536,268,0,5578,5579,5,868,0,0,5579,5581,3,536,268, + 0,5580,5578,1,0,0,0,5581,5584,1,0,0,0,5582,5580,1,0,0,0,5582,5583, + 1,0,0,0,5583,493,1,0,0,0,5584,5582,1,0,0,0,5585,5587,5,149,0,0,5586, + 5588,3,774,387,0,5587,5586,1,0,0,0,5587,5588,1,0,0,0,5588,5589,1, + 0,0,0,5589,5594,3,530,265,0,5590,5591,5,868,0,0,5591,5593,3,530, + 265,0,5592,5590,1,0,0,0,5593,5596,1,0,0,0,5594,5592,1,0,0,0,5594, + 5595,1,0,0,0,5595,5597,1,0,0,0,5596,5594,1,0,0,0,5597,5599,5,119, + 0,0,5598,5600,3,498,249,0,5599,5598,1,0,0,0,5599,5600,1,0,0,0,5600, + 5601,1,0,0,0,5601,5602,3,534,267,0,5602,5603,5,68,0,0,5603,5605, + 3,664,332,0,5604,5606,3,496,248,0,5605,5604,1,0,0,0,5605,5606,1, + 0,0,0,5606,5638,1,0,0,0,5607,5609,5,149,0,0,5608,5610,3,774,387, + 0,5609,5608,1,0,0,0,5609,5610,1,0,0,0,5610,5611,1,0,0,0,5611,5613, + 5,7,0,0,5612,5614,5,734,0,0,5613,5612,1,0,0,0,5613,5614,1,0,0,0, + 5614,5615,1,0,0,0,5615,5616,5,868,0,0,5616,5617,5,73,0,0,5617,5618, + 5,121,0,0,5618,5619,5,68,0,0,5619,5621,3,664,332,0,5620,5622,3,496, + 248,0,5621,5620,1,0,0,0,5621,5622,1,0,0,0,5622,5638,1,0,0,0,5623, + 5625,5,149,0,0,5624,5626,3,774,387,0,5625,5624,1,0,0,0,5625,5626, + 1,0,0,0,5626,5629,1,0,0,0,5627,5628,5,547,0,0,5628,5630,5,119,0, + 0,5629,5627,1,0,0,0,5629,5630,1,0,0,0,5630,5631,1,0,0,0,5631,5632, + 3,664,332,0,5632,5633,5,68,0,0,5633,5635,3,664,332,0,5634,5636,3, + 496,248,0,5635,5634,1,0,0,0,5635,5636,1,0,0,0,5636,5638,1,0,0,0, + 5637,5585,1,0,0,0,5637,5607,1,0,0,0,5637,5623,1,0,0,0,5638,495,1, + 0,0,0,5639,5640,5,79,0,0,5640,5641,5,674,0,0,5641,5642,5,678,0,0, + 5642,497,1,0,0,0,5643,5644,7,82,0,0,5644,499,1,0,0,0,5645,5646,5, + 155,0,0,5646,5649,5,529,0,0,5647,5648,5,65,0,0,5648,5650,3,700,350, + 0,5649,5647,1,0,0,0,5649,5650,1,0,0,0,5650,5651,1,0,0,0,5651,5654, + 5,857,0,0,5652,5655,3,814,407,0,5653,5655,5,882,0,0,5654,5652,1, + 0,0,0,5654,5653,1,0,0,0,5655,5678,1,0,0,0,5656,5657,5,155,0,0,5657, + 5660,5,529,0,0,5658,5659,5,65,0,0,5659,5661,3,700,350,0,5660,5658, + 1,0,0,0,5660,5661,1,0,0,0,5661,5666,1,0,0,0,5662,5663,5,176,0,0, + 5663,5667,5,829,0,0,5664,5665,5,857,0,0,5665,5667,5,882,0,0,5666, + 5662,1,0,0,0,5666,5664,1,0,0,0,5667,5670,1,0,0,0,5668,5669,5,143, + 0,0,5669,5671,5,882,0,0,5670,5668,1,0,0,0,5670,5671,1,0,0,0,5671, + 5675,1,0,0,0,5672,5673,5,147,0,0,5673,5674,5,36,0,0,5674,5676,5, + 529,0,0,5675,5672,1,0,0,0,5675,5676,1,0,0,0,5676,5678,1,0,0,0,5677, + 5645,1,0,0,0,5677,5656,1,0,0,0,5678,501,1,0,0,0,5679,5680,3,700, + 350,0,5680,5681,3,520,260,0,5681,503,1,0,0,0,5682,5708,3,700,350, + 0,5683,5684,5,423,0,0,5684,5685,5,20,0,0,5685,5686,5,882,0,0,5686, + 5709,3,512,256,0,5687,5688,5,423,0,0,5688,5689,5,20,0,0,5689,5690, + 5,829,0,0,5690,5691,5,529,0,0,5691,5709,3,512,256,0,5692,5693,5, + 423,0,0,5693,5694,5,194,0,0,5694,5709,3,514,257,0,5695,5696,5,369, + 0,0,5696,5697,5,511,0,0,5697,5709,5,529,0,0,5698,5699,7,83,0,0,5699, + 5701,3,528,264,0,5700,5702,3,524,262,0,5701,5700,1,0,0,0,5701,5702, + 1,0,0,0,5702,5704,1,0,0,0,5703,5698,1,0,0,0,5704,5705,1,0,0,0,5705, + 5703,1,0,0,0,5705,5706,1,0,0,0,5706,5709,1,0,0,0,5707,5709,3,526, + 263,0,5708,5683,1,0,0,0,5708,5687,1,0,0,0,5708,5692,1,0,0,0,5708, + 5695,1,0,0,0,5708,5703,1,0,0,0,5708,5707,1,0,0,0,5708,5709,1,0,0, + 0,5709,505,1,0,0,0,5710,5711,5,423,0,0,5711,5717,5,20,0,0,5712,5718, + 5,882,0,0,5713,5714,5,829,0,0,5714,5718,5,529,0,0,5715,5716,5,529, + 0,0,5716,5718,5,882,0,0,5717,5712,1,0,0,0,5717,5713,1,0,0,0,5717, + 5715,1,0,0,0,5718,5721,1,0,0,0,5719,5720,5,11,0,0,5720,5722,3,506, + 253,0,5721,5719,1,0,0,0,5721,5722,1,0,0,0,5722,5747,1,0,0,0,5723, + 5724,5,423,0,0,5724,5725,5,194,0,0,5725,5734,3,722,361,0,5726,5730, + 5,20,0,0,5727,5731,5,882,0,0,5728,5729,5,829,0,0,5729,5731,5,529, + 0,0,5730,5727,1,0,0,0,5730,5728,1,0,0,0,5731,5735,1,0,0,0,5732,5733, + 5,13,0,0,5733,5735,5,882,0,0,5734,5726,1,0,0,0,5734,5732,1,0,0,0, + 5734,5735,1,0,0,0,5735,5738,1,0,0,0,5736,5737,5,11,0,0,5737,5739, + 3,506,253,0,5738,5736,1,0,0,0,5738,5739,1,0,0,0,5739,5747,1,0,0, + 0,5740,5741,5,423,0,0,5741,5742,5,194,0,0,5742,5744,3,722,361,0, + 5743,5745,3,508,254,0,5744,5743,1,0,0,0,5744,5745,1,0,0,0,5745,5747, + 1,0,0,0,5746,5710,1,0,0,0,5746,5723,1,0,0,0,5746,5740,1,0,0,0,5747, + 507,1,0,0,0,5748,5749,5,427,0,0,5749,5750,5,708,0,0,5750,5751,5, + 423,0,0,5751,5755,5,20,0,0,5752,5753,5,829,0,0,5753,5756,5,529,0, + 0,5754,5756,5,882,0,0,5755,5752,1,0,0,0,5755,5754,1,0,0,0,5756,5766, + 1,0,0,0,5757,5758,5,427,0,0,5758,5759,5,708,0,0,5759,5760,5,423, + 0,0,5760,5761,5,194,0,0,5761,5762,3,722,361,0,5762,5763,5,13,0,0, + 5763,5764,5,882,0,0,5764,5766,1,0,0,0,5765,5748,1,0,0,0,5765,5757, + 1,0,0,0,5766,509,1,0,0,0,5767,5768,3,700,350,0,5768,5769,5,423,0, + 0,5769,5770,5,20,0,0,5770,5771,5,529,0,0,5771,5772,5,882,0,0,5772, + 5793,1,0,0,0,5773,5774,3,700,350,0,5774,5775,5,423,0,0,5775,5776, + 5,20,0,0,5776,5777,5,829,0,0,5777,5778,5,529,0,0,5778,5779,3,512, + 256,0,5779,5793,1,0,0,0,5780,5781,3,700,350,0,5781,5782,5,423,0, + 0,5782,5783,5,20,0,0,5783,5784,5,882,0,0,5784,5785,3,512,256,0,5785, + 5793,1,0,0,0,5786,5787,3,700,350,0,5787,5788,5,423,0,0,5788,5789, + 5,194,0,0,5789,5790,3,514,257,0,5790,5793,1,0,0,0,5791,5793,3,700, + 350,0,5792,5767,1,0,0,0,5792,5773,1,0,0,0,5792,5780,1,0,0,0,5792, + 5786,1,0,0,0,5792,5791,1,0,0,0,5793,511,1,0,0,0,5794,5795,5,143, + 0,0,5795,5797,5,882,0,0,5796,5794,1,0,0,0,5796,5797,1,0,0,0,5797, + 5801,1,0,0,0,5798,5799,5,147,0,0,5799,5800,5,36,0,0,5800,5802,5, + 529,0,0,5801,5798,1,0,0,0,5801,5802,1,0,0,0,5802,513,1,0,0,0,5803, + 5811,3,722,361,0,5804,5808,7,84,0,0,5805,5809,5,882,0,0,5806,5807, + 5,829,0,0,5807,5809,5,529,0,0,5808,5805,1,0,0,0,5808,5806,1,0,0, + 0,5809,5810,1,0,0,0,5810,5812,3,512,256,0,5811,5804,1,0,0,0,5811, + 5812,1,0,0,0,5812,5818,1,0,0,0,5813,5814,3,722,361,0,5814,5815,5, + 188,0,0,5815,5816,3,814,407,0,5816,5818,1,0,0,0,5817,5803,1,0,0, + 0,5817,5813,1,0,0,0,5818,515,1,0,0,0,5819,5828,5,169,0,0,5820,5828, + 5,693,0,0,5821,5822,5,331,0,0,5822,5828,5,882,0,0,5823,5824,5,441, + 0,0,5824,5828,5,882,0,0,5825,5826,5,651,0,0,5826,5828,5,882,0,0, + 5827,5819,1,0,0,0,5827,5820,1,0,0,0,5827,5821,1,0,0,0,5827,5823, + 1,0,0,0,5827,5825,1,0,0,0,5828,517,1,0,0,0,5829,5830,5,479,0,0,5830, + 5838,3,728,364,0,5831,5832,5,482,0,0,5832,5838,3,728,364,0,5833, + 5834,5,478,0,0,5834,5838,3,728,364,0,5835,5836,5,483,0,0,5836,5838, + 3,728,364,0,5837,5829,1,0,0,0,5837,5831,1,0,0,0,5837,5833,1,0,0, + 0,5837,5835,1,0,0,0,5838,519,1,0,0,0,5839,5840,5,529,0,0,5840,5847, + 5,390,0,0,5841,5848,5,42,0,0,5842,5848,5,500,0,0,5843,5844,5,87, + 0,0,5844,5845,3,728,364,0,5845,5846,5,698,0,0,5846,5848,1,0,0,0, + 5847,5841,1,0,0,0,5847,5842,1,0,0,0,5847,5843,1,0,0,0,5847,5848, + 1,0,0,0,5848,5878,1,0,0,0,5849,5850,5,529,0,0,5850,5853,5,420,0, + 0,5851,5854,5,42,0,0,5852,5854,3,728,364,0,5853,5851,1,0,0,0,5853, + 5852,1,0,0,0,5854,5878,1,0,0,0,5855,5856,5,529,0,0,5856,5857,5,581, + 0,0,5857,5862,5,87,0,0,5858,5863,5,42,0,0,5859,5860,3,728,364,0, + 5860,5861,5,698,0,0,5861,5863,1,0,0,0,5862,5858,1,0,0,0,5862,5859, + 1,0,0,0,5863,5878,1,0,0,0,5864,5865,5,529,0,0,5865,5866,5,144,0, + 0,5866,5868,5,36,0,0,5867,5869,7,85,0,0,5868,5867,1,0,0,0,5868,5869, + 1,0,0,0,5869,5878,1,0,0,0,5870,5871,5,395,0,0,5871,5878,3,728,364, + 0,5872,5875,5,530,0,0,5873,5876,3,728,364,0,5874,5876,5,669,0,0, + 5875,5873,1,0,0,0,5875,5874,1,0,0,0,5876,5878,1,0,0,0,5877,5839, + 1,0,0,0,5877,5849,1,0,0,0,5877,5855,1,0,0,0,5877,5864,1,0,0,0,5877, + 5870,1,0,0,0,5877,5872,1,0,0,0,5878,521,1,0,0,0,5879,5880,5,304, + 0,0,5880,5881,7,86,0,0,5881,523,1,0,0,0,5882,5885,5,423,0,0,5883, + 5884,5,194,0,0,5884,5886,3,722,361,0,5885,5883,1,0,0,0,5885,5886, + 1,0,0,0,5886,5895,1,0,0,0,5887,5891,5,20,0,0,5888,5892,5,882,0,0, + 5889,5890,5,829,0,0,5890,5892,5,529,0,0,5891,5888,1,0,0,0,5891,5889, + 1,0,0,0,5892,5896,1,0,0,0,5893,5894,5,13,0,0,5894,5896,5,882,0,0, + 5895,5887,1,0,0,0,5895,5893,1,0,0,0,5896,525,1,0,0,0,5897,5898,3, + 528,264,0,5898,5899,5,429,0,0,5899,5900,5,555,0,0,5900,5913,1,0, + 0,0,5901,5902,3,528,264,0,5902,5903,5,401,0,0,5903,5904,5,555,0, + 0,5904,5905,5,155,0,0,5905,5906,5,330,0,0,5906,5907,5,13,0,0,5907, + 5908,5,882,0,0,5908,5913,1,0,0,0,5909,5910,3,528,264,0,5910,5911, + 5,675,0,0,5911,5913,1,0,0,0,5912,5897,1,0,0,0,5912,5901,1,0,0,0, + 5912,5909,1,0,0,0,5913,527,1,0,0,0,5914,5915,7,87,0,0,5915,5916, + 5,394,0,0,5916,529,1,0,0,0,5917,5922,3,532,266,0,5918,5919,5,866, + 0,0,5919,5920,3,670,335,0,5920,5921,5,867,0,0,5921,5923,1,0,0,0, + 5922,5918,1,0,0,0,5922,5923,1,0,0,0,5923,531,1,0,0,0,5924,5926,5, + 7,0,0,5925,5927,5,734,0,0,5926,5925,1,0,0,0,5926,5927,1,0,0,0,5927, + 6018,1,0,0,0,5928,5930,5,8,0,0,5929,5931,5,743,0,0,5930,5929,1,0, + 0,0,5930,5931,1,0,0,0,5931,6018,1,0,0,0,5932,5940,5,34,0,0,5933, + 5934,5,660,0,0,5934,5941,5,752,0,0,5935,5941,5,743,0,0,5936,5941, + 5,684,0,0,5937,5941,5,678,0,0,5938,5941,5,658,0,0,5939,5941,5,582, + 0,0,5940,5933,1,0,0,0,5940,5935,1,0,0,0,5940,5936,1,0,0,0,5940,5937, + 1,0,0,0,5940,5938,1,0,0,0,5940,5939,1,0,0,0,5940,5941,1,0,0,0,5941, + 6018,1,0,0,0,5942,6018,5,44,0,0,5943,5945,5,51,0,0,5944,5946,5,582, + 0,0,5945,5944,1,0,0,0,5945,5946,1,0,0,0,5946,6018,1,0,0,0,5947,6018, + 5,385,0,0,5948,6018,5,717,0,0,5949,6018,5,718,0,0,5950,5951,5,73, + 0,0,5951,6018,5,121,0,0,5952,6018,5,82,0,0,5953,6018,5,86,0,0,5954, + 5955,5,104,0,0,5955,6018,5,752,0,0,5956,6018,5,735,0,0,5957,6018, + 5,547,0,0,5958,6018,5,138,0,0,5959,6018,5,736,0,0,5960,5961,5,572, + 0,0,5961,6018,7,88,0,0,5962,6018,5,154,0,0,5963,5964,5,157,0,0,5964, + 6018,7,89,0,0,5965,6018,5,749,0,0,5966,6018,5,750,0,0,5967,6018, + 5,178,0,0,5968,6018,5,185,0,0,5969,6018,5,186,0,0,5970,6018,5,705, + 0,0,5971,6018,5,706,0,0,5972,6018,5,707,0,0,5973,6018,5,709,0,0, + 5974,6018,5,710,0,0,5975,6018,5,711,0,0,5976,6018,5,712,0,0,5977, + 6018,5,714,0,0,5978,6018,5,715,0,0,5979,6018,5,716,0,0,5980,6018, + 5,719,0,0,5981,6018,5,720,0,0,5982,6018,5,721,0,0,5983,6018,5,722, + 0,0,5984,6018,5,723,0,0,5985,6018,5,724,0,0,5986,6018,5,725,0,0, + 5987,6018,5,726,0,0,5988,6018,5,727,0,0,5989,6018,5,728,0,0,5990, + 6018,5,731,0,0,5991,6018,5,732,0,0,5992,6018,5,733,0,0,5993,6018, + 5,737,0,0,5994,6018,5,738,0,0,5995,6018,5,740,0,0,5996,6018,5,741, + 0,0,5997,6018,5,742,0,0,5998,6018,5,745,0,0,5999,6018,5,746,0,0, + 6000,6018,5,747,0,0,6001,6018,5,160,0,0,6002,6018,5,748,0,0,6003, + 6018,5,836,0,0,6004,6018,5,751,0,0,6005,6018,5,753,0,0,6006,6018, + 5,838,0,0,6007,6018,5,754,0,0,6008,6018,5,755,0,0,6009,6010,5,103, + 0,0,6010,6011,5,68,0,0,6011,6018,5,744,0,0,6012,6013,5,154,0,0,6013, + 6014,5,88,0,0,6014,6018,5,744,0,0,6015,6016,5,729,0,0,6016,6018, + 5,730,0,0,6017,5924,1,0,0,0,6017,5928,1,0,0,0,6017,5932,1,0,0,0, + 6017,5942,1,0,0,0,6017,5943,1,0,0,0,6017,5947,1,0,0,0,6017,5948, + 1,0,0,0,6017,5949,1,0,0,0,6017,5950,1,0,0,0,6017,5952,1,0,0,0,6017, + 5953,1,0,0,0,6017,5954,1,0,0,0,6017,5956,1,0,0,0,6017,5957,1,0,0, + 0,6017,5958,1,0,0,0,6017,5959,1,0,0,0,6017,5960,1,0,0,0,6017,5962, + 1,0,0,0,6017,5963,1,0,0,0,6017,5965,1,0,0,0,6017,5966,1,0,0,0,6017, + 5967,1,0,0,0,6017,5968,1,0,0,0,6017,5969,1,0,0,0,6017,5970,1,0,0, + 0,6017,5971,1,0,0,0,6017,5972,1,0,0,0,6017,5973,1,0,0,0,6017,5974, + 1,0,0,0,6017,5975,1,0,0,0,6017,5976,1,0,0,0,6017,5977,1,0,0,0,6017, + 5978,1,0,0,0,6017,5979,1,0,0,0,6017,5980,1,0,0,0,6017,5981,1,0,0, + 0,6017,5982,1,0,0,0,6017,5983,1,0,0,0,6017,5984,1,0,0,0,6017,5985, + 1,0,0,0,6017,5986,1,0,0,0,6017,5987,1,0,0,0,6017,5988,1,0,0,0,6017, + 5989,1,0,0,0,6017,5990,1,0,0,0,6017,5991,1,0,0,0,6017,5992,1,0,0, + 0,6017,5993,1,0,0,0,6017,5994,1,0,0,0,6017,5995,1,0,0,0,6017,5996, + 1,0,0,0,6017,5997,1,0,0,0,6017,5998,1,0,0,0,6017,5999,1,0,0,0,6017, + 6000,1,0,0,0,6017,6001,1,0,0,0,6017,6002,1,0,0,0,6017,6003,1,0,0, + 0,6017,6004,1,0,0,0,6017,6005,1,0,0,0,6017,6006,1,0,0,0,6017,6007, + 1,0,0,0,6017,6008,1,0,0,0,6017,6009,1,0,0,0,6017,6012,1,0,0,0,6017, + 6015,1,0,0,0,6018,533,1,0,0,0,6019,6036,5,850,0,0,6020,6021,5,850, + 0,0,6021,6022,5,865,0,0,6022,6036,5,850,0,0,6023,6024,3,722,361, + 0,6024,6025,5,865,0,0,6025,6026,5,850,0,0,6026,6036,1,0,0,0,6027, + 6028,3,722,361,0,6028,6029,5,865,0,0,6029,6030,3,722,361,0,6030, + 6036,1,0,0,0,6031,6032,3,722,361,0,6032,6033,3,726,363,0,6033,6036, + 1,0,0,0,6034,6036,3,722,361,0,6035,6019,1,0,0,0,6035,6020,1,0,0, + 0,6035,6023,1,0,0,0,6035,6027,1,0,0,0,6035,6031,1,0,0,0,6035,6034, + 1,0,0,0,6036,535,1,0,0,0,6037,6038,3,700,350,0,6038,6039,5,176,0, + 0,6039,6040,3,700,350,0,6040,537,1,0,0,0,6041,6043,5,10,0,0,6042, + 6044,3,548,274,0,6043,6042,1,0,0,0,6043,6044,1,0,0,0,6044,6045,1, + 0,0,0,6045,6046,5,173,0,0,6046,6090,3,660,330,0,6047,6049,5,10,0, + 0,6048,6050,3,548,274,0,6049,6048,1,0,0,0,6049,6050,1,0,0,0,6050, + 6051,1,0,0,0,6051,6052,5,173,0,0,6052,6053,3,662,331,0,6053,6054, + 5,185,0,0,6054,6055,5,77,0,0,6055,6056,5,119,0,0,6056,6061,3,670, + 335,0,6057,6058,5,194,0,0,6058,6059,3,728,364,0,6059,6060,5,19,0, + 0,6060,6062,1,0,0,0,6061,6057,1,0,0,0,6061,6062,1,0,0,0,6062,6090, + 1,0,0,0,6063,6065,5,10,0,0,6064,6066,3,548,274,0,6065,6064,1,0,0, + 0,6065,6066,1,0,0,0,6066,6067,1,0,0,0,6067,6068,5,173,0,0,6068,6069, + 3,662,331,0,6069,6070,5,185,0,0,6070,6071,5,77,0,0,6071,6072,5,119, + 0,0,6072,6076,3,674,337,0,6073,6074,5,188,0,0,6074,6075,5,360,0, + 0,6075,6077,5,882,0,0,6076,6073,1,0,0,0,6076,6077,1,0,0,0,6077,6090, + 1,0,0,0,6078,6080,5,10,0,0,6079,6081,3,548,274,0,6080,6079,1,0,0, + 0,6080,6081,1,0,0,0,6081,6082,1,0,0,0,6082,6083,5,173,0,0,6083,6084, + 3,662,331,0,6084,6085,5,51,0,0,6085,6086,5,77,0,0,6086,6087,5,119, + 0,0,6087,6088,3,670,335,0,6088,6090,1,0,0,0,6089,6041,1,0,0,0,6089, + 6047,1,0,0,0,6089,6063,1,0,0,0,6089,6078,1,0,0,0,6090,539,1,0,0, + 0,6091,6092,5,27,0,0,6092,6093,5,173,0,0,6093,6097,3,660,330,0,6094, + 6096,3,550,275,0,6095,6094,1,0,0,0,6096,6099,1,0,0,0,6097,6095,1, + 0,0,0,6097,6098,1,0,0,0,6098,541,1,0,0,0,6099,6097,1,0,0,0,6100, + 6101,5,329,0,0,6101,6102,5,173,0,0,6102,6104,3,660,330,0,6103,6105, + 7,90,0,0,6104,6103,1,0,0,0,6104,6105,1,0,0,0,6105,543,1,0,0,0,6106, + 6108,5,120,0,0,6107,6109,3,548,274,0,6108,6107,1,0,0,0,6108,6109, + 1,0,0,0,6109,6110,1,0,0,0,6110,6111,7,61,0,0,6111,6112,3,660,330, + 0,6112,545,1,0,0,0,6113,6115,5,562,0,0,6114,6116,3,548,274,0,6115, + 6114,1,0,0,0,6115,6116,1,0,0,0,6116,6117,1,0,0,0,6117,6118,5,173, + 0,0,6118,6120,3,660,330,0,6119,6121,5,549,0,0,6120,6119,1,0,0,0, + 6120,6121,1,0,0,0,6121,6123,1,0,0,0,6122,6124,5,392,0,0,6123,6122, + 1,0,0,0,6123,6124,1,0,0,0,6124,6126,1,0,0,0,6125,6127,5,679,0,0, + 6126,6125,1,0,0,0,6126,6127,1,0,0,0,6127,547,1,0,0,0,6128,6129,7, + 91,0,0,6129,549,1,0,0,0,6130,6131,5,65,0,0,6131,6138,5,677,0,0,6132, + 6138,5,549,0,0,6133,6138,5,396,0,0,6134,6138,5,484,0,0,6135,6138, + 5,392,0,0,6136,6138,5,327,0,0,6137,6130,1,0,0,0,6137,6132,1,0,0, + 0,6137,6133,1,0,0,0,6137,6134,1,0,0,0,6137,6135,1,0,0,0,6137,6136, + 1,0,0,0,6138,551,1,0,0,0,6139,6140,5,432,0,0,6140,6141,5,344,0,0, + 6141,6146,3,722,361,0,6142,6143,5,868,0,0,6143,6145,3,722,361,0, + 6144,6142,1,0,0,0,6145,6148,1,0,0,0,6146,6144,1,0,0,0,6146,6147, + 1,0,0,0,6147,6158,1,0,0,0,6148,6146,1,0,0,0,6149,6150,5,155,0,0, + 6150,6155,3,554,277,0,6151,6152,5,868,0,0,6152,6154,3,554,277,0, + 6153,6151,1,0,0,0,6154,6157,1,0,0,0,6155,6153,1,0,0,0,6155,6156, + 1,0,0,0,6156,6159,1,0,0,0,6157,6155,1,0,0,0,6158,6149,1,0,0,0,6158, + 6159,1,0,0,0,6159,553,1,0,0,0,6160,6161,7,92,0,0,6161,6162,3,718, + 359,0,6162,6163,5,857,0,0,6163,6164,3,820,410,0,6164,555,1,0,0,0, + 6165,6166,5,673,0,0,6166,6167,5,344,0,0,6167,6172,3,722,361,0,6168, + 6169,5,868,0,0,6169,6171,3,722,361,0,6170,6168,1,0,0,0,6171,6174, + 1,0,0,0,6172,6170,1,0,0,0,6172,6173,1,0,0,0,6173,557,1,0,0,0,6174, + 6172,1,0,0,0,6175,6176,5,432,0,0,6176,6177,5,534,0,0,6177,6178,3, + 722,361,0,6178,6179,5,603,0,0,6179,6180,5,882,0,0,6180,559,1,0,0, + 0,6181,6182,5,673,0,0,6182,6183,5,534,0,0,6183,6184,3,722,361,0, + 6184,561,1,0,0,0,6185,6186,5,713,0,0,6186,6187,5,450,0,0,6187,6188, + 5,360,0,0,6188,6190,5,367,0,0,6189,6191,5,857,0,0,6190,6189,1,0, + 0,0,6190,6191,1,0,0,0,6191,6192,1,0,0,0,6192,6216,5,882,0,0,6193, + 6194,5,713,0,0,6194,6195,5,433,0,0,6195,6196,5,68,0,0,6196,6197, + 3,692,346,0,6197,6198,5,423,0,0,6198,6199,5,20,0,0,6199,6206,5,882, + 0,0,6200,6201,5,360,0,0,6201,6203,5,367,0,0,6202,6204,5,857,0,0, + 6203,6202,1,0,0,0,6203,6204,1,0,0,0,6204,6205,1,0,0,0,6205,6207, + 5,882,0,0,6206,6200,1,0,0,0,6206,6207,1,0,0,0,6207,6213,1,0,0,0, + 6208,6210,5,144,0,0,6209,6211,5,502,0,0,6210,6209,1,0,0,0,6210,6211, + 1,0,0,0,6211,6212,1,0,0,0,6212,6214,5,169,0,0,6213,6208,1,0,0,0, + 6213,6214,1,0,0,0,6214,6216,1,0,0,0,6215,6185,1,0,0,0,6215,6193, + 1,0,0,0,6216,563,1,0,0,0,6217,6218,5,155,0,0,6218,6219,3,568,284, + 0,6219,6222,7,93,0,0,6220,6223,3,820,410,0,6221,6223,5,119,0,0,6222, + 6220,1,0,0,0,6222,6221,1,0,0,0,6223,6233,1,0,0,0,6224,6225,5,868, + 0,0,6225,6226,3,568,284,0,6226,6229,7,93,0,0,6227,6230,3,820,410, + 0,6228,6230,5,119,0,0,6229,6227,1,0,0,0,6229,6228,1,0,0,0,6230,6232, + 1,0,0,0,6231,6224,1,0,0,0,6232,6235,1,0,0,0,6233,6231,1,0,0,0,6233, + 6234,1,0,0,0,6234,6270,1,0,0,0,6235,6233,1,0,0,0,6236,6237,5,155, + 0,0,6237,6240,3,58,29,0,6238,6241,3,704,352,0,6239,6241,5,42,0,0, + 6240,6238,1,0,0,0,6240,6239,1,0,0,0,6241,6270,1,0,0,0,6242,6243, + 5,155,0,0,6243,6250,5,497,0,0,6244,6247,3,704,352,0,6245,6246,5, + 28,0,0,6246,6248,3,706,353,0,6247,6245,1,0,0,0,6247,6248,1,0,0,0, + 6248,6251,1,0,0,0,6249,6251,5,42,0,0,6250,6244,1,0,0,0,6250,6249, + 1,0,0,0,6251,6270,1,0,0,0,6252,6270,3,500,250,0,6253,6270,3,352, + 176,0,6254,6270,3,350,175,0,6255,6256,5,155,0,0,6256,6257,3,718, + 359,0,6257,6258,7,93,0,0,6258,6266,3,820,410,0,6259,6260,5,868,0, + 0,6260,6261,3,718,359,0,6261,6262,7,93,0,0,6262,6263,3,820,410,0, + 6263,6265,1,0,0,0,6264,6259,1,0,0,0,6265,6268,1,0,0,0,6266,6264, + 1,0,0,0,6266,6267,1,0,0,0,6267,6270,1,0,0,0,6268,6266,1,0,0,0,6269, + 6217,1,0,0,0,6269,6236,1,0,0,0,6269,6242,1,0,0,0,6269,6252,1,0,0, + 0,6269,6253,1,0,0,0,6269,6254,1,0,0,0,6269,6255,1,0,0,0,6270,565, + 1,0,0,0,6271,6272,5,157,0,0,6272,6273,7,63,0,0,6273,6456,5,452,0, + 0,6274,6275,5,157,0,0,6275,6276,7,94,0,0,6276,6279,5,386,0,0,6277, + 6278,5,80,0,0,6278,6280,5,882,0,0,6279,6277,1,0,0,0,6279,6280,1, + 0,0,0,6280,6283,1,0,0,0,6281,6282,5,68,0,0,6282,6284,3,728,364,0, + 6283,6281,1,0,0,0,6283,6284,1,0,0,0,6284,6292,1,0,0,0,6285,6289, + 5,100,0,0,6286,6287,3,728,364,0,6287,6288,5,868,0,0,6288,6290,1, + 0,0,0,6289,6286,1,0,0,0,6289,6290,1,0,0,0,6290,6291,1,0,0,0,6291, + 6293,3,728,364,0,6292,6285,1,0,0,0,6292,6293,1,0,0,0,6293,6295,1, + 0,0,0,6294,6296,3,400,200,0,6295,6294,1,0,0,0,6295,6296,1,0,0,0, + 6296,6456,1,0,0,0,6297,6298,5,157,0,0,6298,6300,3,570,285,0,6299, + 6301,3,572,286,0,6300,6299,1,0,0,0,6300,6301,1,0,0,0,6301,6456,1, + 0,0,0,6302,6304,5,157,0,0,6303,6305,5,392,0,0,6304,6303,1,0,0,0, + 6304,6305,1,0,0,0,6305,6307,1,0,0,0,6306,6308,5,408,0,0,6307,6306, + 1,0,0,0,6307,6308,1,0,0,0,6308,6309,1,0,0,0,6309,6310,7,47,0,0,6310, + 6311,7,95,0,0,6311,6314,3,662,331,0,6312,6313,7,95,0,0,6313,6315, + 3,638,319,0,6314,6312,1,0,0,0,6314,6315,1,0,0,0,6315,6317,1,0,0, + 0,6316,6318,3,572,286,0,6317,6316,1,0,0,0,6317,6318,1,0,0,0,6318, + 6456,1,0,0,0,6319,6320,5,157,0,0,6320,6321,5,34,0,0,6321,6323,7, + 0,0,0,6322,6324,3,776,388,0,6323,6322,1,0,0,0,6323,6324,1,0,0,0, + 6324,6325,1,0,0,0,6325,6456,3,638,319,0,6326,6327,5,157,0,0,6327, + 6328,5,34,0,0,6328,6329,7,96,0,0,6329,6456,3,718,359,0,6330,6331, + 5,157,0,0,6331,6332,5,34,0,0,6332,6333,5,409,0,0,6333,6456,3,642, + 321,0,6334,6335,5,157,0,0,6335,6336,5,34,0,0,6336,6337,5,684,0,0, + 6337,6456,3,646,323,0,6338,6339,5,157,0,0,6339,6340,5,34,0,0,6340, + 6341,5,173,0,0,6341,6456,3,662,331,0,6342,6343,5,157,0,0,6343,6344, + 5,34,0,0,6344,6345,5,678,0,0,6345,6456,3,700,350,0,6346,6347,5,157, + 0,0,6347,6348,5,380,0,0,6348,6349,3,708,354,0,6349,6350,7,97,0,0, + 6350,6456,1,0,0,0,6351,6352,5,157,0,0,6352,6456,3,574,287,0,6353, + 6354,5,157,0,0,6354,6362,7,98,0,0,6355,6359,5,100,0,0,6356,6357, + 3,728,364,0,6357,6358,5,868,0,0,6358,6360,1,0,0,0,6359,6356,1,0, + 0,0,6359,6360,1,0,0,0,6360,6361,1,0,0,0,6361,6363,3,728,364,0,6362, + 6355,1,0,0,0,6362,6363,1,0,0,0,6363,6456,1,0,0,0,6364,6365,5,157, + 0,0,6365,6366,5,262,0,0,6366,6367,5,866,0,0,6367,6368,5,850,0,0, + 6368,6369,5,867,0,0,6369,6456,7,98,0,0,6370,6371,5,157,0,0,6371, + 6374,3,576,288,0,6372,6373,7,95,0,0,6373,6375,3,638,319,0,6374,6372, + 1,0,0,0,6374,6375,1,0,0,0,6375,6377,1,0,0,0,6376,6378,3,572,286, + 0,6377,6376,1,0,0,0,6377,6378,1,0,0,0,6378,6456,1,0,0,0,6379,6380, + 5,157,0,0,6380,6381,5,132,0,0,6381,6382,5,336,0,0,6382,6456,3,718, + 359,0,6383,6384,5,157,0,0,6384,6385,5,409,0,0,6385,6386,5,336,0, + 0,6386,6456,3,642,321,0,6387,6388,5,157,0,0,6388,6395,5,414,0,0, + 6389,6390,5,65,0,0,6390,6393,3,666,333,0,6391,6392,5,188,0,0,6392, + 6394,3,664,332,0,6393,6391,1,0,0,0,6393,6394,1,0,0,0,6394,6396,1, + 0,0,0,6395,6389,1,0,0,0,6395,6396,1,0,0,0,6396,6456,1,0,0,0,6397, + 6399,5,157,0,0,6398,6400,5,392,0,0,6399,6398,1,0,0,0,6399,6400,1, + 0,0,0,6400,6401,1,0,0,0,6401,6402,7,99,0,0,6402,6403,7,95,0,0,6403, + 6406,3,662,331,0,6404,6405,7,95,0,0,6405,6407,3,638,319,0,6406,6404, + 1,0,0,0,6406,6407,1,0,0,0,6407,6410,1,0,0,0,6408,6409,5,192,0,0, + 6409,6411,3,820,410,0,6410,6408,1,0,0,0,6410,6411,1,0,0,0,6411,6456, + 1,0,0,0,6412,6413,5,157,0,0,6413,6414,5,516,0,0,6414,6417,5,752, + 0,0,6415,6416,7,95,0,0,6416,6418,3,638,319,0,6417,6415,1,0,0,0,6417, + 6418,1,0,0,0,6418,6420,1,0,0,0,6419,6421,3,572,286,0,6420,6419,1, + 0,0,0,6420,6421,1,0,0,0,6421,6456,1,0,0,0,6422,6423,5,157,0,0,6423, + 6432,5,545,0,0,6424,6429,3,578,289,0,6425,6426,5,868,0,0,6426,6428, + 3,578,289,0,6427,6425,1,0,0,0,6428,6431,1,0,0,0,6429,6427,1,0,0, + 0,6429,6430,1,0,0,0,6430,6433,1,0,0,0,6431,6429,1,0,0,0,6432,6424, + 1,0,0,0,6432,6433,1,0,0,0,6433,6437,1,0,0,0,6434,6435,5,65,0,0,6435, + 6436,5,548,0,0,6436,6438,3,728,364,0,6437,6434,1,0,0,0,6437,6438, + 1,0,0,0,6438,6445,1,0,0,0,6439,6440,5,100,0,0,6440,6443,3,728,364, + 0,6441,6442,5,509,0,0,6442,6444,3,728,364,0,6443,6441,1,0,0,0,6443, + 6444,1,0,0,0,6444,6446,1,0,0,0,6445,6439,1,0,0,0,6445,6446,1,0,0, + 0,6446,6456,1,0,0,0,6447,6448,5,157,0,0,6448,6449,7,64,0,0,6449, + 6451,5,645,0,0,6450,6452,3,400,200,0,6451,6450,1,0,0,0,6451,6452, + 1,0,0,0,6452,6456,1,0,0,0,6453,6454,5,157,0,0,6454,6456,5,564,0, + 0,6455,6271,1,0,0,0,6455,6274,1,0,0,0,6455,6297,1,0,0,0,6455,6302, + 1,0,0,0,6455,6319,1,0,0,0,6455,6326,1,0,0,0,6455,6330,1,0,0,0,6455, + 6334,1,0,0,0,6455,6338,1,0,0,0,6455,6342,1,0,0,0,6455,6346,1,0,0, + 0,6455,6351,1,0,0,0,6455,6353,1,0,0,0,6455,6364,1,0,0,0,6455,6370, + 1,0,0,0,6455,6379,1,0,0,0,6455,6383,1,0,0,0,6455,6387,1,0,0,0,6455, + 6397,1,0,0,0,6455,6412,1,0,0,0,6455,6422,1,0,0,0,6455,6447,1,0,0, + 0,6455,6453,1,0,0,0,6456,567,1,0,0,0,6457,6468,5,892,0,0,6458,6468, + 5,893,0,0,6459,6460,5,870,0,0,6460,6462,5,870,0,0,6461,6459,1,0, + 0,0,6461,6462,1,0,0,0,6462,6463,1,0,0,0,6463,6465,7,100,0,0,6464, + 6461,1,0,0,0,6464,6465,1,0,0,0,6465,6466,1,0,0,0,6466,6468,3,722, + 361,0,6467,6457,1,0,0,0,6467,6458,1,0,0,0,6467,6464,1,0,0,0,6468, + 569,1,0,0,0,6469,6470,5,26,0,0,6470,6484,5,155,0,0,6471,6484,5,823, + 0,0,6472,6484,5,824,0,0,6473,6484,5,40,0,0,6474,6484,5,153,0,0,6475, + 6476,5,409,0,0,6476,6484,5,645,0,0,6477,6478,5,132,0,0,6478,6484, + 5,645,0,0,6479,6481,7,62,0,0,6480,6479,1,0,0,0,6480,6481,1,0,0,0, + 6481,6482,1,0,0,0,6482,6484,7,101,0,0,6483,6469,1,0,0,0,6483,6471, + 1,0,0,0,6483,6472,1,0,0,0,6483,6473,1,0,0,0,6483,6474,1,0,0,0,6483, + 6475,1,0,0,0,6483,6477,1,0,0,0,6483,6480,1,0,0,0,6484,571,1,0,0, + 0,6485,6486,5,99,0,0,6486,6490,5,882,0,0,6487,6488,5,192,0,0,6488, + 6490,3,820,410,0,6489,6485,1,0,0,0,6489,6487,1,0,0,0,6490,573,1, + 0,0,0,6491,6493,5,647,0,0,6492,6491,1,0,0,0,6492,6493,1,0,0,0,6493, + 6494,1,0,0,0,6494,6509,5,381,0,0,6495,6496,5,453,0,0,6496,6509,5, + 645,0,0,6497,6509,5,536,0,0,6498,6509,5,734,0,0,6499,6501,5,408, + 0,0,6500,6499,1,0,0,0,6500,6501,1,0,0,0,6501,6502,1,0,0,0,6502,6509, + 5,544,0,0,6503,6509,5,546,0,0,6504,6505,5,598,0,0,6505,6509,5,422, + 0,0,6506,6509,5,312,0,0,6507,6509,5,356,0,0,6508,6492,1,0,0,0,6508, + 6495,1,0,0,0,6508,6497,1,0,0,0,6508,6498,1,0,0,0,6508,6500,1,0,0, + 0,6508,6503,1,0,0,0,6508,6504,1,0,0,0,6508,6506,1,0,0,0,6508,6507, + 1,0,0,0,6509,575,1,0,0,0,6510,6522,5,386,0,0,6511,6512,5,173,0,0, + 6512,6522,5,645,0,0,6513,6515,5,392,0,0,6514,6513,1,0,0,0,6514,6515, + 1,0,0,0,6515,6517,1,0,0,0,6516,6518,5,408,0,0,6517,6516,1,0,0,0, + 6517,6518,1,0,0,0,6518,6519,1,0,0,0,6519,6522,5,752,0,0,6520,6522, + 5,667,0,0,6521,6510,1,0,0,0,6521,6511,1,0,0,0,6521,6514,1,0,0,0, + 6521,6520,1,0,0,0,6522,577,1,0,0,0,6523,6536,5,7,0,0,6524,6525,5, + 320,0,0,6525,6536,5,437,0,0,6526,6527,5,355,0,0,6527,6536,5,656, + 0,0,6528,6536,5,358,0,0,6529,6536,5,439,0,0,6530,6536,5,802,0,0, + 6531,6532,5,521,0,0,6532,6536,5,397,0,0,6533,6536,5,605,0,0,6534, + 6536,5,655,0,0,6535,6523,1,0,0,0,6535,6524,1,0,0,0,6535,6526,1,0, + 0,0,6535,6528,1,0,0,0,6535,6529,1,0,0,0,6535,6530,1,0,0,0,6535,6531, + 1,0,0,0,6535,6533,1,0,0,0,6535,6534,1,0,0,0,6536,579,1,0,0,0,6537, + 6538,5,318,0,0,6538,6539,5,882,0,0,6539,581,1,0,0,0,6540,6541,5, + 324,0,0,6541,6559,5,82,0,0,6542,6547,3,602,301,0,6543,6544,5,868, + 0,0,6544,6546,3,602,301,0,6545,6543,1,0,0,0,6546,6549,1,0,0,0,6547, + 6545,1,0,0,0,6547,6548,1,0,0,0,6548,6560,1,0,0,0,6549,6547,1,0,0, + 0,6550,6551,3,662,331,0,6551,6552,5,130,0,0,6552,6555,5,866,0,0, + 6553,6556,3,686,343,0,6554,6556,5,7,0,0,6555,6553,1,0,0,0,6555,6554, + 1,0,0,0,6556,6557,1,0,0,0,6557,6558,5,867,0,0,6558,6560,1,0,0,0, + 6559,6542,1,0,0,0,6559,6550,1,0,0,0,6560,6561,1,0,0,0,6561,6562, + 5,80,0,0,6562,6563,3,638,319,0,6563,583,1,0,0,0,6564,6566,5,404, + 0,0,6565,6567,3,548,274,0,6566,6565,1,0,0,0,6566,6567,1,0,0,0,6567, + 6568,1,0,0,0,6568,6573,3,604,302,0,6569,6570,5,868,0,0,6570,6572, + 3,604,302,0,6571,6569,1,0,0,0,6572,6575,1,0,0,0,6573,6571,1,0,0, + 0,6573,6574,1,0,0,0,6574,585,1,0,0,0,6575,6573,1,0,0,0,6576,6578, + 5,94,0,0,6577,6579,7,102,0,0,6578,6577,1,0,0,0,6578,6579,1,0,0,0, + 6579,6580,1,0,0,0,6580,6581,3,820,410,0,6581,587,1,0,0,0,6582,6583, + 5,103,0,0,6583,6584,5,82,0,0,6584,6585,5,88,0,0,6585,6586,5,324, + 0,0,6586,6591,3,608,304,0,6587,6588,5,868,0,0,6588,6590,3,608,304, + 0,6589,6587,1,0,0,0,6590,6593,1,0,0,0,6591,6589,1,0,0,0,6591,6592, + 1,0,0,0,6592,589,1,0,0,0,6593,6591,1,0,0,0,6594,6595,5,575,0,0,6595, + 6600,3,592,296,0,6596,6597,5,868,0,0,6597,6599,3,592,296,0,6598, + 6596,1,0,0,0,6599,6602,1,0,0,0,6600,6598,1,0,0,0,6600,6601,1,0,0, + 0,6601,591,1,0,0,0,6602,6600,1,0,0,0,6603,6609,5,453,0,0,6604,6609, + 5,563,0,0,6605,6606,5,548,0,0,6606,6609,5,324,0,0,6607,6609,5,598, + 0,0,6608,6603,1,0,0,0,6608,6604,1,0,0,0,6608,6605,1,0,0,0,6608,6607, + 1,0,0,0,6609,593,1,0,0,0,6610,6611,5,575,0,0,6611,6616,5,531,0,0, + 6612,6614,3,774,387,0,6613,6612,1,0,0,0,6613,6614,1,0,0,0,6614,6615, + 1,0,0,0,6615,6617,3,722,361,0,6616,6613,1,0,0,0,6616,6617,1,0,0, + 0,6617,595,1,0,0,0,6618,6619,5,575,0,0,6619,6621,7,64,0,0,6620,6622, + 5,7,0,0,6621,6620,1,0,0,0,6621,6622,1,0,0,0,6622,6624,1,0,0,0,6623, + 6625,3,400,200,0,6624,6623,1,0,0,0,6624,6625,1,0,0,0,6625,597,1, + 0,0,0,6626,6627,5,576,0,0,6627,599,1,0,0,0,6628,6629,5,749,0,0,6629, + 601,1,0,0,0,6630,6636,3,662,331,0,6631,6632,7,19,0,0,6632,6633,5, + 866,0,0,6633,6634,3,650,325,0,6634,6635,5,867,0,0,6635,6637,1,0, + 0,0,6636,6631,1,0,0,0,6636,6637,1,0,0,0,6637,603,1,0,0,0,6638,6657, + 5,366,0,0,6639,6657,5,422,0,0,6640,6642,7,103,0,0,6641,6640,1,0, + 0,0,6641,6642,1,0,0,0,6642,6643,1,0,0,0,6643,6657,5,452,0,0,6644, + 6657,5,517,0,0,6645,6657,5,734,0,0,6646,6647,5,548,0,0,6647,6657, + 5,324,0,0,6648,6657,5,645,0,0,6649,6657,5,680,0,0,6650,6654,5,752, + 0,0,6651,6652,5,194,0,0,6652,6653,5,135,0,0,6653,6655,5,104,0,0, + 6654,6651,1,0,0,0,6654,6655,1,0,0,0,6655,6657,1,0,0,0,6656,6638, + 1,0,0,0,6656,6639,1,0,0,0,6656,6641,1,0,0,0,6656,6644,1,0,0,0,6656, + 6645,1,0,0,0,6656,6646,1,0,0,0,6656,6648,1,0,0,0,6656,6649,1,0,0, + 0,6656,6650,1,0,0,0,6657,6671,1,0,0,0,6658,6659,5,556,0,0,6659,6661, + 5,452,0,0,6660,6662,3,400,200,0,6661,6660,1,0,0,0,6661,6662,1,0, + 0,0,6662,6671,1,0,0,0,6663,6665,7,61,0,0,6664,6666,3,660,330,0,6665, + 6664,1,0,0,0,6665,6666,1,0,0,0,6666,6668,1,0,0,0,6667,6669,3,606, + 303,0,6668,6667,1,0,0,0,6668,6669,1,0,0,0,6669,6671,1,0,0,0,6670, + 6656,1,0,0,0,6670,6658,1,0,0,0,6670,6663,1,0,0,0,6671,605,1,0,0, + 0,6672,6673,5,194,0,0,6673,6674,5,135,0,0,6674,6678,5,104,0,0,6675, + 6676,5,65,0,0,6676,6678,5,391,0,0,6677,6672,1,0,0,0,6677,6675,1, + 0,0,0,6678,607,1,0,0,0,6679,6687,3,662,331,0,6680,6681,5,130,0,0, + 6681,6684,5,866,0,0,6682,6685,3,686,343,0,6683,6685,5,7,0,0,6684, + 6682,1,0,0,0,6684,6683,1,0,0,0,6685,6686,1,0,0,0,6686,6688,5,867, + 0,0,6687,6680,1,0,0,0,6687,6688,1,0,0,0,6688,6696,1,0,0,0,6689,6691, + 7,19,0,0,6690,6689,1,0,0,0,6690,6691,1,0,0,0,6691,6692,1,0,0,0,6692, + 6693,5,866,0,0,6693,6694,3,650,325,0,6694,6695,5,867,0,0,6695,6697, + 1,0,0,0,6696,6690,1,0,0,0,6696,6697,1,0,0,0,6697,6700,1,0,0,0,6698, + 6699,5,79,0,0,6699,6701,5,446,0,0,6700,6698,1,0,0,0,6700,6701,1, + 0,0,0,6701,609,1,0,0,0,6702,6703,7,104,0,0,6703,6706,3,662,331,0, + 6704,6707,3,674,337,0,6705,6707,5,882,0,0,6706,6704,1,0,0,0,6706, + 6705,1,0,0,0,6706,6707,1,0,0,0,6707,611,1,0,0,0,6708,6714,7,104, + 0,0,6709,6715,5,392,0,0,6710,6715,5,528,0,0,6711,6712,5,826,0,0, + 6712,6713,5,857,0,0,6713,6715,7,105,0,0,6714,6709,1,0,0,0,6714,6710, + 1,0,0,0,6714,6711,1,0,0,0,6714,6715,1,0,0,0,6715,6716,1,0,0,0,6716, + 6717,3,634,317,0,6717,613,1,0,0,0,6718,6719,7,104,0,0,6719,6723, + 5,10,0,0,6720,6721,5,826,0,0,6721,6722,5,857,0,0,6722,6724,5,666, + 0,0,6723,6720,1,0,0,0,6723,6724,1,0,0,0,6724,6725,1,0,0,0,6725,6726, + 3,210,105,0,6726,615,1,0,0,0,6727,6728,5,419,0,0,6728,6729,5,882, + 0,0,6729,617,1,0,0,0,6730,6731,5,187,0,0,6731,6732,3,638,319,0,6732, + 619,1,0,0,0,6733,6741,5,158,0,0,6734,6736,5,164,0,0,6735,6737,5, + 682,0,0,6736,6735,1,0,0,0,6736,6737,1,0,0,0,6737,6738,1,0,0,0,6738, + 6742,3,732,366,0,6739,6742,5,889,0,0,6740,6742,5,890,0,0,6741,6734, + 1,0,0,0,6741,6739,1,0,0,0,6741,6740,1,0,0,0,6742,6752,1,0,0,0,6743, + 6744,5,155,0,0,6744,6749,3,624,312,0,6745,6746,5,868,0,0,6746,6748, + 3,624,312,0,6747,6745,1,0,0,0,6748,6751,1,0,0,0,6749,6747,1,0,0, + 0,6749,6750,1,0,0,0,6750,6753,1,0,0,0,6751,6749,1,0,0,0,6752,6743, + 1,0,0,0,6752,6753,1,0,0,0,6753,621,1,0,0,0,6754,6762,5,145,0,0,6755, + 6757,5,164,0,0,6756,6758,5,682,0,0,6757,6756,1,0,0,0,6757,6758,1, + 0,0,0,6758,6759,1,0,0,0,6759,6763,3,732,366,0,6760,6763,5,889,0, + 0,6761,6763,5,890,0,0,6762,6755,1,0,0,0,6762,6760,1,0,0,0,6762,6761, + 1,0,0,0,6762,6763,1,0,0,0,6763,6773,1,0,0,0,6764,6765,5,155,0,0, + 6765,6770,3,624,312,0,6766,6767,5,868,0,0,6767,6769,3,624,312,0, + 6768,6766,1,0,0,0,6769,6772,1,0,0,0,6770,6768,1,0,0,0,6770,6771, + 1,0,0,0,6771,6774,1,0,0,0,6772,6770,1,0,0,0,6773,6764,1,0,0,0,6773, + 6774,1,0,0,0,6774,623,1,0,0,0,6775,6776,7,106,0,0,6776,6781,5,857, + 0,0,6777,6782,3,732,366,0,6778,6782,5,883,0,0,6779,6782,3,702,351, + 0,6780,6782,3,724,362,0,6781,6777,1,0,0,0,6781,6778,1,0,0,0,6781, + 6779,1,0,0,0,6781,6780,1,0,0,0,6782,625,1,0,0,0,6783,6785,5,194, + 0,0,6784,6786,5,552,0,0,6785,6784,1,0,0,0,6785,6786,1,0,0,0,6786, + 6787,1,0,0,0,6787,6792,3,52,26,0,6788,6789,5,868,0,0,6789,6791,3, + 52,26,0,6790,6788,1,0,0,0,6791,6794,1,0,0,0,6792,6790,1,0,0,0,6792, + 6793,1,0,0,0,6793,627,1,0,0,0,6794,6792,1,0,0,0,6795,6796,5,173, + 0,0,6796,6798,3,662,331,0,6797,6799,3,258,129,0,6798,6797,1,0,0, + 0,6798,6799,1,0,0,0,6799,6801,1,0,0,0,6800,6802,3,328,164,0,6801, + 6800,1,0,0,0,6801,6802,1,0,0,0,6802,629,1,0,0,0,6803,6805,5,72,0, + 0,6804,6806,7,107,0,0,6805,6804,1,0,0,0,6805,6806,1,0,0,0,6806,6807, + 1,0,0,0,6807,6839,5,48,0,0,6808,6809,3,568,284,0,6809,6810,5,857, + 0,0,6810,6818,7,108,0,0,6811,6812,5,868,0,0,6812,6813,3,568,284, + 0,6813,6814,5,857,0,0,6814,6815,7,108,0,0,6815,6817,1,0,0,0,6816, + 6811,1,0,0,0,6817,6820,1,0,0,0,6818,6816,1,0,0,0,6818,6819,1,0,0, + 0,6819,6840,1,0,0,0,6820,6818,1,0,0,0,6821,6824,5,30,0,0,6822,6825, + 3,728,364,0,6823,6825,3,568,284,0,6824,6822,1,0,0,0,6824,6823,1, + 0,0,0,6825,6826,1,0,0,0,6826,6827,3,568,284,0,6827,6828,5,857,0, + 0,6828,6836,3,632,316,0,6829,6830,5,868,0,0,6830,6831,3,568,284, + 0,6831,6832,5,857,0,0,6832,6833,3,632,316,0,6833,6835,1,0,0,0,6834, + 6829,1,0,0,0,6835,6838,1,0,0,0,6836,6834,1,0,0,0,6836,6837,1,0,0, + 0,6837,6840,1,0,0,0,6838,6836,1,0,0,0,6839,6808,1,0,0,0,6839,6821, + 1,0,0,0,6840,631,1,0,0,0,6841,6842,7,109,0,0,6842,633,1,0,0,0,6843, + 6849,3,210,105,0,6844,6849,3,186,93,0,6845,6849,3,192,96,0,6846, + 6849,3,208,104,0,6847,6849,3,220,110,0,6848,6843,1,0,0,0,6848,6844, + 1,0,0,0,6848,6845,1,0,0,0,6848,6846,1,0,0,0,6848,6847,1,0,0,0,6849, + 6854,1,0,0,0,6850,6851,5,65,0,0,6851,6852,5,349,0,0,6852,6854,3, + 722,361,0,6853,6848,1,0,0,0,6853,6850,1,0,0,0,6854,635,1,0,0,0,6855, + 6856,3,718,359,0,6856,637,1,0,0,0,6857,6858,3,718,359,0,6858,639, + 1,0,0,0,6859,6860,3,718,359,0,6860,641,1,0,0,0,6861,6862,3,718,359, + 0,6862,643,1,0,0,0,6863,6864,3,718,359,0,6864,645,1,0,0,0,6865,6866, + 3,718,359,0,6866,647,1,0,0,0,6867,6868,3,722,361,0,6868,649,1,0, + 0,0,6869,6874,3,652,326,0,6870,6871,5,868,0,0,6871,6873,3,652,326, + 0,6872,6870,1,0,0,0,6873,6876,1,0,0,0,6874,6872,1,0,0,0,6874,6875, + 1,0,0,0,6875,651,1,0,0,0,6876,6874,1,0,0,0,6877,6878,3,722,361,0, + 6878,653,1,0,0,0,6879,6880,3,722,361,0,6880,655,1,0,0,0,6881,6882, + 3,722,361,0,6882,657,1,0,0,0,6883,6884,3,718,359,0,6884,659,1,0, + 0,0,6885,6890,3,662,331,0,6886,6887,5,868,0,0,6887,6889,3,662,331, + 0,6888,6886,1,0,0,0,6889,6892,1,0,0,0,6890,6888,1,0,0,0,6890,6891, + 1,0,0,0,6891,661,1,0,0,0,6892,6890,1,0,0,0,6893,6894,3,718,359,0, + 6894,663,1,0,0,0,6895,6900,3,666,333,0,6896,6897,5,868,0,0,6897, + 6899,3,666,333,0,6898,6896,1,0,0,0,6899,6902,1,0,0,0,6900,6898,1, + 0,0,0,6900,6901,1,0,0,0,6901,665,1,0,0,0,6902,6900,1,0,0,0,6903, + 6906,3,700,350,0,6904,6906,3,722,361,0,6905,6903,1,0,0,0,6905,6904, + 1,0,0,0,6906,667,1,0,0,0,6907,6912,3,722,361,0,6908,6910,3,726,363, + 0,6909,6911,3,726,363,0,6910,6909,1,0,0,0,6910,6911,1,0,0,0,6911, + 6913,1,0,0,0,6912,6908,1,0,0,0,6912,6913,1,0,0,0,6913,6922,1,0,0, + 0,6914,6916,9,0,0,0,6915,6914,1,0,0,0,6915,6916,1,0,0,0,6916,6917, + 1,0,0,0,6917,6919,3,726,363,0,6918,6920,3,726,363,0,6919,6918,1, + 0,0,0,6919,6920,1,0,0,0,6920,6922,1,0,0,0,6921,6907,1,0,0,0,6921, + 6915,1,0,0,0,6922,669,1,0,0,0,6923,6928,3,674,337,0,6924,6925,5, + 868,0,0,6925,6927,3,674,337,0,6926,6924,1,0,0,0,6927,6930,1,0,0, + 0,6928,6926,1,0,0,0,6928,6929,1,0,0,0,6929,671,1,0,0,0,6930,6928, + 1,0,0,0,6931,6932,1,0,0,0,6932,673,1,0,0,0,6933,6938,3,722,361,0, + 6934,6936,3,726,363,0,6935,6937,3,726,363,0,6936,6935,1,0,0,0,6936, + 6937,1,0,0,0,6937,6939,1,0,0,0,6938,6934,1,0,0,0,6938,6939,1,0,0, + 0,6939,6950,1,0,0,0,6940,6942,9,0,0,0,6941,6940,1,0,0,0,6941,6942, + 1,0,0,0,6942,6943,1,0,0,0,6943,6945,3,726,363,0,6944,6946,3,726, + 363,0,6945,6944,1,0,0,0,6945,6946,1,0,0,0,6946,6950,1,0,0,0,6947, + 6948,4,337,4,0,6948,6950,3,672,336,0,6949,6933,1,0,0,0,6949,6941, + 1,0,0,0,6949,6947,1,0,0,0,6950,675,1,0,0,0,6951,6956,3,722,361,0, + 6952,6954,3,726,363,0,6953,6955,3,726,363,0,6954,6953,1,0,0,0,6954, + 6955,1,0,0,0,6955,6957,1,0,0,0,6956,6952,1,0,0,0,6956,6957,1,0,0, + 0,6957,6966,1,0,0,0,6958,6960,9,0,0,0,6959,6958,1,0,0,0,6959,6960, + 1,0,0,0,6960,6961,1,0,0,0,6961,6963,3,726,363,0,6962,6964,3,726, + 363,0,6963,6962,1,0,0,0,6963,6964,1,0,0,0,6964,6966,1,0,0,0,6965, + 6951,1,0,0,0,6965,6959,1,0,0,0,6966,677,1,0,0,0,6967,6968,4,339, + 5,0,6968,6977,3,672,336,0,6969,6974,3,722,361,0,6970,6972,3,726, + 363,0,6971,6973,3,726,363,0,6972,6971,1,0,0,0,6972,6973,1,0,0,0, + 6973,6975,1,0,0,0,6974,6970,1,0,0,0,6974,6975,1,0,0,0,6975,6977, + 1,0,0,0,6976,6967,1,0,0,0,6976,6969,1,0,0,0,6977,679,1,0,0,0,6978, + 6979,3,722,361,0,6979,681,1,0,0,0,6980,6981,3,722,361,0,6981,683, + 1,0,0,0,6982,6983,3,722,361,0,6983,685,1,0,0,0,6984,6989,3,688,344, + 0,6985,6986,5,868,0,0,6986,6988,3,688,344,0,6987,6985,1,0,0,0,6988, + 6991,1,0,0,0,6989,6987,1,0,0,0,6989,6990,1,0,0,0,6990,687,1,0,0, + 0,6991,6989,1,0,0,0,6992,6993,3,722,361,0,6993,689,1,0,0,0,6994, + 6999,3,722,361,0,6995,6996,5,866,0,0,6996,6997,3,728,364,0,6997, + 6998,5,867,0,0,6998,7000,1,0,0,0,6999,6995,1,0,0,0,6999,7000,1,0, + 0,0,7000,7003,1,0,0,0,7001,7003,3,820,410,0,7002,6994,1,0,0,0,7002, + 7001,1,0,0,0,7003,7005,1,0,0,0,7004,7006,7,55,0,0,7005,7004,1,0, + 0,0,7005,7006,1,0,0,0,7006,691,1,0,0,0,7007,7008,3,694,347,0,7008, + 7009,5,878,0,0,7009,7010,3,728,364,0,7010,693,1,0,0,0,7011,7012, + 3,696,348,0,7012,7013,5,891,0,0,7013,695,1,0,0,0,7014,7019,5,882, + 0,0,7015,7019,5,889,0,0,7016,7019,5,704,0,0,7017,7019,3,850,425, + 0,7018,7014,1,0,0,0,7018,7015,1,0,0,0,7018,7016,1,0,0,0,7018,7017, + 1,0,0,0,7019,697,1,0,0,0,7020,7021,7,110,0,0,7021,699,1,0,0,0,7022, + 7024,3,696,348,0,7023,7025,3,698,349,0,7024,7023,1,0,0,0,7024,7025, + 1,0,0,0,7025,7028,1,0,0,0,7026,7028,3,60,30,0,7027,7022,1,0,0,0, + 7027,7026,1,0,0,0,7028,701,1,0,0,0,7029,7030,7,111,0,0,7030,703, + 1,0,0,0,7031,7036,5,228,0,0,7032,7036,3,840,420,0,7033,7036,5,882, + 0,0,7034,7036,5,879,0,0,7035,7031,1,0,0,0,7035,7032,1,0,0,0,7035, + 7033,1,0,0,0,7035,7034,1,0,0,0,7036,705,1,0,0,0,7037,7038,3,722, + 361,0,7038,707,1,0,0,0,7039,7043,3,710,355,0,7040,7043,5,889,0,0, + 7041,7043,5,882,0,0,7042,7039,1,0,0,0,7042,7040,1,0,0,0,7042,7041, + 1,0,0,0,7043,709,1,0,0,0,7044,7045,7,112,0,0,7045,711,1,0,0,0,7046, + 7047,3,728,364,0,7047,7048,5,854,0,0,7048,7049,3,728,364,0,7049, + 7050,5,854,0,0,7050,7051,3,728,364,0,7051,7052,5,854,0,0,7052,7053, + 3,728,364,0,7053,7054,5,854,0,0,7054,7060,3,728,364,0,7055,7056, + 5,878,0,0,7056,7057,3,728,364,0,7057,7058,5,854,0,0,7058,7059,3, + 728,364,0,7059,7061,1,0,0,0,7060,7055,1,0,0,0,7061,7062,1,0,0,0, + 7062,7060,1,0,0,0,7062,7063,1,0,0,0,7063,713,1,0,0,0,7064,7071,3, + 716,358,0,7065,7066,5,868,0,0,7066,7069,3,716,358,0,7067,7068,5, + 868,0,0,7068,7070,3,728,364,0,7069,7067,1,0,0,0,7069,7070,1,0,0, + 0,7070,7072,1,0,0,0,7071,7065,1,0,0,0,7071,7072,1,0,0,0,7072,715, + 1,0,0,0,7073,7081,5,882,0,0,7074,7081,5,887,0,0,7075,7077,5,884, + 0,0,7076,7075,1,0,0,0,7077,7078,1,0,0,0,7078,7076,1,0,0,0,7078,7079, + 1,0,0,0,7079,7081,1,0,0,0,7080,7073,1,0,0,0,7080,7074,1,0,0,0,7080, + 7076,1,0,0,0,7081,717,1,0,0,0,7082,7084,3,722,361,0,7083,7085,3, + 726,363,0,7084,7083,1,0,0,0,7084,7085,1,0,0,0,7085,719,1,0,0,0,7086, + 7091,3,722,361,0,7087,7088,5,868,0,0,7088,7090,3,722,361,0,7089, + 7087,1,0,0,0,7090,7093,1,0,0,0,7091,7089,1,0,0,0,7091,7092,1,0,0, + 0,7092,721,1,0,0,0,7093,7091,1,0,0,0,7094,7098,3,724,362,0,7095, + 7098,5,879,0,0,7096,7098,5,882,0,0,7097,7094,1,0,0,0,7097,7095,1, + 0,0,0,7097,7096,1,0,0,0,7098,723,1,0,0,0,7099,7109,5,889,0,0,7100, + 7109,3,840,420,0,7101,7109,3,842,421,0,7102,7109,3,710,355,0,7103, + 7109,3,844,422,0,7104,7109,3,846,423,0,7105,7109,3,848,424,0,7106, + 7109,3,850,425,0,7107,7109,3,812,406,0,7108,7099,1,0,0,0,7108,7100, + 1,0,0,0,7108,7101,1,0,0,0,7108,7102,1,0,0,0,7108,7103,1,0,0,0,7108, + 7104,1,0,0,0,7108,7105,1,0,0,0,7108,7106,1,0,0,0,7108,7107,1,0,0, + 0,7109,725,1,0,0,0,7110,7111,5,865,0,0,7111,7115,5,889,0,0,7112, + 7113,5,865,0,0,7113,7115,3,722,361,0,7114,7110,1,0,0,0,7114,7112, + 1,0,0,0,7115,727,1,0,0,0,7116,7117,7,113,0,0,7117,729,1,0,0,0,7118, + 7121,5,880,0,0,7119,7121,3,728,364,0,7120,7118,1,0,0,0,7120,7119, + 1,0,0,0,7121,731,1,0,0,0,7122,7124,5,888,0,0,7123,7122,1,0,0,0,7123, + 7124,1,0,0,0,7124,7125,1,0,0,0,7125,7128,5,882,0,0,7126,7128,5,881, + 0,0,7127,7123,1,0,0,0,7127,7126,1,0,0,0,7128,7130,1,0,0,0,7129,7131, + 5,882,0,0,7130,7129,1,0,0,0,7131,7132,1,0,0,0,7132,7130,1,0,0,0, + 7132,7133,1,0,0,0,7133,7146,1,0,0,0,7134,7136,5,888,0,0,7135,7134, + 1,0,0,0,7135,7136,1,0,0,0,7136,7137,1,0,0,0,7137,7140,5,882,0,0, + 7138,7140,5,881,0,0,7139,7135,1,0,0,0,7139,7138,1,0,0,0,7140,7143, + 1,0,0,0,7141,7142,5,28,0,0,7142,7144,3,706,353,0,7143,7141,1,0,0, + 0,7143,7144,1,0,0,0,7144,7146,1,0,0,0,7145,7127,1,0,0,0,7145,7139, + 1,0,0,0,7146,733,1,0,0,0,7147,7148,7,114,0,0,7148,735,1,0,0,0,7149, + 7151,5,888,0,0,7150,7149,1,0,0,0,7150,7151,1,0,0,0,7151,7152,1,0, + 0,0,7152,7153,5,884,0,0,7153,737,1,0,0,0,7154,7156,5,114,0,0,7155, + 7154,1,0,0,0,7155,7156,1,0,0,0,7156,7157,1,0,0,0,7157,7158,7,115, + 0,0,7158,739,1,0,0,0,7159,7172,3,732,366,0,7160,7172,3,728,364,0, + 7161,7162,5,854,0,0,7162,7172,3,728,364,0,7163,7172,3,736,368,0, + 7164,7172,3,734,367,0,7165,7172,5,885,0,0,7166,7172,5,887,0,0,7167, + 7169,5,114,0,0,7168,7167,1,0,0,0,7168,7169,1,0,0,0,7169,7170,1,0, + 0,0,7170,7172,7,115,0,0,7171,7159,1,0,0,0,7171,7160,1,0,0,0,7171, + 7161,1,0,0,0,7171,7163,1,0,0,0,7171,7164,1,0,0,0,7171,7165,1,0,0, + 0,7171,7166,1,0,0,0,7171,7168,1,0,0,0,7172,741,1,0,0,0,7173,7175, + 7,116,0,0,7174,7176,5,240,0,0,7175,7174,1,0,0,0,7175,7176,1,0,0, + 0,7176,7178,1,0,0,0,7177,7179,3,748,374,0,7178,7177,1,0,0,0,7178, + 7179,1,0,0,0,7179,7181,1,0,0,0,7180,7182,5,228,0,0,7181,7180,1,0, + 0,0,7181,7182,1,0,0,0,7182,7186,1,0,0,0,7183,7184,3,58,29,0,7184, + 7185,3,704,352,0,7185,7187,1,0,0,0,7186,7183,1,0,0,0,7186,7187,1, + 0,0,0,7187,7191,1,0,0,0,7188,7189,5,28,0,0,7189,7192,3,706,353,0, + 7190,7192,5,228,0,0,7191,7188,1,0,0,0,7191,7190,1,0,0,0,7191,7192, + 1,0,0,0,7192,7300,1,0,0,0,7193,7194,5,227,0,0,7194,7195,7,117,0, + 0,7195,7197,5,240,0,0,7196,7198,3,748,374,0,7197,7196,1,0,0,0,7197, + 7198,1,0,0,0,7198,7200,1,0,0,0,7199,7201,5,228,0,0,7200,7199,1,0, + 0,0,7200,7201,1,0,0,0,7201,7300,1,0,0,0,7202,7203,5,227,0,0,7203, + 7205,7,118,0,0,7204,7206,3,748,374,0,7205,7204,1,0,0,0,7205,7206, + 1,0,0,0,7206,7208,1,0,0,0,7207,7209,5,228,0,0,7208,7207,1,0,0,0, + 7208,7209,1,0,0,0,7209,7300,1,0,0,0,7210,7211,5,498,0,0,7211,7213, + 5,225,0,0,7212,7214,3,748,374,0,7213,7212,1,0,0,0,7213,7214,1,0, + 0,0,7214,7216,1,0,0,0,7215,7217,5,228,0,0,7216,7215,1,0,0,0,7216, + 7217,1,0,0,0,7217,7300,1,0,0,0,7218,7220,7,119,0,0,7219,7221,3,748, + 374,0,7220,7219,1,0,0,0,7220,7221,1,0,0,0,7221,7225,1,0,0,0,7222, + 7224,7,120,0,0,7223,7222,1,0,0,0,7224,7227,1,0,0,0,7225,7223,1,0, + 0,0,7225,7226,1,0,0,0,7226,7300,1,0,0,0,7227,7225,1,0,0,0,7228,7230, + 5,210,0,0,7229,7231,3,750,375,0,7230,7229,1,0,0,0,7230,7231,1,0, + 0,0,7231,7235,1,0,0,0,7232,7234,7,120,0,0,7233,7232,1,0,0,0,7234, + 7237,1,0,0,0,7235,7233,1,0,0,0,7235,7236,1,0,0,0,7236,7300,1,0,0, + 0,7237,7235,1,0,0,0,7238,7240,5,211,0,0,7239,7241,5,212,0,0,7240, + 7239,1,0,0,0,7240,7241,1,0,0,0,7241,7243,1,0,0,0,7242,7244,3,750, + 375,0,7243,7242,1,0,0,0,7243,7244,1,0,0,0,7244,7248,1,0,0,0,7245, + 7247,7,120,0,0,7246,7245,1,0,0,0,7247,7250,1,0,0,0,7248,7246,1,0, + 0,0,7248,7249,1,0,0,0,7249,7300,1,0,0,0,7250,7248,1,0,0,0,7251,7253, + 7,121,0,0,7252,7254,3,752,376,0,7253,7252,1,0,0,0,7253,7254,1,0, + 0,0,7254,7258,1,0,0,0,7255,7257,7,120,0,0,7256,7255,1,0,0,0,7257, + 7260,1,0,0,0,7258,7256,1,0,0,0,7258,7259,1,0,0,0,7259,7300,1,0,0, + 0,7260,7258,1,0,0,0,7261,7300,7,122,0,0,7262,7264,7,123,0,0,7263, + 7265,3,748,374,0,7264,7263,1,0,0,0,7264,7265,1,0,0,0,7265,7300,1, + 0,0,0,7266,7267,7,124,0,0,7267,7269,3,744,372,0,7268,7270,5,228, + 0,0,7269,7268,1,0,0,0,7269,7270,1,0,0,0,7270,7274,1,0,0,0,7271,7272, + 3,58,29,0,7272,7273,3,704,352,0,7273,7275,1,0,0,0,7274,7271,1,0, + 0,0,7274,7275,1,0,0,0,7275,7300,1,0,0,0,7276,7279,7,125,0,0,7277, + 7278,5,834,0,0,7278,7280,3,728,364,0,7279,7277,1,0,0,0,7279,7280, + 1,0,0,0,7280,7300,1,0,0,0,7281,7283,5,233,0,0,7282,7284,5,225,0, + 0,7283,7282,1,0,0,0,7283,7284,1,0,0,0,7284,7286,1,0,0,0,7285,7287, + 5,228,0,0,7286,7285,1,0,0,0,7286,7287,1,0,0,0,7287,7291,1,0,0,0, + 7288,7289,3,58,29,0,7289,7290,3,704,352,0,7290,7292,1,0,0,0,7291, + 7288,1,0,0,0,7291,7292,1,0,0,0,7292,7295,1,0,0,0,7293,7294,5,28, + 0,0,7294,7296,3,706,353,0,7295,7293,1,0,0,0,7295,7296,1,0,0,0,7296, + 7300,1,0,0,0,7297,7298,5,233,0,0,7298,7300,5,229,0,0,7299,7173,1, + 0,0,0,7299,7193,1,0,0,0,7299,7202,1,0,0,0,7299,7210,1,0,0,0,7299, + 7218,1,0,0,0,7299,7228,1,0,0,0,7299,7238,1,0,0,0,7299,7251,1,0,0, + 0,7299,7261,1,0,0,0,7299,7262,1,0,0,0,7299,7266,1,0,0,0,7299,7276, + 1,0,0,0,7299,7281,1,0,0,0,7299,7297,1,0,0,0,7300,743,1,0,0,0,7301, + 7302,5,866,0,0,7302,7307,5,882,0,0,7303,7304,5,868,0,0,7304,7306, + 5,882,0,0,7305,7303,1,0,0,0,7306,7309,1,0,0,0,7307,7305,1,0,0,0, + 7307,7308,1,0,0,0,7308,7310,1,0,0,0,7309,7307,1,0,0,0,7310,7311, + 5,867,0,0,7311,745,1,0,0,0,7312,7314,7,126,0,0,7313,7315,3,748,374, + 0,7314,7313,1,0,0,0,7314,7315,1,0,0,0,7315,7335,1,0,0,0,7316,7318, + 5,224,0,0,7317,7319,3,748,374,0,7318,7317,1,0,0,0,7318,7319,1,0, + 0,0,7319,7323,1,0,0,0,7320,7321,3,58,29,0,7321,7322,3,704,352,0, + 7322,7324,1,0,0,0,7323,7320,1,0,0,0,7323,7324,1,0,0,0,7324,7335, + 1,0,0,0,7325,7335,7,127,0,0,7326,7328,7,128,0,0,7327,7329,3,752, + 376,0,7328,7327,1,0,0,0,7328,7329,1,0,0,0,7329,7335,1,0,0,0,7330, + 7332,7,129,0,0,7331,7333,7,130,0,0,7332,7331,1,0,0,0,7332,7333,1, + 0,0,0,7333,7335,1,0,0,0,7334,7312,1,0,0,0,7334,7316,1,0,0,0,7334, + 7325,1,0,0,0,7334,7326,1,0,0,0,7334,7330,1,0,0,0,7335,7337,1,0,0, + 0,7336,7338,5,12,0,0,7337,7336,1,0,0,0,7337,7338,1,0,0,0,7338,747, + 1,0,0,0,7339,7340,5,866,0,0,7340,7341,3,728,364,0,7341,7342,5,867, + 0,0,7342,749,1,0,0,0,7343,7344,5,866,0,0,7344,7345,3,728,364,0,7345, + 7346,5,868,0,0,7346,7347,3,728,364,0,7347,7348,5,867,0,0,7348,751, + 1,0,0,0,7349,7350,5,866,0,0,7350,7353,3,728,364,0,7351,7352,5,868, + 0,0,7352,7354,3,728,364,0,7353,7351,1,0,0,0,7353,7354,1,0,0,0,7354, + 7355,1,0,0,0,7355,7356,5,867,0,0,7356,753,1,0,0,0,7357,7358,5,866, + 0,0,7358,7363,3,690,345,0,7359,7360,5,868,0,0,7360,7362,3,690,345, + 0,7361,7359,1,0,0,0,7362,7365,1,0,0,0,7363,7361,1,0,0,0,7363,7364, + 1,0,0,0,7364,7366,1,0,0,0,7365,7363,1,0,0,0,7366,7367,5,867,0,0, + 7367,755,1,0,0,0,7368,7373,3,820,410,0,7369,7370,5,868,0,0,7370, + 7372,3,820,410,0,7371,7369,1,0,0,0,7372,7375,1,0,0,0,7373,7371,1, + 0,0,0,7373,7374,1,0,0,0,7374,757,1,0,0,0,7375,7373,1,0,0,0,7376, + 7377,7,131,0,0,7377,7382,3,760,380,0,7378,7379,5,868,0,0,7379,7381, + 3,760,380,0,7380,7378,1,0,0,0,7381,7384,1,0,0,0,7382,7380,1,0,0, + 0,7382,7383,1,0,0,0,7383,759,1,0,0,0,7384,7382,1,0,0,0,7385,7386, + 5,866,0,0,7386,7391,3,762,381,0,7387,7388,5,868,0,0,7388,7390,3, + 762,381,0,7389,7387,1,0,0,0,7390,7393,1,0,0,0,7391,7389,1,0,0,0, + 7391,7392,1,0,0,0,7392,7394,1,0,0,0,7393,7391,1,0,0,0,7394,7395, + 5,867,0,0,7395,761,1,0,0,0,7396,7399,3,820,410,0,7397,7399,5,42, + 0,0,7398,7396,1,0,0,0,7398,7397,1,0,0,0,7399,763,1,0,0,0,7400,7405, + 3,740,370,0,7401,7402,5,868,0,0,7402,7404,3,740,370,0,7403,7401, + 1,0,0,0,7404,7407,1,0,0,0,7405,7403,1,0,0,0,7405,7406,1,0,0,0,7406, + 765,1,0,0,0,7407,7405,1,0,0,0,7408,7413,5,882,0,0,7409,7410,5,868, + 0,0,7410,7412,5,882,0,0,7411,7409,1,0,0,0,7412,7415,1,0,0,0,7413, + 7411,1,0,0,0,7413,7414,1,0,0,0,7414,767,1,0,0,0,7415,7413,1,0,0, + 0,7416,7421,5,892,0,0,7417,7418,5,868,0,0,7418,7420,5,892,0,0,7419, + 7417,1,0,0,0,7420,7423,1,0,0,0,7421,7419,1,0,0,0,7421,7422,1,0,0, + 0,7422,769,1,0,0,0,7423,7421,1,0,0,0,7424,7451,5,116,0,0,7425,7426, + 5,24,0,0,7426,7427,5,866,0,0,7427,7428,3,820,410,0,7428,7429,5,13, + 0,0,7429,7430,3,746,373,0,7430,7431,5,867,0,0,7431,7451,1,0,0,0, + 7432,7434,3,826,413,0,7433,7432,1,0,0,0,7433,7434,1,0,0,0,7434,7435, + 1,0,0,0,7435,7451,3,740,370,0,7436,7440,3,772,386,0,7437,7438,5, + 119,0,0,7438,7439,5,185,0,0,7439,7441,3,772,386,0,7440,7437,1,0, + 0,0,7440,7441,1,0,0,0,7441,7451,1,0,0,0,7442,7443,5,866,0,0,7443, + 7444,3,820,410,0,7444,7445,5,867,0,0,7445,7451,1,0,0,0,7446,7447, + 5,866,0,0,7447,7448,3,718,359,0,7448,7449,5,867,0,0,7449,7451,1, + 0,0,0,7450,7424,1,0,0,0,7450,7425,1,0,0,0,7450,7433,1,0,0,0,7450, + 7436,1,0,0,0,7450,7442,1,0,0,0,7450,7446,1,0,0,0,7451,771,1,0,0, + 0,7452,7458,7,132,0,0,7453,7455,5,866,0,0,7454,7456,3,728,364,0, + 7455,7454,1,0,0,0,7455,7456,1,0,0,0,7456,7457,1,0,0,0,7457,7459, + 5,867,0,0,7458,7453,1,0,0,0,7458,7459,1,0,0,0,7459,7467,1,0,0,0, + 7460,7461,5,295,0,0,7461,7463,5,866,0,0,7462,7464,3,728,364,0,7463, + 7462,1,0,0,0,7463,7464,1,0,0,0,7464,7465,1,0,0,0,7465,7467,5,867, + 0,0,7466,7452,1,0,0,0,7466,7460,1,0,0,0,7467,773,1,0,0,0,7468,7469, + 5,78,0,0,7469,7470,5,60,0,0,7470,775,1,0,0,0,7471,7472,5,78,0,0, + 7472,7473,5,114,0,0,7473,7474,5,60,0,0,7474,777,1,0,0,0,7475,7476, + 5,124,0,0,7476,7477,5,143,0,0,7477,779,1,0,0,0,7478,7501,3,782,391, + 0,7479,7501,3,790,395,0,7480,7501,3,792,396,0,7481,7488,3,812,406, + 0,7482,7483,5,866,0,0,7483,7489,5,867,0,0,7484,7485,5,866,0,0,7485, + 7486,3,816,408,0,7486,7487,5,867,0,0,7487,7489,1,0,0,0,7488,7482, + 1,0,0,0,7488,7484,1,0,0,0,7489,7501,1,0,0,0,7490,7497,3,642,321, + 0,7491,7492,5,866,0,0,7492,7498,5,867,0,0,7493,7494,5,866,0,0,7494, + 7495,3,816,408,0,7495,7496,5,867,0,0,7496,7498,1,0,0,0,7497,7491, + 1,0,0,0,7497,7493,1,0,0,0,7498,7501,1,0,0,0,7499,7501,3,814,407, + 0,7500,7478,1,0,0,0,7500,7479,1,0,0,0,7500,7480,1,0,0,0,7500,7481, + 1,0,0,0,7500,7490,1,0,0,0,7500,7499,1,0,0,0,7501,781,1,0,0,0,7502, + 7505,7,133,0,0,7503,7504,5,866,0,0,7504,7506,5,867,0,0,7505,7503, + 1,0,0,0,7505,7506,1,0,0,0,7506,7682,1,0,0,0,7507,7682,3,60,30,0, + 7508,7509,5,33,0,0,7509,7510,5,866,0,0,7510,7511,3,820,410,0,7511, + 7512,5,868,0,0,7512,7513,3,746,373,0,7513,7514,5,867,0,0,7514,7682, + 1,0,0,0,7515,7516,5,33,0,0,7516,7517,5,866,0,0,7517,7518,3,820,410, + 0,7518,7519,5,188,0,0,7519,7520,3,704,352,0,7520,7521,5,867,0,0, + 7521,7682,1,0,0,0,7522,7523,5,24,0,0,7523,7524,5,866,0,0,7524,7525, + 3,820,410,0,7525,7526,5,13,0,0,7526,7527,3,746,373,0,7527,7528,5, + 867,0,0,7528,7682,1,0,0,0,7529,7530,5,189,0,0,7530,7531,5,866,0, + 0,7531,7532,3,674,337,0,7532,7533,5,867,0,0,7533,7682,1,0,0,0,7534, + 7536,5,23,0,0,7535,7537,3,784,392,0,7536,7535,1,0,0,0,7537,7538, + 1,0,0,0,7538,7536,1,0,0,0,7538,7539,1,0,0,0,7539,7542,1,0,0,0,7540, + 7541,5,53,0,0,7541,7543,3,818,409,0,7542,7540,1,0,0,0,7542,7543, + 1,0,0,0,7543,7544,1,0,0,0,7544,7545,5,378,0,0,7545,7682,1,0,0,0, + 7546,7547,5,23,0,0,7547,7549,3,820,410,0,7548,7550,3,784,392,0,7549, + 7548,1,0,0,0,7550,7551,1,0,0,0,7551,7549,1,0,0,0,7551,7552,1,0,0, + 0,7552,7555,1,0,0,0,7553,7554,5,53,0,0,7554,7556,3,818,409,0,7555, + 7553,1,0,0,0,7555,7556,1,0,0,0,7556,7557,1,0,0,0,7557,7558,5,378, + 0,0,7558,7682,1,0,0,0,7559,7560,5,224,0,0,7560,7561,5,866,0,0,7561, + 7564,3,816,408,0,7562,7563,5,188,0,0,7563,7565,3,704,352,0,7564, + 7562,1,0,0,0,7564,7565,1,0,0,0,7565,7566,1,0,0,0,7566,7567,5,867, + 0,0,7567,7682,1,0,0,0,7568,7569,5,296,0,0,7569,7572,5,866,0,0,7570, + 7573,3,732,366,0,7571,7573,3,820,410,0,7572,7570,1,0,0,0,7572,7571, + 1,0,0,0,7573,7574,1,0,0,0,7574,7577,5,80,0,0,7575,7578,3,732,366, + 0,7576,7578,3,820,410,0,7577,7575,1,0,0,0,7577,7576,1,0,0,0,7578, + 7579,1,0,0,0,7579,7580,5,867,0,0,7580,7682,1,0,0,0,7581,7582,7,134, + 0,0,7582,7585,5,866,0,0,7583,7586,3,732,366,0,7584,7586,3,820,410, + 0,7585,7583,1,0,0,0,7585,7584,1,0,0,0,7586,7587,1,0,0,0,7587,7590, + 5,68,0,0,7588,7591,3,728,364,0,7589,7591,3,820,410,0,7590,7588,1, + 0,0,0,7590,7589,1,0,0,0,7591,7597,1,0,0,0,7592,7595,5,65,0,0,7593, + 7596,3,728,364,0,7594,7596,3,820,410,0,7595,7593,1,0,0,0,7595,7594, + 1,0,0,0,7596,7598,1,0,0,0,7597,7592,1,0,0,0,7597,7598,1,0,0,0,7598, + 7599,1,0,0,0,7599,7600,5,867,0,0,7600,7682,1,0,0,0,7601,7602,5,300, + 0,0,7602,7603,5,866,0,0,7603,7606,7,135,0,0,7604,7607,3,732,366, + 0,7605,7607,3,820,410,0,7606,7604,1,0,0,0,7606,7605,1,0,0,0,7606, + 7607,1,0,0,0,7607,7608,1,0,0,0,7608,7611,5,68,0,0,7609,7612,3,732, + 366,0,7610,7612,3,820,410,0,7611,7609,1,0,0,0,7611,7610,1,0,0,0, + 7612,7613,1,0,0,0,7613,7614,5,867,0,0,7614,7682,1,0,0,0,7615,7616, + 5,300,0,0,7616,7619,5,866,0,0,7617,7620,3,732,366,0,7618,7620,3, + 820,410,0,7619,7617,1,0,0,0,7619,7618,1,0,0,0,7620,7621,1,0,0,0, + 7621,7624,5,68,0,0,7622,7625,3,732,366,0,7623,7625,3,820,410,0,7624, + 7622,1,0,0,0,7624,7623,1,0,0,0,7625,7626,1,0,0,0,7626,7627,5,867, + 0,0,7627,7682,1,0,0,0,7628,7629,5,840,0,0,7629,7632,5,866,0,0,7630, + 7633,3,732,366,0,7631,7633,3,820,410,0,7632,7630,1,0,0,0,7632,7631, + 1,0,0,0,7633,7640,1,0,0,0,7634,7635,5,13,0,0,7635,7636,7,136,0,0, + 7636,7637,5,866,0,0,7637,7638,3,728,364,0,7638,7639,5,867,0,0,7639, + 7641,1,0,0,0,7640,7634,1,0,0,0,7640,7641,1,0,0,0,7641,7643,1,0,0, + 0,7642,7644,3,786,393,0,7643,7642,1,0,0,0,7643,7644,1,0,0,0,7644, + 7645,1,0,0,0,7645,7646,5,867,0,0,7646,7682,1,0,0,0,7647,7648,5,293, + 0,0,7648,7649,5,866,0,0,7649,7650,3,70,35,0,7650,7653,5,68,0,0,7651, + 7654,3,732,366,0,7652,7654,3,820,410,0,7653,7651,1,0,0,0,7653,7652, + 1,0,0,0,7654,7655,1,0,0,0,7655,7656,5,867,0,0,7656,7682,1,0,0,0, + 7657,7658,5,827,0,0,7658,7659,5,866,0,0,7659,7660,7,137,0,0,7660, + 7661,5,868,0,0,7661,7662,3,732,366,0,7662,7663,5,867,0,0,7663,7682, + 1,0,0,0,7664,7665,5,254,0,0,7665,7666,5,866,0,0,7666,7667,3,820, + 410,0,7667,7668,5,868,0,0,7668,7671,3,820,410,0,7669,7670,5,579, + 0,0,7670,7672,3,746,373,0,7671,7669,1,0,0,0,7671,7672,1,0,0,0,7672, + 7674,1,0,0,0,7673,7675,3,294,147,0,7674,7673,1,0,0,0,7674,7675,1, + 0,0,0,7675,7677,1,0,0,0,7676,7678,3,296,148,0,7677,7676,1,0,0,0, + 7677,7678,1,0,0,0,7678,7679,1,0,0,0,7679,7680,5,867,0,0,7680,7682, + 1,0,0,0,7681,7502,1,0,0,0,7681,7507,1,0,0,0,7681,7508,1,0,0,0,7681, + 7515,1,0,0,0,7681,7522,1,0,0,0,7681,7529,1,0,0,0,7681,7534,1,0,0, + 0,7681,7546,1,0,0,0,7681,7559,1,0,0,0,7681,7568,1,0,0,0,7681,7581, + 1,0,0,0,7681,7601,1,0,0,0,7681,7615,1,0,0,0,7681,7628,1,0,0,0,7681, + 7647,1,0,0,0,7681,7657,1,0,0,0,7681,7664,1,0,0,0,7682,783,1,0,0, + 0,7683,7684,5,191,0,0,7684,7685,3,818,409,0,7685,7686,5,175,0,0, + 7686,7687,3,818,409,0,7687,785,1,0,0,0,7688,7689,5,448,0,0,7689, + 7694,3,788,394,0,7690,7691,5,868,0,0,7691,7693,3,788,394,0,7692, + 7690,1,0,0,0,7693,7696,1,0,0,0,7694,7692,1,0,0,0,7694,7695,1,0,0, + 0,7695,7703,1,0,0,0,7696,7694,1,0,0,0,7697,7698,5,448,0,0,7698,7699, + 3,728,364,0,7699,7700,5,854,0,0,7700,7701,3,728,364,0,7701,7703, + 1,0,0,0,7702,7688,1,0,0,0,7702,7697,1,0,0,0,7703,787,1,0,0,0,7704, + 7706,3,728,364,0,7705,7707,7,138,0,0,7706,7705,1,0,0,0,7706,7707, + 1,0,0,0,7707,789,1,0,0,0,7708,7709,7,139,0,0,7709,7711,5,866,0,0, + 7710,7712,7,45,0,0,7711,7710,1,0,0,0,7711,7712,1,0,0,0,7712,7713, + 1,0,0,0,7713,7714,3,818,409,0,7714,7716,5,867,0,0,7715,7717,3,794, + 397,0,7716,7715,1,0,0,0,7716,7717,1,0,0,0,7717,7768,1,0,0,0,7718, + 7719,5,262,0,0,7719,7727,5,866,0,0,7720,7728,5,850,0,0,7721,7723, + 5,7,0,0,7722,7721,1,0,0,0,7722,7723,1,0,0,0,7723,7724,1,0,0,0,7724, + 7728,3,818,409,0,7725,7726,5,49,0,0,7726,7728,3,816,408,0,7727,7720, + 1,0,0,0,7727,7722,1,0,0,0,7727,7725,1,0,0,0,7728,7729,1,0,0,0,7729, + 7731,5,867,0,0,7730,7732,3,794,397,0,7731,7730,1,0,0,0,7731,7732, + 1,0,0,0,7732,7768,1,0,0,0,7733,7734,7,140,0,0,7734,7736,5,866,0, + 0,7735,7737,5,7,0,0,7736,7735,1,0,0,0,7736,7737,1,0,0,0,7737,7738, + 1,0,0,0,7738,7739,3,818,409,0,7739,7741,5,867,0,0,7740,7742,3,794, + 397,0,7741,7740,1,0,0,0,7741,7742,1,0,0,0,7742,7768,1,0,0,0,7743, + 7744,5,266,0,0,7744,7746,5,866,0,0,7745,7747,5,49,0,0,7746,7745, + 1,0,0,0,7746,7747,1,0,0,0,7747,7748,1,0,0,0,7748,7759,3,816,408, + 0,7749,7750,5,125,0,0,7750,7751,5,20,0,0,7751,7756,3,260,130,0,7752, + 7753,5,868,0,0,7753,7755,3,260,130,0,7754,7752,1,0,0,0,7755,7758, + 1,0,0,0,7756,7754,1,0,0,0,7756,7757,1,0,0,0,7757,7760,1,0,0,0,7758, + 7756,1,0,0,0,7759,7749,1,0,0,0,7759,7760,1,0,0,0,7760,7763,1,0,0, + 0,7761,7762,5,156,0,0,7762,7764,5,882,0,0,7763,7761,1,0,0,0,7763, + 7764,1,0,0,0,7764,7765,1,0,0,0,7765,7766,5,867,0,0,7766,7768,1,0, + 0,0,7767,7708,1,0,0,0,7767,7718,1,0,0,0,7767,7733,1,0,0,0,7767,7743, + 1,0,0,0,7768,791,1,0,0,0,7769,7770,7,141,0,0,7770,7771,5,866,0,0, + 7771,7774,3,820,410,0,7772,7773,5,868,0,0,7773,7775,3,728,364,0, + 7774,7772,1,0,0,0,7774,7775,1,0,0,0,7775,7778,1,0,0,0,7776,7777, + 5,868,0,0,7777,7779,3,728,364,0,7778,7776,1,0,0,0,7778,7779,1,0, + 0,0,7779,7780,1,0,0,0,7780,7781,5,867,0,0,7781,7782,3,794,397,0, + 7782,7808,1,0,0,0,7783,7784,7,142,0,0,7784,7785,5,866,0,0,7785,7786, + 3,820,410,0,7786,7787,5,867,0,0,7787,7788,3,794,397,0,7788,7808, + 1,0,0,0,7789,7790,7,143,0,0,7790,7791,5,866,0,0,7791,7792,5,867, + 0,0,7792,7808,3,794,397,0,7793,7794,5,273,0,0,7794,7795,5,866,0, + 0,7795,7796,3,820,410,0,7796,7797,5,868,0,0,7797,7798,3,728,364, + 0,7798,7799,5,867,0,0,7799,7800,3,794,397,0,7800,7808,1,0,0,0,7801, + 7802,5,272,0,0,7802,7803,5,866,0,0,7803,7804,3,728,364,0,7804,7805, + 5,867,0,0,7805,7806,3,794,397,0,7806,7808,1,0,0,0,7807,7769,1,0, + 0,0,7807,7783,1,0,0,0,7807,7789,1,0,0,0,7807,7793,1,0,0,0,7807,7801, + 1,0,0,0,7808,793,1,0,0,0,7809,7815,5,129,0,0,7810,7811,5,866,0,0, + 7811,7812,3,796,398,0,7812,7813,5,867,0,0,7813,7816,1,0,0,0,7814, + 7816,3,798,399,0,7815,7810,1,0,0,0,7815,7814,1,0,0,0,7816,795,1, + 0,0,0,7817,7819,3,798,399,0,7818,7817,1,0,0,0,7818,7819,1,0,0,0, + 7819,7821,1,0,0,0,7820,7822,3,810,405,0,7821,7820,1,0,0,0,7821,7822, + 1,0,0,0,7822,7824,1,0,0,0,7823,7825,3,258,129,0,7824,7823,1,0,0, + 0,7824,7825,1,0,0,0,7825,7827,1,0,0,0,7826,7828,3,800,400,0,7827, + 7826,1,0,0,0,7827,7828,1,0,0,0,7828,797,1,0,0,0,7829,7830,3,722, + 361,0,7830,799,1,0,0,0,7831,7832,3,802,401,0,7832,7833,3,804,402, + 0,7833,801,1,0,0,0,7834,7835,7,144,0,0,7835,803,1,0,0,0,7836,7839, + 3,808,404,0,7837,7839,3,806,403,0,7838,7836,1,0,0,0,7838,7837,1, + 0,0,0,7839,805,1,0,0,0,7840,7841,5,17,0,0,7841,7842,3,808,404,0, + 7842,7843,5,11,0,0,7843,7844,3,808,404,0,7844,807,1,0,0,0,7845,7846, + 5,36,0,0,7846,7853,5,586,0,0,7847,7848,5,669,0,0,7848,7853,7,145, + 0,0,7849,7850,3,820,410,0,7850,7851,7,145,0,0,7851,7853,1,0,0,0, + 7852,7845,1,0,0,0,7852,7847,1,0,0,0,7852,7849,1,0,0,0,7853,809,1, + 0,0,0,7854,7855,5,130,0,0,7855,7856,5,20,0,0,7856,7861,3,820,410, + 0,7857,7858,5,868,0,0,7858,7860,3,820,410,0,7859,7857,1,0,0,0,7860, + 7863,1,0,0,0,7861,7859,1,0,0,0,7861,7862,1,0,0,0,7862,811,1,0,0, + 0,7863,7861,1,0,0,0,7864,7889,3,852,426,0,7865,7889,5,757,0,0,7866, + 7889,5,289,0,0,7867,7889,5,285,0,0,7868,7889,5,286,0,0,7869,7889, + 5,287,0,0,7870,7889,5,290,0,0,7871,7889,5,291,0,0,7872,7889,5,292, + 0,0,7873,7889,5,78,0,0,7874,7889,5,86,0,0,7875,7889,5,288,0,0,7876, + 7889,5,294,0,0,7877,7889,5,488,0,0,7878,7889,5,295,0,0,7879,7889, + 5,142,0,0,7880,7889,5,143,0,0,7881,7889,5,297,0,0,7882,7889,5,298, + 0,0,7883,7889,5,299,0,0,7884,7889,5,300,0,0,7885,7889,5,301,0,0, + 7886,7889,5,302,0,0,7887,7889,5,303,0,0,7888,7864,1,0,0,0,7888,7865, + 1,0,0,0,7888,7866,1,0,0,0,7888,7867,1,0,0,0,7888,7868,1,0,0,0,7888, + 7869,1,0,0,0,7888,7870,1,0,0,0,7888,7871,1,0,0,0,7888,7872,1,0,0, + 0,7888,7873,1,0,0,0,7888,7874,1,0,0,0,7888,7875,1,0,0,0,7888,7876, + 1,0,0,0,7888,7877,1,0,0,0,7888,7878,1,0,0,0,7888,7879,1,0,0,0,7888, + 7880,1,0,0,0,7888,7881,1,0,0,0,7888,7882,1,0,0,0,7888,7883,1,0,0, + 0,7888,7884,1,0,0,0,7888,7885,1,0,0,0,7888,7886,1,0,0,0,7888,7887, + 1,0,0,0,7889,813,1,0,0,0,7890,7891,7,146,0,0,7891,7892,5,866,0,0, + 7892,7893,3,818,409,0,7893,7894,5,867,0,0,7894,815,1,0,0,0,7895, + 7900,3,818,409,0,7896,7897,5,868,0,0,7897,7899,3,818,409,0,7898, + 7896,1,0,0,0,7899,7902,1,0,0,0,7900,7898,1,0,0,0,7900,7901,1,0,0, + 0,7901,817,1,0,0,0,7902,7900,1,0,0,0,7903,7907,3,740,370,0,7904, + 7907,3,780,390,0,7905,7907,3,820,410,0,7906,7903,1,0,0,0,7906,7904, + 1,0,0,0,7906,7905,1,0,0,0,7907,819,1,0,0,0,7908,7909,6,410,-1,0, + 7909,7910,7,147,0,0,7910,7920,3,820,410,4,7911,7912,3,822,411,0, + 7912,7914,5,89,0,0,7913,7915,5,114,0,0,7914,7913,1,0,0,0,7914,7915, + 1,0,0,0,7915,7916,1,0,0,0,7916,7917,7,148,0,0,7917,7920,1,0,0,0, + 7918,7920,3,822,411,0,7919,7908,1,0,0,0,7919,7911,1,0,0,0,7919,7918, + 1,0,0,0,7920,7927,1,0,0,0,7921,7922,10,3,0,0,7922,7923,3,832,416, + 0,7923,7924,3,820,410,4,7924,7926,1,0,0,0,7925,7921,1,0,0,0,7926, + 7929,1,0,0,0,7927,7925,1,0,0,0,7927,7928,1,0,0,0,7928,821,1,0,0, + 0,7929,7927,1,0,0,0,7930,7931,6,411,-1,0,7931,7932,3,824,412,0,7932, + 7996,1,0,0,0,7933,7935,10,6,0,0,7934,7936,5,114,0,0,7935,7934,1, + 0,0,0,7935,7936,1,0,0,0,7936,7937,1,0,0,0,7937,7938,5,17,0,0,7938, + 7939,3,822,411,0,7939,7940,5,11,0,0,7940,7941,3,822,411,7,7941,7995, + 1,0,0,0,7942,7943,10,5,0,0,7943,7944,5,604,0,0,7944,7945,5,99,0, + 0,7945,7995,3,822,411,6,7946,7948,10,3,0,0,7947,7949,5,114,0,0,7948, + 7947,1,0,0,0,7948,7949,1,0,0,0,7949,7950,1,0,0,0,7950,7951,7,149, + 0,0,7951,7995,3,822,411,4,7952,7954,10,9,0,0,7953,7955,5,114,0,0, + 7954,7953,1,0,0,0,7954,7955,1,0,0,0,7955,7956,1,0,0,0,7956,7957, + 5,80,0,0,7957,7960,5,866,0,0,7958,7961,3,210,105,0,7959,7961,3,756, + 378,0,7960,7958,1,0,0,0,7960,7959,1,0,0,0,7961,7962,1,0,0,0,7962, + 7963,5,867,0,0,7963,7995,1,0,0,0,7964,7965,10,8,0,0,7965,7966,5, + 89,0,0,7966,7995,3,738,369,0,7967,7968,10,7,0,0,7968,7975,3,828, + 414,0,7969,7970,7,150,0,0,7970,7971,5,866,0,0,7971,7972,3,210,105, + 0,7972,7973,5,867,0,0,7973,7976,1,0,0,0,7974,7976,3,822,411,0,7975, + 7969,1,0,0,0,7975,7974,1,0,0,0,7976,7995,1,0,0,0,7977,7979,10,4, + 0,0,7978,7980,5,114,0,0,7979,7978,1,0,0,0,7979,7980,1,0,0,0,7980, + 7981,1,0,0,0,7981,7982,5,99,0,0,7982,7985,3,822,411,0,7983,7984, + 5,384,0,0,7984,7986,5,882,0,0,7985,7983,1,0,0,0,7985,7986,1,0,0, + 0,7986,7995,1,0,0,0,7987,7988,10,2,0,0,7988,7989,5,485,0,0,7989, + 7990,5,510,0,0,7990,7991,5,866,0,0,7991,7992,3,822,411,0,7992,7993, + 5,867,0,0,7993,7995,1,0,0,0,7994,7933,1,0,0,0,7994,7942,1,0,0,0, + 7994,7946,1,0,0,0,7994,7952,1,0,0,0,7994,7964,1,0,0,0,7994,7967, + 1,0,0,0,7994,7977,1,0,0,0,7994,7987,1,0,0,0,7995,7998,1,0,0,0,7996, + 7994,1,0,0,0,7996,7997,1,0,0,0,7997,823,1,0,0,0,7998,7996,1,0,0, + 0,7999,8000,6,412,-1,0,8000,8048,3,740,370,0,8001,8048,3,780,390, + 0,8002,8048,3,702,351,0,8003,8004,3,826,413,0,8004,8005,3,824,412, + 12,8005,8048,1,0,0,0,8006,8007,5,228,0,0,8007,8048,3,824,412,11, + 8008,8009,5,892,0,0,8009,8010,5,841,0,0,8010,8048,3,824,412,10,8011, + 8012,5,866,0,0,8012,8017,3,820,410,0,8013,8014,5,868,0,0,8014,8016, + 3,820,410,0,8015,8013,1,0,0,0,8016,8019,1,0,0,0,8017,8015,1,0,0, + 0,8017,8018,1,0,0,0,8018,8020,1,0,0,0,8019,8017,1,0,0,0,8020,8021, + 5,867,0,0,8021,8048,1,0,0,0,8022,8023,5,586,0,0,8023,8024,5,866, + 0,0,8024,8027,3,820,410,0,8025,8026,5,868,0,0,8026,8028,3,820,410, + 0,8027,8025,1,0,0,0,8028,8029,1,0,0,0,8029,8027,1,0,0,0,8029,8030, + 1,0,0,0,8030,8031,1,0,0,0,8031,8032,5,867,0,0,8032,8048,1,0,0,0, + 8033,8034,5,60,0,0,8034,8035,5,866,0,0,8035,8036,3,210,105,0,8036, + 8037,5,867,0,0,8037,8048,1,0,0,0,8038,8039,5,866,0,0,8039,8040,3, + 210,105,0,8040,8041,5,867,0,0,8041,8048,1,0,0,0,8042,8043,5,87,0, + 0,8043,8044,3,820,410,0,8044,8045,3,70,35,0,8045,8048,1,0,0,0,8046, + 8048,3,676,338,0,8047,7999,1,0,0,0,8047,8001,1,0,0,0,8047,8002,1, + 0,0,0,8047,8003,1,0,0,0,8047,8006,1,0,0,0,8047,8008,1,0,0,0,8047, + 8011,1,0,0,0,8047,8022,1,0,0,0,8047,8033,1,0,0,0,8047,8038,1,0,0, + 0,8047,8042,1,0,0,0,8047,8046,1,0,0,0,8048,8066,1,0,0,0,8049,8050, + 10,4,0,0,8050,8051,3,838,419,0,8051,8052,3,824,412,5,8052,8065,1, + 0,0,0,8053,8054,10,3,0,0,8054,8055,3,834,417,0,8055,8056,3,824,412, + 4,8056,8065,1,0,0,0,8057,8058,10,2,0,0,8058,8059,3,836,418,0,8059, + 8060,3,824,412,3,8060,8065,1,0,0,0,8061,8062,10,14,0,0,8062,8063, + 5,28,0,0,8063,8065,3,706,353,0,8064,8049,1,0,0,0,8064,8053,1,0,0, + 0,8064,8057,1,0,0,0,8064,8061,1,0,0,0,8065,8068,1,0,0,0,8066,8064, + 1,0,0,0,8066,8067,1,0,0,0,8067,825,1,0,0,0,8068,8066,1,0,0,0,8069, + 8070,7,151,0,0,8070,827,1,0,0,0,8071,8072,5,859,0,0,8072,8080,5, + 858,0,0,8073,8074,5,860,0,0,8074,8080,5,857,0,0,8075,8076,5,859, + 0,0,8076,8077,5,857,0,0,8077,8080,5,858,0,0,8078,8080,3,830,415, + 0,8079,8071,1,0,0,0,8079,8073,1,0,0,0,8079,8075,1,0,0,0,8079,8078, + 1,0,0,0,8080,829,1,0,0,0,8081,8082,5,859,0,0,8082,8089,5,857,0,0, + 8083,8084,5,858,0,0,8084,8089,5,857,0,0,8085,8089,5,857,0,0,8086, + 8089,5,858,0,0,8087,8089,5,859,0,0,8088,8081,1,0,0,0,8088,8083,1, + 0,0,0,8088,8085,1,0,0,0,8088,8086,1,0,0,0,8088,8087,1,0,0,0,8089, + 831,1,0,0,0,8090,8098,5,11,0,0,8091,8092,5,863,0,0,8092,8098,5,863, + 0,0,8093,8098,5,196,0,0,8094,8098,5,124,0,0,8095,8096,5,862,0,0, + 8096,8098,5,862,0,0,8097,8090,1,0,0,0,8097,8091,1,0,0,0,8097,8093, + 1,0,0,0,8097,8094,1,0,0,0,8097,8095,1,0,0,0,8098,833,1,0,0,0,8099, + 8100,5,859,0,0,8100,8107,5,859,0,0,8101,8102,5,858,0,0,8102,8107, + 5,858,0,0,8103,8107,5,863,0,0,8104,8107,5,864,0,0,8105,8107,5,862, + 0,0,8106,8099,1,0,0,0,8106,8101,1,0,0,0,8106,8103,1,0,0,0,8106,8104, + 1,0,0,0,8106,8105,1,0,0,0,8107,835,1,0,0,0,8108,8109,7,152,0,0,8109, + 837,1,0,0,0,8110,8111,5,854,0,0,8111,8116,5,858,0,0,8112,8113,5, + 854,0,0,8113,8114,5,858,0,0,8114,8116,5,858,0,0,8115,8110,1,0,0, + 0,8115,8112,1,0,0,0,8116,839,1,0,0,0,8117,8118,7,153,0,0,8118,841, + 1,0,0,0,8119,8120,7,154,0,0,8120,843,1,0,0,0,8121,8122,7,155,0,0, + 8122,845,1,0,0,0,8123,8124,7,156,0,0,8124,847,1,0,0,0,8125,8126, + 7,157,0,0,8126,849,1,0,0,0,8127,8128,7,158,0,0,8128,851,1,0,0,0, + 8129,8130,7,159,0,0,8130,853,1,0,0,0,1172,857,864,867,876,920,939, + 950,966,971,983,1018,1028,1033,1039,1044,1048,1057,1060,1063,1067, + 1074,1077,1082,1090,1095,1100,1103,1105,1117,1120,1124,1127,1131, + 1134,1138,1141,1144,1148,1151,1155,1161,1165,1170,1176,1183,1190, + 1193,1197,1202,1208,1217,1222,1226,1230,1241,1259,1266,1270,1274, + 1278,1283,1286,1289,1292,1295,1301,1305,1315,1319,1323,1329,1334, + 1337,1340,1342,1346,1353,1357,1360,1365,1369,1372,1376,1379,1383, + 1396,1399,1403,1406,1410,1413,1417,1420,1424,1427,1430,1434,1437, + 1441,1447,1450,1454,1466,1472,1483,1488,1496,1500,1505,1508,1513, + 1523,1528,1533,1539,1544,1548,1550,1553,1557,1561,1564,1568,1572, + 1576,1582,1585,1592,1597,1603,1610,1616,1624,1627,1634,1637,1639, + 1645,1651,1668,1675,1682,1694,1699,1702,1705,1718,1731,1736,1752, + 1760,1770,1773,1779,1784,1787,1793,1797,1802,1808,1812,1816,1819, + 1822,1828,1832,1837,1848,1851,1858,1861,1865,1871,1883,1886,1891, + 1904,1911,1917,1922,1926,1929,1937,1945,1947,1957,1961,1964,1968, + 1973,1978,1983,1987,1991,1995,1999,2003,2007,2012,2017,2022,2028, + 2033,2038,2043,2048,2053,2059,2064,2069,2074,2079,2084,2089,2094, + 2101,2106,2111,2116,2120,2125,2133,2138,2144,2156,2163,2165,2173, + 2178,2181,2189,2195,2199,2212,2224,2226,2229,2237,2243,2249,2262, + 2269,2278,2283,2294,2303,2308,2320,2327,2336,2341,2353,2360,2369, + 2374,2381,2390,2395,2397,2402,2410,2419,2423,2426,2430,2435,2441, + 2447,2452,2457,2462,2467,2470,2475,2480,2490,2494,2501,2506,2509, + 2514,2517,2521,2525,2533,2552,2555,2558,2562,2572,2585,2598,2601, + 2607,2610,2614,2623,2626,2629,2634,2638,2641,2645,2649,2652,2656, + 2659,2663,2666,2672,2675,2680,2688,2694,2698,2702,2707,2712,2719, + 2723,2734,2742,2745,2751,2757,2760,2766,2772,2774,2779,2785,2791, + 2793,2797,2800,2803,2809,2815,2817,2822,2829,2838,2841,2845,2850, + 2860,2869,2877,2880,2888,2891,2898,2903,2911,2927,2932,2939,2958, + 2964,2974,2986,2993,3000,3015,3028,3034,3040,3046,3052,3058,3064, + 3069,3076,3083,3090,3095,3098,3100,3109,3116,3123,3130,3139,3145, + 3149,3153,3157,3163,3166,3171,3178,3185,3189,3194,3204,3212,3218, + 3227,3236,3245,3248,3252,3261,3265,3268,3271,3277,3280,3283,3287, + 3290,3293,3296,3307,3310,3315,3321,3326,3331,3334,3338,3343,3346, + 3351,3361,3366,3372,3374,3380,3382,3388,3396,3401,3409,3412,3417, + 3420,3425,3433,3439,3443,3445,3451,3459,3464,3472,3475,3480,3483, + 3487,3490,3493,3497,3500,3508,3514,3518,3524,3529,3533,3535,3541, + 3545,3548,3551,3554,3560,3565,3568,3571,3574,3577,3579,3582,3586, + 3589,3592,3600,3606,3609,3611,3620,3625,3632,3635,3638,3642,3646, + 3652,3656,3663,3667,3670,3673,3678,3685,3695,3704,3713,3723,3726, + 3730,3736,3740,3743,3746,3751,3754,3761,3765,3768,3772,3776,3779, + 3782,3787,3793,3797,3807,3813,3817,3823,3827,3833,3836,3848,3852, + 3856,3864,3868,3882,3887,3890,3894,3897,3905,3910,3913,3916,3920, + 3923,3932,3937,3946,3951,3958,3965,3973,3979,3987,3990,3993,4000, + 4003,4006,4010,4014,4020,4027,4037,4041,4050,4053,4057,4063,4071, + 4076,4080,4086,4092,4095,4097,4101,4106,4113,4123,4129,4134,4138, + 4141,4144,4147,4150,4153,4156,4160,4164,4172,4176,4179,4181,4194, + 4197,4204,4214,4217,4222,4224,4228,4236,4242,4251,4264,4268,4274, + 4280,4283,4287,4290,4297,4309,4313,4321,4333,4339,4341,4347,4349, + 4351,4357,4365,4373,4377,4382,4384,4393,4398,4418,4423,4429,4436, + 4441,4450,4453,4457,4461,4465,4468,4471,4474,4478,4482,4485,4488, + 4491,4498,4502,4517,4530,4538,4548,4552,4555,4561,4564,4567,4576, + 4585,4595,4599,4609,4613,4624,4628,4637,4646,4649,4653,4658,4662, + 4671,4674,4677,4684,4690,4696,4722,4725,4728,4747,4749,4772,4775, + 4778,4797,4799,4813,4826,4863,4868,4903,4917,4924,4928,4934,4942, + 4944,4955,4965,4972,4978,4986,4991,4999,5007,5015,5023,5029,5034, + 5039,5044,5050,5052,5063,5068,5075,5077,5091,5097,5102,5107,5113, + 5120,5128,5136,5141,5147,5150,5158,5165,5174,5177,5194,5202,5210, + 5214,5221,5227,5235,5240,5247,5255,5262,5267,5270,5272,5278,5280, + 5284,5286,5291,5298,5303,5307,5312,5316,5322,5328,5333,5336,5338, + 5344,5346,5350,5352,5357,5362,5369,5378,5383,5392,5396,5402,5407, + 5410,5412,5418,5420,5423,5430,5432,5437,5444,5453,5459,5461,5468, + 5471,5483,5489,5497,5500,5504,5507,5511,5513,5524,5527,5531,5534, + 5537,5544,5556,5559,5566,5572,5582,5587,5594,5599,5605,5609,5613, + 5621,5625,5629,5635,5637,5649,5654,5660,5666,5670,5675,5677,5701, + 5705,5708,5717,5721,5730,5734,5738,5744,5746,5755,5765,5792,5796, + 5801,5808,5811,5817,5827,5837,5847,5853,5862,5868,5875,5877,5885, + 5891,5895,5912,5922,5926,5930,5940,5945,6017,6035,6043,6049,6061, + 6065,6076,6080,6089,6097,6104,6108,6115,6120,6123,6126,6137,6146, + 6155,6158,6172,6190,6203,6206,6210,6213,6215,6222,6229,6233,6240, + 6247,6250,6266,6269,6279,6283,6289,6292,6295,6300,6304,6307,6314, + 6317,6323,6359,6362,6374,6377,6393,6395,6399,6406,6410,6417,6420, + 6429,6432,6437,6443,6445,6451,6455,6461,6464,6467,6480,6483,6489, + 6492,6500,6508,6514,6517,6521,6535,6547,6555,6559,6566,6573,6578, + 6591,6600,6608,6613,6616,6621,6624,6636,6641,6654,6656,6661,6665, + 6668,6670,6677,6684,6687,6690,6696,6700,6706,6714,6723,6736,6741, + 6749,6752,6757,6762,6770,6773,6781,6785,6792,6798,6801,6805,6818, + 6824,6836,6839,6848,6853,6874,6890,6900,6905,6910,6912,6915,6919, + 6921,6928,6936,6938,6941,6945,6949,6954,6956,6959,6963,6965,6972, + 6974,6976,6989,6999,7002,7005,7018,7024,7027,7035,7042,7062,7069, + 7071,7078,7080,7084,7091,7097,7108,7114,7120,7123,7127,7132,7135, + 7139,7143,7145,7150,7155,7168,7171,7175,7178,7181,7186,7191,7197, + 7200,7205,7208,7213,7216,7220,7225,7230,7235,7240,7243,7248,7253, + 7258,7264,7269,7274,7279,7283,7286,7291,7295,7299,7307,7314,7318, + 7323,7328,7332,7334,7337,7353,7363,7373,7382,7391,7398,7405,7413, + 7421,7433,7440,7450,7455,7458,7463,7466,7488,7497,7500,7505,7538, + 7542,7551,7555,7564,7572,7577,7585,7590,7595,7597,7606,7611,7619, + 7624,7632,7640,7643,7653,7671,7674,7677,7681,7694,7702,7706,7711, + 7716,7722,7727,7731,7736,7741,7746,7756,7759,7763,7767,7774,7778, + 7807,7815,7818,7821,7824,7827,7838,7852,7861,7888,7900,7906,7914, + 7919,7927,7935,7948,7954,7960,7975,7979,7985,7994,7996,8017,8029, + 8047,8064,8066,8079,8088,8097,8106,8115 ]; private static __ATN: antlr.ATN; @@ -66179,15 +66139,57 @@ export class SelectElementsContext extends antlr.ParserRuleContext { export class SelectElementContext extends antlr.ParserRuleContext { - public _alias?: UidContext; public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public tableAllColumns(): TableAllColumnsContext | null { - return this.getRuleContext(0, TableAllColumnsContext); + public override get ruleIndex(): number { + return MySqlParser.RULE_selectElement; + } + public override copyFrom(ctx: SelectElementContext): void { + super.copyFrom(ctx); + } +} +export class SelectElement_exprContext extends SelectElementContext { + public _alias?: UidContext; + public constructor(ctx: SelectElementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public selectExpressionColumnName(): SelectExpressionColumnNameContext { + return this.getRuleContext(0, SelectExpressionColumnNameContext)!; + } + public uid(): UidContext | null { + return this.getRuleContext(0, UidContext); + } + public KW_AS(): antlr.TerminalNode | null { + return this.getToken(MySqlParser.KW_AS, 0); + } + public override enterRule(listener: MySqlParserListener): void { + if(listener.enterSelectElement_expr) { + listener.enterSelectElement_expr(this); + } + } + public override exitRule(listener: MySqlParserListener): void { + if(listener.exitSelectElement_expr) { + listener.exitSelectElement_expr(this); + } + } + public override accept(visitor: MySqlParserVisitor): Result | null { + if (visitor.visitSelectElement_expr) { + return visitor.visitSelectElement_expr(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class SelectElement_labelContext extends SelectElementContext { + public _alias?: UidContext; + public constructor(ctx: SelectElementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); } - public selectLiteralColumnName(): SelectLiteralColumnNameContext | null { - return this.getRuleContext(0, SelectLiteralColumnNameContext); + public selectLiteralColumnName(): SelectLiteralColumnNameContext { + return this.getRuleContext(0, SelectLiteralColumnNameContext)!; } public uid(): UidContext | null { return this.getRuleContext(0, UidContext); @@ -66195,25 +66197,77 @@ export class SelectElementContext extends antlr.ParserRuleContext { public KW_AS(): antlr.TerminalNode | null { return this.getToken(MySqlParser.KW_AS, 0); } - public selectExpressionColumnName(): SelectExpressionColumnNameContext | null { - return this.getRuleContext(0, SelectExpressionColumnNameContext); + public override enterRule(listener: MySqlParserListener): void { + if(listener.enterSelectElement_label) { + listener.enterSelectElement_label(this); + } } - public override get ruleIndex(): number { - return MySqlParser.RULE_selectElement; + public override exitRule(listener: MySqlParserListener): void { + if(listener.exitSelectElement_label) { + listener.exitSelectElement_label(this); + } + } + public override accept(visitor: MySqlParserVisitor): Result | null { + if (visitor.visitSelectElement_label) { + return visitor.visitSelectElement_label(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class SelectElement_dot_emptyContext extends SelectElementContext { + public constructor(ctx: SelectElementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public uid(): UidContext { + return this.getRuleContext(0, UidContext)!; + } + public DOT(): antlr.TerminalNode { + return this.getToken(MySqlParser.DOT, 0)!; + } + public emptyColumn(): EmptyColumnContext { + return this.getRuleContext(0, EmptyColumnContext)!; + } + public override enterRule(listener: MySqlParserListener): void { + if(listener.enterSelectElement_dot_empty) { + listener.enterSelectElement_dot_empty(this); + } + } + public override exitRule(listener: MySqlParserListener): void { + if(listener.exitSelectElement_dot_empty) { + listener.exitSelectElement_dot_empty(this); + } + } + public override accept(visitor: MySqlParserVisitor): Result | null { + if (visitor.visitSelectElement_dot_empty) { + return visitor.visitSelectElement_dot_empty(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class SelectElement_starContext extends SelectElementContext { + public constructor(ctx: SelectElementContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public tableAllColumns(): TableAllColumnsContext { + return this.getRuleContext(0, TableAllColumnsContext)!; } public override enterRule(listener: MySqlParserListener): void { - if(listener.enterSelectElement) { - listener.enterSelectElement(this); + if(listener.enterSelectElement_star) { + listener.enterSelectElement_star(this); } } public override exitRule(listener: MySqlParserListener): void { - if(listener.exitSelectElement) { - listener.exitSelectElement(this); + if(listener.exitSelectElement_star) { + listener.exitSelectElement_star(this); } } public override accept(visitor: MySqlParserVisitor): Result | null { - if (visitor.visitSelectElement) { - return visitor.visitSelectElement(this); + if (visitor.visitSelectElement_star) { + return visitor.visitSelectElement_star(this); } else { return visitor.visitChildren(this); } @@ -78780,15 +78834,6 @@ export class ColumnNameContext extends antlr.ParserRuleContext { public uid(): UidContext | null { return this.getRuleContext(0, UidContext); } - public dottedIdAllowEmpty(): DottedIdAllowEmptyContext[]; - public dottedIdAllowEmpty(i: number): DottedIdAllowEmptyContext | null; - public dottedIdAllowEmpty(i?: number): DottedIdAllowEmptyContext[] | DottedIdAllowEmptyContext | null { - if (i === undefined) { - return this.getRuleContexts(DottedIdAllowEmptyContext); - } - - return this.getRuleContext(i, DottedIdAllowEmptyContext); - } public dottedId(): DottedIdContext[]; public dottedId(i: number): DottedIdContext | null; public dottedId(i?: number): DottedIdContext[] | DottedIdContext | null { @@ -78873,14 +78918,14 @@ export class ColumnNamePathAllowEmptyContext extends antlr.ParserRuleContext { public uid(): UidContext | null { return this.getRuleContext(0, UidContext); } - public dottedIdAllowEmpty(): DottedIdAllowEmptyContext[]; - public dottedIdAllowEmpty(i: number): DottedIdAllowEmptyContext | null; - public dottedIdAllowEmpty(i?: number): DottedIdAllowEmptyContext[] | DottedIdAllowEmptyContext | null { + public dottedId(): DottedIdContext[]; + public dottedId(i: number): DottedIdContext | null; + public dottedId(i?: number): DottedIdContext[] | DottedIdContext | null { if (i === undefined) { - return this.getRuleContexts(DottedIdAllowEmptyContext); + return this.getRuleContexts(DottedIdContext); } - return this.getRuleContext(i, DottedIdAllowEmptyContext); + return this.getRuleContext(i, DottedIdContext); } public override get ruleIndex(): number { return MySqlParser.RULE_columnNamePathAllowEmpty; @@ -79854,45 +79899,6 @@ export class DottedIdContext extends antlr.ParserRuleContext { } -export class DottedIdAllowEmptyContext extends antlr.ParserRuleContext { - public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { - super(parent, invokingState); - } - public DOT(): antlr.TerminalNode { - return this.getToken(MySqlParser.DOT, 0)!; - } - public ID(): antlr.TerminalNode | null { - return this.getToken(MySqlParser.ID, 0); - } - public uid(): UidContext | null { - return this.getRuleContext(0, UidContext); - } - public emptyColumn(): EmptyColumnContext | null { - return this.getRuleContext(0, EmptyColumnContext); - } - public override get ruleIndex(): number { - return MySqlParser.RULE_dottedIdAllowEmpty; - } - public override enterRule(listener: MySqlParserListener): void { - if(listener.enterDottedIdAllowEmpty) { - listener.enterDottedIdAllowEmpty(this); - } - } - public override exitRule(listener: MySqlParserListener): void { - if(listener.exitDottedIdAllowEmpty) { - listener.exitDottedIdAllowEmpty(this); - } - } - public override accept(visitor: MySqlParserVisitor): Result | null { - if (visitor.visitDottedIdAllowEmpty) { - return visitor.visitDottedIdAllowEmpty(this); - } else { - return visitor.visitChildren(this); - } - } -} - - export class DecimalLiteralContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); diff --git a/src/lib/mysql/MySqlParserListener.ts b/src/lib/mysql/MySqlParserListener.ts index bf8ee2378..3367fd2b2 100644 --- a/src/lib/mysql/MySqlParserListener.ts +++ b/src/lib/mysql/MySqlParserListener.ts @@ -281,7 +281,10 @@ import { JsonOnEmptyContext } from "./MySqlParser.js"; import { JsonOnErrorContext } from "./MySqlParser.js"; import { SelectSpecContext } from "./MySqlParser.js"; import { SelectElementsContext } from "./MySqlParser.js"; -import { SelectElementContext } from "./MySqlParser.js"; +import { SelectElement_starContext } from "./MySqlParser.js"; +import { SelectElement_labelContext } from "./MySqlParser.js"; +import { SelectElement_exprContext } from "./MySqlParser.js"; +import { SelectElement_dot_emptyContext } from "./MySqlParser.js"; import { TableAllColumnsContext } from "./MySqlParser.js"; import { PureAllColumnsContext } from "./MySqlParser.js"; import { SelectLiteralColumnNameContext } from "./MySqlParser.js"; @@ -569,7 +572,6 @@ import { UidListContext } from "./MySqlParser.js"; import { UidContext } from "./MySqlParser.js"; import { SimpleIdContext } from "./MySqlParser.js"; import { DottedIdContext } from "./MySqlParser.js"; -import { DottedIdAllowEmptyContext } from "./MySqlParser.js"; import { DecimalLiteralContext } from "./MySqlParser.js"; import { FileSizeLiteralContext } from "./MySqlParser.js"; import { StringLiteralContext } from "./MySqlParser.js"; @@ -3700,15 +3702,53 @@ export class MySqlParserListener implements ParseTreeListener { */ exitSelectElements?: (ctx: SelectElementsContext) => void; /** - * Enter a parse tree produced by `MySqlParser.selectElement`. + * Enter a parse tree produced by the `selectElement_star` + * labeled alternative in `MySqlParser.selectElement`. * @param ctx the parse tree */ - enterSelectElement?: (ctx: SelectElementContext) => void; + enterSelectElement_star?: (ctx: SelectElement_starContext) => void; /** - * Exit a parse tree produced by `MySqlParser.selectElement`. + * Exit a parse tree produced by the `selectElement_star` + * labeled alternative in `MySqlParser.selectElement`. * @param ctx the parse tree */ - exitSelectElement?: (ctx: SelectElementContext) => void; + exitSelectElement_star?: (ctx: SelectElement_starContext) => void; + /** + * Enter a parse tree produced by the `selectElement_label` + * labeled alternative in `MySqlParser.selectElement`. + * @param ctx the parse tree + */ + enterSelectElement_label?: (ctx: SelectElement_labelContext) => void; + /** + * Exit a parse tree produced by the `selectElement_label` + * labeled alternative in `MySqlParser.selectElement`. + * @param ctx the parse tree + */ + exitSelectElement_label?: (ctx: SelectElement_labelContext) => void; + /** + * Enter a parse tree produced by the `selectElement_expr` + * labeled alternative in `MySqlParser.selectElement`. + * @param ctx the parse tree + */ + enterSelectElement_expr?: (ctx: SelectElement_exprContext) => void; + /** + * Exit a parse tree produced by the `selectElement_expr` + * labeled alternative in `MySqlParser.selectElement`. + * @param ctx the parse tree + */ + exitSelectElement_expr?: (ctx: SelectElement_exprContext) => void; + /** + * Enter a parse tree produced by the `selectElement_dot_empty` + * labeled alternative in `MySqlParser.selectElement`. + * @param ctx the parse tree + */ + enterSelectElement_dot_empty?: (ctx: SelectElement_dot_emptyContext) => void; + /** + * Exit a parse tree produced by the `selectElement_dot_empty` + * labeled alternative in `MySqlParser.selectElement`. + * @param ctx the parse tree + */ + exitSelectElement_dot_empty?: (ctx: SelectElement_dot_emptyContext) => void; /** * Enter a parse tree produced by `MySqlParser.tableAllColumns`. * @param ctx the parse tree @@ -6765,16 +6805,6 @@ export class MySqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitDottedId?: (ctx: DottedIdContext) => void; - /** - * Enter a parse tree produced by `MySqlParser.dottedIdAllowEmpty`. - * @param ctx the parse tree - */ - enterDottedIdAllowEmpty?: (ctx: DottedIdAllowEmptyContext) => void; - /** - * Exit a parse tree produced by `MySqlParser.dottedIdAllowEmpty`. - * @param ctx the parse tree - */ - exitDottedIdAllowEmpty?: (ctx: DottedIdAllowEmptyContext) => void; /** * Enter a parse tree produced by `MySqlParser.decimalLiteral`. * @param ctx the parse tree diff --git a/src/lib/mysql/MySqlParserVisitor.ts b/src/lib/mysql/MySqlParserVisitor.ts index d4d967a29..8a06e45ca 100644 --- a/src/lib/mysql/MySqlParserVisitor.ts +++ b/src/lib/mysql/MySqlParserVisitor.ts @@ -281,7 +281,10 @@ import { JsonOnEmptyContext } from "./MySqlParser.js"; import { JsonOnErrorContext } from "./MySqlParser.js"; import { SelectSpecContext } from "./MySqlParser.js"; import { SelectElementsContext } from "./MySqlParser.js"; -import { SelectElementContext } from "./MySqlParser.js"; +import { SelectElement_starContext } from "./MySqlParser.js"; +import { SelectElement_labelContext } from "./MySqlParser.js"; +import { SelectElement_exprContext } from "./MySqlParser.js"; +import { SelectElement_dot_emptyContext } from "./MySqlParser.js"; import { TableAllColumnsContext } from "./MySqlParser.js"; import { PureAllColumnsContext } from "./MySqlParser.js"; import { SelectLiteralColumnNameContext } from "./MySqlParser.js"; @@ -569,7 +572,6 @@ import { UidListContext } from "./MySqlParser.js"; import { UidContext } from "./MySqlParser.js"; import { SimpleIdContext } from "./MySqlParser.js"; import { DottedIdContext } from "./MySqlParser.js"; -import { DottedIdAllowEmptyContext } from "./MySqlParser.js"; import { DecimalLiteralContext } from "./MySqlParser.js"; import { FileSizeLiteralContext } from "./MySqlParser.js"; import { StringLiteralContext } from "./MySqlParser.js"; @@ -2473,11 +2475,33 @@ export class MySqlParserVisitor extends AbstractParseTreeVisitor */ visitSelectElements?: (ctx: SelectElementsContext) => Result; /** - * Visit a parse tree produced by `MySqlParser.selectElement`. + * Visit a parse tree produced by the `selectElement_star` + * labeled alternative in `MySqlParser.selectElement`. * @param ctx the parse tree * @return the visitor result */ - visitSelectElement?: (ctx: SelectElementContext) => Result; + visitSelectElement_star?: (ctx: SelectElement_starContext) => Result; + /** + * Visit a parse tree produced by the `selectElement_label` + * labeled alternative in `MySqlParser.selectElement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSelectElement_label?: (ctx: SelectElement_labelContext) => Result; + /** + * Visit a parse tree produced by the `selectElement_expr` + * labeled alternative in `MySqlParser.selectElement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSelectElement_expr?: (ctx: SelectElement_exprContext) => Result; + /** + * Visit a parse tree produced by the `selectElement_dot_empty` + * labeled alternative in `MySqlParser.selectElement`. + * @param ctx the parse tree + * @return the visitor result + */ + visitSelectElement_dot_empty?: (ctx: SelectElement_dot_emptyContext) => Result; /** * Visit a parse tree produced by `MySqlParser.tableAllColumns`. * @param ctx the parse tree @@ -4293,12 +4317,6 @@ export class MySqlParserVisitor extends AbstractParseTreeVisitor * @return the visitor result */ visitDottedId?: (ctx: DottedIdContext) => Result; - /** - * Visit a parse tree produced by `MySqlParser.dottedIdAllowEmpty`. - * @param ctx the parse tree - * @return the visitor result - */ - visitDottedIdAllowEmpty?: (ctx: DottedIdAllowEmptyContext) => Result; /** * Visit a parse tree produced by `MySqlParser.decimalLiteral`. * @param ctx the parse tree diff --git a/src/lib/postgresql/PostgreSqlParser.interp b/src/lib/postgresql/PostgreSqlParser.interp index 7d57030a9..a8af8f738 100644 --- a/src/lib/postgresql/PostgreSqlParser.interp +++ b/src/lib/postgresql/PostgreSqlParser.interp @@ -1606,6 +1606,7 @@ colId typeFunctionName nonReservedWord colLabel +indirectionLabel identifier unreservedKeyword colNameKeyword @@ -1662,4 +1663,4 @@ sqlExpression atn: -[4, 1, 592, 8532, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 2, 199, 7, 199, 2, 200, 7, 200, 2, 201, 7, 201, 2, 202, 7, 202, 2, 203, 7, 203, 2, 204, 7, 204, 2, 205, 7, 205, 2, 206, 7, 206, 2, 207, 7, 207, 2, 208, 7, 208, 2, 209, 7, 209, 2, 210, 7, 210, 2, 211, 7, 211, 2, 212, 7, 212, 2, 213, 7, 213, 2, 214, 7, 214, 2, 215, 7, 215, 2, 216, 7, 216, 2, 217, 7, 217, 2, 218, 7, 218, 2, 219, 7, 219, 2, 220, 7, 220, 2, 221, 7, 221, 2, 222, 7, 222, 2, 223, 7, 223, 2, 224, 7, 224, 2, 225, 7, 225, 2, 226, 7, 226, 2, 227, 7, 227, 2, 228, 7, 228, 2, 229, 7, 229, 2, 230, 7, 230, 2, 231, 7, 231, 2, 232, 7, 232, 2, 233, 7, 233, 2, 234, 7, 234, 2, 235, 7, 235, 2, 236, 7, 236, 2, 237, 7, 237, 2, 238, 7, 238, 2, 239, 7, 239, 2, 240, 7, 240, 2, 241, 7, 241, 2, 242, 7, 242, 2, 243, 7, 243, 2, 244, 7, 244, 2, 245, 7, 245, 2, 246, 7, 246, 2, 247, 7, 247, 2, 248, 7, 248, 2, 249, 7, 249, 2, 250, 7, 250, 2, 251, 7, 251, 2, 252, 7, 252, 2, 253, 7, 253, 2, 254, 7, 254, 2, 255, 7, 255, 2, 256, 7, 256, 2, 257, 7, 257, 2, 258, 7, 258, 2, 259, 7, 259, 2, 260, 7, 260, 2, 261, 7, 261, 2, 262, 7, 262, 2, 263, 7, 263, 2, 264, 7, 264, 2, 265, 7, 265, 2, 266, 7, 266, 2, 267, 7, 267, 2, 268, 7, 268, 2, 269, 7, 269, 2, 270, 7, 270, 2, 271, 7, 271, 2, 272, 7, 272, 2, 273, 7, 273, 2, 274, 7, 274, 2, 275, 7, 275, 2, 276, 7, 276, 2, 277, 7, 277, 2, 278, 7, 278, 2, 279, 7, 279, 2, 280, 7, 280, 2, 281, 7, 281, 2, 282, 7, 282, 2, 283, 7, 283, 2, 284, 7, 284, 2, 285, 7, 285, 2, 286, 7, 286, 2, 287, 7, 287, 2, 288, 7, 288, 2, 289, 7, 289, 2, 290, 7, 290, 2, 291, 7, 291, 2, 292, 7, 292, 2, 293, 7, 293, 2, 294, 7, 294, 2, 295, 7, 295, 2, 296, 7, 296, 2, 297, 7, 297, 2, 298, 7, 298, 2, 299, 7, 299, 2, 300, 7, 300, 2, 301, 7, 301, 2, 302, 7, 302, 2, 303, 7, 303, 2, 304, 7, 304, 2, 305, 7, 305, 2, 306, 7, 306, 2, 307, 7, 307, 2, 308, 7, 308, 2, 309, 7, 309, 2, 310, 7, 310, 2, 311, 7, 311, 2, 312, 7, 312, 2, 313, 7, 313, 2, 314, 7, 314, 2, 315, 7, 315, 2, 316, 7, 316, 2, 317, 7, 317, 2, 318, 7, 318, 2, 319, 7, 319, 2, 320, 7, 320, 2, 321, 7, 321, 2, 322, 7, 322, 2, 323, 7, 323, 2, 324, 7, 324, 2, 325, 7, 325, 2, 326, 7, 326, 2, 327, 7, 327, 2, 328, 7, 328, 2, 329, 7, 329, 2, 330, 7, 330, 2, 331, 7, 331, 2, 332, 7, 332, 2, 333, 7, 333, 2, 334, 7, 334, 2, 335, 7, 335, 2, 336, 7, 336, 2, 337, 7, 337, 2, 338, 7, 338, 2, 339, 7, 339, 2, 340, 7, 340, 2, 341, 7, 341, 2, 342, 7, 342, 2, 343, 7, 343, 2, 344, 7, 344, 2, 345, 7, 345, 2, 346, 7, 346, 2, 347, 7, 347, 2, 348, 7, 348, 2, 349, 7, 349, 2, 350, 7, 350, 2, 351, 7, 351, 2, 352, 7, 352, 2, 353, 7, 353, 2, 354, 7, 354, 2, 355, 7, 355, 2, 356, 7, 356, 2, 357, 7, 357, 2, 358, 7, 358, 2, 359, 7, 359, 2, 360, 7, 360, 2, 361, 7, 361, 2, 362, 7, 362, 2, 363, 7, 363, 2, 364, 7, 364, 2, 365, 7, 365, 2, 366, 7, 366, 2, 367, 7, 367, 2, 368, 7, 368, 2, 369, 7, 369, 2, 370, 7, 370, 2, 371, 7, 371, 2, 372, 7, 372, 2, 373, 7, 373, 2, 374, 7, 374, 2, 375, 7, 375, 2, 376, 7, 376, 2, 377, 7, 377, 2, 378, 7, 378, 2, 379, 7, 379, 2, 380, 7, 380, 2, 381, 7, 381, 2, 382, 7, 382, 2, 383, 7, 383, 2, 384, 7, 384, 2, 385, 7, 385, 2, 386, 7, 386, 2, 387, 7, 387, 2, 388, 7, 388, 2, 389, 7, 389, 2, 390, 7, 390, 2, 391, 7, 391, 2, 392, 7, 392, 2, 393, 7, 393, 2, 394, 7, 394, 2, 395, 7, 395, 2, 396, 7, 396, 2, 397, 7, 397, 2, 398, 7, 398, 2, 399, 7, 399, 2, 400, 7, 400, 2, 401, 7, 401, 2, 402, 7, 402, 2, 403, 7, 403, 2, 404, 7, 404, 2, 405, 7, 405, 2, 406, 7, 406, 2, 407, 7, 407, 2, 408, 7, 408, 2, 409, 7, 409, 2, 410, 7, 410, 2, 411, 7, 411, 2, 412, 7, 412, 2, 413, 7, 413, 2, 414, 7, 414, 2, 415, 7, 415, 2, 416, 7, 416, 2, 417, 7, 417, 2, 418, 7, 418, 2, 419, 7, 419, 2, 420, 7, 420, 2, 421, 7, 421, 2, 422, 7, 422, 2, 423, 7, 423, 2, 424, 7, 424, 2, 425, 7, 425, 2, 426, 7, 426, 2, 427, 7, 427, 2, 428, 7, 428, 2, 429, 7, 429, 2, 430, 7, 430, 2, 431, 7, 431, 2, 432, 7, 432, 2, 433, 7, 433, 2, 434, 7, 434, 2, 435, 7, 435, 2, 436, 7, 436, 2, 437, 7, 437, 2, 438, 7, 438, 2, 439, 7, 439, 2, 440, 7, 440, 2, 441, 7, 441, 2, 442, 7, 442, 2, 443, 7, 443, 2, 444, 7, 444, 2, 445, 7, 445, 2, 446, 7, 446, 2, 447, 7, 447, 2, 448, 7, 448, 2, 449, 7, 449, 2, 450, 7, 450, 2, 451, 7, 451, 2, 452, 7, 452, 2, 453, 7, 453, 2, 454, 7, 454, 2, 455, 7, 455, 2, 456, 7, 456, 2, 457, 7, 457, 2, 458, 7, 458, 2, 459, 7, 459, 2, 460, 7, 460, 2, 461, 7, 461, 2, 462, 7, 462, 2, 463, 7, 463, 2, 464, 7, 464, 2, 465, 7, 465, 2, 466, 7, 466, 2, 467, 7, 467, 2, 468, 7, 468, 2, 469, 7, 469, 1, 0, 5, 0, 942, 8, 0, 10, 0, 12, 0, 945, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 951, 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, 1071, 8, 2, 3, 2, 1073, 8, 2, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 1082, 8, 4, 1, 4, 5, 4, 1085, 8, 4, 10, 4, 12, 4, 1088, 9, 4, 1, 5, 1, 5, 1, 5, 3, 5, 1093, 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, 1128, 8, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1138, 8, 6, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 1144, 8, 7, 1, 7, 5, 7, 1147, 8, 7, 10, 7, 12, 7, 1150, 9, 7, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1156, 8, 8, 1, 8, 5, 8, 1159, 8, 8, 10, 8, 12, 8, 1162, 9, 8, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1168, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1179, 8, 10, 1, 10, 1, 10, 1, 11, 1, 11, 5, 11, 1185, 8, 11, 10, 11, 12, 11, 1188, 9, 11, 1, 11, 3, 11, 1191, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1203, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1209, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1215, 8, 12, 1, 12, 1, 12, 3, 12, 1219, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1224, 8, 12, 1, 12, 1, 12, 3, 12, 1228, 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, 1241, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1251, 8, 12, 3, 12, 1253, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 1259, 8, 13, 1, 13, 5, 13, 1262, 8, 13, 10, 13, 12, 13, 1265, 9, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 3, 15, 1277, 8, 15, 1, 15, 3, 15, 1280, 8, 15, 1, 15, 1, 15, 1, 15, 3, 15, 1285, 8, 15, 1, 15, 5, 15, 1288, 8, 15, 10, 15, 12, 15, 1291, 9, 15, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 1301, 8, 17, 1, 18, 1, 18, 3, 18, 1305, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 1317, 8, 19, 1, 20, 1, 20, 3, 20, 1321, 8, 20, 1, 20, 3, 20, 1324, 8, 20, 1, 20, 1, 20, 3, 20, 1328, 8, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1340, 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, 1358, 8, 21, 1, 22, 1, 22, 1, 22, 5, 22, 1363, 8, 22, 10, 22, 12, 22, 1366, 9, 22, 1, 23, 1, 23, 1, 23, 5, 23, 1371, 8, 23, 10, 23, 12, 23, 1374, 9, 23, 1, 24, 1, 24, 3, 24, 1378, 8, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 3, 25, 1385, 8, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1393, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1399, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 1407, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 1415, 8, 28, 1, 29, 1, 29, 3, 29, 1419, 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, 1433, 8, 31, 1, 32, 1, 32, 1, 32, 3, 32, 1438, 8, 32, 1, 33, 1, 33, 1, 33, 3, 33, 1443, 8, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1455, 8, 34, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 1461, 8, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 3, 38, 1473, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1478, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1488, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1494, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1499, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1508, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1515, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1520, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1525, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1535, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1540, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1545, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1552, 8, 38, 1, 38, 1, 38, 3, 38, 1556, 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, 1570, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1576, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1582, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1587, 8, 38, 1, 39, 1, 39, 1, 39, 5, 39, 1592, 8, 39, 10, 39, 12, 39, 1595, 9, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 3, 40, 1603, 8, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 3, 42, 1612, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 5, 42, 1619, 8, 42, 10, 42, 12, 42, 1622, 9, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1630, 8, 42, 1, 42, 1, 42, 3, 42, 1634, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1646, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1654, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1664, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1684, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1689, 8, 42, 1, 42, 3, 42, 1692, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1699, 8, 42, 1, 42, 3, 42, 1702, 8, 42, 1, 42, 1, 42, 3, 42, 1706, 8, 42, 1, 42, 1, 42, 3, 42, 1710, 8, 42, 1, 42, 3, 42, 1713, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1718, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1723, 8, 42, 1, 42, 1, 42, 3, 42, 1727, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1736, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1742, 8, 42, 1, 42, 1, 42, 3, 42, 1746, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1755, 8, 42, 1, 42, 3, 42, 1758, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1764, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1773, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 4, 42, 1783, 8, 42, 11, 42, 12, 42, 1784, 1, 42, 1, 42, 3, 42, 1789, 8, 42, 1, 42, 1, 42, 3, 42, 1793, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1798, 8, 42, 1, 42, 3, 42, 1801, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1807, 8, 42, 4, 42, 1809, 8, 42, 11, 42, 12, 42, 1810, 1, 42, 1, 42, 3, 42, 1815, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1821, 8, 42, 1, 42, 1, 42, 3, 42, 1825, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1830, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1835, 8, 42, 1, 42, 1, 42, 3, 42, 1839, 8, 42, 1, 42, 3, 42, 1842, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 1849, 8, 43, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 1860, 8, 46, 10, 46, 12, 46, 1863, 9, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1875, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1900, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1908, 8, 50, 10, 50, 12, 50, 1911, 9, 50, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1917, 8, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1922, 8, 51, 1, 51, 1, 51, 3, 51, 1926, 8, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1933, 8, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1938, 8, 51, 1, 51, 3, 51, 1941, 8, 51, 3, 51, 1943, 8, 51, 1, 52, 1, 52, 1, 52, 3, 52, 1948, 8, 52, 1, 53, 1, 53, 3, 53, 1952, 8, 53, 1, 53, 1, 53, 3, 53, 1956, 8, 53, 1, 53, 1, 53, 3, 53, 1960, 8, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1965, 8, 53, 1, 53, 3, 53, 1968, 8, 53, 1, 53, 1, 53, 3, 53, 1972, 8, 53, 1, 53, 3, 53, 1975, 8, 53, 1, 53, 1, 53, 3, 53, 1979, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1987, 8, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1992, 8, 53, 1, 53, 3, 53, 1995, 8, 53, 1, 53, 1, 53, 3, 53, 1999, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 2005, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 2014, 8, 54, 1, 54, 1, 54, 3, 54, 2018, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 2028, 8, 54, 1, 54, 1, 54, 1, 54, 3, 54, 2033, 8, 54, 5, 54, 2035, 8, 54, 10, 54, 12, 54, 2038, 9, 54, 1, 54, 3, 54, 2041, 8, 54, 5, 54, 2043, 8, 54, 10, 54, 12, 54, 2046, 9, 54, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 2052, 8, 55, 1, 55, 1, 55, 1, 55, 3, 55, 2057, 8, 55, 5, 55, 2059, 8, 55, 10, 55, 12, 55, 2062, 9, 55, 1, 55, 1, 55, 3, 55, 2066, 8, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 2076, 8, 56, 10, 56, 12, 56, 2079, 9, 56, 1, 56, 1, 56, 3, 56, 2083, 8, 56, 1, 57, 1, 57, 3, 57, 2087, 8, 57, 1, 57, 1, 57, 3, 57, 2091, 8, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2096, 8, 57, 1, 57, 1, 57, 3, 57, 2100, 8, 57, 1, 57, 3, 57, 2103, 8, 57, 1, 57, 3, 57, 2106, 8, 57, 1, 57, 3, 57, 2109, 8, 57, 1, 57, 3, 57, 2112, 8, 57, 1, 57, 3, 57, 2115, 8, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2120, 8, 57, 1, 57, 3, 57, 2123, 8, 57, 1, 57, 3, 57, 2126, 8, 57, 1, 57, 3, 57, 2129, 8, 57, 1, 57, 3, 57, 2132, 8, 57, 1, 57, 3, 57, 2135, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2141, 8, 57, 1, 57, 1, 57, 3, 57, 2145, 8, 57, 1, 57, 3, 57, 2148, 8, 57, 1, 57, 3, 57, 2151, 8, 57, 1, 57, 3, 57, 2154, 8, 57, 1, 57, 3, 57, 2157, 8, 57, 3, 57, 2159, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2166, 8, 58, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 2172, 8, 59, 10, 59, 12, 59, 2175, 9, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 5, 60, 2182, 8, 60, 10, 60, 12, 60, 2185, 9, 60, 1, 61, 1, 61, 3, 61, 2189, 8, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 5, 61, 2197, 8, 61, 10, 61, 12, 61, 2200, 9, 61, 3, 61, 2202, 8, 61, 1, 62, 1, 62, 1, 62, 3, 62, 2207, 8, 62, 1, 62, 5, 62, 2210, 8, 62, 10, 62, 12, 62, 2213, 9, 62, 1, 62, 1, 62, 3, 62, 2217, 8, 62, 1, 62, 3, 62, 2220, 8, 62, 1, 63, 1, 63, 1, 63, 3, 63, 2225, 8, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 2234, 8, 63, 3, 63, 2236, 8, 63, 1, 63, 1, 63, 3, 63, 2240, 8, 63, 1, 63, 3, 63, 2243, 8, 63, 1, 63, 1, 63, 3, 63, 2247, 8, 63, 1, 63, 5, 63, 2250, 8, 63, 10, 63, 12, 63, 2253, 9, 63, 1, 64, 1, 64, 3, 64, 2257, 8, 64, 1, 64, 1, 64, 3, 64, 2261, 8, 64, 1, 64, 3, 64, 2264, 8, 64, 1, 64, 1, 64, 3, 64, 2268, 8, 64, 1, 65, 3, 65, 2271, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2276, 8, 65, 1, 65, 3, 65, 2279, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2284, 8, 65, 1, 65, 3, 65, 2287, 8, 65, 1, 65, 1, 65, 3, 65, 2291, 8, 65, 1, 65, 3, 65, 2294, 8, 65, 1, 65, 3, 65, 2297, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2302, 8, 65, 1, 65, 3, 65, 2305, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2313, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 4, 65, 2323, 8, 65, 11, 65, 12, 65, 2324, 1, 65, 1, 65, 3, 65, 2329, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2336, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2341, 8, 65, 1, 65, 3, 65, 2344, 8, 65, 1, 65, 3, 65, 2347, 8, 65, 1, 65, 3, 65, 2350, 8, 65, 1, 66, 1, 66, 1, 66, 3, 66, 2355, 8, 66, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2364, 8, 68, 10, 68, 12, 68, 2367, 9, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2372, 8, 68, 1, 68, 1, 68, 3, 68, 2376, 8, 68, 1, 68, 3, 68, 2379, 8, 68, 1, 68, 3, 68, 2382, 8, 68, 1, 68, 5, 68, 2385, 8, 68, 10, 68, 12, 68, 2388, 9, 68, 1, 68, 1, 68, 5, 68, 2392, 8, 68, 10, 68, 12, 68, 2395, 9, 68, 3, 68, 2397, 8, 68, 1, 68, 1, 68, 3, 68, 2401, 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2407, 8, 68, 10, 68, 12, 68, 2410, 9, 68, 1, 68, 1, 68, 3, 68, 2414, 8, 68, 1, 68, 3, 68, 2417, 8, 68, 1, 68, 3, 68, 2420, 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2427, 8, 68, 1, 68, 5, 68, 2430, 8, 68, 10, 68, 12, 68, 2433, 9, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2441, 8, 68, 1, 68, 3, 68, 2444, 8, 68, 1, 68, 3, 68, 2447, 8, 68, 1, 68, 5, 68, 2450, 8, 68, 10, 68, 12, 68, 2453, 9, 68, 3, 68, 2455, 8, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 2465, 8, 70, 10, 70, 12, 70, 2468, 9, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 5, 71, 2475, 8, 71, 10, 71, 12, 71, 2478, 9, 71, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2494, 8, 74, 1, 75, 1, 75, 3, 75, 2498, 8, 75, 1, 75, 1, 75, 3, 75, 2502, 8, 75, 3, 75, 2504, 8, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 2521, 8, 78, 3, 78, 2523, 8, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 5, 80, 2537, 8, 80, 10, 80, 12, 80, 2540, 9, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2550, 8, 81, 1, 81, 3, 81, 2553, 8, 81, 1, 81, 3, 81, 2556, 8, 81, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2565, 8, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 2574, 8, 84, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 3, 88, 2590, 8, 88, 1, 88, 3, 88, 2593, 8, 88, 1, 88, 3, 88, 2596, 8, 88, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 2602, 8, 88, 10, 88, 12, 88, 2605, 9, 88, 1, 88, 3, 88, 2608, 8, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 3, 89, 2615, 8, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 3, 90, 2624, 8, 90, 1, 90, 1, 90, 3, 90, 2628, 8, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 2634, 8, 90, 1, 91, 1, 91, 3, 91, 2638, 8, 91, 1, 91, 3, 91, 2641, 8, 91, 1, 91, 3, 91, 2644, 8, 91, 1, 91, 3, 91, 2647, 8, 91, 1, 91, 3, 91, 2650, 8, 91, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 2656, 8, 92, 1, 93, 1, 93, 3, 93, 2660, 8, 93, 1, 93, 1, 93, 1, 93, 3, 93, 2665, 8, 93, 1, 93, 1, 93, 3, 93, 2669, 8, 93, 1, 93, 3, 93, 2672, 8, 93, 1, 93, 3, 93, 2675, 8, 93, 1, 93, 3, 93, 2678, 8, 93, 1, 93, 1, 93, 1, 93, 3, 93, 2683, 8, 93, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 2689, 8, 94, 1, 94, 1, 94, 3, 94, 2693, 8, 94, 1, 95, 1, 95, 3, 95, 2697, 8, 95, 1, 95, 1, 95, 3, 95, 2701, 8, 95, 1, 95, 1, 95, 4, 95, 2705, 8, 95, 11, 95, 12, 95, 2706, 3, 95, 2709, 8, 95, 1, 96, 1, 96, 1, 96, 3, 96, 2714, 8, 96, 1, 96, 1, 96, 4, 96, 2718, 8, 96, 11, 96, 12, 96, 2719, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2726, 8, 97, 1, 97, 1, 97, 3, 97, 2730, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2745, 8, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2750, 8, 97, 1, 97, 3, 97, 2753, 8, 97, 3, 97, 2755, 8, 97, 1, 98, 3, 98, 2758, 8, 98, 1, 98, 1, 98, 3, 98, 2762, 8, 98, 1, 99, 1, 99, 3, 99, 2766, 8, 99, 1, 99, 3, 99, 2769, 8, 99, 1, 99, 3, 99, 2772, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 2780, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 2786, 8, 99, 3, 99, 2788, 8, 99, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 2794, 8, 100, 1, 100, 1, 100, 1, 100, 3, 100, 2799, 8, 100, 1, 101, 1, 101, 1, 101, 3, 101, 2804, 8, 101, 1, 101, 1, 101, 3, 101, 2808, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 5, 101, 2815, 8, 101, 10, 101, 12, 101, 2818, 9, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 2826, 8, 102, 10, 102, 12, 102, 2829, 9, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 2867, 8, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 4, 104, 2875, 8, 104, 11, 104, 12, 104, 2876, 3, 104, 2879, 8, 104, 1, 104, 3, 104, 2882, 8, 104, 1, 105, 1, 105, 3, 105, 2886, 8, 105, 1, 105, 1, 105, 3, 105, 2890, 8, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 4, 106, 2898, 8, 106, 11, 106, 12, 106, 2899, 3, 106, 2902, 8, 106, 1, 106, 1, 106, 4, 106, 2906, 8, 106, 11, 106, 12, 106, 2907, 3, 106, 2910, 8, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 5, 107, 2917, 8, 107, 10, 107, 12, 107, 2920, 9, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 5, 108, 2929, 8, 108, 10, 108, 12, 108, 2932, 9, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 3, 111, 2945, 8, 111, 1, 111, 1, 111, 1, 111, 3, 111, 2950, 8, 111, 1, 111, 3, 111, 2953, 8, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 2960, 8, 111, 1, 112, 1, 112, 1, 112, 3, 112, 2965, 8, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 2973, 8, 113, 3, 113, 2975, 8, 113, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2981, 8, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2986, 8, 114, 1, 114, 1, 114, 3, 114, 2990, 8, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2995, 8, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 3001, 8, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 3008, 8, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 3014, 8, 114, 3, 114, 3016, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 3025, 8, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 3031, 8, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 3039, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 3, 116, 3045, 8, 116, 1, 116, 1, 116, 1, 116, 3, 116, 3050, 8, 116, 1, 116, 1, 116, 1, 116, 3, 116, 3055, 8, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 3, 117, 3063, 8, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3078, 8, 118, 3, 118, 3080, 8, 118, 1, 118, 1, 118, 3, 118, 3084, 8, 118, 1, 118, 1, 118, 3, 118, 3088, 8, 118, 1, 118, 3, 118, 3091, 8, 118, 1, 118, 3, 118, 3094, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3103, 8, 119, 1, 119, 3, 119, 3106, 8, 119, 1, 119, 3, 119, 3109, 8, 119, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3115, 8, 120, 1, 120, 1, 120, 5, 120, 3119, 8, 120, 10, 120, 12, 120, 3122, 9, 120, 1, 120, 3, 120, 3125, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3137, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3143, 8, 120, 1, 121, 3, 121, 3146, 8, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3151, 8, 121, 1, 121, 1, 121, 3, 121, 3155, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3162, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3172, 8, 121, 3, 121, 3174, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 125, 1, 125, 3, 125, 3198, 8, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 3210, 8, 125, 1, 125, 4, 125, 3213, 8, 125, 11, 125, 12, 125, 3214, 3, 125, 3217, 8, 125, 1, 125, 1, 125, 3, 125, 3221, 8, 125, 1, 125, 3, 125, 3224, 8, 125, 1, 125, 3, 125, 3227, 8, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 3237, 8, 125, 1, 125, 3, 125, 3240, 8, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 3250, 8, 125, 1, 125, 5, 125, 3253, 8, 125, 10, 125, 12, 125, 3256, 9, 125, 1, 125, 1, 125, 3, 125, 3260, 8, 125, 1, 125, 3, 125, 3263, 8, 125, 1, 125, 3, 125, 3266, 8, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 3274, 8, 125, 1, 126, 1, 126, 1, 126, 1, 126, 3, 126, 3280, 8, 126, 1, 127, 1, 127, 1, 127, 5, 127, 3285, 8, 127, 10, 127, 12, 127, 3288, 9, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 3, 128, 3295, 8, 128, 1, 128, 3, 128, 3298, 8, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 3309, 8, 130, 1, 131, 1, 131, 3, 131, 3313, 8, 131, 1, 131, 1, 131, 5, 131, 3317, 8, 131, 10, 131, 12, 131, 3320, 9, 131, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3326, 8, 132, 1, 133, 3, 133, 3329, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 3338, 8, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 5, 134, 3350, 8, 134, 10, 134, 12, 134, 3353, 9, 134, 3, 134, 3355, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 5, 135, 3367, 8, 135, 10, 135, 12, 135, 3370, 9, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 3380, 8, 136, 1, 136, 3, 136, 3383, 8, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 5, 137, 3393, 8, 137, 10, 137, 12, 137, 3396, 9, 137, 1, 138, 1, 138, 3, 138, 3400, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 5, 138, 3411, 8, 138, 10, 138, 12, 138, 3414, 9, 138, 1, 138, 1, 138, 3, 138, 3418, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3431, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 5, 138, 3438, 8, 138, 10, 138, 12, 138, 3441, 9, 138, 3, 138, 3443, 8, 138, 1, 138, 3, 138, 3446, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3453, 8, 138, 1, 138, 3, 138, 3456, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3468, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3474, 8, 138, 3, 138, 3476, 8, 138, 1, 139, 1, 139, 1, 139, 1, 139, 5, 139, 3482, 8, 139, 10, 139, 12, 139, 3485, 9, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 3, 140, 3492, 8, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3500, 8, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 3512, 8, 143, 1, 143, 1, 143, 1, 143, 3, 143, 3517, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 3528, 8, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 3539, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 3547, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 5, 145, 3553, 8, 145, 10, 145, 12, 145, 3556, 9, 145, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3562, 8, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3569, 8, 146, 3, 146, 3571, 8, 146, 1, 146, 3, 146, 3574, 8, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3579, 8, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3584, 8, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 5, 148, 3601, 8, 148, 10, 148, 12, 148, 3604, 9, 148, 1, 148, 1, 148, 1, 148, 1, 148, 5, 148, 3610, 8, 148, 10, 148, 12, 148, 3613, 9, 148, 3, 148, 3615, 8, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 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, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3642, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3651, 8, 151, 1, 151, 3, 151, 3654, 8, 151, 1, 151, 1, 151, 3, 151, 3658, 8, 151, 1, 151, 1, 151, 3, 151, 3662, 8, 151, 1, 151, 1, 151, 3, 151, 3666, 8, 151, 1, 151, 1, 151, 1, 151, 5, 151, 3671, 8, 151, 10, 151, 12, 151, 3674, 9, 151, 1, 151, 3, 151, 3677, 8, 151, 1, 151, 1, 151, 3, 151, 3681, 8, 151, 1, 151, 1, 151, 3, 151, 3685, 8, 151, 1, 151, 1, 151, 3, 151, 3689, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3694, 8, 151, 1, 151, 1, 151, 3, 151, 3698, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3703, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3709, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3714, 8, 151, 1, 151, 1, 151, 1, 151, 5, 151, 3719, 8, 151, 10, 151, 12, 151, 3722, 9, 151, 1, 151, 3, 151, 3725, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3731, 8, 151, 1, 151, 1, 151, 3, 151, 3735, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3740, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3748, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3754, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3759, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3766, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3771, 8, 151, 1, 151, 1, 151, 3, 151, 3775, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3780, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3786, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3793, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3798, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3805, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3810, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3817, 8, 151, 1, 151, 1, 151, 3, 151, 3821, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 5, 151, 3827, 8, 151, 10, 151, 12, 151, 3830, 9, 151, 1, 151, 3, 151, 3833, 8, 151, 3, 151, 3835, 8, 151, 1, 152, 3, 152, 3838, 8, 152, 1, 152, 1, 152, 1, 152, 3, 152, 3843, 8, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 3, 152, 3853, 8, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 3, 153, 3868, 8, 153, 1, 153, 3, 153, 3871, 8, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 3, 153, 3879, 8, 153, 1, 154, 1, 154, 1, 154, 5, 154, 3884, 8, 154, 10, 154, 12, 154, 3887, 9, 154, 1, 155, 1, 155, 3, 155, 3891, 8, 155, 1, 156, 1, 156, 4, 156, 3895, 8, 156, 11, 156, 12, 156, 3896, 1, 157, 1, 157, 3, 157, 3901, 8, 157, 1, 157, 1, 157, 1, 157, 5, 157, 3906, 8, 157, 10, 157, 12, 157, 3909, 9, 157, 1, 157, 1, 157, 3, 157, 3913, 8, 157, 1, 157, 3, 157, 3916, 8, 157, 1, 158, 3, 158, 3919, 8, 158, 1, 158, 1, 158, 3, 158, 3923, 8, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3932, 8, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3950, 8, 159, 1, 159, 3, 159, 3953, 8, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3985, 8, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3990, 8, 159, 1, 160, 1, 160, 1, 160, 1, 160, 3, 160, 3996, 8, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 3, 160, 4016, 8, 160, 1, 160, 1, 160, 1, 160, 3, 160, 4021, 8, 160, 1, 161, 1, 161, 1, 161, 1, 162, 3, 162, 4027, 8, 162, 1, 162, 3, 162, 4030, 8, 162, 1, 162, 1, 162, 3, 162, 4034, 8, 162, 1, 162, 1, 162, 3, 162, 4038, 8, 162, 1, 162, 1, 162, 1, 162, 1, 162, 3, 162, 4044, 8, 162, 1, 162, 3, 162, 4047, 8, 162, 1, 162, 1, 162, 3, 162, 4051, 8, 162, 1, 162, 1, 162, 3, 162, 4055, 8, 162, 1, 162, 1, 162, 1, 162, 3, 162, 4060, 8, 162, 1, 162, 3, 162, 4063, 8, 162, 1, 162, 3, 162, 4066, 8, 162, 1, 162, 3, 162, 4069, 8, 162, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 4082, 8, 164, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 4088, 8, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 4096, 8, 165, 1, 166, 1, 166, 1, 166, 5, 166, 4101, 8, 166, 10, 166, 12, 166, 4104, 9, 166, 1, 166, 1, 166, 3, 166, 4108, 8, 166, 1, 166, 3, 166, 4111, 8, 166, 1, 166, 1, 166, 1, 166, 5, 166, 4116, 8, 166, 10, 166, 12, 166, 4119, 9, 166, 3, 166, 4121, 8, 166, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 4129, 8, 168, 1, 168, 3, 168, 4132, 8, 168, 1, 169, 1, 169, 1, 169, 3, 169, 4137, 8, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 3, 169, 4144, 8, 169, 1, 169, 3, 169, 4147, 8, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 5, 169, 4165, 8, 169, 10, 169, 12, 169, 4168, 9, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 3, 169, 4179, 8, 169, 1, 170, 3, 170, 4182, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 4188, 8, 170, 1, 170, 5, 170, 4191, 8, 170, 10, 170, 12, 170, 4194, 9, 170, 1, 171, 1, 171, 1, 171, 1, 171, 5, 171, 4200, 8, 171, 10, 171, 12, 171, 4203, 9, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 3, 171, 4210, 8, 171, 1, 171, 1, 171, 1, 171, 3, 171, 4215, 8, 171, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 4221, 8, 172, 1, 172, 1, 172, 1, 172, 5, 172, 4226, 8, 172, 10, 172, 12, 172, 4229, 9, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 4236, 8, 172, 1, 172, 3, 172, 4239, 8, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 5, 173, 4250, 8, 173, 10, 173, 12, 173, 4253, 9, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 4266, 8, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 4272, 8, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 4280, 8, 174, 3, 174, 4282, 8, 174, 1, 175, 1, 175, 1, 176, 1, 176, 3, 176, 4288, 8, 176, 1, 176, 1, 176, 3, 176, 4292, 8, 176, 1, 176, 3, 176, 4295, 8, 176, 1, 176, 3, 176, 4298, 8, 176, 1, 176, 1, 176, 1, 176, 3, 176, 4303, 8, 176, 1, 176, 1, 176, 1, 176, 3, 176, 4308, 8, 176, 1, 176, 1, 176, 3, 176, 4312, 8, 176, 1, 176, 3, 176, 4315, 8, 176, 1, 176, 3, 176, 4318, 8, 176, 1, 176, 3, 176, 4321, 8, 176, 1, 176, 3, 176, 4324, 8, 176, 1, 177, 1, 177, 1, 177, 1, 177, 5, 177, 4330, 8, 177, 10, 177, 12, 177, 4333, 9, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 3, 178, 4343, 8, 178, 1, 178, 3, 178, 4346, 8, 178, 1, 178, 3, 178, 4349, 8, 178, 1, 178, 1, 178, 1, 178, 3, 178, 4354, 8, 178, 1, 178, 3, 178, 4357, 8, 178, 1, 178, 1, 178, 3, 178, 4361, 8, 178, 1, 179, 1, 179, 3, 179, 4365, 8, 179, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 4371, 8, 179, 1, 179, 1, 179, 1, 179, 1, 179, 5, 179, 4377, 8, 179, 10, 179, 12, 179, 4380, 9, 179, 3, 179, 4382, 8, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 5, 179, 4393, 8, 179, 10, 179, 12, 179, 4396, 9, 179, 1, 179, 1, 179, 3, 179, 4400, 8, 179, 3, 179, 4402, 8, 179, 1, 179, 4, 179, 4405, 8, 179, 11, 179, 12, 179, 4406, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 4414, 8, 179, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 3, 181, 4421, 8, 181, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 5, 182, 4428, 8, 182, 10, 182, 12, 182, 4431, 9, 182, 1, 183, 1, 183, 1, 183, 5, 183, 4436, 8, 183, 10, 183, 12, 183, 4439, 9, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 3, 184, 4446, 8, 184, 1, 185, 1, 185, 1, 185, 5, 185, 4451, 8, 185, 10, 185, 12, 185, 4454, 9, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 3, 186, 4461, 8, 186, 1, 187, 1, 187, 1, 187, 5, 187, 4466, 8, 187, 10, 187, 12, 187, 4469, 9, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 4476, 8, 188, 1, 189, 1, 189, 3, 189, 4480, 8, 189, 1, 189, 1, 189, 3, 189, 4484, 8, 189, 3, 189, 4486, 8, 189, 1, 189, 1, 189, 1, 190, 1, 190, 3, 190, 4492, 8, 190, 1, 190, 1, 190, 1, 190, 3, 190, 4497, 8, 190, 1, 191, 1, 191, 3, 191, 4501, 8, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 3, 191, 4508, 8, 191, 1, 192, 1, 192, 1, 192, 3, 192, 4513, 8, 192, 1, 193, 1, 193, 1, 193, 3, 193, 4518, 8, 193, 1, 193, 1, 193, 1, 193, 3, 193, 4523, 8, 193, 3, 193, 4525, 8, 193, 1, 193, 1, 193, 1, 194, 1, 194, 1, 194, 1, 195, 1, 195, 1, 195, 3, 195, 4535, 8, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 3, 195, 4545, 8, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 3, 195, 4561, 8, 195, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 5, 196, 4577, 8, 196, 10, 196, 12, 196, 4580, 9, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 3, 196, 4591, 8, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 3, 196, 4598, 8, 196, 1, 197, 1, 197, 1, 197, 1, 198, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 3, 199, 4613, 8, 199, 1, 199, 4, 199, 4616, 8, 199, 11, 199, 12, 199, 4617, 1, 199, 3, 199, 4621, 8, 199, 1, 200, 1, 200, 1, 200, 3, 200, 4626, 8, 200, 1, 200, 1, 200, 1, 200, 3, 200, 4631, 8, 200, 1, 200, 1, 200, 1, 200, 3, 200, 4636, 8, 200, 1, 200, 3, 200, 4639, 8, 200, 1, 200, 3, 200, 4642, 8, 200, 1, 201, 1, 201, 1, 201, 3, 201, 4647, 8, 201, 1, 201, 1, 201, 1, 201, 5, 201, 4652, 8, 201, 10, 201, 12, 201, 4655, 9, 201, 1, 201, 3, 201, 4658, 8, 201, 1, 202, 1, 202, 1, 202, 3, 202, 4663, 8, 202, 1, 202, 1, 202, 1, 202, 5, 202, 4668, 8, 202, 10, 202, 12, 202, 4671, 9, 202, 1, 202, 3, 202, 4674, 8, 202, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 4680, 8, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 4689, 8, 203, 1, 203, 1, 203, 1, 204, 1, 204, 1, 204, 5, 204, 4696, 8, 204, 10, 204, 12, 204, 4699, 9, 204, 1, 204, 1, 204, 1, 205, 1, 205, 1, 205, 1, 206, 1, 206, 1, 206, 1, 206, 4, 206, 4710, 8, 206, 11, 206, 12, 206, 4711, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 4725, 8, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 4731, 8, 207, 1, 207, 1, 207, 3, 207, 4735, 8, 207, 3, 207, 4737, 8, 207, 1, 208, 1, 208, 1, 208, 1, 209, 1, 209, 3, 209, 4744, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 4757, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 4764, 8, 209, 3, 209, 4766, 8, 209, 1, 209, 1, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 5, 211, 4780, 8, 211, 10, 211, 12, 211, 4783, 9, 211, 1, 211, 3, 211, 4786, 8, 211, 1, 211, 1, 211, 3, 211, 4790, 8, 211, 1, 211, 1, 211, 1, 211, 3, 211, 4795, 8, 211, 1, 211, 1, 211, 1, 211, 3, 211, 4800, 8, 211, 1, 211, 1, 211, 1, 211, 3, 211, 4805, 8, 211, 1, 211, 1, 211, 1, 211, 3, 211, 4810, 8, 211, 1, 211, 3, 211, 4813, 8, 211, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4825, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4878, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4887, 8, 213, 1, 213, 1, 213, 3, 213, 4891, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4900, 8, 213, 1, 213, 1, 213, 3, 213, 4904, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4913, 8, 213, 1, 213, 1, 213, 3, 213, 4917, 8, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4922, 8, 213, 1, 213, 3, 213, 4925, 8, 213, 1, 213, 1, 213, 3, 213, 4929, 8, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4934, 8, 213, 3, 213, 4936, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4945, 8, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4950, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4961, 8, 213, 1, 213, 1, 213, 3, 213, 4965, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4979, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4987, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 5025, 8, 213, 3, 213, 5027, 8, 213, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 3, 214, 5046, 8, 214, 1, 214, 3, 214, 5049, 8, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 3, 215, 5076, 8, 215, 1, 215, 1, 215, 3, 215, 5080, 8, 215, 1, 215, 1, 215, 3, 215, 5084, 8, 215, 1, 215, 1, 215, 3, 215, 5088, 8, 215, 1, 215, 1, 215, 3, 215, 5092, 8, 215, 1, 215, 3, 215, 5095, 8, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 3, 215, 5110, 8, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 3, 215, 5117, 8, 215, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 217, 1, 217, 1, 217, 1, 217, 5, 217, 5129, 8, 217, 10, 217, 12, 217, 5132, 9, 217, 1, 217, 1, 217, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 5144, 8, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5169, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5188, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5203, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5219, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5226, 8, 220, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 3, 221, 5237, 8, 221, 1, 221, 3, 221, 5240, 8, 221, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 5, 222, 5257, 8, 222, 10, 222, 12, 222, 5260, 9, 222, 3, 222, 5262, 8, 222, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 5, 223, 5273, 8, 223, 10, 223, 12, 223, 5276, 9, 223, 1, 223, 3, 223, 5279, 8, 223, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 3, 224, 5299, 8, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 5, 224, 5309, 8, 224, 10, 224, 12, 224, 5312, 9, 224, 1, 224, 3, 224, 5315, 8, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 3, 224, 5337, 8, 224, 1, 225, 1, 225, 3, 225, 5341, 8, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 3, 225, 5351, 8, 225, 1, 225, 1, 225, 3, 225, 5355, 8, 225, 1, 225, 1, 225, 1, 225, 1, 225, 3, 225, 5361, 8, 225, 1, 225, 1, 225, 3, 225, 5365, 8, 225, 5, 225, 5367, 8, 225, 10, 225, 12, 225, 5370, 9, 225, 1, 225, 3, 225, 5373, 8, 225, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 3, 226, 5380, 8, 226, 1, 227, 1, 227, 1, 227, 3, 227, 5385, 8, 227, 1, 228, 1, 228, 1, 228, 1, 229, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 3, 230, 5396, 8, 230, 1, 231, 1, 231, 3, 231, 5400, 8, 231, 1, 231, 3, 231, 5403, 8, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5408, 8, 231, 1, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5414, 8, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5425, 8, 231, 1, 231, 1, 231, 3, 231, 5429, 8, 231, 1, 231, 3, 231, 5432, 8, 231, 1, 231, 1, 231, 3, 231, 5436, 8, 231, 1, 231, 1, 231, 3, 231, 5440, 8, 231, 1, 231, 3, 231, 5443, 8, 231, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 3, 233, 5453, 8, 233, 1, 233, 3, 233, 5456, 8, 233, 1, 234, 1, 234, 3, 234, 5460, 8, 234, 1, 234, 5, 234, 5463, 8, 234, 10, 234, 12, 234, 5466, 9, 234, 1, 235, 1, 235, 1, 235, 3, 235, 5471, 8, 235, 1, 235, 3, 235, 5474, 8, 235, 1, 235, 1, 235, 1, 235, 3, 235, 5479, 8, 235, 1, 235, 3, 235, 5482, 8, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 3, 235, 5489, 8, 235, 3, 235, 5491, 8, 235, 1, 235, 1, 235, 1, 235, 1, 235, 3, 235, 5497, 8, 235, 1, 235, 1, 235, 3, 235, 5501, 8, 235, 1, 236, 1, 236, 1, 236, 1, 237, 1, 237, 1, 237, 1, 237, 3, 237, 5510, 8, 237, 1, 237, 4, 237, 5513, 8, 237, 11, 237, 12, 237, 5514, 3, 237, 5517, 8, 237, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5527, 8, 238, 1, 238, 3, 238, 5530, 8, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5535, 8, 238, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 3, 239, 5543, 8, 239, 1, 239, 3, 239, 5546, 8, 239, 1, 239, 4, 239, 5549, 8, 239, 11, 239, 12, 239, 5550, 3, 239, 5553, 8, 239, 3, 239, 5555, 8, 239, 1, 240, 1, 240, 1, 240, 1, 240, 3, 240, 5561, 8, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 243, 1, 243, 1, 243, 1, 243, 3, 243, 5578, 8, 243, 1, 243, 1, 243, 5, 243, 5582, 8, 243, 10, 243, 12, 243, 5585, 9, 243, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5597, 8, 244, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5603, 8, 244, 1, 244, 1, 244, 3, 244, 5607, 8, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5612, 8, 244, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 3, 246, 5642, 8, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 3, 246, 5657, 8, 246, 1, 246, 1, 246, 1, 246, 3, 246, 5662, 8, 246, 1, 247, 1, 247, 3, 247, 5666, 8, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 248, 1, 248, 3, 248, 5679, 8, 248, 1, 248, 1, 248, 3, 248, 5683, 8, 248, 3, 248, 5685, 8, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 5, 248, 5692, 8, 248, 10, 248, 12, 248, 5695, 9, 248, 1, 248, 1, 248, 1, 248, 3, 248, 5700, 8, 248, 3, 248, 5702, 8, 248, 1, 249, 1, 249, 3, 249, 5706, 8, 249, 1, 249, 3, 249, 5709, 8, 249, 1, 249, 3, 249, 5712, 8, 249, 1, 249, 3, 249, 5715, 8, 249, 1, 249, 3, 249, 5718, 8, 249, 3, 249, 5720, 8, 249, 1, 249, 3, 249, 5723, 8, 249, 1, 250, 1, 250, 3, 250, 5727, 8, 250, 1, 250, 1, 250, 1, 250, 1, 250, 5, 250, 5733, 8, 250, 10, 250, 12, 250, 5736, 9, 250, 1, 250, 1, 250, 3, 250, 5740, 8, 250, 1, 250, 3, 250, 5743, 8, 250, 1, 251, 1, 251, 1, 252, 1, 252, 3, 252, 5749, 8, 252, 1, 252, 1, 252, 3, 252, 5753, 8, 252, 1, 253, 1, 253, 3, 253, 5757, 8, 253, 1, 253, 1, 253, 1, 253, 3, 253, 5762, 8, 253, 3, 253, 5764, 8, 253, 1, 254, 1, 254, 3, 254, 5768, 8, 254, 1, 255, 1, 255, 3, 255, 5772, 8, 255, 1, 256, 1, 256, 1, 256, 5, 256, 5777, 8, 256, 10, 256, 12, 256, 5780, 9, 256, 1, 257, 1, 257, 1, 257, 3, 257, 5785, 8, 257, 1, 257, 1, 257, 3, 257, 5789, 8, 257, 3, 257, 5791, 8, 257, 3, 257, 5793, 8, 257, 1, 257, 1, 257, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 3, 258, 5806, 8, 258, 1, 259, 1, 259, 1, 259, 1, 259, 5, 259, 5812, 8, 259, 10, 259, 12, 259, 5815, 9, 259, 1, 259, 1, 259, 1, 260, 1, 260, 1, 260, 3, 260, 5822, 8, 260, 1, 260, 1, 260, 1, 260, 1, 261, 1, 261, 1, 261, 1, 261, 5, 261, 5831, 8, 261, 10, 261, 12, 261, 5834, 9, 261, 1, 261, 1, 261, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 3, 262, 5843, 8, 262, 1, 263, 1, 263, 1, 263, 3, 263, 5848, 8, 263, 1, 263, 1, 263, 3, 263, 5852, 8, 263, 1, 263, 1, 263, 3, 263, 5856, 8, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 3, 263, 5863, 8, 263, 1, 263, 3, 263, 5866, 8, 263, 3, 263, 5868, 8, 263, 1, 264, 1, 264, 1, 264, 1, 264, 1, 265, 1, 265, 3, 265, 5876, 8, 265, 1, 265, 1, 265, 3, 265, 5880, 8, 265, 1, 266, 3, 266, 5883, 8, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5890, 8, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5897, 8, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5902, 8, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5909, 8, 266, 1, 266, 3, 266, 5912, 8, 266, 3, 266, 5914, 8, 266, 1, 266, 3, 266, 5917, 8, 266, 1, 267, 1, 267, 1, 267, 1, 267, 3, 267, 5923, 8, 267, 1, 267, 1, 267, 1, 267, 3, 267, 5928, 8, 267, 1, 267, 1, 267, 3, 267, 5932, 8, 267, 1, 268, 1, 268, 1, 268, 5, 268, 5937, 8, 268, 10, 268, 12, 268, 5940, 9, 268, 1, 269, 1, 269, 1, 269, 1, 270, 1, 270, 1, 270, 1, 271, 3, 271, 5949, 8, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 3, 271, 5956, 8, 271, 1, 271, 3, 271, 5959, 8, 271, 1, 271, 3, 271, 5962, 8, 271, 1, 272, 1, 272, 3, 272, 5966, 8, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 3, 272, 5977, 8, 272, 1, 272, 3, 272, 5980, 8, 272, 1, 272, 3, 272, 5983, 8, 272, 1, 272, 3, 272, 5986, 8, 272, 1, 273, 3, 273, 5989, 8, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 3, 273, 5996, 8, 273, 1, 273, 3, 273, 5999, 8, 273, 1, 273, 3, 273, 6002, 8, 273, 1, 274, 1, 274, 1, 274, 5, 274, 6007, 8, 274, 10, 274, 12, 274, 6010, 9, 274, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 6021, 8, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 6028, 8, 275, 3, 275, 6030, 8, 275, 1, 276, 1, 276, 1, 276, 3, 276, 6035, 8, 276, 1, 276, 1, 276, 1, 276, 5, 276, 6040, 8, 276, 10, 276, 12, 276, 6043, 9, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6048, 8, 276, 1, 276, 1, 276, 1, 276, 1, 277, 1, 277, 3, 277, 6055, 8, 277, 1, 278, 1, 278, 1, 278, 3, 278, 6060, 8, 278, 1, 278, 1, 278, 1, 279, 3, 279, 6065, 8, 279, 1, 279, 1, 279, 3, 279, 6069, 8, 279, 1, 279, 1, 279, 3, 279, 6073, 8, 279, 1, 279, 1, 279, 3, 279, 6077, 8, 279, 3, 279, 6079, 8, 279, 1, 280, 1, 280, 3, 280, 6083, 8, 280, 1, 281, 1, 281, 3, 281, 6087, 8, 281, 1, 281, 3, 281, 6090, 8, 281, 1, 281, 3, 281, 6093, 8, 281, 3, 281, 6095, 8, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 3, 281, 6105, 8, 281, 3, 281, 6107, 8, 281, 1, 281, 1, 281, 1, 281, 3, 281, 6112, 8, 281, 5, 281, 6114, 8, 281, 10, 281, 12, 281, 6117, 9, 281, 1, 282, 1, 282, 3, 282, 6121, 8, 282, 1, 283, 1, 283, 3, 283, 6125, 8, 283, 1, 283, 1, 283, 1, 283, 5, 283, 6130, 8, 283, 10, 283, 12, 283, 6133, 9, 283, 1, 284, 1, 284, 3, 284, 6137, 8, 284, 1, 284, 1, 284, 3, 284, 6141, 8, 284, 1, 284, 3, 284, 6144, 8, 284, 1, 284, 1, 284, 1, 284, 1, 284, 3, 284, 6150, 8, 284, 1, 284, 3, 284, 6153, 8, 284, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 3, 286, 6172, 8, 286, 1, 286, 1, 286, 1, 286, 1, 287, 1, 287, 3, 287, 6179, 8, 287, 1, 287, 1, 287, 3, 287, 6183, 8, 287, 1, 288, 3, 288, 6186, 8, 288, 1, 288, 1, 288, 3, 288, 6190, 8, 288, 1, 288, 1, 288, 3, 288, 6194, 8, 288, 1, 288, 3, 288, 6197, 8, 288, 1, 288, 3, 288, 6200, 8, 288, 1, 289, 1, 289, 1, 289, 3, 289, 6205, 8, 289, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 5, 290, 6212, 8, 290, 10, 290, 12, 290, 6215, 9, 290, 1, 291, 1, 291, 1, 291, 1, 291, 3, 291, 6221, 8, 291, 1, 291, 1, 291, 3, 291, 6225, 8, 291, 1, 292, 1, 292, 3, 292, 6229, 8, 292, 1, 292, 1, 292, 3, 292, 6233, 8, 292, 1, 292, 3, 292, 6236, 8, 292, 3, 292, 6238, 8, 292, 1, 293, 1, 293, 1, 293, 3, 293, 6243, 8, 293, 1, 293, 1, 293, 3, 293, 6247, 8, 293, 1, 294, 1, 294, 1, 294, 3, 294, 6252, 8, 294, 1, 294, 1, 294, 1, 294, 1, 294, 3, 294, 6258, 8, 294, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 3, 295, 6265, 8, 295, 1, 296, 1, 296, 1, 296, 3, 296, 6270, 8, 296, 1, 297, 1, 297, 1, 297, 3, 297, 6275, 8, 297, 1, 297, 1, 297, 1, 298, 1, 298, 1, 298, 5, 298, 6282, 8, 298, 10, 298, 12, 298, 6285, 9, 298, 1, 299, 1, 299, 1, 299, 1, 299, 3, 299, 6291, 8, 299, 1, 299, 1, 299, 1, 299, 1, 299, 5, 299, 6297, 8, 299, 10, 299, 12, 299, 6300, 9, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 3, 299, 6310, 8, 299, 1, 300, 1, 300, 1, 300, 3, 300, 6315, 8, 300, 1, 300, 1, 300, 3, 300, 6319, 8, 300, 1, 300, 3, 300, 6322, 8, 300, 1, 300, 1, 300, 3, 300, 6326, 8, 300, 1, 300, 1, 300, 1, 300, 3, 300, 6331, 8, 300, 4, 300, 6333, 8, 300, 11, 300, 12, 300, 6334, 1, 300, 1, 300, 1, 300, 3, 300, 6340, 8, 300, 1, 301, 1, 301, 1, 301, 1, 301, 5, 301, 6346, 8, 301, 10, 301, 12, 301, 6349, 9, 301, 1, 302, 1, 302, 1, 302, 1, 303, 1, 303, 1, 303, 5, 303, 6357, 8, 303, 10, 303, 12, 303, 6360, 9, 303, 1, 304, 1, 304, 3, 304, 6364, 8, 304, 1, 304, 1, 304, 3, 304, 6368, 8, 304, 1, 304, 3, 304, 6371, 8, 304, 1, 304, 3, 304, 6374, 8, 304, 3, 304, 6376, 8, 304, 1, 304, 3, 304, 6379, 8, 304, 1, 304, 3, 304, 6382, 8, 304, 1, 304, 3, 304, 6385, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6395, 8, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6400, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6406, 8, 304, 1, 304, 1, 304, 3, 304, 6410, 8, 304, 3, 304, 6412, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6419, 8, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6424, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 5, 304, 6430, 8, 304, 10, 304, 12, 304, 6433, 9, 304, 1, 305, 1, 305, 3, 305, 6437, 8, 305, 1, 305, 1, 305, 3, 305, 6441, 8, 305, 1, 305, 1, 305, 3, 305, 6445, 8, 305, 3, 305, 6447, 8, 305, 1, 306, 3, 306, 6450, 8, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 3, 306, 6457, 8, 306, 1, 307, 1, 307, 1, 307, 3, 307, 6462, 8, 307, 1, 307, 3, 307, 6465, 8, 307, 1, 307, 1, 307, 1, 307, 1, 307, 3, 307, 6471, 8, 307, 1, 308, 1, 308, 3, 308, 6475, 8, 308, 1, 309, 1, 309, 1, 309, 1, 309, 3, 309, 6481, 8, 309, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 3, 310, 6490, 8, 310, 1, 310, 1, 310, 1, 310, 1, 310, 3, 310, 6496, 8, 310, 3, 310, 6498, 8, 310, 1, 311, 1, 311, 1, 311, 3, 311, 6503, 8, 311, 1, 311, 3, 311, 6506, 8, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 3, 311, 6515, 8, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 3, 311, 6522, 8, 311, 3, 311, 6524, 8, 311, 1, 312, 1, 312, 1, 312, 5, 312, 6529, 8, 312, 10, 312, 12, 312, 6532, 9, 312, 1, 313, 1, 313, 3, 313, 6536, 8, 313, 1, 313, 3, 313, 6539, 8, 313, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 3, 314, 6549, 8, 314, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 5, 315, 6558, 8, 315, 10, 315, 12, 315, 6561, 9, 315, 1, 315, 1, 315, 3, 315, 6565, 8, 315, 1, 315, 1, 315, 3, 315, 6569, 8, 315, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 3, 316, 6577, 8, 316, 1, 317, 1, 317, 1, 317, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 3, 318, 6587, 8, 318, 1, 319, 1, 319, 1, 319, 5, 319, 6592, 8, 319, 10, 319, 12, 319, 6595, 9, 319, 1, 320, 1, 320, 1, 320, 3, 320, 6600, 8, 320, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 5, 321, 6609, 8, 321, 10, 321, 12, 321, 6612, 9, 321, 1, 321, 1, 321, 1, 321, 3, 321, 6617, 8, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 5, 321, 6625, 8, 321, 10, 321, 12, 321, 6628, 9, 321, 1, 321, 1, 321, 1, 322, 1, 322, 1, 322, 1, 322, 3, 322, 6636, 8, 322, 1, 322, 1, 322, 3, 322, 6640, 8, 322, 1, 322, 4, 322, 6643, 8, 322, 11, 322, 12, 322, 6644, 3, 322, 6647, 8, 322, 1, 322, 1, 322, 3, 322, 6651, 8, 322, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 3, 323, 6659, 8, 323, 1, 324, 3, 324, 6662, 8, 324, 1, 324, 1, 324, 1, 324, 3, 324, 6667, 8, 324, 1, 324, 5, 324, 6670, 8, 324, 10, 324, 12, 324, 6673, 9, 324, 1, 324, 1, 324, 1, 324, 1, 324, 3, 324, 6679, 8, 324, 3, 324, 6681, 8, 324, 1, 324, 1, 324, 1, 324, 1, 324, 3, 324, 6687, 8, 324, 1, 325, 1, 325, 3, 325, 6691, 8, 325, 1, 325, 3, 325, 6694, 8, 325, 1, 325, 1, 325, 1, 325, 3, 325, 6699, 8, 325, 1, 325, 3, 325, 6702, 8, 325, 3, 325, 6704, 8, 325, 1, 326, 1, 326, 1, 326, 1, 326, 3, 326, 6710, 8, 326, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 3, 327, 6719, 8, 327, 1, 327, 1, 327, 1, 327, 1, 327, 3, 327, 6725, 8, 327, 1, 327, 3, 327, 6728, 8, 327, 1, 328, 1, 328, 1, 328, 1, 328, 1, 329, 1, 329, 3, 329, 6736, 8, 329, 1, 329, 3, 329, 6739, 8, 329, 1, 330, 1, 330, 3, 330, 6743, 8, 330, 1, 330, 1, 330, 1, 330, 1, 330, 3, 330, 6749, 8, 330, 3, 330, 6751, 8, 330, 1, 330, 3, 330, 6754, 8, 330, 1, 331, 1, 331, 3, 331, 6758, 8, 331, 1, 331, 1, 331, 1, 331, 3, 331, 6763, 8, 331, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 3, 332, 6770, 8, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 3, 332, 6777, 8, 332, 3, 332, 6779, 8, 332, 1, 332, 1, 332, 1, 332, 1, 332, 3, 332, 6785, 8, 332, 3, 332, 6787, 8, 332, 1, 332, 1, 332, 1, 332, 3, 332, 6792, 8, 332, 3, 332, 6794, 8, 332, 1, 333, 1, 333, 3, 333, 6798, 8, 333, 1, 334, 1, 334, 1, 335, 1, 335, 1, 336, 1, 336, 1, 336, 3, 336, 6807, 8, 336, 1, 336, 1, 336, 3, 336, 6811, 8, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 5, 336, 6819, 8, 336, 10, 336, 12, 336, 6822, 9, 336, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 3, 337, 6835, 8, 337, 1, 337, 3, 337, 6838, 8, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 3, 337, 6846, 8, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 5, 337, 6853, 8, 337, 10, 337, 12, 337, 6856, 9, 337, 1, 337, 1, 337, 1, 337, 3, 337, 6861, 8, 337, 1, 337, 1, 337, 1, 337, 3, 337, 6866, 8, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 3, 337, 6874, 8, 337, 3, 337, 6876, 8, 337, 1, 337, 1, 337, 1, 337, 3, 337, 6881, 8, 337, 1, 337, 1, 337, 3, 337, 6885, 8, 337, 1, 337, 1, 337, 1, 337, 3, 337, 6890, 8, 337, 1, 337, 1, 337, 1, 337, 3, 337, 6895, 8, 337, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 6901, 8, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 5, 338, 6917, 8, 338, 10, 338, 12, 338, 6920, 9, 338, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6928, 8, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6943, 8, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6948, 8, 339, 1, 339, 3, 339, 6951, 8, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6957, 8, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6962, 8, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6975, 8, 339, 1, 339, 4, 339, 6978, 8, 339, 11, 339, 12, 339, 6979, 1, 339, 1, 339, 3, 339, 6984, 8, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6991, 8, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 7010, 8, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 7022, 8, 339, 1, 339, 1, 339, 1, 339, 3, 339, 7027, 8, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 7035, 8, 339, 5, 339, 7037, 8, 339, 10, 339, 12, 339, 7040, 9, 339, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 3, 340, 7048, 8, 340, 1, 340, 3, 340, 7051, 8, 340, 1, 340, 1, 340, 1, 340, 3, 340, 7056, 8, 340, 1, 340, 1, 340, 1, 340, 3, 340, 7061, 8, 340, 1, 340, 3, 340, 7064, 8, 340, 1, 340, 1, 340, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 3, 341, 7075, 8, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 3, 341, 7083, 8, 341, 1, 341, 1, 341, 1, 341, 3, 341, 7088, 8, 341, 3, 341, 7090, 8, 341, 1, 341, 3, 341, 7093, 8, 341, 1, 342, 1, 342, 3, 342, 7097, 8, 342, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7108, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7129, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7137, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7150, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7160, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7166, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7172, 8, 343, 1, 343, 3, 343, 7175, 8, 343, 1, 343, 3, 343, 7178, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7204, 8, 343, 3, 343, 7206, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7227, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7237, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7250, 8, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7255, 8, 343, 1, 343, 1, 343, 3, 343, 7259, 8, 343, 3, 343, 7261, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7273, 8, 343, 1, 344, 1, 344, 1, 344, 5, 344, 7278, 8, 344, 10, 344, 12, 344, 7281, 9, 344, 1, 345, 1, 345, 1, 345, 3, 345, 7286, 8, 345, 1, 346, 1, 346, 1, 347, 1, 347, 3, 347, 7292, 8, 347, 1, 347, 1, 347, 3, 347, 7296, 8, 347, 1, 348, 1, 348, 1, 348, 1, 349, 1, 349, 1, 349, 1, 349, 5, 349, 7305, 8, 349, 10, 349, 12, 349, 7308, 9, 349, 1, 350, 1, 350, 1, 350, 1, 351, 1, 351, 1, 351, 1, 351, 1, 352, 1, 352, 1, 352, 3, 352, 7320, 8, 352, 1, 353, 1, 353, 3, 353, 7324, 8, 353, 1, 353, 1, 353, 1, 353, 3, 353, 7329, 8, 353, 1, 353, 3, 353, 7332, 8, 353, 1, 353, 3, 353, 7335, 8, 353, 1, 353, 1, 353, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 3, 354, 7344, 8, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 3, 354, 7355, 8, 354, 3, 354, 7357, 8, 354, 1, 355, 1, 355, 3, 355, 7361, 8, 355, 1, 355, 1, 355, 1, 355, 3, 355, 7366, 8, 355, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 3, 356, 7375, 8, 356, 1, 357, 1, 357, 1, 357, 3, 357, 7380, 8, 357, 1, 357, 1, 357, 1, 358, 1, 358, 1, 359, 1, 359, 3, 359, 7388, 8, 359, 1, 360, 1, 360, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 3, 361, 7398, 8, 361, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 3, 362, 7406, 8, 362, 1, 363, 1, 363, 3, 363, 7410, 8, 363, 1, 363, 3, 363, 7413, 8, 363, 1, 364, 1, 364, 1, 364, 5, 364, 7418, 8, 364, 10, 364, 12, 364, 7421, 9, 364, 1, 365, 1, 365, 1, 366, 1, 366, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 3, 367, 7432, 8, 367, 1, 368, 1, 368, 3, 368, 7436, 8, 368, 1, 369, 1, 369, 1, 369, 5, 369, 7441, 8, 369, 10, 369, 12, 369, 7444, 9, 369, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 3, 370, 7451, 8, 370, 3, 370, 7453, 8, 370, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 5, 371, 7460, 8, 371, 10, 371, 12, 371, 7463, 9, 371, 3, 371, 7465, 8, 371, 1, 371, 1, 371, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 3, 372, 7477, 8, 372, 1, 373, 1, 373, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 3, 374, 7486, 8, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 3, 374, 7493, 8, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 3, 374, 7502, 8, 374, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 376, 1, 376, 1, 376, 3, 376, 7512, 8, 376, 1, 376, 1, 376, 1, 376, 3, 376, 7517, 8, 376, 1, 376, 1, 376, 3, 376, 7521, 8, 376, 3, 376, 7523, 8, 376, 1, 376, 3, 376, 7526, 8, 376, 1, 377, 4, 377, 7529, 8, 377, 11, 377, 12, 377, 7530, 1, 378, 5, 378, 7534, 8, 378, 10, 378, 12, 378, 7537, 9, 378, 1, 379, 1, 379, 1, 379, 5, 379, 7542, 8, 379, 10, 379, 12, 379, 7545, 9, 379, 1, 380, 1, 380, 1, 380, 3, 380, 7550, 8, 380, 1, 380, 3, 380, 7553, 8, 380, 1, 380, 1, 380, 3, 380, 7557, 8, 380, 3, 380, 7559, 8, 380, 1, 381, 1, 381, 1, 381, 5, 381, 7564, 8, 381, 10, 381, 12, 381, 7567, 9, 381, 1, 381, 1, 381, 1, 382, 1, 382, 1, 382, 5, 382, 7574, 8, 382, 10, 382, 12, 382, 7577, 9, 382, 1, 383, 1, 383, 1, 383, 5, 383, 7582, 8, 383, 10, 383, 12, 383, 7585, 9, 383, 1, 384, 1, 384, 1, 384, 5, 384, 7590, 8, 384, 10, 384, 12, 384, 7593, 9, 384, 1, 385, 1, 385, 1, 385, 5, 385, 7598, 8, 385, 10, 385, 12, 385, 7601, 9, 385, 1, 386, 1, 386, 1, 387, 1, 387, 1, 388, 1, 388, 1, 389, 1, 389, 1, 390, 1, 390, 1, 391, 1, 391, 1, 392, 1, 392, 3, 392, 7617, 8, 392, 1, 393, 1, 393, 1, 393, 5, 393, 7622, 8, 393, 10, 393, 12, 393, 7625, 9, 393, 1, 394, 1, 394, 1, 394, 5, 394, 7630, 8, 394, 10, 394, 12, 394, 7633, 9, 394, 1, 395, 1, 395, 1, 396, 1, 396, 1, 397, 1, 397, 1, 398, 1, 398, 1, 399, 1, 399, 1, 400, 1, 400, 1, 400, 1, 400, 3, 400, 7649, 8, 400, 1, 401, 1, 401, 1, 401, 1, 401, 3, 401, 7655, 8, 401, 1, 402, 1, 402, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 1, 403, 3, 403, 7668, 8, 403, 3, 403, 7670, 8, 403, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 1, 404, 3, 404, 7681, 8, 404, 3, 404, 7683, 8, 404, 1, 405, 1, 405, 1, 406, 1, 406, 1, 406, 1, 406, 3, 406, 7691, 8, 406, 1, 407, 1, 407, 1, 407, 1, 407, 3, 407, 7697, 8, 407, 1, 408, 1, 408, 1, 408, 3, 408, 7702, 8, 408, 1, 409, 1, 409, 1, 409, 1, 409, 5, 409, 7708, 8, 409, 10, 409, 12, 409, 7711, 9, 409, 1, 409, 1, 409, 3, 409, 7715, 8, 409, 1, 410, 3, 410, 7718, 8, 410, 1, 410, 1, 410, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 3, 411, 7727, 8, 411, 1, 412, 1, 412, 1, 412, 5, 412, 7732, 8, 412, 10, 412, 12, 412, 7735, 9, 412, 1, 413, 1, 413, 3, 413, 7739, 8, 413, 1, 414, 1, 414, 3, 414, 7743, 8, 414, 1, 415, 1, 415, 1, 415, 3, 415, 7748, 8, 415, 1, 416, 1, 416, 1, 416, 1, 416, 3, 416, 7754, 8, 416, 1, 417, 1, 417, 1, 417, 3, 417, 7759, 8, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 1, 417, 3, 417, 7767, 8, 417, 1, 418, 1, 418, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 1, 419, 3, 419, 7822, 8, 419, 1, 420, 1, 420, 1, 421, 1, 421, 1, 422, 3, 422, 7829, 8, 422, 1, 422, 1, 422, 1, 422, 1, 422, 4, 422, 7835, 8, 422, 11, 422, 12, 422, 7836, 3, 422, 7839, 8, 422, 3, 422, 7841, 8, 422, 1, 422, 1, 422, 5, 422, 7845, 8, 422, 10, 422, 12, 422, 7848, 9, 422, 1, 422, 3, 422, 7851, 8, 422, 1, 422, 1, 422, 3, 422, 7855, 8, 422, 1, 423, 1, 423, 1, 423, 1, 423, 1, 424, 1, 424, 1, 424, 1, 424, 1, 424, 3, 424, 7866, 8, 424, 1, 424, 3, 424, 7869, 8, 424, 1, 424, 1, 424, 3, 424, 7873, 8, 424, 1, 424, 1, 424, 3, 424, 7877, 8, 424, 1, 424, 1, 424, 3, 424, 7881, 8, 424, 1, 424, 3, 424, 7884, 8, 424, 1, 424, 3, 424, 7887, 8, 424, 1, 424, 3, 424, 7890, 8, 424, 1, 424, 1, 424, 1, 424, 1, 424, 1, 424, 5, 424, 7897, 8, 424, 10, 424, 12, 424, 7900, 9, 424, 1, 424, 1, 424, 3, 424, 7904, 8, 424, 1, 424, 1, 424, 3, 424, 7908, 8, 424, 1, 424, 1, 424, 1, 425, 1, 425, 1, 425, 1, 426, 1, 426, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 1, 427, 3, 427, 7941, 8, 427, 1, 428, 1, 428, 1, 428, 1, 428, 1, 429, 1, 429, 1, 429, 1, 429, 3, 429, 7951, 8, 429, 1, 429, 1, 429, 3, 429, 7955, 8, 429, 1, 429, 1, 429, 1, 429, 1, 429, 3, 429, 7961, 8, 429, 1, 429, 1, 429, 1, 429, 3, 429, 7966, 8, 429, 1, 430, 1, 430, 1, 430, 1, 430, 1, 430, 1, 431, 1, 431, 3, 431, 7975, 8, 431, 1, 431, 1, 431, 1, 431, 1, 431, 5, 431, 7981, 8, 431, 10, 431, 12, 431, 7984, 9, 431, 1, 431, 1, 431, 1, 432, 1, 432, 1, 432, 1, 432, 1, 433, 1, 433, 3, 433, 7994, 8, 433, 1, 433, 1, 433, 1, 433, 1, 433, 5, 433, 8000, 8, 433, 10, 433, 12, 433, 8003, 9, 433, 1, 434, 1, 434, 1, 434, 1, 434, 5, 434, 8009, 8, 434, 10, 434, 12, 434, 8012, 9, 434, 1, 434, 1, 434, 1, 434, 1, 434, 5, 434, 8018, 8, 434, 10, 434, 12, 434, 8021, 9, 434, 5, 434, 8023, 8, 434, 10, 434, 12, 434, 8026, 9, 434, 1, 434, 3, 434, 8029, 8, 434, 1, 434, 1, 434, 1, 434, 1, 434, 1, 435, 1, 435, 5, 435, 8037, 8, 435, 10, 435, 12, 435, 8040, 9, 435, 1, 436, 1, 436, 3, 436, 8044, 8, 436, 1, 436, 1, 436, 1, 436, 1, 436, 5, 436, 8050, 8, 436, 10, 436, 12, 436, 8053, 9, 436, 4, 436, 8055, 8, 436, 11, 436, 12, 436, 8056, 1, 436, 3, 436, 8060, 8, 436, 1, 436, 1, 436, 1, 436, 1, 436, 1, 437, 3, 437, 8067, 8, 437, 1, 437, 1, 437, 1, 437, 1, 437, 3, 437, 8073, 8, 437, 1, 437, 1, 437, 1, 438, 1, 438, 1, 438, 1, 438, 3, 438, 8081, 8, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 3, 438, 8089, 8, 438, 1, 438, 3, 438, 8092, 8, 438, 1, 438, 1, 438, 1, 438, 1, 438, 1, 438, 3, 438, 8099, 8, 438, 3, 438, 8101, 8, 438, 1, 439, 3, 439, 8104, 8, 439, 1, 439, 1, 439, 1, 439, 1, 439, 3, 439, 8110, 8, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 440, 1, 440, 3, 440, 8119, 8, 440, 1, 440, 1, 440, 3, 440, 8123, 8, 440, 1, 440, 1, 440, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 1, 441, 3, 441, 8137, 8, 441, 1, 441, 3, 441, 8140, 8, 441, 3, 441, 8142, 8, 441, 1, 441, 1, 441, 1, 442, 1, 442, 3, 442, 8148, 8, 442, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 4, 442, 8156, 8, 442, 11, 442, 12, 442, 8157, 3, 442, 8160, 8, 442, 3, 442, 8162, 8, 442, 1, 442, 1, 442, 1, 442, 1, 442, 5, 442, 8168, 8, 442, 10, 442, 12, 442, 8171, 9, 442, 3, 442, 8173, 8, 442, 1, 442, 3, 442, 8176, 8, 442, 1, 443, 1, 443, 1, 443, 1, 443, 1, 444, 1, 444, 1, 444, 1, 444, 3, 444, 8186, 8, 444, 1, 444, 1, 444, 1, 445, 1, 445, 5, 445, 8192, 8, 445, 10, 445, 12, 445, 8195, 9, 445, 1, 445, 1, 445, 1, 445, 3, 445, 8200, 8, 445, 1, 445, 1, 445, 1, 446, 1, 446, 3, 446, 8206, 8, 446, 1, 446, 1, 446, 1, 447, 1, 447, 1, 447, 3, 447, 8213, 8, 447, 1, 447, 1, 447, 3, 447, 8217, 8, 447, 1, 447, 1, 447, 3, 447, 8221, 8, 447, 1, 447, 3, 447, 8224, 8, 447, 1, 447, 3, 447, 8227, 8, 447, 1, 447, 1, 447, 1, 448, 1, 448, 3, 448, 8233, 8, 448, 1, 448, 1, 448, 1, 449, 1, 449, 1, 449, 3, 449, 8240, 8, 449, 1, 449, 3, 449, 8243, 8, 449, 1, 449, 1, 449, 1, 449, 1, 449, 1, 449, 1, 449, 3, 449, 8251, 8, 449, 3, 449, 8253, 8, 449, 1, 449, 1, 449, 1, 449, 1, 449, 1, 449, 5, 449, 8260, 8, 449, 10, 449, 12, 449, 8263, 9, 449, 1, 449, 1, 449, 3, 449, 8267, 8, 449, 3, 449, 8269, 8, 449, 1, 449, 1, 449, 1, 450, 1, 450, 1, 450, 3, 450, 8276, 8, 450, 1, 450, 1, 450, 1, 451, 1, 451, 3, 451, 8282, 8, 451, 1, 451, 3, 451, 8285, 8, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 451, 1, 452, 1, 452, 1, 452, 1, 452, 1, 452, 3, 452, 8297, 8, 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, 452, 3, 452, 8304, 8, 452, 3, 452, 8306, 8, 452, 1, 453, 1, 453, 3, 453, 8310, 8, 453, 1, 453, 1, 453, 1, 453, 1, 454, 3, 454, 8316, 8, 454, 1, 454, 1, 454, 1, 454, 3, 454, 8321, 8, 454, 1, 454, 1, 454, 3, 454, 8325, 8, 454, 1, 454, 3, 454, 8328, 8, 454, 1, 454, 3, 454, 8331, 8, 454, 1, 454, 1, 454, 1, 454, 1, 454, 1, 454, 4, 454, 8338, 8, 454, 11, 454, 12, 454, 8339, 1, 454, 3, 454, 8343, 8, 454, 1, 455, 3, 455, 8346, 8, 455, 1, 455, 1, 455, 3, 455, 8350, 8, 455, 1, 455, 1, 455, 3, 455, 8354, 8, 455, 3, 455, 8356, 8, 455, 1, 455, 3, 455, 8359, 8, 455, 1, 455, 3, 455, 8362, 8, 455, 1, 456, 1, 456, 1, 456, 1, 456, 3, 456, 8368, 8, 456, 1, 456, 1, 456, 1, 456, 1, 456, 1, 456, 3, 456, 8375, 8, 456, 1, 456, 1, 456, 1, 456, 1, 456, 1, 456, 3, 456, 8382, 8, 456, 1, 456, 1, 456, 1, 456, 1, 456, 3, 456, 8388, 8, 456, 3, 456, 8390, 8, 456, 1, 457, 1, 457, 3, 457, 8394, 8, 457, 1, 457, 1, 457, 1, 457, 3, 457, 8399, 8, 457, 1, 457, 1, 457, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 1, 458, 5, 458, 8415, 8, 458, 10, 458, 12, 458, 8418, 9, 458, 1, 458, 1, 458, 4, 458, 8422, 8, 458, 11, 458, 12, 458, 8423, 1, 459, 1, 459, 1, 459, 1, 459, 1, 459, 5, 459, 8431, 8, 459, 10, 459, 12, 459, 8434, 9, 459, 1, 459, 1, 459, 1, 459, 1, 459, 3, 459, 8440, 8, 459, 1, 460, 1, 460, 3, 460, 8444, 8, 460, 1, 461, 1, 461, 1, 461, 1, 461, 1, 462, 1, 462, 1, 462, 1, 463, 1, 463, 1, 463, 3, 463, 8456, 8, 463, 1, 463, 3, 463, 8459, 8, 463, 1, 463, 1, 463, 1, 464, 1, 464, 1, 464, 1, 464, 1, 464, 1, 464, 1, 464, 1, 464, 1, 464, 3, 464, 8472, 8, 464, 1, 464, 3, 464, 8475, 8, 464, 1, 465, 1, 465, 3, 465, 8479, 8, 465, 1, 466, 1, 466, 1, 466, 1, 466, 1, 466, 5, 466, 8486, 8, 466, 10, 466, 12, 466, 8489, 9, 466, 1, 466, 1, 466, 5, 466, 8493, 8, 466, 10, 466, 12, 466, 8496, 9, 466, 4, 466, 8498, 8, 466, 11, 466, 12, 466, 8499, 1, 467, 1, 467, 1, 467, 3, 467, 8505, 8, 467, 1, 468, 1, 468, 3, 468, 8509, 8, 468, 1, 469, 3, 469, 8512, 8, 469, 1, 469, 3, 469, 8515, 8, 469, 1, 469, 3, 469, 8518, 8, 469, 1, 469, 3, 469, 8521, 8, 469, 1, 469, 3, 469, 8524, 8, 469, 1, 469, 3, 469, 8527, 8, 469, 1, 469, 3, 469, 8530, 8, 469, 1, 469, 0, 3, 672, 676, 678, 470, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 400, 402, 404, 406, 408, 410, 412, 414, 416, 418, 420, 422, 424, 426, 428, 430, 432, 434, 436, 438, 440, 442, 444, 446, 448, 450, 452, 454, 456, 458, 460, 462, 464, 466, 468, 470, 472, 474, 476, 478, 480, 482, 484, 486, 488, 490, 492, 494, 496, 498, 500, 502, 504, 506, 508, 510, 512, 514, 516, 518, 520, 522, 524, 526, 528, 530, 532, 534, 536, 538, 540, 542, 544, 546, 548, 550, 552, 554, 556, 558, 560, 562, 564, 566, 568, 570, 572, 574, 576, 578, 580, 582, 584, 586, 588, 590, 592, 594, 596, 598, 600, 602, 604, 606, 608, 610, 612, 614, 616, 618, 620, 622, 624, 626, 628, 630, 632, 634, 636, 638, 640, 642, 644, 646, 648, 650, 652, 654, 656, 658, 660, 662, 664, 666, 668, 670, 672, 674, 676, 678, 680, 682, 684, 686, 688, 690, 692, 694, 696, 698, 700, 702, 704, 706, 708, 710, 712, 714, 716, 718, 720, 722, 724, 726, 728, 730, 732, 734, 736, 738, 740, 742, 744, 746, 748, 750, 752, 754, 756, 758, 760, 762, 764, 766, 768, 770, 772, 774, 776, 778, 780, 782, 784, 786, 788, 790, 792, 794, 796, 798, 800, 802, 804, 806, 808, 810, 812, 814, 816, 818, 820, 822, 824, 826, 828, 830, 832, 834, 836, 838, 840, 842, 844, 846, 848, 850, 852, 854, 856, 858, 860, 862, 864, 866, 868, 870, 872, 874, 876, 878, 880, 882, 884, 886, 888, 890, 892, 894, 896, 898, 900, 902, 904, 906, 908, 910, 912, 914, 916, 918, 920, 922, 924, 926, 928, 930, 932, 934, 936, 938, 0, 119, 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, 1, 0, 549, 551, 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, 574, 574, 576, 576, 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, 9970, 0, 943, 1, 0, 0, 0, 2, 948, 1, 0, 0, 0, 4, 1072, 1, 0, 0, 0, 6, 1074, 1, 0, 0, 0, 8, 1077, 1, 0, 0, 0, 10, 1127, 1, 0, 0, 0, 12, 1137, 1, 0, 0, 0, 14, 1139, 1, 0, 0, 0, 16, 1151, 1, 0, 0, 0, 18, 1163, 1, 0, 0, 0, 20, 1174, 1, 0, 0, 0, 22, 1208, 1, 0, 0, 0, 24, 1252, 1, 0, 0, 0, 26, 1254, 1, 0, 0, 0, 28, 1266, 1, 0, 0, 0, 30, 1273, 1, 0, 0, 0, 32, 1292, 1, 0, 0, 0, 34, 1300, 1, 0, 0, 0, 36, 1302, 1, 0, 0, 0, 38, 1316, 1, 0, 0, 0, 40, 1320, 1, 0, 0, 0, 42, 1357, 1, 0, 0, 0, 44, 1359, 1, 0, 0, 0, 46, 1367, 1, 0, 0, 0, 48, 1377, 1, 0, 0, 0, 50, 1384, 1, 0, 0, 0, 52, 1392, 1, 0, 0, 0, 54, 1398, 1, 0, 0, 0, 56, 1414, 1, 0, 0, 0, 58, 1418, 1, 0, 0, 0, 60, 1420, 1, 0, 0, 0, 62, 1432, 1, 0, 0, 0, 64, 1437, 1, 0, 0, 0, 66, 1442, 1, 0, 0, 0, 68, 1444, 1, 0, 0, 0, 70, 1456, 1, 0, 0, 0, 72, 1464, 1, 0, 0, 0, 74, 1466, 1, 0, 0, 0, 76, 1586, 1, 0, 0, 0, 78, 1588, 1, 0, 0, 0, 80, 1602, 1, 0, 0, 0, 82, 1604, 1, 0, 0, 0, 84, 1841, 1, 0, 0, 0, 86, 1848, 1, 0, 0, 0, 88, 1850, 1, 0, 0, 0, 90, 1852, 1, 0, 0, 0, 92, 1855, 1, 0, 0, 0, 94, 1866, 1, 0, 0, 0, 96, 1869, 1, 0, 0, 0, 98, 1899, 1, 0, 0, 0, 100, 1901, 1, 0, 0, 0, 102, 1942, 1, 0, 0, 0, 104, 1944, 1, 0, 0, 0, 106, 1998, 1, 0, 0, 0, 108, 2044, 1, 0, 0, 0, 110, 2065, 1, 0, 0, 0, 112, 2067, 1, 0, 0, 0, 114, 2084, 1, 0, 0, 0, 116, 2165, 1, 0, 0, 0, 118, 2167, 1, 0, 0, 0, 120, 2178, 1, 0, 0, 0, 122, 2201, 1, 0, 0, 0, 124, 2219, 1, 0, 0, 0, 126, 2221, 1, 0, 0, 0, 128, 2256, 1, 0, 0, 0, 130, 2349, 1, 0, 0, 0, 132, 2354, 1, 0, 0, 0, 134, 2356, 1, 0, 0, 0, 136, 2454, 1, 0, 0, 0, 138, 2456, 1, 0, 0, 0, 140, 2460, 1, 0, 0, 0, 142, 2471, 1, 0, 0, 0, 144, 2479, 1, 0, 0, 0, 146, 2482, 1, 0, 0, 0, 148, 2485, 1, 0, 0, 0, 150, 2503, 1, 0, 0, 0, 152, 2505, 1, 0, 0, 0, 154, 2509, 1, 0, 0, 0, 156, 2522, 1, 0, 0, 0, 158, 2524, 1, 0, 0, 0, 160, 2529, 1, 0, 0, 0, 162, 2549, 1, 0, 0, 0, 164, 2557, 1, 0, 0, 0, 166, 2564, 1, 0, 0, 0, 168, 2566, 1, 0, 0, 0, 170, 2575, 1, 0, 0, 0, 172, 2578, 1, 0, 0, 0, 174, 2582, 1, 0, 0, 0, 176, 2586, 1, 0, 0, 0, 178, 2611, 1, 0, 0, 0, 180, 2621, 1, 0, 0, 0, 182, 2635, 1, 0, 0, 0, 184, 2651, 1, 0, 0, 0, 186, 2657, 1, 0, 0, 0, 188, 2684, 1, 0, 0, 0, 190, 2694, 1, 0, 0, 0, 192, 2710, 1, 0, 0, 0, 194, 2754, 1, 0, 0, 0, 196, 2761, 1, 0, 0, 0, 198, 2763, 1, 0, 0, 0, 200, 2789, 1, 0, 0, 0, 202, 2800, 1, 0, 0, 0, 204, 2819, 1, 0, 0, 0, 206, 2830, 1, 0, 0, 0, 208, 2868, 1, 0, 0, 0, 210, 2889, 1, 0, 0, 0, 212, 2891, 1, 0, 0, 0, 214, 2911, 1, 0, 0, 0, 216, 2923, 1, 0, 0, 0, 218, 2935, 1, 0, 0, 0, 220, 2938, 1, 0, 0, 0, 222, 2941, 1, 0, 0, 0, 224, 2961, 1, 0, 0, 0, 226, 2966, 1, 0, 0, 0, 228, 3015, 1, 0, 0, 0, 230, 3017, 1, 0, 0, 0, 232, 3040, 1, 0, 0, 0, 234, 3056, 1, 0, 0, 0, 236, 3068, 1, 0, 0, 0, 238, 3095, 1, 0, 0, 0, 240, 3110, 1, 0, 0, 0, 242, 3173, 1, 0, 0, 0, 244, 3175, 1, 0, 0, 0, 246, 3180, 1, 0, 0, 0, 248, 3186, 1, 0, 0, 0, 250, 3273, 1, 0, 0, 0, 252, 3279, 1, 0, 0, 0, 254, 3281, 1, 0, 0, 0, 256, 3297, 1, 0, 0, 0, 258, 3299, 1, 0, 0, 0, 260, 3308, 1, 0, 0, 0, 262, 3312, 1, 0, 0, 0, 264, 3325, 1, 0, 0, 0, 266, 3337, 1, 0, 0, 0, 268, 3339, 1, 0, 0, 0, 270, 3361, 1, 0, 0, 0, 272, 3373, 1, 0, 0, 0, 274, 3384, 1, 0, 0, 0, 276, 3475, 1, 0, 0, 0, 278, 3477, 1, 0, 0, 0, 280, 3488, 1, 0, 0, 0, 282, 3499, 1, 0, 0, 0, 284, 3501, 1, 0, 0, 0, 286, 3527, 1, 0, 0, 0, 288, 3529, 1, 0, 0, 0, 290, 3533, 1, 0, 0, 0, 292, 3583, 1, 0, 0, 0, 294, 3585, 1, 0, 0, 0, 296, 3591, 1, 0, 0, 0, 298, 3616, 1, 0, 0, 0, 300, 3620, 1, 0, 0, 0, 302, 3834, 1, 0, 0, 0, 304, 3852, 1, 0, 0, 0, 306, 3878, 1, 0, 0, 0, 308, 3880, 1, 0, 0, 0, 310, 3888, 1, 0, 0, 0, 312, 3894, 1, 0, 0, 0, 314, 3898, 1, 0, 0, 0, 316, 3918, 1, 0, 0, 0, 318, 3924, 1, 0, 0, 0, 320, 3991, 1, 0, 0, 0, 322, 4022, 1, 0, 0, 0, 324, 4068, 1, 0, 0, 0, 326, 4070, 1, 0, 0, 0, 328, 4072, 1, 0, 0, 0, 330, 4083, 1, 0, 0, 0, 332, 4120, 1, 0, 0, 0, 334, 4122, 1, 0, 0, 0, 336, 4128, 1, 0, 0, 0, 338, 4178, 1, 0, 0, 0, 340, 4181, 1, 0, 0, 0, 342, 4195, 1, 0, 0, 0, 344, 4216, 1, 0, 0, 0, 346, 4240, 1, 0, 0, 0, 348, 4281, 1, 0, 0, 0, 350, 4283, 1, 0, 0, 0, 352, 4285, 1, 0, 0, 0, 354, 4325, 1, 0, 0, 0, 356, 4342, 1, 0, 0, 0, 358, 4362, 1, 0, 0, 0, 360, 4415, 1, 0, 0, 0, 362, 4418, 1, 0, 0, 0, 364, 4424, 1, 0, 0, 0, 366, 4432, 1, 0, 0, 0, 368, 4445, 1, 0, 0, 0, 370, 4447, 1, 0, 0, 0, 372, 4460, 1, 0, 0, 0, 374, 4462, 1, 0, 0, 0, 376, 4475, 1, 0, 0, 0, 378, 4485, 1, 0, 0, 0, 380, 4496, 1, 0, 0, 0, 382, 4507, 1, 0, 0, 0, 384, 4509, 1, 0, 0, 0, 386, 4514, 1, 0, 0, 0, 388, 4528, 1, 0, 0, 0, 390, 4560, 1, 0, 0, 0, 392, 4597, 1, 0, 0, 0, 394, 4599, 1, 0, 0, 0, 396, 4602, 1, 0, 0, 0, 398, 4605, 1, 0, 0, 0, 400, 4622, 1, 0, 0, 0, 402, 4643, 1, 0, 0, 0, 404, 4659, 1, 0, 0, 0, 406, 4675, 1, 0, 0, 0, 408, 4697, 1, 0, 0, 0, 410, 4702, 1, 0, 0, 0, 412, 4705, 1, 0, 0, 0, 414, 4713, 1, 0, 0, 0, 416, 4738, 1, 0, 0, 0, 418, 4741, 1, 0, 0, 0, 420, 4769, 1, 0, 0, 0, 422, 4774, 1, 0, 0, 0, 424, 4814, 1, 0, 0, 0, 426, 5026, 1, 0, 0, 0, 428, 5028, 1, 0, 0, 0, 430, 5116, 1, 0, 0, 0, 432, 5118, 1, 0, 0, 0, 434, 5124, 1, 0, 0, 0, 436, 5135, 1, 0, 0, 0, 438, 5145, 1, 0, 0, 0, 440, 5225, 1, 0, 0, 0, 442, 5227, 1, 0, 0, 0, 444, 5241, 1, 0, 0, 0, 446, 5263, 1, 0, 0, 0, 448, 5336, 1, 0, 0, 0, 450, 5338, 1, 0, 0, 0, 452, 5379, 1, 0, 0, 0, 454, 5381, 1, 0, 0, 0, 456, 5386, 1, 0, 0, 0, 458, 5389, 1, 0, 0, 0, 460, 5392, 1, 0, 0, 0, 462, 5442, 1, 0, 0, 0, 464, 5444, 1, 0, 0, 0, 466, 5455, 1, 0, 0, 0, 468, 5457, 1, 0, 0, 0, 470, 5467, 1, 0, 0, 0, 472, 5502, 1, 0, 0, 0, 474, 5505, 1, 0, 0, 0, 476, 5526, 1, 0, 0, 0, 478, 5536, 1, 0, 0, 0, 480, 5556, 1, 0, 0, 0, 482, 5562, 1, 0, 0, 0, 484, 5568, 1, 0, 0, 0, 486, 5573, 1, 0, 0, 0, 488, 5586, 1, 0, 0, 0, 490, 5613, 1, 0, 0, 0, 492, 5661, 1, 0, 0, 0, 494, 5663, 1, 0, 0, 0, 496, 5701, 1, 0, 0, 0, 498, 5703, 1, 0, 0, 0, 500, 5724, 1, 0, 0, 0, 502, 5744, 1, 0, 0, 0, 504, 5748, 1, 0, 0, 0, 506, 5763, 1, 0, 0, 0, 508, 5765, 1, 0, 0, 0, 510, 5769, 1, 0, 0, 0, 512, 5773, 1, 0, 0, 0, 514, 5781, 1, 0, 0, 0, 516, 5805, 1, 0, 0, 0, 518, 5807, 1, 0, 0, 0, 520, 5818, 1, 0, 0, 0, 522, 5826, 1, 0, 0, 0, 524, 5842, 1, 0, 0, 0, 526, 5867, 1, 0, 0, 0, 528, 5869, 1, 0, 0, 0, 530, 5873, 1, 0, 0, 0, 532, 5882, 1, 0, 0, 0, 534, 5922, 1, 0, 0, 0, 536, 5933, 1, 0, 0, 0, 538, 5941, 1, 0, 0, 0, 540, 5944, 1, 0, 0, 0, 542, 5948, 1, 0, 0, 0, 544, 5963, 1, 0, 0, 0, 546, 5988, 1, 0, 0, 0, 548, 6003, 1, 0, 0, 0, 550, 6029, 1, 0, 0, 0, 552, 6031, 1, 0, 0, 0, 554, 6054, 1, 0, 0, 0, 556, 6056, 1, 0, 0, 0, 558, 6064, 1, 0, 0, 0, 560, 6082, 1, 0, 0, 0, 562, 6106, 1, 0, 0, 0, 564, 6118, 1, 0, 0, 0, 566, 6122, 1, 0, 0, 0, 568, 6134, 1, 0, 0, 0, 570, 6154, 1, 0, 0, 0, 572, 6162, 1, 0, 0, 0, 574, 6176, 1, 0, 0, 0, 576, 6199, 1, 0, 0, 0, 578, 6201, 1, 0, 0, 0, 580, 6206, 1, 0, 0, 0, 582, 6216, 1, 0, 0, 0, 584, 6237, 1, 0, 0, 0, 586, 6239, 1, 0, 0, 0, 588, 6248, 1, 0, 0, 0, 590, 6259, 1, 0, 0, 0, 592, 6269, 1, 0, 0, 0, 594, 6271, 1, 0, 0, 0, 596, 6278, 1, 0, 0, 0, 598, 6309, 1, 0, 0, 0, 600, 6339, 1, 0, 0, 0, 602, 6341, 1, 0, 0, 0, 604, 6350, 1, 0, 0, 0, 606, 6353, 1, 0, 0, 0, 608, 6411, 1, 0, 0, 0, 610, 6446, 1, 0, 0, 0, 612, 6449, 1, 0, 0, 0, 614, 6470, 1, 0, 0, 0, 616, 6472, 1, 0, 0, 0, 618, 6480, 1, 0, 0, 0, 620, 6497, 1, 0, 0, 0, 622, 6523, 1, 0, 0, 0, 624, 6525, 1, 0, 0, 0, 626, 6533, 1, 0, 0, 0, 628, 6540, 1, 0, 0, 0, 630, 6564, 1, 0, 0, 0, 632, 6570, 1, 0, 0, 0, 634, 6578, 1, 0, 0, 0, 636, 6581, 1, 0, 0, 0, 638, 6588, 1, 0, 0, 0, 640, 6596, 1, 0, 0, 0, 642, 6601, 1, 0, 0, 0, 644, 6631, 1, 0, 0, 0, 646, 6658, 1, 0, 0, 0, 648, 6686, 1, 0, 0, 0, 650, 6703, 1, 0, 0, 0, 652, 6709, 1, 0, 0, 0, 654, 6727, 1, 0, 0, 0, 656, 6729, 1, 0, 0, 0, 658, 6733, 1, 0, 0, 0, 660, 6750, 1, 0, 0, 0, 662, 6755, 1, 0, 0, 0, 664, 6793, 1, 0, 0, 0, 666, 6795, 1, 0, 0, 0, 668, 6799, 1, 0, 0, 0, 670, 6801, 1, 0, 0, 0, 672, 6810, 1, 0, 0, 0, 674, 6894, 1, 0, 0, 0, 676, 6900, 1, 0, 0, 0, 678, 7009, 1, 0, 0, 0, 680, 7041, 1, 0, 0, 0, 682, 7092, 1, 0, 0, 0, 684, 7096, 1, 0, 0, 0, 686, 7272, 1, 0, 0, 0, 688, 7274, 1, 0, 0, 0, 690, 7282, 1, 0, 0, 0, 692, 7287, 1, 0, 0, 0, 694, 7289, 1, 0, 0, 0, 696, 7297, 1, 0, 0, 0, 698, 7300, 1, 0, 0, 0, 700, 7309, 1, 0, 0, 0, 702, 7312, 1, 0, 0, 0, 704, 7316, 1, 0, 0, 0, 706, 7321, 1, 0, 0, 0, 708, 7338, 1, 0, 0, 0, 710, 7365, 1, 0, 0, 0, 712, 7374, 1, 0, 0, 0, 714, 7376, 1, 0, 0, 0, 716, 7383, 1, 0, 0, 0, 718, 7387, 1, 0, 0, 0, 720, 7389, 1, 0, 0, 0, 722, 7397, 1, 0, 0, 0, 724, 7405, 1, 0, 0, 0, 726, 7412, 1, 0, 0, 0, 728, 7414, 1, 0, 0, 0, 730, 7422, 1, 0, 0, 0, 732, 7424, 1, 0, 0, 0, 734, 7431, 1, 0, 0, 0, 736, 7435, 1, 0, 0, 0, 738, 7437, 1, 0, 0, 0, 740, 7452, 1, 0, 0, 0, 742, 7454, 1, 0, 0, 0, 744, 7476, 1, 0, 0, 0, 746, 7478, 1, 0, 0, 0, 748, 7501, 1, 0, 0, 0, 750, 7503, 1, 0, 0, 0, 752, 7525, 1, 0, 0, 0, 754, 7528, 1, 0, 0, 0, 756, 7535, 1, 0, 0, 0, 758, 7538, 1, 0, 0, 0, 760, 7558, 1, 0, 0, 0, 762, 7565, 1, 0, 0, 0, 764, 7570, 1, 0, 0, 0, 766, 7578, 1, 0, 0, 0, 768, 7586, 1, 0, 0, 0, 770, 7594, 1, 0, 0, 0, 772, 7602, 1, 0, 0, 0, 774, 7604, 1, 0, 0, 0, 776, 7606, 1, 0, 0, 0, 778, 7608, 1, 0, 0, 0, 780, 7610, 1, 0, 0, 0, 782, 7612, 1, 0, 0, 0, 784, 7614, 1, 0, 0, 0, 786, 7618, 1, 0, 0, 0, 788, 7626, 1, 0, 0, 0, 790, 7634, 1, 0, 0, 0, 792, 7636, 1, 0, 0, 0, 794, 7638, 1, 0, 0, 0, 796, 7640, 1, 0, 0, 0, 798, 7642, 1, 0, 0, 0, 800, 7648, 1, 0, 0, 0, 802, 7654, 1, 0, 0, 0, 804, 7656, 1, 0, 0, 0, 806, 7669, 1, 0, 0, 0, 808, 7682, 1, 0, 0, 0, 810, 7684, 1, 0, 0, 0, 812, 7690, 1, 0, 0, 0, 814, 7696, 1, 0, 0, 0, 816, 7698, 1, 0, 0, 0, 818, 7714, 1, 0, 0, 0, 820, 7717, 1, 0, 0, 0, 822, 7726, 1, 0, 0, 0, 824, 7728, 1, 0, 0, 0, 826, 7738, 1, 0, 0, 0, 828, 7742, 1, 0, 0, 0, 830, 7747, 1, 0, 0, 0, 832, 7753, 1, 0, 0, 0, 834, 7766, 1, 0, 0, 0, 836, 7768, 1, 0, 0, 0, 838, 7821, 1, 0, 0, 0, 840, 7823, 1, 0, 0, 0, 842, 7825, 1, 0, 0, 0, 844, 7828, 1, 0, 0, 0, 846, 7856, 1, 0, 0, 0, 848, 7860, 1, 0, 0, 0, 850, 7911, 1, 0, 0, 0, 852, 7914, 1, 0, 0, 0, 854, 7940, 1, 0, 0, 0, 856, 7942, 1, 0, 0, 0, 858, 7965, 1, 0, 0, 0, 860, 7967, 1, 0, 0, 0, 862, 7972, 1, 0, 0, 0, 864, 7987, 1, 0, 0, 0, 866, 7993, 1, 0, 0, 0, 868, 8004, 1, 0, 0, 0, 870, 8034, 1, 0, 0, 0, 872, 8041, 1, 0, 0, 0, 874, 8066, 1, 0, 0, 0, 876, 8076, 1, 0, 0, 0, 878, 8103, 1, 0, 0, 0, 880, 8116, 1, 0, 0, 0, 882, 8126, 1, 0, 0, 0, 884, 8145, 1, 0, 0, 0, 886, 8177, 1, 0, 0, 0, 888, 8181, 1, 0, 0, 0, 890, 8189, 1, 0, 0, 0, 892, 8203, 1, 0, 0, 0, 894, 8209, 1, 0, 0, 0, 896, 8230, 1, 0, 0, 0, 898, 8236, 1, 0, 0, 0, 900, 8275, 1, 0, 0, 0, 902, 8279, 1, 0, 0, 0, 904, 8305, 1, 0, 0, 0, 906, 8307, 1, 0, 0, 0, 908, 8315, 1, 0, 0, 0, 910, 8355, 1, 0, 0, 0, 912, 8389, 1, 0, 0, 0, 914, 8391, 1, 0, 0, 0, 916, 8402, 1, 0, 0, 0, 918, 8439, 1, 0, 0, 0, 920, 8443, 1, 0, 0, 0, 922, 8445, 1, 0, 0, 0, 924, 8449, 1, 0, 0, 0, 926, 8452, 1, 0, 0, 0, 928, 8474, 1, 0, 0, 0, 930, 8478, 1, 0, 0, 0, 932, 8480, 1, 0, 0, 0, 934, 8504, 1, 0, 0, 0, 936, 8508, 1, 0, 0, 0, 938, 8511, 1, 0, 0, 0, 940, 942, 3, 2, 1, 0, 941, 940, 1, 0, 0, 0, 942, 945, 1, 0, 0, 0, 943, 941, 1, 0, 0, 0, 943, 944, 1, 0, 0, 0, 944, 946, 1, 0, 0, 0, 945, 943, 1, 0, 0, 0, 946, 947, 5, 0, 0, 1, 947, 1, 1, 0, 0, 0, 948, 950, 3, 4, 2, 0, 949, 951, 5, 7, 0, 0, 950, 949, 1, 0, 0, 0, 950, 951, 1, 0, 0, 0, 951, 3, 1, 0, 0, 0, 952, 1073, 3, 272, 136, 0, 953, 1073, 3, 482, 241, 0, 954, 1073, 3, 478, 239, 0, 955, 1073, 3, 480, 240, 0, 956, 1073, 3, 346, 173, 0, 957, 1073, 3, 488, 244, 0, 958, 1073, 3, 286, 143, 0, 959, 1073, 3, 204, 102, 0, 960, 1073, 3, 206, 103, 0, 961, 1073, 3, 212, 106, 0, 962, 1073, 3, 226, 113, 0, 963, 1073, 3, 398, 199, 0, 964, 1073, 3, 28, 14, 0, 965, 1073, 3, 428, 214, 0, 966, 1073, 3, 430, 215, 0, 967, 1073, 3, 440, 220, 0, 968, 1073, 3, 432, 216, 0, 969, 1073, 3, 438, 219, 0, 970, 1073, 3, 238, 119, 0, 971, 1073, 3, 240, 120, 0, 972, 1073, 3, 192, 96, 0, 973, 1073, 3, 484, 242, 0, 974, 1073, 3, 76, 38, 0, 975, 1073, 3, 424, 212, 0, 976, 1073, 3, 100, 50, 0, 977, 1073, 3, 444, 222, 0, 978, 1073, 3, 18, 9, 0, 979, 1073, 3, 20, 10, 0, 980, 1073, 3, 16, 8, 0, 981, 1073, 3, 448, 224, 0, 982, 1073, 3, 178, 89, 0, 983, 1073, 3, 492, 246, 0, 984, 1073, 3, 490, 245, 0, 985, 1073, 3, 234, 117, 0, 986, 1073, 3, 500, 250, 0, 987, 1073, 3, 6, 3, 0, 988, 1073, 3, 72, 36, 0, 989, 1073, 3, 104, 52, 0, 990, 1073, 3, 496, 248, 0, 991, 1073, 3, 318, 159, 0, 992, 1073, 3, 70, 35, 0, 993, 1073, 3, 106, 53, 0, 994, 1073, 3, 248, 124, 0, 995, 1073, 3, 180, 90, 0, 996, 1073, 3, 274, 137, 0, 997, 1073, 3, 414, 207, 0, 998, 1073, 3, 494, 247, 0, 999, 1073, 3, 486, 243, 0, 1000, 1073, 3, 202, 101, 0, 1001, 1073, 3, 208, 104, 0, 1002, 1073, 3, 222, 111, 0, 1003, 1073, 3, 228, 114, 0, 1004, 1073, 3, 358, 179, 0, 1005, 1073, 3, 26, 13, 0, 1006, 1073, 3, 186, 93, 0, 1007, 1073, 3, 290, 145, 0, 1008, 1073, 3, 294, 147, 0, 1009, 1073, 3, 442, 221, 0, 1010, 1073, 3, 296, 148, 0, 1011, 1073, 3, 236, 118, 0, 1012, 1073, 3, 198, 99, 0, 1013, 1073, 3, 30, 15, 0, 1014, 1073, 3, 190, 95, 0, 1015, 1073, 3, 114, 57, 0, 1016, 1073, 3, 446, 223, 0, 1017, 1073, 3, 176, 88, 0, 1018, 1073, 3, 200, 100, 0, 1019, 1073, 3, 418, 209, 0, 1020, 1073, 3, 250, 125, 0, 1021, 1073, 3, 268, 134, 0, 1022, 1073, 3, 8, 4, 0, 1023, 1073, 3, 14, 7, 0, 1024, 1073, 3, 232, 116, 0, 1025, 1073, 3, 474, 237, 0, 1026, 1073, 3, 530, 265, 0, 1027, 1073, 3, 552, 276, 0, 1028, 1073, 3, 276, 138, 0, 1029, 1073, 3, 542, 271, 0, 1030, 1073, 3, 74, 37, 0, 1031, 1073, 3, 412, 206, 0, 1032, 1073, 3, 302, 151, 0, 1033, 1073, 3, 526, 263, 0, 1034, 1073, 3, 514, 257, 0, 1035, 1073, 3, 322, 161, 0, 1036, 1073, 3, 328, 164, 0, 1037, 1073, 3, 342, 171, 0, 1038, 1073, 3, 908, 454, 0, 1039, 1073, 3, 230, 115, 0, 1040, 1073, 3, 352, 176, 0, 1041, 1073, 3, 532, 266, 0, 1042, 1073, 3, 458, 229, 0, 1043, 1073, 3, 188, 94, 0, 1044, 1073, 3, 472, 236, 0, 1045, 1073, 3, 544, 272, 0, 1046, 1073, 3, 454, 227, 0, 1047, 1073, 3, 520, 260, 0, 1048, 1073, 3, 300, 150, 0, 1049, 1073, 3, 422, 211, 0, 1050, 1073, 3, 402, 201, 0, 1051, 1073, 3, 400, 200, 0, 1052, 1073, 3, 404, 202, 0, 1053, 1073, 3, 426, 213, 0, 1054, 1073, 3, 330, 165, 0, 1055, 1073, 3, 344, 172, 0, 1056, 1073, 3, 450, 225, 0, 1057, 1073, 3, 320, 160, 0, 1058, 1073, 3, 554, 277, 0, 1059, 1073, 3, 462, 231, 0, 1060, 1073, 3, 314, 157, 0, 1061, 1073, 3, 460, 230, 0, 1062, 1073, 3, 546, 273, 0, 1063, 1073, 3, 498, 249, 0, 1064, 1073, 3, 60, 30, 0, 1065, 1073, 3, 36, 18, 0, 1066, 1073, 3, 68, 34, 0, 1067, 1073, 3, 470, 235, 0, 1068, 1070, 5, 583, 0, 0, 1069, 1071, 5, 584, 0, 0, 1070, 1069, 1, 0, 0, 0, 1070, 1071, 1, 0, 0, 0, 1071, 1073, 1, 0, 0, 0, 1072, 952, 1, 0, 0, 0, 1072, 953, 1, 0, 0, 0, 1072, 954, 1, 0, 0, 0, 1072, 955, 1, 0, 0, 0, 1072, 956, 1, 0, 0, 0, 1072, 957, 1, 0, 0, 0, 1072, 958, 1, 0, 0, 0, 1072, 959, 1, 0, 0, 0, 1072, 960, 1, 0, 0, 0, 1072, 961, 1, 0, 0, 0, 1072, 962, 1, 0, 0, 0, 1072, 963, 1, 0, 0, 0, 1072, 964, 1, 0, 0, 0, 1072, 965, 1, 0, 0, 0, 1072, 966, 1, 0, 0, 0, 1072, 967, 1, 0, 0, 0, 1072, 968, 1, 0, 0, 0, 1072, 969, 1, 0, 0, 0, 1072, 970, 1, 0, 0, 0, 1072, 971, 1, 0, 0, 0, 1072, 972, 1, 0, 0, 0, 1072, 973, 1, 0, 0, 0, 1072, 974, 1, 0, 0, 0, 1072, 975, 1, 0, 0, 0, 1072, 976, 1, 0, 0, 0, 1072, 977, 1, 0, 0, 0, 1072, 978, 1, 0, 0, 0, 1072, 979, 1, 0, 0, 0, 1072, 980, 1, 0, 0, 0, 1072, 981, 1, 0, 0, 0, 1072, 982, 1, 0, 0, 0, 1072, 983, 1, 0, 0, 0, 1072, 984, 1, 0, 0, 0, 1072, 985, 1, 0, 0, 0, 1072, 986, 1, 0, 0, 0, 1072, 987, 1, 0, 0, 0, 1072, 988, 1, 0, 0, 0, 1072, 989, 1, 0, 0, 0, 1072, 990, 1, 0, 0, 0, 1072, 991, 1, 0, 0, 0, 1072, 992, 1, 0, 0, 0, 1072, 993, 1, 0, 0, 0, 1072, 994, 1, 0, 0, 0, 1072, 995, 1, 0, 0, 0, 1072, 996, 1, 0, 0, 0, 1072, 997, 1, 0, 0, 0, 1072, 998, 1, 0, 0, 0, 1072, 999, 1, 0, 0, 0, 1072, 1000, 1, 0, 0, 0, 1072, 1001, 1, 0, 0, 0, 1072, 1002, 1, 0, 0, 0, 1072, 1003, 1, 0, 0, 0, 1072, 1004, 1, 0, 0, 0, 1072, 1005, 1, 0, 0, 0, 1072, 1006, 1, 0, 0, 0, 1072, 1007, 1, 0, 0, 0, 1072, 1008, 1, 0, 0, 0, 1072, 1009, 1, 0, 0, 0, 1072, 1010, 1, 0, 0, 0, 1072, 1011, 1, 0, 0, 0, 1072, 1012, 1, 0, 0, 0, 1072, 1013, 1, 0, 0, 0, 1072, 1014, 1, 0, 0, 0, 1072, 1015, 1, 0, 0, 0, 1072, 1016, 1, 0, 0, 0, 1072, 1017, 1, 0, 0, 0, 1072, 1018, 1, 0, 0, 0, 1072, 1019, 1, 0, 0, 0, 1072, 1020, 1, 0, 0, 0, 1072, 1021, 1, 0, 0, 0, 1072, 1022, 1, 0, 0, 0, 1072, 1023, 1, 0, 0, 0, 1072, 1024, 1, 0, 0, 0, 1072, 1025, 1, 0, 0, 0, 1072, 1026, 1, 0, 0, 0, 1072, 1027, 1, 0, 0, 0, 1072, 1028, 1, 0, 0, 0, 1072, 1029, 1, 0, 0, 0, 1072, 1030, 1, 0, 0, 0, 1072, 1031, 1, 0, 0, 0, 1072, 1032, 1, 0, 0, 0, 1072, 1033, 1, 0, 0, 0, 1072, 1034, 1, 0, 0, 0, 1072, 1035, 1, 0, 0, 0, 1072, 1036, 1, 0, 0, 0, 1072, 1037, 1, 0, 0, 0, 1072, 1038, 1, 0, 0, 0, 1072, 1039, 1, 0, 0, 0, 1072, 1040, 1, 0, 0, 0, 1072, 1041, 1, 0, 0, 0, 1072, 1042, 1, 0, 0, 0, 1072, 1043, 1, 0, 0, 0, 1072, 1044, 1, 0, 0, 0, 1072, 1045, 1, 0, 0, 0, 1072, 1046, 1, 0, 0, 0, 1072, 1047, 1, 0, 0, 0, 1072, 1048, 1, 0, 0, 0, 1072, 1049, 1, 0, 0, 0, 1072, 1050, 1, 0, 0, 0, 1072, 1051, 1, 0, 0, 0, 1072, 1052, 1, 0, 0, 0, 1072, 1053, 1, 0, 0, 0, 1072, 1054, 1, 0, 0, 0, 1072, 1055, 1, 0, 0, 0, 1072, 1056, 1, 0, 0, 0, 1072, 1057, 1, 0, 0, 0, 1072, 1058, 1, 0, 0, 0, 1072, 1059, 1, 0, 0, 0, 1072, 1060, 1, 0, 0, 0, 1072, 1061, 1, 0, 0, 0, 1072, 1062, 1, 0, 0, 0, 1072, 1063, 1, 0, 0, 0, 1072, 1064, 1, 0, 0, 0, 1072, 1065, 1, 0, 0, 0, 1072, 1066, 1, 0, 0, 0, 1072, 1067, 1, 0, 0, 0, 1072, 1068, 1, 0, 0, 0, 1073, 5, 1, 0, 0, 0, 1074, 1075, 5, 433, 0, 0, 1075, 1076, 3, 680, 340, 0, 1076, 7, 1, 0, 0, 0, 1077, 1078, 5, 46, 0, 0, 1078, 1079, 5, 318, 0, 0, 1079, 1081, 3, 822, 411, 0, 1080, 1082, 5, 105, 0, 0, 1081, 1080, 1, 0, 0, 0, 1081, 1082, 1, 0, 0, 0, 1082, 1086, 1, 0, 0, 0, 1083, 1085, 3, 12, 6, 0, 1084, 1083, 1, 0, 0, 0, 1085, 1088, 1, 0, 0, 0, 1086, 1084, 1, 0, 0, 0, 1086, 1087, 1, 0, 0, 0, 1087, 9, 1, 0, 0, 0, 1088, 1086, 1, 0, 0, 0, 1089, 1092, 5, 287, 0, 0, 1090, 1093, 3, 816, 408, 0, 1091, 1093, 5, 78, 0, 0, 1092, 1090, 1, 0, 0, 0, 1092, 1091, 1, 0, 0, 0, 1093, 1128, 1, 0, 0, 0, 1094, 1095, 7, 0, 0, 0, 1095, 1096, 5, 287, 0, 0, 1096, 1128, 3, 816, 408, 0, 1097, 1128, 5, 228, 0, 0, 1098, 1128, 5, 229, 0, 0, 1099, 1128, 5, 236, 0, 0, 1100, 1128, 5, 237, 0, 0, 1101, 1128, 5, 234, 0, 0, 1102, 1128, 5, 235, 0, 0, 1103, 1128, 5, 232, 0, 0, 1104, 1128, 5, 233, 0, 0, 1105, 1128, 5, 230, 0, 0, 1106, 1128, 5, 231, 0, 0, 1107, 1128, 5, 535, 0, 0, 1108, 1128, 5, 536, 0, 0, 1109, 1128, 5, 537, 0, 0, 1110, 1128, 5, 538, 0, 0, 1111, 1128, 5, 539, 0, 0, 1112, 1128, 5, 540, 0, 0, 1113, 1114, 5, 164, 0, 0, 1114, 1115, 5, 74, 0, 0, 1115, 1128, 3, 820, 410, 0, 1116, 1117, 5, 371, 0, 0, 1117, 1118, 5, 368, 0, 0, 1118, 1128, 3, 816, 408, 0, 1119, 1120, 5, 68, 0, 0, 1120, 1121, 7, 1, 0, 0, 1121, 1128, 3, 788, 394, 0, 1122, 1123, 7, 2, 0, 0, 1123, 1128, 3, 824, 412, 0, 1124, 1125, 5, 134, 0, 0, 1125, 1128, 3, 788, 394, 0, 1126, 1128, 3, 834, 417, 0, 1127, 1089, 1, 0, 0, 0, 1127, 1094, 1, 0, 0, 0, 1127, 1097, 1, 0, 0, 0, 1127, 1098, 1, 0, 0, 0, 1127, 1099, 1, 0, 0, 0, 1127, 1100, 1, 0, 0, 0, 1127, 1101, 1, 0, 0, 0, 1127, 1102, 1, 0, 0, 0, 1127, 1103, 1, 0, 0, 0, 1127, 1104, 1, 0, 0, 0, 1127, 1105, 1, 0, 0, 0, 1127, 1106, 1, 0, 0, 0, 1127, 1107, 1, 0, 0, 0, 1127, 1108, 1, 0, 0, 0, 1127, 1109, 1, 0, 0, 0, 1127, 1110, 1, 0, 0, 0, 1127, 1111, 1, 0, 0, 0, 1127, 1112, 1, 0, 0, 0, 1127, 1113, 1, 0, 0, 0, 1127, 1116, 1, 0, 0, 0, 1127, 1119, 1, 0, 0, 0, 1127, 1122, 1, 0, 0, 0, 1127, 1124, 1, 0, 0, 0, 1127, 1126, 1, 0, 0, 0, 1128, 11, 1, 0, 0, 0, 1129, 1138, 3, 10, 5, 0, 1130, 1131, 5, 348, 0, 0, 1131, 1138, 5, 574, 0, 0, 1132, 1133, 7, 3, 0, 0, 1133, 1138, 3, 824, 412, 0, 1134, 1135, 5, 68, 0, 0, 1135, 1136, 7, 1, 0, 0, 1136, 1138, 3, 824, 412, 0, 1137, 1129, 1, 0, 0, 0, 1137, 1130, 1, 0, 0, 0, 1137, 1132, 1, 0, 0, 0, 1137, 1134, 1, 0, 0, 0, 1138, 13, 1, 0, 0, 0, 1139, 1140, 5, 46, 0, 0, 1140, 1141, 5, 99, 0, 0, 1141, 1143, 3, 822, 411, 0, 1142, 1144, 5, 105, 0, 0, 1143, 1142, 1, 0, 0, 0, 1143, 1144, 1, 0, 0, 0, 1144, 1148, 1, 0, 0, 0, 1145, 1147, 3, 12, 6, 0, 1146, 1145, 1, 0, 0, 0, 1147, 1150, 1, 0, 0, 0, 1148, 1146, 1, 0, 0, 0, 1148, 1149, 1, 0, 0, 0, 1149, 15, 1, 0, 0, 0, 1150, 1148, 1, 0, 0, 0, 1151, 1152, 5, 138, 0, 0, 1152, 1153, 7, 2, 0, 0, 1153, 1155, 3, 822, 411, 0, 1154, 1156, 5, 105, 0, 0, 1155, 1154, 1, 0, 0, 0, 1155, 1156, 1, 0, 0, 0, 1156, 1160, 1, 0, 0, 0, 1157, 1159, 3, 10, 5, 0, 1158, 1157, 1, 0, 0, 0, 1159, 1162, 1, 0, 0, 0, 1160, 1158, 1, 0, 0, 0, 1160, 1161, 1, 0, 0, 0, 1161, 17, 1, 0, 0, 0, 1162, 1160, 1, 0, 0, 0, 1163, 1164, 5, 138, 0, 0, 1164, 1167, 7, 2, 0, 0, 1165, 1168, 5, 30, 0, 0, 1166, 1168, 3, 822, 411, 0, 1167, 1165, 1, 0, 0, 0, 1167, 1166, 1, 0, 0, 0, 1168, 1169, 1, 0, 0, 0, 1169, 1170, 5, 68, 0, 0, 1170, 1171, 5, 175, 0, 0, 1171, 1172, 3, 792, 396, 0, 1172, 1173, 3, 64, 32, 0, 1173, 19, 1, 0, 0, 0, 1174, 1175, 5, 138, 0, 0, 1175, 1176, 5, 442, 0, 0, 1176, 1178, 3, 798, 399, 0, 1177, 1179, 3, 362, 181, 0, 1178, 1177, 1, 0, 0, 0, 1178, 1179, 1, 0, 0, 0, 1179, 1180, 1, 0, 0, 0, 1180, 1181, 3, 22, 11, 0, 1181, 21, 1, 0, 0, 0, 1182, 1186, 3, 24, 12, 0, 1183, 1185, 3, 24, 12, 0, 1184, 1183, 1, 0, 0, 0, 1185, 1188, 1, 0, 0, 0, 1186, 1184, 1, 0, 0, 0, 1186, 1187, 1, 0, 0, 0, 1187, 1190, 1, 0, 0, 0, 1188, 1186, 1, 0, 0, 0, 1189, 1191, 5, 315, 0, 0, 1190, 1189, 1, 0, 0, 0, 1190, 1191, 1, 0, 0, 0, 1191, 1209, 1, 0, 0, 0, 1192, 1193, 5, 309, 0, 0, 1193, 1194, 5, 94, 0, 0, 1194, 1209, 3, 796, 398, 0, 1195, 1196, 5, 282, 0, 0, 1196, 1197, 5, 94, 0, 0, 1197, 1209, 3, 822, 411, 0, 1198, 1199, 5, 333, 0, 0, 1199, 1200, 5, 323, 0, 0, 1200, 1209, 3, 32, 16, 0, 1201, 1203, 5, 269, 0, 0, 1202, 1201, 1, 0, 0, 0, 1202, 1203, 1, 0, 0, 0, 1203, 1204, 1, 0, 0, 0, 1204, 1205, 5, 462, 0, 0, 1205, 1206, 5, 80, 0, 0, 1206, 1207, 5, 204, 0, 0, 1207, 1209, 3, 826, 413, 0, 1208, 1182, 1, 0, 0, 0, 1208, 1192, 1, 0, 0, 0, 1208, 1195, 1, 0, 0, 0, 1208, 1198, 1, 0, 0, 0, 1208, 1202, 1, 0, 0, 0, 1209, 23, 1, 0, 0, 0, 1210, 1253, 5, 222, 0, 0, 1211, 1253, 5, 338, 0, 0, 1212, 1253, 5, 377, 0, 0, 1213, 1215, 5, 77, 0, 0, 1214, 1213, 1, 0, 0, 0, 1214, 1215, 1, 0, 0, 0, 1215, 1216, 1, 0, 0, 0, 1216, 1253, 5, 250, 0, 0, 1217, 1219, 5, 205, 0, 0, 1218, 1217, 1, 0, 0, 0, 1218, 1219, 1, 0, 0, 0, 1219, 1220, 1, 0, 0, 0, 1220, 1221, 5, 327, 0, 0, 1221, 1228, 5, 243, 0, 0, 1222, 1224, 5, 205, 0, 0, 1223, 1222, 1, 0, 0, 0, 1223, 1224, 1, 0, 0, 0, 1224, 1225, 1, 0, 0, 0, 1225, 1226, 5, 327, 0, 0, 1226, 1228, 5, 181, 0, 0, 1227, 1218, 1, 0, 0, 0, 1227, 1223, 1, 0, 0, 0, 1228, 1253, 1, 0, 0, 0, 1229, 1230, 5, 460, 0, 0, 1230, 1253, 7, 4, 0, 0, 1231, 1232, 5, 170, 0, 0, 1232, 1253, 3, 832, 416, 0, 1233, 1234, 5, 320, 0, 0, 1234, 1253, 3, 826, 413, 0, 1235, 1236, 5, 333, 0, 0, 1236, 1237, 3, 826, 413, 0, 1237, 1240, 7, 5, 0, 0, 1238, 1241, 3, 826, 413, 0, 1239, 1241, 5, 53, 0, 0, 1240, 1238, 1, 0, 0, 0, 1240, 1239, 1, 0, 0, 0, 1241, 1253, 1, 0, 0, 0, 1242, 1243, 5, 333, 0, 0, 1243, 1244, 3, 826, 413, 0, 1244, 1245, 5, 64, 0, 0, 1245, 1246, 5, 434, 0, 0, 1246, 1253, 1, 0, 0, 0, 1247, 1250, 5, 313, 0, 0, 1248, 1251, 3, 826, 413, 0, 1249, 1251, 5, 30, 0, 0, 1250, 1248, 1, 0, 0, 0, 1250, 1249, 1, 0, 0, 0, 1251, 1253, 1, 0, 0, 0, 1252, 1210, 1, 0, 0, 0, 1252, 1211, 1, 0, 0, 0, 1252, 1212, 1, 0, 0, 0, 1252, 1214, 1, 0, 0, 0, 1252, 1227, 1, 0, 0, 0, 1252, 1229, 1, 0, 0, 0, 1252, 1231, 1, 0, 0, 0, 1252, 1233, 1, 0, 0, 0, 1252, 1235, 1, 0, 0, 0, 1252, 1242, 1, 0, 0, 0, 1252, 1247, 1, 0, 0, 0, 1253, 25, 1, 0, 0, 0, 1254, 1255, 5, 46, 0, 0, 1255, 1256, 5, 66, 0, 0, 1256, 1258, 3, 822, 411, 0, 1257, 1259, 5, 105, 0, 0, 1258, 1257, 1, 0, 0, 0, 1258, 1259, 1, 0, 0, 0, 1259, 1263, 1, 0, 0, 0, 1260, 1262, 3, 12, 6, 0, 1261, 1260, 1, 0, 0, 0, 1262, 1265, 1, 0, 0, 0, 1263, 1261, 1, 0, 0, 0, 1263, 1264, 1, 0, 0, 0, 1264, 27, 1, 0, 0, 0, 1265, 1263, 1, 0, 0, 0, 1266, 1267, 5, 138, 0, 0, 1267, 1268, 5, 66, 0, 0, 1268, 1269, 3, 822, 411, 0, 1269, 1270, 7, 6, 0, 0, 1270, 1271, 5, 99, 0, 0, 1271, 1272, 3, 824, 412, 0, 1272, 29, 1, 0, 0, 0, 1273, 1274, 5, 46, 0, 0, 1274, 1276, 5, 323, 0, 0, 1275, 1277, 3, 288, 144, 0, 1276, 1275, 1, 0, 0, 0, 1276, 1277, 1, 0, 0, 0, 1277, 1284, 1, 0, 0, 0, 1278, 1280, 3, 32, 16, 0, 1279, 1278, 1, 0, 0, 0, 1279, 1280, 1, 0, 0, 0, 1280, 1281, 1, 0, 0, 0, 1281, 1282, 5, 106, 0, 0, 1282, 1285, 3, 822, 411, 0, 1283, 1285, 3, 32, 16, 0, 1284, 1279, 1, 0, 0, 0, 1284, 1283, 1, 0, 0, 0, 1285, 1289, 1, 0, 0, 0, 1286, 1288, 3, 34, 17, 0, 1287, 1286, 1, 0, 0, 0, 1288, 1291, 1, 0, 0, 0, 1289, 1287, 1, 0, 0, 0, 1289, 1290, 1, 0, 0, 0, 1290, 31, 1, 0, 0, 0, 1291, 1289, 1, 0, 0, 0, 1292, 1293, 3, 310, 155, 0, 1293, 33, 1, 0, 0, 0, 1294, 1301, 3, 114, 57, 0, 1295, 1301, 3, 352, 176, 0, 1296, 1301, 3, 190, 95, 0, 1297, 1301, 3, 250, 125, 0, 1298, 1301, 3, 328, 164, 0, 1299, 1301, 3, 470, 235, 0, 1300, 1294, 1, 0, 0, 0, 1300, 1295, 1, 0, 0, 0, 1300, 1296, 1, 0, 0, 0, 1300, 1297, 1, 0, 0, 0, 1300, 1298, 1, 0, 0, 0, 1300, 1299, 1, 0, 0, 0, 1301, 35, 1, 0, 0, 0, 1302, 1304, 5, 333, 0, 0, 1303, 1305, 7, 7, 0, 0, 1304, 1303, 1, 0, 0, 0, 1304, 1305, 1, 0, 0, 0, 1305, 1306, 1, 0, 0, 0, 1306, 1307, 3, 38, 19, 0, 1307, 37, 1, 0, 0, 0, 1308, 1309, 5, 356, 0, 0, 1309, 1317, 3, 468, 234, 0, 1310, 1311, 5, 332, 0, 0, 1311, 1312, 5, 154, 0, 0, 1312, 1313, 5, 36, 0, 0, 1313, 1314, 5, 356, 0, 0, 1314, 1317, 3, 468, 234, 0, 1315, 1317, 3, 42, 21, 0, 1316, 1308, 1, 0, 0, 0, 1316, 1310, 1, 0, 0, 0, 1316, 1315, 1, 0, 0, 0, 1317, 39, 1, 0, 0, 0, 1318, 1321, 5, 30, 0, 0, 1319, 1321, 3, 44, 22, 0, 1320, 1318, 1, 0, 0, 0, 1320, 1319, 1, 0, 0, 0, 1321, 1323, 1, 0, 0, 0, 1322, 1324, 7, 5, 0, 0, 1323, 1322, 1, 0, 0, 0, 1323, 1324, 1, 0, 0, 0, 1324, 1327, 1, 0, 0, 0, 1325, 1328, 5, 53, 0, 0, 1326, 1328, 3, 46, 23, 0, 1327, 1325, 1, 0, 0, 0, 1327, 1326, 1, 0, 0, 0, 1327, 1328, 1, 0, 0, 0, 1328, 41, 1, 0, 0, 0, 1329, 1330, 5, 418, 0, 0, 1330, 1331, 5, 386, 0, 0, 1331, 1358, 3, 56, 28, 0, 1332, 1333, 5, 152, 0, 0, 1333, 1358, 3, 816, 408, 0, 1334, 1335, 5, 323, 0, 0, 1335, 1358, 3, 794, 397, 0, 1336, 1339, 5, 267, 0, 0, 1337, 1340, 3, 816, 408, 0, 1338, 1340, 5, 53, 0, 0, 1339, 1337, 1, 0, 0, 0, 1339, 1338, 1, 0, 0, 0, 1339, 1340, 1, 0, 0, 0, 1340, 1358, 1, 0, 0, 0, 1341, 1342, 5, 318, 0, 0, 1342, 1358, 3, 58, 29, 0, 1343, 1344, 5, 332, 0, 0, 1344, 1345, 5, 106, 0, 0, 1345, 1358, 3, 58, 29, 0, 1346, 1347, 5, 383, 0, 0, 1347, 1348, 5, 279, 0, 0, 1348, 1358, 3, 692, 346, 0, 1349, 1350, 5, 356, 0, 0, 1350, 1351, 5, 337, 0, 0, 1351, 1358, 3, 816, 408, 0, 1352, 1353, 3, 44, 22, 0, 1353, 1354, 5, 64, 0, 0, 1354, 1355, 5, 434, 0, 0, 1355, 1358, 1, 0, 0, 0, 1356, 1358, 3, 40, 20, 0, 1357, 1329, 1, 0, 0, 0, 1357, 1332, 1, 0, 0, 0, 1357, 1334, 1, 0, 0, 0, 1357, 1336, 1, 0, 0, 0, 1357, 1341, 1, 0, 0, 0, 1357, 1343, 1, 0, 0, 0, 1357, 1346, 1, 0, 0, 0, 1357, 1349, 1, 0, 0, 0, 1357, 1352, 1, 0, 0, 0, 1357, 1356, 1, 0, 0, 0, 1358, 43, 1, 0, 0, 0, 1359, 1364, 3, 826, 413, 0, 1360, 1361, 5, 11, 0, 0, 1361, 1363, 3, 826, 413, 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, 45, 1, 0, 0, 0, 1366, 1364, 1, 0, 0, 0, 1367, 1372, 3, 48, 24, 0, 1368, 1369, 5, 6, 0, 0, 1369, 1371, 3, 48, 24, 0, 1370, 1368, 1, 0, 0, 0, 1371, 1374, 1, 0, 0, 0, 1372, 1370, 1, 0, 0, 0, 1372, 1373, 1, 0, 0, 0, 1373, 47, 1, 0, 0, 0, 1374, 1372, 1, 0, 0, 0, 1375, 1378, 3, 54, 27, 0, 1376, 1378, 3, 196, 98, 0, 1377, 1375, 1, 0, 0, 0, 1377, 1376, 1, 0, 0, 0, 1378, 49, 1, 0, 0, 0, 1379, 1380, 5, 300, 0, 0, 1380, 1385, 7, 8, 0, 0, 1381, 1382, 5, 310, 0, 0, 1382, 1385, 5, 300, 0, 0, 1383, 1385, 5, 330, 0, 0, 1384, 1379, 1, 0, 0, 0, 1384, 1381, 1, 0, 0, 0, 1384, 1383, 1, 0, 0, 0, 1385, 51, 1, 0, 0, 0, 1386, 1393, 5, 96, 0, 0, 1387, 1393, 5, 60, 0, 0, 1388, 1393, 5, 80, 0, 0, 1389, 1393, 3, 806, 403, 0, 1390, 1393, 3, 840, 420, 0, 1391, 1393, 3, 816, 408, 0, 1392, 1386, 1, 0, 0, 0, 1392, 1387, 1, 0, 0, 0, 1392, 1388, 1, 0, 0, 0, 1392, 1389, 1, 0, 0, 0, 1392, 1390, 1, 0, 0, 0, 1392, 1391, 1, 0, 0, 0, 1393, 53, 1, 0, 0, 0, 1394, 1399, 5, 96, 0, 0, 1395, 1399, 5, 60, 0, 0, 1396, 1399, 5, 80, 0, 0, 1397, 1399, 3, 58, 29, 0, 1398, 1394, 1, 0, 0, 0, 1398, 1395, 1, 0, 0, 0, 1398, 1396, 1, 0, 0, 0, 1398, 1397, 1, 0, 0, 0, 1399, 55, 1, 0, 0, 0, 1400, 1415, 3, 816, 408, 0, 1401, 1415, 5, 53, 0, 0, 1402, 1415, 3, 834, 417, 0, 1403, 1404, 5, 403, 0, 0, 1404, 1406, 3, 816, 408, 0, 1405, 1407, 3, 664, 332, 0, 1406, 1405, 1, 0, 0, 0, 1406, 1407, 1, 0, 0, 0, 1407, 1415, 1, 0, 0, 0, 1408, 1409, 5, 403, 0, 0, 1409, 1410, 3, 656, 328, 0, 1410, 1411, 3, 816, 408, 0, 1411, 1415, 1, 0, 0, 0, 1412, 1415, 3, 196, 98, 0, 1413, 1415, 5, 254, 0, 0, 1414, 1400, 1, 0, 0, 0, 1414, 1401, 1, 0, 0, 0, 1414, 1402, 1, 0, 0, 0, 1414, 1403, 1, 0, 0, 0, 1414, 1408, 1, 0, 0, 0, 1414, 1412, 1, 0, 0, 0, 1414, 1413, 1, 0, 0, 0, 1415, 57, 1, 0, 0, 0, 1416, 1419, 3, 830, 415, 0, 1417, 1419, 3, 816, 408, 0, 1418, 1416, 1, 0, 0, 0, 1418, 1417, 1, 0, 0, 0, 1419, 59, 1, 0, 0, 0, 1420, 1421, 5, 313, 0, 0, 1421, 1422, 3, 62, 31, 0, 1422, 61, 1, 0, 0, 0, 1423, 1424, 5, 418, 0, 0, 1424, 1433, 5, 386, 0, 0, 1425, 1426, 5, 356, 0, 0, 1426, 1427, 5, 244, 0, 0, 1427, 1433, 5, 251, 0, 0, 1428, 1429, 5, 332, 0, 0, 1429, 1433, 5, 106, 0, 0, 1430, 1433, 5, 30, 0, 0, 1431, 1433, 3, 44, 22, 0, 1432, 1423, 1, 0, 0, 0, 1432, 1425, 1, 0, 0, 0, 1432, 1428, 1, 0, 0, 0, 1432, 1430, 1, 0, 0, 0, 1432, 1431, 1, 0, 0, 0, 1433, 63, 1, 0, 0, 0, 1434, 1435, 5, 333, 0, 0, 1435, 1438, 3, 38, 19, 0, 1436, 1438, 3, 60, 30, 0, 1437, 1434, 1, 0, 0, 0, 1437, 1436, 1, 0, 0, 0, 1438, 65, 1, 0, 0, 0, 1439, 1440, 5, 333, 0, 0, 1440, 1443, 3, 42, 21, 0, 1441, 1443, 3, 60, 30, 0, 1442, 1439, 1, 0, 0, 0, 1442, 1441, 1, 0, 0, 0, 1443, 67, 1, 0, 0, 0, 1444, 1454, 5, 335, 0, 0, 1445, 1455, 3, 44, 22, 0, 1446, 1447, 5, 418, 0, 0, 1447, 1455, 5, 386, 0, 0, 1448, 1449, 5, 356, 0, 0, 1449, 1450, 5, 244, 0, 0, 1450, 1455, 5, 251, 0, 0, 1451, 1452, 5, 332, 0, 0, 1452, 1455, 5, 106, 0, 0, 1453, 1455, 5, 30, 0, 0, 1454, 1445, 1, 0, 0, 0, 1454, 1446, 1, 0, 0, 0, 1454, 1448, 1, 0, 0, 0, 1454, 1451, 1, 0, 0, 0, 1454, 1453, 1, 0, 0, 0, 1455, 69, 1, 0, 0, 0, 1456, 1457, 5, 333, 0, 0, 1457, 1460, 5, 165, 0, 0, 1458, 1461, 5, 30, 0, 0, 1459, 1461, 3, 764, 382, 0, 1460, 1458, 1, 0, 0, 0, 1460, 1459, 1, 0, 0, 0, 1461, 1462, 1, 0, 0, 0, 1462, 1463, 7, 9, 0, 0, 1463, 71, 1, 0, 0, 0, 1464, 1465, 5, 155, 0, 0, 1465, 73, 1, 0, 0, 0, 1466, 1467, 5, 187, 0, 0, 1467, 1468, 7, 10, 0, 0, 1468, 75, 1, 0, 0, 0, 1469, 1470, 5, 138, 0, 0, 1470, 1472, 5, 92, 0, 0, 1471, 1473, 3, 416, 208, 0, 1472, 1471, 1, 0, 0, 0, 1472, 1473, 1, 0, 0, 0, 1473, 1474, 1, 0, 0, 0, 1474, 1477, 3, 620, 310, 0, 1475, 1478, 3, 78, 39, 0, 1476, 1478, 3, 80, 40, 0, 1477, 1475, 1, 0, 0, 0, 1477, 1476, 1, 0, 0, 0, 1478, 1587, 1, 0, 0, 0, 1479, 1480, 5, 138, 0, 0, 1480, 1481, 5, 92, 0, 0, 1481, 1482, 5, 30, 0, 0, 1482, 1483, 5, 68, 0, 0, 1483, 1487, 3, 170, 85, 0, 1484, 1485, 5, 281, 0, 0, 1485, 1486, 5, 147, 0, 0, 1486, 1488, 3, 824, 412, 0, 1487, 1484, 1, 0, 0, 0, 1487, 1488, 1, 0, 0, 0, 1488, 1489, 1, 0, 0, 0, 1489, 1490, 5, 333, 0, 0, 1490, 1491, 5, 351, 0, 0, 1491, 1493, 3, 774, 387, 0, 1492, 1494, 5, 272, 0, 0, 1493, 1492, 1, 0, 0, 0, 1493, 1494, 1, 0, 0, 0, 1494, 1587, 1, 0, 0, 0, 1495, 1496, 5, 138, 0, 0, 1496, 1498, 5, 92, 0, 0, 1497, 1499, 3, 416, 208, 0, 1498, 1497, 1, 0, 0, 0, 1498, 1499, 1, 0, 0, 0, 1499, 1500, 1, 0, 0, 0, 1500, 1501, 3, 778, 389, 0, 1501, 1502, 3, 82, 41, 0, 1502, 1503, 3, 98, 49, 0, 1503, 1587, 1, 0, 0, 0, 1504, 1505, 5, 138, 0, 0, 1505, 1507, 5, 92, 0, 0, 1506, 1508, 3, 416, 208, 0, 1507, 1506, 1, 0, 0, 0, 1507, 1508, 1, 0, 0, 0, 1508, 1509, 1, 0, 0, 0, 1509, 1510, 3, 778, 389, 0, 1510, 1511, 5, 436, 0, 0, 1511, 1512, 5, 285, 0, 0, 1512, 1514, 3, 784, 392, 0, 1513, 1515, 7, 11, 0, 0, 1514, 1513, 1, 0, 0, 0, 1514, 1515, 1, 0, 0, 0, 1515, 1587, 1, 0, 0, 0, 1516, 1517, 5, 138, 0, 0, 1517, 1519, 5, 226, 0, 0, 1518, 1520, 3, 416, 208, 0, 1519, 1518, 1, 0, 0, 0, 1519, 1520, 1, 0, 0, 0, 1520, 1521, 1, 0, 0, 0, 1521, 1524, 3, 784, 392, 0, 1522, 1525, 3, 78, 39, 0, 1523, 1525, 3, 82, 41, 0, 1524, 1522, 1, 0, 0, 0, 1524, 1523, 1, 0, 0, 0, 1525, 1587, 1, 0, 0, 0, 1526, 1527, 5, 138, 0, 0, 1527, 1528, 5, 226, 0, 0, 1528, 1529, 5, 30, 0, 0, 1529, 1530, 5, 68, 0, 0, 1530, 1534, 3, 170, 85, 0, 1531, 1532, 5, 281, 0, 0, 1532, 1533, 5, 147, 0, 0, 1533, 1535, 3, 824, 412, 0, 1534, 1531, 1, 0, 0, 0, 1534, 1535, 1, 0, 0, 0, 1535, 1536, 1, 0, 0, 0, 1536, 1537, 5, 333, 0, 0, 1537, 1539, 3, 170, 85, 0, 1538, 1540, 5, 272, 0, 0, 1539, 1538, 1, 0, 0, 0, 1539, 1540, 1, 0, 0, 0, 1540, 1587, 1, 0, 0, 0, 1541, 1542, 5, 138, 0, 0, 1542, 1544, 5, 328, 0, 0, 1543, 1545, 3, 416, 208, 0, 1544, 1543, 1, 0, 0, 0, 1544, 1545, 1, 0, 0, 0, 1545, 1546, 1, 0, 0, 0, 1546, 1547, 3, 784, 392, 0, 1547, 1548, 3, 78, 39, 0, 1548, 1587, 1, 0, 0, 0, 1549, 1551, 5, 138, 0, 0, 1550, 1552, 5, 259, 0, 0, 1551, 1550, 1, 0, 0, 0, 1551, 1552, 1, 0, 0, 0, 1552, 1553, 1, 0, 0, 0, 1553, 1555, 5, 376, 0, 0, 1554, 1556, 3, 416, 208, 0, 1555, 1554, 1, 0, 0, 0, 1555, 1556, 1, 0, 0, 0, 1556, 1557, 1, 0, 0, 0, 1557, 1558, 3, 782, 391, 0, 1558, 1559, 3, 78, 39, 0, 1559, 1587, 1, 0, 0, 0, 1560, 1561, 5, 138, 0, 0, 1561, 1562, 5, 259, 0, 0, 1562, 1563, 5, 376, 0, 0, 1563, 1564, 5, 30, 0, 0, 1564, 1565, 5, 68, 0, 0, 1565, 1569, 3, 170, 85, 0, 1566, 1567, 5, 281, 0, 0, 1567, 1568, 5, 147, 0, 0, 1568, 1570, 3, 824, 412, 0, 1569, 1566, 1, 0, 0, 0, 1569, 1570, 1, 0, 0, 0, 1570, 1571, 1, 0, 0, 0, 1571, 1572, 5, 333, 0, 0, 1572, 1573, 5, 351, 0, 0, 1573, 1575, 3, 774, 387, 0, 1574, 1576, 5, 272, 0, 0, 1575, 1574, 1, 0, 0, 0, 1575, 1576, 1, 0, 0, 0, 1576, 1587, 1, 0, 0, 0, 1577, 1578, 5, 138, 0, 0, 1578, 1579, 5, 63, 0, 0, 1579, 1581, 5, 92, 0, 0, 1580, 1582, 3, 416, 208, 0, 1581, 1580, 1, 0, 0, 0, 1581, 1582, 1, 0, 0, 0, 1582, 1583, 1, 0, 0, 0, 1583, 1584, 3, 620, 310, 0, 1584, 1585, 3, 78, 39, 0, 1585, 1587, 1, 0, 0, 0, 1586, 1469, 1, 0, 0, 0, 1586, 1479, 1, 0, 0, 0, 1586, 1495, 1, 0, 0, 0, 1586, 1504, 1, 0, 0, 0, 1586, 1516, 1, 0, 0, 0, 1586, 1526, 1, 0, 0, 0, 1586, 1541, 1, 0, 0, 0, 1586, 1549, 1, 0, 0, 0, 1586, 1560, 1, 0, 0, 0, 1586, 1577, 1, 0, 0, 0, 1587, 77, 1, 0, 0, 0, 1588, 1593, 3, 84, 42, 0, 1589, 1590, 5, 6, 0, 0, 1590, 1592, 3, 84, 42, 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, 79, 1, 0, 0, 0, 1595, 1593, 1, 0, 0, 0, 1596, 1597, 3, 82, 41, 0, 1597, 1598, 3, 98, 49, 0, 1598, 1603, 1, 0, 0, 0, 1599, 1600, 5, 436, 0, 0, 1600, 1601, 5, 285, 0, 0, 1601, 1603, 3, 784, 392, 0, 1602, 1596, 1, 0, 0, 0, 1602, 1599, 1, 0, 0, 0, 1603, 81, 1, 0, 0, 0, 1604, 1605, 5, 435, 0, 0, 1605, 1606, 5, 285, 0, 0, 1606, 1607, 3, 784, 392, 0, 1607, 83, 1, 0, 0, 0, 1608, 1611, 5, 133, 0, 0, 1609, 1610, 5, 45, 0, 0, 1610, 1612, 3, 826, 413, 0, 1611, 1609, 1, 0, 0, 0, 1611, 1612, 1, 0, 0, 0, 1612, 1613, 1, 0, 0, 0, 1613, 1842, 3, 136, 68, 0, 1614, 1615, 5, 138, 0, 0, 1615, 1616, 5, 45, 0, 0, 1616, 1620, 3, 826, 413, 0, 1617, 1619, 3, 266, 133, 0, 1618, 1617, 1, 0, 0, 0, 1619, 1622, 1, 0, 0, 0, 1620, 1618, 1, 0, 0, 0, 1620, 1621, 1, 0, 0, 0, 1621, 1842, 1, 0, 0, 0, 1622, 1620, 1, 0, 0, 0, 1623, 1624, 5, 372, 0, 0, 1624, 1625, 5, 45, 0, 0, 1625, 1842, 3, 826, 413, 0, 1626, 1627, 5, 191, 0, 0, 1627, 1629, 5, 45, 0, 0, 1628, 1630, 3, 416, 208, 0, 1629, 1628, 1, 0, 0, 0, 1629, 1630, 1, 0, 0, 0, 1630, 1631, 1, 0, 0, 0, 1631, 1633, 3, 826, 413, 0, 1632, 1634, 3, 88, 44, 0, 1633, 1632, 1, 0, 0, 0, 1633, 1634, 1, 0, 0, 0, 1634, 1842, 1, 0, 0, 0, 1635, 1636, 5, 333, 0, 0, 1636, 1637, 5, 379, 0, 0, 1637, 1842, 7, 12, 0, 0, 1638, 1639, 5, 158, 0, 0, 1639, 1640, 5, 80, 0, 0, 1640, 1842, 3, 826, 413, 0, 1641, 1642, 5, 333, 0, 0, 1642, 1842, 7, 13, 0, 0, 1643, 1645, 5, 193, 0, 0, 1644, 1646, 7, 14, 0, 0, 1645, 1644, 1, 0, 0, 0, 1645, 1646, 1, 0, 0, 0, 1646, 1647, 1, 0, 0, 0, 1647, 1842, 5, 357, 0, 0, 1648, 1649, 5, 186, 0, 0, 1649, 1653, 5, 357, 0, 0, 1650, 1654, 5, 30, 0, 0, 1651, 1654, 5, 99, 0, 0, 1652, 1654, 3, 826, 413, 0, 1653, 1650, 1, 0, 0, 0, 1653, 1651, 1, 0, 0, 0, 1653, 1652, 1, 0, 0, 0, 1654, 1842, 1, 0, 0, 0, 1655, 1656, 5, 193, 0, 0, 1656, 1657, 7, 14, 0, 0, 1657, 1658, 5, 321, 0, 0, 1658, 1842, 3, 826, 413, 0, 1659, 1660, 5, 186, 0, 0, 1660, 1661, 5, 321, 0, 0, 1661, 1842, 3, 826, 413, 0, 1662, 1664, 5, 269, 0, 0, 1663, 1662, 1, 0, 0, 0, 1663, 1664, 1, 0, 0, 0, 1664, 1665, 1, 0, 0, 0, 1665, 1666, 5, 228, 0, 0, 1666, 1842, 3, 784, 392, 0, 1667, 1668, 5, 275, 0, 0, 1668, 1842, 3, 310, 155, 0, 1669, 1670, 5, 77, 0, 0, 1670, 1842, 5, 275, 0, 0, 1671, 1672, 5, 282, 0, 0, 1672, 1673, 5, 94, 0, 0, 1673, 1842, 3, 822, 411, 0, 1674, 1675, 5, 333, 0, 0, 1675, 1676, 5, 351, 0, 0, 1676, 1842, 3, 774, 387, 0, 1677, 1678, 5, 312, 0, 0, 1678, 1683, 5, 219, 0, 0, 1679, 1684, 5, 270, 0, 0, 1680, 1684, 5, 113, 0, 0, 1681, 1684, 5, 53, 0, 0, 1682, 1684, 3, 174, 87, 0, 1683, 1679, 1, 0, 0, 0, 1683, 1680, 1, 0, 0, 0, 1683, 1681, 1, 0, 0, 0, 1683, 1682, 1, 0, 0, 0, 1684, 1842, 1, 0, 0, 0, 1685, 1692, 5, 193, 0, 0, 1686, 1692, 5, 186, 0, 0, 1687, 1689, 5, 269, 0, 0, 1688, 1687, 1, 0, 0, 0, 1688, 1689, 1, 0, 0, 0, 1689, 1690, 1, 0, 0, 0, 1690, 1692, 5, 209, 0, 0, 1691, 1685, 1, 0, 0, 0, 1691, 1686, 1, 0, 0, 0, 1691, 1688, 1, 0, 0, 0, 1692, 1693, 1, 0, 0, 0, 1693, 1694, 5, 414, 0, 0, 1694, 1695, 5, 251, 0, 0, 1695, 1842, 5, 327, 0, 0, 1696, 1698, 5, 191, 0, 0, 1697, 1699, 5, 44, 0, 0, 1698, 1697, 1, 0, 0, 0, 1698, 1699, 1, 0, 0, 0, 1699, 1701, 1, 0, 0, 0, 1700, 1702, 3, 416, 208, 0, 1701, 1700, 1, 0, 0, 0, 1701, 1702, 1, 0, 0, 0, 1702, 1703, 1, 0, 0, 0, 1703, 1705, 3, 806, 403, 0, 1704, 1706, 3, 88, 44, 0, 1705, 1704, 1, 0, 0, 0, 1705, 1706, 1, 0, 0, 0, 1706, 1842, 1, 0, 0, 0, 1707, 1709, 5, 133, 0, 0, 1708, 1710, 5, 44, 0, 0, 1709, 1708, 1, 0, 0, 0, 1709, 1710, 1, 0, 0, 0, 1710, 1712, 1, 0, 0, 0, 1711, 1713, 3, 288, 144, 0, 1712, 1711, 1, 0, 0, 0, 1712, 1713, 1, 0, 0, 0, 1713, 1714, 1, 0, 0, 0, 1714, 1842, 3, 126, 63, 0, 1715, 1717, 5, 138, 0, 0, 1716, 1718, 5, 44, 0, 0, 1717, 1716, 1, 0, 0, 0, 1717, 1718, 1, 0, 0, 0, 1718, 1719, 1, 0, 0, 0, 1719, 1722, 3, 806, 403, 0, 1720, 1723, 3, 86, 43, 0, 1721, 1723, 3, 216, 108, 0, 1722, 1720, 1, 0, 0, 0, 1722, 1721, 1, 0, 0, 0, 1723, 1842, 1, 0, 0, 0, 1724, 1726, 5, 138, 0, 0, 1725, 1727, 5, 44, 0, 0, 1726, 1725, 1, 0, 0, 0, 1726, 1727, 1, 0, 0, 0, 1727, 1728, 1, 0, 0, 0, 1728, 1729, 3, 806, 403, 0, 1729, 1730, 7, 15, 0, 0, 1730, 1731, 5, 77, 0, 0, 1731, 1732, 5, 78, 0, 0, 1732, 1842, 1, 0, 0, 0, 1733, 1735, 5, 138, 0, 0, 1734, 1736, 5, 44, 0, 0, 1735, 1734, 1, 0, 0, 0, 1735, 1736, 1, 0, 0, 0, 1736, 1737, 1, 0, 0, 0, 1737, 1738, 3, 806, 403, 0, 1738, 1739, 5, 191, 0, 0, 1739, 1741, 5, 437, 0, 0, 1740, 1742, 3, 416, 208, 0, 1741, 1740, 1, 0, 0, 0, 1741, 1742, 1, 0, 0, 0, 1742, 1842, 1, 0, 0, 0, 1743, 1745, 5, 138, 0, 0, 1744, 1746, 5, 44, 0, 0, 1745, 1744, 1, 0, 0, 0, 1745, 1746, 1, 0, 0, 0, 1746, 1747, 1, 0, 0, 0, 1747, 1748, 3, 806, 403, 0, 1748, 1749, 5, 333, 0, 0, 1749, 1750, 5, 342, 0, 0, 1750, 1751, 3, 820, 410, 0, 1751, 1842, 1, 0, 0, 0, 1752, 1754, 5, 138, 0, 0, 1753, 1755, 5, 44, 0, 0, 1754, 1753, 1, 0, 0, 0, 1754, 1755, 1, 0, 0, 0, 1755, 1756, 1, 0, 0, 0, 1756, 1758, 3, 806, 403, 0, 1757, 1752, 1, 0, 0, 0, 1757, 1758, 1, 0, 0, 0, 1758, 1759, 1, 0, 0, 0, 1759, 1760, 7, 16, 0, 0, 1760, 1842, 3, 92, 46, 0, 1761, 1763, 5, 138, 0, 0, 1762, 1764, 5, 44, 0, 0, 1763, 1762, 1, 0, 0, 0, 1763, 1764, 1, 0, 0, 0, 1764, 1765, 1, 0, 0, 0, 1765, 1766, 3, 806, 403, 0, 1766, 1767, 5, 333, 0, 0, 1767, 1768, 5, 345, 0, 0, 1768, 1769, 3, 826, 413, 0, 1769, 1842, 1, 0, 0, 0, 1770, 1772, 5, 138, 0, 0, 1771, 1773, 5, 44, 0, 0, 1772, 1771, 1, 0, 0, 0, 1772, 1773, 1, 0, 0, 0, 1773, 1774, 1, 0, 0, 0, 1774, 1775, 3, 806, 403, 0, 1775, 1776, 5, 133, 0, 0, 1776, 1777, 5, 438, 0, 0, 1777, 1778, 3, 132, 66, 0, 1778, 1779, 5, 36, 0, 0, 1779, 1788, 5, 219, 0, 0, 1780, 1782, 5, 2, 0, 0, 1781, 1783, 3, 194, 97, 0, 1782, 1781, 1, 0, 0, 0, 1783, 1784, 1, 0, 0, 0, 1784, 1782, 1, 0, 0, 0, 1784, 1785, 1, 0, 0, 0, 1785, 1786, 1, 0, 0, 0, 1786, 1787, 5, 3, 0, 0, 1787, 1789, 1, 0, 0, 0, 1788, 1780, 1, 0, 0, 0, 1788, 1789, 1, 0, 0, 0, 1789, 1842, 1, 0, 0, 0, 1790, 1792, 5, 138, 0, 0, 1791, 1793, 5, 44, 0, 0, 1792, 1791, 1, 0, 0, 0, 1792, 1793, 1, 0, 0, 0, 1793, 1794, 1, 0, 0, 0, 1794, 1808, 3, 806, 403, 0, 1795, 1800, 5, 314, 0, 0, 1796, 1798, 5, 105, 0, 0, 1797, 1796, 1, 0, 0, 0, 1797, 1798, 1, 0, 0, 0, 1798, 1799, 1, 0, 0, 0, 1799, 1801, 3, 196, 98, 0, 1800, 1797, 1, 0, 0, 0, 1800, 1801, 1, 0, 0, 0, 1801, 1809, 1, 0, 0, 0, 1802, 1806, 5, 333, 0, 0, 1803, 1807, 3, 194, 97, 0, 1804, 1805, 5, 438, 0, 0, 1805, 1807, 3, 132, 66, 0, 1806, 1803, 1, 0, 0, 0, 1806, 1804, 1, 0, 0, 0, 1807, 1809, 1, 0, 0, 0, 1808, 1795, 1, 0, 0, 0, 1808, 1802, 1, 0, 0, 0, 1809, 1810, 1, 0, 0, 0, 1810, 1808, 1, 0, 0, 0, 1810, 1811, 1, 0, 0, 0, 1811, 1842, 1, 0, 0, 0, 1812, 1814, 5, 138, 0, 0, 1813, 1815, 5, 44, 0, 0, 1814, 1813, 1, 0, 0, 0, 1814, 1815, 1, 0, 0, 0, 1815, 1816, 1, 0, 0, 0, 1816, 1817, 3, 806, 403, 0, 1817, 1818, 5, 191, 0, 0, 1818, 1820, 5, 219, 0, 0, 1819, 1821, 3, 416, 208, 0, 1820, 1819, 1, 0, 0, 0, 1820, 1821, 1, 0, 0, 0, 1821, 1842, 1, 0, 0, 0, 1822, 1824, 5, 138, 0, 0, 1823, 1825, 5, 44, 0, 0, 1824, 1823, 1, 0, 0, 0, 1824, 1825, 1, 0, 0, 0, 1825, 1826, 1, 0, 0, 0, 1826, 1829, 3, 806, 403, 0, 1827, 1828, 5, 333, 0, 0, 1828, 1830, 5, 174, 0, 0, 1829, 1827, 1, 0, 0, 0, 1829, 1830, 1, 0, 0, 0, 1830, 1831, 1, 0, 0, 0, 1831, 1832, 5, 360, 0, 0, 1832, 1834, 3, 648, 324, 0, 1833, 1835, 3, 90, 45, 0, 1834, 1833, 1, 0, 0, 0, 1834, 1835, 1, 0, 0, 0, 1835, 1838, 1, 0, 0, 0, 1836, 1837, 5, 100, 0, 0, 1837, 1839, 3, 670, 335, 0, 1838, 1836, 1, 0, 0, 0, 1838, 1839, 1, 0, 0, 0, 1839, 1842, 1, 0, 0, 0, 1840, 1842, 3, 216, 108, 0, 1841, 1608, 1, 0, 0, 0, 1841, 1614, 1, 0, 0, 0, 1841, 1623, 1, 0, 0, 0, 1841, 1626, 1, 0, 0, 0, 1841, 1635, 1, 0, 0, 0, 1841, 1638, 1, 0, 0, 0, 1841, 1641, 1, 0, 0, 0, 1841, 1643, 1, 0, 0, 0, 1841, 1648, 1, 0, 0, 0, 1841, 1655, 1, 0, 0, 0, 1841, 1659, 1, 0, 0, 0, 1841, 1663, 1, 0, 0, 0, 1841, 1667, 1, 0, 0, 0, 1841, 1669, 1, 0, 0, 0, 1841, 1671, 1, 0, 0, 0, 1841, 1674, 1, 0, 0, 0, 1841, 1677, 1, 0, 0, 0, 1841, 1691, 1, 0, 0, 0, 1841, 1696, 1, 0, 0, 0, 1841, 1707, 1, 0, 0, 0, 1841, 1715, 1, 0, 0, 0, 1841, 1724, 1, 0, 0, 0, 1841, 1733, 1, 0, 0, 0, 1841, 1743, 1, 0, 0, 0, 1841, 1757, 1, 0, 0, 0, 1841, 1761, 1, 0, 0, 0, 1841, 1770, 1, 0, 0, 0, 1841, 1790, 1, 0, 0, 0, 1841, 1812, 1, 0, 0, 0, 1841, 1822, 1, 0, 0, 0, 1841, 1840, 1, 0, 0, 0, 1842, 85, 1, 0, 0, 0, 1843, 1844, 5, 333, 0, 0, 1844, 1845, 5, 53, 0, 0, 1845, 1849, 3, 670, 335, 0, 1846, 1847, 5, 191, 0, 0, 1847, 1849, 5, 53, 0, 0, 1848, 1843, 1, 0, 0, 0, 1848, 1846, 1, 0, 0, 0, 1849, 87, 1, 0, 0, 0, 1850, 1851, 7, 17, 0, 0, 1851, 89, 1, 0, 0, 0, 1852, 1853, 5, 43, 0, 0, 1853, 1854, 3, 310, 155, 0, 1854, 91, 1, 0, 0, 0, 1855, 1856, 5, 2, 0, 0, 1856, 1861, 3, 96, 48, 0, 1857, 1858, 5, 6, 0, 0, 1858, 1860, 3, 96, 48, 0, 1859, 1857, 1, 0, 0, 0, 1860, 1863, 1, 0, 0, 0, 1861, 1859, 1, 0, 0, 0, 1861, 1862, 1, 0, 0, 0, 1862, 1864, 1, 0, 0, 0, 1863, 1861, 1, 0, 0, 0, 1864, 1865, 5, 3, 0, 0, 1865, 93, 1, 0, 0, 0, 1866, 1867, 5, 105, 0, 0, 1867, 1868, 3, 92, 46, 0, 1868, 95, 1, 0, 0, 0, 1869, 1874, 3, 832, 416, 0, 1870, 1871, 5, 10, 0, 0, 1871, 1875, 3, 282, 141, 0, 1872, 1873, 5, 11, 0, 0, 1873, 1875, 3, 280, 140, 0, 1874, 1870, 1, 0, 0, 0, 1874, 1872, 1, 0, 0, 0, 1874, 1875, 1, 0, 0, 0, 1875, 97, 1, 0, 0, 0, 1876, 1877, 5, 62, 0, 0, 1877, 1878, 5, 422, 0, 0, 1878, 1879, 5, 105, 0, 0, 1879, 1880, 5, 2, 0, 0, 1880, 1881, 5, 533, 0, 0, 1881, 1882, 3, 196, 98, 0, 1882, 1883, 5, 6, 0, 0, 1883, 1884, 5, 534, 0, 0, 1884, 1885, 3, 196, 98, 0, 1885, 1886, 5, 3, 0, 0, 1886, 1900, 1, 0, 0, 0, 1887, 1888, 5, 62, 0, 0, 1888, 1889, 5, 422, 0, 0, 1889, 1890, 5, 68, 0, 0, 1890, 1900, 3, 528, 264, 0, 1891, 1892, 5, 62, 0, 0, 1892, 1893, 5, 422, 0, 0, 1893, 1894, 5, 64, 0, 0, 1894, 1895, 3, 528, 264, 0, 1895, 1896, 5, 94, 0, 0, 1896, 1897, 3, 528, 264, 0, 1897, 1900, 1, 0, 0, 0, 1898, 1900, 5, 53, 0, 0, 1899, 1876, 1, 0, 0, 0, 1899, 1887, 1, 0, 0, 0, 1899, 1891, 1, 0, 0, 0, 1899, 1898, 1, 0, 0, 0, 1900, 99, 1, 0, 0, 0, 1901, 1902, 5, 138, 0, 0, 1902, 1903, 5, 360, 0, 0, 1903, 1904, 3, 310, 155, 0, 1904, 1909, 3, 102, 51, 0, 1905, 1906, 5, 6, 0, 0, 1906, 1908, 3, 102, 51, 0, 1907, 1905, 1, 0, 0, 0, 1908, 1911, 1, 0, 0, 0, 1909, 1907, 1, 0, 0, 0, 1909, 1910, 1, 0, 0, 0, 1910, 101, 1, 0, 0, 0, 1911, 1909, 1, 0, 0, 0, 1912, 1913, 5, 133, 0, 0, 1913, 1914, 5, 143, 0, 0, 1914, 1916, 3, 640, 320, 0, 1915, 1917, 3, 88, 44, 0, 1916, 1915, 1, 0, 0, 0, 1916, 1917, 1, 0, 0, 0, 1917, 1943, 1, 0, 0, 0, 1918, 1919, 5, 191, 0, 0, 1919, 1921, 5, 143, 0, 0, 1920, 1922, 3, 416, 208, 0, 1921, 1920, 1, 0, 0, 0, 1921, 1922, 1, 0, 0, 0, 1922, 1923, 1, 0, 0, 0, 1923, 1925, 3, 826, 413, 0, 1924, 1926, 3, 88, 44, 0, 1925, 1924, 1, 0, 0, 0, 1925, 1926, 1, 0, 0, 0, 1926, 1943, 1, 0, 0, 0, 1927, 1928, 5, 138, 0, 0, 1928, 1929, 5, 143, 0, 0, 1929, 1932, 3, 826, 413, 0, 1930, 1931, 5, 333, 0, 0, 1931, 1933, 5, 174, 0, 0, 1932, 1930, 1, 0, 0, 0, 1932, 1933, 1, 0, 0, 0, 1933, 1934, 1, 0, 0, 0, 1934, 1935, 5, 360, 0, 0, 1935, 1937, 3, 648, 324, 0, 1936, 1938, 3, 90, 45, 0, 1937, 1936, 1, 0, 0, 0, 1937, 1938, 1, 0, 0, 0, 1938, 1940, 1, 0, 0, 0, 1939, 1941, 3, 88, 44, 0, 1940, 1939, 1, 0, 0, 0, 1940, 1941, 1, 0, 0, 0, 1941, 1943, 1, 0, 0, 0, 1942, 1912, 1, 0, 0, 0, 1942, 1918, 1, 0, 0, 0, 1942, 1927, 1, 0, 0, 0, 1943, 103, 1, 0, 0, 0, 1944, 1947, 5, 157, 0, 0, 1945, 1948, 3, 826, 413, 0, 1946, 1948, 5, 30, 0, 0, 1947, 1945, 1, 0, 0, 0, 1947, 1946, 1, 0, 0, 0, 1948, 105, 1, 0, 0, 0, 1949, 1951, 5, 169, 0, 0, 1950, 1952, 5, 107, 0, 0, 1951, 1950, 1, 0, 0, 0, 1951, 1952, 1, 0, 0, 0, 1952, 1953, 1, 0, 0, 0, 1953, 1955, 3, 778, 389, 0, 1954, 1956, 3, 138, 69, 0, 1955, 1954, 1, 0, 0, 0, 1955, 1956, 1, 0, 0, 0, 1956, 1957, 1, 0, 0, 0, 1957, 1959, 7, 18, 0, 0, 1958, 1960, 5, 297, 0, 0, 1959, 1958, 1, 0, 0, 0, 1959, 1960, 1, 0, 0, 0, 1960, 1964, 1, 0, 0, 0, 1961, 1965, 3, 816, 408, 0, 1962, 1965, 5, 343, 0, 0, 1963, 1965, 5, 344, 0, 0, 1964, 1961, 1, 0, 0, 0, 1964, 1962, 1, 0, 0, 0, 1964, 1963, 1, 0, 0, 0, 1965, 1971, 1, 0, 0, 0, 1966, 1968, 5, 100, 0, 0, 1967, 1966, 1, 0, 0, 0, 1967, 1968, 1, 0, 0, 0, 1968, 1969, 1, 0, 0, 0, 1969, 1970, 5, 184, 0, 0, 1970, 1972, 3, 816, 408, 0, 1971, 1967, 1, 0, 0, 0, 1971, 1972, 1, 0, 0, 0, 1972, 1974, 1, 0, 0, 0, 1973, 1975, 5, 105, 0, 0, 1974, 1973, 1, 0, 0, 0, 1974, 1975, 1, 0, 0, 0, 1975, 1976, 1, 0, 0, 0, 1976, 1978, 3, 110, 55, 0, 1977, 1979, 3, 634, 317, 0, 1978, 1977, 1, 0, 0, 0, 1978, 1979, 1, 0, 0, 0, 1979, 1999, 1, 0, 0, 0, 1980, 1981, 5, 169, 0, 0, 1981, 1982, 5, 2, 0, 0, 1982, 1983, 3, 524, 262, 0, 1983, 1984, 5, 3, 0, 0, 1984, 1986, 5, 94, 0, 0, 1985, 1987, 5, 297, 0, 0, 1986, 1985, 1, 0, 0, 0, 1986, 1987, 1, 0, 0, 0, 1987, 1991, 1, 0, 0, 0, 1988, 1992, 3, 816, 408, 0, 1989, 1992, 5, 343, 0, 0, 1990, 1992, 5, 344, 0, 0, 1991, 1988, 1, 0, 0, 0, 1991, 1989, 1, 0, 0, 0, 1991, 1990, 1, 0, 0, 0, 1992, 1994, 1, 0, 0, 0, 1993, 1995, 5, 105, 0, 0, 1994, 1993, 1, 0, 0, 0, 1994, 1995, 1, 0, 0, 0, 1995, 1996, 1, 0, 0, 0, 1996, 1997, 3, 110, 55, 0, 1997, 1999, 1, 0, 0, 0, 1998, 1949, 1, 0, 0, 0, 1998, 1980, 1, 0, 0, 0, 1999, 107, 1, 0, 0, 0, 2000, 2043, 5, 107, 0, 0, 2001, 2043, 5, 112, 0, 0, 2002, 2004, 7, 19, 0, 0, 2003, 2005, 5, 36, 0, 0, 2004, 2003, 1, 0, 0, 0, 2004, 2005, 1, 0, 0, 0, 2005, 2006, 1, 0, 0, 0, 2006, 2043, 3, 816, 408, 0, 2007, 2043, 5, 171, 0, 0, 2008, 2043, 5, 216, 0, 0, 2009, 2010, 5, 209, 0, 0, 2010, 2013, 5, 298, 0, 0, 2011, 2014, 3, 142, 71, 0, 2012, 2014, 5, 9, 0, 0, 2013, 2011, 1, 0, 0, 0, 2013, 2012, 1, 0, 0, 0, 2014, 2043, 1, 0, 0, 0, 2015, 2017, 5, 209, 0, 0, 2016, 2018, 5, 77, 0, 0, 2017, 2016, 1, 0, 0, 0, 2017, 2018, 1, 0, 0, 0, 2018, 2019, 1, 0, 0, 0, 2019, 2020, 5, 78, 0, 0, 2020, 2043, 3, 142, 71, 0, 2021, 2022, 5, 194, 0, 0, 2022, 2043, 3, 816, 408, 0, 2023, 2040, 7, 20, 0, 0, 2024, 2027, 5, 2, 0, 0, 2025, 2028, 3, 142, 71, 0, 2026, 2028, 5, 9, 0, 0, 2027, 2025, 1, 0, 0, 0, 2027, 2026, 1, 0, 0, 0, 2028, 2036, 1, 0, 0, 0, 2029, 2032, 5, 6, 0, 0, 2030, 2033, 3, 142, 71, 0, 2031, 2033, 5, 9, 0, 0, 2032, 2030, 1, 0, 0, 0, 2032, 2031, 1, 0, 0, 0, 2033, 2035, 1, 0, 0, 0, 2034, 2029, 1, 0, 0, 0, 2035, 2038, 1, 0, 0, 0, 2036, 2034, 1, 0, 0, 0, 2036, 2037, 1, 0, 0, 0, 2037, 2039, 1, 0, 0, 0, 2038, 2036, 1, 0, 0, 0, 2039, 2041, 5, 3, 0, 0, 2040, 2024, 1, 0, 0, 0, 2040, 2041, 1, 0, 0, 0, 2041, 2043, 1, 0, 0, 0, 2042, 2000, 1, 0, 0, 0, 2042, 2001, 1, 0, 0, 0, 2042, 2002, 1, 0, 0, 0, 2042, 2007, 1, 0, 0, 0, 2042, 2008, 1, 0, 0, 0, 2042, 2009, 1, 0, 0, 0, 2042, 2015, 1, 0, 0, 0, 2042, 2021, 1, 0, 0, 0, 2042, 2023, 1, 0, 0, 0, 2043, 2046, 1, 0, 0, 0, 2044, 2042, 1, 0, 0, 0, 2044, 2045, 1, 0, 0, 0, 2045, 109, 1, 0, 0, 0, 2046, 2044, 1, 0, 0, 0, 2047, 2066, 3, 108, 54, 0, 2048, 2051, 5, 2, 0, 0, 2049, 2052, 3, 108, 54, 0, 2050, 2052, 3, 112, 56, 0, 2051, 2049, 1, 0, 0, 0, 2051, 2050, 1, 0, 0, 0, 2052, 2060, 1, 0, 0, 0, 2053, 2056, 5, 6, 0, 0, 2054, 2057, 3, 108, 54, 0, 2055, 2057, 3, 112, 56, 0, 2056, 2054, 1, 0, 0, 0, 2056, 2055, 1, 0, 0, 0, 2057, 2059, 1, 0, 0, 0, 2058, 2053, 1, 0, 0, 0, 2059, 2062, 1, 0, 0, 0, 2060, 2058, 1, 0, 0, 0, 2060, 2061, 1, 0, 0, 0, 2061, 2063, 1, 0, 0, 0, 2062, 2060, 1, 0, 0, 0, 2063, 2064, 5, 3, 0, 0, 2064, 2066, 1, 0, 0, 0, 2065, 2047, 1, 0, 0, 0, 2065, 2048, 1, 0, 0, 0, 2066, 111, 1, 0, 0, 0, 2067, 2082, 3, 832, 416, 0, 2068, 2083, 3, 54, 27, 0, 2069, 2083, 3, 196, 98, 0, 2070, 2083, 5, 9, 0, 0, 2071, 2072, 5, 2, 0, 0, 2072, 2077, 3, 52, 26, 0, 2073, 2074, 5, 6, 0, 0, 2074, 2076, 3, 52, 26, 0, 2075, 2073, 1, 0, 0, 0, 2076, 2079, 1, 0, 0, 0, 2077, 2075, 1, 0, 0, 0, 2077, 2078, 1, 0, 0, 0, 2078, 2080, 1, 0, 0, 0, 2079, 2077, 1, 0, 0, 0, 2080, 2081, 5, 3, 0, 0, 2081, 2083, 1, 0, 0, 0, 2082, 2068, 1, 0, 0, 0, 2082, 2069, 1, 0, 0, 0, 2082, 2070, 1, 0, 0, 0, 2082, 2071, 1, 0, 0, 0, 2082, 2083, 1, 0, 0, 0, 2083, 113, 1, 0, 0, 0, 2084, 2086, 5, 46, 0, 0, 2085, 2087, 3, 116, 58, 0, 2086, 2085, 1, 0, 0, 0, 2086, 2087, 1, 0, 0, 0, 2087, 2088, 1, 0, 0, 0, 2088, 2090, 5, 92, 0, 0, 2089, 2091, 3, 288, 144, 0, 2090, 2089, 1, 0, 0, 0, 2090, 2091, 1, 0, 0, 0, 2091, 2092, 1, 0, 0, 0, 2092, 2158, 3, 776, 388, 0, 2093, 2095, 5, 2, 0, 0, 2094, 2096, 3, 120, 60, 0, 2095, 2094, 1, 0, 0, 0, 2095, 2096, 1, 0, 0, 0, 2096, 2097, 1, 0, 0, 0, 2097, 2099, 5, 3, 0, 0, 2098, 2100, 3, 158, 79, 0, 2099, 2098, 1, 0, 0, 0, 2099, 2100, 1, 0, 0, 0, 2100, 2102, 1, 0, 0, 0, 2101, 2103, 3, 160, 80, 0, 2102, 2101, 1, 0, 0, 0, 2102, 2103, 1, 0, 0, 0, 2103, 2105, 1, 0, 0, 0, 2104, 2106, 3, 164, 82, 0, 2105, 2104, 1, 0, 0, 0, 2105, 2106, 1, 0, 0, 0, 2106, 2108, 1, 0, 0, 0, 2107, 2109, 3, 166, 83, 0, 2108, 2107, 1, 0, 0, 0, 2108, 2109, 1, 0, 0, 0, 2109, 2111, 1, 0, 0, 0, 2110, 2112, 3, 168, 84, 0, 2111, 2110, 1, 0, 0, 0, 2111, 2112, 1, 0, 0, 0, 2112, 2114, 1, 0, 0, 0, 2113, 2115, 3, 170, 85, 0, 2114, 2113, 1, 0, 0, 0, 2114, 2115, 1, 0, 0, 0, 2115, 2159, 1, 0, 0, 0, 2116, 2117, 5, 275, 0, 0, 2117, 2119, 3, 310, 155, 0, 2118, 2120, 3, 118, 59, 0, 2119, 2118, 1, 0, 0, 0, 2119, 2120, 1, 0, 0, 0, 2120, 2122, 1, 0, 0, 0, 2121, 2123, 3, 160, 80, 0, 2122, 2121, 1, 0, 0, 0, 2122, 2123, 1, 0, 0, 0, 2123, 2125, 1, 0, 0, 0, 2124, 2126, 3, 164, 82, 0, 2125, 2124, 1, 0, 0, 0, 2125, 2126, 1, 0, 0, 0, 2126, 2128, 1, 0, 0, 0, 2127, 2129, 3, 166, 83, 0, 2128, 2127, 1, 0, 0, 0, 2128, 2129, 1, 0, 0, 0, 2129, 2131, 1, 0, 0, 0, 2130, 2132, 3, 168, 84, 0, 2131, 2130, 1, 0, 0, 0, 2131, 2132, 1, 0, 0, 0, 2132, 2134, 1, 0, 0, 0, 2133, 2135, 3, 170, 85, 0, 2134, 2133, 1, 0, 0, 0, 2134, 2135, 1, 0, 0, 0, 2135, 2159, 1, 0, 0, 0, 2136, 2137, 5, 285, 0, 0, 2137, 2138, 5, 275, 0, 0, 2138, 2140, 3, 784, 392, 0, 2139, 2141, 3, 118, 59, 0, 2140, 2139, 1, 0, 0, 0, 2140, 2141, 1, 0, 0, 0, 2141, 2142, 1, 0, 0, 0, 2142, 2144, 3, 98, 49, 0, 2143, 2145, 3, 160, 80, 0, 2144, 2143, 1, 0, 0, 0, 2144, 2145, 1, 0, 0, 0, 2145, 2147, 1, 0, 0, 0, 2146, 2148, 3, 164, 82, 0, 2147, 2146, 1, 0, 0, 0, 2147, 2148, 1, 0, 0, 0, 2148, 2150, 1, 0, 0, 0, 2149, 2151, 3, 166, 83, 0, 2150, 2149, 1, 0, 0, 0, 2150, 2151, 1, 0, 0, 0, 2151, 2153, 1, 0, 0, 0, 2152, 2154, 3, 168, 84, 0, 2153, 2152, 1, 0, 0, 0, 2153, 2154, 1, 0, 0, 0, 2154, 2156, 1, 0, 0, 0, 2155, 2157, 3, 170, 85, 0, 2156, 2155, 1, 0, 0, 0, 2156, 2157, 1, 0, 0, 0, 2157, 2159, 1, 0, 0, 0, 2158, 2093, 1, 0, 0, 0, 2158, 2116, 1, 0, 0, 0, 2158, 2136, 1, 0, 0, 0, 2159, 115, 1, 0, 0, 0, 2160, 2166, 5, 354, 0, 0, 2161, 2166, 5, 352, 0, 0, 2162, 2163, 7, 21, 0, 0, 2163, 2166, 7, 22, 0, 0, 2164, 2166, 5, 367, 0, 0, 2165, 2160, 1, 0, 0, 0, 2165, 2161, 1, 0, 0, 0, 2165, 2162, 1, 0, 0, 0, 2165, 2164, 1, 0, 0, 0, 2166, 117, 1, 0, 0, 0, 2167, 2168, 5, 2, 0, 0, 2168, 2173, 3, 124, 62, 0, 2169, 2170, 5, 6, 0, 0, 2170, 2172, 3, 124, 62, 0, 2171, 2169, 1, 0, 0, 0, 2172, 2175, 1, 0, 0, 0, 2173, 2171, 1, 0, 0, 0, 2173, 2174, 1, 0, 0, 0, 2174, 2176, 1, 0, 0, 0, 2175, 2173, 1, 0, 0, 0, 2176, 2177, 5, 3, 0, 0, 2177, 119, 1, 0, 0, 0, 2178, 2183, 3, 122, 61, 0, 2179, 2180, 5, 6, 0, 0, 2180, 2182, 3, 122, 61, 0, 2181, 2179, 1, 0, 0, 0, 2182, 2185, 1, 0, 0, 0, 2183, 2181, 1, 0, 0, 0, 2183, 2184, 1, 0, 0, 0, 2184, 121, 1, 0, 0, 0, 2185, 2183, 1, 0, 0, 0, 2186, 2187, 5, 45, 0, 0, 2187, 2189, 3, 826, 413, 0, 2188, 2186, 1, 0, 0, 0, 2188, 2189, 1, 0, 0, 0, 2189, 2190, 1, 0, 0, 0, 2190, 2202, 3, 136, 68, 0, 2191, 2202, 3, 126, 63, 0, 2192, 2193, 5, 120, 0, 0, 2193, 2198, 3, 784, 392, 0, 2194, 2195, 7, 23, 0, 0, 2195, 2197, 3, 134, 67, 0, 2196, 2194, 1, 0, 0, 0, 2197, 2200, 1, 0, 0, 0, 2198, 2196, 1, 0, 0, 0, 2198, 2199, 1, 0, 0, 0, 2199, 2202, 1, 0, 0, 0, 2200, 2198, 1, 0, 0, 0, 2201, 2188, 1, 0, 0, 0, 2201, 2191, 1, 0, 0, 0, 2201, 2192, 1, 0, 0, 0, 2202, 123, 1, 0, 0, 0, 2203, 2206, 3, 810, 405, 0, 2204, 2205, 5, 105, 0, 0, 2205, 2207, 5, 280, 0, 0, 2206, 2204, 1, 0, 0, 0, 2206, 2207, 1, 0, 0, 0, 2207, 2211, 1, 0, 0, 0, 2208, 2210, 3, 128, 64, 0, 2209, 2208, 1, 0, 0, 0, 2210, 2213, 1, 0, 0, 0, 2211, 2209, 1, 0, 0, 0, 2211, 2212, 1, 0, 0, 0, 2212, 2220, 1, 0, 0, 0, 2213, 2211, 1, 0, 0, 0, 2214, 2215, 5, 45, 0, 0, 2215, 2217, 3, 826, 413, 0, 2216, 2214, 1, 0, 0, 0, 2216, 2217, 1, 0, 0, 0, 2217, 2218, 1, 0, 0, 0, 2218, 2220, 3, 136, 68, 0, 2219, 2203, 1, 0, 0, 0, 2219, 2216, 1, 0, 0, 0, 2220, 125, 1, 0, 0, 0, 2221, 2222, 3, 810, 405, 0, 2222, 2224, 3, 648, 324, 0, 2223, 2225, 3, 214, 107, 0, 2224, 2223, 1, 0, 0, 0, 2224, 2225, 1, 0, 0, 0, 2225, 2235, 1, 0, 0, 0, 2226, 2233, 5, 345, 0, 0, 2227, 2234, 5, 544, 0, 0, 2228, 2234, 5, 205, 0, 0, 2229, 2234, 5, 545, 0, 0, 2230, 2234, 5, 546, 0, 0, 2231, 2234, 5, 53, 0, 0, 2232, 2234, 3, 826, 413, 0, 2233, 2227, 1, 0, 0, 0, 2233, 2228, 1, 0, 0, 0, 2233, 2229, 1, 0, 0, 0, 2233, 2230, 1, 0, 0, 0, 2233, 2231, 1, 0, 0, 0, 2233, 2232, 1, 0, 0, 0, 2234, 2236, 1, 0, 0, 0, 2235, 2226, 1, 0, 0, 0, 2235, 2236, 1, 0, 0, 0, 2236, 2239, 1, 0, 0, 0, 2237, 2238, 5, 543, 0, 0, 2238, 2240, 3, 826, 413, 0, 2239, 2237, 1, 0, 0, 0, 2239, 2240, 1, 0, 0, 0, 2240, 2242, 1, 0, 0, 0, 2241, 2243, 3, 90, 45, 0, 2242, 2241, 1, 0, 0, 0, 2242, 2243, 1, 0, 0, 0, 2243, 2246, 1, 0, 0, 0, 2244, 2245, 5, 105, 0, 0, 2245, 2247, 5, 280, 0, 0, 2246, 2244, 1, 0, 0, 0, 2246, 2247, 1, 0, 0, 0, 2247, 2251, 1, 0, 0, 0, 2248, 2250, 3, 128, 64, 0, 2249, 2248, 1, 0, 0, 0, 2250, 2253, 1, 0, 0, 0, 2251, 2249, 1, 0, 0, 0, 2251, 2252, 1, 0, 0, 0, 2252, 127, 1, 0, 0, 0, 2253, 2251, 1, 0, 0, 0, 2254, 2255, 5, 45, 0, 0, 2255, 2257, 3, 826, 413, 0, 2256, 2254, 1, 0, 0, 0, 2256, 2257, 1, 0, 0, 0, 2257, 2258, 1, 0, 0, 0, 2258, 2263, 3, 130, 65, 0, 2259, 2261, 5, 77, 0, 0, 2260, 2259, 1, 0, 0, 0, 2260, 2261, 1, 0, 0, 0, 2261, 2262, 1, 0, 0, 0, 2262, 2264, 5, 54, 0, 0, 2263, 2260, 1, 0, 0, 0, 2263, 2264, 1, 0, 0, 0, 2264, 2267, 1, 0, 0, 0, 2265, 2266, 5, 69, 0, 0, 2266, 2268, 7, 9, 0, 0, 2267, 2265, 1, 0, 0, 0, 2267, 2268, 1, 0, 0, 0, 2268, 129, 1, 0, 0, 0, 2269, 2271, 5, 77, 0, 0, 2270, 2269, 1, 0, 0, 0, 2270, 2271, 1, 0, 0, 0, 2271, 2272, 1, 0, 0, 0, 2272, 2350, 5, 78, 0, 0, 2273, 2275, 5, 98, 0, 0, 2274, 2276, 3, 394, 197, 0, 2275, 2274, 1, 0, 0, 0, 2275, 2276, 1, 0, 0, 0, 2276, 2278, 1, 0, 0, 0, 2277, 2279, 3, 172, 86, 0, 2278, 2277, 1, 0, 0, 0, 2278, 2279, 1, 0, 0, 0, 2279, 2350, 1, 0, 0, 0, 2280, 2286, 5, 98, 0, 0, 2281, 2283, 5, 273, 0, 0, 2282, 2284, 5, 77, 0, 0, 2283, 2282, 1, 0, 0, 0, 2283, 2284, 1, 0, 0, 0, 2284, 2285, 1, 0, 0, 0, 2285, 2287, 5, 56, 0, 0, 2286, 2281, 1, 0, 0, 0, 2286, 2287, 1, 0, 0, 0, 2287, 2290, 1, 0, 0, 0, 2288, 2289, 5, 441, 0, 0, 2289, 2291, 3, 354, 177, 0, 2290, 2288, 1, 0, 0, 0, 2290, 2291, 1, 0, 0, 0, 2291, 2293, 1, 0, 0, 0, 2292, 2294, 3, 566, 283, 0, 2293, 2292, 1, 0, 0, 0, 2293, 2294, 1, 0, 0, 0, 2294, 2296, 1, 0, 0, 0, 2295, 2297, 3, 172, 86, 0, 2296, 2295, 1, 0, 0, 0, 2296, 2297, 1, 0, 0, 0, 2297, 2350, 1, 0, 0, 0, 2298, 2299, 5, 85, 0, 0, 2299, 2301, 5, 245, 0, 0, 2300, 2302, 3, 394, 197, 0, 2301, 2300, 1, 0, 0, 0, 2301, 2302, 1, 0, 0, 0, 2302, 2304, 1, 0, 0, 0, 2303, 2305, 3, 172, 86, 0, 2304, 2303, 1, 0, 0, 0, 2304, 2305, 1, 0, 0, 0, 2305, 2350, 1, 0, 0, 0, 2306, 2307, 5, 42, 0, 0, 2307, 2308, 5, 2, 0, 0, 2308, 2309, 3, 670, 335, 0, 2309, 2312, 5, 3, 0, 0, 2310, 2311, 5, 269, 0, 0, 2311, 2313, 5, 228, 0, 0, 2312, 2310, 1, 0, 0, 0, 2312, 2313, 1, 0, 0, 0, 2313, 2350, 1, 0, 0, 0, 2314, 2315, 5, 53, 0, 0, 2315, 2350, 3, 678, 339, 0, 2316, 2317, 5, 438, 0, 0, 2317, 2318, 3, 132, 66, 0, 2318, 2335, 5, 36, 0, 0, 2319, 2328, 5, 219, 0, 0, 2320, 2322, 5, 2, 0, 0, 2321, 2323, 3, 194, 97, 0, 2322, 2321, 1, 0, 0, 0, 2323, 2324, 1, 0, 0, 0, 2324, 2322, 1, 0, 0, 0, 2324, 2325, 1, 0, 0, 0, 2325, 2326, 1, 0, 0, 0, 2326, 2327, 5, 3, 0, 0, 2327, 2329, 1, 0, 0, 0, 2328, 2320, 1, 0, 0, 0, 2328, 2329, 1, 0, 0, 0, 2329, 2336, 1, 0, 0, 0, 2330, 2331, 5, 2, 0, 0, 2331, 2332, 3, 670, 335, 0, 2332, 2333, 5, 3, 0, 0, 2333, 2334, 5, 440, 0, 0, 2334, 2336, 1, 0, 0, 0, 2335, 2319, 1, 0, 0, 0, 2335, 2330, 1, 0, 0, 0, 2336, 2350, 1, 0, 0, 0, 2337, 2338, 5, 86, 0, 0, 2338, 2340, 3, 784, 392, 0, 2339, 2341, 3, 138, 69, 0, 2340, 2339, 1, 0, 0, 0, 2340, 2341, 1, 0, 0, 0, 2341, 2343, 1, 0, 0, 0, 2342, 2344, 3, 146, 73, 0, 2343, 2342, 1, 0, 0, 0, 2343, 2344, 1, 0, 0, 0, 2344, 2346, 1, 0, 0, 0, 2345, 2347, 3, 150, 75, 0, 2346, 2345, 1, 0, 0, 0, 2346, 2347, 1, 0, 0, 0, 2347, 2350, 1, 0, 0, 0, 2348, 2350, 3, 90, 45, 0, 2349, 2270, 1, 0, 0, 0, 2349, 2273, 1, 0, 0, 0, 2349, 2280, 1, 0, 0, 0, 2349, 2298, 1, 0, 0, 0, 2349, 2306, 1, 0, 0, 0, 2349, 2314, 1, 0, 0, 0, 2349, 2316, 1, 0, 0, 0, 2349, 2337, 1, 0, 0, 0, 2349, 2348, 1, 0, 0, 0, 2350, 131, 1, 0, 0, 0, 2351, 2355, 5, 139, 0, 0, 2352, 2353, 5, 147, 0, 0, 2353, 2355, 5, 53, 0, 0, 2354, 2351, 1, 0, 0, 0, 2354, 2352, 1, 0, 0, 0, 2355, 133, 1, 0, 0, 0, 2356, 2357, 7, 24, 0, 0, 2357, 135, 1, 0, 0, 0, 2358, 2359, 5, 42, 0, 0, 2359, 2360, 5, 2, 0, 0, 2360, 2361, 3, 670, 335, 0, 2361, 2365, 5, 3, 0, 0, 2362, 2364, 3, 266, 133, 0, 2363, 2362, 1, 0, 0, 0, 2364, 2367, 1, 0, 0, 0, 2365, 2363, 1, 0, 0, 0, 2365, 2366, 1, 0, 0, 0, 2366, 2455, 1, 0, 0, 0, 2367, 2365, 1, 0, 0, 0, 2368, 2372, 5, 98, 0, 0, 2369, 2370, 5, 85, 0, 0, 2370, 2372, 5, 245, 0, 0, 2371, 2368, 1, 0, 0, 0, 2371, 2369, 1, 0, 0, 0, 2372, 2396, 1, 0, 0, 0, 2373, 2375, 3, 138, 69, 0, 2374, 2376, 3, 144, 72, 0, 2375, 2374, 1, 0, 0, 0, 2375, 2376, 1, 0, 0, 0, 2376, 2378, 1, 0, 0, 0, 2377, 2379, 3, 394, 197, 0, 2378, 2377, 1, 0, 0, 0, 2378, 2379, 1, 0, 0, 0, 2379, 2381, 1, 0, 0, 0, 2380, 2382, 3, 172, 86, 0, 2381, 2380, 1, 0, 0, 0, 2381, 2382, 1, 0, 0, 0, 2382, 2386, 1, 0, 0, 0, 2383, 2385, 3, 266, 133, 0, 2384, 2383, 1, 0, 0, 0, 2385, 2388, 1, 0, 0, 0, 2386, 2384, 1, 0, 0, 0, 2386, 2387, 1, 0, 0, 0, 2387, 2397, 1, 0, 0, 0, 2388, 2386, 1, 0, 0, 0, 2389, 2393, 3, 174, 87, 0, 2390, 2392, 3, 266, 133, 0, 2391, 2390, 1, 0, 0, 0, 2392, 2395, 1, 0, 0, 0, 2393, 2391, 1, 0, 0, 0, 2393, 2394, 1, 0, 0, 0, 2394, 2397, 1, 0, 0, 0, 2395, 2393, 1, 0, 0, 0, 2396, 2373, 1, 0, 0, 0, 2396, 2389, 1, 0, 0, 0, 2397, 2455, 1, 0, 0, 0, 2398, 2400, 5, 199, 0, 0, 2399, 2401, 3, 164, 82, 0, 2400, 2399, 1, 0, 0, 0, 2400, 2401, 1, 0, 0, 0, 2401, 2402, 1, 0, 0, 0, 2402, 2403, 5, 2, 0, 0, 2403, 2408, 3, 148, 74, 0, 2404, 2405, 5, 6, 0, 0, 2405, 2407, 3, 148, 74, 0, 2406, 2404, 1, 0, 0, 0, 2407, 2410, 1, 0, 0, 0, 2408, 2406, 1, 0, 0, 0, 2408, 2409, 1, 0, 0, 0, 2409, 2411, 1, 0, 0, 0, 2410, 2408, 1, 0, 0, 0, 2411, 2413, 5, 3, 0, 0, 2412, 2414, 3, 144, 72, 0, 2413, 2412, 1, 0, 0, 0, 2413, 2414, 1, 0, 0, 0, 2414, 2416, 1, 0, 0, 0, 2415, 2417, 3, 394, 197, 0, 2416, 2415, 1, 0, 0, 0, 2416, 2417, 1, 0, 0, 0, 2417, 2419, 1, 0, 0, 0, 2418, 2420, 3, 172, 86, 0, 2419, 2418, 1, 0, 0, 0, 2419, 2420, 1, 0, 0, 0, 2420, 2426, 1, 0, 0, 0, 2421, 2422, 5, 103, 0, 0, 2422, 2423, 5, 2, 0, 0, 2423, 2424, 3, 670, 335, 0, 2424, 2425, 5, 3, 0, 0, 2425, 2427, 1, 0, 0, 0, 2426, 2421, 1, 0, 0, 0, 2426, 2427, 1, 0, 0, 0, 2427, 2431, 1, 0, 0, 0, 2428, 2430, 3, 266, 133, 0, 2429, 2428, 1, 0, 0, 0, 2430, 2433, 1, 0, 0, 0, 2431, 2429, 1, 0, 0, 0, 2431, 2432, 1, 0, 0, 0, 2432, 2455, 1, 0, 0, 0, 2433, 2431, 1, 0, 0, 0, 2434, 2435, 5, 63, 0, 0, 2435, 2436, 5, 245, 0, 0, 2436, 2437, 3, 138, 69, 0, 2437, 2438, 5, 86, 0, 0, 2438, 2440, 3, 784, 392, 0, 2439, 2441, 3, 138, 69, 0, 2440, 2439, 1, 0, 0, 0, 2440, 2441, 1, 0, 0, 0, 2441, 2443, 1, 0, 0, 0, 2442, 2444, 3, 146, 73, 0, 2443, 2442, 1, 0, 0, 0, 2443, 2444, 1, 0, 0, 0, 2444, 2446, 1, 0, 0, 0, 2445, 2447, 3, 150, 75, 0, 2446, 2445, 1, 0, 0, 0, 2446, 2447, 1, 0, 0, 0, 2447, 2451, 1, 0, 0, 0, 2448, 2450, 3, 266, 133, 0, 2449, 2448, 1, 0, 0, 0, 2450, 2453, 1, 0, 0, 0, 2451, 2449, 1, 0, 0, 0, 2451, 2452, 1, 0, 0, 0, 2452, 2455, 1, 0, 0, 0, 2453, 2451, 1, 0, 0, 0, 2454, 2358, 1, 0, 0, 0, 2454, 2371, 1, 0, 0, 0, 2454, 2398, 1, 0, 0, 0, 2454, 2434, 1, 0, 0, 0, 2455, 137, 1, 0, 0, 0, 2456, 2457, 5, 2, 0, 0, 2457, 2458, 3, 142, 71, 0, 2458, 2459, 5, 3, 0, 0, 2459, 139, 1, 0, 0, 0, 2460, 2461, 5, 2, 0, 0, 2461, 2466, 3, 810, 405, 0, 2462, 2463, 5, 6, 0, 0, 2463, 2465, 3, 810, 405, 0, 2464, 2462, 1, 0, 0, 0, 2465, 2468, 1, 0, 0, 0, 2466, 2464, 1, 0, 0, 0, 2466, 2467, 1, 0, 0, 0, 2467, 2469, 1, 0, 0, 0, 2468, 2466, 1, 0, 0, 0, 2469, 2470, 5, 3, 0, 0, 2470, 141, 1, 0, 0, 0, 2471, 2476, 3, 806, 403, 0, 2472, 2473, 5, 6, 0, 0, 2473, 2475, 3, 806, 403, 0, 2474, 2472, 1, 0, 0, 0, 2475, 2478, 1, 0, 0, 0, 2476, 2474, 1, 0, 0, 0, 2476, 2477, 1, 0, 0, 0, 2477, 143, 1, 0, 0, 0, 2478, 2476, 1, 0, 0, 0, 2479, 2480, 5, 441, 0, 0, 2480, 2481, 3, 138, 69, 0, 2481, 145, 1, 0, 0, 0, 2482, 2483, 5, 258, 0, 0, 2483, 2484, 7, 25, 0, 0, 2484, 147, 1, 0, 0, 0, 2485, 2486, 3, 356, 178, 0, 2486, 2493, 5, 105, 0, 0, 2487, 2494, 3, 408, 204, 0, 2488, 2489, 5, 278, 0, 0, 2489, 2490, 5, 2, 0, 0, 2490, 2491, 3, 408, 204, 0, 2491, 2492, 5, 3, 0, 0, 2492, 2494, 1, 0, 0, 0, 2493, 2487, 1, 0, 0, 0, 2493, 2488, 1, 0, 0, 0, 2494, 149, 1, 0, 0, 0, 2495, 2497, 3, 152, 76, 0, 2496, 2498, 3, 154, 77, 0, 2497, 2496, 1, 0, 0, 0, 2497, 2498, 1, 0, 0, 0, 2498, 2504, 1, 0, 0, 0, 2499, 2501, 3, 154, 77, 0, 2500, 2502, 3, 152, 76, 0, 2501, 2500, 1, 0, 0, 0, 2501, 2502, 1, 0, 0, 0, 2502, 2504, 1, 0, 0, 0, 2503, 2495, 1, 0, 0, 0, 2503, 2499, 1, 0, 0, 0, 2504, 151, 1, 0, 0, 0, 2505, 2506, 5, 80, 0, 0, 2506, 2507, 5, 369, 0, 0, 2507, 2508, 3, 156, 78, 0, 2508, 153, 1, 0, 0, 0, 2509, 2510, 5, 80, 0, 0, 2510, 2511, 5, 182, 0, 0, 2511, 2512, 3, 156, 78, 0, 2512, 155, 1, 0, 0, 0, 2513, 2514, 5, 269, 0, 0, 2514, 2523, 5, 132, 0, 0, 2515, 2523, 5, 315, 0, 0, 2516, 2523, 5, 150, 0, 0, 2517, 2518, 5, 333, 0, 0, 2518, 2520, 7, 26, 0, 0, 2519, 2521, 3, 142, 71, 0, 2520, 2519, 1, 0, 0, 0, 2520, 2521, 1, 0, 0, 0, 2521, 2523, 1, 0, 0, 0, 2522, 2513, 1, 0, 0, 0, 2522, 2515, 1, 0, 0, 0, 2522, 2516, 1, 0, 0, 0, 2522, 2517, 1, 0, 0, 0, 2523, 157, 1, 0, 0, 0, 2524, 2525, 5, 238, 0, 0, 2525, 2526, 5, 2, 0, 0, 2526, 2527, 3, 764, 382, 0, 2527, 2528, 5, 3, 0, 0, 2528, 159, 1, 0, 0, 0, 2529, 2530, 5, 285, 0, 0, 2530, 2531, 5, 147, 0, 0, 2531, 2532, 3, 826, 413, 0, 2532, 2533, 5, 2, 0, 0, 2533, 2538, 3, 162, 81, 0, 2534, 2535, 5, 6, 0, 0, 2535, 2537, 3, 162, 81, 0, 2536, 2534, 1, 0, 0, 0, 2537, 2540, 1, 0, 0, 0, 2538, 2536, 1, 0, 0, 0, 2538, 2539, 1, 0, 0, 0, 2539, 2541, 1, 0, 0, 0, 2540, 2538, 1, 0, 0, 0, 2541, 2542, 5, 3, 0, 0, 2542, 161, 1, 0, 0, 0, 2543, 2550, 3, 806, 403, 0, 2544, 2550, 3, 684, 342, 0, 2545, 2546, 5, 2, 0, 0, 2546, 2547, 3, 670, 335, 0, 2547, 2548, 5, 3, 0, 0, 2548, 2550, 1, 0, 0, 0, 2549, 2543, 1, 0, 0, 0, 2549, 2544, 1, 0, 0, 0, 2549, 2545, 1, 0, 0, 0, 2550, 2552, 1, 0, 0, 0, 2551, 2553, 3, 90, 45, 0, 2552, 2551, 1, 0, 0, 0, 2552, 2553, 1, 0, 0, 0, 2553, 2555, 1, 0, 0, 0, 2554, 2556, 3, 310, 155, 0, 2555, 2554, 1, 0, 0, 0, 2555, 2556, 1, 0, 0, 0, 2556, 163, 1, 0, 0, 0, 2557, 2558, 5, 100, 0, 0, 2558, 2559, 3, 826, 413, 0, 2559, 165, 1, 0, 0, 0, 2560, 2561, 5, 105, 0, 0, 2561, 2565, 3, 92, 46, 0, 2562, 2563, 7, 27, 0, 0, 2563, 2565, 5, 277, 0, 0, 2564, 2560, 1, 0, 0, 0, 2564, 2562, 1, 0, 0, 0, 2565, 167, 1, 0, 0, 0, 2566, 2567, 5, 80, 0, 0, 2567, 2573, 5, 161, 0, 0, 2568, 2574, 5, 191, 0, 0, 2569, 2570, 5, 182, 0, 0, 2570, 2574, 5, 320, 0, 0, 2571, 2572, 5, 292, 0, 0, 2572, 2574, 5, 320, 0, 0, 2573, 2568, 1, 0, 0, 0, 2573, 2569, 1, 0, 0, 0, 2573, 2571, 1, 0, 0, 0, 2574, 169, 1, 0, 0, 0, 2575, 2576, 5, 351, 0, 0, 2576, 2577, 3, 774, 387, 0, 2577, 171, 1, 0, 0, 0, 2578, 2579, 5, 100, 0, 0, 2579, 2580, 5, 226, 0, 0, 2580, 2581, 3, 170, 85, 0, 2581, 173, 1, 0, 0, 0, 2582, 2583, 5, 100, 0, 0, 2583, 2584, 5, 226, 0, 0, 2584, 2585, 3, 826, 413, 0, 2585, 175, 1, 0, 0, 0, 2586, 2587, 5, 46, 0, 0, 2587, 2592, 5, 342, 0, 0, 2588, 2590, 3, 288, 144, 0, 2589, 2588, 1, 0, 0, 0, 2589, 2590, 1, 0, 0, 0, 2590, 2591, 1, 0, 0, 0, 2591, 2593, 3, 310, 155, 0, 2592, 2589, 1, 0, 0, 0, 2592, 2593, 1, 0, 0, 0, 2593, 2595, 1, 0, 0, 0, 2594, 2596, 3, 138, 69, 0, 2595, 2594, 1, 0, 0, 0, 2595, 2596, 1, 0, 0, 0, 2596, 2597, 1, 0, 0, 0, 2597, 2607, 5, 80, 0, 0, 2598, 2603, 3, 734, 367, 0, 2599, 2600, 5, 6, 0, 0, 2600, 2602, 3, 734, 367, 0, 2601, 2599, 1, 0, 0, 0, 2602, 2605, 1, 0, 0, 0, 2603, 2601, 1, 0, 0, 0, 2603, 2604, 1, 0, 0, 0, 2604, 2608, 1, 0, 0, 0, 2605, 2603, 1, 0, 0, 0, 2606, 2608, 3, 728, 364, 0, 2607, 2598, 1, 0, 0, 0, 2607, 2606, 1, 0, 0, 0, 2608, 2609, 1, 0, 0, 0, 2609, 2610, 3, 604, 302, 0, 2610, 177, 1, 0, 0, 0, 2611, 2612, 5, 138, 0, 0, 2612, 2614, 5, 342, 0, 0, 2613, 2615, 3, 416, 208, 0, 2614, 2613, 1, 0, 0, 0, 2614, 2615, 1, 0, 0, 0, 2615, 2616, 1, 0, 0, 0, 2616, 2617, 3, 310, 155, 0, 2617, 2618, 5, 333, 0, 0, 2618, 2619, 5, 342, 0, 0, 2619, 2620, 3, 820, 410, 0, 2620, 179, 1, 0, 0, 0, 2621, 2623, 5, 46, 0, 0, 2622, 2624, 3, 116, 58, 0, 2623, 2622, 1, 0, 0, 0, 2623, 2624, 1, 0, 0, 0, 2624, 2625, 1, 0, 0, 0, 2625, 2627, 5, 92, 0, 0, 2626, 2628, 3, 288, 144, 0, 2627, 2626, 1, 0, 0, 0, 2627, 2628, 1, 0, 0, 0, 2628, 2629, 1, 0, 0, 0, 2629, 2630, 3, 182, 91, 0, 2630, 2631, 5, 36, 0, 0, 2631, 2633, 3, 554, 277, 0, 2632, 2634, 3, 184, 92, 0, 2633, 2632, 1, 0, 0, 0, 2633, 2634, 1, 0, 0, 0, 2634, 181, 1, 0, 0, 0, 2635, 2637, 3, 776, 388, 0, 2636, 2638, 3, 140, 70, 0, 2637, 2636, 1, 0, 0, 0, 2637, 2638, 1, 0, 0, 0, 2638, 2640, 1, 0, 0, 0, 2639, 2641, 3, 164, 82, 0, 2640, 2639, 1, 0, 0, 0, 2640, 2641, 1, 0, 0, 0, 2641, 2643, 1, 0, 0, 0, 2642, 2644, 3, 166, 83, 0, 2643, 2642, 1, 0, 0, 0, 2643, 2644, 1, 0, 0, 0, 2644, 2646, 1, 0, 0, 0, 2645, 2647, 3, 168, 84, 0, 2646, 2645, 1, 0, 0, 0, 2646, 2647, 1, 0, 0, 0, 2647, 2649, 1, 0, 0, 0, 2648, 2650, 3, 170, 85, 0, 2649, 2648, 1, 0, 0, 0, 2649, 2650, 1, 0, 0, 0, 2650, 183, 1, 0, 0, 0, 2651, 2655, 5, 105, 0, 0, 2652, 2656, 5, 174, 0, 0, 2653, 2654, 5, 269, 0, 0, 2654, 2656, 5, 174, 0, 0, 2655, 2652, 1, 0, 0, 0, 2655, 2653, 1, 0, 0, 0, 2656, 185, 1, 0, 0, 0, 2657, 2659, 5, 46, 0, 0, 2658, 2660, 5, 367, 0, 0, 2659, 2658, 1, 0, 0, 0, 2659, 2660, 1, 0, 0, 0, 2660, 2661, 1, 0, 0, 0, 2661, 2662, 5, 259, 0, 0, 2662, 2664, 5, 376, 0, 0, 2663, 2665, 3, 288, 144, 0, 2664, 2663, 1, 0, 0, 0, 2664, 2665, 1, 0, 0, 0, 2665, 2666, 1, 0, 0, 0, 2666, 2668, 3, 780, 390, 0, 2667, 2669, 3, 140, 70, 0, 2668, 2667, 1, 0, 0, 0, 2668, 2669, 1, 0, 0, 0, 2669, 2671, 1, 0, 0, 0, 2670, 2672, 3, 164, 82, 0, 2671, 2670, 1, 0, 0, 0, 2671, 2672, 1, 0, 0, 0, 2672, 2674, 1, 0, 0, 0, 2673, 2675, 3, 94, 47, 0, 2674, 2673, 1, 0, 0, 0, 2674, 2675, 1, 0, 0, 0, 2675, 2677, 1, 0, 0, 0, 2676, 2678, 3, 170, 85, 0, 2677, 2676, 1, 0, 0, 0, 2677, 2678, 1, 0, 0, 0, 2678, 2679, 1, 0, 0, 0, 2679, 2680, 5, 36, 0, 0, 2680, 2682, 3, 554, 277, 0, 2681, 2683, 3, 184, 92, 0, 2682, 2681, 1, 0, 0, 0, 2682, 2683, 1, 0, 0, 0, 2683, 187, 1, 0, 0, 0, 2684, 2685, 5, 305, 0, 0, 2685, 2686, 5, 259, 0, 0, 2686, 2688, 5, 376, 0, 0, 2687, 2689, 5, 109, 0, 0, 2688, 2687, 1, 0, 0, 0, 2688, 2689, 1, 0, 0, 0, 2689, 2690, 1, 0, 0, 0, 2690, 2692, 3, 782, 391, 0, 2691, 2693, 3, 184, 92, 0, 2692, 2691, 1, 0, 0, 0, 2692, 2693, 1, 0, 0, 0, 2693, 189, 1, 0, 0, 0, 2694, 2696, 5, 46, 0, 0, 2695, 2697, 3, 116, 58, 0, 2696, 2695, 1, 0, 0, 0, 2696, 2697, 1, 0, 0, 0, 2697, 2698, 1, 0, 0, 0, 2698, 2700, 5, 328, 0, 0, 2699, 2701, 3, 288, 144, 0, 2700, 2699, 1, 0, 0, 0, 2700, 2701, 1, 0, 0, 0, 2701, 2702, 1, 0, 0, 0, 2702, 2708, 3, 784, 392, 0, 2703, 2705, 3, 194, 97, 0, 2704, 2703, 1, 0, 0, 0, 2705, 2706, 1, 0, 0, 0, 2706, 2704, 1, 0, 0, 0, 2706, 2707, 1, 0, 0, 0, 2707, 2709, 1, 0, 0, 0, 2708, 2704, 1, 0, 0, 0, 2708, 2709, 1, 0, 0, 0, 2709, 191, 1, 0, 0, 0, 2710, 2711, 5, 138, 0, 0, 2711, 2713, 5, 328, 0, 0, 2712, 2714, 3, 416, 208, 0, 2713, 2712, 1, 0, 0, 0, 2713, 2714, 1, 0, 0, 0, 2714, 2715, 1, 0, 0, 0, 2715, 2717, 3, 784, 392, 0, 2716, 2718, 3, 194, 97, 0, 2717, 2716, 1, 0, 0, 0, 2718, 2719, 1, 0, 0, 0, 2719, 2717, 1, 0, 0, 0, 2719, 2720, 1, 0, 0, 0, 2720, 193, 1, 0, 0, 0, 2721, 2722, 5, 36, 0, 0, 2722, 2755, 3, 650, 325, 0, 2723, 2725, 5, 148, 0, 0, 2724, 2726, 3, 196, 98, 0, 2725, 2724, 1, 0, 0, 0, 2725, 2726, 1, 0, 0, 0, 2726, 2755, 1, 0, 0, 0, 2727, 2729, 5, 225, 0, 0, 2728, 2730, 5, 147, 0, 0, 2729, 2728, 1, 0, 0, 0, 2729, 2730, 1, 0, 0, 0, 2730, 2731, 1, 0, 0, 0, 2731, 2755, 3, 196, 98, 0, 2732, 2733, 7, 28, 0, 0, 2733, 2755, 3, 196, 98, 0, 2734, 2735, 5, 269, 0, 0, 2735, 2755, 7, 29, 0, 0, 2736, 2737, 5, 281, 0, 0, 2737, 2738, 5, 147, 0, 0, 2738, 2755, 3, 806, 403, 0, 2739, 2740, 5, 328, 0, 0, 2740, 2741, 5, 266, 0, 0, 2741, 2755, 3, 310, 155, 0, 2742, 2744, 5, 340, 0, 0, 2743, 2745, 5, 105, 0, 0, 2744, 2743, 1, 0, 0, 0, 2744, 2745, 1, 0, 0, 0, 2745, 2746, 1, 0, 0, 0, 2746, 2755, 3, 196, 98, 0, 2747, 2749, 5, 314, 0, 0, 2748, 2750, 5, 105, 0, 0, 2749, 2748, 1, 0, 0, 0, 2749, 2750, 1, 0, 0, 0, 2750, 2752, 1, 0, 0, 0, 2751, 2753, 3, 196, 98, 0, 2752, 2751, 1, 0, 0, 0, 2752, 2753, 1, 0, 0, 0, 2753, 2755, 1, 0, 0, 0, 2754, 2721, 1, 0, 0, 0, 2754, 2723, 1, 0, 0, 0, 2754, 2727, 1, 0, 0, 0, 2754, 2732, 1, 0, 0, 0, 2754, 2734, 1, 0, 0, 0, 2754, 2736, 1, 0, 0, 0, 2754, 2739, 1, 0, 0, 0, 2754, 2742, 1, 0, 0, 0, 2754, 2747, 1, 0, 0, 0, 2755, 195, 1, 0, 0, 0, 2756, 2758, 7, 30, 0, 0, 2757, 2756, 1, 0, 0, 0, 2757, 2758, 1, 0, 0, 0, 2758, 2759, 1, 0, 0, 0, 2759, 2762, 5, 576, 0, 0, 2760, 2762, 3, 820, 410, 0, 2761, 2757, 1, 0, 0, 0, 2761, 2760, 1, 0, 0, 0, 2762, 197, 1, 0, 0, 0, 2763, 2765, 5, 46, 0, 0, 2764, 2766, 3, 360, 180, 0, 2765, 2764, 1, 0, 0, 0, 2765, 2766, 1, 0, 0, 0, 2766, 2768, 1, 0, 0, 0, 2767, 2769, 5, 359, 0, 0, 2768, 2767, 1, 0, 0, 0, 2768, 2769, 1, 0, 0, 0, 2769, 2771, 1, 0, 0, 0, 2770, 2772, 5, 295, 0, 0, 2771, 2770, 1, 0, 0, 0, 2771, 2772, 1, 0, 0, 0, 2772, 2773, 1, 0, 0, 0, 2773, 2774, 5, 247, 0, 0, 2774, 2787, 3, 826, 413, 0, 2775, 2776, 5, 215, 0, 0, 2776, 2779, 3, 310, 155, 0, 2777, 2778, 5, 239, 0, 0, 2778, 2780, 3, 310, 155, 0, 2779, 2777, 1, 0, 0, 0, 2779, 2780, 1, 0, 0, 0, 2780, 2785, 1, 0, 0, 0, 2781, 2782, 5, 373, 0, 0, 2782, 2786, 3, 310, 155, 0, 2783, 2784, 5, 269, 0, 0, 2784, 2786, 5, 373, 0, 0, 2785, 2781, 1, 0, 0, 0, 2785, 2783, 1, 0, 0, 0, 2785, 2786, 1, 0, 0, 0, 2786, 2788, 1, 0, 0, 0, 2787, 2775, 1, 0, 0, 0, 2787, 2788, 1, 0, 0, 0, 2788, 199, 1, 0, 0, 0, 2789, 2790, 5, 46, 0, 0, 2790, 2793, 3, 170, 85, 0, 2791, 2792, 5, 282, 0, 0, 2792, 2794, 3, 822, 411, 0, 2793, 2791, 1, 0, 0, 0, 2793, 2794, 1, 0, 0, 0, 2794, 2795, 1, 0, 0, 0, 2795, 2796, 5, 255, 0, 0, 2796, 2798, 3, 816, 408, 0, 2797, 2799, 3, 94, 47, 0, 2798, 2797, 1, 0, 0, 0, 2798, 2799, 1, 0, 0, 0, 2799, 201, 1, 0, 0, 0, 2800, 2801, 5, 46, 0, 0, 2801, 2803, 5, 204, 0, 0, 2802, 2804, 3, 288, 144, 0, 2803, 2802, 1, 0, 0, 0, 2803, 2804, 1, 0, 0, 0, 2804, 2805, 1, 0, 0, 0, 2805, 2807, 3, 826, 413, 0, 2806, 2808, 5, 105, 0, 0, 2807, 2806, 1, 0, 0, 0, 2807, 2808, 1, 0, 0, 0, 2808, 2816, 1, 0, 0, 0, 2809, 2810, 5, 323, 0, 0, 2810, 2815, 3, 794, 397, 0, 2811, 2812, 7, 31, 0, 0, 2812, 2815, 3, 58, 29, 0, 2813, 2815, 5, 150, 0, 0, 2814, 2809, 1, 0, 0, 0, 2814, 2811, 1, 0, 0, 0, 2814, 2813, 1, 0, 0, 0, 2815, 2818, 1, 0, 0, 0, 2816, 2814, 1, 0, 0, 0, 2816, 2817, 1, 0, 0, 0, 2817, 203, 1, 0, 0, 0, 2818, 2816, 1, 0, 0, 0, 2819, 2820, 5, 138, 0, 0, 2820, 2821, 5, 204, 0, 0, 2821, 2822, 3, 826, 413, 0, 2822, 2827, 5, 369, 0, 0, 2823, 2824, 5, 94, 0, 0, 2824, 2826, 3, 58, 29, 0, 2825, 2823, 1, 0, 0, 0, 2826, 2829, 1, 0, 0, 0, 2827, 2825, 1, 0, 0, 0, 2827, 2828, 1, 0, 0, 0, 2828, 205, 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, 826, 413, 0, 2833, 2866, 7, 6, 0, 0, 2834, 2835, 5, 443, 0, 0, 2835, 2836, 5, 62, 0, 0, 2836, 2837, 3, 648, 324, 0, 2837, 2838, 5, 247, 0, 0, 2838, 2839, 3, 826, 413, 0, 2839, 2867, 1, 0, 0, 0, 2840, 2841, 5, 442, 0, 0, 2841, 2867, 3, 368, 184, 0, 2842, 2843, 5, 296, 0, 0, 2843, 2867, 3, 372, 186, 0, 2844, 2845, 5, 278, 0, 0, 2845, 2846, 7, 32, 0, 0, 2846, 2847, 3, 310, 155, 0, 2847, 2848, 3, 164, 82, 0, 2848, 2867, 1, 0, 0, 0, 2849, 2850, 5, 278, 0, 0, 2850, 2867, 3, 410, 205, 0, 2851, 2852, 5, 211, 0, 0, 2852, 2867, 3, 376, 188, 0, 2853, 2854, 7, 33, 0, 0, 2854, 2867, 3, 648, 324, 0, 2855, 2856, 5, 41, 0, 0, 2856, 2857, 5, 2, 0, 0, 2857, 2858, 3, 648, 324, 0, 2858, 2859, 5, 36, 0, 0, 2859, 2860, 3, 648, 324, 0, 2860, 2861, 5, 3, 0, 0, 2861, 2867, 1, 0, 0, 0, 2862, 2863, 5, 136, 0, 0, 2863, 2867, 3, 388, 194, 0, 2864, 2867, 3, 306, 153, 0, 2865, 2867, 3, 304, 152, 0, 2866, 2834, 1, 0, 0, 0, 2866, 2840, 1, 0, 0, 0, 2866, 2842, 1, 0, 0, 0, 2866, 2844, 1, 0, 0, 0, 2866, 2849, 1, 0, 0, 0, 2866, 2851, 1, 0, 0, 0, 2866, 2853, 1, 0, 0, 0, 2866, 2855, 1, 0, 0, 0, 2866, 2862, 1, 0, 0, 0, 2866, 2864, 1, 0, 0, 0, 2866, 2865, 1, 0, 0, 0, 2867, 207, 1, 0, 0, 0, 2868, 2869, 5, 46, 0, 0, 2869, 2870, 5, 63, 0, 0, 2870, 2871, 5, 174, 0, 0, 2871, 2872, 5, 381, 0, 0, 2872, 2878, 3, 826, 413, 0, 2873, 2875, 3, 210, 105, 0, 2874, 2873, 1, 0, 0, 0, 2875, 2876, 1, 0, 0, 0, 2876, 2874, 1, 0, 0, 0, 2876, 2877, 1, 0, 0, 0, 2877, 2879, 1, 0, 0, 0, 2878, 2874, 1, 0, 0, 0, 2878, 2879, 1, 0, 0, 0, 2879, 2881, 1, 0, 0, 0, 2880, 2882, 3, 214, 107, 0, 2881, 2880, 1, 0, 0, 0, 2881, 2882, 1, 0, 0, 0, 2882, 209, 1, 0, 0, 0, 2883, 2885, 7, 34, 0, 0, 2884, 2886, 3, 310, 155, 0, 2885, 2884, 1, 0, 0, 0, 2885, 2886, 1, 0, 0, 0, 2886, 2890, 1, 0, 0, 0, 2887, 2888, 5, 269, 0, 0, 2888, 2890, 7, 34, 0, 0, 2889, 2883, 1, 0, 0, 0, 2889, 2887, 1, 0, 0, 0, 2890, 211, 1, 0, 0, 0, 2891, 2892, 5, 138, 0, 0, 2892, 2893, 5, 63, 0, 0, 2893, 2894, 5, 174, 0, 0, 2894, 2895, 5, 381, 0, 0, 2895, 2909, 3, 826, 413, 0, 2896, 2898, 3, 210, 105, 0, 2897, 2896, 1, 0, 0, 0, 2898, 2899, 1, 0, 0, 0, 2899, 2897, 1, 0, 0, 0, 2899, 2900, 1, 0, 0, 0, 2900, 2902, 1, 0, 0, 0, 2901, 2897, 1, 0, 0, 0, 2901, 2902, 1, 0, 0, 0, 2902, 2903, 1, 0, 0, 0, 2903, 2910, 3, 216, 108, 0, 2904, 2906, 3, 210, 105, 0, 2905, 2904, 1, 0, 0, 0, 2906, 2907, 1, 0, 0, 0, 2907, 2905, 1, 0, 0, 0, 2907, 2908, 1, 0, 0, 0, 2908, 2910, 1, 0, 0, 0, 2909, 2901, 1, 0, 0, 0, 2909, 2905, 1, 0, 0, 0, 2910, 213, 1, 0, 0, 0, 2911, 2912, 5, 280, 0, 0, 2912, 2913, 5, 2, 0, 0, 2913, 2918, 3, 220, 110, 0, 2914, 2915, 5, 6, 0, 0, 2915, 2917, 3, 220, 110, 0, 2916, 2914, 1, 0, 0, 0, 2917, 2920, 1, 0, 0, 0, 2918, 2916, 1, 0, 0, 0, 2918, 2919, 1, 0, 0, 0, 2919, 2921, 1, 0, 0, 0, 2920, 2918, 1, 0, 0, 0, 2921, 2922, 5, 3, 0, 0, 2922, 215, 1, 0, 0, 0, 2923, 2924, 5, 280, 0, 0, 2924, 2925, 5, 2, 0, 0, 2925, 2930, 3, 218, 109, 0, 2926, 2927, 5, 6, 0, 0, 2927, 2929, 3, 218, 109, 0, 2928, 2926, 1, 0, 0, 0, 2929, 2932, 1, 0, 0, 0, 2930, 2928, 1, 0, 0, 0, 2930, 2931, 1, 0, 0, 0, 2931, 2933, 1, 0, 0, 0, 2932, 2930, 1, 0, 0, 0, 2933, 2934, 5, 3, 0, 0, 2934, 217, 1, 0, 0, 0, 2935, 2936, 7, 35, 0, 0, 2936, 2937, 3, 220, 110, 0, 2937, 219, 1, 0, 0, 0, 2938, 2939, 3, 832, 416, 0, 2939, 2940, 3, 816, 408, 0, 2940, 221, 1, 0, 0, 0, 2941, 2942, 5, 46, 0, 0, 2942, 2944, 5, 331, 0, 0, 2943, 2945, 3, 288, 144, 0, 2944, 2943, 1, 0, 0, 0, 2944, 2945, 1, 0, 0, 0, 2945, 2946, 1, 0, 0, 0, 2946, 2949, 3, 826, 413, 0, 2947, 2948, 5, 360, 0, 0, 2948, 2950, 3, 816, 408, 0, 2949, 2947, 1, 0, 0, 0, 2949, 2950, 1, 0, 0, 0, 2950, 2952, 1, 0, 0, 0, 2951, 2953, 3, 224, 112, 0, 2952, 2951, 1, 0, 0, 0, 2952, 2953, 1, 0, 0, 0, 2953, 2954, 1, 0, 0, 0, 2954, 2955, 5, 63, 0, 0, 2955, 2956, 5, 174, 0, 0, 2956, 2957, 5, 381, 0, 0, 2957, 2959, 3, 826, 413, 0, 2958, 2960, 3, 214, 107, 0, 2959, 2958, 1, 0, 0, 0, 2959, 2960, 1, 0, 0, 0, 2960, 223, 1, 0, 0, 0, 2961, 2964, 5, 375, 0, 0, 2962, 2965, 3, 816, 408, 0, 2963, 2965, 5, 78, 0, 0, 2964, 2962, 1, 0, 0, 0, 2964, 2963, 1, 0, 0, 0, 2965, 225, 1, 0, 0, 0, 2966, 2967, 5, 138, 0, 0, 2967, 2968, 5, 331, 0, 0, 2968, 2974, 3, 826, 413, 0, 2969, 2975, 3, 216, 108, 0, 2970, 2972, 3, 224, 112, 0, 2971, 2973, 3, 216, 108, 0, 2972, 2971, 1, 0, 0, 0, 2972, 2973, 1, 0, 0, 0, 2973, 2975, 1, 0, 0, 0, 2974, 2969, 1, 0, 0, 0, 2974, 2970, 1, 0, 0, 0, 2975, 227, 1, 0, 0, 0, 2976, 2977, 5, 46, 0, 0, 2977, 2978, 5, 63, 0, 0, 2978, 2980, 5, 92, 0, 0, 2979, 2981, 3, 288, 144, 0, 2980, 2979, 1, 0, 0, 0, 2980, 2981, 1, 0, 0, 0, 2981, 2982, 1, 0, 0, 0, 2982, 2983, 3, 776, 388, 0, 2983, 2985, 5, 2, 0, 0, 2984, 2986, 3, 120, 60, 0, 2985, 2984, 1, 0, 0, 0, 2985, 2986, 1, 0, 0, 0, 2986, 2987, 1, 0, 0, 0, 2987, 2989, 5, 3, 0, 0, 2988, 2990, 3, 158, 79, 0, 2989, 2988, 1, 0, 0, 0, 2989, 2990, 1, 0, 0, 0, 2990, 2991, 1, 0, 0, 0, 2991, 2992, 5, 331, 0, 0, 2992, 2994, 3, 826, 413, 0, 2993, 2995, 3, 214, 107, 0, 2994, 2993, 1, 0, 0, 0, 2994, 2995, 1, 0, 0, 0, 2995, 3016, 1, 0, 0, 0, 2996, 2997, 5, 46, 0, 0, 2997, 2998, 5, 63, 0, 0, 2998, 3000, 5, 92, 0, 0, 2999, 3001, 3, 288, 144, 0, 3000, 2999, 1, 0, 0, 0, 3000, 3001, 1, 0, 0, 0, 3001, 3002, 1, 0, 0, 0, 3002, 3003, 3, 776, 388, 0, 3003, 3004, 5, 285, 0, 0, 3004, 3005, 5, 275, 0, 0, 3005, 3007, 3, 778, 389, 0, 3006, 3008, 3, 118, 59, 0, 3007, 3006, 1, 0, 0, 0, 3007, 3008, 1, 0, 0, 0, 3008, 3009, 1, 0, 0, 0, 3009, 3010, 3, 98, 49, 0, 3010, 3011, 5, 331, 0, 0, 3011, 3013, 3, 826, 413, 0, 3012, 3014, 3, 214, 107, 0, 3013, 3012, 1, 0, 0, 0, 3013, 3014, 1, 0, 0, 0, 3014, 3016, 1, 0, 0, 0, 3015, 2976, 1, 0, 0, 0, 3015, 2996, 1, 0, 0, 0, 3016, 229, 1, 0, 0, 0, 3017, 3018, 5, 444, 0, 0, 3018, 3019, 5, 63, 0, 0, 3019, 3020, 5, 323, 0, 0, 3020, 3030, 3, 794, 397, 0, 3021, 3022, 5, 74, 0, 0, 3022, 3025, 5, 94, 0, 0, 3023, 3025, 5, 59, 0, 0, 3024, 3021, 1, 0, 0, 0, 3024, 3023, 1, 0, 0, 0, 3025, 3026, 1, 0, 0, 0, 3026, 3027, 5, 2, 0, 0, 3027, 3028, 3, 624, 312, 0, 3028, 3029, 5, 3, 0, 0, 3029, 3031, 1, 0, 0, 0, 3030, 3024, 1, 0, 0, 0, 3030, 3031, 1, 0, 0, 0, 3031, 3032, 1, 0, 0, 0, 3032, 3033, 5, 64, 0, 0, 3033, 3034, 5, 331, 0, 0, 3034, 3035, 3, 826, 413, 0, 3035, 3036, 5, 71, 0, 0, 3036, 3038, 3, 826, 413, 0, 3037, 3039, 3, 214, 107, 0, 3038, 3037, 1, 0, 0, 0, 3038, 3039, 1, 0, 0, 0, 3039, 231, 1, 0, 0, 0, 3040, 3041, 5, 46, 0, 0, 3041, 3042, 5, 99, 0, 0, 3042, 3044, 5, 257, 0, 0, 3043, 3045, 3, 288, 144, 0, 3044, 3043, 1, 0, 0, 0, 3044, 3045, 1, 0, 0, 0, 3045, 3046, 1, 0, 0, 0, 3046, 3049, 5, 62, 0, 0, 3047, 3050, 3, 822, 411, 0, 3048, 3050, 5, 99, 0, 0, 3049, 3047, 1, 0, 0, 0, 3049, 3048, 1, 0, 0, 0, 3050, 3051, 1, 0, 0, 0, 3051, 3052, 5, 331, 0, 0, 3052, 3054, 3, 826, 413, 0, 3053, 3055, 3, 214, 107, 0, 3054, 3053, 1, 0, 0, 0, 3054, 3055, 1, 0, 0, 0, 3055, 233, 1, 0, 0, 0, 3056, 3057, 5, 138, 0, 0, 3057, 3058, 5, 99, 0, 0, 3058, 3059, 5, 257, 0, 0, 3059, 3062, 5, 62, 0, 0, 3060, 3063, 3, 822, 411, 0, 3061, 3063, 5, 99, 0, 0, 3062, 3060, 1, 0, 0, 0, 3062, 3061, 1, 0, 0, 0, 3063, 3064, 1, 0, 0, 0, 3064, 3065, 5, 331, 0, 0, 3065, 3066, 3, 826, 413, 0, 3066, 3067, 3, 216, 108, 0, 3067, 235, 1, 0, 0, 0, 3068, 3069, 5, 46, 0, 0, 3069, 3070, 5, 445, 0, 0, 3070, 3071, 3, 826, 413, 0, 3071, 3072, 5, 80, 0, 0, 3072, 3079, 3, 784, 392, 0, 3073, 3077, 5, 36, 0, 0, 3074, 3078, 5, 541, 0, 0, 3075, 3078, 5, 542, 0, 0, 3076, 3078, 3, 834, 417, 0, 3077, 3074, 1, 0, 0, 0, 3077, 3075, 1, 0, 0, 0, 3077, 3076, 1, 0, 0, 0, 3078, 3080, 1, 0, 0, 0, 3079, 3073, 1, 0, 0, 0, 3079, 3080, 1, 0, 0, 0, 3080, 3083, 1, 0, 0, 0, 3081, 3082, 5, 62, 0, 0, 3082, 3084, 7, 36, 0, 0, 3083, 3081, 1, 0, 0, 0, 3083, 3084, 1, 0, 0, 0, 3084, 3087, 1, 0, 0, 0, 3085, 3086, 5, 94, 0, 0, 3086, 3088, 3, 824, 412, 0, 3087, 3085, 1, 0, 0, 0, 3087, 3088, 1, 0, 0, 0, 3088, 3090, 1, 0, 0, 0, 3089, 3091, 3, 244, 122, 0, 3090, 3089, 1, 0, 0, 0, 3090, 3091, 1, 0, 0, 0, 3091, 3093, 1, 0, 0, 0, 3092, 3094, 3, 246, 123, 0, 3093, 3092, 1, 0, 0, 0, 3093, 3094, 1, 0, 0, 0, 3094, 237, 1, 0, 0, 0, 3095, 3096, 5, 138, 0, 0, 3096, 3097, 5, 445, 0, 0, 3097, 3098, 3, 826, 413, 0, 3098, 3099, 5, 80, 0, 0, 3099, 3102, 3, 784, 392, 0, 3100, 3101, 5, 94, 0, 0, 3101, 3103, 3, 824, 412, 0, 3102, 3100, 1, 0, 0, 0, 3102, 3103, 1, 0, 0, 0, 3103, 3105, 1, 0, 0, 0, 3104, 3106, 3, 244, 122, 0, 3105, 3104, 1, 0, 0, 0, 3105, 3106, 1, 0, 0, 0, 3106, 3108, 1, 0, 0, 0, 3107, 3109, 3, 246, 123, 0, 3108, 3107, 1, 0, 0, 0, 3108, 3109, 1, 0, 0, 0, 3109, 239, 1, 0, 0, 0, 3110, 3111, 5, 138, 0, 0, 3111, 3112, 5, 296, 0, 0, 3112, 3114, 3, 800, 400, 0, 3113, 3115, 3, 362, 181, 0, 3114, 3113, 1, 0, 0, 0, 3114, 3115, 1, 0, 0, 0, 3115, 3142, 1, 0, 0, 0, 3116, 3120, 3, 242, 121, 0, 3117, 3119, 3, 242, 121, 0, 3118, 3117, 1, 0, 0, 0, 3119, 3122, 1, 0, 0, 0, 3120, 3118, 1, 0, 0, 0, 3120, 3121, 1, 0, 0, 0, 3121, 3124, 1, 0, 0, 0, 3122, 3120, 1, 0, 0, 0, 3123, 3125, 5, 315, 0, 0, 3124, 3123, 1, 0, 0, 0, 3124, 3125, 1, 0, 0, 0, 3125, 3143, 1, 0, 0, 0, 3126, 3127, 5, 309, 0, 0, 3127, 3128, 5, 94, 0, 0, 3128, 3143, 3, 802, 401, 0, 3129, 3130, 5, 282, 0, 0, 3130, 3131, 5, 94, 0, 0, 3131, 3143, 3, 822, 411, 0, 3132, 3133, 5, 333, 0, 0, 3133, 3134, 5, 323, 0, 0, 3134, 3143, 3, 32, 16, 0, 3135, 3137, 5, 269, 0, 0, 3136, 3135, 1, 0, 0, 0, 3136, 3137, 1, 0, 0, 0, 3137, 3138, 1, 0, 0, 0, 3138, 3139, 5, 462, 0, 0, 3139, 3140, 5, 80, 0, 0, 3140, 3141, 5, 204, 0, 0, 3141, 3143, 3, 826, 413, 0, 3142, 3116, 1, 0, 0, 0, 3142, 3126, 1, 0, 0, 0, 3142, 3129, 1, 0, 0, 0, 3142, 3132, 1, 0, 0, 0, 3142, 3136, 1, 0, 0, 0, 3143, 241, 1, 0, 0, 0, 3144, 3146, 5, 205, 0, 0, 3145, 3144, 1, 0, 0, 0, 3145, 3146, 1, 0, 0, 0, 3146, 3147, 1, 0, 0, 0, 3147, 3148, 5, 327, 0, 0, 3148, 3155, 5, 243, 0, 0, 3149, 3151, 5, 205, 0, 0, 3150, 3149, 1, 0, 0, 0, 3150, 3151, 1, 0, 0, 0, 3151, 3152, 1, 0, 0, 0, 3152, 3153, 5, 327, 0, 0, 3153, 3155, 5, 181, 0, 0, 3154, 3145, 1, 0, 0, 0, 3154, 3150, 1, 0, 0, 0, 3155, 3174, 1, 0, 0, 0, 3156, 3157, 5, 333, 0, 0, 3157, 3158, 3, 826, 413, 0, 3158, 3161, 7, 37, 0, 0, 3159, 3162, 3, 826, 413, 0, 3160, 3162, 5, 53, 0, 0, 3161, 3159, 1, 0, 0, 0, 3161, 3160, 1, 0, 0, 0, 3162, 3174, 1, 0, 0, 0, 3163, 3164, 5, 333, 0, 0, 3164, 3165, 3, 826, 413, 0, 3165, 3166, 5, 64, 0, 0, 3166, 3167, 5, 434, 0, 0, 3167, 3174, 1, 0, 0, 0, 3168, 3171, 5, 313, 0, 0, 3169, 3172, 3, 826, 413, 0, 3170, 3172, 5, 30, 0, 0, 3171, 3169, 1, 0, 0, 0, 3171, 3170, 1, 0, 0, 0, 3172, 3174, 1, 0, 0, 0, 3173, 3154, 1, 0, 0, 0, 3173, 3156, 1, 0, 0, 0, 3173, 3163, 1, 0, 0, 0, 3173, 3168, 1, 0, 0, 0, 3174, 243, 1, 0, 0, 0, 3175, 3176, 5, 100, 0, 0, 3176, 3177, 5, 2, 0, 0, 3177, 3178, 3, 670, 335, 0, 3178, 3179, 5, 3, 0, 0, 3179, 245, 1, 0, 0, 0, 3180, 3181, 5, 105, 0, 0, 3181, 3182, 5, 42, 0, 0, 3182, 3183, 5, 2, 0, 0, 3183, 3184, 3, 670, 335, 0, 3184, 3185, 5, 3, 0, 0, 3185, 247, 1, 0, 0, 0, 3186, 3187, 5, 46, 0, 0, 3187, 3188, 5, 131, 0, 0, 3188, 3189, 5, 446, 0, 0, 3189, 3190, 3, 826, 413, 0, 3190, 3191, 5, 360, 0, 0, 3191, 3192, 7, 38, 0, 0, 3192, 3193, 5, 215, 0, 0, 3193, 3194, 3, 310, 155, 0, 3194, 249, 1, 0, 0, 0, 3195, 3197, 5, 46, 0, 0, 3196, 3198, 3, 360, 180, 0, 3197, 3196, 1, 0, 0, 0, 3197, 3198, 1, 0, 0, 0, 3198, 3199, 1, 0, 0, 0, 3199, 3200, 5, 357, 0, 0, 3200, 3201, 3, 826, 413, 0, 3201, 3202, 3, 252, 126, 0, 3202, 3203, 3, 254, 127, 0, 3203, 3204, 5, 80, 0, 0, 3204, 3216, 3, 778, 389, 0, 3205, 3212, 5, 447, 0, 0, 3206, 3207, 7, 39, 0, 0, 3207, 3209, 7, 40, 0, 0, 3208, 3210, 5, 36, 0, 0, 3209, 3208, 1, 0, 0, 0, 3209, 3210, 1, 0, 0, 0, 3210, 3211, 1, 0, 0, 0, 3211, 3213, 3, 826, 413, 0, 3212, 3206, 1, 0, 0, 0, 3213, 3214, 1, 0, 0, 0, 3214, 3212, 1, 0, 0, 0, 3214, 3215, 1, 0, 0, 0, 3215, 3217, 1, 0, 0, 0, 3216, 3205, 1, 0, 0, 0, 3216, 3217, 1, 0, 0, 0, 3217, 3223, 1, 0, 0, 0, 3218, 3220, 5, 62, 0, 0, 3219, 3221, 5, 192, 0, 0, 3220, 3219, 1, 0, 0, 0, 3220, 3221, 1, 0, 0, 0, 3221, 3222, 1, 0, 0, 0, 3222, 3224, 7, 41, 0, 0, 3223, 3218, 1, 0, 0, 0, 3223, 3224, 1, 0, 0, 0, 3224, 3226, 1, 0, 0, 0, 3225, 3227, 3, 258, 129, 0, 3226, 3225, 1, 0, 0, 0, 3226, 3227, 1, 0, 0, 0, 3227, 3228, 1, 0, 0, 0, 3228, 3229, 5, 202, 0, 0, 3229, 3230, 3, 260, 130, 0, 3230, 3231, 5, 2, 0, 0, 3231, 3232, 3, 262, 131, 0, 3232, 3233, 5, 3, 0, 0, 3233, 3274, 1, 0, 0, 0, 3234, 3236, 5, 46, 0, 0, 3235, 3237, 3, 360, 180, 0, 3236, 3235, 1, 0, 0, 0, 3236, 3237, 1, 0, 0, 0, 3237, 3239, 1, 0, 0, 0, 3238, 3240, 5, 45, 0, 0, 3239, 3238, 1, 0, 0, 0, 3239, 3240, 1, 0, 0, 0, 3240, 3241, 1, 0, 0, 0, 3241, 3242, 5, 357, 0, 0, 3242, 3243, 3, 826, 413, 0, 3243, 3244, 3, 252, 126, 0, 3244, 3245, 3, 254, 127, 0, 3245, 3246, 5, 80, 0, 0, 3246, 3249, 3, 778, 389, 0, 3247, 3248, 5, 64, 0, 0, 3248, 3250, 3, 784, 392, 0, 3249, 3247, 1, 0, 0, 0, 3249, 3250, 1, 0, 0, 0, 3250, 3254, 1, 0, 0, 0, 3251, 3253, 3, 266, 133, 0, 3252, 3251, 1, 0, 0, 0, 3253, 3256, 1, 0, 0, 0, 3254, 3252, 1, 0, 0, 0, 3254, 3255, 1, 0, 0, 0, 3255, 3262, 1, 0, 0, 0, 3256, 3254, 1, 0, 0, 0, 3257, 3259, 5, 62, 0, 0, 3258, 3260, 5, 192, 0, 0, 3259, 3258, 1, 0, 0, 0, 3259, 3260, 1, 0, 0, 0, 3260, 3261, 1, 0, 0, 0, 3261, 3263, 7, 41, 0, 0, 3262, 3257, 1, 0, 0, 0, 3262, 3263, 1, 0, 0, 0, 3263, 3265, 1, 0, 0, 0, 3264, 3266, 3, 258, 129, 0, 3265, 3264, 1, 0, 0, 0, 3265, 3266, 1, 0, 0, 0, 3266, 3267, 1, 0, 0, 0, 3267, 3268, 5, 202, 0, 0, 3268, 3269, 3, 260, 130, 0, 3269, 3270, 5, 2, 0, 0, 3270, 3271, 3, 262, 131, 0, 3271, 3272, 5, 3, 0, 0, 3272, 3274, 1, 0, 0, 0, 3273, 3195, 1, 0, 0, 0, 3273, 3234, 1, 0, 0, 0, 3274, 251, 1, 0, 0, 0, 3275, 3280, 5, 145, 0, 0, 3276, 3280, 5, 135, 0, 0, 3277, 3278, 5, 242, 0, 0, 3278, 3280, 5, 275, 0, 0, 3279, 3275, 1, 0, 0, 0, 3279, 3276, 1, 0, 0, 0, 3279, 3277, 1, 0, 0, 0, 3280, 253, 1, 0, 0, 0, 3281, 3286, 3, 256, 128, 0, 3282, 3283, 5, 82, 0, 0, 3283, 3285, 3, 256, 128, 0, 3284, 3282, 1, 0, 0, 0, 3285, 3288, 1, 0, 0, 0, 3286, 3284, 1, 0, 0, 0, 3286, 3287, 1, 0, 0, 0, 3287, 255, 1, 0, 0, 0, 3288, 3286, 1, 0, 0, 0, 3289, 3298, 5, 241, 0, 0, 3290, 3298, 5, 182, 0, 0, 3291, 3294, 5, 369, 0, 0, 3292, 3293, 5, 275, 0, 0, 3293, 3295, 3, 142, 71, 0, 3294, 3292, 1, 0, 0, 0, 3294, 3295, 1, 0, 0, 0, 3295, 3298, 1, 0, 0, 0, 3296, 3298, 5, 358, 0, 0, 3297, 3289, 1, 0, 0, 0, 3297, 3290, 1, 0, 0, 0, 3297, 3291, 1, 0, 0, 0, 3297, 3296, 1, 0, 0, 0, 3298, 257, 1, 0, 0, 0, 3299, 3300, 5, 102, 0, 0, 3300, 3301, 5, 2, 0, 0, 3301, 3302, 3, 670, 335, 0, 3302, 3303, 5, 3, 0, 0, 3303, 259, 1, 0, 0, 0, 3304, 3305, 5, 211, 0, 0, 3305, 3309, 3, 814, 407, 0, 3306, 3307, 5, 296, 0, 0, 3307, 3309, 3, 800, 400, 0, 3308, 3304, 1, 0, 0, 0, 3308, 3306, 1, 0, 0, 0, 3309, 261, 1, 0, 0, 0, 3310, 3313, 3, 264, 132, 0, 3311, 3313, 1, 0, 0, 0, 3312, 3310, 1, 0, 0, 0, 3312, 3311, 1, 0, 0, 0, 3313, 3318, 1, 0, 0, 0, 3314, 3315, 5, 6, 0, 0, 3315, 3317, 3, 264, 132, 0, 3316, 3314, 1, 0, 0, 0, 3317, 3320, 1, 0, 0, 0, 3318, 3316, 1, 0, 0, 0, 3318, 3319, 1, 0, 0, 0, 3319, 263, 1, 0, 0, 0, 3320, 3318, 1, 0, 0, 0, 3321, 3326, 5, 574, 0, 0, 3322, 3326, 5, 576, 0, 0, 3323, 3326, 3, 816, 408, 0, 3324, 3326, 3, 832, 416, 0, 3325, 3321, 1, 0, 0, 0, 3325, 3322, 1, 0, 0, 0, 3325, 3323, 1, 0, 0, 0, 3325, 3324, 1, 0, 0, 0, 3326, 265, 1, 0, 0, 0, 3327, 3329, 5, 77, 0, 0, 3328, 3327, 1, 0, 0, 0, 3328, 3329, 1, 0, 0, 0, 3329, 3330, 1, 0, 0, 0, 3330, 3338, 5, 54, 0, 0, 3331, 3332, 5, 69, 0, 0, 3332, 3338, 7, 9, 0, 0, 3333, 3334, 5, 77, 0, 0, 3334, 3338, 5, 371, 0, 0, 3335, 3336, 5, 269, 0, 0, 3336, 3338, 5, 228, 0, 0, 3337, 3328, 1, 0, 0, 0, 3337, 3331, 1, 0, 0, 0, 3337, 3333, 1, 0, 0, 0, 3337, 3335, 1, 0, 0, 0, 3338, 267, 1, 0, 0, 0, 3339, 3340, 5, 46, 0, 0, 3340, 3341, 5, 198, 0, 0, 3341, 3342, 5, 357, 0, 0, 3342, 3343, 3, 826, 413, 0, 3343, 3344, 5, 80, 0, 0, 3344, 3354, 3, 832, 416, 0, 3345, 3346, 5, 102, 0, 0, 3346, 3351, 3, 270, 135, 0, 3347, 3348, 5, 33, 0, 0, 3348, 3350, 3, 270, 135, 0, 3349, 3347, 1, 0, 0, 0, 3350, 3353, 1, 0, 0, 0, 3351, 3349, 1, 0, 0, 0, 3351, 3352, 1, 0, 0, 0, 3352, 3355, 1, 0, 0, 0, 3353, 3351, 1, 0, 0, 0, 3354, 3345, 1, 0, 0, 0, 3354, 3355, 1, 0, 0, 0, 3355, 3356, 1, 0, 0, 0, 3356, 3357, 5, 202, 0, 0, 3357, 3358, 3, 260, 130, 0, 3358, 3359, 5, 2, 0, 0, 3359, 3360, 5, 3, 0, 0, 3360, 269, 1, 0, 0, 0, 3361, 3362, 3, 826, 413, 0, 3362, 3363, 5, 68, 0, 0, 3363, 3364, 5, 2, 0, 0, 3364, 3368, 3, 816, 408, 0, 3365, 3367, 3, 456, 228, 0, 3366, 3365, 1, 0, 0, 0, 3367, 3370, 1, 0, 0, 0, 3368, 3366, 1, 0, 0, 0, 3368, 3369, 1, 0, 0, 0, 3369, 3371, 1, 0, 0, 0, 3370, 3368, 1, 0, 0, 0, 3371, 3372, 5, 3, 0, 0, 3372, 271, 1, 0, 0, 0, 3373, 3374, 5, 138, 0, 0, 3374, 3375, 5, 198, 0, 0, 3375, 3376, 5, 357, 0, 0, 3376, 3382, 3, 826, 413, 0, 3377, 3379, 5, 193, 0, 0, 3378, 3380, 7, 14, 0, 0, 3379, 3378, 1, 0, 0, 0, 3379, 3380, 1, 0, 0, 0, 3380, 3383, 1, 0, 0, 0, 3381, 3383, 5, 186, 0, 0, 3382, 3377, 1, 0, 0, 0, 3382, 3381, 1, 0, 0, 0, 3383, 273, 1, 0, 0, 0, 3384, 3385, 5, 46, 0, 0, 3385, 3386, 5, 140, 0, 0, 3386, 3387, 3, 310, 155, 0, 3387, 3388, 5, 42, 0, 0, 3388, 3389, 5, 2, 0, 0, 3389, 3390, 3, 670, 335, 0, 3390, 3394, 5, 3, 0, 0, 3391, 3393, 3, 266, 133, 0, 3392, 3391, 1, 0, 0, 0, 3393, 3396, 1, 0, 0, 0, 3394, 3392, 1, 0, 0, 0, 3394, 3395, 1, 0, 0, 0, 3395, 275, 1, 0, 0, 0, 3396, 3394, 1, 0, 0, 0, 3397, 3399, 5, 46, 0, 0, 3398, 3400, 3, 360, 180, 0, 3399, 3398, 1, 0, 0, 0, 3399, 3400, 1, 0, 0, 0, 3400, 3401, 1, 0, 0, 0, 3401, 3402, 5, 136, 0, 0, 3402, 3417, 3, 814, 407, 0, 3403, 3404, 3, 386, 193, 0, 3404, 3405, 3, 278, 139, 0, 3405, 3418, 1, 0, 0, 0, 3406, 3407, 5, 2, 0, 0, 3407, 3412, 3, 284, 142, 0, 3408, 3409, 5, 6, 0, 0, 3409, 3411, 3, 284, 142, 0, 3410, 3408, 1, 0, 0, 0, 3411, 3414, 1, 0, 0, 0, 3412, 3410, 1, 0, 0, 0, 3412, 3413, 1, 0, 0, 0, 3413, 3415, 1, 0, 0, 0, 3414, 3412, 1, 0, 0, 0, 3415, 3416, 5, 3, 0, 0, 3416, 3418, 1, 0, 0, 0, 3417, 3403, 1, 0, 0, 0, 3417, 3406, 1, 0, 0, 0, 3418, 3476, 1, 0, 0, 0, 3419, 3420, 5, 46, 0, 0, 3420, 3421, 5, 278, 0, 0, 3421, 3422, 3, 408, 204, 0, 3422, 3423, 3, 278, 139, 0, 3423, 3476, 1, 0, 0, 0, 3424, 3425, 5, 46, 0, 0, 3425, 3426, 5, 360, 0, 0, 3426, 3427, 3, 310, 155, 0, 3427, 3445, 5, 36, 0, 0, 3428, 3430, 5, 2, 0, 0, 3429, 3431, 3, 638, 319, 0, 3430, 3429, 1, 0, 0, 0, 3430, 3431, 1, 0, 0, 0, 3431, 3432, 1, 0, 0, 0, 3432, 3446, 5, 3, 0, 0, 3433, 3434, 5, 196, 0, 0, 3434, 3442, 5, 2, 0, 0, 3435, 3439, 3, 816, 408, 0, 3436, 3438, 3, 456, 228, 0, 3437, 3436, 1, 0, 0, 0, 3438, 3441, 1, 0, 0, 0, 3439, 3437, 1, 0, 0, 0, 3439, 3440, 1, 0, 0, 0, 3440, 3443, 1, 0, 0, 0, 3441, 3439, 1, 0, 0, 0, 3442, 3435, 1, 0, 0, 0, 3442, 3443, 1, 0, 0, 0, 3443, 3444, 1, 0, 0, 0, 3444, 3446, 5, 3, 0, 0, 3445, 3428, 1, 0, 0, 0, 3445, 3433, 1, 0, 0, 0, 3446, 3476, 1, 0, 0, 0, 3447, 3448, 5, 46, 0, 0, 3448, 3449, 5, 360, 0, 0, 3449, 3455, 3, 310, 155, 0, 3450, 3451, 5, 36, 0, 0, 3451, 3453, 5, 299, 0, 0, 3452, 3450, 1, 0, 0, 0, 3452, 3453, 1, 0, 0, 0, 3453, 3454, 1, 0, 0, 0, 3454, 3456, 3, 278, 139, 0, 3455, 3452, 1, 0, 0, 0, 3455, 3456, 1, 0, 0, 0, 3456, 3476, 1, 0, 0, 0, 3457, 3458, 5, 46, 0, 0, 3458, 3459, 5, 355, 0, 0, 3459, 3460, 5, 325, 0, 0, 3460, 3461, 7, 42, 0, 0, 3461, 3462, 3, 310, 155, 0, 3462, 3463, 3, 278, 139, 0, 3463, 3476, 1, 0, 0, 0, 3464, 3465, 5, 46, 0, 0, 3465, 3467, 5, 108, 0, 0, 3466, 3468, 3, 288, 144, 0, 3467, 3466, 1, 0, 0, 0, 3467, 3468, 1, 0, 0, 0, 3468, 3469, 1, 0, 0, 0, 3469, 3473, 3, 310, 155, 0, 3470, 3474, 3, 278, 139, 0, 3471, 3472, 5, 64, 0, 0, 3472, 3474, 3, 310, 155, 0, 3473, 3470, 1, 0, 0, 0, 3473, 3471, 1, 0, 0, 0, 3474, 3476, 1, 0, 0, 0, 3475, 3397, 1, 0, 0, 0, 3475, 3419, 1, 0, 0, 0, 3475, 3424, 1, 0, 0, 0, 3475, 3447, 1, 0, 0, 0, 3475, 3457, 1, 0, 0, 0, 3475, 3464, 1, 0, 0, 0, 3476, 277, 1, 0, 0, 0, 3477, 3478, 5, 2, 0, 0, 3478, 3483, 3, 280, 140, 0, 3479, 3480, 5, 6, 0, 0, 3480, 3482, 3, 280, 140, 0, 3481, 3479, 1, 0, 0, 0, 3482, 3485, 1, 0, 0, 0, 3483, 3481, 1, 0, 0, 0, 3483, 3484, 1, 0, 0, 0, 3484, 3486, 1, 0, 0, 0, 3485, 3483, 1, 0, 0, 0, 3486, 3487, 5, 3, 0, 0, 3487, 279, 1, 0, 0, 0, 3488, 3491, 3, 832, 416, 0, 3489, 3490, 5, 10, 0, 0, 3490, 3492, 3, 282, 141, 0, 3491, 3489, 1, 0, 0, 0, 3491, 3492, 1, 0, 0, 0, 3492, 281, 1, 0, 0, 0, 3493, 3500, 3, 382, 191, 0, 3494, 3500, 3, 842, 421, 0, 3495, 3500, 3, 724, 362, 0, 3496, 3500, 3, 196, 98, 0, 3497, 3500, 3, 816, 408, 0, 3498, 3500, 5, 407, 0, 0, 3499, 3493, 1, 0, 0, 0, 3499, 3494, 1, 0, 0, 0, 3499, 3495, 1, 0, 0, 0, 3499, 3496, 1, 0, 0, 0, 3499, 3497, 1, 0, 0, 0, 3499, 3498, 1, 0, 0, 0, 3500, 283, 1, 0, 0, 0, 3501, 3502, 3, 834, 417, 0, 3502, 3503, 5, 10, 0, 0, 3503, 3504, 3, 282, 141, 0, 3504, 285, 1, 0, 0, 0, 3505, 3506, 5, 138, 0, 0, 3506, 3507, 5, 360, 0, 0, 3507, 3508, 3, 310, 155, 0, 3508, 3509, 5, 133, 0, 0, 3509, 3511, 5, 450, 0, 0, 3510, 3512, 3, 288, 144, 0, 3511, 3510, 1, 0, 0, 0, 3511, 3512, 1, 0, 0, 0, 3512, 3513, 1, 0, 0, 0, 3513, 3516, 3, 816, 408, 0, 3514, 3515, 7, 43, 0, 0, 3515, 3517, 3, 816, 408, 0, 3516, 3514, 1, 0, 0, 0, 3516, 3517, 1, 0, 0, 0, 3517, 3528, 1, 0, 0, 0, 3518, 3519, 5, 138, 0, 0, 3519, 3520, 5, 360, 0, 0, 3520, 3521, 3, 310, 155, 0, 3521, 3522, 5, 309, 0, 0, 3522, 3523, 5, 450, 0, 0, 3523, 3524, 3, 816, 408, 0, 3524, 3525, 5, 94, 0, 0, 3525, 3526, 3, 816, 408, 0, 3526, 3528, 1, 0, 0, 0, 3527, 3505, 1, 0, 0, 0, 3527, 3518, 1, 0, 0, 0, 3528, 287, 1, 0, 0, 0, 3529, 3530, 5, 220, 0, 0, 3530, 3531, 5, 77, 0, 0, 3531, 3532, 5, 396, 0, 0, 3532, 289, 1, 0, 0, 0, 3533, 3534, 5, 46, 0, 0, 3534, 3535, 5, 278, 0, 0, 3535, 3536, 5, 156, 0, 0, 3536, 3538, 3, 310, 155, 0, 3537, 3539, 5, 53, 0, 0, 3538, 3537, 1, 0, 0, 0, 3538, 3539, 1, 0, 0, 0, 3539, 3540, 1, 0, 0, 0, 3540, 3541, 5, 62, 0, 0, 3541, 3542, 5, 360, 0, 0, 3542, 3543, 3, 648, 324, 0, 3543, 3546, 3, 164, 82, 0, 3544, 3545, 5, 206, 0, 0, 3545, 3547, 3, 310, 155, 0, 3546, 3544, 1, 0, 0, 0, 3546, 3547, 1, 0, 0, 0, 3547, 3548, 1, 0, 0, 0, 3548, 3549, 5, 36, 0, 0, 3549, 3554, 3, 292, 146, 0, 3550, 3551, 5, 6, 0, 0, 3551, 3553, 3, 292, 146, 0, 3552, 3550, 1, 0, 0, 0, 3553, 3556, 1, 0, 0, 0, 3554, 3552, 1, 0, 0, 0, 3554, 3555, 1, 0, 0, 0, 3555, 291, 1, 0, 0, 0, 3556, 3554, 1, 0, 0, 0, 3557, 3558, 5, 278, 0, 0, 3558, 3559, 5, 574, 0, 0, 3559, 3561, 3, 408, 204, 0, 3560, 3562, 3, 406, 203, 0, 3561, 3560, 1, 0, 0, 0, 3561, 3562, 1, 0, 0, 0, 3562, 3570, 1, 0, 0, 0, 3563, 3568, 5, 62, 0, 0, 3564, 3569, 5, 325, 0, 0, 3565, 3566, 5, 83, 0, 0, 3566, 3567, 5, 147, 0, 0, 3567, 3569, 3, 310, 155, 0, 3568, 3564, 1, 0, 0, 0, 3568, 3565, 1, 0, 0, 0, 3569, 3571, 1, 0, 0, 0, 3570, 3563, 1, 0, 0, 0, 3570, 3571, 1, 0, 0, 0, 3571, 3573, 1, 0, 0, 0, 3572, 3574, 5, 302, 0, 0, 3573, 3572, 1, 0, 0, 0, 3573, 3574, 1, 0, 0, 0, 3574, 3584, 1, 0, 0, 0, 3575, 3576, 5, 211, 0, 0, 3576, 3578, 5, 574, 0, 0, 3577, 3579, 3, 522, 261, 0, 3578, 3577, 1, 0, 0, 0, 3578, 3579, 1, 0, 0, 0, 3579, 3580, 1, 0, 0, 0, 3580, 3584, 3, 376, 188, 0, 3581, 3582, 5, 345, 0, 0, 3582, 3584, 3, 648, 324, 0, 3583, 3557, 1, 0, 0, 0, 3583, 3575, 1, 0, 0, 0, 3583, 3581, 1, 0, 0, 0, 3584, 293, 1, 0, 0, 0, 3585, 3586, 5, 46, 0, 0, 3586, 3587, 5, 278, 0, 0, 3587, 3588, 5, 206, 0, 0, 3588, 3589, 3, 310, 155, 0, 3589, 3590, 3, 164, 82, 0, 3590, 295, 1, 0, 0, 0, 3591, 3592, 5, 138, 0, 0, 3592, 3593, 5, 278, 0, 0, 3593, 3594, 5, 206, 0, 0, 3594, 3595, 3, 310, 155, 0, 3595, 3614, 3, 164, 82, 0, 3596, 3597, 5, 133, 0, 0, 3597, 3602, 3, 292, 146, 0, 3598, 3599, 5, 6, 0, 0, 3599, 3601, 3, 292, 146, 0, 3600, 3598, 1, 0, 0, 0, 3601, 3604, 1, 0, 0, 0, 3602, 3600, 1, 0, 0, 0, 3602, 3603, 1, 0, 0, 0, 3603, 3615, 1, 0, 0, 0, 3604, 3602, 1, 0, 0, 0, 3605, 3606, 5, 191, 0, 0, 3606, 3611, 3, 298, 149, 0, 3607, 3608, 5, 6, 0, 0, 3608, 3610, 3, 298, 149, 0, 3609, 3607, 1, 0, 0, 0, 3610, 3613, 1, 0, 0, 0, 3611, 3609, 1, 0, 0, 0, 3611, 3612, 1, 0, 0, 0, 3612, 3615, 1, 0, 0, 0, 3613, 3611, 1, 0, 0, 0, 3614, 3596, 1, 0, 0, 0, 3614, 3605, 1, 0, 0, 0, 3615, 297, 1, 0, 0, 0, 3616, 3617, 7, 44, 0, 0, 3617, 3618, 5, 574, 0, 0, 3618, 3619, 3, 522, 261, 0, 3619, 299, 1, 0, 0, 0, 3620, 3621, 5, 301, 0, 0, 3621, 3622, 5, 281, 0, 0, 3622, 3623, 5, 147, 0, 0, 3623, 3624, 3, 824, 412, 0, 3624, 3625, 5, 94, 0, 0, 3625, 3626, 3, 822, 411, 0, 3626, 301, 1, 0, 0, 0, 3627, 3650, 5, 191, 0, 0, 3628, 3651, 5, 328, 0, 0, 3629, 3651, 5, 226, 0, 0, 3630, 3651, 5, 108, 0, 0, 3631, 3651, 5, 168, 0, 0, 3632, 3651, 5, 342, 0, 0, 3633, 3651, 5, 452, 0, 0, 3634, 3651, 5, 331, 0, 0, 3635, 3636, 5, 131, 0, 0, 3636, 3651, 5, 446, 0, 0, 3637, 3638, 5, 198, 0, 0, 3638, 3651, 5, 357, 0, 0, 3639, 3651, 5, 204, 0, 0, 3640, 3642, 5, 295, 0, 0, 3641, 3640, 1, 0, 0, 0, 3641, 3642, 1, 0, 0, 0, 3642, 3643, 1, 0, 0, 0, 3643, 3651, 5, 247, 0, 0, 3644, 3645, 5, 63, 0, 0, 3645, 3646, 5, 174, 0, 0, 3646, 3651, 5, 381, 0, 0, 3647, 3648, 5, 355, 0, 0, 3648, 3649, 5, 325, 0, 0, 3649, 3651, 7, 42, 0, 0, 3650, 3628, 1, 0, 0, 0, 3650, 3629, 1, 0, 0, 0, 3650, 3630, 1, 0, 0, 0, 3650, 3631, 1, 0, 0, 0, 3650, 3632, 1, 0, 0, 0, 3650, 3633, 1, 0, 0, 0, 3650, 3634, 1, 0, 0, 0, 3650, 3635, 1, 0, 0, 0, 3650, 3637, 1, 0, 0, 0, 3650, 3639, 1, 0, 0, 0, 3650, 3641, 1, 0, 0, 0, 3650, 3644, 1, 0, 0, 0, 3650, 3647, 1, 0, 0, 0, 3651, 3653, 1, 0, 0, 0, 3652, 3654, 3, 416, 208, 0, 3653, 3652, 1, 0, 0, 0, 3653, 3654, 1, 0, 0, 0, 3654, 3655, 1, 0, 0, 0, 3655, 3657, 3, 788, 394, 0, 3656, 3658, 3, 88, 44, 0, 3657, 3656, 1, 0, 0, 0, 3657, 3658, 1, 0, 0, 0, 3658, 3835, 1, 0, 0, 0, 3659, 3661, 5, 191, 0, 0, 3660, 3662, 5, 259, 0, 0, 3661, 3660, 1, 0, 0, 0, 3661, 3662, 1, 0, 0, 0, 3662, 3663, 1, 0, 0, 0, 3663, 3665, 5, 376, 0, 0, 3664, 3666, 3, 416, 208, 0, 3665, 3664, 1, 0, 0, 0, 3665, 3666, 1, 0, 0, 0, 3666, 3667, 1, 0, 0, 0, 3667, 3672, 3, 782, 391, 0, 3668, 3669, 5, 6, 0, 0, 3669, 3671, 3, 782, 391, 0, 3670, 3668, 1, 0, 0, 0, 3671, 3674, 1, 0, 0, 0, 3672, 3670, 1, 0, 0, 0, 3672, 3673, 1, 0, 0, 0, 3673, 3676, 1, 0, 0, 0, 3674, 3672, 1, 0, 0, 0, 3675, 3677, 3, 88, 44, 0, 3676, 3675, 1, 0, 0, 0, 3676, 3677, 1, 0, 0, 0, 3677, 3835, 1, 0, 0, 0, 3678, 3680, 5, 191, 0, 0, 3679, 3681, 5, 63, 0, 0, 3680, 3679, 1, 0, 0, 0, 3680, 3681, 1, 0, 0, 0, 3681, 3682, 1, 0, 0, 0, 3682, 3684, 5, 92, 0, 0, 3683, 3685, 3, 416, 208, 0, 3684, 3683, 1, 0, 0, 0, 3684, 3685, 1, 0, 0, 0, 3685, 3686, 1, 0, 0, 0, 3686, 3688, 3, 766, 383, 0, 3687, 3689, 3, 88, 44, 0, 3688, 3687, 1, 0, 0, 0, 3688, 3689, 1, 0, 0, 0, 3689, 3835, 1, 0, 0, 0, 3690, 3691, 5, 191, 0, 0, 3691, 3693, 5, 323, 0, 0, 3692, 3694, 3, 416, 208, 0, 3693, 3692, 1, 0, 0, 0, 3693, 3694, 1, 0, 0, 0, 3694, 3695, 1, 0, 0, 0, 3695, 3697, 3, 768, 384, 0, 3696, 3698, 3, 88, 44, 0, 3697, 3696, 1, 0, 0, 0, 3697, 3698, 1, 0, 0, 0, 3698, 3835, 1, 0, 0, 0, 3699, 3700, 5, 191, 0, 0, 3700, 3702, 7, 45, 0, 0, 3701, 3703, 3, 416, 208, 0, 3702, 3701, 1, 0, 0, 0, 3702, 3703, 1, 0, 0, 0, 3703, 3704, 1, 0, 0, 0, 3704, 3705, 3, 826, 413, 0, 3705, 3706, 5, 80, 0, 0, 3706, 3708, 3, 310, 155, 0, 3707, 3709, 3, 88, 44, 0, 3708, 3707, 1, 0, 0, 0, 3708, 3709, 1, 0, 0, 0, 3709, 3835, 1, 0, 0, 0, 3710, 3711, 5, 191, 0, 0, 3711, 3713, 7, 33, 0, 0, 3712, 3714, 3, 416, 208, 0, 3713, 3712, 1, 0, 0, 0, 3713, 3714, 1, 0, 0, 0, 3714, 3715, 1, 0, 0, 0, 3715, 3720, 3, 648, 324, 0, 3716, 3717, 5, 6, 0, 0, 3717, 3719, 3, 648, 324, 0, 3718, 3716, 1, 0, 0, 0, 3719, 3722, 1, 0, 0, 0, 3720, 3718, 1, 0, 0, 0, 3720, 3721, 1, 0, 0, 0, 3721, 3724, 1, 0, 0, 0, 3722, 3720, 1, 0, 0, 0, 3723, 3725, 3, 88, 44, 0, 3724, 3723, 1, 0, 0, 0, 3724, 3725, 1, 0, 0, 0, 3725, 3835, 1, 0, 0, 0, 3726, 3727, 5, 191, 0, 0, 3727, 3728, 5, 226, 0, 0, 3728, 3730, 5, 109, 0, 0, 3729, 3731, 3, 416, 208, 0, 3730, 3729, 1, 0, 0, 0, 3730, 3731, 1, 0, 0, 0, 3731, 3732, 1, 0, 0, 0, 3732, 3734, 3, 308, 154, 0, 3733, 3735, 3, 88, 44, 0, 3734, 3733, 1, 0, 0, 0, 3734, 3735, 1, 0, 0, 0, 3735, 3835, 1, 0, 0, 0, 3736, 3737, 5, 191, 0, 0, 3737, 3739, 5, 41, 0, 0, 3738, 3740, 3, 416, 208, 0, 3739, 3738, 1, 0, 0, 0, 3739, 3740, 1, 0, 0, 0, 3740, 3741, 1, 0, 0, 0, 3741, 3742, 5, 2, 0, 0, 3742, 3743, 3, 648, 324, 0, 3743, 3744, 5, 36, 0, 0, 3744, 3745, 3, 648, 324, 0, 3745, 3747, 5, 3, 0, 0, 3746, 3748, 3, 88, 44, 0, 3747, 3746, 1, 0, 0, 0, 3747, 3748, 1, 0, 0, 0, 3748, 3835, 1, 0, 0, 0, 3749, 3750, 5, 191, 0, 0, 3750, 3751, 5, 278, 0, 0, 3751, 3753, 7, 32, 0, 0, 3752, 3754, 3, 416, 208, 0, 3753, 3752, 1, 0, 0, 0, 3753, 3754, 1, 0, 0, 0, 3754, 3755, 1, 0, 0, 0, 3755, 3756, 3, 310, 155, 0, 3756, 3758, 3, 164, 82, 0, 3757, 3759, 3, 88, 44, 0, 3758, 3757, 1, 0, 0, 0, 3758, 3759, 1, 0, 0, 0, 3759, 3835, 1, 0, 0, 0, 3760, 3761, 5, 191, 0, 0, 3761, 3762, 5, 281, 0, 0, 3762, 3763, 5, 147, 0, 0, 3763, 3765, 3, 824, 412, 0, 3764, 3766, 3, 88, 44, 0, 3765, 3764, 1, 0, 0, 0, 3765, 3766, 1, 0, 0, 0, 3766, 3835, 1, 0, 0, 0, 3767, 3768, 5, 191, 0, 0, 3768, 3770, 5, 451, 0, 0, 3769, 3771, 3, 416, 208, 0, 3770, 3769, 1, 0, 0, 0, 3770, 3771, 1, 0, 0, 0, 3771, 3772, 1, 0, 0, 0, 3772, 3774, 3, 826, 413, 0, 3773, 3775, 3, 88, 44, 0, 3774, 3773, 1, 0, 0, 0, 3774, 3775, 1, 0, 0, 0, 3775, 3835, 1, 0, 0, 0, 3776, 3777, 5, 191, 0, 0, 3777, 3779, 5, 351, 0, 0, 3778, 3780, 3, 416, 208, 0, 3779, 3778, 1, 0, 0, 0, 3779, 3780, 1, 0, 0, 0, 3780, 3781, 1, 0, 0, 0, 3781, 3835, 3, 774, 387, 0, 3782, 3783, 5, 191, 0, 0, 3783, 3785, 5, 443, 0, 0, 3784, 3786, 3, 416, 208, 0, 3785, 3784, 1, 0, 0, 0, 3785, 3786, 1, 0, 0, 0, 3786, 3787, 1, 0, 0, 0, 3787, 3788, 5, 62, 0, 0, 3788, 3789, 3, 648, 324, 0, 3789, 3790, 5, 247, 0, 0, 3790, 3792, 3, 826, 413, 0, 3791, 3793, 3, 88, 44, 0, 3792, 3791, 1, 0, 0, 0, 3792, 3793, 1, 0, 0, 0, 3793, 3835, 1, 0, 0, 0, 3794, 3795, 5, 191, 0, 0, 3795, 3797, 7, 46, 0, 0, 3796, 3798, 3, 416, 208, 0, 3797, 3796, 1, 0, 0, 0, 3797, 3798, 1, 0, 0, 0, 3798, 3799, 1, 0, 0, 0, 3799, 3835, 3, 824, 412, 0, 3800, 3801, 5, 191, 0, 0, 3801, 3802, 5, 99, 0, 0, 3802, 3804, 5, 257, 0, 0, 3803, 3805, 3, 416, 208, 0, 3804, 3803, 1, 0, 0, 0, 3804, 3805, 1, 0, 0, 0, 3805, 3806, 1, 0, 0, 0, 3806, 3809, 5, 62, 0, 0, 3807, 3810, 3, 822, 411, 0, 3808, 3810, 5, 99, 0, 0, 3809, 3807, 1, 0, 0, 0, 3809, 3808, 1, 0, 0, 0, 3810, 3811, 1, 0, 0, 0, 3811, 3812, 5, 331, 0, 0, 3812, 3835, 3, 826, 413, 0, 3813, 3814, 5, 191, 0, 0, 3814, 3816, 5, 175, 0, 0, 3815, 3817, 3, 416, 208, 0, 3816, 3815, 1, 0, 0, 0, 3816, 3817, 1, 0, 0, 0, 3817, 3818, 1, 0, 0, 0, 3818, 3832, 3, 792, 396, 0, 3819, 3821, 5, 105, 0, 0, 3820, 3819, 1, 0, 0, 0, 3820, 3821, 1, 0, 0, 0, 3821, 3822, 1, 0, 0, 0, 3822, 3823, 5, 2, 0, 0, 3823, 3828, 5, 209, 0, 0, 3824, 3825, 5, 6, 0, 0, 3825, 3827, 5, 209, 0, 0, 3826, 3824, 1, 0, 0, 0, 3827, 3830, 1, 0, 0, 0, 3828, 3826, 1, 0, 0, 0, 3828, 3829, 1, 0, 0, 0, 3829, 3831, 1, 0, 0, 0, 3830, 3828, 1, 0, 0, 0, 3831, 3833, 5, 3, 0, 0, 3832, 3820, 1, 0, 0, 0, 3832, 3833, 1, 0, 0, 0, 3833, 3835, 1, 0, 0, 0, 3834, 3627, 1, 0, 0, 0, 3834, 3659, 1, 0, 0, 0, 3834, 3678, 1, 0, 0, 0, 3834, 3690, 1, 0, 0, 0, 3834, 3699, 1, 0, 0, 0, 3834, 3710, 1, 0, 0, 0, 3834, 3726, 1, 0, 0, 0, 3834, 3736, 1, 0, 0, 0, 3834, 3749, 1, 0, 0, 0, 3834, 3760, 1, 0, 0, 0, 3834, 3767, 1, 0, 0, 0, 3834, 3776, 1, 0, 0, 0, 3834, 3782, 1, 0, 0, 0, 3834, 3794, 1, 0, 0, 0, 3834, 3800, 1, 0, 0, 0, 3834, 3813, 1, 0, 0, 0, 3835, 303, 1, 0, 0, 0, 3836, 3838, 5, 63, 0, 0, 3837, 3836, 1, 0, 0, 0, 3837, 3838, 1, 0, 0, 0, 3838, 3839, 1, 0, 0, 0, 3839, 3840, 5, 92, 0, 0, 3840, 3853, 3, 778, 389, 0, 3841, 3843, 5, 259, 0, 0, 3842, 3841, 1, 0, 0, 0, 3842, 3843, 1, 0, 0, 0, 3843, 3844, 1, 0, 0, 0, 3844, 3845, 5, 376, 0, 0, 3845, 3853, 3, 782, 391, 0, 3846, 3847, 7, 47, 0, 0, 3847, 3853, 3, 310, 155, 0, 3848, 3849, 5, 355, 0, 0, 3849, 3850, 5, 325, 0, 0, 3850, 3851, 7, 42, 0, 0, 3851, 3853, 3, 310, 155, 0, 3852, 3837, 1, 0, 0, 0, 3852, 3842, 1, 0, 0, 0, 3852, 3846, 1, 0, 0, 0, 3852, 3848, 1, 0, 0, 0, 3853, 305, 1, 0, 0, 0, 3854, 3855, 5, 198, 0, 0, 3855, 3871, 5, 357, 0, 0, 3856, 3857, 5, 131, 0, 0, 3857, 3871, 5, 446, 0, 0, 3858, 3871, 5, 204, 0, 0, 3859, 3871, 5, 452, 0, 0, 3860, 3871, 5, 331, 0, 0, 3861, 3871, 5, 318, 0, 0, 3862, 3871, 5, 451, 0, 0, 3863, 3864, 5, 63, 0, 0, 3864, 3865, 5, 174, 0, 0, 3865, 3871, 5, 381, 0, 0, 3866, 3868, 5, 295, 0, 0, 3867, 3866, 1, 0, 0, 0, 3867, 3868, 1, 0, 0, 0, 3868, 3869, 1, 0, 0, 0, 3869, 3871, 5, 247, 0, 0, 3870, 3854, 1, 0, 0, 0, 3870, 3856, 1, 0, 0, 0, 3870, 3858, 1, 0, 0, 0, 3870, 3859, 1, 0, 0, 0, 3870, 3860, 1, 0, 0, 0, 3870, 3861, 1, 0, 0, 0, 3870, 3862, 1, 0, 0, 0, 3870, 3863, 1, 0, 0, 0, 3870, 3867, 1, 0, 0, 0, 3871, 3872, 1, 0, 0, 0, 3872, 3879, 3, 826, 413, 0, 3873, 3874, 5, 323, 0, 0, 3874, 3879, 3, 794, 397, 0, 3875, 3876, 5, 175, 0, 0, 3876, 3879, 3, 792, 396, 0, 3877, 3879, 3, 170, 85, 0, 3878, 3870, 1, 0, 0, 0, 3878, 3873, 1, 0, 0, 0, 3878, 3875, 1, 0, 0, 0, 3878, 3877, 1, 0, 0, 0, 3879, 307, 1, 0, 0, 0, 3880, 3885, 3, 310, 155, 0, 3881, 3882, 5, 6, 0, 0, 3882, 3884, 3, 310, 155, 0, 3883, 3881, 1, 0, 0, 0, 3884, 3887, 1, 0, 0, 0, 3885, 3883, 1, 0, 0, 0, 3885, 3886, 1, 0, 0, 0, 3886, 309, 1, 0, 0, 0, 3887, 3885, 1, 0, 0, 0, 3888, 3890, 3, 826, 413, 0, 3889, 3891, 3, 312, 156, 0, 3890, 3889, 1, 0, 0, 0, 3890, 3891, 1, 0, 0, 0, 3891, 311, 1, 0, 0, 0, 3892, 3893, 5, 11, 0, 0, 3893, 3895, 3, 832, 416, 0, 3894, 3892, 1, 0, 0, 0, 3895, 3896, 1, 0, 0, 0, 3896, 3894, 1, 0, 0, 0, 3896, 3897, 1, 0, 0, 0, 3897, 313, 1, 0, 0, 0, 3898, 3900, 5, 358, 0, 0, 3899, 3901, 5, 92, 0, 0, 3900, 3899, 1, 0, 0, 0, 3900, 3901, 1, 0, 0, 0, 3901, 3902, 1, 0, 0, 0, 3902, 3907, 3, 316, 158, 0, 3903, 3904, 5, 6, 0, 0, 3904, 3906, 3, 316, 158, 0, 3905, 3903, 1, 0, 0, 0, 3906, 3909, 1, 0, 0, 0, 3907, 3905, 1, 0, 0, 0, 3907, 3908, 1, 0, 0, 0, 3908, 3912, 1, 0, 0, 0, 3909, 3907, 1, 0, 0, 0, 3910, 3911, 7, 48, 0, 0, 3911, 3913, 5, 219, 0, 0, 3912, 3910, 1, 0, 0, 0, 3912, 3913, 1, 0, 0, 0, 3913, 3915, 1, 0, 0, 0, 3914, 3916, 3, 88, 44, 0, 3915, 3914, 1, 0, 0, 0, 3915, 3916, 1, 0, 0, 0, 3916, 315, 1, 0, 0, 0, 3917, 3919, 5, 81, 0, 0, 3918, 3917, 1, 0, 0, 0, 3918, 3919, 1, 0, 0, 0, 3919, 3920, 1, 0, 0, 0, 3920, 3922, 3, 778, 389, 0, 3921, 3923, 5, 9, 0, 0, 3922, 3921, 1, 0, 0, 0, 3922, 3923, 1, 0, 0, 0, 3923, 317, 1, 0, 0, 0, 3924, 3925, 5, 159, 0, 0, 3925, 3984, 5, 80, 0, 0, 3926, 3985, 3, 304, 152, 0, 3927, 3985, 3, 306, 153, 0, 3928, 3929, 5, 44, 0, 0, 3929, 3931, 3, 826, 413, 0, 3930, 3932, 3, 312, 156, 0, 3931, 3930, 1, 0, 0, 0, 3931, 3932, 1, 0, 0, 0, 3932, 3933, 1, 0, 0, 0, 3933, 3934, 5, 11, 0, 0, 3934, 3935, 3, 806, 403, 0, 3935, 3985, 1, 0, 0, 0, 3936, 3937, 7, 33, 0, 0, 3937, 3985, 3, 648, 324, 0, 3938, 3939, 5, 136, 0, 0, 3939, 3985, 3, 388, 194, 0, 3940, 3941, 5, 211, 0, 0, 3941, 3985, 3, 376, 188, 0, 3942, 3943, 5, 278, 0, 0, 3943, 3985, 3, 410, 205, 0, 3944, 3945, 5, 45, 0, 0, 3945, 3946, 3, 826, 413, 0, 3946, 3952, 5, 80, 0, 0, 3947, 3953, 3, 778, 389, 0, 3948, 3950, 5, 189, 0, 0, 3949, 3948, 1, 0, 0, 0, 3949, 3950, 1, 0, 0, 0, 3950, 3951, 1, 0, 0, 0, 3951, 3953, 3, 310, 155, 0, 3952, 3947, 1, 0, 0, 0, 3952, 3949, 1, 0, 0, 0, 3953, 3985, 1, 0, 0, 0, 3954, 3955, 7, 45, 0, 0, 3955, 3956, 3, 826, 413, 0, 3956, 3957, 5, 80, 0, 0, 3957, 3958, 3, 310, 155, 0, 3958, 3985, 1, 0, 0, 0, 3959, 3960, 5, 296, 0, 0, 3960, 3985, 3, 372, 186, 0, 3961, 3962, 5, 442, 0, 0, 3962, 3985, 3, 368, 184, 0, 3963, 3964, 5, 443, 0, 0, 3964, 3965, 5, 62, 0, 0, 3965, 3966, 3, 648, 324, 0, 3966, 3967, 5, 247, 0, 0, 3967, 3968, 3, 826, 413, 0, 3968, 3985, 1, 0, 0, 0, 3969, 3970, 5, 278, 0, 0, 3970, 3971, 7, 32, 0, 0, 3971, 3972, 3, 310, 155, 0, 3972, 3973, 3, 164, 82, 0, 3973, 3985, 1, 0, 0, 0, 3974, 3975, 5, 248, 0, 0, 3975, 3976, 5, 274, 0, 0, 3976, 3985, 3, 196, 98, 0, 3977, 3978, 5, 41, 0, 0, 3978, 3979, 5, 2, 0, 0, 3979, 3980, 3, 648, 324, 0, 3980, 3981, 5, 36, 0, 0, 3981, 3982, 3, 648, 324, 0, 3982, 3983, 5, 3, 0, 0, 3983, 3985, 1, 0, 0, 0, 3984, 3926, 1, 0, 0, 0, 3984, 3927, 1, 0, 0, 0, 3984, 3928, 1, 0, 0, 0, 3984, 3936, 1, 0, 0, 0, 3984, 3938, 1, 0, 0, 0, 3984, 3940, 1, 0, 0, 0, 3984, 3942, 1, 0, 0, 0, 3984, 3944, 1, 0, 0, 0, 3984, 3954, 1, 0, 0, 0, 3984, 3959, 1, 0, 0, 0, 3984, 3961, 1, 0, 0, 0, 3984, 3963, 1, 0, 0, 0, 3984, 3969, 1, 0, 0, 0, 3984, 3974, 1, 0, 0, 0, 3984, 3977, 1, 0, 0, 0, 3985, 3986, 1, 0, 0, 0, 3986, 3989, 5, 116, 0, 0, 3987, 3990, 3, 816, 408, 0, 3988, 3990, 5, 78, 0, 0, 3989, 3987, 1, 0, 0, 0, 3989, 3988, 1, 0, 0, 0, 3990, 319, 1, 0, 0, 0, 3991, 3992, 5, 327, 0, 0, 3992, 3995, 5, 246, 0, 0, 3993, 3994, 5, 62, 0, 0, 3994, 3996, 3, 58, 29, 0, 3995, 3993, 1, 0, 0, 0, 3995, 3996, 1, 0, 0, 0, 3996, 3997, 1, 0, 0, 0, 3997, 4015, 5, 80, 0, 0, 3998, 3999, 7, 33, 0, 0, 3999, 4016, 3, 648, 324, 0, 4000, 4001, 5, 136, 0, 0, 4001, 4016, 3, 388, 194, 0, 4002, 4003, 5, 44, 0, 0, 4003, 4016, 3, 806, 403, 0, 4004, 4005, 5, 211, 0, 0, 4005, 4016, 3, 376, 188, 0, 4006, 4007, 5, 248, 0, 0, 4007, 4008, 5, 274, 0, 0, 4008, 4016, 3, 196, 98, 0, 4009, 4010, 5, 296, 0, 0, 4010, 4016, 3, 372, 186, 0, 4011, 4012, 5, 442, 0, 0, 4012, 4016, 3, 368, 184, 0, 4013, 4016, 3, 304, 152, 0, 4014, 4016, 3, 306, 153, 0, 4015, 3998, 1, 0, 0, 0, 4015, 4000, 1, 0, 0, 0, 4015, 4002, 1, 0, 0, 0, 4015, 4004, 1, 0, 0, 0, 4015, 4006, 1, 0, 0, 0, 4015, 4009, 1, 0, 0, 0, 4015, 4011, 1, 0, 0, 0, 4015, 4013, 1, 0, 0, 0, 4015, 4014, 1, 0, 0, 0, 4016, 4017, 1, 0, 0, 0, 4017, 4020, 5, 116, 0, 0, 4018, 4021, 3, 816, 408, 0, 4019, 4021, 5, 78, 0, 0, 4020, 4018, 1, 0, 0, 0, 4020, 4019, 1, 0, 0, 0, 4021, 321, 1, 0, 0, 0, 4022, 4023, 7, 49, 0, 0, 4023, 4024, 3, 324, 162, 0, 4024, 323, 1, 0, 0, 0, 4025, 4027, 7, 50, 0, 0, 4026, 4025, 1, 0, 0, 0, 4026, 4027, 1, 0, 0, 0, 4027, 4029, 1, 0, 0, 0, 4028, 4030, 3, 326, 163, 0, 4029, 4028, 1, 0, 0, 0, 4029, 4030, 1, 0, 0, 0, 4030, 4031, 1, 0, 0, 0, 4031, 4069, 3, 826, 413, 0, 4032, 4034, 7, 51, 0, 0, 4033, 4032, 1, 0, 0, 0, 4033, 4034, 1, 0, 0, 0, 4034, 4035, 1, 0, 0, 0, 4035, 4037, 3, 820, 410, 0, 4036, 4038, 3, 326, 163, 0, 4037, 4036, 1, 0, 0, 0, 4037, 4038, 1, 0, 0, 0, 4038, 4039, 1, 0, 0, 0, 4039, 4040, 3, 826, 413, 0, 4040, 4069, 1, 0, 0, 0, 4041, 4043, 5, 210, 0, 0, 4042, 4044, 3, 820, 410, 0, 4043, 4042, 1, 0, 0, 0, 4043, 4044, 1, 0, 0, 0, 4044, 4046, 1, 0, 0, 0, 4045, 4047, 3, 326, 163, 0, 4046, 4045, 1, 0, 0, 0, 4046, 4047, 1, 0, 0, 0, 4047, 4048, 1, 0, 0, 0, 4048, 4069, 3, 826, 413, 0, 4049, 4051, 5, 210, 0, 0, 4050, 4049, 1, 0, 0, 0, 4050, 4051, 1, 0, 0, 0, 4051, 4052, 1, 0, 0, 0, 4052, 4054, 5, 30, 0, 0, 4053, 4055, 3, 326, 163, 0, 4054, 4053, 1, 0, 0, 0, 4054, 4055, 1, 0, 0, 0, 4055, 4056, 1, 0, 0, 0, 4056, 4069, 3, 826, 413, 0, 4057, 4062, 5, 144, 0, 0, 4058, 4060, 5, 30, 0, 0, 4059, 4058, 1, 0, 0, 0, 4059, 4060, 1, 0, 0, 0, 4060, 4063, 1, 0, 0, 0, 4061, 4063, 3, 820, 410, 0, 4062, 4059, 1, 0, 0, 0, 4062, 4061, 1, 0, 0, 0, 4063, 4065, 1, 0, 0, 0, 4064, 4066, 3, 326, 163, 0, 4065, 4064, 1, 0, 0, 0, 4065, 4066, 1, 0, 0, 0, 4066, 4067, 1, 0, 0, 0, 4067, 4069, 3, 826, 413, 0, 4068, 4026, 1, 0, 0, 0, 4068, 4033, 1, 0, 0, 0, 4068, 4041, 1, 0, 0, 0, 4068, 4050, 1, 0, 0, 0, 4068, 4057, 1, 0, 0, 0, 4069, 325, 1, 0, 0, 0, 4070, 4071, 7, 52, 0, 0, 4071, 327, 1, 0, 0, 0, 4072, 4073, 5, 65, 0, 0, 4073, 4074, 3, 332, 166, 0, 4074, 4075, 5, 80, 0, 0, 4075, 4076, 3, 338, 169, 0, 4076, 4077, 5, 94, 0, 0, 4077, 4081, 3, 340, 170, 0, 4078, 4079, 5, 105, 0, 0, 4079, 4080, 5, 65, 0, 0, 4080, 4082, 5, 279, 0, 0, 4081, 4078, 1, 0, 0, 0, 4081, 4082, 1, 0, 0, 0, 4082, 329, 1, 0, 0, 0, 4083, 4087, 5, 317, 0, 0, 4084, 4085, 5, 65, 0, 0, 4085, 4086, 5, 279, 0, 0, 4086, 4088, 5, 62, 0, 0, 4087, 4084, 1, 0, 0, 0, 4087, 4088, 1, 0, 0, 0, 4088, 4089, 1, 0, 0, 0, 4089, 4090, 3, 332, 166, 0, 4090, 4091, 5, 80, 0, 0, 4091, 4092, 3, 338, 169, 0, 4092, 4093, 5, 64, 0, 0, 4093, 4095, 3, 340, 170, 0, 4094, 4096, 3, 88, 44, 0, 4095, 4094, 1, 0, 0, 0, 4095, 4096, 1, 0, 0, 0, 4096, 331, 1, 0, 0, 0, 4097, 4102, 3, 336, 168, 0, 4098, 4099, 5, 6, 0, 0, 4099, 4101, 3, 336, 168, 0, 4100, 4098, 1, 0, 0, 0, 4101, 4104, 1, 0, 0, 0, 4102, 4100, 1, 0, 0, 0, 4102, 4103, 1, 0, 0, 0, 4103, 4121, 1, 0, 0, 0, 4104, 4102, 1, 0, 0, 0, 4105, 4107, 5, 30, 0, 0, 4106, 4108, 5, 294, 0, 0, 4107, 4106, 1, 0, 0, 0, 4107, 4108, 1, 0, 0, 0, 4108, 4110, 1, 0, 0, 0, 4109, 4111, 3, 138, 69, 0, 4110, 4109, 1, 0, 0, 0, 4110, 4111, 1, 0, 0, 0, 4111, 4121, 1, 0, 0, 0, 4112, 4117, 3, 334, 167, 0, 4113, 4114, 5, 6, 0, 0, 4114, 4116, 3, 334, 167, 0, 4115, 4113, 1, 0, 0, 0, 4116, 4119, 1, 0, 0, 0, 4117, 4115, 1, 0, 0, 0, 4117, 4118, 1, 0, 0, 0, 4118, 4121, 1, 0, 0, 0, 4119, 4117, 1, 0, 0, 0, 4120, 4097, 1, 0, 0, 0, 4120, 4105, 1, 0, 0, 0, 4120, 4112, 1, 0, 0, 0, 4121, 333, 1, 0, 0, 0, 4122, 4123, 7, 53, 0, 0, 4123, 335, 1, 0, 0, 0, 4124, 4129, 5, 88, 0, 0, 4125, 4129, 5, 86, 0, 0, 4126, 4129, 5, 46, 0, 0, 4127, 4129, 3, 826, 413, 0, 4128, 4124, 1, 0, 0, 0, 4128, 4125, 1, 0, 0, 0, 4128, 4126, 1, 0, 0, 0, 4128, 4127, 1, 0, 0, 0, 4129, 4131, 1, 0, 0, 0, 4130, 4132, 3, 138, 69, 0, 4131, 4130, 1, 0, 0, 0, 4131, 4132, 1, 0, 0, 0, 4132, 337, 1, 0, 0, 0, 4133, 4134, 5, 92, 0, 0, 4134, 4179, 3, 766, 383, 0, 4135, 4137, 5, 328, 0, 0, 4136, 4135, 1, 0, 0, 0, 4136, 4137, 1, 0, 0, 0, 4137, 4138, 1, 0, 0, 0, 4138, 4179, 3, 764, 382, 0, 4139, 4143, 5, 63, 0, 0, 4140, 4141, 5, 174, 0, 0, 4141, 4144, 5, 381, 0, 0, 4142, 4144, 5, 331, 0, 0, 4143, 4140, 1, 0, 0, 0, 4143, 4142, 1, 0, 0, 0, 4144, 4147, 1, 0, 0, 0, 4145, 4147, 5, 247, 0, 0, 4146, 4139, 1, 0, 0, 0, 4146, 4145, 1, 0, 0, 0, 4147, 4148, 1, 0, 0, 0, 4148, 4179, 3, 788, 394, 0, 4149, 4150, 5, 211, 0, 0, 4150, 4179, 3, 374, 187, 0, 4151, 4152, 5, 296, 0, 0, 4152, 4179, 3, 370, 185, 0, 4153, 4154, 5, 442, 0, 0, 4154, 4179, 3, 366, 183, 0, 4155, 4156, 5, 175, 0, 0, 4156, 4179, 3, 770, 385, 0, 4157, 4158, 7, 33, 0, 0, 4158, 4179, 3, 308, 154, 0, 4159, 4160, 5, 248, 0, 0, 4160, 4161, 5, 274, 0, 0, 4161, 4166, 3, 196, 98, 0, 4162, 4163, 5, 6, 0, 0, 4163, 4165, 3, 196, 98, 0, 4164, 4162, 1, 0, 0, 0, 4165, 4168, 1, 0, 0, 0, 4166, 4164, 1, 0, 0, 0, 4166, 4167, 1, 0, 0, 0, 4167, 4179, 1, 0, 0, 0, 4168, 4166, 1, 0, 0, 0, 4169, 4170, 5, 323, 0, 0, 4170, 4179, 3, 768, 384, 0, 4171, 4172, 5, 351, 0, 0, 4172, 4179, 3, 786, 393, 0, 4173, 4174, 5, 30, 0, 0, 4174, 4175, 7, 54, 0, 0, 4175, 4176, 5, 68, 0, 0, 4176, 4177, 5, 323, 0, 0, 4177, 4179, 3, 768, 384, 0, 4178, 4133, 1, 0, 0, 0, 4178, 4136, 1, 0, 0, 0, 4178, 4146, 1, 0, 0, 0, 4178, 4149, 1, 0, 0, 0, 4178, 4151, 1, 0, 0, 0, 4178, 4153, 1, 0, 0, 0, 4178, 4155, 1, 0, 0, 0, 4178, 4157, 1, 0, 0, 0, 4178, 4159, 1, 0, 0, 0, 4178, 4169, 1, 0, 0, 0, 4178, 4171, 1, 0, 0, 0, 4178, 4173, 1, 0, 0, 0, 4179, 339, 1, 0, 0, 0, 4180, 4182, 5, 66, 0, 0, 4181, 4180, 1, 0, 0, 0, 4181, 4182, 1, 0, 0, 0, 4182, 4183, 1, 0, 0, 0, 4183, 4184, 3, 822, 411, 0, 4184, 4192, 1, 0, 0, 0, 4185, 4187, 5, 6, 0, 0, 4186, 4188, 5, 66, 0, 0, 4187, 4186, 1, 0, 0, 0, 4187, 4188, 1, 0, 0, 0, 4188, 4189, 1, 0, 0, 0, 4189, 4191, 3, 822, 411, 0, 4190, 4185, 1, 0, 0, 0, 4191, 4194, 1, 0, 0, 0, 4192, 4190, 1, 0, 0, 0, 4192, 4193, 1, 0, 0, 0, 4193, 341, 1, 0, 0, 0, 4194, 4192, 1, 0, 0, 0, 4195, 4196, 5, 65, 0, 0, 4196, 4201, 3, 336, 168, 0, 4197, 4198, 5, 6, 0, 0, 4198, 4200, 3, 336, 168, 0, 4199, 4197, 1, 0, 0, 0, 4200, 4203, 1, 0, 0, 0, 4201, 4199, 1, 0, 0, 0, 4201, 4202, 1, 0, 0, 0, 4202, 4204, 1, 0, 0, 0, 4203, 4201, 1, 0, 0, 0, 4204, 4205, 5, 94, 0, 0, 4205, 4209, 3, 824, 412, 0, 4206, 4207, 5, 105, 0, 0, 4207, 4208, 5, 134, 0, 0, 4208, 4210, 5, 279, 0, 0, 4209, 4206, 1, 0, 0, 0, 4209, 4210, 1, 0, 0, 0, 4210, 4214, 1, 0, 0, 0, 4211, 4212, 5, 214, 0, 0, 4212, 4213, 5, 147, 0, 0, 4213, 4215, 3, 822, 411, 0, 4214, 4211, 1, 0, 0, 0, 4214, 4215, 1, 0, 0, 0, 4215, 343, 1, 0, 0, 0, 4216, 4220, 5, 317, 0, 0, 4217, 4218, 5, 134, 0, 0, 4218, 4219, 5, 279, 0, 0, 4219, 4221, 5, 62, 0, 0, 4220, 4217, 1, 0, 0, 0, 4220, 4221, 1, 0, 0, 0, 4221, 4222, 1, 0, 0, 0, 4222, 4227, 3, 336, 168, 0, 4223, 4224, 5, 6, 0, 0, 4224, 4226, 3, 336, 168, 0, 4225, 4223, 1, 0, 0, 0, 4226, 4229, 1, 0, 0, 0, 4227, 4225, 1, 0, 0, 0, 4227, 4228, 1, 0, 0, 0, 4228, 4230, 1, 0, 0, 0, 4229, 4227, 1, 0, 0, 0, 4230, 4231, 5, 64, 0, 0, 4231, 4235, 3, 824, 412, 0, 4232, 4233, 5, 214, 0, 0, 4233, 4234, 5, 147, 0, 0, 4234, 4236, 3, 822, 411, 0, 4235, 4232, 1, 0, 0, 0, 4235, 4236, 1, 0, 0, 0, 4236, 4238, 1, 0, 0, 0, 4237, 4239, 3, 88, 44, 0, 4238, 4237, 1, 0, 0, 0, 4238, 4239, 1, 0, 0, 0, 4239, 345, 1, 0, 0, 0, 4240, 4241, 5, 138, 0, 0, 4241, 4242, 5, 53, 0, 0, 4242, 4251, 5, 294, 0, 0, 4243, 4244, 5, 68, 0, 0, 4244, 4245, 5, 323, 0, 0, 4245, 4250, 3, 768, 384, 0, 4246, 4247, 5, 62, 0, 0, 4247, 4248, 7, 2, 0, 0, 4248, 4250, 3, 824, 412, 0, 4249, 4243, 1, 0, 0, 0, 4249, 4246, 1, 0, 0, 0, 4250, 4253, 1, 0, 0, 0, 4251, 4249, 1, 0, 0, 0, 4251, 4252, 1, 0, 0, 0, 4252, 4254, 1, 0, 0, 0, 4253, 4251, 1, 0, 0, 0, 4254, 4255, 3, 348, 174, 0, 4255, 347, 1, 0, 0, 0, 4256, 4257, 5, 65, 0, 0, 4257, 4258, 3, 332, 166, 0, 4258, 4259, 5, 80, 0, 0, 4259, 4260, 3, 350, 175, 0, 4260, 4261, 5, 94, 0, 0, 4261, 4265, 3, 340, 170, 0, 4262, 4263, 5, 105, 0, 0, 4263, 4264, 5, 65, 0, 0, 4264, 4266, 5, 279, 0, 0, 4265, 4262, 1, 0, 0, 0, 4265, 4266, 1, 0, 0, 0, 4266, 4282, 1, 0, 0, 0, 4267, 4271, 5, 317, 0, 0, 4268, 4269, 5, 65, 0, 0, 4269, 4270, 5, 279, 0, 0, 4270, 4272, 5, 62, 0, 0, 4271, 4268, 1, 0, 0, 0, 4271, 4272, 1, 0, 0, 0, 4272, 4273, 1, 0, 0, 0, 4273, 4274, 3, 332, 166, 0, 4274, 4275, 5, 80, 0, 0, 4275, 4276, 3, 350, 175, 0, 4276, 4277, 5, 64, 0, 0, 4277, 4279, 3, 340, 170, 0, 4278, 4280, 3, 88, 44, 0, 4279, 4278, 1, 0, 0, 0, 4279, 4280, 1, 0, 0, 0, 4280, 4282, 1, 0, 0, 0, 4281, 4256, 1, 0, 0, 0, 4281, 4267, 1, 0, 0, 0, 4282, 349, 1, 0, 0, 0, 4283, 4284, 7, 55, 0, 0, 4284, 351, 1, 0, 0, 0, 4285, 4287, 5, 46, 0, 0, 4286, 4288, 5, 98, 0, 0, 4287, 4286, 1, 0, 0, 0, 4287, 4288, 1, 0, 0, 0, 4288, 4289, 1, 0, 0, 0, 4289, 4291, 5, 226, 0, 0, 4290, 4292, 5, 109, 0, 0, 4291, 4290, 1, 0, 0, 0, 4291, 4292, 1, 0, 0, 0, 4292, 4294, 1, 0, 0, 0, 4293, 4295, 3, 288, 144, 0, 4294, 4293, 1, 0, 0, 0, 4294, 4295, 1, 0, 0, 0, 4295, 4297, 1, 0, 0, 0, 4296, 4298, 3, 826, 413, 0, 4297, 4296, 1, 0, 0, 0, 4297, 4298, 1, 0, 0, 0, 4298, 4299, 1, 0, 0, 0, 4299, 4300, 5, 80, 0, 0, 4300, 4302, 3, 620, 310, 0, 4301, 4303, 3, 164, 82, 0, 4302, 4301, 1, 0, 0, 0, 4302, 4303, 1, 0, 0, 0, 4303, 4304, 1, 0, 0, 0, 4304, 4307, 3, 354, 177, 0, 4305, 4306, 5, 441, 0, 0, 4306, 4308, 3, 354, 177, 0, 4307, 4305, 1, 0, 0, 0, 4307, 4308, 1, 0, 0, 0, 4308, 4314, 1, 0, 0, 0, 4309, 4311, 5, 273, 0, 0, 4310, 4312, 5, 77, 0, 0, 4311, 4310, 1, 0, 0, 0, 4311, 4312, 1, 0, 0, 0, 4312, 4313, 1, 0, 0, 0, 4313, 4315, 5, 56, 0, 0, 4314, 4309, 1, 0, 0, 0, 4314, 4315, 1, 0, 0, 0, 4315, 4317, 1, 0, 0, 0, 4316, 4318, 3, 94, 47, 0, 4317, 4316, 1, 0, 0, 0, 4317, 4318, 1, 0, 0, 0, 4318, 4320, 1, 0, 0, 0, 4319, 4321, 3, 170, 85, 0, 4320, 4319, 1, 0, 0, 0, 4320, 4321, 1, 0, 0, 0, 4321, 4323, 1, 0, 0, 0, 4322, 4324, 3, 634, 317, 0, 4323, 4322, 1, 0, 0, 0, 4323, 4324, 1, 0, 0, 0, 4324, 353, 1, 0, 0, 0, 4325, 4326, 5, 2, 0, 0, 4326, 4331, 3, 356, 178, 0, 4327, 4328, 5, 6, 0, 0, 4328, 4330, 3, 356, 178, 0, 4329, 4327, 1, 0, 0, 0, 4330, 4333, 1, 0, 0, 0, 4331, 4329, 1, 0, 0, 0, 4331, 4332, 1, 0, 0, 0, 4332, 4334, 1, 0, 0, 0, 4333, 4331, 1, 0, 0, 0, 4334, 4335, 5, 3, 0, 0, 4335, 355, 1, 0, 0, 0, 4336, 4343, 3, 806, 403, 0, 4337, 4343, 3, 684, 342, 0, 4338, 4339, 5, 2, 0, 0, 4339, 4340, 3, 670, 335, 0, 4340, 4341, 5, 3, 0, 0, 4341, 4343, 1, 0, 0, 0, 4342, 4336, 1, 0, 0, 0, 4342, 4337, 1, 0, 0, 0, 4342, 4338, 1, 0, 0, 0, 4343, 4345, 1, 0, 0, 0, 4344, 4346, 3, 90, 45, 0, 4345, 4344, 1, 0, 0, 0, 4345, 4346, 1, 0, 0, 0, 4346, 4353, 1, 0, 0, 0, 4347, 4349, 3, 310, 155, 0, 4348, 4347, 1, 0, 0, 0, 4348, 4349, 1, 0, 0, 0, 4349, 4354, 1, 0, 0, 0, 4350, 4351, 3, 310, 155, 0, 4351, 4352, 3, 92, 46, 0, 4352, 4354, 1, 0, 0, 0, 4353, 4348, 1, 0, 0, 0, 4353, 4350, 1, 0, 0, 0, 4354, 4356, 1, 0, 0, 0, 4355, 4357, 7, 56, 0, 0, 4356, 4355, 1, 0, 0, 0, 4356, 4357, 1, 0, 0, 0, 4357, 4360, 1, 0, 0, 0, 4358, 4359, 5, 273, 0, 0, 4359, 4361, 7, 57, 0, 0, 4360, 4358, 1, 0, 0, 0, 4360, 4361, 1, 0, 0, 0, 4361, 357, 1, 0, 0, 0, 4362, 4364, 5, 46, 0, 0, 4363, 4365, 3, 360, 180, 0, 4364, 4363, 1, 0, 0, 0, 4364, 4365, 1, 0, 0, 0, 4365, 4370, 1, 0, 0, 0, 4366, 4367, 5, 211, 0, 0, 4367, 4371, 3, 812, 406, 0, 4368, 4369, 5, 296, 0, 0, 4369, 4371, 3, 802, 401, 0, 4370, 4366, 1, 0, 0, 0, 4370, 4368, 1, 0, 0, 0, 4371, 4372, 1, 0, 0, 0, 4372, 4381, 5, 2, 0, 0, 4373, 4378, 3, 384, 192, 0, 4374, 4375, 5, 6, 0, 0, 4375, 4377, 3, 384, 192, 0, 4376, 4374, 1, 0, 0, 0, 4377, 4380, 1, 0, 0, 0, 4378, 4376, 1, 0, 0, 0, 4378, 4379, 1, 0, 0, 0, 4379, 4382, 1, 0, 0, 0, 4380, 4378, 1, 0, 0, 0, 4381, 4373, 1, 0, 0, 0, 4381, 4382, 1, 0, 0, 0, 4382, 4383, 1, 0, 0, 0, 4383, 4384, 5, 3, 0, 0, 4384, 4401, 1, 0, 0, 0, 4385, 4399, 5, 316, 0, 0, 4386, 4400, 3, 382, 191, 0, 4387, 4388, 5, 92, 0, 0, 4388, 4389, 5, 2, 0, 0, 4389, 4394, 3, 396, 198, 0, 4390, 4391, 5, 6, 0, 0, 4391, 4393, 3, 396, 198, 0, 4392, 4390, 1, 0, 0, 0, 4393, 4396, 1, 0, 0, 0, 4394, 4392, 1, 0, 0, 0, 4394, 4395, 1, 0, 0, 0, 4395, 4397, 1, 0, 0, 0, 4396, 4394, 1, 0, 0, 0, 4397, 4398, 5, 3, 0, 0, 4398, 4400, 1, 0, 0, 0, 4399, 4386, 1, 0, 0, 0, 4399, 4387, 1, 0, 0, 0, 4400, 4402, 1, 0, 0, 0, 4401, 4385, 1, 0, 0, 0, 4401, 4402, 1, 0, 0, 0, 4402, 4404, 1, 0, 0, 0, 4403, 4405, 3, 392, 196, 0, 4404, 4403, 1, 0, 0, 0, 4405, 4406, 1, 0, 0, 0, 4406, 4404, 1, 0, 0, 0, 4406, 4407, 1, 0, 0, 0, 4407, 4413, 1, 0, 0, 0, 4408, 4409, 5, 105, 0, 0, 4409, 4410, 5, 2, 0, 0, 4410, 4411, 3, 788, 394, 0, 4411, 4412, 5, 3, 0, 0, 4412, 4414, 1, 0, 0, 0, 4413, 4408, 1, 0, 0, 0, 4413, 4414, 1, 0, 0, 0, 4414, 359, 1, 0, 0, 0, 4415, 4416, 5, 82, 0, 0, 4416, 4417, 5, 311, 0, 0, 4417, 361, 1, 0, 0, 0, 4418, 4420, 5, 2, 0, 0, 4419, 4421, 3, 364, 182, 0, 4420, 4419, 1, 0, 0, 0, 4420, 4421, 1, 0, 0, 0, 4421, 4422, 1, 0, 0, 0, 4422, 4423, 5, 3, 0, 0, 4423, 363, 1, 0, 0, 0, 4424, 4429, 3, 378, 189, 0, 4425, 4426, 5, 6, 0, 0, 4426, 4428, 3, 378, 189, 0, 4427, 4425, 1, 0, 0, 0, 4428, 4431, 1, 0, 0, 0, 4429, 4427, 1, 0, 0, 0, 4429, 4430, 1, 0, 0, 0, 4430, 365, 1, 0, 0, 0, 4431, 4429, 1, 0, 0, 0, 4432, 4437, 3, 368, 184, 0, 4433, 4434, 5, 6, 0, 0, 4434, 4436, 3, 368, 184, 0, 4435, 4433, 1, 0, 0, 0, 4436, 4439, 1, 0, 0, 0, 4437, 4435, 1, 0, 0, 0, 4437, 4438, 1, 0, 0, 0, 4438, 367, 1, 0, 0, 0, 4439, 4437, 1, 0, 0, 0, 4440, 4441, 3, 798, 399, 0, 4441, 4442, 3, 362, 181, 0, 4442, 4446, 1, 0, 0, 0, 4443, 4446, 3, 840, 420, 0, 4444, 4446, 3, 784, 392, 0, 4445, 4440, 1, 0, 0, 0, 4445, 4443, 1, 0, 0, 0, 4445, 4444, 1, 0, 0, 0, 4446, 369, 1, 0, 0, 0, 4447, 4452, 3, 372, 186, 0, 4448, 4449, 5, 6, 0, 0, 4449, 4451, 3, 372, 186, 0, 4450, 4448, 1, 0, 0, 0, 4451, 4454, 1, 0, 0, 0, 4452, 4450, 1, 0, 0, 0, 4452, 4453, 1, 0, 0, 0, 4453, 371, 1, 0, 0, 0, 4454, 4452, 1, 0, 0, 0, 4455, 4456, 3, 800, 400, 0, 4456, 4457, 3, 362, 181, 0, 4457, 4461, 1, 0, 0, 0, 4458, 4461, 3, 840, 420, 0, 4459, 4461, 3, 784, 392, 0, 4460, 4455, 1, 0, 0, 0, 4460, 4458, 1, 0, 0, 0, 4460, 4459, 1, 0, 0, 0, 4461, 373, 1, 0, 0, 0, 4462, 4467, 3, 376, 188, 0, 4463, 4464, 5, 6, 0, 0, 4464, 4466, 3, 376, 188, 0, 4465, 4463, 1, 0, 0, 0, 4466, 4469, 1, 0, 0, 0, 4467, 4465, 1, 0, 0, 0, 4467, 4468, 1, 0, 0, 0, 4468, 375, 1, 0, 0, 0, 4469, 4467, 1, 0, 0, 0, 4470, 4471, 3, 814, 407, 0, 4471, 4472, 3, 362, 181, 0, 4472, 4476, 1, 0, 0, 0, 4473, 4476, 3, 840, 420, 0, 4474, 4476, 3, 784, 392, 0, 4475, 4470, 1, 0, 0, 0, 4475, 4473, 1, 0, 0, 0, 4475, 4474, 1, 0, 0, 0, 4476, 377, 1, 0, 0, 0, 4477, 4479, 3, 380, 190, 0, 4478, 4480, 3, 828, 414, 0, 4479, 4478, 1, 0, 0, 0, 4479, 4480, 1, 0, 0, 0, 4480, 4486, 1, 0, 0, 0, 4481, 4483, 3, 828, 414, 0, 4482, 4484, 3, 380, 190, 0, 4483, 4482, 1, 0, 0, 0, 4483, 4484, 1, 0, 0, 0, 4484, 4486, 1, 0, 0, 0, 4485, 4477, 1, 0, 0, 0, 4485, 4481, 1, 0, 0, 0, 4485, 4486, 1, 0, 0, 0, 4486, 4487, 1, 0, 0, 0, 4487, 4488, 3, 382, 191, 0, 4488, 379, 1, 0, 0, 0, 4489, 4491, 5, 68, 0, 0, 4490, 4492, 5, 453, 0, 0, 4491, 4490, 1, 0, 0, 0, 4491, 4492, 1, 0, 0, 0, 4492, 4497, 1, 0, 0, 0, 4493, 4497, 5, 453, 0, 0, 4494, 4497, 5, 400, 0, 0, 4495, 4497, 5, 101, 0, 0, 4496, 4489, 1, 0, 0, 0, 4496, 4493, 1, 0, 0, 0, 4496, 4494, 1, 0, 0, 0, 4496, 4495, 1, 0, 0, 0, 4497, 381, 1, 0, 0, 0, 4498, 4508, 3, 648, 324, 0, 4499, 4501, 5, 415, 0, 0, 4500, 4499, 1, 0, 0, 0, 4500, 4501, 1, 0, 0, 0, 4501, 4502, 1, 0, 0, 0, 4502, 4503, 3, 828, 414, 0, 4503, 4504, 3, 312, 156, 0, 4504, 4505, 5, 27, 0, 0, 4505, 4506, 5, 360, 0, 0, 4506, 4508, 1, 0, 0, 0, 4507, 4498, 1, 0, 0, 0, 4507, 4500, 1, 0, 0, 0, 4508, 383, 1, 0, 0, 0, 4509, 4512, 3, 378, 189, 0, 4510, 4511, 7, 58, 0, 0, 4511, 4513, 3, 670, 335, 0, 4512, 4510, 1, 0, 0, 0, 4512, 4513, 1, 0, 0, 0, 4513, 385, 1, 0, 0, 0, 4514, 4524, 5, 2, 0, 0, 4515, 4525, 5, 9, 0, 0, 4516, 4518, 3, 364, 182, 0, 4517, 4516, 1, 0, 0, 0, 4517, 4518, 1, 0, 0, 0, 4518, 4522, 1, 0, 0, 0, 4519, 4520, 5, 83, 0, 0, 4520, 4521, 5, 147, 0, 0, 4521, 4523, 3, 364, 182, 0, 4522, 4519, 1, 0, 0, 0, 4522, 4523, 1, 0, 0, 0, 4523, 4525, 1, 0, 0, 0, 4524, 4515, 1, 0, 0, 0, 4524, 4517, 1, 0, 0, 0, 4525, 4526, 1, 0, 0, 0, 4526, 4527, 5, 3, 0, 0, 4527, 387, 1, 0, 0, 0, 4528, 4529, 3, 814, 407, 0, 4529, 4530, 3, 386, 193, 0, 4530, 389, 1, 0, 0, 0, 4531, 4532, 5, 316, 0, 0, 4532, 4535, 5, 78, 0, 0, 4533, 4535, 5, 149, 0, 0, 4534, 4531, 1, 0, 0, 0, 4534, 4533, 1, 0, 0, 0, 4535, 4536, 1, 0, 0, 0, 4536, 4537, 5, 80, 0, 0, 4537, 4538, 5, 78, 0, 0, 4538, 4561, 5, 458, 0, 0, 4539, 4561, 5, 346, 0, 0, 4540, 4561, 5, 222, 0, 0, 4541, 4561, 5, 338, 0, 0, 4542, 4561, 5, 377, 0, 0, 4543, 4545, 5, 205, 0, 0, 4544, 4543, 1, 0, 0, 0, 4544, 4545, 1, 0, 0, 0, 4545, 4546, 1, 0, 0, 0, 4546, 4547, 5, 327, 0, 0, 4547, 4561, 7, 59, 0, 0, 4548, 4561, 5, 250, 0, 0, 4549, 4550, 5, 77, 0, 0, 4550, 4561, 5, 250, 0, 0, 4551, 4552, 7, 60, 0, 0, 4552, 4561, 3, 196, 98, 0, 4553, 4554, 5, 459, 0, 0, 4554, 4561, 3, 310, 155, 0, 4555, 4556, 5, 333, 0, 0, 4556, 4561, 3, 42, 21, 0, 4557, 4561, 3, 60, 30, 0, 4558, 4559, 5, 460, 0, 0, 4559, 4561, 3, 826, 413, 0, 4560, 4534, 1, 0, 0, 0, 4560, 4539, 1, 0, 0, 0, 4560, 4540, 1, 0, 0, 0, 4560, 4541, 1, 0, 0, 0, 4560, 4542, 1, 0, 0, 0, 4560, 4544, 1, 0, 0, 0, 4560, 4548, 1, 0, 0, 0, 4560, 4549, 1, 0, 0, 0, 4560, 4551, 1, 0, 0, 0, 4560, 4553, 1, 0, 0, 0, 4560, 4555, 1, 0, 0, 0, 4560, 4557, 1, 0, 0, 0, 4560, 4558, 1, 0, 0, 0, 4561, 391, 1, 0, 0, 0, 4562, 4563, 5, 36, 0, 0, 4563, 4564, 3, 816, 408, 0, 4564, 4565, 3, 456, 228, 0, 4565, 4598, 1, 0, 0, 0, 4566, 4567, 5, 247, 0, 0, 4567, 4598, 3, 58, 29, 0, 4568, 4569, 5, 443, 0, 0, 4569, 4570, 5, 62, 0, 0, 4570, 4571, 5, 360, 0, 0, 4571, 4578, 3, 648, 324, 0, 4572, 4573, 5, 6, 0, 0, 4573, 4574, 5, 62, 0, 0, 4574, 4575, 5, 360, 0, 0, 4575, 4577, 3, 648, 324, 0, 4576, 4572, 1, 0, 0, 0, 4577, 4580, 1, 0, 0, 0, 4578, 4576, 1, 0, 0, 0, 4578, 4579, 1, 0, 0, 0, 4579, 4598, 1, 0, 0, 0, 4580, 4578, 1, 0, 0, 0, 4581, 4598, 5, 104, 0, 0, 4582, 4583, 5, 333, 0, 0, 4583, 4590, 3, 826, 413, 0, 4584, 4585, 5, 94, 0, 0, 4585, 4591, 3, 826, 413, 0, 4586, 4587, 5, 10, 0, 0, 4587, 4591, 3, 826, 413, 0, 4588, 4589, 5, 64, 0, 0, 4589, 4591, 5, 434, 0, 0, 4590, 4584, 1, 0, 0, 0, 4590, 4586, 1, 0, 0, 0, 4590, 4588, 1, 0, 0, 0, 4591, 4598, 1, 0, 0, 0, 4592, 4593, 5, 36, 0, 0, 4593, 4598, 3, 826, 413, 0, 4594, 4598, 3, 4, 2, 0, 4595, 4598, 3, 390, 195, 0, 4596, 4598, 3, 826, 413, 0, 4597, 4562, 1, 0, 0, 0, 4597, 4566, 1, 0, 0, 0, 4597, 4568, 1, 0, 0, 0, 4597, 4581, 1, 0, 0, 0, 4597, 4582, 1, 0, 0, 0, 4597, 4592, 1, 0, 0, 0, 4597, 4594, 1, 0, 0, 0, 4597, 4595, 1, 0, 0, 0, 4597, 4596, 1, 0, 0, 0, 4598, 393, 1, 0, 0, 0, 4599, 4600, 5, 105, 0, 0, 4600, 4601, 3, 278, 139, 0, 4601, 395, 1, 0, 0, 0, 4602, 4603, 3, 806, 403, 0, 4603, 4604, 3, 382, 191, 0, 4604, 397, 1, 0, 0, 0, 4605, 4612, 5, 138, 0, 0, 4606, 4607, 5, 211, 0, 0, 4607, 4613, 3, 376, 188, 0, 4608, 4609, 5, 296, 0, 0, 4609, 4613, 3, 372, 186, 0, 4610, 4611, 5, 442, 0, 0, 4611, 4613, 3, 368, 184, 0, 4612, 4606, 1, 0, 0, 0, 4612, 4608, 1, 0, 0, 0, 4612, 4610, 1, 0, 0, 0, 4613, 4615, 1, 0, 0, 0, 4614, 4616, 3, 390, 195, 0, 4615, 4614, 1, 0, 0, 0, 4616, 4617, 1, 0, 0, 0, 4617, 4615, 1, 0, 0, 0, 4617, 4618, 1, 0, 0, 0, 4618, 4620, 1, 0, 0, 0, 4619, 4621, 5, 315, 0, 0, 4620, 4619, 1, 0, 0, 0, 4620, 4621, 1, 0, 0, 0, 4621, 399, 1, 0, 0, 0, 4622, 4638, 5, 191, 0, 0, 4623, 4625, 5, 211, 0, 0, 4624, 4626, 3, 416, 208, 0, 4625, 4624, 1, 0, 0, 0, 4625, 4626, 1, 0, 0, 0, 4626, 4627, 1, 0, 0, 0, 4627, 4639, 3, 374, 187, 0, 4628, 4630, 5, 296, 0, 0, 4629, 4631, 3, 416, 208, 0, 4630, 4629, 1, 0, 0, 0, 4630, 4631, 1, 0, 0, 0, 4631, 4632, 1, 0, 0, 0, 4632, 4639, 3, 370, 185, 0, 4633, 4635, 5, 442, 0, 0, 4634, 4636, 3, 416, 208, 0, 4635, 4634, 1, 0, 0, 0, 4635, 4636, 1, 0, 0, 0, 4636, 4637, 1, 0, 0, 0, 4637, 4639, 3, 366, 183, 0, 4638, 4623, 1, 0, 0, 0, 4638, 4628, 1, 0, 0, 0, 4638, 4633, 1, 0, 0, 0, 4639, 4641, 1, 0, 0, 0, 4640, 4642, 3, 88, 44, 0, 4641, 4640, 1, 0, 0, 0, 4641, 4642, 1, 0, 0, 0, 4642, 401, 1, 0, 0, 0, 4643, 4644, 5, 191, 0, 0, 4644, 4646, 5, 136, 0, 0, 4645, 4647, 3, 416, 208, 0, 4646, 4645, 1, 0, 0, 0, 4646, 4647, 1, 0, 0, 0, 4647, 4648, 1, 0, 0, 0, 4648, 4653, 3, 388, 194, 0, 4649, 4650, 5, 6, 0, 0, 4650, 4652, 3, 388, 194, 0, 4651, 4649, 1, 0, 0, 0, 4652, 4655, 1, 0, 0, 0, 4653, 4651, 1, 0, 0, 0, 4653, 4654, 1, 0, 0, 0, 4654, 4657, 1, 0, 0, 0, 4655, 4653, 1, 0, 0, 0, 4656, 4658, 3, 88, 44, 0, 4657, 4656, 1, 0, 0, 0, 4657, 4658, 1, 0, 0, 0, 4658, 403, 1, 0, 0, 0, 4659, 4660, 5, 191, 0, 0, 4660, 4662, 5, 278, 0, 0, 4661, 4663, 3, 416, 208, 0, 4662, 4661, 1, 0, 0, 0, 4662, 4663, 1, 0, 0, 0, 4663, 4664, 1, 0, 0, 0, 4664, 4669, 3, 410, 205, 0, 4665, 4666, 5, 6, 0, 0, 4666, 4668, 3, 410, 205, 0, 4667, 4665, 1, 0, 0, 0, 4668, 4671, 1, 0, 0, 0, 4669, 4667, 1, 0, 0, 0, 4669, 4670, 1, 0, 0, 0, 4670, 4673, 1, 0, 0, 0, 4671, 4669, 1, 0, 0, 0, 4672, 4674, 3, 88, 44, 0, 4673, 4672, 1, 0, 0, 0, 4673, 4674, 1, 0, 0, 0, 4674, 405, 1, 0, 0, 0, 4675, 4688, 5, 2, 0, 0, 4676, 4679, 3, 648, 324, 0, 4677, 4678, 5, 6, 0, 0, 4678, 4680, 3, 648, 324, 0, 4679, 4677, 1, 0, 0, 0, 4679, 4680, 1, 0, 0, 0, 4680, 4689, 1, 0, 0, 0, 4681, 4682, 5, 407, 0, 0, 4682, 4683, 5, 6, 0, 0, 4683, 4689, 3, 648, 324, 0, 4684, 4685, 3, 648, 324, 0, 4685, 4686, 5, 6, 0, 0, 4686, 4687, 5, 407, 0, 0, 4687, 4689, 1, 0, 0, 0, 4688, 4676, 1, 0, 0, 0, 4688, 4681, 1, 0, 0, 0, 4688, 4684, 1, 0, 0, 0, 4689, 4690, 1, 0, 0, 0, 4690, 4691, 5, 3, 0, 0, 4691, 407, 1, 0, 0, 0, 4692, 4693, 3, 826, 413, 0, 4693, 4694, 5, 11, 0, 0, 4694, 4696, 1, 0, 0, 0, 4695, 4692, 1, 0, 0, 0, 4696, 4699, 1, 0, 0, 0, 4697, 4695, 1, 0, 0, 0, 4697, 4698, 1, 0, 0, 0, 4698, 4700, 1, 0, 0, 0, 4699, 4697, 1, 0, 0, 0, 4700, 4701, 3, 718, 359, 0, 4701, 409, 1, 0, 0, 0, 4702, 4703, 3, 408, 204, 0, 4703, 4704, 3, 406, 203, 0, 4704, 411, 1, 0, 0, 0, 4705, 4709, 5, 57, 0, 0, 4706, 4710, 3, 816, 408, 0, 4707, 4708, 5, 247, 0, 0, 4708, 4710, 3, 58, 29, 0, 4709, 4706, 1, 0, 0, 0, 4709, 4707, 1, 0, 0, 0, 4710, 4711, 1, 0, 0, 0, 4711, 4709, 1, 0, 0, 0, 4711, 4712, 1, 0, 0, 0, 4712, 413, 1, 0, 0, 0, 4713, 4714, 5, 46, 0, 0, 4714, 4715, 5, 41, 0, 0, 4715, 4716, 5, 2, 0, 0, 4716, 4717, 3, 648, 324, 0, 4717, 4718, 5, 36, 0, 0, 4718, 4719, 3, 648, 324, 0, 4719, 4736, 5, 3, 0, 0, 4720, 4721, 5, 379, 0, 0, 4721, 4724, 5, 211, 0, 0, 4722, 4723, 5, 36, 0, 0, 4723, 4725, 7, 61, 0, 0, 4724, 4722, 1, 0, 0, 0, 4724, 4725, 1, 0, 0, 0, 4725, 4737, 1, 0, 0, 0, 4726, 4730, 5, 105, 0, 0, 4727, 4728, 5, 211, 0, 0, 4728, 4731, 3, 376, 188, 0, 4729, 4731, 5, 400, 0, 0, 4730, 4727, 1, 0, 0, 0, 4730, 4729, 1, 0, 0, 0, 4731, 4734, 1, 0, 0, 0, 4732, 4733, 5, 36, 0, 0, 4733, 4735, 7, 61, 0, 0, 4734, 4732, 1, 0, 0, 0, 4734, 4735, 1, 0, 0, 0, 4735, 4737, 1, 0, 0, 0, 4736, 4720, 1, 0, 0, 0, 4736, 4726, 1, 0, 0, 0, 4737, 415, 1, 0, 0, 0, 4738, 4739, 5, 220, 0, 0, 4739, 4740, 5, 396, 0, 0, 4740, 417, 1, 0, 0, 0, 4741, 4743, 5, 46, 0, 0, 4742, 4744, 3, 360, 180, 0, 4743, 4742, 1, 0, 0, 0, 4743, 4744, 1, 0, 0, 0, 4744, 4745, 1, 0, 0, 0, 4745, 4746, 5, 443, 0, 0, 4746, 4747, 5, 62, 0, 0, 4747, 4748, 3, 648, 324, 0, 4748, 4749, 5, 247, 0, 0, 4749, 4750, 3, 826, 413, 0, 4750, 4765, 5, 2, 0, 0, 4751, 4752, 5, 64, 0, 0, 4752, 4756, 3, 420, 210, 0, 4753, 4754, 5, 6, 0, 0, 4754, 4755, 5, 94, 0, 0, 4755, 4757, 3, 420, 210, 0, 4756, 4753, 1, 0, 0, 0, 4756, 4757, 1, 0, 0, 0, 4757, 4766, 1, 0, 0, 0, 4758, 4759, 5, 94, 0, 0, 4759, 4763, 3, 420, 210, 0, 4760, 4761, 5, 6, 0, 0, 4761, 4762, 5, 64, 0, 0, 4762, 4764, 3, 420, 210, 0, 4763, 4760, 1, 0, 0, 0, 4763, 4764, 1, 0, 0, 0, 4764, 4766, 1, 0, 0, 0, 4765, 4751, 1, 0, 0, 0, 4765, 4758, 1, 0, 0, 0, 4766, 4767, 1, 0, 0, 0, 4767, 4768, 5, 3, 0, 0, 4768, 419, 1, 0, 0, 0, 4769, 4770, 5, 461, 0, 0, 4770, 4771, 5, 105, 0, 0, 4771, 4772, 5, 211, 0, 0, 4772, 4773, 3, 376, 188, 0, 4773, 421, 1, 0, 0, 0, 4774, 4785, 5, 306, 0, 0, 4775, 4776, 5, 2, 0, 0, 4776, 4781, 5, 128, 0, 0, 4777, 4778, 5, 6, 0, 0, 4778, 4780, 5, 128, 0, 0, 4779, 4777, 1, 0, 0, 0, 4780, 4783, 1, 0, 0, 0, 4781, 4779, 1, 0, 0, 0, 4781, 4782, 1, 0, 0, 0, 4782, 4784, 1, 0, 0, 0, 4783, 4781, 1, 0, 0, 0, 4784, 4786, 5, 3, 0, 0, 4785, 4775, 1, 0, 0, 0, 4785, 4786, 1, 0, 0, 0, 4786, 4812, 1, 0, 0, 0, 4787, 4789, 5, 226, 0, 0, 4788, 4790, 5, 109, 0, 0, 4789, 4788, 1, 0, 0, 0, 4789, 4790, 1, 0, 0, 0, 4790, 4791, 1, 0, 0, 0, 4791, 4813, 3, 784, 392, 0, 4792, 4794, 5, 92, 0, 0, 4793, 4795, 5, 109, 0, 0, 4794, 4793, 1, 0, 0, 0, 4794, 4795, 1, 0, 0, 0, 4795, 4796, 1, 0, 0, 0, 4796, 4813, 3, 778, 389, 0, 4797, 4799, 5, 323, 0, 0, 4798, 4800, 5, 109, 0, 0, 4799, 4798, 1, 0, 0, 0, 4799, 4800, 1, 0, 0, 0, 4800, 4801, 1, 0, 0, 0, 4801, 4813, 3, 794, 397, 0, 4802, 4804, 5, 349, 0, 0, 4803, 4805, 5, 109, 0, 0, 4804, 4803, 1, 0, 0, 0, 4804, 4805, 1, 0, 0, 0, 4805, 4806, 1, 0, 0, 0, 4806, 4813, 3, 826, 413, 0, 4807, 4809, 5, 175, 0, 0, 4808, 4810, 5, 109, 0, 0, 4809, 4808, 1, 0, 0, 0, 4809, 4810, 1, 0, 0, 0, 4810, 4811, 1, 0, 0, 0, 4811, 4813, 3, 792, 396, 0, 4812, 4787, 1, 0, 0, 0, 4812, 4792, 1, 0, 0, 0, 4812, 4797, 1, 0, 0, 0, 4812, 4802, 1, 0, 0, 0, 4812, 4807, 1, 0, 0, 0, 4813, 423, 1, 0, 0, 0, 4814, 4815, 5, 138, 0, 0, 4815, 4816, 3, 170, 85, 0, 4816, 4817, 7, 16, 0, 0, 4817, 4818, 3, 92, 46, 0, 4818, 425, 1, 0, 0, 0, 4819, 4824, 5, 138, 0, 0, 4820, 4821, 5, 136, 0, 0, 4821, 4825, 3, 388, 194, 0, 4822, 4823, 5, 442, 0, 0, 4823, 4825, 3, 368, 184, 0, 4824, 4820, 1, 0, 0, 0, 4824, 4822, 1, 0, 0, 0, 4825, 4826, 1, 0, 0, 0, 4826, 4827, 5, 309, 0, 0, 4827, 4828, 5, 94, 0, 0, 4828, 4829, 3, 826, 413, 0, 4829, 5027, 1, 0, 0, 0, 4830, 4831, 5, 138, 0, 0, 4831, 4832, 5, 175, 0, 0, 4832, 4833, 3, 792, 396, 0, 4833, 4834, 5, 309, 0, 0, 4834, 4835, 5, 94, 0, 0, 4835, 4836, 3, 790, 395, 0, 4836, 5027, 1, 0, 0, 0, 4837, 4838, 5, 138, 0, 0, 4838, 4839, 7, 62, 0, 0, 4839, 4840, 3, 310, 155, 0, 4840, 4841, 5, 309, 0, 0, 4841, 4842, 5, 94, 0, 0, 4842, 4843, 3, 826, 413, 0, 4843, 5027, 1, 0, 0, 0, 4844, 4845, 5, 138, 0, 0, 4845, 4846, 5, 211, 0, 0, 4846, 4847, 3, 376, 188, 0, 4847, 4848, 5, 309, 0, 0, 4848, 4849, 5, 94, 0, 0, 4849, 4850, 3, 812, 406, 0, 4850, 5027, 1, 0, 0, 0, 4851, 4852, 5, 138, 0, 0, 4852, 4853, 5, 278, 0, 0, 4853, 4854, 7, 32, 0, 0, 4854, 4855, 3, 310, 155, 0, 4855, 4856, 3, 164, 82, 0, 4856, 4857, 5, 309, 0, 0, 4857, 4858, 5, 94, 0, 0, 4858, 4859, 3, 826, 413, 0, 4859, 5027, 1, 0, 0, 0, 4860, 4861, 5, 138, 0, 0, 4861, 4862, 5, 296, 0, 0, 4862, 4863, 3, 372, 186, 0, 4863, 4864, 5, 309, 0, 0, 4864, 4865, 5, 94, 0, 0, 4865, 4866, 3, 802, 401, 0, 4866, 5027, 1, 0, 0, 0, 4867, 4868, 5, 138, 0, 0, 4868, 4869, 5, 323, 0, 0, 4869, 4870, 3, 794, 397, 0, 4870, 4871, 5, 309, 0, 0, 4871, 4872, 5, 94, 0, 0, 4872, 4873, 3, 32, 16, 0, 4873, 5027, 1, 0, 0, 0, 4874, 4875, 5, 138, 0, 0, 4875, 4877, 7, 63, 0, 0, 4876, 4878, 3, 416, 208, 0, 4877, 4876, 1, 0, 0, 0, 4877, 4878, 1, 0, 0, 0, 4878, 4879, 1, 0, 0, 0, 4879, 4880, 3, 784, 392, 0, 4880, 4881, 5, 309, 0, 0, 4881, 4882, 5, 94, 0, 0, 4882, 4883, 3, 826, 413, 0, 4883, 5027, 1, 0, 0, 0, 4884, 4886, 5, 138, 0, 0, 4885, 4887, 5, 259, 0, 0, 4886, 4885, 1, 0, 0, 0, 4886, 4887, 1, 0, 0, 0, 4887, 4888, 1, 0, 0, 0, 4888, 4890, 5, 376, 0, 0, 4889, 4891, 3, 416, 208, 0, 4890, 4889, 1, 0, 0, 0, 4890, 4891, 1, 0, 0, 0, 4891, 4892, 1, 0, 0, 0, 4892, 4893, 3, 782, 391, 0, 4893, 4894, 5, 309, 0, 0, 4894, 4895, 5, 94, 0, 0, 4895, 4896, 3, 780, 390, 0, 4896, 5027, 1, 0, 0, 0, 4897, 4899, 5, 138, 0, 0, 4898, 4900, 5, 63, 0, 0, 4899, 4898, 1, 0, 0, 0, 4899, 4900, 1, 0, 0, 0, 4900, 4901, 1, 0, 0, 0, 4901, 4903, 5, 92, 0, 0, 4902, 4904, 3, 416, 208, 0, 4903, 4902, 1, 0, 0, 0, 4903, 4904, 1, 0, 0, 0, 4904, 4905, 1, 0, 0, 0, 4905, 4906, 3, 620, 310, 0, 4906, 4907, 5, 309, 0, 0, 4907, 4908, 5, 94, 0, 0, 4908, 4909, 3, 776, 388, 0, 4909, 5027, 1, 0, 0, 0, 4910, 4935, 5, 138, 0, 0, 4911, 4913, 5, 63, 0, 0, 4912, 4911, 1, 0, 0, 0, 4912, 4913, 1, 0, 0, 0, 4913, 4914, 1, 0, 0, 0, 4914, 4916, 5, 92, 0, 0, 4915, 4917, 3, 416, 208, 0, 4916, 4915, 1, 0, 0, 0, 4916, 4917, 1, 0, 0, 0, 4917, 4918, 1, 0, 0, 0, 4918, 4919, 3, 620, 310, 0, 4919, 4921, 5, 309, 0, 0, 4920, 4922, 5, 44, 0, 0, 4921, 4920, 1, 0, 0, 0, 4921, 4922, 1, 0, 0, 0, 4922, 4936, 1, 0, 0, 0, 4923, 4925, 5, 259, 0, 0, 4924, 4923, 1, 0, 0, 0, 4924, 4925, 1, 0, 0, 0, 4925, 4926, 1, 0, 0, 0, 4926, 4928, 5, 376, 0, 0, 4927, 4929, 3, 416, 208, 0, 4928, 4927, 1, 0, 0, 0, 4928, 4929, 1, 0, 0, 0, 4929, 4930, 1, 0, 0, 0, 4930, 4931, 3, 782, 391, 0, 4931, 4933, 5, 309, 0, 0, 4932, 4934, 5, 44, 0, 0, 4933, 4932, 1, 0, 0, 0, 4933, 4934, 1, 0, 0, 0, 4934, 4936, 1, 0, 0, 0, 4935, 4912, 1, 0, 0, 0, 4935, 4924, 1, 0, 0, 0, 4936, 4937, 1, 0, 0, 0, 4937, 4938, 3, 806, 403, 0, 4938, 4939, 5, 94, 0, 0, 4939, 4940, 3, 810, 405, 0, 4940, 5027, 1, 0, 0, 0, 4941, 4949, 5, 138, 0, 0, 4942, 4944, 5, 92, 0, 0, 4943, 4945, 3, 416, 208, 0, 4944, 4943, 1, 0, 0, 0, 4944, 4945, 1, 0, 0, 0, 4945, 4946, 1, 0, 0, 0, 4946, 4950, 3, 620, 310, 0, 4947, 4948, 5, 189, 0, 0, 4948, 4950, 3, 310, 155, 0, 4949, 4942, 1, 0, 0, 0, 4949, 4947, 1, 0, 0, 0, 4950, 4951, 1, 0, 0, 0, 4951, 4952, 5, 309, 0, 0, 4952, 4953, 5, 45, 0, 0, 4953, 4954, 3, 826, 413, 0, 4954, 4955, 5, 94, 0, 0, 4955, 4956, 3, 826, 413, 0, 4956, 5027, 1, 0, 0, 0, 4957, 4964, 5, 138, 0, 0, 4958, 4960, 5, 445, 0, 0, 4959, 4961, 3, 416, 208, 0, 4960, 4959, 1, 0, 0, 0, 4960, 4961, 1, 0, 0, 0, 4961, 4965, 1, 0, 0, 0, 4962, 4965, 5, 321, 0, 0, 4963, 4965, 5, 357, 0, 0, 4964, 4958, 1, 0, 0, 0, 4964, 4962, 1, 0, 0, 0, 4964, 4963, 1, 0, 0, 0, 4965, 4966, 1, 0, 0, 0, 4966, 4967, 3, 826, 413, 0, 4967, 4968, 5, 80, 0, 0, 4968, 4969, 3, 784, 392, 0, 4969, 4970, 5, 309, 0, 0, 4970, 4971, 5, 94, 0, 0, 4971, 4972, 3, 826, 413, 0, 4972, 5027, 1, 0, 0, 0, 4973, 4986, 5, 138, 0, 0, 4974, 4975, 5, 63, 0, 0, 4975, 4976, 5, 174, 0, 0, 4976, 4987, 5, 381, 0, 0, 4977, 4979, 5, 295, 0, 0, 4978, 4977, 1, 0, 0, 0, 4978, 4979, 1, 0, 0, 0, 4979, 4980, 1, 0, 0, 0, 4980, 4987, 5, 247, 0, 0, 4981, 4987, 5, 452, 0, 0, 4982, 4987, 5, 331, 0, 0, 4983, 4987, 5, 451, 0, 0, 4984, 4985, 5, 198, 0, 0, 4985, 4987, 5, 357, 0, 0, 4986, 4974, 1, 0, 0, 0, 4986, 4978, 1, 0, 0, 0, 4986, 4981, 1, 0, 0, 0, 4986, 4982, 1, 0, 0, 0, 4986, 4983, 1, 0, 0, 0, 4986, 4984, 1, 0, 0, 0, 4987, 4988, 1, 0, 0, 0, 4988, 4989, 3, 826, 413, 0, 4989, 4990, 5, 309, 0, 0, 4990, 4991, 5, 94, 0, 0, 4991, 4992, 3, 826, 413, 0, 4992, 5027, 1, 0, 0, 0, 4993, 4994, 5, 138, 0, 0, 4994, 4995, 7, 46, 0, 0, 4995, 4996, 3, 822, 411, 0, 4996, 4997, 5, 309, 0, 0, 4997, 4998, 5, 94, 0, 0, 4998, 4999, 3, 822, 411, 0, 4999, 5027, 1, 0, 0, 0, 5000, 5001, 5, 138, 0, 0, 5001, 5002, 3, 170, 85, 0, 5002, 5003, 5, 309, 0, 0, 5003, 5004, 5, 94, 0, 0, 5004, 5005, 3, 774, 387, 0, 5005, 5027, 1, 0, 0, 0, 5006, 5007, 5, 138, 0, 0, 5007, 5008, 5, 355, 0, 0, 5008, 5009, 5, 325, 0, 0, 5009, 5010, 7, 42, 0, 0, 5010, 5011, 3, 310, 155, 0, 5011, 5012, 5, 309, 0, 0, 5012, 5013, 5, 94, 0, 0, 5013, 5014, 3, 826, 413, 0, 5014, 5027, 1, 0, 0, 0, 5015, 5016, 5, 138, 0, 0, 5016, 5017, 5, 360, 0, 0, 5017, 5018, 3, 310, 155, 0, 5018, 5019, 5, 309, 0, 0, 5019, 5020, 5, 143, 0, 0, 5020, 5021, 3, 826, 413, 0, 5021, 5022, 5, 94, 0, 0, 5022, 5024, 3, 826, 413, 0, 5023, 5025, 3, 88, 44, 0, 5024, 5023, 1, 0, 0, 0, 5024, 5025, 1, 0, 0, 0, 5025, 5027, 1, 0, 0, 0, 5026, 4819, 1, 0, 0, 0, 5026, 4830, 1, 0, 0, 0, 5026, 4837, 1, 0, 0, 0, 5026, 4844, 1, 0, 0, 0, 5026, 4851, 1, 0, 0, 0, 5026, 4860, 1, 0, 0, 0, 5026, 4867, 1, 0, 0, 0, 5026, 4874, 1, 0, 0, 0, 5026, 4884, 1, 0, 0, 0, 5026, 4897, 1, 0, 0, 0, 5026, 4910, 1, 0, 0, 0, 5026, 4941, 1, 0, 0, 0, 5026, 4957, 1, 0, 0, 0, 5026, 4973, 1, 0, 0, 0, 5026, 4993, 1, 0, 0, 0, 5026, 5000, 1, 0, 0, 0, 5026, 5006, 1, 0, 0, 0, 5026, 5015, 1, 0, 0, 0, 5027, 427, 1, 0, 0, 0, 5028, 5045, 5, 138, 0, 0, 5029, 5030, 5, 211, 0, 0, 5030, 5046, 3, 376, 188, 0, 5031, 5032, 5, 296, 0, 0, 5032, 5046, 3, 372, 186, 0, 5033, 5034, 5, 442, 0, 0, 5034, 5046, 3, 368, 184, 0, 5035, 5036, 5, 357, 0, 0, 5036, 5037, 3, 826, 413, 0, 5037, 5038, 5, 80, 0, 0, 5038, 5039, 3, 784, 392, 0, 5039, 5046, 1, 0, 0, 0, 5040, 5041, 5, 259, 0, 0, 5041, 5042, 5, 376, 0, 0, 5042, 5046, 3, 782, 391, 0, 5043, 5044, 5, 226, 0, 0, 5044, 5046, 3, 784, 392, 0, 5045, 5029, 1, 0, 0, 0, 5045, 5031, 1, 0, 0, 0, 5045, 5033, 1, 0, 0, 0, 5045, 5035, 1, 0, 0, 0, 5045, 5040, 1, 0, 0, 0, 5045, 5043, 1, 0, 0, 0, 5046, 5048, 1, 0, 0, 0, 5047, 5049, 5, 269, 0, 0, 5048, 5047, 1, 0, 0, 0, 5048, 5049, 1, 0, 0, 0, 5049, 5050, 1, 0, 0, 0, 5050, 5051, 5, 462, 0, 0, 5051, 5052, 5, 80, 0, 0, 5052, 5053, 5, 204, 0, 0, 5053, 5054, 3, 826, 413, 0, 5054, 429, 1, 0, 0, 0, 5055, 5094, 5, 138, 0, 0, 5056, 5057, 5, 136, 0, 0, 5057, 5095, 3, 388, 194, 0, 5058, 5059, 5, 204, 0, 0, 5059, 5095, 3, 826, 413, 0, 5060, 5061, 5, 211, 0, 0, 5061, 5095, 3, 376, 188, 0, 5062, 5063, 5, 278, 0, 0, 5063, 5095, 3, 410, 205, 0, 5064, 5065, 5, 278, 0, 0, 5065, 5066, 7, 32, 0, 0, 5066, 5067, 3, 310, 155, 0, 5067, 5068, 3, 164, 82, 0, 5068, 5095, 1, 0, 0, 0, 5069, 5070, 5, 296, 0, 0, 5070, 5095, 3, 372, 186, 0, 5071, 5072, 5, 442, 0, 0, 5072, 5095, 3, 368, 184, 0, 5073, 5075, 5, 328, 0, 0, 5074, 5076, 3, 416, 208, 0, 5075, 5074, 1, 0, 0, 0, 5075, 5076, 1, 0, 0, 0, 5076, 5077, 1, 0, 0, 0, 5077, 5095, 3, 784, 392, 0, 5078, 5080, 5, 259, 0, 0, 5079, 5078, 1, 0, 0, 0, 5079, 5080, 1, 0, 0, 0, 5080, 5081, 1, 0, 0, 0, 5081, 5083, 5, 376, 0, 0, 5082, 5084, 3, 416, 208, 0, 5083, 5082, 1, 0, 0, 0, 5083, 5084, 1, 0, 0, 0, 5084, 5085, 1, 0, 0, 0, 5085, 5095, 3, 782, 391, 0, 5086, 5088, 5, 63, 0, 0, 5087, 5086, 1, 0, 0, 0, 5087, 5088, 1, 0, 0, 0, 5088, 5089, 1, 0, 0, 0, 5089, 5091, 5, 92, 0, 0, 5090, 5092, 3, 416, 208, 0, 5091, 5090, 1, 0, 0, 0, 5091, 5092, 1, 0, 0, 0, 5092, 5093, 1, 0, 0, 0, 5093, 5095, 3, 620, 310, 0, 5094, 5056, 1, 0, 0, 0, 5094, 5058, 1, 0, 0, 0, 5094, 5060, 1, 0, 0, 0, 5094, 5062, 1, 0, 0, 0, 5094, 5064, 1, 0, 0, 0, 5094, 5069, 1, 0, 0, 0, 5094, 5071, 1, 0, 0, 0, 5094, 5073, 1, 0, 0, 0, 5094, 5079, 1, 0, 0, 0, 5094, 5087, 1, 0, 0, 0, 5095, 5096, 1, 0, 0, 0, 5096, 5097, 5, 333, 0, 0, 5097, 5098, 5, 323, 0, 0, 5098, 5099, 3, 794, 397, 0, 5099, 5117, 1, 0, 0, 0, 5100, 5109, 5, 138, 0, 0, 5101, 5102, 5, 355, 0, 0, 5102, 5103, 5, 325, 0, 0, 5103, 5110, 7, 42, 0, 0, 5104, 5110, 5, 108, 0, 0, 5105, 5110, 5, 168, 0, 0, 5106, 5110, 5, 189, 0, 0, 5107, 5110, 5, 342, 0, 0, 5108, 5110, 5, 360, 0, 0, 5109, 5101, 1, 0, 0, 0, 5109, 5104, 1, 0, 0, 0, 5109, 5105, 1, 0, 0, 0, 5109, 5106, 1, 0, 0, 0, 5109, 5107, 1, 0, 0, 0, 5109, 5108, 1, 0, 0, 0, 5110, 5111, 1, 0, 0, 0, 5111, 5112, 3, 310, 155, 0, 5112, 5113, 5, 333, 0, 0, 5113, 5114, 5, 323, 0, 0, 5114, 5115, 3, 794, 397, 0, 5115, 5117, 1, 0, 0, 0, 5116, 5055, 1, 0, 0, 0, 5116, 5100, 1, 0, 0, 0, 5117, 431, 1, 0, 0, 0, 5118, 5119, 5, 138, 0, 0, 5119, 5120, 5, 278, 0, 0, 5120, 5121, 3, 410, 205, 0, 5121, 5122, 5, 333, 0, 0, 5122, 5123, 3, 434, 217, 0, 5123, 433, 1, 0, 0, 0, 5124, 5125, 5, 2, 0, 0, 5125, 5130, 3, 436, 218, 0, 5126, 5127, 5, 6, 0, 0, 5127, 5129, 3, 436, 218, 0, 5128, 5126, 1, 0, 0, 0, 5129, 5132, 1, 0, 0, 0, 5130, 5128, 1, 0, 0, 0, 5130, 5131, 1, 0, 0, 0, 5131, 5133, 1, 0, 0, 0, 5132, 5130, 1, 0, 0, 0, 5133, 5134, 5, 3, 0, 0, 5134, 435, 1, 0, 0, 0, 5135, 5136, 3, 832, 416, 0, 5136, 5143, 5, 10, 0, 0, 5137, 5144, 5, 407, 0, 0, 5138, 5144, 3, 382, 191, 0, 5139, 5144, 3, 842, 421, 0, 5140, 5144, 3, 724, 362, 0, 5141, 5144, 3, 196, 98, 0, 5142, 5144, 3, 816, 408, 0, 5143, 5137, 1, 0, 0, 0, 5143, 5138, 1, 0, 0, 0, 5143, 5139, 1, 0, 0, 0, 5143, 5140, 1, 0, 0, 0, 5143, 5141, 1, 0, 0, 0, 5143, 5142, 1, 0, 0, 0, 5144, 437, 1, 0, 0, 0, 5145, 5146, 5, 138, 0, 0, 5146, 5147, 5, 360, 0, 0, 5147, 5148, 3, 310, 155, 0, 5148, 5149, 5, 333, 0, 0, 5149, 5150, 3, 434, 217, 0, 5150, 439, 1, 0, 0, 0, 5151, 5152, 5, 138, 0, 0, 5152, 5153, 5, 278, 0, 0, 5153, 5154, 7, 32, 0, 0, 5154, 5155, 3, 310, 155, 0, 5155, 5156, 3, 164, 82, 0, 5156, 5157, 5, 282, 0, 0, 5157, 5158, 5, 94, 0, 0, 5158, 5159, 3, 822, 411, 0, 5159, 5226, 1, 0, 0, 0, 5160, 5187, 5, 138, 0, 0, 5161, 5162, 5, 136, 0, 0, 5162, 5188, 3, 388, 194, 0, 5163, 5164, 5, 175, 0, 0, 5164, 5188, 3, 792, 396, 0, 5165, 5166, 5, 211, 0, 0, 5166, 5188, 3, 376, 188, 0, 5167, 5169, 5, 295, 0, 0, 5168, 5167, 1, 0, 0, 0, 5168, 5169, 1, 0, 0, 0, 5169, 5170, 1, 0, 0, 0, 5170, 5171, 5, 247, 0, 0, 5171, 5188, 3, 826, 413, 0, 5172, 5173, 5, 248, 0, 0, 5173, 5174, 5, 274, 0, 0, 5174, 5188, 3, 196, 98, 0, 5175, 5176, 5, 248, 0, 0, 5176, 5177, 5, 274, 0, 0, 5177, 5188, 3, 196, 98, 0, 5178, 5179, 5, 278, 0, 0, 5179, 5188, 3, 410, 205, 0, 5180, 5181, 5, 296, 0, 0, 5181, 5188, 3, 372, 186, 0, 5182, 5183, 5, 442, 0, 0, 5183, 5188, 3, 368, 184, 0, 5184, 5185, 5, 323, 0, 0, 5185, 5188, 3, 794, 397, 0, 5186, 5188, 3, 170, 85, 0, 5187, 5161, 1, 0, 0, 0, 5187, 5163, 1, 0, 0, 0, 5187, 5165, 1, 0, 0, 0, 5187, 5168, 1, 0, 0, 0, 5187, 5172, 1, 0, 0, 0, 5187, 5175, 1, 0, 0, 0, 5187, 5178, 1, 0, 0, 0, 5187, 5180, 1, 0, 0, 0, 5187, 5182, 1, 0, 0, 0, 5187, 5184, 1, 0, 0, 0, 5187, 5186, 1, 0, 0, 0, 5188, 5189, 1, 0, 0, 0, 5189, 5190, 5, 282, 0, 0, 5190, 5191, 5, 94, 0, 0, 5191, 5192, 3, 822, 411, 0, 5192, 5226, 1, 0, 0, 0, 5193, 5202, 5, 138, 0, 0, 5194, 5195, 5, 355, 0, 0, 5195, 5196, 5, 325, 0, 0, 5196, 5203, 7, 64, 0, 0, 5197, 5203, 5, 108, 0, 0, 5198, 5203, 5, 168, 0, 0, 5199, 5203, 5, 189, 0, 0, 5200, 5203, 5, 360, 0, 0, 5201, 5203, 5, 342, 0, 0, 5202, 5194, 1, 0, 0, 0, 5202, 5197, 1, 0, 0, 0, 5202, 5198, 1, 0, 0, 0, 5202, 5199, 1, 0, 0, 0, 5202, 5200, 1, 0, 0, 0, 5202, 5201, 1, 0, 0, 0, 5203, 5204, 1, 0, 0, 0, 5204, 5205, 3, 310, 155, 0, 5205, 5206, 5, 282, 0, 0, 5206, 5207, 5, 94, 0, 0, 5207, 5208, 3, 822, 411, 0, 5208, 5226, 1, 0, 0, 0, 5209, 5218, 5, 138, 0, 0, 5210, 5219, 5, 331, 0, 0, 5211, 5212, 5, 63, 0, 0, 5212, 5213, 5, 174, 0, 0, 5213, 5219, 5, 381, 0, 0, 5214, 5215, 5, 198, 0, 0, 5215, 5219, 5, 357, 0, 0, 5216, 5219, 5, 452, 0, 0, 5217, 5219, 5, 451, 0, 0, 5218, 5210, 1, 0, 0, 0, 5218, 5211, 1, 0, 0, 0, 5218, 5214, 1, 0, 0, 0, 5218, 5216, 1, 0, 0, 0, 5218, 5217, 1, 0, 0, 0, 5219, 5220, 1, 0, 0, 0, 5220, 5221, 3, 826, 413, 0, 5221, 5222, 5, 282, 0, 0, 5222, 5223, 5, 94, 0, 0, 5223, 5224, 3, 822, 411, 0, 5224, 5226, 1, 0, 0, 0, 5225, 5151, 1, 0, 0, 0, 5225, 5160, 1, 0, 0, 0, 5225, 5193, 1, 0, 0, 0, 5225, 5209, 1, 0, 0, 0, 5226, 441, 1, 0, 0, 0, 5227, 5228, 5, 46, 0, 0, 5228, 5229, 5, 452, 0, 0, 5229, 5236, 3, 826, 413, 0, 5230, 5231, 5, 62, 0, 0, 5231, 5232, 5, 92, 0, 0, 5232, 5237, 3, 624, 312, 0, 5233, 5234, 5, 62, 0, 0, 5234, 5235, 5, 30, 0, 0, 5235, 5237, 5, 350, 0, 0, 5236, 5230, 1, 0, 0, 0, 5236, 5233, 1, 0, 0, 0, 5236, 5237, 1, 0, 0, 0, 5237, 5239, 1, 0, 0, 0, 5238, 5240, 3, 394, 197, 0, 5239, 5238, 1, 0, 0, 0, 5239, 5240, 1, 0, 0, 0, 5240, 443, 1, 0, 0, 0, 5241, 5242, 5, 138, 0, 0, 5242, 5243, 5, 452, 0, 0, 5243, 5261, 3, 826, 413, 0, 5244, 5245, 5, 282, 0, 0, 5245, 5246, 5, 94, 0, 0, 5246, 5262, 3, 822, 411, 0, 5247, 5248, 5, 333, 0, 0, 5248, 5262, 3, 278, 139, 0, 5249, 5250, 5, 309, 0, 0, 5250, 5251, 5, 94, 0, 0, 5251, 5262, 3, 826, 413, 0, 5252, 5253, 7, 35, 0, 0, 5253, 5258, 3, 622, 311, 0, 5254, 5255, 5, 6, 0, 0, 5255, 5257, 3, 622, 311, 0, 5256, 5254, 1, 0, 0, 0, 5257, 5260, 1, 0, 0, 0, 5258, 5256, 1, 0, 0, 0, 5258, 5259, 1, 0, 0, 0, 5259, 5262, 1, 0, 0, 0, 5260, 5258, 1, 0, 0, 0, 5261, 5244, 1, 0, 0, 0, 5261, 5247, 1, 0, 0, 0, 5261, 5249, 1, 0, 0, 0, 5261, 5252, 1, 0, 0, 0, 5262, 445, 1, 0, 0, 0, 5263, 5264, 5, 46, 0, 0, 5264, 5265, 5, 451, 0, 0, 5265, 5266, 3, 826, 413, 0, 5266, 5267, 5, 164, 0, 0, 5267, 5268, 3, 816, 408, 0, 5268, 5269, 5, 452, 0, 0, 5269, 5274, 3, 832, 416, 0, 5270, 5271, 5, 6, 0, 0, 5271, 5273, 3, 832, 416, 0, 5272, 5270, 1, 0, 0, 0, 5273, 5276, 1, 0, 0, 0, 5274, 5272, 1, 0, 0, 0, 5274, 5275, 1, 0, 0, 0, 5275, 5278, 1, 0, 0, 0, 5276, 5274, 1, 0, 0, 0, 5277, 5279, 3, 394, 197, 0, 5278, 5277, 1, 0, 0, 0, 5278, 5279, 1, 0, 0, 0, 5279, 447, 1, 0, 0, 0, 5280, 5281, 5, 138, 0, 0, 5281, 5282, 5, 451, 0, 0, 5282, 5283, 3, 826, 413, 0, 5283, 5284, 5, 333, 0, 0, 5284, 5285, 3, 278, 139, 0, 5285, 5337, 1, 0, 0, 0, 5286, 5287, 5, 138, 0, 0, 5287, 5288, 5, 451, 0, 0, 5288, 5289, 3, 826, 413, 0, 5289, 5290, 5, 164, 0, 0, 5290, 5291, 3, 816, 408, 0, 5291, 5337, 1, 0, 0, 0, 5292, 5293, 5, 138, 0, 0, 5293, 5294, 5, 451, 0, 0, 5294, 5295, 3, 826, 413, 0, 5295, 5296, 5, 305, 0, 0, 5296, 5298, 5, 452, 0, 0, 5297, 5299, 3, 394, 197, 0, 5298, 5297, 1, 0, 0, 0, 5298, 5299, 1, 0, 0, 0, 5299, 5337, 1, 0, 0, 0, 5300, 5301, 5, 138, 0, 0, 5301, 5302, 5, 451, 0, 0, 5302, 5303, 3, 826, 413, 0, 5303, 5304, 7, 35, 0, 0, 5304, 5305, 5, 452, 0, 0, 5305, 5310, 3, 832, 416, 0, 5306, 5307, 5, 6, 0, 0, 5307, 5309, 3, 832, 416, 0, 5308, 5306, 1, 0, 0, 0, 5309, 5312, 1, 0, 0, 0, 5310, 5308, 1, 0, 0, 0, 5310, 5311, 1, 0, 0, 0, 5311, 5314, 1, 0, 0, 0, 5312, 5310, 1, 0, 0, 0, 5313, 5315, 3, 394, 197, 0, 5314, 5313, 1, 0, 0, 0, 5314, 5315, 1, 0, 0, 0, 5315, 5337, 1, 0, 0, 0, 5316, 5317, 5, 138, 0, 0, 5317, 5318, 5, 451, 0, 0, 5318, 5319, 3, 826, 413, 0, 5319, 5320, 7, 65, 0, 0, 5320, 5337, 1, 0, 0, 0, 5321, 5322, 5, 138, 0, 0, 5322, 5323, 5, 451, 0, 0, 5323, 5324, 3, 826, 413, 0, 5324, 5325, 5, 465, 0, 0, 5325, 5326, 5, 2, 0, 0, 5326, 5327, 3, 284, 142, 0, 5327, 5328, 5, 3, 0, 0, 5328, 5337, 1, 0, 0, 0, 5329, 5330, 5, 138, 0, 0, 5330, 5331, 5, 451, 0, 0, 5331, 5332, 3, 826, 413, 0, 5332, 5333, 5, 282, 0, 0, 5333, 5334, 5, 94, 0, 0, 5334, 5335, 3, 822, 411, 0, 5335, 5337, 1, 0, 0, 0, 5336, 5280, 1, 0, 0, 0, 5336, 5286, 1, 0, 0, 0, 5336, 5292, 1, 0, 0, 0, 5336, 5300, 1, 0, 0, 0, 5336, 5316, 1, 0, 0, 0, 5336, 5321, 1, 0, 0, 0, 5336, 5329, 1, 0, 0, 0, 5337, 449, 1, 0, 0, 0, 5338, 5340, 5, 46, 0, 0, 5339, 5341, 3, 360, 180, 0, 5340, 5339, 1, 0, 0, 0, 5340, 5341, 1, 0, 0, 0, 5341, 5342, 1, 0, 0, 0, 5342, 5343, 5, 321, 0, 0, 5343, 5344, 3, 826, 413, 0, 5344, 5345, 5, 36, 0, 0, 5345, 5346, 5, 80, 0, 0, 5346, 5347, 7, 66, 0, 0, 5347, 5348, 5, 94, 0, 0, 5348, 5350, 3, 784, 392, 0, 5349, 5351, 3, 634, 317, 0, 5350, 5349, 1, 0, 0, 0, 5350, 5351, 1, 0, 0, 0, 5351, 5352, 1, 0, 0, 0, 5352, 5354, 5, 57, 0, 0, 5353, 5355, 7, 67, 0, 0, 5354, 5353, 1, 0, 0, 0, 5354, 5355, 1, 0, 0, 0, 5355, 5372, 1, 0, 0, 0, 5356, 5373, 5, 270, 0, 0, 5357, 5373, 3, 452, 226, 0, 5358, 5360, 5, 2, 0, 0, 5359, 5361, 3, 452, 226, 0, 5360, 5359, 1, 0, 0, 0, 5360, 5361, 1, 0, 0, 0, 5361, 5368, 1, 0, 0, 0, 5362, 5364, 5, 7, 0, 0, 5363, 5365, 3, 452, 226, 0, 5364, 5363, 1, 0, 0, 0, 5364, 5365, 1, 0, 0, 0, 5365, 5367, 1, 0, 0, 0, 5366, 5362, 1, 0, 0, 0, 5367, 5370, 1, 0, 0, 0, 5368, 5366, 1, 0, 0, 0, 5368, 5369, 1, 0, 0, 0, 5369, 5371, 1, 0, 0, 0, 5370, 5368, 1, 0, 0, 0, 5371, 5373, 5, 3, 0, 0, 5372, 5356, 1, 0, 0, 0, 5372, 5357, 1, 0, 0, 0, 5372, 5358, 1, 0, 0, 0, 5373, 451, 1, 0, 0, 0, 5374, 5380, 3, 554, 277, 0, 5375, 5380, 3, 532, 266, 0, 5376, 5380, 3, 546, 273, 0, 5377, 5380, 3, 542, 271, 0, 5378, 5380, 3, 454, 227, 0, 5379, 5374, 1, 0, 0, 0, 5379, 5375, 1, 0, 0, 0, 5379, 5376, 1, 0, 0, 0, 5379, 5377, 1, 0, 0, 0, 5379, 5378, 1, 0, 0, 0, 5380, 453, 1, 0, 0, 0, 5381, 5382, 5, 271, 0, 0, 5382, 5384, 3, 826, 413, 0, 5383, 5385, 3, 456, 228, 0, 5384, 5383, 1, 0, 0, 0, 5384, 5385, 1, 0, 0, 0, 5385, 455, 1, 0, 0, 0, 5386, 5387, 5, 6, 0, 0, 5387, 5388, 3, 816, 408, 0, 5388, 457, 1, 0, 0, 0, 5389, 5390, 5, 252, 0, 0, 5390, 5391, 3, 826, 413, 0, 5391, 459, 1, 0, 0, 0, 5392, 5395, 5, 366, 0, 0, 5393, 5396, 3, 826, 413, 0, 5394, 5396, 5, 9, 0, 0, 5395, 5393, 1, 0, 0, 0, 5395, 5394, 1, 0, 0, 0, 5396, 461, 1, 0, 0, 0, 5397, 5399, 5, 146, 0, 0, 5398, 5400, 3, 464, 232, 0, 5399, 5398, 1, 0, 0, 0, 5399, 5400, 1, 0, 0, 0, 5400, 5402, 1, 0, 0, 0, 5401, 5403, 3, 468, 234, 0, 5402, 5401, 1, 0, 0, 0, 5402, 5403, 1, 0, 0, 0, 5403, 5443, 1, 0, 0, 0, 5404, 5405, 5, 340, 0, 0, 5405, 5407, 5, 356, 0, 0, 5406, 5408, 3, 468, 234, 0, 5407, 5406, 1, 0, 0, 0, 5407, 5408, 1, 0, 0, 0, 5408, 5443, 1, 0, 0, 0, 5409, 5410, 5, 322, 0, 0, 5410, 5443, 3, 826, 413, 0, 5411, 5413, 5, 308, 0, 0, 5412, 5414, 5, 322, 0, 0, 5413, 5412, 1, 0, 0, 0, 5413, 5414, 1, 0, 0, 0, 5414, 5415, 1, 0, 0, 0, 5415, 5443, 3, 826, 413, 0, 5416, 5417, 5, 290, 0, 0, 5417, 5418, 5, 356, 0, 0, 5418, 5443, 3, 816, 408, 0, 5419, 5420, 7, 68, 0, 0, 5420, 5421, 5, 291, 0, 0, 5421, 5443, 3, 816, 408, 0, 5422, 5424, 7, 69, 0, 0, 5423, 5425, 3, 464, 232, 0, 5424, 5423, 1, 0, 0, 0, 5424, 5425, 1, 0, 0, 0, 5425, 5431, 1, 0, 0, 0, 5426, 5428, 5, 33, 0, 0, 5427, 5429, 5, 269, 0, 0, 5428, 5427, 1, 0, 0, 0, 5428, 5429, 1, 0, 0, 0, 5429, 5430, 1, 0, 0, 0, 5430, 5432, 5, 153, 0, 0, 5431, 5426, 1, 0, 0, 0, 5431, 5432, 1, 0, 0, 0, 5432, 5443, 1, 0, 0, 0, 5433, 5435, 5, 319, 0, 0, 5434, 5436, 3, 464, 232, 0, 5435, 5434, 1, 0, 0, 0, 5435, 5436, 1, 0, 0, 0, 5436, 5437, 1, 0, 0, 0, 5437, 5439, 5, 94, 0, 0, 5438, 5440, 5, 322, 0, 0, 5439, 5438, 1, 0, 0, 0, 5439, 5440, 1, 0, 0, 0, 5440, 5441, 1, 0, 0, 0, 5441, 5443, 3, 826, 413, 0, 5442, 5397, 1, 0, 0, 0, 5442, 5404, 1, 0, 0, 0, 5442, 5409, 1, 0, 0, 0, 5442, 5411, 1, 0, 0, 0, 5442, 5416, 1, 0, 0, 0, 5442, 5419, 1, 0, 0, 0, 5442, 5422, 1, 0, 0, 0, 5442, 5433, 1, 0, 0, 0, 5443, 463, 1, 0, 0, 0, 5444, 5445, 7, 70, 0, 0, 5445, 465, 1, 0, 0, 0, 5446, 5447, 5, 244, 0, 0, 5447, 5448, 5, 251, 0, 0, 5448, 5456, 3, 50, 25, 0, 5449, 5450, 5, 300, 0, 0, 5450, 5456, 7, 71, 0, 0, 5451, 5453, 5, 77, 0, 0, 5452, 5451, 1, 0, 0, 0, 5452, 5453, 1, 0, 0, 0, 5453, 5454, 1, 0, 0, 0, 5454, 5456, 5, 54, 0, 0, 5455, 5446, 1, 0, 0, 0, 5455, 5449, 1, 0, 0, 0, 5455, 5452, 1, 0, 0, 0, 5456, 467, 1, 0, 0, 0, 5457, 5464, 3, 466, 233, 0, 5458, 5460, 5, 6, 0, 0, 5459, 5458, 1, 0, 0, 0, 5459, 5460, 1, 0, 0, 0, 5460, 5461, 1, 0, 0, 0, 5461, 5463, 3, 466, 233, 0, 5462, 5459, 1, 0, 0, 0, 5463, 5466, 1, 0, 0, 0, 5464, 5462, 1, 0, 0, 0, 5464, 5465, 1, 0, 0, 0, 5465, 469, 1, 0, 0, 0, 5466, 5464, 1, 0, 0, 0, 5467, 5470, 5, 46, 0, 0, 5468, 5469, 5, 82, 0, 0, 5469, 5471, 5, 311, 0, 0, 5470, 5468, 1, 0, 0, 0, 5470, 5471, 1, 0, 0, 0, 5471, 5473, 1, 0, 0, 0, 5472, 5474, 3, 116, 58, 0, 5473, 5472, 1, 0, 0, 0, 5473, 5474, 1, 0, 0, 0, 5474, 5490, 1, 0, 0, 0, 5475, 5476, 5, 376, 0, 0, 5476, 5478, 3, 780, 390, 0, 5477, 5479, 3, 140, 70, 0, 5478, 5477, 1, 0, 0, 0, 5478, 5479, 1, 0, 0, 0, 5479, 5481, 1, 0, 0, 0, 5480, 5482, 3, 94, 47, 0, 5481, 5480, 1, 0, 0, 0, 5481, 5482, 1, 0, 0, 0, 5482, 5491, 1, 0, 0, 0, 5483, 5484, 5, 303, 0, 0, 5484, 5485, 5, 376, 0, 0, 5485, 5486, 3, 780, 390, 0, 5486, 5488, 3, 138, 69, 0, 5487, 5489, 3, 94, 47, 0, 5488, 5487, 1, 0, 0, 0, 5488, 5489, 1, 0, 0, 0, 5489, 5491, 1, 0, 0, 0, 5490, 5475, 1, 0, 0, 0, 5490, 5483, 1, 0, 0, 0, 5491, 5492, 1, 0, 0, 0, 5492, 5493, 5, 36, 0, 0, 5493, 5500, 3, 554, 277, 0, 5494, 5496, 5, 105, 0, 0, 5495, 5497, 7, 72, 0, 0, 5496, 5495, 1, 0, 0, 0, 5496, 5497, 1, 0, 0, 0, 5497, 5498, 1, 0, 0, 0, 5498, 5499, 5, 42, 0, 0, 5499, 5501, 5, 279, 0, 0, 5500, 5494, 1, 0, 0, 0, 5500, 5501, 1, 0, 0, 0, 5501, 471, 1, 0, 0, 0, 5502, 5503, 5, 253, 0, 0, 5503, 5504, 3, 816, 408, 0, 5504, 473, 1, 0, 0, 0, 5505, 5506, 5, 46, 0, 0, 5506, 5507, 5, 175, 0, 0, 5507, 5509, 3, 790, 395, 0, 5508, 5510, 5, 105, 0, 0, 5509, 5508, 1, 0, 0, 0, 5509, 5510, 1, 0, 0, 0, 5510, 5516, 1, 0, 0, 0, 5511, 5513, 3, 476, 238, 0, 5512, 5511, 1, 0, 0, 0, 5513, 5514, 1, 0, 0, 0, 5514, 5512, 1, 0, 0, 0, 5514, 5515, 1, 0, 0, 0, 5515, 5517, 1, 0, 0, 0, 5516, 5512, 1, 0, 0, 0, 5516, 5517, 1, 0, 0, 0, 5517, 475, 1, 0, 0, 0, 5518, 5519, 5, 164, 0, 0, 5519, 5527, 5, 74, 0, 0, 5520, 5527, 5, 194, 0, 0, 5521, 5527, 5, 255, 0, 0, 5522, 5527, 5, 282, 0, 0, 5523, 5527, 5, 351, 0, 0, 5524, 5527, 5, 353, 0, 0, 5525, 5527, 3, 834, 417, 0, 5526, 5518, 1, 0, 0, 0, 5526, 5520, 1, 0, 0, 0, 5526, 5521, 1, 0, 0, 0, 5526, 5522, 1, 0, 0, 0, 5526, 5523, 1, 0, 0, 0, 5526, 5524, 1, 0, 0, 0, 5526, 5525, 1, 0, 0, 0, 5527, 5529, 1, 0, 0, 0, 5528, 5530, 5, 10, 0, 0, 5529, 5528, 1, 0, 0, 0, 5529, 5530, 1, 0, 0, 0, 5530, 5534, 1, 0, 0, 0, 5531, 5535, 3, 820, 410, 0, 5532, 5535, 3, 54, 27, 0, 5533, 5535, 5, 53, 0, 0, 5534, 5531, 1, 0, 0, 0, 5534, 5532, 1, 0, 0, 0, 5534, 5533, 1, 0, 0, 0, 5535, 477, 1, 0, 0, 0, 5536, 5537, 5, 138, 0, 0, 5537, 5538, 5, 175, 0, 0, 5538, 5554, 3, 792, 396, 0, 5539, 5540, 5, 333, 0, 0, 5540, 5541, 5, 351, 0, 0, 5541, 5543, 3, 774, 387, 0, 5542, 5539, 1, 0, 0, 0, 5542, 5543, 1, 0, 0, 0, 5543, 5555, 1, 0, 0, 0, 5544, 5546, 5, 105, 0, 0, 5545, 5544, 1, 0, 0, 0, 5545, 5546, 1, 0, 0, 0, 5546, 5548, 1, 0, 0, 0, 5547, 5549, 3, 476, 238, 0, 5548, 5547, 1, 0, 0, 0, 5549, 5550, 1, 0, 0, 0, 5550, 5548, 1, 0, 0, 0, 5550, 5551, 1, 0, 0, 0, 5551, 5553, 1, 0, 0, 0, 5552, 5545, 1, 0, 0, 0, 5552, 5553, 1, 0, 0, 0, 5553, 5555, 1, 0, 0, 0, 5554, 5542, 1, 0, 0, 0, 5554, 5552, 1, 0, 0, 0, 5555, 479, 1, 0, 0, 0, 5556, 5557, 5, 138, 0, 0, 5557, 5558, 5, 175, 0, 0, 5558, 5560, 3, 792, 396, 0, 5559, 5561, 3, 64, 32, 0, 5560, 5559, 1, 0, 0, 0, 5560, 5561, 1, 0, 0, 0, 5561, 481, 1, 0, 0, 0, 5562, 5563, 5, 138, 0, 0, 5563, 5564, 5, 108, 0, 0, 5564, 5565, 3, 310, 155, 0, 5565, 5566, 5, 305, 0, 0, 5566, 5567, 5, 375, 0, 0, 5567, 483, 1, 0, 0, 0, 5568, 5569, 5, 138, 0, 0, 5569, 5570, 5, 349, 0, 0, 5570, 5571, 7, 16, 0, 0, 5571, 5572, 3, 40, 20, 0, 5572, 485, 1, 0, 0, 0, 5573, 5574, 5, 46, 0, 0, 5574, 5575, 5, 189, 0, 0, 5575, 5577, 3, 310, 155, 0, 5576, 5578, 5, 36, 0, 0, 5577, 5576, 1, 0, 0, 0, 5577, 5578, 1, 0, 0, 0, 5578, 5579, 1, 0, 0, 0, 5579, 5583, 3, 648, 324, 0, 5580, 5582, 3, 128, 64, 0, 5581, 5580, 1, 0, 0, 0, 5582, 5585, 1, 0, 0, 0, 5583, 5581, 1, 0, 0, 0, 5583, 5584, 1, 0, 0, 0, 5584, 487, 1, 0, 0, 0, 5585, 5583, 1, 0, 0, 0, 5586, 5587, 5, 138, 0, 0, 5587, 5588, 5, 189, 0, 0, 5588, 5611, 3, 310, 155, 0, 5589, 5612, 3, 86, 43, 0, 5590, 5591, 7, 15, 0, 0, 5591, 5592, 5, 77, 0, 0, 5592, 5612, 5, 78, 0, 0, 5593, 5596, 5, 133, 0, 0, 5594, 5595, 5, 45, 0, 0, 5595, 5597, 3, 826, 413, 0, 5596, 5594, 1, 0, 0, 0, 5596, 5597, 1, 0, 0, 0, 5597, 5598, 1, 0, 0, 0, 5598, 5612, 3, 136, 68, 0, 5599, 5600, 5, 191, 0, 0, 5600, 5602, 5, 45, 0, 0, 5601, 5603, 3, 416, 208, 0, 5602, 5601, 1, 0, 0, 0, 5602, 5603, 1, 0, 0, 0, 5603, 5604, 1, 0, 0, 0, 5604, 5606, 3, 826, 413, 0, 5605, 5607, 3, 88, 44, 0, 5606, 5605, 1, 0, 0, 0, 5606, 5607, 1, 0, 0, 0, 5607, 5612, 1, 0, 0, 0, 5608, 5609, 5, 372, 0, 0, 5609, 5610, 5, 45, 0, 0, 5610, 5612, 3, 826, 413, 0, 5611, 5589, 1, 0, 0, 0, 5611, 5590, 1, 0, 0, 0, 5611, 5593, 1, 0, 0, 0, 5611, 5599, 1, 0, 0, 0, 5611, 5608, 1, 0, 0, 0, 5612, 489, 1, 0, 0, 0, 5613, 5614, 5, 138, 0, 0, 5614, 5615, 5, 355, 0, 0, 5615, 5616, 5, 325, 0, 0, 5616, 5617, 5, 185, 0, 0, 5617, 5618, 3, 310, 155, 0, 5618, 5619, 3, 278, 139, 0, 5619, 491, 1, 0, 0, 0, 5620, 5621, 5, 138, 0, 0, 5621, 5622, 5, 355, 0, 0, 5622, 5623, 5, 325, 0, 0, 5623, 5624, 5, 163, 0, 0, 5624, 5625, 3, 310, 155, 0, 5625, 5626, 7, 73, 0, 0, 5626, 5627, 5, 257, 0, 0, 5627, 5628, 5, 62, 0, 0, 5628, 5629, 3, 788, 394, 0, 5629, 5630, 5, 105, 0, 0, 5630, 5631, 3, 308, 154, 0, 5631, 5662, 1, 0, 0, 0, 5632, 5633, 5, 138, 0, 0, 5633, 5634, 5, 355, 0, 0, 5634, 5635, 5, 325, 0, 0, 5635, 5636, 5, 163, 0, 0, 5636, 5637, 3, 310, 155, 0, 5637, 5638, 5, 138, 0, 0, 5638, 5641, 5, 257, 0, 0, 5639, 5640, 5, 62, 0, 0, 5640, 5642, 3, 788, 394, 0, 5641, 5639, 1, 0, 0, 0, 5641, 5642, 1, 0, 0, 0, 5642, 5643, 1, 0, 0, 0, 5643, 5644, 5, 311, 0, 0, 5644, 5645, 3, 310, 155, 0, 5645, 5646, 5, 105, 0, 0, 5646, 5647, 3, 310, 155, 0, 5647, 5662, 1, 0, 0, 0, 5648, 5649, 5, 138, 0, 0, 5649, 5650, 5, 355, 0, 0, 5650, 5651, 5, 325, 0, 0, 5651, 5652, 5, 163, 0, 0, 5652, 5653, 3, 310, 155, 0, 5653, 5654, 5, 191, 0, 0, 5654, 5656, 5, 257, 0, 0, 5655, 5657, 3, 416, 208, 0, 5656, 5655, 1, 0, 0, 0, 5656, 5657, 1, 0, 0, 0, 5657, 5658, 1, 0, 0, 0, 5658, 5659, 5, 62, 0, 0, 5659, 5660, 3, 788, 394, 0, 5660, 5662, 1, 0, 0, 0, 5661, 5620, 1, 0, 0, 0, 5661, 5632, 1, 0, 0, 0, 5661, 5648, 1, 0, 0, 0, 5662, 493, 1, 0, 0, 0, 5663, 5665, 5, 46, 0, 0, 5664, 5666, 5, 53, 0, 0, 5665, 5664, 1, 0, 0, 0, 5665, 5666, 1, 0, 0, 0, 5666, 5667, 1, 0, 0, 0, 5667, 5668, 5, 168, 0, 0, 5668, 5669, 3, 310, 155, 0, 5669, 5670, 5, 62, 0, 0, 5670, 5671, 3, 816, 408, 0, 5671, 5672, 5, 94, 0, 0, 5672, 5673, 3, 816, 408, 0, 5673, 5674, 5, 64, 0, 0, 5674, 5675, 3, 310, 155, 0, 5675, 495, 1, 0, 0, 0, 5676, 5678, 5, 158, 0, 0, 5677, 5679, 3, 508, 254, 0, 5678, 5677, 1, 0, 0, 0, 5678, 5679, 1, 0, 0, 0, 5679, 5684, 1, 0, 0, 0, 5680, 5682, 3, 778, 389, 0, 5681, 5683, 3, 164, 82, 0, 5682, 5681, 1, 0, 0, 0, 5682, 5683, 1, 0, 0, 0, 5683, 5685, 1, 0, 0, 0, 5684, 5680, 1, 0, 0, 0, 5684, 5685, 1, 0, 0, 0, 5685, 5702, 1, 0, 0, 0, 5686, 5687, 5, 158, 0, 0, 5687, 5688, 5, 2, 0, 0, 5688, 5693, 3, 508, 254, 0, 5689, 5690, 5, 6, 0, 0, 5690, 5692, 3, 508, 254, 0, 5691, 5689, 1, 0, 0, 0, 5692, 5695, 1, 0, 0, 0, 5693, 5691, 1, 0, 0, 0, 5693, 5694, 1, 0, 0, 0, 5694, 5696, 1, 0, 0, 0, 5695, 5693, 1, 0, 0, 0, 5696, 5697, 5, 3, 0, 0, 5697, 5699, 3, 778, 389, 0, 5698, 5700, 3, 164, 82, 0, 5699, 5698, 1, 0, 0, 0, 5699, 5700, 1, 0, 0, 0, 5700, 5702, 1, 0, 0, 0, 5701, 5676, 1, 0, 0, 0, 5701, 5686, 1, 0, 0, 0, 5702, 497, 1, 0, 0, 0, 5703, 5719, 5, 370, 0, 0, 5704, 5706, 5, 113, 0, 0, 5705, 5704, 1, 0, 0, 0, 5705, 5706, 1, 0, 0, 0, 5706, 5708, 1, 0, 0, 0, 5707, 5709, 5, 112, 0, 0, 5708, 5707, 1, 0, 0, 0, 5708, 5709, 1, 0, 0, 0, 5709, 5711, 1, 0, 0, 0, 5710, 5712, 3, 508, 254, 0, 5711, 5710, 1, 0, 0, 0, 5711, 5712, 1, 0, 0, 0, 5712, 5714, 1, 0, 0, 0, 5713, 5715, 3, 502, 251, 0, 5714, 5713, 1, 0, 0, 0, 5714, 5715, 1, 0, 0, 0, 5715, 5720, 1, 0, 0, 0, 5716, 5718, 3, 518, 259, 0, 5717, 5716, 1, 0, 0, 0, 5717, 5718, 1, 0, 0, 0, 5718, 5720, 1, 0, 0, 0, 5719, 5705, 1, 0, 0, 0, 5719, 5717, 1, 0, 0, 0, 5720, 5722, 1, 0, 0, 0, 5721, 5723, 3, 512, 256, 0, 5722, 5721, 1, 0, 0, 0, 5722, 5723, 1, 0, 0, 0, 5723, 499, 1, 0, 0, 0, 5724, 5739, 3, 502, 251, 0, 5725, 5727, 3, 508, 254, 0, 5726, 5725, 1, 0, 0, 0, 5726, 5727, 1, 0, 0, 0, 5727, 5740, 1, 0, 0, 0, 5728, 5729, 5, 2, 0, 0, 5729, 5734, 3, 506, 253, 0, 5730, 5731, 5, 6, 0, 0, 5731, 5733, 3, 506, 253, 0, 5732, 5730, 1, 0, 0, 0, 5733, 5736, 1, 0, 0, 0, 5734, 5732, 1, 0, 0, 0, 5734, 5735, 1, 0, 0, 0, 5735, 5737, 1, 0, 0, 0, 5736, 5734, 1, 0, 0, 0, 5737, 5738, 5, 3, 0, 0, 5738, 5740, 1, 0, 0, 0, 5739, 5726, 1, 0, 0, 0, 5739, 5728, 1, 0, 0, 0, 5740, 5742, 1, 0, 0, 0, 5741, 5743, 3, 512, 256, 0, 5742, 5741, 1, 0, 0, 0, 5742, 5743, 1, 0, 0, 0, 5743, 501, 1, 0, 0, 0, 5744, 5745, 7, 74, 0, 0, 5745, 503, 1, 0, 0, 0, 5746, 5749, 3, 830, 415, 0, 5747, 5749, 3, 502, 251, 0, 5748, 5746, 1, 0, 0, 0, 5748, 5747, 1, 0, 0, 0, 5749, 5752, 1, 0, 0, 0, 5750, 5753, 3, 54, 27, 0, 5751, 5753, 3, 196, 98, 0, 5752, 5750, 1, 0, 0, 0, 5752, 5751, 1, 0, 0, 0, 5752, 5753, 1, 0, 0, 0, 5753, 505, 1, 0, 0, 0, 5754, 5756, 7, 75, 0, 0, 5755, 5757, 7, 76, 0, 0, 5756, 5755, 1, 0, 0, 0, 5756, 5757, 1, 0, 0, 0, 5757, 5764, 1, 0, 0, 0, 5758, 5761, 5, 548, 0, 0, 5759, 5762, 3, 196, 98, 0, 5760, 5762, 3, 816, 408, 0, 5761, 5759, 1, 0, 0, 0, 5761, 5760, 1, 0, 0, 0, 5762, 5764, 1, 0, 0, 0, 5763, 5754, 1, 0, 0, 0, 5763, 5758, 1, 0, 0, 0, 5764, 507, 1, 0, 0, 0, 5765, 5767, 5, 128, 0, 0, 5766, 5768, 7, 76, 0, 0, 5767, 5766, 1, 0, 0, 0, 5767, 5768, 1, 0, 0, 0, 5768, 509, 1, 0, 0, 0, 5769, 5771, 3, 778, 389, 0, 5770, 5772, 3, 138, 69, 0, 5771, 5770, 1, 0, 0, 0, 5771, 5772, 1, 0, 0, 0, 5772, 511, 1, 0, 0, 0, 5773, 5778, 3, 510, 255, 0, 5774, 5775, 5, 6, 0, 0, 5775, 5777, 3, 510, 255, 0, 5776, 5774, 1, 0, 0, 0, 5777, 5780, 1, 0, 0, 0, 5778, 5776, 1, 0, 0, 0, 5778, 5779, 1, 0, 0, 0, 5779, 513, 1, 0, 0, 0, 5780, 5778, 1, 0, 0, 0, 5781, 5792, 5, 203, 0, 0, 5782, 5793, 3, 518, 259, 0, 5783, 5785, 5, 128, 0, 0, 5784, 5783, 1, 0, 0, 0, 5784, 5785, 1, 0, 0, 0, 5785, 5793, 1, 0, 0, 0, 5786, 5788, 3, 502, 251, 0, 5787, 5789, 3, 508, 254, 0, 5788, 5787, 1, 0, 0, 0, 5788, 5789, 1, 0, 0, 0, 5789, 5791, 1, 0, 0, 0, 5790, 5786, 1, 0, 0, 0, 5790, 5791, 1, 0, 0, 0, 5791, 5793, 1, 0, 0, 0, 5792, 5782, 1, 0, 0, 0, 5792, 5784, 1, 0, 0, 0, 5792, 5790, 1, 0, 0, 0, 5793, 5794, 1, 0, 0, 0, 5794, 5795, 3, 516, 258, 0, 5795, 515, 1, 0, 0, 0, 5796, 5806, 3, 554, 277, 0, 5797, 5806, 3, 532, 266, 0, 5798, 5806, 3, 546, 273, 0, 5799, 5806, 3, 542, 271, 0, 5800, 5806, 3, 552, 276, 0, 5801, 5806, 3, 180, 90, 0, 5802, 5806, 3, 186, 93, 0, 5803, 5806, 3, 188, 94, 0, 5804, 5806, 3, 526, 263, 0, 5805, 5796, 1, 0, 0, 0, 5805, 5797, 1, 0, 0, 0, 5805, 5798, 1, 0, 0, 0, 5805, 5799, 1, 0, 0, 0, 5805, 5800, 1, 0, 0, 0, 5805, 5801, 1, 0, 0, 0, 5805, 5802, 1, 0, 0, 0, 5805, 5803, 1, 0, 0, 0, 5805, 5804, 1, 0, 0, 0, 5806, 517, 1, 0, 0, 0, 5807, 5808, 5, 2, 0, 0, 5808, 5813, 3, 504, 252, 0, 5809, 5810, 5, 6, 0, 0, 5810, 5812, 3, 504, 252, 0, 5811, 5809, 1, 0, 0, 0, 5812, 5815, 1, 0, 0, 0, 5813, 5811, 1, 0, 0, 0, 5813, 5814, 1, 0, 0, 0, 5814, 5816, 1, 0, 0, 0, 5815, 5813, 1, 0, 0, 0, 5816, 5817, 5, 3, 0, 0, 5817, 519, 1, 0, 0, 0, 5818, 5819, 5, 290, 0, 0, 5819, 5821, 3, 826, 413, 0, 5820, 5822, 3, 522, 261, 0, 5821, 5820, 1, 0, 0, 0, 5821, 5822, 1, 0, 0, 0, 5822, 5823, 1, 0, 0, 0, 5823, 5824, 5, 36, 0, 0, 5824, 5825, 3, 524, 262, 0, 5825, 521, 1, 0, 0, 0, 5826, 5827, 5, 2, 0, 0, 5827, 5832, 3, 648, 324, 0, 5828, 5829, 5, 6, 0, 0, 5829, 5831, 3, 648, 324, 0, 5830, 5828, 1, 0, 0, 0, 5831, 5834, 1, 0, 0, 0, 5832, 5830, 1, 0, 0, 0, 5832, 5833, 1, 0, 0, 0, 5833, 5835, 1, 0, 0, 0, 5834, 5832, 1, 0, 0, 0, 5835, 5836, 5, 3, 0, 0, 5836, 523, 1, 0, 0, 0, 5837, 5843, 3, 554, 277, 0, 5838, 5843, 3, 532, 266, 0, 5839, 5843, 3, 546, 273, 0, 5840, 5843, 3, 542, 271, 0, 5841, 5843, 3, 908, 454, 0, 5842, 5837, 1, 0, 0, 0, 5842, 5838, 1, 0, 0, 0, 5842, 5839, 1, 0, 0, 0, 5842, 5840, 1, 0, 0, 0, 5842, 5841, 1, 0, 0, 0, 5843, 525, 1, 0, 0, 0, 5844, 5845, 5, 202, 0, 0, 5845, 5847, 3, 826, 413, 0, 5846, 5848, 3, 528, 264, 0, 5847, 5846, 1, 0, 0, 0, 5847, 5848, 1, 0, 0, 0, 5848, 5868, 1, 0, 0, 0, 5849, 5851, 5, 46, 0, 0, 5850, 5852, 3, 116, 58, 0, 5851, 5850, 1, 0, 0, 0, 5851, 5852, 1, 0, 0, 0, 5852, 5853, 1, 0, 0, 0, 5853, 5855, 5, 92, 0, 0, 5854, 5856, 3, 288, 144, 0, 5855, 5854, 1, 0, 0, 0, 5855, 5856, 1, 0, 0, 0, 5856, 5857, 1, 0, 0, 0, 5857, 5858, 3, 182, 91, 0, 5858, 5859, 5, 36, 0, 0, 5859, 5860, 5, 202, 0, 0, 5860, 5862, 3, 826, 413, 0, 5861, 5863, 3, 528, 264, 0, 5862, 5861, 1, 0, 0, 0, 5862, 5863, 1, 0, 0, 0, 5863, 5865, 1, 0, 0, 0, 5864, 5866, 3, 184, 92, 0, 5865, 5864, 1, 0, 0, 0, 5865, 5866, 1, 0, 0, 0, 5866, 5868, 1, 0, 0, 0, 5867, 5844, 1, 0, 0, 0, 5867, 5849, 1, 0, 0, 0, 5868, 527, 1, 0, 0, 0, 5869, 5870, 5, 2, 0, 0, 5870, 5871, 3, 728, 364, 0, 5871, 5872, 5, 3, 0, 0, 5872, 529, 1, 0, 0, 0, 5873, 5875, 5, 177, 0, 0, 5874, 5876, 5, 290, 0, 0, 5875, 5874, 1, 0, 0, 0, 5875, 5876, 1, 0, 0, 0, 5876, 5879, 1, 0, 0, 0, 5877, 5880, 3, 826, 413, 0, 5878, 5880, 5, 30, 0, 0, 5879, 5877, 1, 0, 0, 0, 5879, 5878, 1, 0, 0, 0, 5880, 531, 1, 0, 0, 0, 5881, 5883, 3, 566, 283, 0, 5882, 5881, 1, 0, 0, 0, 5882, 5883, 1, 0, 0, 0, 5883, 5884, 1, 0, 0, 0, 5884, 5885, 5, 241, 0, 0, 5885, 5886, 5, 71, 0, 0, 5886, 5889, 3, 778, 389, 0, 5887, 5888, 5, 36, 0, 0, 5888, 5890, 3, 826, 413, 0, 5889, 5887, 1, 0, 0, 0, 5889, 5890, 1, 0, 0, 0, 5890, 5891, 1, 0, 0, 0, 5891, 5913, 3, 534, 267, 0, 5892, 5893, 5, 80, 0, 0, 5893, 5901, 5, 464, 0, 0, 5894, 5896, 3, 354, 177, 0, 5895, 5897, 3, 634, 317, 0, 5896, 5895, 1, 0, 0, 0, 5896, 5897, 1, 0, 0, 0, 5897, 5902, 1, 0, 0, 0, 5898, 5899, 5, 80, 0, 0, 5899, 5900, 5, 45, 0, 0, 5900, 5902, 3, 826, 413, 0, 5901, 5894, 1, 0, 0, 0, 5901, 5898, 1, 0, 0, 0, 5901, 5902, 1, 0, 0, 0, 5902, 5903, 1, 0, 0, 0, 5903, 5911, 5, 57, 0, 0, 5904, 5905, 5, 369, 0, 0, 5905, 5906, 5, 333, 0, 0, 5906, 5908, 3, 548, 274, 0, 5907, 5909, 3, 634, 317, 0, 5908, 5907, 1, 0, 0, 0, 5908, 5909, 1, 0, 0, 0, 5909, 5912, 1, 0, 0, 0, 5910, 5912, 5, 270, 0, 0, 5911, 5904, 1, 0, 0, 0, 5911, 5910, 1, 0, 0, 0, 5912, 5914, 1, 0, 0, 0, 5913, 5892, 1, 0, 0, 0, 5913, 5914, 1, 0, 0, 0, 5914, 5916, 1, 0, 0, 0, 5915, 5917, 3, 540, 270, 0, 5916, 5915, 1, 0, 0, 0, 5916, 5917, 1, 0, 0, 0, 5917, 533, 1, 0, 0, 0, 5918, 5919, 5, 2, 0, 0, 5919, 5920, 3, 536, 268, 0, 5920, 5921, 5, 3, 0, 0, 5921, 5923, 1, 0, 0, 0, 5922, 5918, 1, 0, 0, 0, 5922, 5923, 1, 0, 0, 0, 5923, 5927, 1, 0, 0, 0, 5924, 5925, 5, 463, 0, 0, 5925, 5926, 7, 77, 0, 0, 5926, 5928, 5, 450, 0, 0, 5927, 5924, 1, 0, 0, 0, 5927, 5928, 1, 0, 0, 0, 5928, 5931, 1, 0, 0, 0, 5929, 5932, 3, 918, 459, 0, 5930, 5932, 3, 554, 277, 0, 5931, 5929, 1, 0, 0, 0, 5931, 5930, 1, 0, 0, 0, 5932, 535, 1, 0, 0, 0, 5933, 5938, 3, 538, 269, 0, 5934, 5935, 5, 6, 0, 0, 5935, 5937, 3, 538, 269, 0, 5936, 5934, 1, 0, 0, 0, 5937, 5940, 1, 0, 0, 0, 5938, 5936, 1, 0, 0, 0, 5938, 5939, 1, 0, 0, 0, 5939, 537, 1, 0, 0, 0, 5940, 5938, 1, 0, 0, 0, 5941, 5942, 3, 806, 403, 0, 5942, 5943, 3, 756, 378, 0, 5943, 539, 1, 0, 0, 0, 5944, 5945, 5, 87, 0, 0, 5945, 5946, 3, 758, 379, 0, 5946, 541, 1, 0, 0, 0, 5947, 5949, 3, 566, 283, 0, 5948, 5947, 1, 0, 0, 0, 5948, 5949, 1, 0, 0, 0, 5949, 5950, 1, 0, 0, 0, 5950, 5951, 5, 182, 0, 0, 5951, 5952, 5, 64, 0, 0, 5952, 5955, 3, 626, 313, 0, 5953, 5954, 5, 100, 0, 0, 5954, 5956, 3, 606, 303, 0, 5955, 5953, 1, 0, 0, 0, 5955, 5956, 1, 0, 0, 0, 5956, 5958, 1, 0, 0, 0, 5957, 5959, 3, 636, 318, 0, 5958, 5957, 1, 0, 0, 0, 5958, 5959, 1, 0, 0, 0, 5959, 5961, 1, 0, 0, 0, 5960, 5962, 3, 540, 270, 0, 5961, 5960, 1, 0, 0, 0, 5961, 5962, 1, 0, 0, 0, 5962, 543, 1, 0, 0, 0, 5963, 5965, 5, 256, 0, 0, 5964, 5966, 5, 92, 0, 0, 5965, 5964, 1, 0, 0, 0, 5965, 5966, 1, 0, 0, 0, 5966, 5967, 1, 0, 0, 0, 5967, 5982, 3, 624, 312, 0, 5968, 5979, 5, 68, 0, 0, 5969, 5970, 7, 78, 0, 0, 5970, 5980, 7, 79, 0, 0, 5971, 5976, 5, 334, 0, 0, 5972, 5973, 5, 369, 0, 0, 5973, 5977, 5, 201, 0, 0, 5974, 5975, 5, 414, 0, 0, 5975, 5977, 5, 201, 0, 0, 5976, 5972, 1, 0, 0, 0, 5976, 5974, 1, 0, 0, 0, 5976, 5977, 1, 0, 0, 0, 5977, 5980, 1, 0, 0, 0, 5978, 5980, 5, 201, 0, 0, 5979, 5969, 1, 0, 0, 0, 5979, 5971, 1, 0, 0, 0, 5979, 5978, 1, 0, 0, 0, 5980, 5981, 1, 0, 0, 0, 5981, 5983, 5, 263, 0, 0, 5982, 5968, 1, 0, 0, 0, 5982, 5983, 1, 0, 0, 0, 5983, 5985, 1, 0, 0, 0, 5984, 5986, 5, 272, 0, 0, 5985, 5984, 1, 0, 0, 0, 5985, 5986, 1, 0, 0, 0, 5986, 545, 1, 0, 0, 0, 5987, 5989, 3, 566, 283, 0, 5988, 5987, 1, 0, 0, 0, 5988, 5989, 1, 0, 0, 0, 5989, 5990, 1, 0, 0, 0, 5990, 5991, 5, 369, 0, 0, 5991, 5992, 3, 626, 313, 0, 5992, 5993, 5, 333, 0, 0, 5993, 5995, 3, 548, 274, 0, 5994, 5996, 3, 604, 302, 0, 5995, 5994, 1, 0, 0, 0, 5995, 5996, 1, 0, 0, 0, 5996, 5998, 1, 0, 0, 0, 5997, 5999, 3, 636, 318, 0, 5998, 5997, 1, 0, 0, 0, 5998, 5999, 1, 0, 0, 0, 5999, 6001, 1, 0, 0, 0, 6000, 6002, 3, 540, 270, 0, 6001, 6000, 1, 0, 0, 0, 6001, 6002, 1, 0, 0, 0, 6002, 547, 1, 0, 0, 0, 6003, 6008, 3, 550, 275, 0, 6004, 6005, 5, 6, 0, 0, 6005, 6007, 3, 550, 275, 0, 6006, 6004, 1, 0, 0, 0, 6007, 6010, 1, 0, 0, 0, 6008, 6006, 1, 0, 0, 0, 6008, 6009, 1, 0, 0, 0, 6009, 549, 1, 0, 0, 0, 6010, 6008, 1, 0, 0, 0, 6011, 6012, 3, 538, 269, 0, 6012, 6013, 5, 10, 0, 0, 6013, 6014, 3, 670, 335, 0, 6014, 6030, 1, 0, 0, 0, 6015, 6016, 5, 2, 0, 0, 6016, 6017, 3, 536, 268, 0, 6017, 6018, 5, 3, 0, 0, 6018, 6027, 5, 10, 0, 0, 6019, 6021, 5, 414, 0, 0, 6020, 6019, 1, 0, 0, 0, 6020, 6021, 1, 0, 0, 0, 6021, 6022, 1, 0, 0, 0, 6022, 6028, 3, 670, 335, 0, 6023, 6024, 5, 2, 0, 0, 6024, 6025, 3, 560, 280, 0, 6025, 6026, 5, 3, 0, 0, 6026, 6028, 1, 0, 0, 0, 6027, 6020, 1, 0, 0, 0, 6027, 6023, 1, 0, 0, 0, 6028, 6030, 1, 0, 0, 0, 6029, 6011, 1, 0, 0, 0, 6029, 6015, 1, 0, 0, 0, 6030, 551, 1, 0, 0, 0, 6031, 6032, 5, 178, 0, 0, 6032, 6041, 3, 826, 413, 0, 6033, 6035, 5, 269, 0, 0, 6034, 6033, 1, 0, 0, 0, 6034, 6035, 1, 0, 0, 0, 6035, 6036, 1, 0, 0, 0, 6036, 6040, 5, 324, 0, 0, 6037, 6040, 5, 107, 0, 0, 6038, 6040, 5, 240, 0, 0, 6039, 6034, 1, 0, 0, 0, 6039, 6037, 1, 0, 0, 0, 6039, 6038, 1, 0, 0, 0, 6040, 6043, 1, 0, 0, 0, 6041, 6039, 1, 0, 0, 0, 6041, 6042, 1, 0, 0, 0, 6042, 6044, 1, 0, 0, 0, 6043, 6041, 1, 0, 0, 0, 6044, 6047, 5, 172, 0, 0, 6045, 6046, 7, 27, 0, 0, 6046, 6048, 5, 217, 0, 0, 6047, 6045, 1, 0, 0, 0, 6047, 6048, 1, 0, 0, 0, 6048, 6049, 1, 0, 0, 0, 6049, 6050, 5, 62, 0, 0, 6050, 6051, 3, 554, 277, 0, 6051, 553, 1, 0, 0, 0, 6052, 6055, 3, 558, 279, 0, 6053, 6055, 3, 556, 278, 0, 6054, 6052, 1, 0, 0, 0, 6054, 6053, 1, 0, 0, 0, 6055, 555, 1, 0, 0, 0, 6056, 6059, 5, 2, 0, 0, 6057, 6060, 3, 558, 279, 0, 6058, 6060, 3, 556, 278, 0, 6059, 6057, 1, 0, 0, 0, 6059, 6058, 1, 0, 0, 0, 6060, 6061, 1, 0, 0, 0, 6061, 6062, 5, 3, 0, 0, 6062, 557, 1, 0, 0, 0, 6063, 6065, 3, 566, 283, 0, 6064, 6063, 1, 0, 0, 0, 6064, 6065, 1, 0, 0, 0, 6065, 6066, 1, 0, 0, 0, 6066, 6068, 3, 560, 280, 0, 6067, 6069, 3, 580, 290, 0, 6068, 6067, 1, 0, 0, 0, 6068, 6069, 1, 0, 0, 0, 6069, 6078, 1, 0, 0, 0, 6070, 6072, 3, 600, 300, 0, 6071, 6073, 3, 584, 292, 0, 6072, 6071, 1, 0, 0, 0, 6072, 6073, 1, 0, 0, 0, 6073, 6079, 1, 0, 0, 0, 6074, 6076, 3, 584, 292, 0, 6075, 6077, 3, 600, 300, 0, 6076, 6075, 1, 0, 0, 0, 6076, 6077, 1, 0, 0, 0, 6077, 6079, 1, 0, 0, 0, 6078, 6070, 1, 0, 0, 0, 6078, 6074, 1, 0, 0, 0, 6078, 6079, 1, 0, 0, 0, 6079, 559, 1, 0, 0, 0, 6080, 6083, 3, 562, 281, 0, 6081, 6083, 3, 556, 278, 0, 6082, 6080, 1, 0, 0, 0, 6082, 6081, 1, 0, 0, 0, 6083, 561, 1, 0, 0, 0, 6084, 6094, 5, 88, 0, 0, 6085, 6087, 5, 30, 0, 0, 6086, 6085, 1, 0, 0, 0, 6086, 6087, 1, 0, 0, 0, 6087, 6089, 1, 0, 0, 0, 6088, 6090, 3, 574, 287, 0, 6089, 6088, 1, 0, 0, 0, 6089, 6090, 1, 0, 0, 0, 6090, 6095, 1, 0, 0, 0, 6091, 6093, 3, 578, 289, 0, 6092, 6091, 1, 0, 0, 0, 6092, 6093, 1, 0, 0, 0, 6093, 6095, 1, 0, 0, 0, 6094, 6086, 1, 0, 0, 0, 6094, 6092, 1, 0, 0, 0, 6095, 6096, 1, 0, 0, 0, 6096, 6107, 3, 938, 469, 0, 6097, 6107, 3, 602, 301, 0, 6098, 6099, 5, 92, 0, 0, 6099, 6107, 3, 620, 310, 0, 6100, 6101, 3, 556, 278, 0, 6101, 6104, 3, 564, 282, 0, 6102, 6105, 3, 562, 281, 0, 6103, 6105, 3, 556, 278, 0, 6104, 6102, 1, 0, 0, 0, 6104, 6103, 1, 0, 0, 0, 6105, 6107, 1, 0, 0, 0, 6106, 6084, 1, 0, 0, 0, 6106, 6097, 1, 0, 0, 0, 6106, 6098, 1, 0, 0, 0, 6106, 6100, 1, 0, 0, 0, 6107, 6115, 1, 0, 0, 0, 6108, 6111, 3, 564, 282, 0, 6109, 6112, 3, 562, 281, 0, 6110, 6112, 3, 556, 278, 0, 6111, 6109, 1, 0, 0, 0, 6111, 6110, 1, 0, 0, 0, 6112, 6114, 1, 0, 0, 0, 6113, 6108, 1, 0, 0, 0, 6114, 6117, 1, 0, 0, 0, 6115, 6113, 1, 0, 0, 0, 6115, 6116, 1, 0, 0, 0, 6116, 563, 1, 0, 0, 0, 6117, 6115, 1, 0, 0, 0, 6118, 6120, 7, 80, 0, 0, 6119, 6121, 7, 81, 0, 0, 6120, 6119, 1, 0, 0, 0, 6120, 6121, 1, 0, 0, 0, 6121, 565, 1, 0, 0, 0, 6122, 6124, 5, 105, 0, 0, 6123, 6125, 5, 303, 0, 0, 6124, 6123, 1, 0, 0, 0, 6124, 6125, 1, 0, 0, 0, 6125, 6126, 1, 0, 0, 0, 6126, 6131, 3, 568, 284, 0, 6127, 6128, 5, 6, 0, 0, 6128, 6130, 3, 568, 284, 0, 6129, 6127, 1, 0, 0, 0, 6130, 6133, 1, 0, 0, 0, 6131, 6129, 1, 0, 0, 0, 6131, 6132, 1, 0, 0, 0, 6132, 567, 1, 0, 0, 0, 6133, 6131, 1, 0, 0, 0, 6134, 6136, 3, 826, 413, 0, 6135, 6137, 3, 138, 69, 0, 6136, 6135, 1, 0, 0, 0, 6136, 6137, 1, 0, 0, 0, 6137, 6138, 1, 0, 0, 0, 6138, 6143, 5, 36, 0, 0, 6139, 6141, 5, 77, 0, 0, 6140, 6139, 1, 0, 0, 0, 6140, 6141, 1, 0, 0, 0, 6141, 6142, 1, 0, 0, 0, 6142, 6144, 5, 259, 0, 0, 6143, 6140, 1, 0, 0, 0, 6143, 6144, 1, 0, 0, 0, 6144, 6145, 1, 0, 0, 0, 6145, 6146, 5, 2, 0, 0, 6146, 6147, 3, 524, 262, 0, 6147, 6149, 5, 3, 0, 0, 6148, 6150, 3, 570, 285, 0, 6149, 6148, 1, 0, 0, 0, 6149, 6150, 1, 0, 0, 0, 6150, 6152, 1, 0, 0, 0, 6151, 6153, 3, 572, 286, 0, 6152, 6151, 1, 0, 0, 0, 6152, 6153, 1, 0, 0, 0, 6153, 569, 1, 0, 0, 0, 6154, 6155, 5, 325, 0, 0, 6155, 6156, 7, 82, 0, 0, 6156, 6157, 5, 207, 0, 0, 6157, 6158, 5, 147, 0, 0, 6158, 6159, 3, 142, 71, 0, 6159, 6160, 5, 333, 0, 0, 6160, 6161, 3, 806, 403, 0, 6161, 571, 1, 0, 0, 0, 6162, 6163, 5, 173, 0, 0, 6163, 6164, 3, 142, 71, 0, 6164, 6165, 5, 333, 0, 0, 6165, 6171, 3, 806, 403, 0, 6166, 6167, 5, 94, 0, 0, 6167, 6168, 3, 826, 413, 0, 6168, 6169, 5, 53, 0, 0, 6169, 6170, 3, 826, 413, 0, 6170, 6172, 1, 0, 0, 0, 6171, 6166, 1, 0, 0, 0, 6171, 6172, 1, 0, 0, 0, 6172, 6173, 1, 0, 0, 0, 6173, 6174, 5, 100, 0, 0, 6174, 6175, 3, 806, 403, 0, 6175, 573, 1, 0, 0, 0, 6176, 6182, 5, 71, 0, 0, 6177, 6179, 5, 346, 0, 0, 6178, 6177, 1, 0, 0, 0, 6178, 6179, 1, 0, 0, 0, 6179, 6180, 1, 0, 0, 0, 6180, 6183, 3, 576, 288, 0, 6181, 6183, 3, 728, 364, 0, 6182, 6178, 1, 0, 0, 0, 6182, 6181, 1, 0, 0, 0, 6183, 575, 1, 0, 0, 0, 6184, 6186, 7, 21, 0, 0, 6185, 6184, 1, 0, 0, 0, 6185, 6186, 1, 0, 0, 0, 6186, 6187, 1, 0, 0, 0, 6187, 6189, 7, 22, 0, 0, 6188, 6190, 5, 92, 0, 0, 6189, 6188, 1, 0, 0, 0, 6189, 6190, 1, 0, 0, 0, 6190, 6191, 1, 0, 0, 0, 6191, 6200, 3, 776, 388, 0, 6192, 6194, 5, 367, 0, 0, 6193, 6192, 1, 0, 0, 0, 6193, 6194, 1, 0, 0, 0, 6194, 6196, 1, 0, 0, 0, 6195, 6197, 5, 92, 0, 0, 6196, 6195, 1, 0, 0, 0, 6196, 6197, 1, 0, 0, 0, 6197, 6198, 1, 0, 0, 0, 6198, 6200, 3, 776, 388, 0, 6199, 6185, 1, 0, 0, 0, 6199, 6193, 1, 0, 0, 0, 6200, 577, 1, 0, 0, 0, 6201, 6204, 5, 56, 0, 0, 6202, 6203, 5, 80, 0, 0, 6203, 6205, 3, 528, 264, 0, 6204, 6202, 1, 0, 0, 0, 6204, 6205, 1, 0, 0, 0, 6205, 579, 1, 0, 0, 0, 6206, 6207, 5, 83, 0, 0, 6207, 6208, 5, 147, 0, 0, 6208, 6213, 3, 582, 291, 0, 6209, 6210, 5, 6, 0, 0, 6210, 6212, 3, 582, 291, 0, 6211, 6209, 1, 0, 0, 0, 6212, 6215, 1, 0, 0, 0, 6213, 6211, 1, 0, 0, 0, 6213, 6214, 1, 0, 0, 0, 6214, 581, 1, 0, 0, 0, 6215, 6213, 1, 0, 0, 0, 6216, 6220, 3, 736, 368, 0, 6217, 6218, 5, 100, 0, 0, 6218, 6221, 3, 724, 362, 0, 6219, 6221, 7, 56, 0, 0, 6220, 6217, 1, 0, 0, 0, 6220, 6219, 1, 0, 0, 0, 6220, 6221, 1, 0, 0, 0, 6221, 6224, 1, 0, 0, 0, 6222, 6223, 5, 273, 0, 0, 6223, 6225, 7, 57, 0, 0, 6224, 6222, 1, 0, 0, 0, 6224, 6225, 1, 0, 0, 0, 6225, 583, 1, 0, 0, 0, 6226, 6228, 3, 590, 295, 0, 6227, 6229, 3, 588, 294, 0, 6228, 6227, 1, 0, 0, 0, 6228, 6229, 1, 0, 0, 0, 6229, 6238, 1, 0, 0, 0, 6230, 6233, 3, 586, 293, 0, 6231, 6233, 3, 588, 294, 0, 6232, 6230, 1, 0, 0, 0, 6232, 6231, 1, 0, 0, 0, 6233, 6235, 1, 0, 0, 0, 6234, 6236, 3, 590, 295, 0, 6235, 6234, 1, 0, 0, 0, 6235, 6236, 1, 0, 0, 0, 6236, 6238, 1, 0, 0, 0, 6237, 6226, 1, 0, 0, 0, 6237, 6232, 1, 0, 0, 0, 6238, 585, 1, 0, 0, 0, 6239, 6242, 5, 74, 0, 0, 6240, 6243, 3, 670, 335, 0, 6241, 6243, 5, 30, 0, 0, 6242, 6240, 1, 0, 0, 0, 6242, 6241, 1, 0, 0, 0, 6243, 6246, 1, 0, 0, 0, 6244, 6245, 5, 6, 0, 0, 6245, 6247, 3, 670, 335, 0, 6246, 6244, 1, 0, 0, 0, 6246, 6247, 1, 0, 0, 0, 6247, 587, 1, 0, 0, 0, 6248, 6249, 5, 61, 0, 0, 6249, 6251, 7, 83, 0, 0, 6250, 6252, 3, 592, 296, 0, 6251, 6250, 1, 0, 0, 0, 6251, 6252, 1, 0, 0, 0, 6252, 6253, 1, 0, 0, 0, 6253, 6257, 7, 84, 0, 0, 6254, 6258, 5, 81, 0, 0, 6255, 6256, 5, 105, 0, 0, 6256, 6258, 5, 467, 0, 0, 6257, 6254, 1, 0, 0, 0, 6257, 6255, 1, 0, 0, 0, 6258, 589, 1, 0, 0, 0, 6259, 6264, 5, 79, 0, 0, 6260, 6261, 3, 592, 296, 0, 6261, 6262, 7, 84, 0, 0, 6262, 6265, 1, 0, 0, 0, 6263, 6265, 3, 670, 335, 0, 6264, 6260, 1, 0, 0, 0, 6264, 6263, 1, 0, 0, 0, 6265, 591, 1, 0, 0, 0, 6266, 6267, 7, 30, 0, 0, 6267, 6270, 7, 85, 0, 0, 6268, 6270, 3, 678, 339, 0, 6269, 6266, 1, 0, 0, 0, 6269, 6268, 1, 0, 0, 0, 6270, 593, 1, 0, 0, 0, 6271, 6272, 5, 66, 0, 0, 6272, 6274, 5, 147, 0, 0, 6273, 6275, 7, 81, 0, 0, 6274, 6273, 1, 0, 0, 0, 6274, 6275, 1, 0, 0, 0, 6275, 6276, 1, 0, 0, 0, 6276, 6277, 3, 596, 298, 0, 6277, 595, 1, 0, 0, 0, 6278, 6283, 3, 598, 299, 0, 6279, 6280, 5, 6, 0, 0, 6280, 6282, 3, 598, 299, 0, 6281, 6279, 1, 0, 0, 0, 6282, 6285, 1, 0, 0, 0, 6283, 6281, 1, 0, 0, 0, 6283, 6284, 1, 0, 0, 0, 6284, 597, 1, 0, 0, 0, 6285, 6283, 1, 0, 0, 0, 6286, 6310, 3, 736, 368, 0, 6287, 6288, 5, 2, 0, 0, 6288, 6310, 5, 3, 0, 0, 6289, 6291, 7, 86, 0, 0, 6290, 6289, 1, 0, 0, 0, 6290, 6291, 1, 0, 0, 0, 6291, 6292, 1, 0, 0, 0, 6292, 6293, 5, 2, 0, 0, 6293, 6298, 3, 736, 368, 0, 6294, 6295, 5, 6, 0, 0, 6295, 6297, 3, 736, 368, 0, 6296, 6294, 1, 0, 0, 0, 6297, 6300, 1, 0, 0, 0, 6298, 6296, 1, 0, 0, 0, 6298, 6299, 1, 0, 0, 0, 6299, 6301, 1, 0, 0, 0, 6300, 6298, 1, 0, 0, 0, 6301, 6302, 5, 3, 0, 0, 6302, 6310, 1, 0, 0, 0, 6303, 6304, 5, 470, 0, 0, 6304, 6305, 5, 471, 0, 0, 6305, 6306, 5, 2, 0, 0, 6306, 6307, 3, 596, 298, 0, 6307, 6308, 5, 3, 0, 0, 6308, 6310, 1, 0, 0, 0, 6309, 6286, 1, 0, 0, 0, 6309, 6287, 1, 0, 0, 0, 6309, 6290, 1, 0, 0, 0, 6309, 6303, 1, 0, 0, 0, 6310, 599, 1, 0, 0, 0, 6311, 6321, 5, 62, 0, 0, 6312, 6313, 5, 269, 0, 0, 6313, 6315, 5, 245, 0, 0, 6314, 6312, 1, 0, 0, 0, 6314, 6315, 1, 0, 0, 0, 6315, 6316, 1, 0, 0, 0, 6316, 6322, 5, 369, 0, 0, 6317, 6319, 5, 245, 0, 0, 6318, 6317, 1, 0, 0, 0, 6318, 6319, 1, 0, 0, 0, 6319, 6320, 1, 0, 0, 0, 6320, 6322, 5, 334, 0, 0, 6321, 6314, 1, 0, 0, 0, 6321, 6318, 1, 0, 0, 0, 6322, 6325, 1, 0, 0, 0, 6323, 6324, 5, 275, 0, 0, 6324, 6326, 3, 764, 382, 0, 6325, 6323, 1, 0, 0, 0, 6325, 6326, 1, 0, 0, 0, 6326, 6330, 1, 0, 0, 0, 6327, 6331, 5, 272, 0, 0, 6328, 6329, 5, 465, 0, 0, 6329, 6331, 5, 466, 0, 0, 6330, 6327, 1, 0, 0, 0, 6330, 6328, 1, 0, 0, 0, 6330, 6331, 1, 0, 0, 0, 6331, 6333, 1, 0, 0, 0, 6332, 6311, 1, 0, 0, 0, 6333, 6334, 1, 0, 0, 0, 6334, 6332, 1, 0, 0, 0, 6334, 6335, 1, 0, 0, 0, 6335, 6340, 1, 0, 0, 0, 6336, 6337, 5, 62, 0, 0, 6337, 6338, 5, 300, 0, 0, 6338, 6340, 5, 81, 0, 0, 6339, 6332, 1, 0, 0, 0, 6339, 6336, 1, 0, 0, 0, 6340, 601, 1, 0, 0, 0, 6341, 6342, 5, 422, 0, 0, 6342, 6347, 3, 528, 264, 0, 6343, 6344, 5, 6, 0, 0, 6344, 6346, 3, 528, 264, 0, 6345, 6343, 1, 0, 0, 0, 6346, 6349, 1, 0, 0, 0, 6347, 6345, 1, 0, 0, 0, 6347, 6348, 1, 0, 0, 0, 6348, 603, 1, 0, 0, 0, 6349, 6347, 1, 0, 0, 0, 6350, 6351, 5, 64, 0, 0, 6351, 6352, 3, 606, 303, 0, 6352, 605, 1, 0, 0, 0, 6353, 6358, 3, 608, 304, 0, 6354, 6355, 5, 6, 0, 0, 6355, 6357, 3, 608, 304, 0, 6356, 6354, 1, 0, 0, 0, 6357, 6360, 1, 0, 0, 0, 6358, 6356, 1, 0, 0, 0, 6358, 6359, 1, 0, 0, 0, 6359, 607, 1, 0, 0, 0, 6360, 6358, 1, 0, 0, 0, 6361, 6376, 3, 620, 310, 0, 6362, 6364, 5, 81, 0, 0, 6363, 6362, 1, 0, 0, 0, 6363, 6364, 1, 0, 0, 0, 6364, 6365, 1, 0, 0, 0, 6365, 6367, 3, 782, 391, 0, 6366, 6368, 5, 9, 0, 0, 6367, 6366, 1, 0, 0, 0, 6367, 6368, 1, 0, 0, 0, 6368, 6370, 1, 0, 0, 0, 6369, 6371, 3, 142, 71, 0, 6370, 6369, 1, 0, 0, 0, 6370, 6371, 1, 0, 0, 0, 6371, 6373, 1, 0, 0, 0, 6372, 6374, 3, 634, 317, 0, 6373, 6372, 1, 0, 0, 0, 6373, 6374, 1, 0, 0, 0, 6374, 6376, 1, 0, 0, 0, 6375, 6361, 1, 0, 0, 0, 6375, 6363, 1, 0, 0, 0, 6376, 6378, 1, 0, 0, 0, 6377, 6379, 3, 612, 306, 0, 6378, 6377, 1, 0, 0, 0, 6378, 6379, 1, 0, 0, 0, 6379, 6381, 1, 0, 0, 0, 6380, 6382, 3, 628, 314, 0, 6381, 6380, 1, 0, 0, 0, 6381, 6382, 1, 0, 0, 0, 6382, 6412, 1, 0, 0, 0, 6383, 6385, 5, 72, 0, 0, 6384, 6383, 1, 0, 0, 0, 6384, 6385, 1, 0, 0, 0, 6385, 6386, 1, 0, 0, 0, 6386, 6412, 3, 610, 305, 0, 6387, 6388, 5, 2, 0, 0, 6388, 6405, 3, 608, 304, 0, 6389, 6390, 5, 110, 0, 0, 6390, 6391, 5, 118, 0, 0, 6391, 6406, 3, 608, 304, 0, 6392, 6394, 5, 121, 0, 0, 6393, 6395, 3, 616, 308, 0, 6394, 6393, 1, 0, 0, 0, 6394, 6395, 1, 0, 0, 0, 6395, 6396, 1, 0, 0, 0, 6396, 6397, 5, 118, 0, 0, 6397, 6406, 3, 608, 304, 0, 6398, 6400, 3, 616, 308, 0, 6399, 6398, 1, 0, 0, 0, 6399, 6400, 1, 0, 0, 0, 6400, 6401, 1, 0, 0, 0, 6401, 6402, 5, 118, 0, 0, 6402, 6403, 3, 608, 304, 0, 6403, 6404, 3, 618, 309, 0, 6404, 6406, 1, 0, 0, 0, 6405, 6389, 1, 0, 0, 0, 6405, 6392, 1, 0, 0, 0, 6405, 6399, 1, 0, 0, 0, 6405, 6406, 1, 0, 0, 0, 6406, 6407, 1, 0, 0, 0, 6407, 6409, 5, 3, 0, 0, 6408, 6410, 3, 612, 306, 0, 6409, 6408, 1, 0, 0, 0, 6409, 6410, 1, 0, 0, 0, 6410, 6412, 1, 0, 0, 0, 6411, 6375, 1, 0, 0, 0, 6411, 6384, 1, 0, 0, 0, 6411, 6387, 1, 0, 0, 0, 6412, 6431, 1, 0, 0, 0, 6413, 6414, 5, 110, 0, 0, 6414, 6415, 5, 118, 0, 0, 6415, 6430, 3, 608, 304, 0, 6416, 6418, 5, 121, 0, 0, 6417, 6419, 3, 616, 308, 0, 6418, 6417, 1, 0, 0, 0, 6418, 6419, 1, 0, 0, 0, 6419, 6420, 1, 0, 0, 0, 6420, 6421, 5, 118, 0, 0, 6421, 6430, 3, 608, 304, 0, 6422, 6424, 3, 616, 308, 0, 6423, 6422, 1, 0, 0, 0, 6423, 6424, 1, 0, 0, 0, 6424, 6425, 1, 0, 0, 0, 6425, 6426, 5, 118, 0, 0, 6426, 6427, 3, 608, 304, 0, 6427, 6428, 3, 618, 309, 0, 6428, 6430, 1, 0, 0, 0, 6429, 6413, 1, 0, 0, 0, 6429, 6416, 1, 0, 0, 0, 6429, 6423, 1, 0, 0, 0, 6430, 6433, 1, 0, 0, 0, 6431, 6429, 1, 0, 0, 0, 6431, 6432, 1, 0, 0, 0, 6432, 609, 1, 0, 0, 0, 6433, 6431, 1, 0, 0, 0, 6434, 6436, 3, 642, 321, 0, 6435, 6437, 3, 612, 306, 0, 6436, 6435, 1, 0, 0, 0, 6436, 6437, 1, 0, 0, 0, 6437, 6447, 1, 0, 0, 0, 6438, 6440, 3, 630, 315, 0, 6439, 6441, 3, 614, 307, 0, 6440, 6439, 1, 0, 0, 0, 6440, 6441, 1, 0, 0, 0, 6441, 6447, 1, 0, 0, 0, 6442, 6444, 3, 556, 278, 0, 6443, 6445, 3, 612, 306, 0, 6444, 6443, 1, 0, 0, 0, 6444, 6445, 1, 0, 0, 0, 6445, 6447, 1, 0, 0, 0, 6446, 6434, 1, 0, 0, 0, 6446, 6438, 1, 0, 0, 0, 6446, 6442, 1, 0, 0, 0, 6447, 611, 1, 0, 0, 0, 6448, 6450, 5, 36, 0, 0, 6449, 6448, 1, 0, 0, 0, 6449, 6450, 1, 0, 0, 0, 6450, 6451, 1, 0, 0, 0, 6451, 6456, 3, 826, 413, 0, 6452, 6453, 5, 2, 0, 0, 6453, 6454, 3, 788, 394, 0, 6454, 6455, 5, 3, 0, 0, 6455, 6457, 1, 0, 0, 0, 6456, 6452, 1, 0, 0, 0, 6456, 6457, 1, 0, 0, 0, 6457, 613, 1, 0, 0, 0, 6458, 6471, 3, 612, 306, 0, 6459, 6461, 5, 36, 0, 0, 6460, 6462, 3, 826, 413, 0, 6461, 6460, 1, 0, 0, 0, 6461, 6462, 1, 0, 0, 0, 6462, 6465, 1, 0, 0, 0, 6463, 6465, 3, 826, 413, 0, 6464, 6459, 1, 0, 0, 0, 6464, 6463, 1, 0, 0, 0, 6465, 6466, 1, 0, 0, 0, 6466, 6467, 5, 2, 0, 0, 6467, 6468, 3, 638, 319, 0, 6468, 6469, 5, 3, 0, 0, 6469, 6471, 1, 0, 0, 0, 6470, 6458, 1, 0, 0, 0, 6470, 6464, 1, 0, 0, 0, 6471, 615, 1, 0, 0, 0, 6472, 6474, 7, 87, 0, 0, 6473, 6475, 5, 123, 0, 0, 6474, 6473, 1, 0, 0, 0, 6474, 6475, 1, 0, 0, 0, 6475, 617, 1, 0, 0, 0, 6476, 6477, 5, 100, 0, 0, 6477, 6481, 3, 138, 69, 0, 6478, 6479, 5, 80, 0, 0, 6479, 6481, 3, 670, 335, 0, 6480, 6476, 1, 0, 0, 0, 6480, 6478, 1, 0, 0, 0, 6481, 619, 1, 0, 0, 0, 6482, 6498, 3, 316, 158, 0, 6483, 6489, 5, 81, 0, 0, 6484, 6490, 3, 778, 389, 0, 6485, 6486, 5, 2, 0, 0, 6486, 6487, 3, 778, 389, 0, 6487, 6488, 5, 3, 0, 0, 6488, 6490, 1, 0, 0, 0, 6489, 6484, 1, 0, 0, 0, 6489, 6485, 1, 0, 0, 0, 6490, 6498, 1, 0, 0, 0, 6491, 6492, 5, 68, 0, 0, 6492, 6495, 5, 323, 0, 0, 6493, 6496, 3, 794, 397, 0, 6494, 6496, 5, 111, 0, 0, 6495, 6493, 1, 0, 0, 0, 6495, 6494, 1, 0, 0, 0, 6496, 6498, 1, 0, 0, 0, 6497, 6482, 1, 0, 0, 0, 6497, 6483, 1, 0, 0, 0, 6497, 6491, 1, 0, 0, 0, 6498, 621, 1, 0, 0, 0, 6499, 6500, 5, 92, 0, 0, 6500, 6502, 3, 316, 158, 0, 6501, 6503, 3, 138, 69, 0, 6502, 6501, 1, 0, 0, 0, 6502, 6503, 1, 0, 0, 0, 6503, 6505, 1, 0, 0, 0, 6504, 6506, 3, 634, 317, 0, 6505, 6504, 1, 0, 0, 0, 6505, 6506, 1, 0, 0, 0, 6506, 6524, 1, 0, 0, 0, 6507, 6508, 5, 92, 0, 0, 6508, 6514, 5, 81, 0, 0, 6509, 6515, 3, 778, 389, 0, 6510, 6511, 5, 2, 0, 0, 6511, 6512, 3, 778, 389, 0, 6512, 6513, 5, 3, 0, 0, 6513, 6515, 1, 0, 0, 0, 6514, 6509, 1, 0, 0, 0, 6514, 6510, 1, 0, 0, 0, 6515, 6524, 1, 0, 0, 0, 6516, 6517, 5, 350, 0, 0, 6517, 6518, 5, 68, 0, 0, 6518, 6521, 5, 323, 0, 0, 6519, 6522, 3, 794, 397, 0, 6520, 6522, 5, 111, 0, 0, 6521, 6519, 1, 0, 0, 0, 6521, 6520, 1, 0, 0, 0, 6522, 6524, 1, 0, 0, 0, 6523, 6499, 1, 0, 0, 0, 6523, 6507, 1, 0, 0, 0, 6523, 6516, 1, 0, 0, 0, 6524, 623, 1, 0, 0, 0, 6525, 6530, 3, 620, 310, 0, 6526, 6527, 5, 6, 0, 0, 6527, 6529, 3, 620, 310, 0, 6528, 6526, 1, 0, 0, 0, 6529, 6532, 1, 0, 0, 0, 6530, 6528, 1, 0, 0, 0, 6530, 6531, 1, 0, 0, 0, 6531, 625, 1, 0, 0, 0, 6532, 6530, 1, 0, 0, 0, 6533, 6538, 3, 620, 310, 0, 6534, 6536, 5, 36, 0, 0, 6535, 6534, 1, 0, 0, 0, 6535, 6536, 1, 0, 0, 0, 6536, 6537, 1, 0, 0, 0, 6537, 6539, 3, 826, 413, 0, 6538, 6535, 1, 0, 0, 0, 6538, 6539, 1, 0, 0, 0, 6539, 627, 1, 0, 0, 0, 6540, 6541, 5, 472, 0, 0, 6541, 6542, 3, 814, 407, 0, 6542, 6548, 3, 528, 264, 0, 6543, 6544, 5, 310, 0, 0, 6544, 6545, 5, 2, 0, 0, 6545, 6546, 3, 670, 335, 0, 6546, 6547, 5, 3, 0, 0, 6547, 6549, 1, 0, 0, 0, 6548, 6543, 1, 0, 0, 0, 6548, 6549, 1, 0, 0, 0, 6549, 629, 1, 0, 0, 0, 6550, 6565, 3, 684, 342, 0, 6551, 6552, 5, 320, 0, 0, 6552, 6553, 5, 64, 0, 0, 6553, 6554, 5, 2, 0, 0, 6554, 6559, 3, 632, 316, 0, 6555, 6556, 5, 6, 0, 0, 6556, 6558, 3, 632, 316, 0, 6557, 6555, 1, 0, 0, 0, 6558, 6561, 1, 0, 0, 0, 6559, 6557, 1, 0, 0, 0, 6559, 6560, 1, 0, 0, 0, 6560, 6562, 1, 0, 0, 0, 6561, 6559, 1, 0, 0, 0, 6562, 6563, 5, 3, 0, 0, 6563, 6565, 1, 0, 0, 0, 6564, 6550, 1, 0, 0, 0, 6564, 6551, 1, 0, 0, 0, 6565, 6568, 1, 0, 0, 0, 6566, 6567, 5, 105, 0, 0, 6567, 6569, 5, 473, 0, 0, 6568, 6566, 1, 0, 0, 0, 6568, 6569, 1, 0, 0, 0, 6569, 631, 1, 0, 0, 0, 6570, 6576, 3, 684, 342, 0, 6571, 6572, 5, 36, 0, 0, 6572, 6573, 5, 2, 0, 0, 6573, 6574, 3, 638, 319, 0, 6574, 6575, 5, 3, 0, 0, 6575, 6577, 1, 0, 0, 0, 6576, 6571, 1, 0, 0, 0, 6576, 6577, 1, 0, 0, 0, 6577, 633, 1, 0, 0, 0, 6578, 6579, 5, 103, 0, 0, 6579, 6580, 3, 736, 368, 0, 6580, 635, 1, 0, 0, 0, 6581, 6586, 5, 103, 0, 0, 6582, 6583, 5, 434, 0, 0, 6583, 6584, 5, 275, 0, 0, 6584, 6587, 3, 826, 413, 0, 6585, 6587, 3, 670, 335, 0, 6586, 6582, 1, 0, 0, 0, 6586, 6585, 1, 0, 0, 0, 6587, 637, 1, 0, 0, 0, 6588, 6593, 3, 640, 320, 0, 6589, 6590, 5, 6, 0, 0, 6590, 6592, 3, 640, 320, 0, 6591, 6589, 1, 0, 0, 0, 6592, 6595, 1, 0, 0, 0, 6593, 6591, 1, 0, 0, 0, 6593, 6594, 1, 0, 0, 0, 6594, 639, 1, 0, 0, 0, 6595, 6593, 1, 0, 0, 0, 6596, 6597, 3, 826, 413, 0, 6597, 6599, 3, 648, 324, 0, 6598, 6600, 3, 90, 45, 0, 6599, 6598, 1, 0, 0, 0, 6599, 6600, 1, 0, 0, 0, 6600, 641, 1, 0, 0, 0, 6601, 6602, 5, 474, 0, 0, 6602, 6616, 5, 2, 0, 0, 6603, 6604, 5, 476, 0, 0, 6604, 6605, 5, 2, 0, 0, 6605, 6610, 3, 646, 323, 0, 6606, 6607, 5, 6, 0, 0, 6607, 6609, 3, 646, 323, 0, 6608, 6606, 1, 0, 0, 0, 6609, 6612, 1, 0, 0, 0, 6610, 6608, 1, 0, 0, 0, 6610, 6611, 1, 0, 0, 0, 6611, 6613, 1, 0, 0, 0, 6612, 6610, 1, 0, 0, 0, 6613, 6614, 5, 3, 0, 0, 6614, 6615, 5, 6, 0, 0, 6615, 6617, 1, 0, 0, 0, 6616, 6603, 1, 0, 0, 0, 6616, 6617, 1, 0, 0, 0, 6617, 6618, 1, 0, 0, 0, 6618, 6619, 3, 678, 339, 0, 6619, 6620, 3, 694, 347, 0, 6620, 6621, 5, 475, 0, 0, 6621, 6626, 3, 644, 322, 0, 6622, 6623, 5, 6, 0, 0, 6623, 6625, 3, 644, 322, 0, 6624, 6622, 1, 0, 0, 0, 6625, 6628, 1, 0, 0, 0, 6626, 6624, 1, 0, 0, 0, 6626, 6627, 1, 0, 0, 0, 6627, 6629, 1, 0, 0, 0, 6628, 6626, 1, 0, 0, 0, 6629, 6630, 5, 3, 0, 0, 6630, 643, 1, 0, 0, 0, 6631, 6650, 3, 826, 413, 0, 6632, 6646, 3, 648, 324, 0, 6633, 6636, 5, 53, 0, 0, 6634, 6636, 3, 834, 417, 0, 6635, 6633, 1, 0, 0, 0, 6635, 6634, 1, 0, 0, 0, 6636, 6637, 1, 0, 0, 0, 6637, 6643, 3, 670, 335, 0, 6638, 6640, 5, 77, 0, 0, 6639, 6638, 1, 0, 0, 0, 6639, 6640, 1, 0, 0, 0, 6640, 6641, 1, 0, 0, 0, 6641, 6643, 5, 78, 0, 0, 6642, 6635, 1, 0, 0, 0, 6642, 6639, 1, 0, 0, 0, 6643, 6644, 1, 0, 0, 0, 6644, 6642, 1, 0, 0, 0, 6644, 6645, 1, 0, 0, 0, 6645, 6647, 1, 0, 0, 0, 6646, 6642, 1, 0, 0, 0, 6646, 6647, 1, 0, 0, 0, 6647, 6651, 1, 0, 0, 0, 6648, 6649, 5, 62, 0, 0, 6649, 6651, 5, 473, 0, 0, 6650, 6632, 1, 0, 0, 0, 6650, 6648, 1, 0, 0, 0, 6651, 645, 1, 0, 0, 0, 6652, 6653, 3, 678, 339, 0, 6653, 6654, 5, 36, 0, 0, 6654, 6655, 3, 832, 416, 0, 6655, 6659, 1, 0, 0, 0, 6656, 6657, 5, 53, 0, 0, 6657, 6659, 3, 678, 339, 0, 6658, 6652, 1, 0, 0, 0, 6658, 6656, 1, 0, 0, 0, 6659, 647, 1, 0, 0, 0, 6660, 6662, 5, 415, 0, 0, 6661, 6660, 1, 0, 0, 0, 6661, 6662, 1, 0, 0, 0, 6662, 6663, 1, 0, 0, 0, 6663, 6680, 3, 650, 325, 0, 6664, 6666, 5, 4, 0, 0, 6665, 6667, 5, 574, 0, 0, 6666, 6665, 1, 0, 0, 0, 6666, 6667, 1, 0, 0, 0, 6667, 6668, 1, 0, 0, 0, 6668, 6670, 5, 5, 0, 0, 6669, 6664, 1, 0, 0, 0, 6670, 6673, 1, 0, 0, 0, 6671, 6669, 1, 0, 0, 0, 6671, 6672, 1, 0, 0, 0, 6672, 6681, 1, 0, 0, 0, 6673, 6671, 1, 0, 0, 0, 6674, 6678, 5, 35, 0, 0, 6675, 6676, 5, 4, 0, 0, 6676, 6677, 5, 574, 0, 0, 6677, 6679, 5, 5, 0, 0, 6678, 6675, 1, 0, 0, 0, 6678, 6679, 1, 0, 0, 0, 6679, 6681, 1, 0, 0, 0, 6680, 6671, 1, 0, 0, 0, 6680, 6674, 1, 0, 0, 0, 6681, 6687, 1, 0, 0, 0, 6682, 6683, 3, 784, 392, 0, 6683, 6684, 5, 27, 0, 0, 6684, 6685, 7, 88, 0, 0, 6685, 6687, 1, 0, 0, 0, 6686, 6661, 1, 0, 0, 0, 6686, 6682, 1, 0, 0, 0, 6687, 649, 1, 0, 0, 0, 6688, 6690, 3, 828, 414, 0, 6689, 6691, 3, 312, 156, 0, 6690, 6689, 1, 0, 0, 0, 6690, 6691, 1, 0, 0, 0, 6691, 6693, 1, 0, 0, 0, 6692, 6694, 3, 528, 264, 0, 6693, 6692, 1, 0, 0, 0, 6693, 6694, 1, 0, 0, 0, 6694, 6704, 1, 0, 0, 0, 6695, 6704, 3, 652, 326, 0, 6696, 6701, 5, 403, 0, 0, 6697, 6699, 3, 664, 332, 0, 6698, 6697, 1, 0, 0, 0, 6698, 6699, 1, 0, 0, 0, 6699, 6702, 1, 0, 0, 0, 6700, 6702, 3, 656, 328, 0, 6701, 6698, 1, 0, 0, 0, 6701, 6700, 1, 0, 0, 0, 6702, 6704, 1, 0, 0, 0, 6703, 6688, 1, 0, 0, 0, 6703, 6695, 1, 0, 0, 0, 6703, 6696, 1, 0, 0, 0, 6704, 651, 1, 0, 0, 0, 6705, 6710, 3, 654, 327, 0, 6706, 6710, 3, 658, 329, 0, 6707, 6710, 3, 660, 330, 0, 6708, 6710, 3, 662, 331, 0, 6709, 6705, 1, 0, 0, 0, 6709, 6706, 1, 0, 0, 0, 6709, 6707, 1, 0, 0, 0, 6709, 6708, 1, 0, 0, 0, 6710, 653, 1, 0, 0, 0, 6711, 6728, 5, 401, 0, 0, 6712, 6728, 5, 402, 0, 0, 6713, 6728, 5, 416, 0, 0, 6714, 6728, 5, 388, 0, 0, 6715, 6728, 5, 413, 0, 0, 6716, 6718, 5, 398, 0, 0, 6717, 6719, 3, 656, 328, 0, 6718, 6717, 1, 0, 0, 0, 6718, 6719, 1, 0, 0, 0, 6719, 6728, 1, 0, 0, 0, 6720, 6721, 5, 190, 0, 0, 6721, 6728, 5, 412, 0, 0, 6722, 6724, 7, 89, 0, 0, 6723, 6725, 3, 528, 264, 0, 6724, 6723, 1, 0, 0, 0, 6724, 6725, 1, 0, 0, 0, 6725, 6728, 1, 0, 0, 0, 6726, 6728, 5, 390, 0, 0, 6727, 6711, 1, 0, 0, 0, 6727, 6712, 1, 0, 0, 0, 6727, 6713, 1, 0, 0, 0, 6727, 6714, 1, 0, 0, 0, 6727, 6715, 1, 0, 0, 0, 6727, 6716, 1, 0, 0, 0, 6727, 6720, 1, 0, 0, 0, 6727, 6722, 1, 0, 0, 0, 6727, 6726, 1, 0, 0, 0, 6728, 655, 1, 0, 0, 0, 6729, 6730, 5, 2, 0, 0, 6730, 6731, 5, 574, 0, 0, 6731, 6732, 5, 3, 0, 0, 6732, 657, 1, 0, 0, 0, 6733, 6735, 5, 389, 0, 0, 6734, 6736, 5, 374, 0, 0, 6735, 6734, 1, 0, 0, 0, 6735, 6736, 1, 0, 0, 0, 6736, 6738, 1, 0, 0, 0, 6737, 6739, 3, 528, 264, 0, 6738, 6737, 1, 0, 0, 0, 6738, 6739, 1, 0, 0, 0, 6739, 659, 1, 0, 0, 0, 6740, 6742, 7, 90, 0, 0, 6741, 6743, 5, 374, 0, 0, 6742, 6741, 1, 0, 0, 0, 6742, 6743, 1, 0, 0, 0, 6743, 6751, 1, 0, 0, 0, 6744, 6751, 5, 423, 0, 0, 6745, 6746, 5, 405, 0, 0, 6746, 6748, 7, 91, 0, 0, 6747, 6749, 5, 374, 0, 0, 6748, 6747, 1, 0, 0, 0, 6748, 6749, 1, 0, 0, 0, 6749, 6751, 1, 0, 0, 0, 6750, 6740, 1, 0, 0, 0, 6750, 6744, 1, 0, 0, 0, 6750, 6745, 1, 0, 0, 0, 6751, 6753, 1, 0, 0, 0, 6752, 6754, 3, 656, 328, 0, 6753, 6752, 1, 0, 0, 0, 6753, 6754, 1, 0, 0, 0, 6754, 661, 1, 0, 0, 0, 6755, 6757, 7, 92, 0, 0, 6756, 6758, 3, 656, 328, 0, 6757, 6756, 1, 0, 0, 0, 6757, 6758, 1, 0, 0, 0, 6758, 6762, 1, 0, 0, 0, 6759, 6760, 7, 27, 0, 0, 6760, 6761, 5, 418, 0, 0, 6761, 6763, 5, 386, 0, 0, 6762, 6759, 1, 0, 0, 0, 6762, 6763, 1, 0, 0, 0, 6763, 663, 1, 0, 0, 0, 6764, 6794, 5, 264, 0, 0, 6765, 6794, 3, 666, 333, 0, 6766, 6769, 5, 384, 0, 0, 6767, 6768, 5, 94, 0, 0, 6768, 6770, 5, 264, 0, 0, 6769, 6767, 1, 0, 0, 0, 6769, 6770, 1, 0, 0, 0, 6770, 6794, 1, 0, 0, 0, 6771, 6778, 5, 176, 0, 0, 6772, 6776, 5, 94, 0, 0, 6773, 6777, 5, 218, 0, 0, 6774, 6777, 5, 261, 0, 0, 6775, 6777, 3, 666, 333, 0, 6776, 6773, 1, 0, 0, 0, 6776, 6774, 1, 0, 0, 0, 6776, 6775, 1, 0, 0, 0, 6777, 6779, 1, 0, 0, 0, 6778, 6772, 1, 0, 0, 0, 6778, 6779, 1, 0, 0, 0, 6779, 6794, 1, 0, 0, 0, 6780, 6786, 5, 218, 0, 0, 6781, 6784, 5, 94, 0, 0, 6782, 6785, 5, 261, 0, 0, 6783, 6785, 3, 666, 333, 0, 6784, 6782, 1, 0, 0, 0, 6784, 6783, 1, 0, 0, 0, 6785, 6787, 1, 0, 0, 0, 6786, 6781, 1, 0, 0, 0, 6786, 6787, 1, 0, 0, 0, 6787, 6794, 1, 0, 0, 0, 6788, 6791, 5, 261, 0, 0, 6789, 6790, 5, 94, 0, 0, 6790, 6792, 3, 666, 333, 0, 6791, 6789, 1, 0, 0, 0, 6791, 6792, 1, 0, 0, 0, 6792, 6794, 1, 0, 0, 0, 6793, 6764, 1, 0, 0, 0, 6793, 6765, 1, 0, 0, 0, 6793, 6766, 1, 0, 0, 0, 6793, 6771, 1, 0, 0, 0, 6793, 6780, 1, 0, 0, 0, 6793, 6788, 1, 0, 0, 0, 6794, 665, 1, 0, 0, 0, 6795, 6797, 5, 326, 0, 0, 6796, 6798, 3, 656, 328, 0, 6797, 6796, 1, 0, 0, 0, 6797, 6798, 1, 0, 0, 0, 6798, 667, 1, 0, 0, 0, 6799, 6800, 7, 93, 0, 0, 6800, 669, 1, 0, 0, 0, 6801, 6802, 3, 672, 336, 0, 6802, 671, 1, 0, 0, 0, 6803, 6804, 6, 336, -1, 0, 6804, 6806, 3, 676, 338, 0, 6805, 6807, 3, 674, 337, 0, 6806, 6805, 1, 0, 0, 0, 6806, 6807, 1, 0, 0, 0, 6807, 6811, 1, 0, 0, 0, 6808, 6809, 5, 77, 0, 0, 6809, 6811, 3, 672, 336, 3, 6810, 6803, 1, 0, 0, 0, 6810, 6808, 1, 0, 0, 0, 6811, 6820, 1, 0, 0, 0, 6812, 6813, 10, 2, 0, 0, 6813, 6814, 5, 33, 0, 0, 6814, 6819, 3, 672, 336, 3, 6815, 6816, 10, 1, 0, 0, 6816, 6817, 5, 82, 0, 0, 6817, 6819, 3, 672, 336, 2, 6818, 6812, 1, 0, 0, 0, 6818, 6815, 1, 0, 0, 0, 6819, 6822, 1, 0, 0, 0, 6820, 6818, 1, 0, 0, 0, 6820, 6821, 1, 0, 0, 0, 6821, 673, 1, 0, 0, 0, 6822, 6820, 1, 0, 0, 0, 6823, 6824, 3, 668, 334, 0, 6824, 6825, 3, 676, 338, 0, 6825, 6895, 1, 0, 0, 0, 6826, 6827, 3, 668, 334, 0, 6827, 6828, 3, 726, 363, 0, 6828, 6834, 3, 716, 358, 0, 6829, 6835, 3, 556, 278, 0, 6830, 6831, 5, 2, 0, 0, 6831, 6832, 3, 670, 335, 0, 6832, 6833, 5, 3, 0, 0, 6833, 6835, 1, 0, 0, 0, 6834, 6829, 1, 0, 0, 0, 6834, 6830, 1, 0, 0, 0, 6835, 6895, 1, 0, 0, 0, 6836, 6838, 5, 77, 0, 0, 6837, 6836, 1, 0, 0, 0, 6837, 6838, 1, 0, 0, 0, 6838, 6839, 1, 0, 0, 0, 6839, 6840, 5, 387, 0, 0, 6840, 6841, 3, 676, 338, 0, 6841, 6842, 5, 33, 0, 0, 6842, 6843, 3, 676, 338, 0, 6843, 6895, 1, 0, 0, 0, 6844, 6846, 5, 77, 0, 0, 6845, 6844, 1, 0, 0, 0, 6845, 6846, 1, 0, 0, 0, 6846, 6847, 1, 0, 0, 0, 6847, 6848, 5, 68, 0, 0, 6848, 6849, 5, 2, 0, 0, 6849, 6854, 3, 670, 335, 0, 6850, 6851, 5, 6, 0, 0, 6851, 6853, 3, 670, 335, 0, 6852, 6850, 1, 0, 0, 0, 6853, 6856, 1, 0, 0, 0, 6854, 6852, 1, 0, 0, 0, 6854, 6855, 1, 0, 0, 0, 6855, 6857, 1, 0, 0, 0, 6856, 6854, 1, 0, 0, 0, 6857, 6858, 5, 3, 0, 0, 6858, 6895, 1, 0, 0, 0, 6859, 6861, 5, 77, 0, 0, 6860, 6859, 1, 0, 0, 0, 6860, 6861, 1, 0, 0, 0, 6861, 6862, 1, 0, 0, 0, 6862, 6863, 5, 68, 0, 0, 6863, 6895, 3, 556, 278, 0, 6864, 6866, 5, 77, 0, 0, 6865, 6864, 1, 0, 0, 0, 6865, 6866, 1, 0, 0, 0, 6866, 6875, 1, 0, 0, 0, 6867, 6876, 5, 120, 0, 0, 6868, 6876, 5, 114, 0, 0, 6869, 6870, 5, 127, 0, 0, 6870, 6876, 5, 94, 0, 0, 6871, 6873, 5, 387, 0, 0, 6872, 6874, 5, 91, 0, 0, 6873, 6872, 1, 0, 0, 0, 6873, 6874, 1, 0, 0, 0, 6874, 6876, 1, 0, 0, 0, 6875, 6867, 1, 0, 0, 0, 6875, 6868, 1, 0, 0, 0, 6875, 6869, 1, 0, 0, 0, 6875, 6871, 1, 0, 0, 0, 6876, 6877, 1, 0, 0, 0, 6877, 6880, 3, 676, 338, 0, 6878, 6879, 5, 197, 0, 0, 6879, 6881, 3, 676, 338, 0, 6880, 6878, 1, 0, 0, 0, 6880, 6881, 1, 0, 0, 0, 6881, 6895, 1, 0, 0, 0, 6882, 6884, 5, 116, 0, 0, 6883, 6885, 5, 77, 0, 0, 6884, 6883, 1, 0, 0, 0, 6884, 6885, 1, 0, 0, 0, 6885, 6886, 1, 0, 0, 0, 6886, 6895, 5, 78, 0, 0, 6887, 6889, 5, 116, 0, 0, 6888, 6890, 5, 77, 0, 0, 6889, 6888, 1, 0, 0, 0, 6889, 6890, 1, 0, 0, 0, 6890, 6891, 1, 0, 0, 0, 6891, 6892, 5, 56, 0, 0, 6892, 6893, 5, 64, 0, 0, 6893, 6895, 3, 676, 338, 0, 6894, 6823, 1, 0, 0, 0, 6894, 6826, 1, 0, 0, 0, 6894, 6837, 1, 0, 0, 0, 6894, 6845, 1, 0, 0, 0, 6894, 6860, 1, 0, 0, 0, 6894, 6865, 1, 0, 0, 0, 6894, 6882, 1, 0, 0, 0, 6894, 6887, 1, 0, 0, 0, 6895, 675, 1, 0, 0, 0, 6896, 6897, 6, 338, -1, 0, 6897, 6901, 3, 678, 339, 0, 6898, 6899, 7, 30, 0, 0, 6899, 6901, 3, 676, 338, 4, 6900, 6896, 1, 0, 0, 0, 6900, 6898, 1, 0, 0, 0, 6901, 6918, 1, 0, 0, 0, 6902, 6903, 10, 3, 0, 0, 6903, 6904, 7, 94, 0, 0, 6904, 6917, 3, 676, 338, 4, 6905, 6906, 10, 2, 0, 0, 6906, 6907, 7, 30, 0, 0, 6907, 6917, 3, 676, 338, 3, 6908, 6909, 10, 1, 0, 0, 6909, 6910, 5, 15, 0, 0, 6910, 6917, 3, 676, 338, 2, 6911, 6912, 10, 5, 0, 0, 6912, 6913, 5, 142, 0, 0, 6913, 6914, 5, 418, 0, 0, 6914, 6915, 5, 386, 0, 0, 6915, 6917, 3, 670, 335, 0, 6916, 6902, 1, 0, 0, 0, 6916, 6905, 1, 0, 0, 0, 6916, 6908, 1, 0, 0, 0, 6916, 6911, 1, 0, 0, 0, 6917, 6920, 1, 0, 0, 0, 6918, 6916, 1, 0, 0, 0, 6918, 6919, 1, 0, 0, 0, 6919, 677, 1, 0, 0, 0, 6920, 6918, 1, 0, 0, 0, 6921, 6922, 6, 339, -1, 0, 6922, 6923, 7, 95, 0, 0, 6923, 7010, 3, 556, 278, 0, 6924, 6927, 5, 35, 0, 0, 6925, 6928, 3, 556, 278, 0, 6926, 6928, 3, 742, 371, 0, 6927, 6925, 1, 0, 0, 0, 6927, 6926, 1, 0, 0, 0, 6928, 7010, 1, 0, 0, 0, 6929, 6930, 5, 28, 0, 0, 6930, 7010, 3, 756, 378, 0, 6931, 6932, 5, 470, 0, 0, 6932, 7010, 3, 528, 264, 0, 6933, 7010, 5, 574, 0, 0, 6934, 7010, 5, 576, 0, 0, 6935, 7010, 5, 566, 0, 0, 6936, 7010, 5, 570, 0, 0, 6937, 6947, 3, 814, 407, 0, 6938, 6948, 3, 816, 408, 0, 6939, 6940, 5, 2, 0, 0, 6940, 6942, 3, 738, 369, 0, 6941, 6943, 3, 580, 290, 0, 6942, 6941, 1, 0, 0, 0, 6942, 6943, 1, 0, 0, 0, 6943, 6944, 1, 0, 0, 0, 6944, 6945, 5, 3, 0, 0, 6945, 6946, 3, 816, 408, 0, 6946, 6948, 1, 0, 0, 0, 6947, 6938, 1, 0, 0, 0, 6947, 6939, 1, 0, 0, 0, 6948, 7010, 1, 0, 0, 0, 6949, 6951, 3, 652, 326, 0, 6950, 6949, 1, 0, 0, 0, 6950, 6951, 1, 0, 0, 0, 6951, 6952, 1, 0, 0, 0, 6952, 7010, 3, 816, 408, 0, 6953, 6961, 5, 403, 0, 0, 6954, 6956, 3, 816, 408, 0, 6955, 6957, 3, 664, 332, 0, 6956, 6955, 1, 0, 0, 0, 6956, 6957, 1, 0, 0, 0, 6957, 6962, 1, 0, 0, 0, 6958, 6959, 3, 656, 328, 0, 6959, 6960, 3, 816, 408, 0, 6960, 6962, 1, 0, 0, 0, 6961, 6954, 1, 0, 0, 0, 6961, 6958, 1, 0, 0, 0, 6962, 7010, 1, 0, 0, 0, 6963, 7010, 5, 96, 0, 0, 6964, 7010, 5, 60, 0, 0, 6965, 7010, 5, 78, 0, 0, 6966, 7010, 5, 577, 0, 0, 6967, 6968, 5, 2, 0, 0, 6968, 6969, 3, 670, 335, 0, 6969, 6970, 5, 3, 0, 0, 6970, 6971, 3, 756, 378, 0, 6971, 7010, 1, 0, 0, 0, 6972, 6974, 5, 40, 0, 0, 6973, 6975, 3, 670, 335, 0, 6974, 6973, 1, 0, 0, 0, 6974, 6975, 1, 0, 0, 0, 6975, 6977, 1, 0, 0, 0, 6976, 6978, 3, 750, 375, 0, 6977, 6976, 1, 0, 0, 0, 6978, 6979, 1, 0, 0, 0, 6979, 6977, 1, 0, 0, 0, 6979, 6980, 1, 0, 0, 0, 6980, 6983, 1, 0, 0, 0, 6981, 6982, 5, 58, 0, 0, 6982, 6984, 3, 670, 335, 0, 6983, 6981, 1, 0, 0, 0, 6983, 6984, 1, 0, 0, 0, 6984, 6985, 1, 0, 0, 0, 6985, 6986, 5, 454, 0, 0, 6986, 7010, 1, 0, 0, 0, 6987, 7010, 3, 682, 341, 0, 6988, 6990, 3, 556, 278, 0, 6989, 6991, 3, 754, 377, 0, 6990, 6989, 1, 0, 0, 0, 6990, 6991, 1, 0, 0, 0, 6991, 7010, 1, 0, 0, 0, 6992, 7010, 3, 714, 357, 0, 6993, 6994, 5, 2, 0, 0, 6994, 6995, 3, 670, 335, 0, 6995, 6996, 5, 6, 0, 0, 6996, 6997, 3, 728, 364, 0, 6997, 6998, 5, 3, 0, 0, 6998, 7010, 1, 0, 0, 0, 6999, 7000, 3, 712, 356, 0, 7000, 7001, 5, 125, 0, 0, 7001, 7002, 3, 712, 356, 0, 7002, 7010, 1, 0, 0, 0, 7003, 7010, 3, 808, 404, 0, 7004, 7005, 7, 30, 0, 0, 7005, 7010, 3, 678, 339, 5, 7006, 7007, 3, 722, 361, 0, 7007, 7008, 3, 678, 339, 2, 7008, 7010, 1, 0, 0, 0, 7009, 6921, 1, 0, 0, 0, 7009, 6924, 1, 0, 0, 0, 7009, 6929, 1, 0, 0, 0, 7009, 6931, 1, 0, 0, 0, 7009, 6933, 1, 0, 0, 0, 7009, 6934, 1, 0, 0, 0, 7009, 6935, 1, 0, 0, 0, 7009, 6936, 1, 0, 0, 0, 7009, 6937, 1, 0, 0, 0, 7009, 6950, 1, 0, 0, 0, 7009, 6953, 1, 0, 0, 0, 7009, 6963, 1, 0, 0, 0, 7009, 6964, 1, 0, 0, 0, 7009, 6965, 1, 0, 0, 0, 7009, 6966, 1, 0, 0, 0, 7009, 6967, 1, 0, 0, 0, 7009, 6972, 1, 0, 0, 0, 7009, 6987, 1, 0, 0, 0, 7009, 6988, 1, 0, 0, 0, 7009, 6992, 1, 0, 0, 0, 7009, 6993, 1, 0, 0, 0, 7009, 6999, 1, 0, 0, 0, 7009, 7003, 1, 0, 0, 0, 7009, 7004, 1, 0, 0, 0, 7009, 7006, 1, 0, 0, 0, 7010, 7038, 1, 0, 0, 0, 7011, 7012, 10, 3, 0, 0, 7012, 7013, 3, 720, 360, 0, 7013, 7014, 3, 678, 339, 4, 7014, 7037, 1, 0, 0, 0, 7015, 7016, 10, 6, 0, 0, 7016, 7017, 5, 26, 0, 0, 7017, 7037, 3, 648, 324, 0, 7018, 7019, 10, 4, 0, 0, 7019, 7021, 3, 722, 361, 0, 7020, 7022, 3, 678, 339, 0, 7021, 7020, 1, 0, 0, 0, 7021, 7022, 1, 0, 0, 0, 7022, 7037, 1, 0, 0, 0, 7023, 7024, 10, 1, 0, 0, 7024, 7026, 5, 116, 0, 0, 7025, 7027, 5, 77, 0, 0, 7026, 7025, 1, 0, 0, 0, 7026, 7027, 1, 0, 0, 0, 7027, 7034, 1, 0, 0, 0, 7028, 7029, 5, 56, 0, 0, 7029, 7030, 5, 64, 0, 0, 7030, 7035, 3, 678, 339, 0, 7031, 7032, 5, 275, 0, 0, 7032, 7035, 3, 522, 261, 0, 7033, 7035, 5, 188, 0, 0, 7034, 7028, 1, 0, 0, 0, 7034, 7031, 1, 0, 0, 0, 7034, 7033, 1, 0, 0, 0, 7035, 7037, 1, 0, 0, 0, 7036, 7011, 1, 0, 0, 0, 7036, 7015, 1, 0, 0, 0, 7036, 7018, 1, 0, 0, 0, 7036, 7023, 1, 0, 0, 0, 7037, 7040, 1, 0, 0, 0, 7038, 7036, 1, 0, 0, 0, 7038, 7039, 1, 0, 0, 0, 7039, 679, 1, 0, 0, 0, 7040, 7038, 1, 0, 0, 0, 7041, 7042, 3, 814, 407, 0, 7042, 7063, 5, 2, 0, 0, 7043, 7047, 3, 738, 369, 0, 7044, 7045, 5, 6, 0, 0, 7045, 7046, 5, 101, 0, 0, 7046, 7048, 3, 740, 370, 0, 7047, 7044, 1, 0, 0, 0, 7047, 7048, 1, 0, 0, 0, 7048, 7050, 1, 0, 0, 0, 7049, 7051, 3, 580, 290, 0, 7050, 7049, 1, 0, 0, 0, 7050, 7051, 1, 0, 0, 0, 7051, 7064, 1, 0, 0, 0, 7052, 7053, 5, 101, 0, 0, 7053, 7055, 3, 740, 370, 0, 7054, 7056, 3, 580, 290, 0, 7055, 7054, 1, 0, 0, 0, 7055, 7056, 1, 0, 0, 0, 7056, 7064, 1, 0, 0, 0, 7057, 7058, 7, 81, 0, 0, 7058, 7060, 3, 738, 369, 0, 7059, 7061, 3, 580, 290, 0, 7060, 7059, 1, 0, 0, 0, 7060, 7061, 1, 0, 0, 0, 7061, 7064, 1, 0, 0, 0, 7062, 7064, 5, 9, 0, 0, 7063, 7043, 1, 0, 0, 0, 7063, 7052, 1, 0, 0, 0, 7063, 7057, 1, 0, 0, 0, 7063, 7062, 1, 0, 0, 0, 7063, 7064, 1, 0, 0, 0, 7064, 7065, 1, 0, 0, 0, 7065, 7066, 5, 3, 0, 0, 7066, 681, 1, 0, 0, 0, 7067, 7074, 3, 680, 340, 0, 7068, 7069, 5, 479, 0, 0, 7069, 7070, 5, 66, 0, 0, 7070, 7071, 5, 2, 0, 0, 7071, 7072, 3, 580, 290, 0, 7072, 7073, 5, 3, 0, 0, 7073, 7075, 1, 0, 0, 0, 7074, 7068, 1, 0, 0, 0, 7074, 7075, 1, 0, 0, 0, 7075, 7082, 1, 0, 0, 0, 7076, 7077, 5, 480, 0, 0, 7077, 7078, 5, 2, 0, 0, 7078, 7079, 5, 103, 0, 0, 7079, 7080, 3, 670, 335, 0, 7080, 7081, 5, 3, 0, 0, 7081, 7083, 1, 0, 0, 0, 7082, 7076, 1, 0, 0, 0, 7082, 7083, 1, 0, 0, 0, 7083, 7089, 1, 0, 0, 0, 7084, 7087, 5, 124, 0, 0, 7085, 7088, 3, 706, 353, 0, 7086, 7088, 3, 826, 413, 0, 7087, 7085, 1, 0, 0, 0, 7087, 7086, 1, 0, 0, 0, 7088, 7090, 1, 0, 0, 0, 7089, 7084, 1, 0, 0, 0, 7089, 7090, 1, 0, 0, 0, 7090, 7093, 1, 0, 0, 0, 7091, 7093, 3, 686, 343, 0, 7092, 7067, 1, 0, 0, 0, 7092, 7091, 1, 0, 0, 0, 7093, 683, 1, 0, 0, 0, 7094, 7097, 3, 680, 340, 0, 7095, 7097, 3, 686, 343, 0, 7096, 7094, 1, 0, 0, 0, 7096, 7095, 1, 0, 0, 0, 7097, 685, 1, 0, 0, 0, 7098, 7099, 5, 108, 0, 0, 7099, 7100, 5, 62, 0, 0, 7100, 7101, 5, 2, 0, 0, 7101, 7102, 3, 670, 335, 0, 7102, 7103, 5, 3, 0, 0, 7103, 7273, 1, 0, 0, 0, 7104, 7273, 5, 48, 0, 0, 7105, 7107, 7, 96, 0, 0, 7106, 7108, 3, 656, 328, 0, 7107, 7106, 1, 0, 0, 0, 7107, 7108, 1, 0, 0, 0, 7108, 7273, 1, 0, 0, 0, 7109, 7273, 5, 49, 0, 0, 7110, 7273, 5, 52, 0, 0, 7111, 7273, 5, 89, 0, 0, 7112, 7273, 5, 99, 0, 0, 7113, 7273, 5, 47, 0, 0, 7114, 7273, 5, 111, 0, 0, 7115, 7116, 7, 97, 0, 0, 7116, 7117, 5, 2, 0, 0, 7117, 7118, 3, 670, 335, 0, 7118, 7119, 5, 36, 0, 0, 7119, 7120, 3, 648, 324, 0, 7120, 7121, 5, 3, 0, 0, 7121, 7273, 1, 0, 0, 0, 7122, 7123, 5, 397, 0, 0, 7123, 7128, 5, 2, 0, 0, 7124, 7125, 3, 744, 372, 0, 7125, 7126, 5, 64, 0, 0, 7126, 7127, 3, 670, 335, 0, 7127, 7129, 1, 0, 0, 0, 7128, 7124, 1, 0, 0, 0, 7128, 7129, 1, 0, 0, 0, 7129, 7130, 1, 0, 0, 0, 7130, 7273, 5, 3, 0, 0, 7131, 7132, 5, 489, 0, 0, 7132, 7133, 5, 2, 0, 0, 7133, 7136, 3, 670, 335, 0, 7134, 7135, 5, 6, 0, 0, 7135, 7137, 3, 746, 373, 0, 7136, 7134, 1, 0, 0, 0, 7136, 7137, 1, 0, 0, 0, 7137, 7138, 1, 0, 0, 0, 7138, 7139, 5, 3, 0, 0, 7139, 7273, 1, 0, 0, 0, 7140, 7141, 5, 410, 0, 0, 7141, 7142, 5, 2, 0, 0, 7142, 7143, 3, 670, 335, 0, 7143, 7144, 5, 84, 0, 0, 7144, 7145, 3, 670, 335, 0, 7145, 7146, 5, 64, 0, 0, 7146, 7149, 3, 670, 335, 0, 7147, 7148, 5, 62, 0, 0, 7148, 7150, 3, 670, 335, 0, 7149, 7147, 1, 0, 0, 0, 7149, 7150, 1, 0, 0, 0, 7150, 7151, 1, 0, 0, 0, 7151, 7152, 5, 3, 0, 0, 7152, 7273, 1, 0, 0, 0, 7153, 7154, 5, 411, 0, 0, 7154, 7159, 5, 2, 0, 0, 7155, 7156, 3, 678, 339, 0, 7156, 7157, 5, 68, 0, 0, 7157, 7158, 3, 678, 339, 0, 7158, 7160, 1, 0, 0, 0, 7159, 7155, 1, 0, 0, 0, 7159, 7160, 1, 0, 0, 0, 7160, 7161, 1, 0, 0, 0, 7161, 7273, 5, 3, 0, 0, 7162, 7163, 5, 417, 0, 0, 7163, 7165, 5, 2, 0, 0, 7164, 7166, 3, 748, 374, 0, 7165, 7164, 1, 0, 0, 0, 7165, 7166, 1, 0, 0, 0, 7166, 7167, 1, 0, 0, 0, 7167, 7273, 5, 3, 0, 0, 7168, 7169, 5, 421, 0, 0, 7169, 7171, 5, 2, 0, 0, 7170, 7172, 7, 98, 0, 0, 7171, 7170, 1, 0, 0, 0, 7171, 7172, 1, 0, 0, 0, 7172, 7177, 1, 0, 0, 0, 7173, 7175, 3, 670, 335, 0, 7174, 7173, 1, 0, 0, 0, 7174, 7175, 1, 0, 0, 0, 7175, 7176, 1, 0, 0, 0, 7176, 7178, 5, 64, 0, 0, 7177, 7174, 1, 0, 0, 0, 7177, 7178, 1, 0, 0, 0, 7178, 7179, 1, 0, 0, 0, 7179, 7180, 3, 728, 364, 0, 7180, 7181, 1, 0, 0, 0, 7181, 7182, 5, 3, 0, 0, 7182, 7273, 1, 0, 0, 0, 7183, 7184, 5, 408, 0, 0, 7184, 7185, 5, 2, 0, 0, 7185, 7186, 3, 670, 335, 0, 7186, 7187, 5, 6, 0, 0, 7187, 7188, 3, 670, 335, 0, 7188, 7189, 5, 3, 0, 0, 7189, 7273, 1, 0, 0, 0, 7190, 7191, 7, 99, 0, 0, 7191, 7273, 3, 528, 264, 0, 7192, 7193, 5, 426, 0, 0, 7193, 7194, 5, 2, 0, 0, 7194, 7195, 5, 266, 0, 0, 7195, 7205, 3, 832, 416, 0, 7196, 7203, 5, 6, 0, 0, 7197, 7198, 5, 424, 0, 0, 7198, 7199, 5, 2, 0, 0, 7199, 7200, 3, 688, 344, 0, 7200, 7201, 5, 3, 0, 0, 7201, 7204, 1, 0, 0, 0, 7202, 7204, 3, 728, 364, 0, 7203, 7197, 1, 0, 0, 0, 7203, 7202, 1, 0, 0, 0, 7204, 7206, 1, 0, 0, 0, 7205, 7196, 1, 0, 0, 0, 7205, 7206, 1, 0, 0, 0, 7206, 7207, 1, 0, 0, 0, 7207, 7208, 5, 3, 0, 0, 7208, 7273, 1, 0, 0, 0, 7209, 7210, 5, 427, 0, 0, 7210, 7211, 5, 2, 0, 0, 7211, 7212, 3, 678, 339, 0, 7212, 7213, 3, 694, 347, 0, 7213, 7214, 5, 3, 0, 0, 7214, 7273, 1, 0, 0, 0, 7215, 7216, 5, 428, 0, 0, 7216, 7217, 5, 2, 0, 0, 7217, 7218, 3, 688, 344, 0, 7218, 7219, 5, 3, 0, 0, 7219, 7273, 1, 0, 0, 0, 7220, 7221, 5, 429, 0, 0, 7221, 7222, 5, 2, 0, 0, 7222, 7223, 3, 692, 346, 0, 7223, 7226, 3, 670, 335, 0, 7224, 7225, 7, 100, 0, 0, 7225, 7227, 5, 378, 0, 0, 7226, 7224, 1, 0, 0, 0, 7226, 7227, 1, 0, 0, 0, 7227, 7228, 1, 0, 0, 0, 7228, 7229, 5, 3, 0, 0, 7229, 7273, 1, 0, 0, 0, 7230, 7231, 5, 430, 0, 0, 7231, 7232, 5, 2, 0, 0, 7232, 7233, 5, 266, 0, 0, 7233, 7236, 3, 832, 416, 0, 7234, 7235, 5, 6, 0, 0, 7235, 7237, 3, 670, 335, 0, 7236, 7234, 1, 0, 0, 0, 7236, 7237, 1, 0, 0, 0, 7237, 7238, 1, 0, 0, 0, 7238, 7239, 5, 3, 0, 0, 7239, 7273, 1, 0, 0, 0, 7240, 7241, 5, 431, 0, 0, 7241, 7242, 5, 2, 0, 0, 7242, 7243, 5, 383, 0, 0, 7243, 7244, 3, 670, 335, 0, 7244, 7245, 5, 6, 0, 0, 7245, 7249, 5, 375, 0, 0, 7246, 7247, 5, 269, 0, 0, 7247, 7250, 5, 450, 0, 0, 7248, 7250, 3, 670, 335, 0, 7249, 7246, 1, 0, 0, 0, 7249, 7248, 1, 0, 0, 0, 7250, 7260, 1, 0, 0, 0, 7251, 7252, 5, 6, 0, 0, 7252, 7258, 5, 339, 0, 0, 7253, 7255, 5, 269, 0, 0, 7254, 7253, 1, 0, 0, 0, 7254, 7255, 1, 0, 0, 0, 7255, 7256, 1, 0, 0, 0, 7256, 7259, 5, 450, 0, 0, 7257, 7259, 5, 385, 0, 0, 7258, 7254, 1, 0, 0, 0, 7258, 7257, 1, 0, 0, 0, 7259, 7261, 1, 0, 0, 0, 7260, 7251, 1, 0, 0, 0, 7260, 7261, 1, 0, 0, 0, 7261, 7262, 1, 0, 0, 0, 7262, 7263, 5, 3, 0, 0, 7263, 7273, 1, 0, 0, 0, 7264, 7265, 5, 432, 0, 0, 7265, 7266, 5, 2, 0, 0, 7266, 7267, 3, 692, 346, 0, 7267, 7268, 3, 670, 335, 0, 7268, 7269, 5, 36, 0, 0, 7269, 7270, 3, 650, 325, 0, 7270, 7271, 5, 3, 0, 0, 7271, 7273, 1, 0, 0, 0, 7272, 7098, 1, 0, 0, 0, 7272, 7104, 1, 0, 0, 0, 7272, 7105, 1, 0, 0, 0, 7272, 7109, 1, 0, 0, 0, 7272, 7110, 1, 0, 0, 0, 7272, 7111, 1, 0, 0, 0, 7272, 7112, 1, 0, 0, 0, 7272, 7113, 1, 0, 0, 0, 7272, 7114, 1, 0, 0, 0, 7272, 7115, 1, 0, 0, 0, 7272, 7122, 1, 0, 0, 0, 7272, 7131, 1, 0, 0, 0, 7272, 7140, 1, 0, 0, 0, 7272, 7153, 1, 0, 0, 0, 7272, 7162, 1, 0, 0, 0, 7272, 7168, 1, 0, 0, 0, 7272, 7183, 1, 0, 0, 0, 7272, 7190, 1, 0, 0, 0, 7272, 7192, 1, 0, 0, 0, 7272, 7209, 1, 0, 0, 0, 7272, 7215, 1, 0, 0, 0, 7272, 7220, 1, 0, 0, 0, 7272, 7230, 1, 0, 0, 0, 7272, 7240, 1, 0, 0, 0, 7272, 7264, 1, 0, 0, 0, 7273, 687, 1, 0, 0, 0, 7274, 7279, 3, 690, 345, 0, 7275, 7276, 5, 6, 0, 0, 7276, 7278, 3, 690, 345, 0, 7277, 7275, 1, 0, 0, 0, 7278, 7281, 1, 0, 0, 0, 7279, 7277, 1, 0, 0, 0, 7279, 7280, 1, 0, 0, 0, 7280, 689, 1, 0, 0, 0, 7281, 7279, 1, 0, 0, 0, 7282, 7285, 3, 670, 335, 0, 7283, 7284, 5, 36, 0, 0, 7284, 7286, 3, 832, 416, 0, 7285, 7283, 1, 0, 0, 0, 7285, 7286, 1, 0, 0, 0, 7286, 691, 1, 0, 0, 0, 7287, 7288, 7, 101, 0, 0, 7288, 693, 1, 0, 0, 0, 7289, 7291, 5, 286, 0, 0, 7290, 7292, 3, 696, 348, 0, 7291, 7290, 1, 0, 0, 0, 7291, 7292, 1, 0, 0, 0, 7292, 7293, 1, 0, 0, 0, 7293, 7295, 3, 678, 339, 0, 7294, 7296, 3, 696, 348, 0, 7295, 7294, 1, 0, 0, 0, 7295, 7296, 1, 0, 0, 0, 7296, 695, 1, 0, 0, 0, 7297, 7298, 5, 147, 0, 0, 7298, 7299, 7, 102, 0, 0, 7299, 697, 1, 0, 0, 0, 7300, 7301, 5, 104, 0, 0, 7301, 7306, 3, 702, 351, 0, 7302, 7303, 5, 6, 0, 0, 7303, 7305, 3, 702, 351, 0, 7304, 7302, 1, 0, 0, 0, 7305, 7308, 1, 0, 0, 0, 7306, 7304, 1, 0, 0, 0, 7306, 7307, 1, 0, 0, 0, 7307, 699, 1, 0, 0, 0, 7308, 7306, 1, 0, 0, 0, 7309, 7310, 5, 67, 0, 0, 7310, 7311, 3, 670, 335, 0, 7311, 701, 1, 0, 0, 0, 7312, 7313, 3, 826, 413, 0, 7313, 7314, 5, 36, 0, 0, 7314, 7315, 3, 706, 353, 0, 7315, 703, 1, 0, 0, 0, 7316, 7319, 5, 124, 0, 0, 7317, 7320, 3, 706, 353, 0, 7318, 7320, 3, 826, 413, 0, 7319, 7317, 1, 0, 0, 0, 7319, 7318, 1, 0, 0, 0, 7320, 705, 1, 0, 0, 0, 7321, 7323, 5, 2, 0, 0, 7322, 7324, 3, 826, 413, 0, 7323, 7322, 1, 0, 0, 0, 7323, 7324, 1, 0, 0, 0, 7324, 7328, 1, 0, 0, 0, 7325, 7326, 5, 285, 0, 0, 7326, 7327, 5, 147, 0, 0, 7327, 7329, 3, 728, 364, 0, 7328, 7325, 1, 0, 0, 0, 7328, 7329, 1, 0, 0, 0, 7329, 7331, 1, 0, 0, 0, 7330, 7332, 3, 580, 290, 0, 7331, 7330, 1, 0, 0, 0, 7331, 7332, 1, 0, 0, 0, 7332, 7334, 1, 0, 0, 0, 7333, 7335, 3, 708, 354, 0, 7334, 7333, 1, 0, 0, 0, 7334, 7335, 1, 0, 0, 0, 7335, 7336, 1, 0, 0, 0, 7336, 7337, 5, 3, 0, 0, 7337, 707, 1, 0, 0, 0, 7338, 7343, 7, 103, 0, 0, 7339, 7340, 5, 387, 0, 0, 7340, 7341, 3, 710, 355, 0, 7341, 7342, 5, 33, 0, 0, 7342, 7344, 1, 0, 0, 0, 7343, 7339, 1, 0, 0, 0, 7343, 7344, 1, 0, 0, 0, 7344, 7345, 1, 0, 0, 0, 7345, 7346, 3, 710, 355, 0, 7346, 7356, 1, 0, 0, 0, 7347, 7354, 5, 199, 0, 0, 7348, 7349, 5, 434, 0, 0, 7349, 7355, 5, 414, 0, 0, 7350, 7355, 5, 66, 0, 0, 7351, 7355, 5, 467, 0, 0, 7352, 7353, 5, 269, 0, 0, 7353, 7355, 5, 482, 0, 0, 7354, 7348, 1, 0, 0, 0, 7354, 7350, 1, 0, 0, 0, 7354, 7351, 1, 0, 0, 0, 7354, 7352, 1, 0, 0, 0, 7355, 7357, 1, 0, 0, 0, 7356, 7347, 1, 0, 0, 0, 7356, 7357, 1, 0, 0, 0, 7357, 709, 1, 0, 0, 0, 7358, 7361, 5, 362, 0, 0, 7359, 7361, 3, 670, 335, 0, 7360, 7358, 1, 0, 0, 0, 7360, 7359, 1, 0, 0, 0, 7361, 7362, 1, 0, 0, 0, 7362, 7366, 7, 104, 0, 0, 7363, 7364, 5, 434, 0, 0, 7364, 7366, 5, 414, 0, 0, 7365, 7360, 1, 0, 0, 0, 7365, 7363, 1, 0, 0, 0, 7366, 711, 1, 0, 0, 0, 7367, 7375, 3, 714, 357, 0, 7368, 7369, 5, 2, 0, 0, 7369, 7370, 3, 728, 364, 0, 7370, 7371, 5, 6, 0, 0, 7371, 7372, 3, 670, 335, 0, 7372, 7373, 5, 3, 0, 0, 7373, 7375, 1, 0, 0, 0, 7374, 7367, 1, 0, 0, 0, 7374, 7368, 1, 0, 0, 0, 7375, 713, 1, 0, 0, 0, 7376, 7377, 5, 414, 0, 0, 7377, 7379, 5, 2, 0, 0, 7378, 7380, 3, 728, 364, 0, 7379, 7378, 1, 0, 0, 0, 7379, 7380, 1, 0, 0, 0, 7380, 7381, 1, 0, 0, 0, 7381, 7382, 5, 3, 0, 0, 7382, 715, 1, 0, 0, 0, 7383, 7384, 7, 105, 0, 0, 7384, 717, 1, 0, 0, 0, 7385, 7388, 5, 29, 0, 0, 7386, 7388, 3, 720, 360, 0, 7387, 7385, 1, 0, 0, 0, 7387, 7386, 1, 0, 0, 0, 7388, 719, 1, 0, 0, 0, 7389, 7390, 7, 106, 0, 0, 7390, 721, 1, 0, 0, 0, 7391, 7398, 5, 29, 0, 0, 7392, 7393, 5, 278, 0, 0, 7393, 7394, 5, 2, 0, 0, 7394, 7395, 3, 408, 204, 0, 7395, 7396, 5, 3, 0, 0, 7396, 7398, 1, 0, 0, 0, 7397, 7391, 1, 0, 0, 0, 7397, 7392, 1, 0, 0, 0, 7398, 723, 1, 0, 0, 0, 7399, 7406, 3, 718, 359, 0, 7400, 7401, 5, 278, 0, 0, 7401, 7402, 5, 2, 0, 0, 7402, 7403, 3, 408, 204, 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, 7413, 3, 724, 362, 0, 7408, 7410, 5, 77, 0, 0, 7409, 7408, 1, 0, 0, 0, 7409, 7410, 1, 0, 0, 0, 7410, 7411, 1, 0, 0, 0, 7411, 7413, 7, 107, 0, 0, 7412, 7407, 1, 0, 0, 0, 7412, 7409, 1, 0, 0, 0, 7413, 727, 1, 0, 0, 0, 7414, 7419, 3, 670, 335, 0, 7415, 7416, 5, 6, 0, 0, 7416, 7418, 3, 670, 335, 0, 7417, 7415, 1, 0, 0, 0, 7418, 7421, 1, 0, 0, 0, 7419, 7417, 1, 0, 0, 0, 7419, 7420, 1, 0, 0, 0, 7420, 729, 1, 0, 0, 0, 7421, 7419, 1, 0, 0, 0, 7422, 7423, 3, 670, 335, 0, 7423, 731, 1, 0, 0, 0, 7424, 7425, 3, 806, 403, 0, 7425, 733, 1, 0, 0, 0, 7426, 7427, 5, 2, 0, 0, 7427, 7428, 3, 670, 335, 0, 7428, 7429, 5, 3, 0, 0, 7429, 7432, 1, 0, 0, 0, 7430, 7432, 3, 806, 403, 0, 7431, 7426, 1, 0, 0, 0, 7431, 7430, 1, 0, 0, 0, 7432, 735, 1, 0, 0, 0, 7433, 7436, 3, 670, 335, 0, 7434, 7436, 3, 806, 403, 0, 7435, 7433, 1, 0, 0, 0, 7435, 7434, 1, 0, 0, 0, 7436, 737, 1, 0, 0, 0, 7437, 7442, 3, 740, 370, 0, 7438, 7439, 5, 6, 0, 0, 7439, 7441, 3, 740, 370, 0, 7440, 7438, 1, 0, 0, 0, 7441, 7444, 1, 0, 0, 0, 7442, 7440, 1, 0, 0, 0, 7442, 7443, 1, 0, 0, 0, 7443, 739, 1, 0, 0, 0, 7444, 7442, 1, 0, 0, 0, 7445, 7453, 3, 806, 403, 0, 7446, 7453, 3, 670, 335, 0, 7447, 7450, 3, 828, 414, 0, 7448, 7449, 7, 108, 0, 0, 7449, 7451, 3, 670, 335, 0, 7450, 7448, 1, 0, 0, 0, 7450, 7451, 1, 0, 0, 0, 7451, 7453, 1, 0, 0, 0, 7452, 7445, 1, 0, 0, 0, 7452, 7446, 1, 0, 0, 0, 7452, 7447, 1, 0, 0, 0, 7453, 741, 1, 0, 0, 0, 7454, 7464, 5, 4, 0, 0, 7455, 7465, 3, 728, 364, 0, 7456, 7461, 3, 742, 371, 0, 7457, 7458, 5, 6, 0, 0, 7458, 7460, 3, 742, 371, 0, 7459, 7457, 1, 0, 0, 0, 7460, 7463, 1, 0, 0, 0, 7461, 7459, 1, 0, 0, 0, 7461, 7462, 1, 0, 0, 0, 7462, 7465, 1, 0, 0, 0, 7463, 7461, 1, 0, 0, 0, 7464, 7455, 1, 0, 0, 0, 7464, 7456, 1, 0, 0, 0, 7464, 7465, 1, 0, 0, 0, 7465, 7466, 1, 0, 0, 0, 7466, 7467, 5, 5, 0, 0, 7467, 743, 1, 0, 0, 0, 7468, 7477, 3, 834, 417, 0, 7469, 7477, 5, 384, 0, 0, 7470, 7477, 5, 264, 0, 0, 7471, 7477, 5, 176, 0, 0, 7472, 7477, 5, 218, 0, 0, 7473, 7477, 5, 261, 0, 0, 7474, 7477, 5, 326, 0, 0, 7475, 7477, 3, 816, 408, 0, 7476, 7468, 1, 0, 0, 0, 7476, 7469, 1, 0, 0, 0, 7476, 7470, 1, 0, 0, 0, 7476, 7471, 1, 0, 0, 0, 7476, 7472, 1, 0, 0, 0, 7476, 7473, 1, 0, 0, 0, 7476, 7474, 1, 0, 0, 0, 7476, 7475, 1, 0, 0, 0, 7477, 745, 1, 0, 0, 0, 7478, 7479, 7, 109, 0, 0, 7479, 747, 1, 0, 0, 0, 7480, 7481, 3, 670, 335, 0, 7481, 7482, 5, 64, 0, 0, 7482, 7485, 3, 670, 335, 0, 7483, 7484, 5, 62, 0, 0, 7484, 7486, 3, 670, 335, 0, 7485, 7483, 1, 0, 0, 0, 7485, 7486, 1, 0, 0, 0, 7486, 7502, 1, 0, 0, 0, 7487, 7488, 3, 670, 335, 0, 7488, 7489, 5, 62, 0, 0, 7489, 7492, 3, 670, 335, 0, 7490, 7491, 5, 64, 0, 0, 7491, 7493, 3, 670, 335, 0, 7492, 7490, 1, 0, 0, 0, 7492, 7493, 1, 0, 0, 0, 7493, 7502, 1, 0, 0, 0, 7494, 7495, 3, 670, 335, 0, 7495, 7496, 5, 127, 0, 0, 7496, 7497, 3, 670, 335, 0, 7497, 7498, 5, 197, 0, 0, 7498, 7499, 3, 670, 335, 0, 7499, 7502, 1, 0, 0, 0, 7500, 7502, 3, 728, 364, 0, 7501, 7480, 1, 0, 0, 0, 7501, 7487, 1, 0, 0, 0, 7501, 7494, 1, 0, 0, 0, 7501, 7500, 1, 0, 0, 0, 7502, 749, 1, 0, 0, 0, 7503, 7504, 5, 102, 0, 0, 7504, 7505, 3, 670, 335, 0, 7505, 7506, 5, 93, 0, 0, 7506, 7507, 3, 670, 335, 0, 7507, 751, 1, 0, 0, 0, 7508, 7511, 5, 11, 0, 0, 7509, 7512, 3, 832, 416, 0, 7510, 7512, 5, 9, 0, 0, 7511, 7509, 1, 0, 0, 0, 7511, 7510, 1, 0, 0, 0, 7512, 7526, 1, 0, 0, 0, 7513, 7522, 5, 4, 0, 0, 7514, 7523, 3, 670, 335, 0, 7515, 7517, 3, 670, 335, 0, 7516, 7515, 1, 0, 0, 0, 7516, 7517, 1, 0, 0, 0, 7517, 7518, 1, 0, 0, 0, 7518, 7520, 5, 8, 0, 0, 7519, 7521, 3, 670, 335, 0, 7520, 7519, 1, 0, 0, 0, 7520, 7521, 1, 0, 0, 0, 7521, 7523, 1, 0, 0, 0, 7522, 7514, 1, 0, 0, 0, 7522, 7516, 1, 0, 0, 0, 7523, 7524, 1, 0, 0, 0, 7524, 7526, 5, 5, 0, 0, 7525, 7508, 1, 0, 0, 0, 7525, 7513, 1, 0, 0, 0, 7526, 753, 1, 0, 0, 0, 7527, 7529, 3, 752, 376, 0, 7528, 7527, 1, 0, 0, 0, 7529, 7530, 1, 0, 0, 0, 7530, 7528, 1, 0, 0, 0, 7530, 7531, 1, 0, 0, 0, 7531, 755, 1, 0, 0, 0, 7532, 7534, 3, 752, 376, 0, 7533, 7532, 1, 0, 0, 0, 7534, 7537, 1, 0, 0, 0, 7535, 7533, 1, 0, 0, 0, 7535, 7536, 1, 0, 0, 0, 7536, 757, 1, 0, 0, 0, 7537, 7535, 1, 0, 0, 0, 7538, 7543, 3, 760, 380, 0, 7539, 7540, 5, 6, 0, 0, 7540, 7542, 3, 760, 380, 0, 7541, 7539, 1, 0, 0, 0, 7542, 7545, 1, 0, 0, 0, 7543, 7541, 1, 0, 0, 0, 7543, 7544, 1, 0, 0, 0, 7544, 759, 1, 0, 0, 0, 7545, 7543, 1, 0, 0, 0, 7546, 7559, 3, 762, 381, 0, 7547, 7550, 3, 732, 366, 0, 7548, 7550, 3, 730, 365, 0, 7549, 7547, 1, 0, 0, 0, 7549, 7548, 1, 0, 0, 0, 7550, 7556, 1, 0, 0, 0, 7551, 7553, 5, 36, 0, 0, 7552, 7551, 1, 0, 0, 0, 7552, 7553, 1, 0, 0, 0, 7553, 7554, 1, 0, 0, 0, 7554, 7557, 3, 834, 417, 0, 7555, 7557, 1, 0, 0, 0, 7556, 7552, 1, 0, 0, 0, 7556, 7555, 1, 0, 0, 0, 7557, 7559, 1, 0, 0, 0, 7558, 7546, 1, 0, 0, 0, 7558, 7549, 1, 0, 0, 0, 7559, 761, 1, 0, 0, 0, 7560, 7561, 3, 826, 413, 0, 7561, 7562, 5, 11, 0, 0, 7562, 7564, 1, 0, 0, 0, 7563, 7560, 1, 0, 0, 0, 7564, 7567, 1, 0, 0, 0, 7565, 7563, 1, 0, 0, 0, 7565, 7566, 1, 0, 0, 0, 7566, 7568, 1, 0, 0, 0, 7567, 7565, 1, 0, 0, 0, 7568, 7569, 5, 9, 0, 0, 7569, 763, 1, 0, 0, 0, 7570, 7575, 3, 784, 392, 0, 7571, 7572, 5, 6, 0, 0, 7572, 7574, 3, 784, 392, 0, 7573, 7571, 1, 0, 0, 0, 7574, 7577, 1, 0, 0, 0, 7575, 7573, 1, 0, 0, 0, 7575, 7576, 1, 0, 0, 0, 7576, 765, 1, 0, 0, 0, 7577, 7575, 1, 0, 0, 0, 7578, 7583, 3, 778, 389, 0, 7579, 7580, 5, 6, 0, 0, 7580, 7582, 3, 778, 389, 0, 7581, 7579, 1, 0, 0, 0, 7582, 7585, 1, 0, 0, 0, 7583, 7581, 1, 0, 0, 0, 7583, 7584, 1, 0, 0, 0, 7584, 767, 1, 0, 0, 0, 7585, 7583, 1, 0, 0, 0, 7586, 7591, 3, 794, 397, 0, 7587, 7588, 5, 6, 0, 0, 7588, 7590, 3, 794, 397, 0, 7589, 7587, 1, 0, 0, 0, 7590, 7593, 1, 0, 0, 0, 7591, 7589, 1, 0, 0, 0, 7591, 7592, 1, 0, 0, 0, 7592, 769, 1, 0, 0, 0, 7593, 7591, 1, 0, 0, 0, 7594, 7599, 3, 792, 396, 0, 7595, 7596, 5, 6, 0, 0, 7596, 7598, 3, 792, 396, 0, 7597, 7595, 1, 0, 0, 0, 7598, 7601, 1, 0, 0, 0, 7599, 7597, 1, 0, 0, 0, 7599, 7600, 1, 0, 0, 0, 7600, 771, 1, 0, 0, 0, 7601, 7599, 1, 0, 0, 0, 7602, 7603, 3, 784, 392, 0, 7603, 773, 1, 0, 0, 0, 7604, 7605, 3, 784, 392, 0, 7605, 775, 1, 0, 0, 0, 7606, 7607, 3, 784, 392, 0, 7607, 777, 1, 0, 0, 0, 7608, 7609, 3, 784, 392, 0, 7609, 779, 1, 0, 0, 0, 7610, 7611, 3, 784, 392, 0, 7611, 781, 1, 0, 0, 0, 7612, 7613, 3, 310, 155, 0, 7613, 783, 1, 0, 0, 0, 7614, 7616, 3, 826, 413, 0, 7615, 7617, 3, 754, 377, 0, 7616, 7615, 1, 0, 0, 0, 7616, 7617, 1, 0, 0, 0, 7617, 785, 1, 0, 0, 0, 7618, 7623, 3, 774, 387, 0, 7619, 7620, 5, 6, 0, 0, 7620, 7622, 3, 774, 387, 0, 7621, 7619, 1, 0, 0, 0, 7622, 7625, 1, 0, 0, 0, 7623, 7621, 1, 0, 0, 0, 7623, 7624, 1, 0, 0, 0, 7624, 787, 1, 0, 0, 0, 7625, 7623, 1, 0, 0, 0, 7626, 7631, 3, 826, 413, 0, 7627, 7628, 5, 6, 0, 0, 7628, 7630, 3, 826, 413, 0, 7629, 7627, 1, 0, 0, 0, 7630, 7633, 1, 0, 0, 0, 7631, 7629, 1, 0, 0, 0, 7631, 7632, 1, 0, 0, 0, 7632, 789, 1, 0, 0, 0, 7633, 7631, 1, 0, 0, 0, 7634, 7635, 3, 310, 155, 0, 7635, 791, 1, 0, 0, 0, 7636, 7637, 3, 310, 155, 0, 7637, 793, 1, 0, 0, 0, 7638, 7639, 3, 310, 155, 0, 7639, 795, 1, 0, 0, 0, 7640, 7641, 3, 826, 413, 0, 7641, 797, 1, 0, 0, 0, 7642, 7643, 3, 826, 413, 0, 7643, 799, 1, 0, 0, 0, 7644, 7649, 3, 828, 414, 0, 7645, 7646, 3, 826, 413, 0, 7646, 7647, 3, 754, 377, 0, 7647, 7649, 1, 0, 0, 0, 7648, 7644, 1, 0, 0, 0, 7648, 7645, 1, 0, 0, 0, 7649, 801, 1, 0, 0, 0, 7650, 7655, 3, 828, 414, 0, 7651, 7652, 3, 826, 413, 0, 7652, 7653, 3, 754, 377, 0, 7653, 7655, 1, 0, 0, 0, 7654, 7650, 1, 0, 0, 0, 7654, 7651, 1, 0, 0, 0, 7655, 803, 1, 0, 0, 0, 7656, 7657, 1, 0, 0, 0, 7657, 805, 1, 0, 0, 0, 7658, 7659, 3, 826, 413, 0, 7659, 7660, 3, 756, 378, 0, 7660, 7670, 1, 0, 0, 0, 7661, 7667, 4, 403, 10, 0, 7662, 7663, 3, 826, 413, 0, 7663, 7664, 5, 11, 0, 0, 7664, 7665, 3, 804, 402, 0, 7665, 7668, 1, 0, 0, 0, 7666, 7668, 3, 804, 402, 0, 7667, 7662, 1, 0, 0, 0, 7667, 7666, 1, 0, 0, 0, 7668, 7670, 1, 0, 0, 0, 7669, 7658, 1, 0, 0, 0, 7669, 7661, 1, 0, 0, 0, 7670, 807, 1, 0, 0, 0, 7671, 7672, 3, 826, 413, 0, 7672, 7673, 3, 756, 378, 0, 7673, 7683, 1, 0, 0, 0, 7674, 7680, 4, 404, 11, 0, 7675, 7676, 3, 826, 413, 0, 7676, 7677, 5, 11, 0, 0, 7677, 7678, 3, 804, 402, 0, 7678, 7681, 1, 0, 0, 0, 7679, 7681, 3, 804, 402, 0, 7680, 7675, 1, 0, 0, 0, 7680, 7679, 1, 0, 0, 0, 7681, 7683, 1, 0, 0, 0, 7682, 7671, 1, 0, 0, 0, 7682, 7674, 1, 0, 0, 0, 7683, 809, 1, 0, 0, 0, 7684, 7685, 3, 826, 413, 0, 7685, 811, 1, 0, 0, 0, 7686, 7691, 3, 828, 414, 0, 7687, 7688, 3, 826, 413, 0, 7688, 7689, 3, 754, 377, 0, 7689, 7691, 1, 0, 0, 0, 7690, 7686, 1, 0, 0, 0, 7690, 7687, 1, 0, 0, 0, 7691, 813, 1, 0, 0, 0, 7692, 7697, 3, 828, 414, 0, 7693, 7694, 3, 826, 413, 0, 7694, 7695, 3, 754, 377, 0, 7695, 7697, 1, 0, 0, 0, 7696, 7692, 1, 0, 0, 0, 7696, 7693, 1, 0, 0, 0, 7697, 815, 1, 0, 0, 0, 7698, 7701, 3, 818, 409, 0, 7699, 7700, 5, 487, 0, 0, 7700, 7702, 3, 818, 409, 0, 7701, 7699, 1, 0, 0, 0, 7701, 7702, 1, 0, 0, 0, 7702, 817, 1, 0, 0, 0, 7703, 7715, 5, 561, 0, 0, 7704, 7715, 5, 563, 0, 0, 7705, 7709, 5, 565, 0, 0, 7706, 7708, 5, 590, 0, 0, 7707, 7706, 1, 0, 0, 0, 7708, 7711, 1, 0, 0, 0, 7709, 7707, 1, 0, 0, 0, 7709, 7710, 1, 0, 0, 0, 7710, 7712, 1, 0, 0, 0, 7711, 7709, 1, 0, 0, 0, 7712, 7715, 5, 591, 0, 0, 7713, 7715, 5, 586, 0, 0, 7714, 7703, 1, 0, 0, 0, 7714, 7704, 1, 0, 0, 0, 7714, 7705, 1, 0, 0, 0, 7714, 7713, 1, 0, 0, 0, 7715, 819, 1, 0, 0, 0, 7716, 7718, 7, 30, 0, 0, 7717, 7716, 1, 0, 0, 0, 7717, 7718, 1, 0, 0, 0, 7718, 7719, 1, 0, 0, 0, 7719, 7720, 5, 574, 0, 0, 7720, 821, 1, 0, 0, 0, 7721, 7727, 3, 830, 415, 0, 7722, 7727, 5, 52, 0, 0, 7723, 7727, 5, 49, 0, 0, 7724, 7727, 5, 89, 0, 0, 7725, 7727, 5, 524, 0, 0, 7726, 7721, 1, 0, 0, 0, 7726, 7722, 1, 0, 0, 0, 7726, 7723, 1, 0, 0, 0, 7726, 7724, 1, 0, 0, 0, 7726, 7725, 1, 0, 0, 0, 7727, 823, 1, 0, 0, 0, 7728, 7733, 3, 822, 411, 0, 7729, 7730, 5, 6, 0, 0, 7730, 7732, 3, 822, 411, 0, 7731, 7729, 1, 0, 0, 0, 7732, 7735, 1, 0, 0, 0, 7733, 7731, 1, 0, 0, 0, 7733, 7734, 1, 0, 0, 0, 7734, 825, 1, 0, 0, 0, 7735, 7733, 1, 0, 0, 0, 7736, 7739, 3, 834, 417, 0, 7737, 7739, 3, 838, 419, 0, 7738, 7736, 1, 0, 0, 0, 7738, 7737, 1, 0, 0, 0, 7739, 827, 1, 0, 0, 0, 7740, 7743, 3, 834, 417, 0, 7741, 7743, 3, 840, 420, 0, 7742, 7740, 1, 0, 0, 0, 7742, 7741, 1, 0, 0, 0, 7743, 829, 1, 0, 0, 0, 7744, 7748, 3, 834, 417, 0, 7745, 7748, 3, 838, 419, 0, 7746, 7748, 3, 840, 420, 0, 7747, 7744, 1, 0, 0, 0, 7747, 7745, 1, 0, 0, 0, 7747, 7746, 1, 0, 0, 0, 7748, 831, 1, 0, 0, 0, 7749, 7754, 3, 834, 417, 0, 7750, 7754, 3, 838, 419, 0, 7751, 7754, 3, 840, 420, 0, 7752, 7754, 3, 842, 421, 0, 7753, 7749, 1, 0, 0, 0, 7753, 7750, 1, 0, 0, 0, 7753, 7751, 1, 0, 0, 0, 7753, 7752, 1, 0, 0, 0, 7754, 833, 1, 0, 0, 0, 7755, 7758, 5, 552, 0, 0, 7756, 7757, 5, 487, 0, 0, 7757, 7759, 3, 818, 409, 0, 7758, 7756, 1, 0, 0, 0, 7758, 7759, 1, 0, 0, 0, 7759, 7767, 1, 0, 0, 0, 7760, 7767, 3, 816, 408, 0, 7761, 7767, 5, 553, 0, 0, 7762, 7767, 5, 557, 0, 0, 7763, 7767, 5, 577, 0, 0, 7764, 7767, 5, 578, 0, 0, 7765, 7767, 3, 836, 418, 0, 7766, 7755, 1, 0, 0, 0, 7766, 7760, 1, 0, 0, 0, 7766, 7761, 1, 0, 0, 0, 7766, 7762, 1, 0, 0, 0, 7766, 7763, 1, 0, 0, 0, 7766, 7764, 1, 0, 0, 0, 7766, 7765, 1, 0, 0, 0, 7767, 835, 1, 0, 0, 0, 7768, 7769, 7, 110, 0, 0, 7769, 837, 1, 0, 0, 0, 7770, 7822, 5, 387, 0, 0, 7771, 7822, 5, 388, 0, 0, 7772, 7822, 3, 658, 329, 0, 7773, 7822, 5, 390, 0, 0, 7774, 7822, 5, 391, 0, 0, 7775, 7822, 3, 660, 330, 0, 7776, 7822, 5, 393, 0, 0, 7777, 7822, 5, 394, 0, 0, 7778, 7822, 5, 395, 0, 0, 7779, 7822, 5, 396, 0, 0, 7780, 7822, 5, 397, 0, 0, 7781, 7822, 5, 398, 0, 0, 7782, 7822, 5, 399, 0, 0, 7783, 7822, 5, 470, 0, 0, 7784, 7822, 5, 400, 0, 0, 7785, 7822, 5, 401, 0, 0, 7786, 7822, 5, 402, 0, 0, 7787, 7822, 5, 403, 0, 0, 7788, 7822, 5, 404, 0, 0, 7789, 7822, 5, 405, 0, 0, 7790, 7822, 5, 406, 0, 0, 7791, 7822, 5, 407, 0, 0, 7792, 7822, 5, 489, 0, 0, 7793, 7822, 5, 408, 0, 0, 7794, 7822, 3, 654, 327, 0, 7795, 7822, 5, 453, 0, 0, 7796, 7822, 5, 410, 0, 0, 7797, 7822, 5, 411, 0, 0, 7798, 7822, 5, 412, 0, 0, 7799, 7822, 5, 413, 0, 0, 7800, 7822, 5, 414, 0, 0, 7801, 7822, 5, 415, 0, 0, 7802, 7822, 5, 416, 0, 0, 7803, 7822, 5, 417, 0, 0, 7804, 7822, 5, 418, 0, 0, 7805, 7822, 5, 419, 0, 0, 7806, 7822, 5, 420, 0, 0, 7807, 7822, 5, 421, 0, 0, 7808, 7822, 5, 422, 0, 0, 7809, 7822, 5, 423, 0, 0, 7810, 7822, 5, 424, 0, 0, 7811, 7822, 5, 425, 0, 0, 7812, 7822, 5, 426, 0, 0, 7813, 7822, 5, 427, 0, 0, 7814, 7822, 5, 428, 0, 0, 7815, 7822, 5, 476, 0, 0, 7816, 7822, 5, 429, 0, 0, 7817, 7822, 5, 430, 0, 0, 7818, 7822, 5, 431, 0, 0, 7819, 7822, 5, 432, 0, 0, 7820, 7822, 5, 474, 0, 0, 7821, 7770, 1, 0, 0, 0, 7821, 7771, 1, 0, 0, 0, 7821, 7772, 1, 0, 0, 0, 7821, 7773, 1, 0, 0, 0, 7821, 7774, 1, 0, 0, 0, 7821, 7775, 1, 0, 0, 0, 7821, 7776, 1, 0, 0, 0, 7821, 7777, 1, 0, 0, 0, 7821, 7778, 1, 0, 0, 0, 7821, 7779, 1, 0, 0, 0, 7821, 7780, 1, 0, 0, 0, 7821, 7781, 1, 0, 0, 0, 7821, 7782, 1, 0, 0, 0, 7821, 7783, 1, 0, 0, 0, 7821, 7784, 1, 0, 0, 0, 7821, 7785, 1, 0, 0, 0, 7821, 7786, 1, 0, 0, 0, 7821, 7787, 1, 0, 0, 0, 7821, 7788, 1, 0, 0, 0, 7821, 7789, 1, 0, 0, 0, 7821, 7790, 1, 0, 0, 0, 7821, 7791, 1, 0, 0, 0, 7821, 7792, 1, 0, 0, 0, 7821, 7793, 1, 0, 0, 0, 7821, 7794, 1, 0, 0, 0, 7821, 7795, 1, 0, 0, 0, 7821, 7796, 1, 0, 0, 0, 7821, 7797, 1, 0, 0, 0, 7821, 7798, 1, 0, 0, 0, 7821, 7799, 1, 0, 0, 0, 7821, 7800, 1, 0, 0, 0, 7821, 7801, 1, 0, 0, 0, 7821, 7802, 1, 0, 0, 0, 7821, 7803, 1, 0, 0, 0, 7821, 7804, 1, 0, 0, 0, 7821, 7805, 1, 0, 0, 0, 7821, 7806, 1, 0, 0, 0, 7821, 7807, 1, 0, 0, 0, 7821, 7808, 1, 0, 0, 0, 7821, 7809, 1, 0, 0, 0, 7821, 7810, 1, 0, 0, 0, 7821, 7811, 1, 0, 0, 0, 7821, 7812, 1, 0, 0, 0, 7821, 7813, 1, 0, 0, 0, 7821, 7814, 1, 0, 0, 0, 7821, 7815, 1, 0, 0, 0, 7821, 7816, 1, 0, 0, 0, 7821, 7817, 1, 0, 0, 0, 7821, 7818, 1, 0, 0, 0, 7821, 7819, 1, 0, 0, 0, 7821, 7820, 1, 0, 0, 0, 7822, 839, 1, 0, 0, 0, 7823, 7824, 7, 111, 0, 0, 7824, 841, 1, 0, 0, 0, 7825, 7826, 7, 112, 0, 0, 7826, 843, 1, 0, 0, 0, 7827, 7829, 3, 846, 423, 0, 7828, 7827, 1, 0, 0, 0, 7828, 7829, 1, 0, 0, 0, 7829, 7840, 1, 0, 0, 0, 7830, 7838, 5, 178, 0, 0, 7831, 7835, 3, 848, 424, 0, 7832, 7835, 5, 178, 0, 0, 7833, 7835, 3, 846, 423, 0, 7834, 7831, 1, 0, 0, 0, 7834, 7832, 1, 0, 0, 0, 7834, 7833, 1, 0, 0, 0, 7835, 7836, 1, 0, 0, 0, 7836, 7834, 1, 0, 0, 0, 7836, 7837, 1, 0, 0, 0, 7837, 7839, 1, 0, 0, 0, 7838, 7834, 1, 0, 0, 0, 7838, 7839, 1, 0, 0, 0, 7839, 7841, 1, 0, 0, 0, 7840, 7830, 1, 0, 0, 0, 7840, 7841, 1, 0, 0, 0, 7841, 7842, 1, 0, 0, 0, 7842, 7846, 5, 146, 0, 0, 7843, 7845, 3, 854, 427, 0, 7844, 7843, 1, 0, 0, 0, 7845, 7848, 1, 0, 0, 0, 7846, 7844, 1, 0, 0, 0, 7846, 7847, 1, 0, 0, 0, 7847, 7850, 1, 0, 0, 0, 7848, 7846, 1, 0, 0, 0, 7849, 7851, 3, 932, 466, 0, 7850, 7849, 1, 0, 0, 0, 7850, 7851, 1, 0, 0, 0, 7851, 7852, 1, 0, 0, 0, 7852, 7854, 5, 454, 0, 0, 7853, 7855, 3, 936, 468, 0, 7854, 7853, 1, 0, 0, 0, 7854, 7855, 1, 0, 0, 0, 7855, 845, 1, 0, 0, 0, 7856, 7857, 5, 18, 0, 0, 7857, 7858, 3, 936, 468, 0, 7858, 7859, 5, 19, 0, 0, 7859, 847, 1, 0, 0, 0, 7860, 7907, 3, 936, 468, 0, 7861, 7862, 5, 496, 0, 0, 7862, 7865, 5, 62, 0, 0, 7863, 7866, 5, 28, 0, 0, 7864, 7866, 3, 826, 413, 0, 7865, 7863, 1, 0, 0, 0, 7865, 7864, 1, 0, 0, 0, 7866, 7908, 1, 0, 0, 0, 7867, 7869, 5, 497, 0, 0, 7868, 7867, 1, 0, 0, 0, 7868, 7869, 1, 0, 0, 0, 7869, 7870, 1, 0, 0, 0, 7870, 7872, 3, 648, 324, 0, 7871, 7873, 3, 90, 45, 0, 7872, 7871, 1, 0, 0, 0, 7872, 7873, 1, 0, 0, 0, 7873, 7876, 1, 0, 0, 0, 7874, 7875, 5, 77, 0, 0, 7875, 7877, 5, 78, 0, 0, 7876, 7874, 1, 0, 0, 0, 7876, 7877, 1, 0, 0, 0, 7877, 7883, 1, 0, 0, 0, 7878, 7881, 3, 852, 426, 0, 7879, 7881, 5, 53, 0, 0, 7880, 7878, 1, 0, 0, 0, 7880, 7879, 1, 0, 0, 0, 7881, 7882, 1, 0, 0, 0, 7882, 7884, 3, 938, 469, 0, 7883, 7880, 1, 0, 0, 0, 7883, 7884, 1, 0, 0, 0, 7884, 7908, 1, 0, 0, 0, 7885, 7887, 5, 269, 0, 0, 7886, 7885, 1, 0, 0, 0, 7886, 7887, 1, 0, 0, 0, 7887, 7888, 1, 0, 0, 0, 7888, 7890, 5, 324, 0, 0, 7889, 7886, 1, 0, 0, 0, 7889, 7890, 1, 0, 0, 0, 7890, 7891, 1, 0, 0, 0, 7891, 7903, 5, 172, 0, 0, 7892, 7893, 5, 2, 0, 0, 7893, 7898, 3, 850, 425, 0, 7894, 7895, 5, 6, 0, 0, 7895, 7897, 3, 850, 425, 0, 7896, 7894, 1, 0, 0, 0, 7897, 7900, 1, 0, 0, 0, 7898, 7896, 1, 0, 0, 0, 7898, 7899, 1, 0, 0, 0, 7899, 7901, 1, 0, 0, 0, 7900, 7898, 1, 0, 0, 0, 7901, 7902, 5, 3, 0, 0, 7902, 7904, 1, 0, 0, 0, 7903, 7892, 1, 0, 0, 0, 7903, 7904, 1, 0, 0, 0, 7904, 7905, 1, 0, 0, 0, 7905, 7906, 7, 113, 0, 0, 7906, 7908, 3, 554, 277, 0, 7907, 7861, 1, 0, 0, 0, 7907, 7868, 1, 0, 0, 0, 7907, 7889, 1, 0, 0, 0, 7908, 7909, 1, 0, 0, 0, 7909, 7910, 5, 7, 0, 0, 7910, 849, 1, 0, 0, 0, 7911, 7912, 3, 936, 468, 0, 7912, 7913, 3, 648, 324, 0, 7913, 851, 1, 0, 0, 0, 7914, 7915, 7, 114, 0, 0, 7915, 853, 1, 0, 0, 0, 7916, 7917, 3, 844, 422, 0, 7917, 7918, 5, 7, 0, 0, 7918, 7941, 1, 0, 0, 0, 7919, 7941, 3, 882, 441, 0, 7920, 7941, 3, 884, 442, 0, 7921, 7941, 3, 860, 430, 0, 7922, 7941, 3, 868, 434, 0, 7923, 7941, 3, 872, 436, 0, 7924, 7941, 3, 874, 437, 0, 7925, 7941, 3, 878, 439, 0, 7926, 7941, 3, 880, 440, 0, 7927, 7941, 3, 888, 444, 0, 7928, 7941, 3, 892, 446, 0, 7929, 7941, 3, 894, 447, 0, 7930, 7941, 3, 856, 428, 0, 7931, 7941, 3, 858, 429, 0, 7932, 7941, 3, 862, 431, 0, 7933, 7941, 3, 898, 449, 0, 7934, 7941, 3, 902, 451, 0, 7935, 7941, 3, 906, 453, 0, 7936, 7941, 3, 922, 461, 0, 7937, 7941, 3, 924, 462, 0, 7938, 7941, 3, 926, 463, 0, 7939, 7941, 3, 928, 464, 0, 7940, 7916, 1, 0, 0, 0, 7940, 7919, 1, 0, 0, 0, 7940, 7920, 1, 0, 0, 0, 7940, 7921, 1, 0, 0, 0, 7940, 7922, 1, 0, 0, 0, 7940, 7923, 1, 0, 0, 0, 7940, 7924, 1, 0, 0, 0, 7940, 7925, 1, 0, 0, 0, 7940, 7926, 1, 0, 0, 0, 7940, 7927, 1, 0, 0, 0, 7940, 7928, 1, 0, 0, 0, 7940, 7929, 1, 0, 0, 0, 7940, 7930, 1, 0, 0, 0, 7940, 7931, 1, 0, 0, 0, 7940, 7932, 1, 0, 0, 0, 7940, 7933, 1, 0, 0, 0, 7940, 7934, 1, 0, 0, 0, 7940, 7935, 1, 0, 0, 0, 7940, 7936, 1, 0, 0, 0, 7940, 7937, 1, 0, 0, 0, 7940, 7938, 1, 0, 0, 0, 7940, 7939, 1, 0, 0, 0, 7941, 855, 1, 0, 0, 0, 7942, 7943, 5, 498, 0, 0, 7943, 7944, 3, 938, 469, 0, 7944, 7945, 5, 7, 0, 0, 7945, 857, 1, 0, 0, 0, 7946, 7947, 5, 433, 0, 0, 7947, 7954, 3, 936, 468, 0, 7948, 7950, 5, 2, 0, 0, 7949, 7951, 3, 728, 364, 0, 7950, 7949, 1, 0, 0, 0, 7950, 7951, 1, 0, 0, 0, 7951, 7952, 1, 0, 0, 0, 7952, 7953, 5, 3, 0, 0, 7953, 7955, 5, 7, 0, 0, 7954, 7948, 1, 0, 0, 0, 7954, 7955, 1, 0, 0, 0, 7955, 7966, 1, 0, 0, 0, 7956, 7957, 5, 57, 0, 0, 7957, 7958, 3, 936, 468, 0, 7958, 7960, 5, 2, 0, 0, 7959, 7961, 3, 728, 364, 0, 7960, 7959, 1, 0, 0, 0, 7960, 7961, 1, 0, 0, 0, 7961, 7962, 1, 0, 0, 0, 7962, 7963, 5, 3, 0, 0, 7963, 7964, 5, 7, 0, 0, 7964, 7966, 1, 0, 0, 0, 7965, 7946, 1, 0, 0, 0, 7965, 7956, 1, 0, 0, 0, 7966, 859, 1, 0, 0, 0, 7967, 7968, 3, 866, 433, 0, 7968, 7969, 3, 852, 426, 0, 7969, 7970, 3, 938, 469, 0, 7970, 7971, 5, 7, 0, 0, 7971, 861, 1, 0, 0, 0, 7972, 7974, 5, 499, 0, 0, 7973, 7975, 7, 115, 0, 0, 7974, 7973, 1, 0, 0, 0, 7974, 7975, 1, 0, 0, 0, 7975, 7976, 1, 0, 0, 0, 7976, 7977, 5, 500, 0, 0, 7977, 7982, 3, 864, 432, 0, 7978, 7979, 5, 6, 0, 0, 7979, 7981, 3, 864, 432, 0, 7980, 7978, 1, 0, 0, 0, 7981, 7984, 1, 0, 0, 0, 7982, 7980, 1, 0, 0, 0, 7982, 7983, 1, 0, 0, 0, 7983, 7985, 1, 0, 0, 0, 7984, 7982, 1, 0, 0, 0, 7985, 7986, 5, 7, 0, 0, 7986, 863, 1, 0, 0, 0, 7987, 7988, 3, 866, 433, 0, 7988, 7989, 3, 852, 426, 0, 7989, 7990, 3, 826, 413, 0, 7990, 865, 1, 0, 0, 0, 7991, 7994, 3, 310, 155, 0, 7992, 7994, 5, 28, 0, 0, 7993, 7991, 1, 0, 0, 0, 7993, 7992, 1, 0, 0, 0, 7994, 8001, 1, 0, 0, 0, 7995, 7996, 5, 4, 0, 0, 7996, 7997, 3, 670, 335, 0, 7997, 7998, 5, 5, 0, 0, 7998, 8000, 1, 0, 0, 0, 7999, 7995, 1, 0, 0, 0, 8000, 8003, 1, 0, 0, 0, 8001, 7999, 1, 0, 0, 0, 8001, 8002, 1, 0, 0, 0, 8002, 867, 1, 0, 0, 0, 8003, 8001, 1, 0, 0, 0, 8004, 8005, 5, 220, 0, 0, 8005, 8006, 3, 938, 469, 0, 8006, 8010, 5, 93, 0, 0, 8007, 8009, 3, 854, 427, 0, 8008, 8007, 1, 0, 0, 0, 8009, 8012, 1, 0, 0, 0, 8010, 8008, 1, 0, 0, 0, 8010, 8011, 1, 0, 0, 0, 8011, 8024, 1, 0, 0, 0, 8012, 8010, 1, 0, 0, 0, 8013, 8014, 5, 502, 0, 0, 8014, 8015, 3, 670, 335, 0, 8015, 8019, 5, 93, 0, 0, 8016, 8018, 3, 854, 427, 0, 8017, 8016, 1, 0, 0, 0, 8018, 8021, 1, 0, 0, 0, 8019, 8017, 1, 0, 0, 0, 8019, 8020, 1, 0, 0, 0, 8020, 8023, 1, 0, 0, 0, 8021, 8019, 1, 0, 0, 0, 8022, 8013, 1, 0, 0, 0, 8023, 8026, 1, 0, 0, 0, 8024, 8022, 1, 0, 0, 0, 8024, 8025, 1, 0, 0, 0, 8025, 8028, 1, 0, 0, 0, 8026, 8024, 1, 0, 0, 0, 8027, 8029, 3, 870, 435, 0, 8028, 8027, 1, 0, 0, 0, 8028, 8029, 1, 0, 0, 0, 8029, 8030, 1, 0, 0, 0, 8030, 8031, 5, 454, 0, 0, 8031, 8032, 5, 220, 0, 0, 8032, 8033, 5, 7, 0, 0, 8033, 869, 1, 0, 0, 0, 8034, 8038, 5, 58, 0, 0, 8035, 8037, 3, 854, 427, 0, 8036, 8035, 1, 0, 0, 0, 8037, 8040, 1, 0, 0, 0, 8038, 8036, 1, 0, 0, 0, 8038, 8039, 1, 0, 0, 0, 8039, 871, 1, 0, 0, 0, 8040, 8038, 1, 0, 0, 0, 8041, 8043, 5, 40, 0, 0, 8042, 8044, 3, 938, 469, 0, 8043, 8042, 1, 0, 0, 0, 8043, 8044, 1, 0, 0, 0, 8044, 8054, 1, 0, 0, 0, 8045, 8046, 5, 102, 0, 0, 8046, 8047, 3, 728, 364, 0, 8047, 8051, 5, 93, 0, 0, 8048, 8050, 3, 854, 427, 0, 8049, 8048, 1, 0, 0, 0, 8050, 8053, 1, 0, 0, 0, 8051, 8049, 1, 0, 0, 0, 8051, 8052, 1, 0, 0, 0, 8052, 8055, 1, 0, 0, 0, 8053, 8051, 1, 0, 0, 0, 8054, 8045, 1, 0, 0, 0, 8055, 8056, 1, 0, 0, 0, 8056, 8054, 1, 0, 0, 0, 8056, 8057, 1, 0, 0, 0, 8057, 8059, 1, 0, 0, 0, 8058, 8060, 3, 870, 435, 0, 8059, 8058, 1, 0, 0, 0, 8059, 8060, 1, 0, 0, 0, 8060, 8061, 1, 0, 0, 0, 8061, 8062, 5, 454, 0, 0, 8062, 8063, 5, 40, 0, 0, 8063, 8064, 5, 7, 0, 0, 8064, 873, 1, 0, 0, 0, 8065, 8067, 3, 846, 423, 0, 8066, 8065, 1, 0, 0, 0, 8066, 8067, 1, 0, 0, 0, 8067, 8072, 1, 0, 0, 0, 8068, 8069, 5, 503, 0, 0, 8069, 8073, 3, 670, 335, 0, 8070, 8071, 5, 62, 0, 0, 8071, 8073, 3, 876, 438, 0, 8072, 8068, 1, 0, 0, 0, 8072, 8070, 1, 0, 0, 0, 8072, 8073, 1, 0, 0, 0, 8073, 8074, 1, 0, 0, 0, 8074, 8075, 3, 890, 445, 0, 8075, 875, 1, 0, 0, 0, 8076, 8077, 3, 308, 154, 0, 8077, 8100, 5, 68, 0, 0, 8078, 8080, 3, 826, 413, 0, 8079, 8081, 3, 528, 264, 0, 8080, 8079, 1, 0, 0, 0, 8080, 8081, 1, 0, 0, 0, 8081, 8101, 1, 0, 0, 0, 8082, 8101, 3, 554, 277, 0, 8083, 8101, 3, 514, 257, 0, 8084, 8085, 5, 202, 0, 0, 8085, 8088, 3, 670, 335, 0, 8086, 8087, 5, 100, 0, 0, 8087, 8089, 3, 728, 364, 0, 8088, 8086, 1, 0, 0, 0, 8088, 8089, 1, 0, 0, 0, 8089, 8101, 1, 0, 0, 0, 8090, 8092, 5, 504, 0, 0, 8091, 8090, 1, 0, 0, 0, 8091, 8092, 1, 0, 0, 0, 8092, 8093, 1, 0, 0, 0, 8093, 8094, 3, 670, 335, 0, 8094, 8095, 5, 24, 0, 0, 8095, 8098, 3, 670, 335, 0, 8096, 8097, 5, 147, 0, 0, 8097, 8099, 3, 670, 335, 0, 8098, 8096, 1, 0, 0, 0, 8098, 8099, 1, 0, 0, 0, 8099, 8101, 1, 0, 0, 0, 8100, 8078, 1, 0, 0, 0, 8100, 8082, 1, 0, 0, 0, 8100, 8083, 1, 0, 0, 0, 8100, 8084, 1, 0, 0, 0, 8100, 8091, 1, 0, 0, 0, 8101, 877, 1, 0, 0, 0, 8102, 8104, 3, 846, 423, 0, 8103, 8102, 1, 0, 0, 0, 8103, 8104, 1, 0, 0, 0, 8104, 8105, 1, 0, 0, 0, 8105, 8106, 5, 505, 0, 0, 8106, 8109, 3, 308, 154, 0, 8107, 8108, 5, 506, 0, 0, 8108, 8110, 5, 574, 0, 0, 8109, 8107, 1, 0, 0, 0, 8109, 8110, 1, 0, 0, 0, 8110, 8111, 1, 0, 0, 0, 8111, 8112, 5, 68, 0, 0, 8112, 8113, 5, 35, 0, 0, 8113, 8114, 3, 670, 335, 0, 8114, 8115, 3, 890, 445, 0, 8115, 879, 1, 0, 0, 0, 8116, 8118, 7, 116, 0, 0, 8117, 8119, 3, 936, 468, 0, 8118, 8117, 1, 0, 0, 0, 8118, 8119, 1, 0, 0, 0, 8119, 8122, 1, 0, 0, 0, 8120, 8121, 5, 102, 0, 0, 8121, 8123, 3, 938, 469, 0, 8122, 8120, 1, 0, 0, 0, 8122, 8123, 1, 0, 0, 0, 8123, 8124, 1, 0, 0, 0, 8124, 8125, 5, 7, 0, 0, 8125, 881, 1, 0, 0, 0, 8126, 8141, 5, 508, 0, 0, 8127, 8128, 5, 268, 0, 0, 8128, 8142, 3, 938, 469, 0, 8129, 8136, 5, 509, 0, 0, 8130, 8131, 5, 202, 0, 0, 8131, 8132, 3, 670, 335, 0, 8132, 8133, 5, 100, 0, 0, 8133, 8134, 3, 728, 364, 0, 8134, 8137, 1, 0, 0, 0, 8135, 8137, 3, 554, 277, 0, 8136, 8130, 1, 0, 0, 0, 8136, 8135, 1, 0, 0, 0, 8137, 8142, 1, 0, 0, 0, 8138, 8140, 3, 938, 469, 0, 8139, 8138, 1, 0, 0, 0, 8139, 8140, 1, 0, 0, 0, 8140, 8142, 1, 0, 0, 0, 8141, 8127, 1, 0, 0, 0, 8141, 8129, 1, 0, 0, 0, 8141, 8139, 1, 0, 0, 0, 8142, 8143, 1, 0, 0, 0, 8143, 8144, 5, 7, 0, 0, 8144, 883, 1, 0, 0, 0, 8145, 8175, 5, 510, 0, 0, 8146, 8148, 7, 117, 0, 0, 8147, 8146, 1, 0, 0, 0, 8147, 8148, 1, 0, 0, 0, 8148, 8161, 1, 0, 0, 0, 8149, 8162, 3, 834, 417, 0, 8150, 8151, 5, 511, 0, 0, 8151, 8162, 3, 816, 408, 0, 8152, 8159, 3, 816, 408, 0, 8153, 8154, 5, 6, 0, 0, 8154, 8156, 3, 670, 335, 0, 8155, 8153, 1, 0, 0, 0, 8156, 8157, 1, 0, 0, 0, 8157, 8155, 1, 0, 0, 0, 8157, 8158, 1, 0, 0, 0, 8158, 8160, 1, 0, 0, 0, 8159, 8155, 1, 0, 0, 0, 8159, 8160, 1, 0, 0, 0, 8160, 8162, 1, 0, 0, 0, 8161, 8149, 1, 0, 0, 0, 8161, 8150, 1, 0, 0, 0, 8161, 8152, 1, 0, 0, 0, 8161, 8162, 1, 0, 0, 0, 8162, 8172, 1, 0, 0, 0, 8163, 8164, 5, 100, 0, 0, 8164, 8169, 3, 886, 443, 0, 8165, 8166, 5, 6, 0, 0, 8166, 8168, 3, 886, 443, 0, 8167, 8165, 1, 0, 0, 0, 8168, 8171, 1, 0, 0, 0, 8169, 8167, 1, 0, 0, 0, 8169, 8170, 1, 0, 0, 0, 8170, 8173, 1, 0, 0, 0, 8171, 8169, 1, 0, 0, 0, 8172, 8163, 1, 0, 0, 0, 8172, 8173, 1, 0, 0, 0, 8173, 8174, 1, 0, 0, 0, 8174, 8176, 5, 7, 0, 0, 8175, 8147, 1, 0, 0, 0, 8175, 8176, 1, 0, 0, 0, 8176, 885, 1, 0, 0, 0, 8177, 8178, 3, 834, 417, 0, 8178, 8179, 5, 10, 0, 0, 8179, 8180, 3, 670, 335, 0, 8180, 887, 1, 0, 0, 0, 8181, 8182, 5, 518, 0, 0, 8182, 8185, 3, 938, 469, 0, 8183, 8184, 5, 6, 0, 0, 8184, 8186, 3, 938, 469, 0, 8185, 8183, 1, 0, 0, 0, 8185, 8186, 1, 0, 0, 0, 8186, 8187, 1, 0, 0, 0, 8187, 8188, 5, 7, 0, 0, 8188, 889, 1, 0, 0, 0, 8189, 8193, 5, 519, 0, 0, 8190, 8192, 3, 854, 427, 0, 8191, 8190, 1, 0, 0, 0, 8192, 8195, 1, 0, 0, 0, 8193, 8191, 1, 0, 0, 0, 8193, 8194, 1, 0, 0, 0, 8194, 8196, 1, 0, 0, 0, 8195, 8193, 1, 0, 0, 0, 8196, 8197, 5, 454, 0, 0, 8197, 8199, 5, 519, 0, 0, 8198, 8200, 3, 936, 468, 0, 8199, 8198, 1, 0, 0, 0, 8199, 8200, 1, 0, 0, 0, 8200, 8201, 1, 0, 0, 0, 8201, 8202, 5, 7, 0, 0, 8202, 891, 1, 0, 0, 0, 8203, 8205, 3, 4, 2, 0, 8204, 8206, 3, 896, 448, 0, 8205, 8204, 1, 0, 0, 0, 8205, 8206, 1, 0, 0, 0, 8206, 8207, 1, 0, 0, 0, 8207, 8208, 5, 7, 0, 0, 8208, 893, 1, 0, 0, 0, 8209, 8210, 5, 202, 0, 0, 8210, 8226, 3, 670, 335, 0, 8211, 8213, 3, 896, 448, 0, 8212, 8211, 1, 0, 0, 0, 8212, 8213, 1, 0, 0, 0, 8213, 8216, 1, 0, 0, 0, 8214, 8215, 5, 100, 0, 0, 8215, 8217, 3, 728, 364, 0, 8216, 8214, 1, 0, 0, 0, 8216, 8217, 1, 0, 0, 0, 8217, 8227, 1, 0, 0, 0, 8218, 8219, 5, 100, 0, 0, 8219, 8221, 3, 728, 364, 0, 8220, 8218, 1, 0, 0, 0, 8220, 8221, 1, 0, 0, 0, 8221, 8223, 1, 0, 0, 0, 8222, 8224, 3, 896, 448, 0, 8223, 8222, 1, 0, 0, 0, 8223, 8224, 1, 0, 0, 0, 8224, 8227, 1, 0, 0, 0, 8225, 8227, 1, 0, 0, 0, 8226, 8212, 1, 0, 0, 0, 8226, 8220, 1, 0, 0, 0, 8226, 8225, 1, 0, 0, 0, 8227, 8228, 1, 0, 0, 0, 8228, 8229, 5, 7, 0, 0, 8229, 895, 1, 0, 0, 0, 8230, 8232, 5, 71, 0, 0, 8231, 8233, 5, 346, 0, 0, 8232, 8231, 1, 0, 0, 0, 8232, 8233, 1, 0, 0, 0, 8233, 8234, 1, 0, 0, 0, 8234, 8235, 3, 728, 364, 0, 8235, 897, 1, 0, 0, 0, 8236, 8268, 5, 520, 0, 0, 8237, 8242, 3, 930, 465, 0, 8238, 8240, 5, 269, 0, 0, 8239, 8238, 1, 0, 0, 0, 8239, 8240, 1, 0, 0, 0, 8240, 8241, 1, 0, 0, 0, 8241, 8243, 5, 324, 0, 0, 8242, 8239, 1, 0, 0, 0, 8242, 8243, 1, 0, 0, 0, 8243, 8244, 1, 0, 0, 0, 8244, 8252, 5, 62, 0, 0, 8245, 8253, 3, 554, 277, 0, 8246, 8247, 5, 202, 0, 0, 8247, 8250, 3, 938, 469, 0, 8248, 8249, 5, 100, 0, 0, 8249, 8251, 3, 728, 364, 0, 8250, 8248, 1, 0, 0, 0, 8250, 8251, 1, 0, 0, 0, 8251, 8253, 1, 0, 0, 0, 8252, 8245, 1, 0, 0, 0, 8252, 8246, 1, 0, 0, 0, 8253, 8269, 1, 0, 0, 0, 8254, 8266, 3, 826, 413, 0, 8255, 8256, 5, 2, 0, 0, 8256, 8261, 3, 900, 450, 0, 8257, 8258, 5, 6, 0, 0, 8258, 8260, 3, 900, 450, 0, 8259, 8257, 1, 0, 0, 0, 8260, 8263, 1, 0, 0, 0, 8261, 8259, 1, 0, 0, 0, 8261, 8262, 1, 0, 0, 0, 8262, 8264, 1, 0, 0, 0, 8263, 8261, 1, 0, 0, 0, 8264, 8265, 5, 3, 0, 0, 8265, 8267, 1, 0, 0, 0, 8266, 8255, 1, 0, 0, 0, 8266, 8267, 1, 0, 0, 0, 8267, 8269, 1, 0, 0, 0, 8268, 8237, 1, 0, 0, 0, 8268, 8254, 1, 0, 0, 0, 8269, 8270, 1, 0, 0, 0, 8270, 8271, 5, 7, 0, 0, 8271, 899, 1, 0, 0, 0, 8272, 8273, 3, 826, 413, 0, 8273, 8274, 5, 20, 0, 0, 8274, 8276, 1, 0, 0, 0, 8275, 8272, 1, 0, 0, 0, 8275, 8276, 1, 0, 0, 0, 8276, 8277, 1, 0, 0, 0, 8277, 8278, 3, 670, 335, 0, 8278, 901, 1, 0, 0, 0, 8279, 8281, 5, 61, 0, 0, 8280, 8282, 3, 904, 452, 0, 8281, 8280, 1, 0, 0, 0, 8281, 8282, 1, 0, 0, 0, 8282, 8284, 1, 0, 0, 0, 8283, 8285, 3, 326, 163, 0, 8284, 8283, 1, 0, 0, 0, 8284, 8285, 1, 0, 0, 0, 8285, 8286, 1, 0, 0, 0, 8286, 8287, 3, 930, 465, 0, 8287, 8288, 5, 71, 0, 0, 8288, 8289, 3, 728, 364, 0, 8289, 8290, 5, 7, 0, 0, 8290, 903, 1, 0, 0, 0, 8291, 8306, 5, 268, 0, 0, 8292, 8306, 5, 293, 0, 0, 8293, 8306, 5, 207, 0, 0, 8294, 8306, 5, 249, 0, 0, 8295, 8297, 7, 51, 0, 0, 8296, 8295, 1, 0, 0, 0, 8296, 8297, 1, 0, 0, 0, 8297, 8298, 1, 0, 0, 0, 8298, 8306, 3, 670, 335, 0, 8299, 8306, 5, 30, 0, 0, 8300, 8303, 7, 118, 0, 0, 8301, 8304, 3, 670, 335, 0, 8302, 8304, 5, 30, 0, 0, 8303, 8301, 1, 0, 0, 0, 8303, 8302, 1, 0, 0, 0, 8303, 8304, 1, 0, 0, 0, 8304, 8306, 1, 0, 0, 0, 8305, 8291, 1, 0, 0, 0, 8305, 8292, 1, 0, 0, 0, 8305, 8293, 1, 0, 0, 0, 8305, 8294, 1, 0, 0, 0, 8305, 8296, 1, 0, 0, 0, 8305, 8299, 1, 0, 0, 0, 8305, 8300, 1, 0, 0, 0, 8306, 905, 1, 0, 0, 0, 8307, 8309, 5, 265, 0, 0, 8308, 8310, 3, 904, 452, 0, 8309, 8308, 1, 0, 0, 0, 8309, 8310, 1, 0, 0, 0, 8310, 8311, 1, 0, 0, 0, 8311, 8312, 3, 930, 465, 0, 8312, 8313, 5, 7, 0, 0, 8313, 907, 1, 0, 0, 0, 8314, 8316, 3, 566, 283, 0, 8315, 8314, 1, 0, 0, 0, 8315, 8316, 1, 0, 0, 0, 8316, 8317, 1, 0, 0, 0, 8317, 8318, 5, 525, 0, 0, 8318, 8320, 5, 71, 0, 0, 8319, 8321, 5, 81, 0, 0, 8320, 8319, 1, 0, 0, 0, 8320, 8321, 1, 0, 0, 0, 8321, 8322, 1, 0, 0, 0, 8322, 8324, 3, 778, 389, 0, 8323, 8325, 5, 9, 0, 0, 8324, 8323, 1, 0, 0, 0, 8324, 8325, 1, 0, 0, 0, 8325, 8330, 1, 0, 0, 0, 8326, 8328, 5, 36, 0, 0, 8327, 8326, 1, 0, 0, 0, 8327, 8328, 1, 0, 0, 0, 8328, 8329, 1, 0, 0, 0, 8329, 8331, 3, 826, 413, 0, 8330, 8327, 1, 0, 0, 0, 8330, 8331, 1, 0, 0, 0, 8331, 8332, 1, 0, 0, 0, 8332, 8333, 5, 100, 0, 0, 8333, 8334, 3, 910, 455, 0, 8334, 8335, 5, 80, 0, 0, 8335, 8337, 3, 670, 335, 0, 8336, 8338, 3, 912, 456, 0, 8337, 8336, 1, 0, 0, 0, 8338, 8339, 1, 0, 0, 0, 8339, 8337, 1, 0, 0, 0, 8339, 8340, 1, 0, 0, 0, 8340, 8342, 1, 0, 0, 0, 8341, 8343, 3, 540, 270, 0, 8342, 8341, 1, 0, 0, 0, 8342, 8343, 1, 0, 0, 0, 8343, 909, 1, 0, 0, 0, 8344, 8346, 5, 81, 0, 0, 8345, 8344, 1, 0, 0, 0, 8345, 8346, 1, 0, 0, 0, 8346, 8347, 1, 0, 0, 0, 8347, 8349, 3, 778, 389, 0, 8348, 8350, 5, 9, 0, 0, 8349, 8348, 1, 0, 0, 0, 8349, 8350, 1, 0, 0, 0, 8350, 8356, 1, 0, 0, 0, 8351, 8354, 3, 558, 279, 0, 8352, 8354, 3, 602, 301, 0, 8353, 8351, 1, 0, 0, 0, 8353, 8352, 1, 0, 0, 0, 8354, 8356, 1, 0, 0, 0, 8355, 8345, 1, 0, 0, 0, 8355, 8353, 1, 0, 0, 0, 8356, 8361, 1, 0, 0, 0, 8357, 8359, 5, 36, 0, 0, 8358, 8357, 1, 0, 0, 0, 8358, 8359, 1, 0, 0, 0, 8359, 8360, 1, 0, 0, 0, 8360, 8362, 3, 826, 413, 0, 8361, 8358, 1, 0, 0, 0, 8361, 8362, 1, 0, 0, 0, 8362, 911, 1, 0, 0, 0, 8363, 8364, 5, 102, 0, 0, 8364, 8367, 5, 526, 0, 0, 8365, 8366, 5, 33, 0, 0, 8366, 8368, 3, 670, 335, 0, 8367, 8365, 1, 0, 0, 0, 8367, 8368, 1, 0, 0, 0, 8368, 8369, 1, 0, 0, 0, 8369, 8374, 5, 93, 0, 0, 8370, 8375, 3, 916, 458, 0, 8371, 8375, 5, 182, 0, 0, 8372, 8373, 5, 57, 0, 0, 8373, 8375, 5, 270, 0, 0, 8374, 8370, 1, 0, 0, 0, 8374, 8371, 1, 0, 0, 0, 8374, 8372, 1, 0, 0, 0, 8375, 8390, 1, 0, 0, 0, 8376, 8377, 5, 102, 0, 0, 8377, 8378, 5, 77, 0, 0, 8378, 8381, 5, 526, 0, 0, 8379, 8380, 5, 33, 0, 0, 8380, 8382, 3, 670, 335, 0, 8381, 8379, 1, 0, 0, 0, 8381, 8382, 1, 0, 0, 0, 8382, 8383, 1, 0, 0, 0, 8383, 8387, 5, 93, 0, 0, 8384, 8388, 3, 914, 457, 0, 8385, 8386, 5, 57, 0, 0, 8386, 8388, 5, 270, 0, 0, 8387, 8384, 1, 0, 0, 0, 8387, 8385, 1, 0, 0, 0, 8388, 8390, 1, 0, 0, 0, 8389, 8363, 1, 0, 0, 0, 8389, 8376, 1, 0, 0, 0, 8390, 913, 1, 0, 0, 0, 8391, 8393, 5, 241, 0, 0, 8392, 8394, 3, 138, 69, 0, 8393, 8392, 1, 0, 0, 0, 8393, 8394, 1, 0, 0, 0, 8394, 8398, 1, 0, 0, 0, 8395, 8396, 5, 463, 0, 0, 8396, 8397, 7, 77, 0, 0, 8397, 8399, 5, 450, 0, 0, 8398, 8395, 1, 0, 0, 0, 8398, 8399, 1, 0, 0, 0, 8399, 8400, 1, 0, 0, 0, 8400, 8401, 3, 918, 459, 0, 8401, 915, 1, 0, 0, 0, 8402, 8403, 5, 369, 0, 0, 8403, 8421, 5, 333, 0, 0, 8404, 8405, 3, 806, 403, 0, 8405, 8406, 5, 10, 0, 0, 8406, 8407, 3, 920, 460, 0, 8407, 8422, 1, 0, 0, 0, 8408, 8409, 3, 138, 69, 0, 8409, 8410, 5, 10, 0, 0, 8410, 8411, 5, 2, 0, 0, 8411, 8416, 3, 920, 460, 0, 8412, 8413, 5, 6, 0, 0, 8413, 8415, 3, 920, 460, 0, 8414, 8412, 1, 0, 0, 0, 8415, 8418, 1, 0, 0, 0, 8416, 8414, 1, 0, 0, 0, 8416, 8417, 1, 0, 0, 0, 8417, 8419, 1, 0, 0, 0, 8418, 8416, 1, 0, 0, 0, 8419, 8420, 5, 3, 0, 0, 8420, 8422, 1, 0, 0, 0, 8421, 8404, 1, 0, 0, 0, 8421, 8408, 1, 0, 0, 0, 8422, 8423, 1, 0, 0, 0, 8423, 8421, 1, 0, 0, 0, 8423, 8424, 1, 0, 0, 0, 8424, 917, 1, 0, 0, 0, 8425, 8426, 5, 422, 0, 0, 8426, 8427, 5, 2, 0, 0, 8427, 8432, 3, 920, 460, 0, 8428, 8429, 5, 6, 0, 0, 8429, 8431, 3, 920, 460, 0, 8430, 8428, 1, 0, 0, 0, 8431, 8434, 1, 0, 0, 0, 8432, 8430, 1, 0, 0, 0, 8432, 8433, 1, 0, 0, 0, 8433, 8435, 1, 0, 0, 0, 8434, 8432, 1, 0, 0, 0, 8435, 8436, 5, 3, 0, 0, 8436, 8440, 1, 0, 0, 0, 8437, 8438, 5, 53, 0, 0, 8438, 8440, 5, 422, 0, 0, 8439, 8425, 1, 0, 0, 0, 8439, 8437, 1, 0, 0, 0, 8440, 919, 1, 0, 0, 0, 8441, 8444, 3, 582, 291, 0, 8442, 8444, 5, 53, 0, 0, 8443, 8441, 1, 0, 0, 0, 8443, 8442, 1, 0, 0, 0, 8444, 921, 1, 0, 0, 0, 8445, 8446, 5, 157, 0, 0, 8446, 8447, 3, 930, 465, 0, 8447, 8448, 5, 7, 0, 0, 8448, 923, 1, 0, 0, 0, 8449, 8450, 5, 78, 0, 0, 8450, 8451, 5, 7, 0, 0, 8451, 925, 1, 0, 0, 0, 8452, 8458, 7, 68, 0, 0, 8453, 8455, 5, 33, 0, 0, 8454, 8456, 5, 269, 0, 0, 8455, 8454, 1, 0, 0, 0, 8455, 8456, 1, 0, 0, 0, 8456, 8457, 1, 0, 0, 0, 8457, 8459, 5, 153, 0, 0, 8458, 8453, 1, 0, 0, 0, 8458, 8459, 1, 0, 0, 0, 8459, 8460, 1, 0, 0, 0, 8460, 8461, 5, 7, 0, 0, 8461, 927, 1, 0, 0, 0, 8462, 8463, 5, 333, 0, 0, 8463, 8464, 3, 310, 155, 0, 8464, 8465, 5, 94, 0, 0, 8465, 8466, 5, 53, 0, 0, 8466, 8467, 5, 7, 0, 0, 8467, 8475, 1, 0, 0, 0, 8468, 8471, 5, 313, 0, 0, 8469, 8472, 3, 310, 155, 0, 8470, 8472, 5, 30, 0, 0, 8471, 8469, 1, 0, 0, 0, 8471, 8470, 1, 0, 0, 0, 8472, 8473, 1, 0, 0, 0, 8473, 8475, 5, 7, 0, 0, 8474, 8462, 1, 0, 0, 0, 8474, 8468, 1, 0, 0, 0, 8475, 929, 1, 0, 0, 0, 8476, 8479, 3, 826, 413, 0, 8477, 8479, 5, 28, 0, 0, 8478, 8476, 1, 0, 0, 0, 8478, 8477, 1, 0, 0, 0, 8479, 931, 1, 0, 0, 0, 8480, 8497, 5, 517, 0, 0, 8481, 8482, 5, 102, 0, 0, 8482, 8487, 3, 934, 467, 0, 8483, 8484, 5, 82, 0, 0, 8484, 8486, 3, 934, 467, 0, 8485, 8483, 1, 0, 0, 0, 8486, 8489, 1, 0, 0, 0, 8487, 8485, 1, 0, 0, 0, 8487, 8488, 1, 0, 0, 0, 8488, 8490, 1, 0, 0, 0, 8489, 8487, 1, 0, 0, 0, 8490, 8494, 5, 93, 0, 0, 8491, 8493, 3, 854, 427, 0, 8492, 8491, 1, 0, 0, 0, 8493, 8496, 1, 0, 0, 0, 8494, 8492, 1, 0, 0, 0, 8494, 8495, 1, 0, 0, 0, 8495, 8498, 1, 0, 0, 0, 8496, 8494, 1, 0, 0, 0, 8497, 8481, 1, 0, 0, 0, 8498, 8499, 1, 0, 0, 0, 8499, 8497, 1, 0, 0, 0, 8499, 8500, 1, 0, 0, 0, 8500, 933, 1, 0, 0, 0, 8501, 8505, 3, 936, 468, 0, 8502, 8503, 5, 511, 0, 0, 8503, 8505, 3, 816, 408, 0, 8504, 8501, 1, 0, 0, 0, 8504, 8502, 1, 0, 0, 0, 8505, 935, 1, 0, 0, 0, 8506, 8509, 3, 826, 413, 0, 8507, 8509, 3, 836, 418, 0, 8508, 8506, 1, 0, 0, 0, 8508, 8507, 1, 0, 0, 0, 8509, 937, 1, 0, 0, 0, 8510, 8512, 3, 758, 379, 0, 8511, 8510, 1, 0, 0, 0, 8511, 8512, 1, 0, 0, 0, 8512, 8514, 1, 0, 0, 0, 8513, 8515, 3, 574, 287, 0, 8514, 8513, 1, 0, 0, 0, 8514, 8515, 1, 0, 0, 0, 8515, 8517, 1, 0, 0, 0, 8516, 8518, 3, 604, 302, 0, 8517, 8516, 1, 0, 0, 0, 8517, 8518, 1, 0, 0, 0, 8518, 8520, 1, 0, 0, 0, 8519, 8521, 3, 634, 317, 0, 8520, 8519, 1, 0, 0, 0, 8520, 8521, 1, 0, 0, 0, 8521, 8523, 1, 0, 0, 0, 8522, 8524, 3, 594, 297, 0, 8523, 8522, 1, 0, 0, 0, 8523, 8524, 1, 0, 0, 0, 8524, 8526, 1, 0, 0, 0, 8525, 8527, 3, 700, 350, 0, 8526, 8525, 1, 0, 0, 0, 8526, 8527, 1, 0, 0, 0, 8527, 8529, 1, 0, 0, 0, 8528, 8530, 3, 698, 349, 0, 8529, 8528, 1, 0, 0, 0, 8529, 8530, 1, 0, 0, 0, 8530, 939, 1, 0, 0, 0, 1196, 943, 950, 1070, 1072, 1081, 1086, 1092, 1127, 1137, 1143, 1148, 1155, 1160, 1167, 1178, 1186, 1190, 1202, 1208, 1214, 1218, 1223, 1227, 1240, 1250, 1252, 1258, 1263, 1276, 1279, 1284, 1289, 1300, 1304, 1316, 1320, 1323, 1327, 1339, 1357, 1364, 1372, 1377, 1384, 1392, 1398, 1406, 1414, 1418, 1432, 1437, 1442, 1454, 1460, 1472, 1477, 1487, 1493, 1498, 1507, 1514, 1519, 1524, 1534, 1539, 1544, 1551, 1555, 1569, 1575, 1581, 1586, 1593, 1602, 1611, 1620, 1629, 1633, 1645, 1653, 1663, 1683, 1688, 1691, 1698, 1701, 1705, 1709, 1712, 1717, 1722, 1726, 1735, 1741, 1745, 1754, 1757, 1763, 1772, 1784, 1788, 1792, 1797, 1800, 1806, 1808, 1810, 1814, 1820, 1824, 1829, 1834, 1838, 1841, 1848, 1861, 1874, 1899, 1909, 1916, 1921, 1925, 1932, 1937, 1940, 1942, 1947, 1951, 1955, 1959, 1964, 1967, 1971, 1974, 1978, 1986, 1991, 1994, 1998, 2004, 2013, 2017, 2027, 2032, 2036, 2040, 2042, 2044, 2051, 2056, 2060, 2065, 2077, 2082, 2086, 2090, 2095, 2099, 2102, 2105, 2108, 2111, 2114, 2119, 2122, 2125, 2128, 2131, 2134, 2140, 2144, 2147, 2150, 2153, 2156, 2158, 2165, 2173, 2183, 2188, 2198, 2201, 2206, 2211, 2216, 2219, 2224, 2233, 2235, 2239, 2242, 2246, 2251, 2256, 2260, 2263, 2267, 2270, 2275, 2278, 2283, 2286, 2290, 2293, 2296, 2301, 2304, 2312, 2324, 2328, 2335, 2340, 2343, 2346, 2349, 2354, 2365, 2371, 2375, 2378, 2381, 2386, 2393, 2396, 2400, 2408, 2413, 2416, 2419, 2426, 2431, 2440, 2443, 2446, 2451, 2454, 2466, 2476, 2493, 2497, 2501, 2503, 2520, 2522, 2538, 2549, 2552, 2555, 2564, 2573, 2589, 2592, 2595, 2603, 2607, 2614, 2623, 2627, 2633, 2637, 2640, 2643, 2646, 2649, 2655, 2659, 2664, 2668, 2671, 2674, 2677, 2682, 2688, 2692, 2696, 2700, 2706, 2708, 2713, 2719, 2725, 2729, 2744, 2749, 2752, 2754, 2757, 2761, 2765, 2768, 2771, 2779, 2785, 2787, 2793, 2798, 2803, 2807, 2814, 2816, 2827, 2866, 2876, 2878, 2881, 2885, 2889, 2899, 2901, 2907, 2909, 2918, 2930, 2944, 2949, 2952, 2959, 2964, 2972, 2974, 2980, 2985, 2989, 2994, 3000, 3007, 3013, 3015, 3024, 3030, 3038, 3044, 3049, 3054, 3062, 3077, 3079, 3083, 3087, 3090, 3093, 3102, 3105, 3108, 3114, 3120, 3124, 3136, 3142, 3145, 3150, 3154, 3161, 3171, 3173, 3197, 3209, 3214, 3216, 3220, 3223, 3226, 3236, 3239, 3249, 3254, 3259, 3262, 3265, 3273, 3279, 3286, 3294, 3297, 3308, 3312, 3318, 3325, 3328, 3337, 3351, 3354, 3368, 3379, 3382, 3394, 3399, 3412, 3417, 3430, 3439, 3442, 3445, 3452, 3455, 3467, 3473, 3475, 3483, 3491, 3499, 3511, 3516, 3527, 3538, 3546, 3554, 3561, 3568, 3570, 3573, 3578, 3583, 3602, 3611, 3614, 3641, 3650, 3653, 3657, 3661, 3665, 3672, 3676, 3680, 3684, 3688, 3693, 3697, 3702, 3708, 3713, 3720, 3724, 3730, 3734, 3739, 3747, 3753, 3758, 3765, 3770, 3774, 3779, 3785, 3792, 3797, 3804, 3809, 3816, 3820, 3828, 3832, 3834, 3837, 3842, 3852, 3867, 3870, 3878, 3885, 3890, 3896, 3900, 3907, 3912, 3915, 3918, 3922, 3931, 3949, 3952, 3984, 3989, 3995, 4015, 4020, 4026, 4029, 4033, 4037, 4043, 4046, 4050, 4054, 4059, 4062, 4065, 4068, 4081, 4087, 4095, 4102, 4107, 4110, 4117, 4120, 4128, 4131, 4136, 4143, 4146, 4166, 4178, 4181, 4187, 4192, 4201, 4209, 4214, 4220, 4227, 4235, 4238, 4249, 4251, 4265, 4271, 4279, 4281, 4287, 4291, 4294, 4297, 4302, 4307, 4311, 4314, 4317, 4320, 4323, 4331, 4342, 4345, 4348, 4353, 4356, 4360, 4364, 4370, 4378, 4381, 4394, 4399, 4401, 4406, 4413, 4420, 4429, 4437, 4445, 4452, 4460, 4467, 4475, 4479, 4483, 4485, 4491, 4496, 4500, 4507, 4512, 4517, 4522, 4524, 4534, 4544, 4560, 4578, 4590, 4597, 4612, 4617, 4620, 4625, 4630, 4635, 4638, 4641, 4646, 4653, 4657, 4662, 4669, 4673, 4679, 4688, 4697, 4709, 4711, 4724, 4730, 4734, 4736, 4743, 4756, 4763, 4765, 4781, 4785, 4789, 4794, 4799, 4804, 4809, 4812, 4824, 4877, 4886, 4890, 4899, 4903, 4912, 4916, 4921, 4924, 4928, 4933, 4935, 4944, 4949, 4960, 4964, 4978, 4986, 5024, 5026, 5045, 5048, 5075, 5079, 5083, 5087, 5091, 5094, 5109, 5116, 5130, 5143, 5168, 5187, 5202, 5218, 5225, 5236, 5239, 5258, 5261, 5274, 5278, 5298, 5310, 5314, 5336, 5340, 5350, 5354, 5360, 5364, 5368, 5372, 5379, 5384, 5395, 5399, 5402, 5407, 5413, 5424, 5428, 5431, 5435, 5439, 5442, 5452, 5455, 5459, 5464, 5470, 5473, 5478, 5481, 5488, 5490, 5496, 5500, 5509, 5514, 5516, 5526, 5529, 5534, 5542, 5545, 5550, 5552, 5554, 5560, 5577, 5583, 5596, 5602, 5606, 5611, 5641, 5656, 5661, 5665, 5678, 5682, 5684, 5693, 5699, 5701, 5705, 5708, 5711, 5714, 5717, 5719, 5722, 5726, 5734, 5739, 5742, 5748, 5752, 5756, 5761, 5763, 5767, 5771, 5778, 5784, 5788, 5790, 5792, 5805, 5813, 5821, 5832, 5842, 5847, 5851, 5855, 5862, 5865, 5867, 5875, 5879, 5882, 5889, 5896, 5901, 5908, 5911, 5913, 5916, 5922, 5927, 5931, 5938, 5948, 5955, 5958, 5961, 5965, 5976, 5979, 5982, 5985, 5988, 5995, 5998, 6001, 6008, 6020, 6027, 6029, 6034, 6039, 6041, 6047, 6054, 6059, 6064, 6068, 6072, 6076, 6078, 6082, 6086, 6089, 6092, 6094, 6104, 6106, 6111, 6115, 6120, 6124, 6131, 6136, 6140, 6143, 6149, 6152, 6171, 6178, 6182, 6185, 6189, 6193, 6196, 6199, 6204, 6213, 6220, 6224, 6228, 6232, 6235, 6237, 6242, 6246, 6251, 6257, 6264, 6269, 6274, 6283, 6290, 6298, 6309, 6314, 6318, 6321, 6325, 6330, 6334, 6339, 6347, 6358, 6363, 6367, 6370, 6373, 6375, 6378, 6381, 6384, 6394, 6399, 6405, 6409, 6411, 6418, 6423, 6429, 6431, 6436, 6440, 6444, 6446, 6449, 6456, 6461, 6464, 6470, 6474, 6480, 6489, 6495, 6497, 6502, 6505, 6514, 6521, 6523, 6530, 6535, 6538, 6548, 6559, 6564, 6568, 6576, 6586, 6593, 6599, 6610, 6616, 6626, 6635, 6639, 6642, 6644, 6646, 6650, 6658, 6661, 6666, 6671, 6678, 6680, 6686, 6690, 6693, 6698, 6701, 6703, 6709, 6718, 6724, 6727, 6735, 6738, 6742, 6748, 6750, 6753, 6757, 6762, 6769, 6776, 6778, 6784, 6786, 6791, 6793, 6797, 6806, 6810, 6818, 6820, 6834, 6837, 6845, 6854, 6860, 6865, 6873, 6875, 6880, 6884, 6889, 6894, 6900, 6916, 6918, 6927, 6942, 6947, 6950, 6956, 6961, 6974, 6979, 6983, 6990, 7009, 7021, 7026, 7034, 7036, 7038, 7047, 7050, 7055, 7060, 7063, 7074, 7082, 7087, 7089, 7092, 7096, 7107, 7128, 7136, 7149, 7159, 7165, 7171, 7174, 7177, 7203, 7205, 7226, 7236, 7249, 7254, 7258, 7260, 7272, 7279, 7285, 7291, 7295, 7306, 7319, 7323, 7328, 7331, 7334, 7343, 7354, 7356, 7360, 7365, 7374, 7379, 7387, 7397, 7405, 7409, 7412, 7419, 7431, 7435, 7442, 7450, 7452, 7461, 7464, 7476, 7485, 7492, 7501, 7511, 7516, 7520, 7522, 7525, 7530, 7535, 7543, 7549, 7552, 7556, 7558, 7565, 7575, 7583, 7591, 7599, 7616, 7623, 7631, 7648, 7654, 7667, 7669, 7680, 7682, 7690, 7696, 7701, 7709, 7714, 7717, 7726, 7733, 7738, 7742, 7747, 7753, 7758, 7766, 7821, 7828, 7834, 7836, 7838, 7840, 7846, 7850, 7854, 7865, 7868, 7872, 7876, 7880, 7883, 7886, 7889, 7898, 7903, 7907, 7940, 7950, 7954, 7960, 7965, 7974, 7982, 7993, 8001, 8010, 8019, 8024, 8028, 8038, 8043, 8051, 8056, 8059, 8066, 8072, 8080, 8088, 8091, 8098, 8100, 8103, 8109, 8118, 8122, 8136, 8139, 8141, 8147, 8157, 8159, 8161, 8169, 8172, 8175, 8185, 8193, 8199, 8205, 8212, 8216, 8220, 8223, 8226, 8232, 8239, 8242, 8250, 8252, 8261, 8266, 8268, 8275, 8281, 8284, 8296, 8303, 8305, 8309, 8315, 8320, 8324, 8327, 8330, 8339, 8342, 8345, 8349, 8353, 8355, 8358, 8361, 8367, 8374, 8381, 8387, 8389, 8393, 8398, 8416, 8421, 8423, 8432, 8439, 8443, 8455, 8458, 8471, 8474, 8478, 8487, 8494, 8499, 8504, 8508, 8511, 8514, 8517, 8520, 8523, 8526, 8529] \ No newline at end of file +[4, 1, 592, 8525, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 2, 199, 7, 199, 2, 200, 7, 200, 2, 201, 7, 201, 2, 202, 7, 202, 2, 203, 7, 203, 2, 204, 7, 204, 2, 205, 7, 205, 2, 206, 7, 206, 2, 207, 7, 207, 2, 208, 7, 208, 2, 209, 7, 209, 2, 210, 7, 210, 2, 211, 7, 211, 2, 212, 7, 212, 2, 213, 7, 213, 2, 214, 7, 214, 2, 215, 7, 215, 2, 216, 7, 216, 2, 217, 7, 217, 2, 218, 7, 218, 2, 219, 7, 219, 2, 220, 7, 220, 2, 221, 7, 221, 2, 222, 7, 222, 2, 223, 7, 223, 2, 224, 7, 224, 2, 225, 7, 225, 2, 226, 7, 226, 2, 227, 7, 227, 2, 228, 7, 228, 2, 229, 7, 229, 2, 230, 7, 230, 2, 231, 7, 231, 2, 232, 7, 232, 2, 233, 7, 233, 2, 234, 7, 234, 2, 235, 7, 235, 2, 236, 7, 236, 2, 237, 7, 237, 2, 238, 7, 238, 2, 239, 7, 239, 2, 240, 7, 240, 2, 241, 7, 241, 2, 242, 7, 242, 2, 243, 7, 243, 2, 244, 7, 244, 2, 245, 7, 245, 2, 246, 7, 246, 2, 247, 7, 247, 2, 248, 7, 248, 2, 249, 7, 249, 2, 250, 7, 250, 2, 251, 7, 251, 2, 252, 7, 252, 2, 253, 7, 253, 2, 254, 7, 254, 2, 255, 7, 255, 2, 256, 7, 256, 2, 257, 7, 257, 2, 258, 7, 258, 2, 259, 7, 259, 2, 260, 7, 260, 2, 261, 7, 261, 2, 262, 7, 262, 2, 263, 7, 263, 2, 264, 7, 264, 2, 265, 7, 265, 2, 266, 7, 266, 2, 267, 7, 267, 2, 268, 7, 268, 2, 269, 7, 269, 2, 270, 7, 270, 2, 271, 7, 271, 2, 272, 7, 272, 2, 273, 7, 273, 2, 274, 7, 274, 2, 275, 7, 275, 2, 276, 7, 276, 2, 277, 7, 277, 2, 278, 7, 278, 2, 279, 7, 279, 2, 280, 7, 280, 2, 281, 7, 281, 2, 282, 7, 282, 2, 283, 7, 283, 2, 284, 7, 284, 2, 285, 7, 285, 2, 286, 7, 286, 2, 287, 7, 287, 2, 288, 7, 288, 2, 289, 7, 289, 2, 290, 7, 290, 2, 291, 7, 291, 2, 292, 7, 292, 2, 293, 7, 293, 2, 294, 7, 294, 2, 295, 7, 295, 2, 296, 7, 296, 2, 297, 7, 297, 2, 298, 7, 298, 2, 299, 7, 299, 2, 300, 7, 300, 2, 301, 7, 301, 2, 302, 7, 302, 2, 303, 7, 303, 2, 304, 7, 304, 2, 305, 7, 305, 2, 306, 7, 306, 2, 307, 7, 307, 2, 308, 7, 308, 2, 309, 7, 309, 2, 310, 7, 310, 2, 311, 7, 311, 2, 312, 7, 312, 2, 313, 7, 313, 2, 314, 7, 314, 2, 315, 7, 315, 2, 316, 7, 316, 2, 317, 7, 317, 2, 318, 7, 318, 2, 319, 7, 319, 2, 320, 7, 320, 2, 321, 7, 321, 2, 322, 7, 322, 2, 323, 7, 323, 2, 324, 7, 324, 2, 325, 7, 325, 2, 326, 7, 326, 2, 327, 7, 327, 2, 328, 7, 328, 2, 329, 7, 329, 2, 330, 7, 330, 2, 331, 7, 331, 2, 332, 7, 332, 2, 333, 7, 333, 2, 334, 7, 334, 2, 335, 7, 335, 2, 336, 7, 336, 2, 337, 7, 337, 2, 338, 7, 338, 2, 339, 7, 339, 2, 340, 7, 340, 2, 341, 7, 341, 2, 342, 7, 342, 2, 343, 7, 343, 2, 344, 7, 344, 2, 345, 7, 345, 2, 346, 7, 346, 2, 347, 7, 347, 2, 348, 7, 348, 2, 349, 7, 349, 2, 350, 7, 350, 2, 351, 7, 351, 2, 352, 7, 352, 2, 353, 7, 353, 2, 354, 7, 354, 2, 355, 7, 355, 2, 356, 7, 356, 2, 357, 7, 357, 2, 358, 7, 358, 2, 359, 7, 359, 2, 360, 7, 360, 2, 361, 7, 361, 2, 362, 7, 362, 2, 363, 7, 363, 2, 364, 7, 364, 2, 365, 7, 365, 2, 366, 7, 366, 2, 367, 7, 367, 2, 368, 7, 368, 2, 369, 7, 369, 2, 370, 7, 370, 2, 371, 7, 371, 2, 372, 7, 372, 2, 373, 7, 373, 2, 374, 7, 374, 2, 375, 7, 375, 2, 376, 7, 376, 2, 377, 7, 377, 2, 378, 7, 378, 2, 379, 7, 379, 2, 380, 7, 380, 2, 381, 7, 381, 2, 382, 7, 382, 2, 383, 7, 383, 2, 384, 7, 384, 2, 385, 7, 385, 2, 386, 7, 386, 2, 387, 7, 387, 2, 388, 7, 388, 2, 389, 7, 389, 2, 390, 7, 390, 2, 391, 7, 391, 2, 392, 7, 392, 2, 393, 7, 393, 2, 394, 7, 394, 2, 395, 7, 395, 2, 396, 7, 396, 2, 397, 7, 397, 2, 398, 7, 398, 2, 399, 7, 399, 2, 400, 7, 400, 2, 401, 7, 401, 2, 402, 7, 402, 2, 403, 7, 403, 2, 404, 7, 404, 2, 405, 7, 405, 2, 406, 7, 406, 2, 407, 7, 407, 2, 408, 7, 408, 2, 409, 7, 409, 2, 410, 7, 410, 2, 411, 7, 411, 2, 412, 7, 412, 2, 413, 7, 413, 2, 414, 7, 414, 2, 415, 7, 415, 2, 416, 7, 416, 2, 417, 7, 417, 2, 418, 7, 418, 2, 419, 7, 419, 2, 420, 7, 420, 2, 421, 7, 421, 2, 422, 7, 422, 2, 423, 7, 423, 2, 424, 7, 424, 2, 425, 7, 425, 2, 426, 7, 426, 2, 427, 7, 427, 2, 428, 7, 428, 2, 429, 7, 429, 2, 430, 7, 430, 2, 431, 7, 431, 2, 432, 7, 432, 2, 433, 7, 433, 2, 434, 7, 434, 2, 435, 7, 435, 2, 436, 7, 436, 2, 437, 7, 437, 2, 438, 7, 438, 2, 439, 7, 439, 2, 440, 7, 440, 2, 441, 7, 441, 2, 442, 7, 442, 2, 443, 7, 443, 2, 444, 7, 444, 2, 445, 7, 445, 2, 446, 7, 446, 2, 447, 7, 447, 2, 448, 7, 448, 2, 449, 7, 449, 2, 450, 7, 450, 2, 451, 7, 451, 2, 452, 7, 452, 2, 453, 7, 453, 2, 454, 7, 454, 2, 455, 7, 455, 2, 456, 7, 456, 2, 457, 7, 457, 2, 458, 7, 458, 2, 459, 7, 459, 2, 460, 7, 460, 2, 461, 7, 461, 2, 462, 7, 462, 2, 463, 7, 463, 2, 464, 7, 464, 2, 465, 7, 465, 2, 466, 7, 466, 2, 467, 7, 467, 2, 468, 7, 468, 2, 469, 7, 469, 2, 470, 7, 470, 1, 0, 5, 0, 944, 8, 0, 10, 0, 12, 0, 947, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 953, 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, 1073, 8, 2, 3, 2, 1075, 8, 2, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 1084, 8, 4, 1, 4, 5, 4, 1087, 8, 4, 10, 4, 12, 4, 1090, 9, 4, 1, 5, 1, 5, 1, 5, 3, 5, 1095, 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, 1130, 8, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 1140, 8, 6, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 1146, 8, 7, 1, 7, 5, 7, 1149, 8, 7, 10, 7, 12, 7, 1152, 9, 7, 1, 8, 1, 8, 1, 8, 1, 8, 3, 8, 1158, 8, 8, 1, 8, 5, 8, 1161, 8, 8, 10, 8, 12, 8, 1164, 9, 8, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1170, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 1181, 8, 10, 1, 10, 1, 10, 1, 11, 1, 11, 5, 11, 1187, 8, 11, 10, 11, 12, 11, 1190, 9, 11, 1, 11, 3, 11, 1193, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1205, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 1211, 8, 11, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1217, 8, 12, 1, 12, 1, 12, 3, 12, 1221, 8, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1226, 8, 12, 1, 12, 1, 12, 3, 12, 1230, 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, 1243, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1253, 8, 12, 3, 12, 1255, 8, 12, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 1261, 8, 13, 1, 13, 5, 13, 1264, 8, 13, 10, 13, 12, 13, 1267, 9, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 3, 15, 1279, 8, 15, 1, 15, 3, 15, 1282, 8, 15, 1, 15, 1, 15, 1, 15, 3, 15, 1287, 8, 15, 1, 15, 5, 15, 1290, 8, 15, 10, 15, 12, 15, 1293, 9, 15, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 3, 17, 1303, 8, 17, 1, 18, 1, 18, 3, 18, 1307, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 3, 19, 1319, 8, 19, 1, 20, 1, 20, 3, 20, 1323, 8, 20, 1, 20, 3, 20, 1326, 8, 20, 1, 20, 1, 20, 3, 20, 1330, 8, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 1342, 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, 1360, 8, 21, 1, 22, 1, 22, 1, 22, 5, 22, 1365, 8, 22, 10, 22, 12, 22, 1368, 9, 22, 1, 23, 1, 23, 1, 23, 5, 23, 1373, 8, 23, 10, 23, 12, 23, 1376, 9, 23, 1, 24, 1, 24, 3, 24, 1380, 8, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 3, 25, 1387, 8, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 1395, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 1401, 8, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 1409, 8, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 3, 28, 1417, 8, 28, 1, 29, 1, 29, 3, 29, 1421, 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, 1435, 8, 31, 1, 32, 1, 32, 1, 32, 3, 32, 1440, 8, 32, 1, 33, 1, 33, 1, 33, 3, 33, 1445, 8, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 3, 34, 1457, 8, 34, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 1463, 8, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 3, 38, 1475, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1480, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1490, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1496, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1501, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1510, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1517, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1522, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1527, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1537, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1542, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1547, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1554, 8, 38, 1, 38, 1, 38, 3, 38, 1558, 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, 1572, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1578, 8, 38, 1, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1584, 8, 38, 1, 38, 1, 38, 1, 38, 3, 38, 1589, 8, 38, 1, 39, 1, 39, 1, 39, 5, 39, 1594, 8, 39, 10, 39, 12, 39, 1597, 9, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 3, 40, 1605, 8, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 3, 42, 1614, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 5, 42, 1621, 8, 42, 10, 42, 12, 42, 1624, 9, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1632, 8, 42, 1, 42, 1, 42, 3, 42, 1636, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1648, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1656, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1666, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1686, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1691, 8, 42, 1, 42, 3, 42, 1694, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1701, 8, 42, 1, 42, 3, 42, 1704, 8, 42, 1, 42, 1, 42, 3, 42, 1708, 8, 42, 1, 42, 1, 42, 3, 42, 1712, 8, 42, 1, 42, 3, 42, 1715, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1720, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1725, 8, 42, 1, 42, 1, 42, 3, 42, 1729, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1738, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1744, 8, 42, 1, 42, 1, 42, 3, 42, 1748, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1757, 8, 42, 1, 42, 3, 42, 1760, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1766, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1775, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 4, 42, 1785, 8, 42, 11, 42, 12, 42, 1786, 1, 42, 1, 42, 3, 42, 1791, 8, 42, 1, 42, 1, 42, 3, 42, 1795, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1800, 8, 42, 1, 42, 3, 42, 1803, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1809, 8, 42, 4, 42, 1811, 8, 42, 11, 42, 12, 42, 1812, 1, 42, 1, 42, 3, 42, 1817, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1823, 8, 42, 1, 42, 1, 42, 3, 42, 1827, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1832, 8, 42, 1, 42, 1, 42, 1, 42, 3, 42, 1837, 8, 42, 1, 42, 1, 42, 3, 42, 1841, 8, 42, 1, 42, 3, 42, 1844, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 1851, 8, 43, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 5, 46, 1862, 8, 46, 10, 46, 12, 46, 1865, 9, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 3, 48, 1877, 8, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1902, 8, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1910, 8, 50, 10, 50, 12, 50, 1913, 9, 50, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1919, 8, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1924, 8, 51, 1, 51, 1, 51, 3, 51, 1928, 8, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1935, 8, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1940, 8, 51, 1, 51, 3, 51, 1943, 8, 51, 3, 51, 1945, 8, 51, 1, 52, 1, 52, 1, 52, 3, 52, 1950, 8, 52, 1, 53, 1, 53, 3, 53, 1954, 8, 53, 1, 53, 1, 53, 3, 53, 1958, 8, 53, 1, 53, 1, 53, 3, 53, 1962, 8, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1967, 8, 53, 1, 53, 3, 53, 1970, 8, 53, 1, 53, 1, 53, 3, 53, 1974, 8, 53, 1, 53, 3, 53, 1977, 8, 53, 1, 53, 1, 53, 3, 53, 1981, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1989, 8, 53, 1, 53, 1, 53, 1, 53, 3, 53, 1994, 8, 53, 1, 53, 3, 53, 1997, 8, 53, 1, 53, 1, 53, 3, 53, 2001, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 2007, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 2016, 8, 54, 1, 54, 1, 54, 3, 54, 2020, 8, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 3, 54, 2030, 8, 54, 1, 54, 1, 54, 1, 54, 3, 54, 2035, 8, 54, 5, 54, 2037, 8, 54, 10, 54, 12, 54, 2040, 9, 54, 1, 54, 3, 54, 2043, 8, 54, 5, 54, 2045, 8, 54, 10, 54, 12, 54, 2048, 9, 54, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 2054, 8, 55, 1, 55, 1, 55, 1, 55, 3, 55, 2059, 8, 55, 5, 55, 2061, 8, 55, 10, 55, 12, 55, 2064, 9, 55, 1, 55, 1, 55, 3, 55, 2068, 8, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 5, 56, 2078, 8, 56, 10, 56, 12, 56, 2081, 9, 56, 1, 56, 1, 56, 3, 56, 2085, 8, 56, 1, 57, 1, 57, 3, 57, 2089, 8, 57, 1, 57, 1, 57, 3, 57, 2093, 8, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2098, 8, 57, 1, 57, 1, 57, 3, 57, 2102, 8, 57, 1, 57, 3, 57, 2105, 8, 57, 1, 57, 3, 57, 2108, 8, 57, 1, 57, 3, 57, 2111, 8, 57, 1, 57, 3, 57, 2114, 8, 57, 1, 57, 3, 57, 2117, 8, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2122, 8, 57, 1, 57, 3, 57, 2125, 8, 57, 1, 57, 3, 57, 2128, 8, 57, 1, 57, 3, 57, 2131, 8, 57, 1, 57, 3, 57, 2134, 8, 57, 1, 57, 3, 57, 2137, 8, 57, 1, 57, 1, 57, 1, 57, 1, 57, 3, 57, 2143, 8, 57, 1, 57, 1, 57, 3, 57, 2147, 8, 57, 1, 57, 3, 57, 2150, 8, 57, 1, 57, 3, 57, 2153, 8, 57, 1, 57, 3, 57, 2156, 8, 57, 1, 57, 3, 57, 2159, 8, 57, 3, 57, 2161, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2168, 8, 58, 1, 59, 1, 59, 1, 59, 1, 59, 5, 59, 2174, 8, 59, 10, 59, 12, 59, 2177, 9, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 5, 60, 2184, 8, 60, 10, 60, 12, 60, 2187, 9, 60, 1, 61, 1, 61, 3, 61, 2191, 8, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 5, 61, 2199, 8, 61, 10, 61, 12, 61, 2202, 9, 61, 3, 61, 2204, 8, 61, 1, 62, 1, 62, 1, 62, 3, 62, 2209, 8, 62, 1, 62, 5, 62, 2212, 8, 62, 10, 62, 12, 62, 2215, 9, 62, 1, 62, 1, 62, 3, 62, 2219, 8, 62, 1, 62, 3, 62, 2222, 8, 62, 1, 63, 1, 63, 1, 63, 3, 63, 2227, 8, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 3, 63, 2236, 8, 63, 3, 63, 2238, 8, 63, 1, 63, 1, 63, 3, 63, 2242, 8, 63, 1, 63, 3, 63, 2245, 8, 63, 1, 63, 1, 63, 3, 63, 2249, 8, 63, 1, 63, 5, 63, 2252, 8, 63, 10, 63, 12, 63, 2255, 9, 63, 1, 64, 1, 64, 3, 64, 2259, 8, 64, 1, 64, 1, 64, 3, 64, 2263, 8, 64, 1, 64, 3, 64, 2266, 8, 64, 1, 64, 1, 64, 3, 64, 2270, 8, 64, 1, 65, 3, 65, 2273, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2278, 8, 65, 1, 65, 3, 65, 2281, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2286, 8, 65, 1, 65, 3, 65, 2289, 8, 65, 1, 65, 1, 65, 3, 65, 2293, 8, 65, 1, 65, 3, 65, 2296, 8, 65, 1, 65, 3, 65, 2299, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2304, 8, 65, 1, 65, 3, 65, 2307, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2315, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 4, 65, 2325, 8, 65, 11, 65, 12, 65, 2326, 1, 65, 1, 65, 3, 65, 2331, 8, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2338, 8, 65, 1, 65, 1, 65, 1, 65, 3, 65, 2343, 8, 65, 1, 65, 3, 65, 2346, 8, 65, 1, 65, 3, 65, 2349, 8, 65, 1, 65, 3, 65, 2352, 8, 65, 1, 66, 1, 66, 1, 66, 3, 66, 2357, 8, 66, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2366, 8, 68, 10, 68, 12, 68, 2369, 9, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2374, 8, 68, 1, 68, 1, 68, 3, 68, 2378, 8, 68, 1, 68, 3, 68, 2381, 8, 68, 1, 68, 3, 68, 2384, 8, 68, 1, 68, 5, 68, 2387, 8, 68, 10, 68, 12, 68, 2390, 9, 68, 1, 68, 1, 68, 5, 68, 2394, 8, 68, 10, 68, 12, 68, 2397, 9, 68, 3, 68, 2399, 8, 68, 1, 68, 1, 68, 3, 68, 2403, 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2409, 8, 68, 10, 68, 12, 68, 2412, 9, 68, 1, 68, 1, 68, 3, 68, 2416, 8, 68, 1, 68, 3, 68, 2419, 8, 68, 1, 68, 3, 68, 2422, 8, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2429, 8, 68, 1, 68, 5, 68, 2432, 8, 68, 10, 68, 12, 68, 2435, 9, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 2443, 8, 68, 1, 68, 3, 68, 2446, 8, 68, 1, 68, 3, 68, 2449, 8, 68, 1, 68, 5, 68, 2452, 8, 68, 10, 68, 12, 68, 2455, 9, 68, 3, 68, 2457, 8, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 2467, 8, 70, 10, 70, 12, 70, 2470, 9, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 5, 71, 2477, 8, 71, 10, 71, 12, 71, 2480, 9, 71, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 2496, 8, 74, 1, 75, 1, 75, 3, 75, 2500, 8, 75, 1, 75, 1, 75, 3, 75, 2504, 8, 75, 3, 75, 2506, 8, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 2523, 8, 78, 3, 78, 2525, 8, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 5, 80, 2539, 8, 80, 10, 80, 12, 80, 2542, 9, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 2552, 8, 81, 1, 81, 3, 81, 2555, 8, 81, 1, 81, 3, 81, 2558, 8, 81, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 3, 83, 2567, 8, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 3, 84, 2576, 8, 84, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 3, 88, 2592, 8, 88, 1, 88, 3, 88, 2595, 8, 88, 1, 88, 3, 88, 2598, 8, 88, 1, 88, 1, 88, 1, 88, 1, 88, 5, 88, 2604, 8, 88, 10, 88, 12, 88, 2607, 9, 88, 1, 88, 3, 88, 2610, 8, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 3, 89, 2617, 8, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 3, 90, 2626, 8, 90, 1, 90, 1, 90, 3, 90, 2630, 8, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 2636, 8, 90, 1, 91, 1, 91, 3, 91, 2640, 8, 91, 1, 91, 3, 91, 2643, 8, 91, 1, 91, 3, 91, 2646, 8, 91, 1, 91, 3, 91, 2649, 8, 91, 1, 91, 3, 91, 2652, 8, 91, 1, 92, 1, 92, 1, 92, 1, 92, 3, 92, 2658, 8, 92, 1, 93, 1, 93, 3, 93, 2662, 8, 93, 1, 93, 1, 93, 1, 93, 3, 93, 2667, 8, 93, 1, 93, 1, 93, 3, 93, 2671, 8, 93, 1, 93, 3, 93, 2674, 8, 93, 1, 93, 3, 93, 2677, 8, 93, 1, 93, 3, 93, 2680, 8, 93, 1, 93, 1, 93, 1, 93, 3, 93, 2685, 8, 93, 1, 94, 1, 94, 1, 94, 1, 94, 3, 94, 2691, 8, 94, 1, 94, 1, 94, 3, 94, 2695, 8, 94, 1, 95, 1, 95, 3, 95, 2699, 8, 95, 1, 95, 1, 95, 3, 95, 2703, 8, 95, 1, 95, 1, 95, 4, 95, 2707, 8, 95, 11, 95, 12, 95, 2708, 3, 95, 2711, 8, 95, 1, 96, 1, 96, 1, 96, 3, 96, 2716, 8, 96, 1, 96, 1, 96, 4, 96, 2720, 8, 96, 11, 96, 12, 96, 2721, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2728, 8, 97, 1, 97, 1, 97, 3, 97, 2732, 8, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2747, 8, 97, 1, 97, 1, 97, 1, 97, 3, 97, 2752, 8, 97, 1, 97, 3, 97, 2755, 8, 97, 3, 97, 2757, 8, 97, 1, 98, 3, 98, 2760, 8, 98, 1, 98, 1, 98, 3, 98, 2764, 8, 98, 1, 99, 1, 99, 3, 99, 2768, 8, 99, 1, 99, 3, 99, 2771, 8, 99, 1, 99, 3, 99, 2774, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 2782, 8, 99, 1, 99, 1, 99, 1, 99, 1, 99, 3, 99, 2788, 8, 99, 3, 99, 2790, 8, 99, 1, 100, 1, 100, 1, 100, 1, 100, 3, 100, 2796, 8, 100, 1, 100, 1, 100, 1, 100, 3, 100, 2801, 8, 100, 1, 101, 1, 101, 1, 101, 3, 101, 2806, 8, 101, 1, 101, 1, 101, 3, 101, 2810, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 5, 101, 2817, 8, 101, 10, 101, 12, 101, 2820, 9, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 2828, 8, 102, 10, 102, 12, 102, 2831, 9, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 3, 103, 2869, 8, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 4, 104, 2877, 8, 104, 11, 104, 12, 104, 2878, 3, 104, 2881, 8, 104, 1, 104, 3, 104, 2884, 8, 104, 1, 105, 1, 105, 3, 105, 2888, 8, 105, 1, 105, 1, 105, 3, 105, 2892, 8, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 4, 106, 2900, 8, 106, 11, 106, 12, 106, 2901, 3, 106, 2904, 8, 106, 1, 106, 1, 106, 4, 106, 2908, 8, 106, 11, 106, 12, 106, 2909, 3, 106, 2912, 8, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 5, 107, 2919, 8, 107, 10, 107, 12, 107, 2922, 9, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 5, 108, 2931, 8, 108, 10, 108, 12, 108, 2934, 9, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 3, 111, 2947, 8, 111, 1, 111, 1, 111, 1, 111, 3, 111, 2952, 8, 111, 1, 111, 3, 111, 2955, 8, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 2962, 8, 111, 1, 112, 1, 112, 1, 112, 3, 112, 2967, 8, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 2975, 8, 113, 3, 113, 2977, 8, 113, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2983, 8, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2988, 8, 114, 1, 114, 1, 114, 3, 114, 2992, 8, 114, 1, 114, 1, 114, 1, 114, 3, 114, 2997, 8, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 3003, 8, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 3010, 8, 114, 1, 114, 1, 114, 1, 114, 1, 114, 3, 114, 3016, 8, 114, 3, 114, 3018, 8, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 3027, 8, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 3033, 8, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 3, 115, 3041, 8, 115, 1, 116, 1, 116, 1, 116, 1, 116, 3, 116, 3047, 8, 116, 1, 116, 1, 116, 1, 116, 3, 116, 3052, 8, 116, 1, 116, 1, 116, 1, 116, 3, 116, 3057, 8, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 3, 117, 3065, 8, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 3, 118, 3080, 8, 118, 3, 118, 3082, 8, 118, 1, 118, 1, 118, 3, 118, 3086, 8, 118, 1, 118, 1, 118, 3, 118, 3090, 8, 118, 1, 118, 3, 118, 3093, 8, 118, 1, 118, 3, 118, 3096, 8, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 3105, 8, 119, 1, 119, 3, 119, 3108, 8, 119, 1, 119, 3, 119, 3111, 8, 119, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3117, 8, 120, 1, 120, 1, 120, 5, 120, 3121, 8, 120, 10, 120, 12, 120, 3124, 9, 120, 1, 120, 3, 120, 3127, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3139, 8, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 3145, 8, 120, 1, 121, 3, 121, 3148, 8, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3153, 8, 121, 1, 121, 1, 121, 3, 121, 3157, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3164, 8, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 3174, 8, 121, 3, 121, 3176, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 125, 1, 125, 3, 125, 3200, 8, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 3212, 8, 125, 1, 125, 4, 125, 3215, 8, 125, 11, 125, 12, 125, 3216, 3, 125, 3219, 8, 125, 1, 125, 1, 125, 3, 125, 3223, 8, 125, 1, 125, 3, 125, 3226, 8, 125, 1, 125, 3, 125, 3229, 8, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 3239, 8, 125, 1, 125, 3, 125, 3242, 8, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 3252, 8, 125, 1, 125, 5, 125, 3255, 8, 125, 10, 125, 12, 125, 3258, 9, 125, 1, 125, 1, 125, 3, 125, 3262, 8, 125, 1, 125, 3, 125, 3265, 8, 125, 1, 125, 3, 125, 3268, 8, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 3, 125, 3276, 8, 125, 1, 126, 1, 126, 1, 126, 1, 126, 3, 126, 3282, 8, 126, 1, 127, 1, 127, 1, 127, 5, 127, 3287, 8, 127, 10, 127, 12, 127, 3290, 9, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 3, 128, 3297, 8, 128, 1, 128, 3, 128, 3300, 8, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 3311, 8, 130, 1, 131, 1, 131, 3, 131, 3315, 8, 131, 1, 131, 1, 131, 5, 131, 3319, 8, 131, 10, 131, 12, 131, 3322, 9, 131, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3328, 8, 132, 1, 133, 3, 133, 3331, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 3340, 8, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 5, 134, 3352, 8, 134, 10, 134, 12, 134, 3355, 9, 134, 3, 134, 3357, 8, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 5, 135, 3369, 8, 135, 10, 135, 12, 135, 3372, 9, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 3382, 8, 136, 1, 136, 3, 136, 3385, 8, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 5, 137, 3395, 8, 137, 10, 137, 12, 137, 3398, 9, 137, 1, 138, 1, 138, 3, 138, 3402, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 5, 138, 3413, 8, 138, 10, 138, 12, 138, 3416, 9, 138, 1, 138, 1, 138, 3, 138, 3420, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3433, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 5, 138, 3440, 8, 138, 10, 138, 12, 138, 3443, 9, 138, 3, 138, 3445, 8, 138, 1, 138, 3, 138, 3448, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3455, 8, 138, 1, 138, 3, 138, 3458, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3470, 8, 138, 1, 138, 1, 138, 1, 138, 1, 138, 3, 138, 3476, 8, 138, 3, 138, 3478, 8, 138, 1, 139, 1, 139, 1, 139, 1, 139, 5, 139, 3484, 8, 139, 10, 139, 12, 139, 3487, 9, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 3, 140, 3494, 8, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 3502, 8, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 3514, 8, 143, 1, 143, 1, 143, 1, 143, 3, 143, 3519, 8, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 3530, 8, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 3541, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 3, 145, 3549, 8, 145, 1, 145, 1, 145, 1, 145, 1, 145, 5, 145, 3555, 8, 145, 10, 145, 12, 145, 3558, 9, 145, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3564, 8, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3571, 8, 146, 3, 146, 3573, 8, 146, 1, 146, 3, 146, 3576, 8, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3581, 8, 146, 1, 146, 1, 146, 1, 146, 3, 146, 3586, 8, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 5, 148, 3603, 8, 148, 10, 148, 12, 148, 3606, 9, 148, 1, 148, 1, 148, 1, 148, 1, 148, 5, 148, 3612, 8, 148, 10, 148, 12, 148, 3615, 9, 148, 3, 148, 3617, 8, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 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, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3644, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3653, 8, 151, 1, 151, 3, 151, 3656, 8, 151, 1, 151, 1, 151, 3, 151, 3660, 8, 151, 1, 151, 1, 151, 3, 151, 3664, 8, 151, 1, 151, 1, 151, 3, 151, 3668, 8, 151, 1, 151, 1, 151, 1, 151, 5, 151, 3673, 8, 151, 10, 151, 12, 151, 3676, 9, 151, 1, 151, 3, 151, 3679, 8, 151, 1, 151, 1, 151, 3, 151, 3683, 8, 151, 1, 151, 1, 151, 3, 151, 3687, 8, 151, 1, 151, 1, 151, 3, 151, 3691, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3696, 8, 151, 1, 151, 1, 151, 3, 151, 3700, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3705, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3711, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3716, 8, 151, 1, 151, 1, 151, 1, 151, 5, 151, 3721, 8, 151, 10, 151, 12, 151, 3724, 9, 151, 1, 151, 3, 151, 3727, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3733, 8, 151, 1, 151, 1, 151, 3, 151, 3737, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3742, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3750, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3756, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3761, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3768, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3773, 8, 151, 1, 151, 1, 151, 3, 151, 3777, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3782, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3788, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3795, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3800, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3807, 8, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3812, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3819, 8, 151, 1, 151, 1, 151, 3, 151, 3823, 8, 151, 1, 151, 1, 151, 1, 151, 1, 151, 5, 151, 3829, 8, 151, 10, 151, 12, 151, 3832, 9, 151, 1, 151, 3, 151, 3835, 8, 151, 3, 151, 3837, 8, 151, 1, 152, 3, 152, 3840, 8, 152, 1, 152, 1, 152, 1, 152, 3, 152, 3845, 8, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 3, 152, 3855, 8, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 3, 153, 3870, 8, 153, 1, 153, 3, 153, 3873, 8, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 3, 153, 3881, 8, 153, 1, 154, 1, 154, 1, 154, 5, 154, 3886, 8, 154, 10, 154, 12, 154, 3889, 9, 154, 1, 155, 1, 155, 3, 155, 3893, 8, 155, 1, 156, 1, 156, 4, 156, 3897, 8, 156, 11, 156, 12, 156, 3898, 1, 157, 1, 157, 3, 157, 3903, 8, 157, 1, 157, 1, 157, 1, 157, 5, 157, 3908, 8, 157, 10, 157, 12, 157, 3911, 9, 157, 1, 157, 1, 157, 3, 157, 3915, 8, 157, 1, 157, 3, 157, 3918, 8, 157, 1, 158, 3, 158, 3921, 8, 158, 1, 158, 1, 158, 3, 158, 3925, 8, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3934, 8, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3952, 8, 159, 1, 159, 3, 159, 3955, 8, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3987, 8, 159, 1, 159, 1, 159, 1, 159, 3, 159, 3992, 8, 159, 1, 160, 1, 160, 1, 160, 1, 160, 3, 160, 3998, 8, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 3, 160, 4018, 8, 160, 1, 160, 1, 160, 1, 160, 3, 160, 4023, 8, 160, 1, 161, 1, 161, 1, 161, 1, 162, 3, 162, 4029, 8, 162, 1, 162, 3, 162, 4032, 8, 162, 1, 162, 1, 162, 3, 162, 4036, 8, 162, 1, 162, 1, 162, 3, 162, 4040, 8, 162, 1, 162, 1, 162, 1, 162, 1, 162, 3, 162, 4046, 8, 162, 1, 162, 3, 162, 4049, 8, 162, 1, 162, 1, 162, 3, 162, 4053, 8, 162, 1, 162, 1, 162, 3, 162, 4057, 8, 162, 1, 162, 1, 162, 1, 162, 3, 162, 4062, 8, 162, 1, 162, 3, 162, 4065, 8, 162, 1, 162, 3, 162, 4068, 8, 162, 1, 162, 3, 162, 4071, 8, 162, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 4084, 8, 164, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 4090, 8, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 3, 165, 4098, 8, 165, 1, 166, 1, 166, 1, 166, 5, 166, 4103, 8, 166, 10, 166, 12, 166, 4106, 9, 166, 1, 166, 1, 166, 3, 166, 4110, 8, 166, 1, 166, 3, 166, 4113, 8, 166, 1, 166, 1, 166, 1, 166, 5, 166, 4118, 8, 166, 10, 166, 12, 166, 4121, 9, 166, 3, 166, 4123, 8, 166, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 3, 168, 4131, 8, 168, 1, 168, 3, 168, 4134, 8, 168, 1, 169, 1, 169, 1, 169, 3, 169, 4139, 8, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 3, 169, 4146, 8, 169, 1, 169, 3, 169, 4149, 8, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 5, 169, 4167, 8, 169, 10, 169, 12, 169, 4170, 9, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 3, 169, 4181, 8, 169, 1, 170, 3, 170, 4184, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 4190, 8, 170, 1, 170, 5, 170, 4193, 8, 170, 10, 170, 12, 170, 4196, 9, 170, 1, 171, 1, 171, 1, 171, 1, 171, 5, 171, 4202, 8, 171, 10, 171, 12, 171, 4205, 9, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 3, 171, 4212, 8, 171, 1, 171, 1, 171, 1, 171, 3, 171, 4217, 8, 171, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 4223, 8, 172, 1, 172, 1, 172, 1, 172, 5, 172, 4228, 8, 172, 10, 172, 12, 172, 4231, 9, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 4238, 8, 172, 1, 172, 3, 172, 4241, 8, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 5, 173, 4252, 8, 173, 10, 173, 12, 173, 4255, 9, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 4268, 8, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 4274, 8, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 4282, 8, 174, 3, 174, 4284, 8, 174, 1, 175, 1, 175, 1, 176, 1, 176, 3, 176, 4290, 8, 176, 1, 176, 1, 176, 3, 176, 4294, 8, 176, 1, 176, 3, 176, 4297, 8, 176, 1, 176, 3, 176, 4300, 8, 176, 1, 176, 1, 176, 1, 176, 3, 176, 4305, 8, 176, 1, 176, 1, 176, 1, 176, 3, 176, 4310, 8, 176, 1, 176, 1, 176, 3, 176, 4314, 8, 176, 1, 176, 3, 176, 4317, 8, 176, 1, 176, 3, 176, 4320, 8, 176, 1, 176, 3, 176, 4323, 8, 176, 1, 176, 3, 176, 4326, 8, 176, 1, 177, 1, 177, 1, 177, 1, 177, 5, 177, 4332, 8, 177, 10, 177, 12, 177, 4335, 9, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 3, 178, 4345, 8, 178, 1, 178, 3, 178, 4348, 8, 178, 1, 178, 3, 178, 4351, 8, 178, 1, 178, 1, 178, 1, 178, 3, 178, 4356, 8, 178, 1, 178, 3, 178, 4359, 8, 178, 1, 178, 1, 178, 3, 178, 4363, 8, 178, 1, 179, 1, 179, 3, 179, 4367, 8, 179, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 4373, 8, 179, 1, 179, 1, 179, 1, 179, 1, 179, 5, 179, 4379, 8, 179, 10, 179, 12, 179, 4382, 9, 179, 3, 179, 4384, 8, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 5, 179, 4395, 8, 179, 10, 179, 12, 179, 4398, 9, 179, 1, 179, 1, 179, 3, 179, 4402, 8, 179, 3, 179, 4404, 8, 179, 1, 179, 4, 179, 4407, 8, 179, 11, 179, 12, 179, 4408, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 4416, 8, 179, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 3, 181, 4423, 8, 181, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 5, 182, 4430, 8, 182, 10, 182, 12, 182, 4433, 9, 182, 1, 183, 1, 183, 1, 183, 5, 183, 4438, 8, 183, 10, 183, 12, 183, 4441, 9, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 3, 184, 4448, 8, 184, 1, 185, 1, 185, 1, 185, 5, 185, 4453, 8, 185, 10, 185, 12, 185, 4456, 9, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 3, 186, 4463, 8, 186, 1, 187, 1, 187, 1, 187, 5, 187, 4468, 8, 187, 10, 187, 12, 187, 4471, 9, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 3, 188, 4478, 8, 188, 1, 189, 1, 189, 3, 189, 4482, 8, 189, 1, 189, 1, 189, 3, 189, 4486, 8, 189, 3, 189, 4488, 8, 189, 1, 189, 1, 189, 1, 190, 1, 190, 3, 190, 4494, 8, 190, 1, 190, 1, 190, 1, 190, 3, 190, 4499, 8, 190, 1, 191, 1, 191, 3, 191, 4503, 8, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 3, 191, 4510, 8, 191, 1, 192, 1, 192, 1, 192, 3, 192, 4515, 8, 192, 1, 193, 1, 193, 1, 193, 3, 193, 4520, 8, 193, 1, 193, 1, 193, 1, 193, 3, 193, 4525, 8, 193, 3, 193, 4527, 8, 193, 1, 193, 1, 193, 1, 194, 1, 194, 1, 194, 1, 195, 1, 195, 1, 195, 3, 195, 4537, 8, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 3, 195, 4547, 8, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 3, 195, 4563, 8, 195, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 5, 196, 4579, 8, 196, 10, 196, 12, 196, 4582, 9, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 3, 196, 4593, 8, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 3, 196, 4600, 8, 196, 1, 197, 1, 197, 1, 197, 1, 198, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 3, 199, 4615, 8, 199, 1, 199, 4, 199, 4618, 8, 199, 11, 199, 12, 199, 4619, 1, 199, 3, 199, 4623, 8, 199, 1, 200, 1, 200, 1, 200, 3, 200, 4628, 8, 200, 1, 200, 1, 200, 1, 200, 3, 200, 4633, 8, 200, 1, 200, 1, 200, 1, 200, 3, 200, 4638, 8, 200, 1, 200, 3, 200, 4641, 8, 200, 1, 200, 3, 200, 4644, 8, 200, 1, 201, 1, 201, 1, 201, 3, 201, 4649, 8, 201, 1, 201, 1, 201, 1, 201, 5, 201, 4654, 8, 201, 10, 201, 12, 201, 4657, 9, 201, 1, 201, 3, 201, 4660, 8, 201, 1, 202, 1, 202, 1, 202, 3, 202, 4665, 8, 202, 1, 202, 1, 202, 1, 202, 5, 202, 4670, 8, 202, 10, 202, 12, 202, 4673, 9, 202, 1, 202, 3, 202, 4676, 8, 202, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 4682, 8, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 3, 203, 4691, 8, 203, 1, 203, 1, 203, 1, 204, 1, 204, 1, 204, 5, 204, 4698, 8, 204, 10, 204, 12, 204, 4701, 9, 204, 1, 204, 1, 204, 1, 205, 1, 205, 1, 205, 1, 206, 1, 206, 1, 206, 1, 206, 4, 206, 4712, 8, 206, 11, 206, 12, 206, 4713, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 4727, 8, 207, 1, 207, 1, 207, 1, 207, 1, 207, 3, 207, 4733, 8, 207, 1, 207, 1, 207, 3, 207, 4737, 8, 207, 3, 207, 4739, 8, 207, 1, 208, 1, 208, 1, 208, 1, 209, 1, 209, 3, 209, 4746, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 4759, 8, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 3, 209, 4766, 8, 209, 3, 209, 4768, 8, 209, 1, 209, 1, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 5, 211, 4782, 8, 211, 10, 211, 12, 211, 4785, 9, 211, 1, 211, 3, 211, 4788, 8, 211, 1, 211, 1, 211, 3, 211, 4792, 8, 211, 1, 211, 1, 211, 1, 211, 3, 211, 4797, 8, 211, 1, 211, 1, 211, 1, 211, 3, 211, 4802, 8, 211, 1, 211, 1, 211, 1, 211, 3, 211, 4807, 8, 211, 1, 211, 1, 211, 1, 211, 3, 211, 4812, 8, 211, 1, 211, 3, 211, 4815, 8, 211, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4827, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4880, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4889, 8, 213, 1, 213, 1, 213, 3, 213, 4893, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4902, 8, 213, 1, 213, 1, 213, 3, 213, 4906, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4915, 8, 213, 1, 213, 1, 213, 3, 213, 4919, 8, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4924, 8, 213, 1, 213, 3, 213, 4927, 8, 213, 1, 213, 1, 213, 3, 213, 4931, 8, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4936, 8, 213, 3, 213, 4938, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4947, 8, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4952, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4963, 8, 213, 1, 213, 1, 213, 3, 213, 4967, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4981, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 4989, 8, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 3, 213, 5027, 8, 213, 3, 213, 5029, 8, 213, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 3, 214, 5048, 8, 214, 1, 214, 3, 214, 5051, 8, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 3, 215, 5078, 8, 215, 1, 215, 1, 215, 3, 215, 5082, 8, 215, 1, 215, 1, 215, 3, 215, 5086, 8, 215, 1, 215, 1, 215, 3, 215, 5090, 8, 215, 1, 215, 1, 215, 3, 215, 5094, 8, 215, 1, 215, 3, 215, 5097, 8, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 3, 215, 5112, 8, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 3, 215, 5119, 8, 215, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 217, 1, 217, 1, 217, 1, 217, 5, 217, 5131, 8, 217, 10, 217, 12, 217, 5134, 9, 217, 1, 217, 1, 217, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 3, 218, 5146, 8, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5171, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5190, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5205, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5221, 8, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 3, 220, 5228, 8, 220, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 3, 221, 5239, 8, 221, 1, 221, 3, 221, 5242, 8, 221, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 5, 222, 5259, 8, 222, 10, 222, 12, 222, 5262, 9, 222, 3, 222, 5264, 8, 222, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 5, 223, 5275, 8, 223, 10, 223, 12, 223, 5278, 9, 223, 1, 223, 3, 223, 5281, 8, 223, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 3, 224, 5301, 8, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 5, 224, 5311, 8, 224, 10, 224, 12, 224, 5314, 9, 224, 1, 224, 3, 224, 5317, 8, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 3, 224, 5339, 8, 224, 1, 225, 1, 225, 3, 225, 5343, 8, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 3, 225, 5353, 8, 225, 1, 225, 1, 225, 3, 225, 5357, 8, 225, 1, 225, 1, 225, 1, 225, 1, 225, 3, 225, 5363, 8, 225, 1, 225, 1, 225, 3, 225, 5367, 8, 225, 5, 225, 5369, 8, 225, 10, 225, 12, 225, 5372, 9, 225, 1, 225, 3, 225, 5375, 8, 225, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 3, 226, 5382, 8, 226, 1, 227, 1, 227, 1, 227, 3, 227, 5387, 8, 227, 1, 228, 1, 228, 1, 228, 1, 229, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 3, 230, 5398, 8, 230, 1, 231, 1, 231, 3, 231, 5402, 8, 231, 1, 231, 3, 231, 5405, 8, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5410, 8, 231, 1, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5416, 8, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 3, 231, 5427, 8, 231, 1, 231, 1, 231, 3, 231, 5431, 8, 231, 1, 231, 3, 231, 5434, 8, 231, 1, 231, 1, 231, 3, 231, 5438, 8, 231, 1, 231, 1, 231, 3, 231, 5442, 8, 231, 1, 231, 3, 231, 5445, 8, 231, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 1, 233, 3, 233, 5455, 8, 233, 1, 233, 3, 233, 5458, 8, 233, 1, 234, 1, 234, 3, 234, 5462, 8, 234, 1, 234, 5, 234, 5465, 8, 234, 10, 234, 12, 234, 5468, 9, 234, 1, 235, 1, 235, 1, 235, 3, 235, 5473, 8, 235, 1, 235, 3, 235, 5476, 8, 235, 1, 235, 1, 235, 1, 235, 3, 235, 5481, 8, 235, 1, 235, 3, 235, 5484, 8, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 3, 235, 5491, 8, 235, 3, 235, 5493, 8, 235, 1, 235, 1, 235, 1, 235, 1, 235, 3, 235, 5499, 8, 235, 1, 235, 1, 235, 3, 235, 5503, 8, 235, 1, 236, 1, 236, 1, 236, 1, 237, 1, 237, 1, 237, 1, 237, 3, 237, 5512, 8, 237, 1, 237, 4, 237, 5515, 8, 237, 11, 237, 12, 237, 5516, 3, 237, 5519, 8, 237, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5529, 8, 238, 1, 238, 3, 238, 5532, 8, 238, 1, 238, 1, 238, 1, 238, 3, 238, 5537, 8, 238, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 3, 239, 5545, 8, 239, 1, 239, 3, 239, 5548, 8, 239, 1, 239, 4, 239, 5551, 8, 239, 11, 239, 12, 239, 5552, 3, 239, 5555, 8, 239, 3, 239, 5557, 8, 239, 1, 240, 1, 240, 1, 240, 1, 240, 3, 240, 5563, 8, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 243, 1, 243, 1, 243, 1, 243, 3, 243, 5580, 8, 243, 1, 243, 1, 243, 5, 243, 5584, 8, 243, 10, 243, 12, 243, 5587, 9, 243, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5599, 8, 244, 1, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5605, 8, 244, 1, 244, 1, 244, 3, 244, 5609, 8, 244, 1, 244, 1, 244, 1, 244, 3, 244, 5614, 8, 244, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 3, 246, 5644, 8, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 3, 246, 5659, 8, 246, 1, 246, 1, 246, 1, 246, 3, 246, 5664, 8, 246, 1, 247, 1, 247, 3, 247, 5668, 8, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 248, 1, 248, 3, 248, 5681, 8, 248, 1, 248, 1, 248, 3, 248, 5685, 8, 248, 3, 248, 5687, 8, 248, 1, 248, 1, 248, 1, 248, 1, 248, 1, 248, 5, 248, 5694, 8, 248, 10, 248, 12, 248, 5697, 9, 248, 1, 248, 1, 248, 1, 248, 3, 248, 5702, 8, 248, 3, 248, 5704, 8, 248, 1, 249, 1, 249, 3, 249, 5708, 8, 249, 1, 249, 3, 249, 5711, 8, 249, 1, 249, 3, 249, 5714, 8, 249, 1, 249, 3, 249, 5717, 8, 249, 1, 249, 3, 249, 5720, 8, 249, 3, 249, 5722, 8, 249, 1, 249, 3, 249, 5725, 8, 249, 1, 250, 1, 250, 3, 250, 5729, 8, 250, 1, 250, 1, 250, 1, 250, 1, 250, 5, 250, 5735, 8, 250, 10, 250, 12, 250, 5738, 9, 250, 1, 250, 1, 250, 3, 250, 5742, 8, 250, 1, 250, 3, 250, 5745, 8, 250, 1, 251, 1, 251, 1, 252, 1, 252, 3, 252, 5751, 8, 252, 1, 252, 1, 252, 3, 252, 5755, 8, 252, 1, 253, 1, 253, 3, 253, 5759, 8, 253, 1, 253, 1, 253, 1, 253, 3, 253, 5764, 8, 253, 3, 253, 5766, 8, 253, 1, 254, 1, 254, 3, 254, 5770, 8, 254, 1, 255, 1, 255, 3, 255, 5774, 8, 255, 1, 256, 1, 256, 1, 256, 5, 256, 5779, 8, 256, 10, 256, 12, 256, 5782, 9, 256, 1, 257, 1, 257, 1, 257, 3, 257, 5787, 8, 257, 1, 257, 1, 257, 3, 257, 5791, 8, 257, 3, 257, 5793, 8, 257, 3, 257, 5795, 8, 257, 1, 257, 1, 257, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 3, 258, 5808, 8, 258, 1, 259, 1, 259, 1, 259, 1, 259, 5, 259, 5814, 8, 259, 10, 259, 12, 259, 5817, 9, 259, 1, 259, 1, 259, 1, 260, 1, 260, 1, 260, 3, 260, 5824, 8, 260, 1, 260, 1, 260, 1, 260, 1, 261, 1, 261, 1, 261, 1, 261, 5, 261, 5833, 8, 261, 10, 261, 12, 261, 5836, 9, 261, 1, 261, 1, 261, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 3, 262, 5845, 8, 262, 1, 263, 1, 263, 1, 263, 3, 263, 5850, 8, 263, 1, 263, 1, 263, 3, 263, 5854, 8, 263, 1, 263, 1, 263, 3, 263, 5858, 8, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 3, 263, 5865, 8, 263, 1, 263, 3, 263, 5868, 8, 263, 3, 263, 5870, 8, 263, 1, 264, 1, 264, 1, 264, 1, 264, 1, 265, 1, 265, 3, 265, 5878, 8, 265, 1, 265, 1, 265, 3, 265, 5882, 8, 265, 1, 266, 3, 266, 5885, 8, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5892, 8, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5899, 8, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5904, 8, 266, 1, 266, 1, 266, 1, 266, 1, 266, 1, 266, 3, 266, 5911, 8, 266, 1, 266, 3, 266, 5914, 8, 266, 3, 266, 5916, 8, 266, 1, 266, 3, 266, 5919, 8, 266, 1, 267, 1, 267, 1, 267, 1, 267, 3, 267, 5925, 8, 267, 1, 267, 1, 267, 1, 267, 3, 267, 5930, 8, 267, 1, 267, 1, 267, 3, 267, 5934, 8, 267, 1, 268, 1, 268, 1, 268, 5, 268, 5939, 8, 268, 10, 268, 12, 268, 5942, 9, 268, 1, 269, 1, 269, 1, 269, 1, 270, 1, 270, 1, 270, 1, 271, 3, 271, 5951, 8, 271, 1, 271, 1, 271, 1, 271, 1, 271, 1, 271, 3, 271, 5958, 8, 271, 1, 271, 3, 271, 5961, 8, 271, 1, 271, 3, 271, 5964, 8, 271, 1, 272, 1, 272, 3, 272, 5968, 8, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 1, 272, 3, 272, 5979, 8, 272, 1, 272, 3, 272, 5982, 8, 272, 1, 272, 3, 272, 5985, 8, 272, 1, 272, 3, 272, 5988, 8, 272, 1, 273, 3, 273, 5991, 8, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 3, 273, 5998, 8, 273, 1, 273, 3, 273, 6001, 8, 273, 1, 273, 3, 273, 6004, 8, 273, 1, 274, 1, 274, 1, 274, 5, 274, 6009, 8, 274, 10, 274, 12, 274, 6012, 9, 274, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 6023, 8, 275, 1, 275, 1, 275, 1, 275, 1, 275, 1, 275, 3, 275, 6030, 8, 275, 3, 275, 6032, 8, 275, 1, 276, 1, 276, 1, 276, 3, 276, 6037, 8, 276, 1, 276, 1, 276, 1, 276, 5, 276, 6042, 8, 276, 10, 276, 12, 276, 6045, 9, 276, 1, 276, 1, 276, 1, 276, 3, 276, 6050, 8, 276, 1, 276, 1, 276, 1, 276, 1, 277, 1, 277, 3, 277, 6057, 8, 277, 1, 278, 1, 278, 1, 278, 3, 278, 6062, 8, 278, 1, 278, 1, 278, 1, 279, 3, 279, 6067, 8, 279, 1, 279, 1, 279, 3, 279, 6071, 8, 279, 1, 279, 1, 279, 3, 279, 6075, 8, 279, 1, 279, 1, 279, 3, 279, 6079, 8, 279, 3, 279, 6081, 8, 279, 1, 280, 1, 280, 3, 280, 6085, 8, 280, 1, 281, 1, 281, 3, 281, 6089, 8, 281, 1, 281, 3, 281, 6092, 8, 281, 1, 281, 3, 281, 6095, 8, 281, 3, 281, 6097, 8, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 1, 281, 3, 281, 6107, 8, 281, 3, 281, 6109, 8, 281, 1, 281, 1, 281, 1, 281, 3, 281, 6114, 8, 281, 5, 281, 6116, 8, 281, 10, 281, 12, 281, 6119, 9, 281, 1, 282, 1, 282, 3, 282, 6123, 8, 282, 1, 283, 1, 283, 3, 283, 6127, 8, 283, 1, 283, 1, 283, 1, 283, 5, 283, 6132, 8, 283, 10, 283, 12, 283, 6135, 9, 283, 1, 284, 1, 284, 3, 284, 6139, 8, 284, 1, 284, 1, 284, 3, 284, 6143, 8, 284, 1, 284, 3, 284, 6146, 8, 284, 1, 284, 1, 284, 1, 284, 1, 284, 3, 284, 6152, 8, 284, 1, 284, 3, 284, 6155, 8, 284, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 1, 286, 3, 286, 6174, 8, 286, 1, 286, 1, 286, 1, 286, 1, 287, 1, 287, 3, 287, 6181, 8, 287, 1, 287, 1, 287, 3, 287, 6185, 8, 287, 1, 288, 3, 288, 6188, 8, 288, 1, 288, 1, 288, 3, 288, 6192, 8, 288, 1, 288, 1, 288, 3, 288, 6196, 8, 288, 1, 288, 3, 288, 6199, 8, 288, 1, 288, 3, 288, 6202, 8, 288, 1, 289, 1, 289, 1, 289, 3, 289, 6207, 8, 289, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 5, 290, 6214, 8, 290, 10, 290, 12, 290, 6217, 9, 290, 1, 291, 1, 291, 1, 291, 1, 291, 3, 291, 6223, 8, 291, 1, 291, 1, 291, 3, 291, 6227, 8, 291, 1, 292, 1, 292, 3, 292, 6231, 8, 292, 1, 292, 1, 292, 3, 292, 6235, 8, 292, 1, 292, 3, 292, 6238, 8, 292, 3, 292, 6240, 8, 292, 1, 293, 1, 293, 1, 293, 3, 293, 6245, 8, 293, 1, 293, 1, 293, 3, 293, 6249, 8, 293, 1, 294, 1, 294, 1, 294, 3, 294, 6254, 8, 294, 1, 294, 1, 294, 1, 294, 1, 294, 3, 294, 6260, 8, 294, 1, 295, 1, 295, 1, 295, 1, 295, 1, 295, 3, 295, 6267, 8, 295, 1, 296, 1, 296, 1, 296, 3, 296, 6272, 8, 296, 1, 297, 1, 297, 1, 297, 3, 297, 6277, 8, 297, 1, 297, 1, 297, 1, 298, 1, 298, 1, 298, 5, 298, 6284, 8, 298, 10, 298, 12, 298, 6287, 9, 298, 1, 299, 1, 299, 1, 299, 1, 299, 3, 299, 6293, 8, 299, 1, 299, 1, 299, 1, 299, 1, 299, 5, 299, 6299, 8, 299, 10, 299, 12, 299, 6302, 9, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 1, 299, 3, 299, 6312, 8, 299, 1, 300, 1, 300, 1, 300, 3, 300, 6317, 8, 300, 1, 300, 1, 300, 3, 300, 6321, 8, 300, 1, 300, 3, 300, 6324, 8, 300, 1, 300, 1, 300, 3, 300, 6328, 8, 300, 1, 300, 1, 300, 1, 300, 3, 300, 6333, 8, 300, 4, 300, 6335, 8, 300, 11, 300, 12, 300, 6336, 1, 300, 1, 300, 1, 300, 3, 300, 6342, 8, 300, 1, 301, 1, 301, 1, 301, 1, 301, 5, 301, 6348, 8, 301, 10, 301, 12, 301, 6351, 9, 301, 1, 302, 1, 302, 1, 302, 1, 303, 1, 303, 1, 303, 5, 303, 6359, 8, 303, 10, 303, 12, 303, 6362, 9, 303, 1, 304, 1, 304, 3, 304, 6366, 8, 304, 1, 304, 1, 304, 3, 304, 6370, 8, 304, 1, 304, 3, 304, 6373, 8, 304, 1, 304, 3, 304, 6376, 8, 304, 3, 304, 6378, 8, 304, 1, 304, 3, 304, 6381, 8, 304, 1, 304, 3, 304, 6384, 8, 304, 1, 304, 3, 304, 6387, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6397, 8, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6402, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6408, 8, 304, 1, 304, 1, 304, 3, 304, 6412, 8, 304, 3, 304, 6414, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6421, 8, 304, 1, 304, 1, 304, 1, 304, 3, 304, 6426, 8, 304, 1, 304, 1, 304, 1, 304, 1, 304, 5, 304, 6432, 8, 304, 10, 304, 12, 304, 6435, 9, 304, 1, 305, 1, 305, 3, 305, 6439, 8, 305, 1, 305, 1, 305, 3, 305, 6443, 8, 305, 1, 305, 1, 305, 3, 305, 6447, 8, 305, 3, 305, 6449, 8, 305, 1, 306, 3, 306, 6452, 8, 306, 1, 306, 1, 306, 1, 306, 1, 306, 1, 306, 3, 306, 6459, 8, 306, 1, 307, 1, 307, 1, 307, 3, 307, 6464, 8, 307, 1, 307, 3, 307, 6467, 8, 307, 1, 307, 1, 307, 1, 307, 1, 307, 3, 307, 6473, 8, 307, 1, 308, 1, 308, 3, 308, 6477, 8, 308, 1, 309, 1, 309, 1, 309, 1, 309, 3, 309, 6483, 8, 309, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 1, 310, 3, 310, 6492, 8, 310, 1, 310, 1, 310, 1, 310, 1, 310, 3, 310, 6498, 8, 310, 3, 310, 6500, 8, 310, 1, 311, 1, 311, 1, 311, 3, 311, 6505, 8, 311, 1, 311, 3, 311, 6508, 8, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 3, 311, 6517, 8, 311, 1, 311, 1, 311, 1, 311, 1, 311, 1, 311, 3, 311, 6524, 8, 311, 3, 311, 6526, 8, 311, 1, 312, 1, 312, 1, 312, 5, 312, 6531, 8, 312, 10, 312, 12, 312, 6534, 9, 312, 1, 313, 1, 313, 3, 313, 6538, 8, 313, 1, 313, 3, 313, 6541, 8, 313, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 1, 314, 3, 314, 6551, 8, 314, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 1, 315, 5, 315, 6560, 8, 315, 10, 315, 12, 315, 6563, 9, 315, 1, 315, 1, 315, 3, 315, 6567, 8, 315, 1, 315, 1, 315, 3, 315, 6571, 8, 315, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 1, 316, 3, 316, 6579, 8, 316, 1, 317, 1, 317, 1, 317, 1, 318, 1, 318, 1, 318, 1, 318, 1, 318, 3, 318, 6589, 8, 318, 1, 319, 1, 319, 1, 319, 5, 319, 6594, 8, 319, 10, 319, 12, 319, 6597, 9, 319, 1, 320, 1, 320, 1, 320, 3, 320, 6602, 8, 320, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 5, 321, 6611, 8, 321, 10, 321, 12, 321, 6614, 9, 321, 1, 321, 1, 321, 1, 321, 3, 321, 6619, 8, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 1, 321, 5, 321, 6627, 8, 321, 10, 321, 12, 321, 6630, 9, 321, 1, 321, 1, 321, 1, 322, 1, 322, 1, 322, 1, 322, 3, 322, 6638, 8, 322, 1, 322, 1, 322, 3, 322, 6642, 8, 322, 1, 322, 4, 322, 6645, 8, 322, 11, 322, 12, 322, 6646, 3, 322, 6649, 8, 322, 1, 322, 1, 322, 3, 322, 6653, 8, 322, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 1, 323, 3, 323, 6661, 8, 323, 1, 324, 3, 324, 6664, 8, 324, 1, 324, 1, 324, 1, 324, 3, 324, 6669, 8, 324, 1, 324, 5, 324, 6672, 8, 324, 10, 324, 12, 324, 6675, 9, 324, 1, 324, 1, 324, 1, 324, 1, 324, 3, 324, 6681, 8, 324, 3, 324, 6683, 8, 324, 1, 324, 1, 324, 1, 324, 1, 324, 3, 324, 6689, 8, 324, 1, 325, 1, 325, 3, 325, 6693, 8, 325, 1, 325, 3, 325, 6696, 8, 325, 1, 325, 1, 325, 1, 325, 3, 325, 6701, 8, 325, 1, 325, 3, 325, 6704, 8, 325, 3, 325, 6706, 8, 325, 1, 326, 1, 326, 1, 326, 1, 326, 3, 326, 6712, 8, 326, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 1, 327, 3, 327, 6721, 8, 327, 1, 327, 1, 327, 1, 327, 1, 327, 3, 327, 6727, 8, 327, 1, 327, 3, 327, 6730, 8, 327, 1, 328, 1, 328, 1, 328, 1, 328, 1, 329, 1, 329, 3, 329, 6738, 8, 329, 1, 329, 3, 329, 6741, 8, 329, 1, 330, 1, 330, 3, 330, 6745, 8, 330, 1, 330, 1, 330, 1, 330, 1, 330, 3, 330, 6751, 8, 330, 3, 330, 6753, 8, 330, 1, 330, 3, 330, 6756, 8, 330, 1, 331, 1, 331, 3, 331, 6760, 8, 331, 1, 331, 1, 331, 1, 331, 3, 331, 6765, 8, 331, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 3, 332, 6772, 8, 332, 1, 332, 1, 332, 1, 332, 1, 332, 1, 332, 3, 332, 6779, 8, 332, 3, 332, 6781, 8, 332, 1, 332, 1, 332, 1, 332, 1, 332, 3, 332, 6787, 8, 332, 3, 332, 6789, 8, 332, 1, 332, 1, 332, 1, 332, 3, 332, 6794, 8, 332, 3, 332, 6796, 8, 332, 1, 333, 1, 333, 3, 333, 6800, 8, 333, 1, 334, 1, 334, 1, 335, 1, 335, 1, 336, 1, 336, 1, 336, 3, 336, 6809, 8, 336, 1, 336, 1, 336, 3, 336, 6813, 8, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 1, 336, 5, 336, 6821, 8, 336, 10, 336, 12, 336, 6824, 9, 336, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 3, 337, 6837, 8, 337, 1, 337, 3, 337, 6840, 8, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 3, 337, 6848, 8, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 5, 337, 6855, 8, 337, 10, 337, 12, 337, 6858, 9, 337, 1, 337, 1, 337, 1, 337, 3, 337, 6863, 8, 337, 1, 337, 1, 337, 1, 337, 3, 337, 6868, 8, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 1, 337, 3, 337, 6876, 8, 337, 3, 337, 6878, 8, 337, 1, 337, 1, 337, 1, 337, 3, 337, 6883, 8, 337, 1, 337, 1, 337, 3, 337, 6887, 8, 337, 1, 337, 1, 337, 1, 337, 3, 337, 6892, 8, 337, 1, 337, 1, 337, 1, 337, 3, 337, 6897, 8, 337, 1, 338, 1, 338, 1, 338, 1, 338, 3, 338, 6903, 8, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 1, 338, 5, 338, 6919, 8, 338, 10, 338, 12, 338, 6922, 9, 338, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6930, 8, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6945, 8, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6950, 8, 339, 1, 339, 3, 339, 6953, 8, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6959, 8, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6964, 8, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6977, 8, 339, 1, 339, 4, 339, 6980, 8, 339, 11, 339, 12, 339, 6981, 1, 339, 1, 339, 3, 339, 6986, 8, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 6993, 8, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 7012, 8, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 7024, 8, 339, 1, 339, 1, 339, 1, 339, 3, 339, 7029, 8, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 1, 339, 3, 339, 7037, 8, 339, 5, 339, 7039, 8, 339, 10, 339, 12, 339, 7042, 9, 339, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 1, 340, 3, 340, 7050, 8, 340, 1, 340, 3, 340, 7053, 8, 340, 1, 340, 1, 340, 1, 340, 3, 340, 7058, 8, 340, 1, 340, 1, 340, 1, 340, 3, 340, 7063, 8, 340, 1, 340, 3, 340, 7066, 8, 340, 1, 340, 1, 340, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 3, 341, 7077, 8, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 1, 341, 3, 341, 7085, 8, 341, 1, 341, 1, 341, 1, 341, 3, 341, 7090, 8, 341, 3, 341, 7092, 8, 341, 1, 341, 3, 341, 7095, 8, 341, 1, 342, 1, 342, 3, 342, 7099, 8, 342, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7110, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7131, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7139, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7152, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7162, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7168, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7174, 8, 343, 1, 343, 3, 343, 7177, 8, 343, 1, 343, 3, 343, 7180, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7206, 8, 343, 3, 343, 7208, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7229, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7239, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7252, 8, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7257, 8, 343, 1, 343, 1, 343, 3, 343, 7261, 8, 343, 3, 343, 7263, 8, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 1, 343, 3, 343, 7275, 8, 343, 1, 344, 1, 344, 1, 344, 5, 344, 7280, 8, 344, 10, 344, 12, 344, 7283, 9, 344, 1, 345, 1, 345, 1, 345, 3, 345, 7288, 8, 345, 1, 346, 1, 346, 1, 347, 1, 347, 3, 347, 7294, 8, 347, 1, 347, 1, 347, 3, 347, 7298, 8, 347, 1, 348, 1, 348, 1, 348, 1, 349, 1, 349, 1, 349, 1, 349, 5, 349, 7307, 8, 349, 10, 349, 12, 349, 7310, 9, 349, 1, 350, 1, 350, 1, 350, 1, 351, 1, 351, 1, 351, 1, 351, 1, 352, 1, 352, 1, 352, 3, 352, 7322, 8, 352, 1, 353, 1, 353, 3, 353, 7326, 8, 353, 1, 353, 1, 353, 1, 353, 3, 353, 7331, 8, 353, 1, 353, 3, 353, 7334, 8, 353, 1, 353, 3, 353, 7337, 8, 353, 1, 353, 1, 353, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 3, 354, 7346, 8, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 1, 354, 3, 354, 7357, 8, 354, 3, 354, 7359, 8, 354, 1, 355, 1, 355, 3, 355, 7363, 8, 355, 1, 355, 1, 355, 1, 355, 3, 355, 7368, 8, 355, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 1, 356, 3, 356, 7377, 8, 356, 1, 357, 1, 357, 1, 357, 3, 357, 7382, 8, 357, 1, 357, 1, 357, 1, 358, 1, 358, 1, 359, 1, 359, 3, 359, 7390, 8, 359, 1, 360, 1, 360, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 1, 361, 3, 361, 7400, 8, 361, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 1, 362, 3, 362, 7408, 8, 362, 1, 363, 1, 363, 3, 363, 7412, 8, 363, 1, 363, 3, 363, 7415, 8, 363, 1, 364, 1, 364, 1, 364, 5, 364, 7420, 8, 364, 10, 364, 12, 364, 7423, 9, 364, 1, 365, 1, 365, 1, 366, 1, 366, 1, 367, 1, 367, 1, 367, 1, 367, 1, 367, 3, 367, 7434, 8, 367, 1, 368, 1, 368, 3, 368, 7438, 8, 368, 1, 369, 1, 369, 1, 369, 5, 369, 7443, 8, 369, 10, 369, 12, 369, 7446, 9, 369, 1, 370, 1, 370, 1, 370, 1, 370, 1, 370, 3, 370, 7453, 8, 370, 3, 370, 7455, 8, 370, 1, 371, 1, 371, 1, 371, 1, 371, 1, 371, 5, 371, 7462, 8, 371, 10, 371, 12, 371, 7465, 9, 371, 3, 371, 7467, 8, 371, 1, 371, 1, 371, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 1, 372, 3, 372, 7479, 8, 372, 1, 373, 1, 373, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 3, 374, 7488, 8, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 3, 374, 7495, 8, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 1, 374, 3, 374, 7504, 8, 374, 1, 375, 1, 375, 1, 375, 1, 375, 1, 375, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 1, 376, 3, 376, 7518, 8, 376, 1, 376, 1, 376, 3, 376, 7522, 8, 376, 3, 376, 7524, 8, 376, 1, 376, 3, 376, 7527, 8, 376, 1, 377, 4, 377, 7530, 8, 377, 11, 377, 12, 377, 7531, 1, 378, 5, 378, 7535, 8, 378, 10, 378, 12, 378, 7538, 9, 378, 1, 379, 1, 379, 1, 379, 5, 379, 7543, 8, 379, 10, 379, 12, 379, 7546, 9, 379, 1, 380, 1, 380, 1, 380, 3, 380, 7551, 8, 380, 1, 380, 3, 380, 7554, 8, 380, 1, 380, 1, 380, 3, 380, 7558, 8, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 1, 380, 3, 380, 7567, 8, 380, 1, 381, 1, 381, 1, 381, 5, 381, 7572, 8, 381, 10, 381, 12, 381, 7575, 9, 381, 1, 381, 1, 381, 1, 382, 1, 382, 1, 382, 5, 382, 7582, 8, 382, 10, 382, 12, 382, 7585, 9, 382, 1, 383, 1, 383, 1, 383, 5, 383, 7590, 8, 383, 10, 383, 12, 383, 7593, 9, 383, 1, 384, 1, 384, 1, 384, 5, 384, 7598, 8, 384, 10, 384, 12, 384, 7601, 9, 384, 1, 385, 1, 385, 1, 385, 5, 385, 7606, 8, 385, 10, 385, 12, 385, 7609, 9, 385, 1, 386, 1, 386, 1, 387, 1, 387, 1, 388, 1, 388, 1, 389, 1, 389, 1, 390, 1, 390, 1, 391, 1, 391, 1, 392, 1, 392, 3, 392, 7625, 8, 392, 1, 393, 1, 393, 1, 393, 5, 393, 7630, 8, 393, 10, 393, 12, 393, 7633, 9, 393, 1, 394, 1, 394, 1, 394, 5, 394, 7638, 8, 394, 10, 394, 12, 394, 7641, 9, 394, 1, 395, 1, 395, 1, 396, 1, 396, 1, 397, 1, 397, 1, 398, 1, 398, 1, 399, 1, 399, 1, 400, 1, 400, 1, 400, 1, 400, 3, 400, 7657, 8, 400, 1, 401, 1, 401, 1, 401, 1, 401, 3, 401, 7663, 8, 401, 1, 402, 1, 402, 1, 403, 1, 403, 1, 403, 1, 404, 1, 404, 1, 404, 1, 405, 1, 405, 1, 406, 1, 406, 1, 406, 1, 406, 3, 406, 7679, 8, 406, 1, 407, 1, 407, 1, 407, 1, 407, 3, 407, 7685, 8, 407, 1, 408, 1, 408, 1, 408, 3, 408, 7690, 8, 408, 1, 409, 1, 409, 1, 409, 1, 409, 5, 409, 7696, 8, 409, 10, 409, 12, 409, 7699, 9, 409, 1, 409, 1, 409, 3, 409, 7703, 8, 409, 1, 410, 3, 410, 7706, 8, 410, 1, 410, 1, 410, 1, 411, 1, 411, 1, 411, 1, 411, 1, 411, 3, 411, 7715, 8, 411, 1, 412, 1, 412, 1, 412, 5, 412, 7720, 8, 412, 10, 412, 12, 412, 7723, 9, 412, 1, 413, 1, 413, 3, 413, 7727, 8, 413, 1, 414, 1, 414, 3, 414, 7731, 8, 414, 1, 415, 1, 415, 1, 415, 3, 415, 7736, 8, 415, 1, 416, 1, 416, 1, 416, 1, 416, 3, 416, 7742, 8, 416, 1, 417, 1, 417, 1, 417, 3, 417, 7747, 8, 417, 1, 418, 1, 418, 1, 418, 3, 418, 7752, 8, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 1, 418, 3, 418, 7760, 8, 418, 1, 419, 1, 419, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 1, 420, 3, 420, 7815, 8, 420, 1, 421, 1, 421, 1, 422, 1, 422, 1, 423, 3, 423, 7822, 8, 423, 1, 423, 1, 423, 1, 423, 1, 423, 4, 423, 7828, 8, 423, 11, 423, 12, 423, 7829, 3, 423, 7832, 8, 423, 3, 423, 7834, 8, 423, 1, 423, 1, 423, 5, 423, 7838, 8, 423, 10, 423, 12, 423, 7841, 9, 423, 1, 423, 3, 423, 7844, 8, 423, 1, 423, 1, 423, 3, 423, 7848, 8, 423, 1, 424, 1, 424, 1, 424, 1, 424, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 3, 425, 7859, 8, 425, 1, 425, 3, 425, 7862, 8, 425, 1, 425, 1, 425, 3, 425, 7866, 8, 425, 1, 425, 1, 425, 3, 425, 7870, 8, 425, 1, 425, 1, 425, 3, 425, 7874, 8, 425, 1, 425, 3, 425, 7877, 8, 425, 1, 425, 3, 425, 7880, 8, 425, 1, 425, 3, 425, 7883, 8, 425, 1, 425, 1, 425, 1, 425, 1, 425, 1, 425, 5, 425, 7890, 8, 425, 10, 425, 12, 425, 7893, 9, 425, 1, 425, 1, 425, 3, 425, 7897, 8, 425, 1, 425, 1, 425, 3, 425, 7901, 8, 425, 1, 425, 1, 425, 1, 426, 1, 426, 1, 426, 1, 427, 1, 427, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 1, 428, 3, 428, 7934, 8, 428, 1, 429, 1, 429, 1, 429, 1, 429, 1, 430, 1, 430, 1, 430, 1, 430, 3, 430, 7944, 8, 430, 1, 430, 1, 430, 3, 430, 7948, 8, 430, 1, 430, 1, 430, 1, 430, 1, 430, 3, 430, 7954, 8, 430, 1, 430, 1, 430, 1, 430, 3, 430, 7959, 8, 430, 1, 431, 1, 431, 1, 431, 1, 431, 1, 431, 1, 432, 1, 432, 3, 432, 7968, 8, 432, 1, 432, 1, 432, 1, 432, 1, 432, 5, 432, 7974, 8, 432, 10, 432, 12, 432, 7977, 9, 432, 1, 432, 1, 432, 1, 433, 1, 433, 1, 433, 1, 433, 1, 434, 1, 434, 3, 434, 7987, 8, 434, 1, 434, 1, 434, 1, 434, 1, 434, 5, 434, 7993, 8, 434, 10, 434, 12, 434, 7996, 9, 434, 1, 435, 1, 435, 1, 435, 1, 435, 5, 435, 8002, 8, 435, 10, 435, 12, 435, 8005, 9, 435, 1, 435, 1, 435, 1, 435, 1, 435, 5, 435, 8011, 8, 435, 10, 435, 12, 435, 8014, 9, 435, 5, 435, 8016, 8, 435, 10, 435, 12, 435, 8019, 9, 435, 1, 435, 3, 435, 8022, 8, 435, 1, 435, 1, 435, 1, 435, 1, 435, 1, 436, 1, 436, 5, 436, 8030, 8, 436, 10, 436, 12, 436, 8033, 9, 436, 1, 437, 1, 437, 3, 437, 8037, 8, 437, 1, 437, 1, 437, 1, 437, 1, 437, 5, 437, 8043, 8, 437, 10, 437, 12, 437, 8046, 9, 437, 4, 437, 8048, 8, 437, 11, 437, 12, 437, 8049, 1, 437, 3, 437, 8053, 8, 437, 1, 437, 1, 437, 1, 437, 1, 437, 1, 438, 3, 438, 8060, 8, 438, 1, 438, 1, 438, 1, 438, 1, 438, 3, 438, 8066, 8, 438, 1, 438, 1, 438, 1, 439, 1, 439, 1, 439, 1, 439, 3, 439, 8074, 8, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 3, 439, 8082, 8, 439, 1, 439, 3, 439, 8085, 8, 439, 1, 439, 1, 439, 1, 439, 1, 439, 1, 439, 3, 439, 8092, 8, 439, 3, 439, 8094, 8, 439, 1, 440, 3, 440, 8097, 8, 440, 1, 440, 1, 440, 1, 440, 1, 440, 3, 440, 8103, 8, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 440, 1, 441, 1, 441, 3, 441, 8112, 8, 441, 1, 441, 1, 441, 3, 441, 8116, 8, 441, 1, 441, 1, 441, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 1, 442, 3, 442, 8130, 8, 442, 1, 442, 3, 442, 8133, 8, 442, 3, 442, 8135, 8, 442, 1, 442, 1, 442, 1, 443, 1, 443, 3, 443, 8141, 8, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 1, 443, 4, 443, 8149, 8, 443, 11, 443, 12, 443, 8150, 3, 443, 8153, 8, 443, 3, 443, 8155, 8, 443, 1, 443, 1, 443, 1, 443, 1, 443, 5, 443, 8161, 8, 443, 10, 443, 12, 443, 8164, 9, 443, 3, 443, 8166, 8, 443, 1, 443, 3, 443, 8169, 8, 443, 1, 444, 1, 444, 1, 444, 1, 444, 1, 445, 1, 445, 1, 445, 1, 445, 3, 445, 8179, 8, 445, 1, 445, 1, 445, 1, 446, 1, 446, 5, 446, 8185, 8, 446, 10, 446, 12, 446, 8188, 9, 446, 1, 446, 1, 446, 1, 446, 3, 446, 8193, 8, 446, 1, 446, 1, 446, 1, 447, 1, 447, 3, 447, 8199, 8, 447, 1, 447, 1, 447, 1, 448, 1, 448, 1, 448, 3, 448, 8206, 8, 448, 1, 448, 1, 448, 3, 448, 8210, 8, 448, 1, 448, 1, 448, 3, 448, 8214, 8, 448, 1, 448, 3, 448, 8217, 8, 448, 1, 448, 3, 448, 8220, 8, 448, 1, 448, 1, 448, 1, 449, 1, 449, 3, 449, 8226, 8, 449, 1, 449, 1, 449, 1, 450, 1, 450, 1, 450, 3, 450, 8233, 8, 450, 1, 450, 3, 450, 8236, 8, 450, 1, 450, 1, 450, 1, 450, 1, 450, 1, 450, 1, 450, 3, 450, 8244, 8, 450, 3, 450, 8246, 8, 450, 1, 450, 1, 450, 1, 450, 1, 450, 1, 450, 5, 450, 8253, 8, 450, 10, 450, 12, 450, 8256, 9, 450, 1, 450, 1, 450, 3, 450, 8260, 8, 450, 3, 450, 8262, 8, 450, 1, 450, 1, 450, 1, 451, 1, 451, 1, 451, 3, 451, 8269, 8, 451, 1, 451, 1, 451, 1, 452, 1, 452, 3, 452, 8275, 8, 452, 1, 452, 3, 452, 8278, 8, 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, 452, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 3, 453, 8290, 8, 453, 1, 453, 1, 453, 1, 453, 1, 453, 1, 453, 3, 453, 8297, 8, 453, 3, 453, 8299, 8, 453, 1, 454, 1, 454, 3, 454, 8303, 8, 454, 1, 454, 1, 454, 1, 454, 1, 455, 3, 455, 8309, 8, 455, 1, 455, 1, 455, 1, 455, 3, 455, 8314, 8, 455, 1, 455, 1, 455, 3, 455, 8318, 8, 455, 1, 455, 3, 455, 8321, 8, 455, 1, 455, 3, 455, 8324, 8, 455, 1, 455, 1, 455, 1, 455, 1, 455, 1, 455, 4, 455, 8331, 8, 455, 11, 455, 12, 455, 8332, 1, 455, 3, 455, 8336, 8, 455, 1, 456, 3, 456, 8339, 8, 456, 1, 456, 1, 456, 3, 456, 8343, 8, 456, 1, 456, 1, 456, 3, 456, 8347, 8, 456, 3, 456, 8349, 8, 456, 1, 456, 3, 456, 8352, 8, 456, 1, 456, 3, 456, 8355, 8, 456, 1, 457, 1, 457, 1, 457, 1, 457, 3, 457, 8361, 8, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 3, 457, 8368, 8, 457, 1, 457, 1, 457, 1, 457, 1, 457, 1, 457, 3, 457, 8375, 8, 457, 1, 457, 1, 457, 1, 457, 1, 457, 3, 457, 8381, 8, 457, 3, 457, 8383, 8, 457, 1, 458, 1, 458, 3, 458, 8387, 8, 458, 1, 458, 1, 458, 1, 458, 3, 458, 8392, 8, 458, 1, 458, 1, 458, 1, 459, 1, 459, 1, 459, 1, 459, 1, 459, 1, 459, 1, 459, 1, 459, 1, 459, 1, 459, 1, 459, 1, 459, 5, 459, 8408, 8, 459, 10, 459, 12, 459, 8411, 9, 459, 1, 459, 1, 459, 4, 459, 8415, 8, 459, 11, 459, 12, 459, 8416, 1, 460, 1, 460, 1, 460, 1, 460, 1, 460, 5, 460, 8424, 8, 460, 10, 460, 12, 460, 8427, 9, 460, 1, 460, 1, 460, 1, 460, 1, 460, 3, 460, 8433, 8, 460, 1, 461, 1, 461, 3, 461, 8437, 8, 461, 1, 462, 1, 462, 1, 462, 1, 462, 1, 463, 1, 463, 1, 463, 1, 464, 1, 464, 1, 464, 3, 464, 8449, 8, 464, 1, 464, 3, 464, 8452, 8, 464, 1, 464, 1, 464, 1, 465, 1, 465, 1, 465, 1, 465, 1, 465, 1, 465, 1, 465, 1, 465, 1, 465, 3, 465, 8465, 8, 465, 1, 465, 3, 465, 8468, 8, 465, 1, 466, 1, 466, 3, 466, 8472, 8, 466, 1, 467, 1, 467, 1, 467, 1, 467, 1, 467, 5, 467, 8479, 8, 467, 10, 467, 12, 467, 8482, 9, 467, 1, 467, 1, 467, 5, 467, 8486, 8, 467, 10, 467, 12, 467, 8489, 9, 467, 4, 467, 8491, 8, 467, 11, 467, 12, 467, 8492, 1, 468, 1, 468, 1, 468, 3, 468, 8498, 8, 468, 1, 469, 1, 469, 3, 469, 8502, 8, 469, 1, 470, 3, 470, 8505, 8, 470, 1, 470, 3, 470, 8508, 8, 470, 1, 470, 3, 470, 8511, 8, 470, 1, 470, 3, 470, 8514, 8, 470, 1, 470, 3, 470, 8517, 8, 470, 1, 470, 3, 470, 8520, 8, 470, 1, 470, 3, 470, 8523, 8, 470, 1, 470, 0, 3, 672, 676, 678, 471, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 366, 368, 370, 372, 374, 376, 378, 380, 382, 384, 386, 388, 390, 392, 394, 396, 398, 400, 402, 404, 406, 408, 410, 412, 414, 416, 418, 420, 422, 424, 426, 428, 430, 432, 434, 436, 438, 440, 442, 444, 446, 448, 450, 452, 454, 456, 458, 460, 462, 464, 466, 468, 470, 472, 474, 476, 478, 480, 482, 484, 486, 488, 490, 492, 494, 496, 498, 500, 502, 504, 506, 508, 510, 512, 514, 516, 518, 520, 522, 524, 526, 528, 530, 532, 534, 536, 538, 540, 542, 544, 546, 548, 550, 552, 554, 556, 558, 560, 562, 564, 566, 568, 570, 572, 574, 576, 578, 580, 582, 584, 586, 588, 590, 592, 594, 596, 598, 600, 602, 604, 606, 608, 610, 612, 614, 616, 618, 620, 622, 624, 626, 628, 630, 632, 634, 636, 638, 640, 642, 644, 646, 648, 650, 652, 654, 656, 658, 660, 662, 664, 666, 668, 670, 672, 674, 676, 678, 680, 682, 684, 686, 688, 690, 692, 694, 696, 698, 700, 702, 704, 706, 708, 710, 712, 714, 716, 718, 720, 722, 724, 726, 728, 730, 732, 734, 736, 738, 740, 742, 744, 746, 748, 750, 752, 754, 756, 758, 760, 762, 764, 766, 768, 770, 772, 774, 776, 778, 780, 782, 784, 786, 788, 790, 792, 794, 796, 798, 800, 802, 804, 806, 808, 810, 812, 814, 816, 818, 820, 822, 824, 826, 828, 830, 832, 834, 836, 838, 840, 842, 844, 846, 848, 850, 852, 854, 856, 858, 860, 862, 864, 866, 868, 870, 872, 874, 876, 878, 880, 882, 884, 886, 888, 890, 892, 894, 896, 898, 900, 902, 904, 906, 908, 910, 912, 914, 916, 918, 920, 922, 924, 926, 928, 930, 932, 934, 936, 938, 940, 0, 119, 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, 1, 0, 549, 551, 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, 574, 574, 576, 576, 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, 9962, 0, 945, 1, 0, 0, 0, 2, 950, 1, 0, 0, 0, 4, 1074, 1, 0, 0, 0, 6, 1076, 1, 0, 0, 0, 8, 1079, 1, 0, 0, 0, 10, 1129, 1, 0, 0, 0, 12, 1139, 1, 0, 0, 0, 14, 1141, 1, 0, 0, 0, 16, 1153, 1, 0, 0, 0, 18, 1165, 1, 0, 0, 0, 20, 1176, 1, 0, 0, 0, 22, 1210, 1, 0, 0, 0, 24, 1254, 1, 0, 0, 0, 26, 1256, 1, 0, 0, 0, 28, 1268, 1, 0, 0, 0, 30, 1275, 1, 0, 0, 0, 32, 1294, 1, 0, 0, 0, 34, 1302, 1, 0, 0, 0, 36, 1304, 1, 0, 0, 0, 38, 1318, 1, 0, 0, 0, 40, 1322, 1, 0, 0, 0, 42, 1359, 1, 0, 0, 0, 44, 1361, 1, 0, 0, 0, 46, 1369, 1, 0, 0, 0, 48, 1379, 1, 0, 0, 0, 50, 1386, 1, 0, 0, 0, 52, 1394, 1, 0, 0, 0, 54, 1400, 1, 0, 0, 0, 56, 1416, 1, 0, 0, 0, 58, 1420, 1, 0, 0, 0, 60, 1422, 1, 0, 0, 0, 62, 1434, 1, 0, 0, 0, 64, 1439, 1, 0, 0, 0, 66, 1444, 1, 0, 0, 0, 68, 1446, 1, 0, 0, 0, 70, 1458, 1, 0, 0, 0, 72, 1466, 1, 0, 0, 0, 74, 1468, 1, 0, 0, 0, 76, 1588, 1, 0, 0, 0, 78, 1590, 1, 0, 0, 0, 80, 1604, 1, 0, 0, 0, 82, 1606, 1, 0, 0, 0, 84, 1843, 1, 0, 0, 0, 86, 1850, 1, 0, 0, 0, 88, 1852, 1, 0, 0, 0, 90, 1854, 1, 0, 0, 0, 92, 1857, 1, 0, 0, 0, 94, 1868, 1, 0, 0, 0, 96, 1871, 1, 0, 0, 0, 98, 1901, 1, 0, 0, 0, 100, 1903, 1, 0, 0, 0, 102, 1944, 1, 0, 0, 0, 104, 1946, 1, 0, 0, 0, 106, 2000, 1, 0, 0, 0, 108, 2046, 1, 0, 0, 0, 110, 2067, 1, 0, 0, 0, 112, 2069, 1, 0, 0, 0, 114, 2086, 1, 0, 0, 0, 116, 2167, 1, 0, 0, 0, 118, 2169, 1, 0, 0, 0, 120, 2180, 1, 0, 0, 0, 122, 2203, 1, 0, 0, 0, 124, 2221, 1, 0, 0, 0, 126, 2223, 1, 0, 0, 0, 128, 2258, 1, 0, 0, 0, 130, 2351, 1, 0, 0, 0, 132, 2356, 1, 0, 0, 0, 134, 2358, 1, 0, 0, 0, 136, 2456, 1, 0, 0, 0, 138, 2458, 1, 0, 0, 0, 140, 2462, 1, 0, 0, 0, 142, 2473, 1, 0, 0, 0, 144, 2481, 1, 0, 0, 0, 146, 2484, 1, 0, 0, 0, 148, 2487, 1, 0, 0, 0, 150, 2505, 1, 0, 0, 0, 152, 2507, 1, 0, 0, 0, 154, 2511, 1, 0, 0, 0, 156, 2524, 1, 0, 0, 0, 158, 2526, 1, 0, 0, 0, 160, 2531, 1, 0, 0, 0, 162, 2551, 1, 0, 0, 0, 164, 2559, 1, 0, 0, 0, 166, 2566, 1, 0, 0, 0, 168, 2568, 1, 0, 0, 0, 170, 2577, 1, 0, 0, 0, 172, 2580, 1, 0, 0, 0, 174, 2584, 1, 0, 0, 0, 176, 2588, 1, 0, 0, 0, 178, 2613, 1, 0, 0, 0, 180, 2623, 1, 0, 0, 0, 182, 2637, 1, 0, 0, 0, 184, 2653, 1, 0, 0, 0, 186, 2659, 1, 0, 0, 0, 188, 2686, 1, 0, 0, 0, 190, 2696, 1, 0, 0, 0, 192, 2712, 1, 0, 0, 0, 194, 2756, 1, 0, 0, 0, 196, 2763, 1, 0, 0, 0, 198, 2765, 1, 0, 0, 0, 200, 2791, 1, 0, 0, 0, 202, 2802, 1, 0, 0, 0, 204, 2821, 1, 0, 0, 0, 206, 2832, 1, 0, 0, 0, 208, 2870, 1, 0, 0, 0, 210, 2891, 1, 0, 0, 0, 212, 2893, 1, 0, 0, 0, 214, 2913, 1, 0, 0, 0, 216, 2925, 1, 0, 0, 0, 218, 2937, 1, 0, 0, 0, 220, 2940, 1, 0, 0, 0, 222, 2943, 1, 0, 0, 0, 224, 2963, 1, 0, 0, 0, 226, 2968, 1, 0, 0, 0, 228, 3017, 1, 0, 0, 0, 230, 3019, 1, 0, 0, 0, 232, 3042, 1, 0, 0, 0, 234, 3058, 1, 0, 0, 0, 236, 3070, 1, 0, 0, 0, 238, 3097, 1, 0, 0, 0, 240, 3112, 1, 0, 0, 0, 242, 3175, 1, 0, 0, 0, 244, 3177, 1, 0, 0, 0, 246, 3182, 1, 0, 0, 0, 248, 3188, 1, 0, 0, 0, 250, 3275, 1, 0, 0, 0, 252, 3281, 1, 0, 0, 0, 254, 3283, 1, 0, 0, 0, 256, 3299, 1, 0, 0, 0, 258, 3301, 1, 0, 0, 0, 260, 3310, 1, 0, 0, 0, 262, 3314, 1, 0, 0, 0, 264, 3327, 1, 0, 0, 0, 266, 3339, 1, 0, 0, 0, 268, 3341, 1, 0, 0, 0, 270, 3363, 1, 0, 0, 0, 272, 3375, 1, 0, 0, 0, 274, 3386, 1, 0, 0, 0, 276, 3477, 1, 0, 0, 0, 278, 3479, 1, 0, 0, 0, 280, 3490, 1, 0, 0, 0, 282, 3501, 1, 0, 0, 0, 284, 3503, 1, 0, 0, 0, 286, 3529, 1, 0, 0, 0, 288, 3531, 1, 0, 0, 0, 290, 3535, 1, 0, 0, 0, 292, 3585, 1, 0, 0, 0, 294, 3587, 1, 0, 0, 0, 296, 3593, 1, 0, 0, 0, 298, 3618, 1, 0, 0, 0, 300, 3622, 1, 0, 0, 0, 302, 3836, 1, 0, 0, 0, 304, 3854, 1, 0, 0, 0, 306, 3880, 1, 0, 0, 0, 308, 3882, 1, 0, 0, 0, 310, 3890, 1, 0, 0, 0, 312, 3896, 1, 0, 0, 0, 314, 3900, 1, 0, 0, 0, 316, 3920, 1, 0, 0, 0, 318, 3926, 1, 0, 0, 0, 320, 3993, 1, 0, 0, 0, 322, 4024, 1, 0, 0, 0, 324, 4070, 1, 0, 0, 0, 326, 4072, 1, 0, 0, 0, 328, 4074, 1, 0, 0, 0, 330, 4085, 1, 0, 0, 0, 332, 4122, 1, 0, 0, 0, 334, 4124, 1, 0, 0, 0, 336, 4130, 1, 0, 0, 0, 338, 4180, 1, 0, 0, 0, 340, 4183, 1, 0, 0, 0, 342, 4197, 1, 0, 0, 0, 344, 4218, 1, 0, 0, 0, 346, 4242, 1, 0, 0, 0, 348, 4283, 1, 0, 0, 0, 350, 4285, 1, 0, 0, 0, 352, 4287, 1, 0, 0, 0, 354, 4327, 1, 0, 0, 0, 356, 4344, 1, 0, 0, 0, 358, 4364, 1, 0, 0, 0, 360, 4417, 1, 0, 0, 0, 362, 4420, 1, 0, 0, 0, 364, 4426, 1, 0, 0, 0, 366, 4434, 1, 0, 0, 0, 368, 4447, 1, 0, 0, 0, 370, 4449, 1, 0, 0, 0, 372, 4462, 1, 0, 0, 0, 374, 4464, 1, 0, 0, 0, 376, 4477, 1, 0, 0, 0, 378, 4487, 1, 0, 0, 0, 380, 4498, 1, 0, 0, 0, 382, 4509, 1, 0, 0, 0, 384, 4511, 1, 0, 0, 0, 386, 4516, 1, 0, 0, 0, 388, 4530, 1, 0, 0, 0, 390, 4562, 1, 0, 0, 0, 392, 4599, 1, 0, 0, 0, 394, 4601, 1, 0, 0, 0, 396, 4604, 1, 0, 0, 0, 398, 4607, 1, 0, 0, 0, 400, 4624, 1, 0, 0, 0, 402, 4645, 1, 0, 0, 0, 404, 4661, 1, 0, 0, 0, 406, 4677, 1, 0, 0, 0, 408, 4699, 1, 0, 0, 0, 410, 4704, 1, 0, 0, 0, 412, 4707, 1, 0, 0, 0, 414, 4715, 1, 0, 0, 0, 416, 4740, 1, 0, 0, 0, 418, 4743, 1, 0, 0, 0, 420, 4771, 1, 0, 0, 0, 422, 4776, 1, 0, 0, 0, 424, 4816, 1, 0, 0, 0, 426, 5028, 1, 0, 0, 0, 428, 5030, 1, 0, 0, 0, 430, 5118, 1, 0, 0, 0, 432, 5120, 1, 0, 0, 0, 434, 5126, 1, 0, 0, 0, 436, 5137, 1, 0, 0, 0, 438, 5147, 1, 0, 0, 0, 440, 5227, 1, 0, 0, 0, 442, 5229, 1, 0, 0, 0, 444, 5243, 1, 0, 0, 0, 446, 5265, 1, 0, 0, 0, 448, 5338, 1, 0, 0, 0, 450, 5340, 1, 0, 0, 0, 452, 5381, 1, 0, 0, 0, 454, 5383, 1, 0, 0, 0, 456, 5388, 1, 0, 0, 0, 458, 5391, 1, 0, 0, 0, 460, 5394, 1, 0, 0, 0, 462, 5444, 1, 0, 0, 0, 464, 5446, 1, 0, 0, 0, 466, 5457, 1, 0, 0, 0, 468, 5459, 1, 0, 0, 0, 470, 5469, 1, 0, 0, 0, 472, 5504, 1, 0, 0, 0, 474, 5507, 1, 0, 0, 0, 476, 5528, 1, 0, 0, 0, 478, 5538, 1, 0, 0, 0, 480, 5558, 1, 0, 0, 0, 482, 5564, 1, 0, 0, 0, 484, 5570, 1, 0, 0, 0, 486, 5575, 1, 0, 0, 0, 488, 5588, 1, 0, 0, 0, 490, 5615, 1, 0, 0, 0, 492, 5663, 1, 0, 0, 0, 494, 5665, 1, 0, 0, 0, 496, 5703, 1, 0, 0, 0, 498, 5705, 1, 0, 0, 0, 500, 5726, 1, 0, 0, 0, 502, 5746, 1, 0, 0, 0, 504, 5750, 1, 0, 0, 0, 506, 5765, 1, 0, 0, 0, 508, 5767, 1, 0, 0, 0, 510, 5771, 1, 0, 0, 0, 512, 5775, 1, 0, 0, 0, 514, 5783, 1, 0, 0, 0, 516, 5807, 1, 0, 0, 0, 518, 5809, 1, 0, 0, 0, 520, 5820, 1, 0, 0, 0, 522, 5828, 1, 0, 0, 0, 524, 5844, 1, 0, 0, 0, 526, 5869, 1, 0, 0, 0, 528, 5871, 1, 0, 0, 0, 530, 5875, 1, 0, 0, 0, 532, 5884, 1, 0, 0, 0, 534, 5924, 1, 0, 0, 0, 536, 5935, 1, 0, 0, 0, 538, 5943, 1, 0, 0, 0, 540, 5946, 1, 0, 0, 0, 542, 5950, 1, 0, 0, 0, 544, 5965, 1, 0, 0, 0, 546, 5990, 1, 0, 0, 0, 548, 6005, 1, 0, 0, 0, 550, 6031, 1, 0, 0, 0, 552, 6033, 1, 0, 0, 0, 554, 6056, 1, 0, 0, 0, 556, 6058, 1, 0, 0, 0, 558, 6066, 1, 0, 0, 0, 560, 6084, 1, 0, 0, 0, 562, 6108, 1, 0, 0, 0, 564, 6120, 1, 0, 0, 0, 566, 6124, 1, 0, 0, 0, 568, 6136, 1, 0, 0, 0, 570, 6156, 1, 0, 0, 0, 572, 6164, 1, 0, 0, 0, 574, 6178, 1, 0, 0, 0, 576, 6201, 1, 0, 0, 0, 578, 6203, 1, 0, 0, 0, 580, 6208, 1, 0, 0, 0, 582, 6218, 1, 0, 0, 0, 584, 6239, 1, 0, 0, 0, 586, 6241, 1, 0, 0, 0, 588, 6250, 1, 0, 0, 0, 590, 6261, 1, 0, 0, 0, 592, 6271, 1, 0, 0, 0, 594, 6273, 1, 0, 0, 0, 596, 6280, 1, 0, 0, 0, 598, 6311, 1, 0, 0, 0, 600, 6341, 1, 0, 0, 0, 602, 6343, 1, 0, 0, 0, 604, 6352, 1, 0, 0, 0, 606, 6355, 1, 0, 0, 0, 608, 6413, 1, 0, 0, 0, 610, 6448, 1, 0, 0, 0, 612, 6451, 1, 0, 0, 0, 614, 6472, 1, 0, 0, 0, 616, 6474, 1, 0, 0, 0, 618, 6482, 1, 0, 0, 0, 620, 6499, 1, 0, 0, 0, 622, 6525, 1, 0, 0, 0, 624, 6527, 1, 0, 0, 0, 626, 6535, 1, 0, 0, 0, 628, 6542, 1, 0, 0, 0, 630, 6566, 1, 0, 0, 0, 632, 6572, 1, 0, 0, 0, 634, 6580, 1, 0, 0, 0, 636, 6583, 1, 0, 0, 0, 638, 6590, 1, 0, 0, 0, 640, 6598, 1, 0, 0, 0, 642, 6603, 1, 0, 0, 0, 644, 6633, 1, 0, 0, 0, 646, 6660, 1, 0, 0, 0, 648, 6688, 1, 0, 0, 0, 650, 6705, 1, 0, 0, 0, 652, 6711, 1, 0, 0, 0, 654, 6729, 1, 0, 0, 0, 656, 6731, 1, 0, 0, 0, 658, 6735, 1, 0, 0, 0, 660, 6752, 1, 0, 0, 0, 662, 6757, 1, 0, 0, 0, 664, 6795, 1, 0, 0, 0, 666, 6797, 1, 0, 0, 0, 668, 6801, 1, 0, 0, 0, 670, 6803, 1, 0, 0, 0, 672, 6812, 1, 0, 0, 0, 674, 6896, 1, 0, 0, 0, 676, 6902, 1, 0, 0, 0, 678, 7011, 1, 0, 0, 0, 680, 7043, 1, 0, 0, 0, 682, 7094, 1, 0, 0, 0, 684, 7098, 1, 0, 0, 0, 686, 7274, 1, 0, 0, 0, 688, 7276, 1, 0, 0, 0, 690, 7284, 1, 0, 0, 0, 692, 7289, 1, 0, 0, 0, 694, 7291, 1, 0, 0, 0, 696, 7299, 1, 0, 0, 0, 698, 7302, 1, 0, 0, 0, 700, 7311, 1, 0, 0, 0, 702, 7314, 1, 0, 0, 0, 704, 7318, 1, 0, 0, 0, 706, 7323, 1, 0, 0, 0, 708, 7340, 1, 0, 0, 0, 710, 7367, 1, 0, 0, 0, 712, 7376, 1, 0, 0, 0, 714, 7378, 1, 0, 0, 0, 716, 7385, 1, 0, 0, 0, 718, 7389, 1, 0, 0, 0, 720, 7391, 1, 0, 0, 0, 722, 7399, 1, 0, 0, 0, 724, 7407, 1, 0, 0, 0, 726, 7414, 1, 0, 0, 0, 728, 7416, 1, 0, 0, 0, 730, 7424, 1, 0, 0, 0, 732, 7426, 1, 0, 0, 0, 734, 7433, 1, 0, 0, 0, 736, 7437, 1, 0, 0, 0, 738, 7439, 1, 0, 0, 0, 740, 7454, 1, 0, 0, 0, 742, 7456, 1, 0, 0, 0, 744, 7478, 1, 0, 0, 0, 746, 7480, 1, 0, 0, 0, 748, 7503, 1, 0, 0, 0, 750, 7505, 1, 0, 0, 0, 752, 7526, 1, 0, 0, 0, 754, 7529, 1, 0, 0, 0, 756, 7536, 1, 0, 0, 0, 758, 7539, 1, 0, 0, 0, 760, 7566, 1, 0, 0, 0, 762, 7573, 1, 0, 0, 0, 764, 7578, 1, 0, 0, 0, 766, 7586, 1, 0, 0, 0, 768, 7594, 1, 0, 0, 0, 770, 7602, 1, 0, 0, 0, 772, 7610, 1, 0, 0, 0, 774, 7612, 1, 0, 0, 0, 776, 7614, 1, 0, 0, 0, 778, 7616, 1, 0, 0, 0, 780, 7618, 1, 0, 0, 0, 782, 7620, 1, 0, 0, 0, 784, 7622, 1, 0, 0, 0, 786, 7626, 1, 0, 0, 0, 788, 7634, 1, 0, 0, 0, 790, 7642, 1, 0, 0, 0, 792, 7644, 1, 0, 0, 0, 794, 7646, 1, 0, 0, 0, 796, 7648, 1, 0, 0, 0, 798, 7650, 1, 0, 0, 0, 800, 7656, 1, 0, 0, 0, 802, 7662, 1, 0, 0, 0, 804, 7664, 1, 0, 0, 0, 806, 7666, 1, 0, 0, 0, 808, 7669, 1, 0, 0, 0, 810, 7672, 1, 0, 0, 0, 812, 7678, 1, 0, 0, 0, 814, 7684, 1, 0, 0, 0, 816, 7686, 1, 0, 0, 0, 818, 7702, 1, 0, 0, 0, 820, 7705, 1, 0, 0, 0, 822, 7714, 1, 0, 0, 0, 824, 7716, 1, 0, 0, 0, 826, 7726, 1, 0, 0, 0, 828, 7730, 1, 0, 0, 0, 830, 7735, 1, 0, 0, 0, 832, 7741, 1, 0, 0, 0, 834, 7746, 1, 0, 0, 0, 836, 7759, 1, 0, 0, 0, 838, 7761, 1, 0, 0, 0, 840, 7814, 1, 0, 0, 0, 842, 7816, 1, 0, 0, 0, 844, 7818, 1, 0, 0, 0, 846, 7821, 1, 0, 0, 0, 848, 7849, 1, 0, 0, 0, 850, 7853, 1, 0, 0, 0, 852, 7904, 1, 0, 0, 0, 854, 7907, 1, 0, 0, 0, 856, 7933, 1, 0, 0, 0, 858, 7935, 1, 0, 0, 0, 860, 7958, 1, 0, 0, 0, 862, 7960, 1, 0, 0, 0, 864, 7965, 1, 0, 0, 0, 866, 7980, 1, 0, 0, 0, 868, 7986, 1, 0, 0, 0, 870, 7997, 1, 0, 0, 0, 872, 8027, 1, 0, 0, 0, 874, 8034, 1, 0, 0, 0, 876, 8059, 1, 0, 0, 0, 878, 8069, 1, 0, 0, 0, 880, 8096, 1, 0, 0, 0, 882, 8109, 1, 0, 0, 0, 884, 8119, 1, 0, 0, 0, 886, 8138, 1, 0, 0, 0, 888, 8170, 1, 0, 0, 0, 890, 8174, 1, 0, 0, 0, 892, 8182, 1, 0, 0, 0, 894, 8196, 1, 0, 0, 0, 896, 8202, 1, 0, 0, 0, 898, 8223, 1, 0, 0, 0, 900, 8229, 1, 0, 0, 0, 902, 8268, 1, 0, 0, 0, 904, 8272, 1, 0, 0, 0, 906, 8298, 1, 0, 0, 0, 908, 8300, 1, 0, 0, 0, 910, 8308, 1, 0, 0, 0, 912, 8348, 1, 0, 0, 0, 914, 8382, 1, 0, 0, 0, 916, 8384, 1, 0, 0, 0, 918, 8395, 1, 0, 0, 0, 920, 8432, 1, 0, 0, 0, 922, 8436, 1, 0, 0, 0, 924, 8438, 1, 0, 0, 0, 926, 8442, 1, 0, 0, 0, 928, 8445, 1, 0, 0, 0, 930, 8467, 1, 0, 0, 0, 932, 8471, 1, 0, 0, 0, 934, 8473, 1, 0, 0, 0, 936, 8497, 1, 0, 0, 0, 938, 8501, 1, 0, 0, 0, 940, 8504, 1, 0, 0, 0, 942, 944, 3, 2, 1, 0, 943, 942, 1, 0, 0, 0, 944, 947, 1, 0, 0, 0, 945, 943, 1, 0, 0, 0, 945, 946, 1, 0, 0, 0, 946, 948, 1, 0, 0, 0, 947, 945, 1, 0, 0, 0, 948, 949, 5, 0, 0, 1, 949, 1, 1, 0, 0, 0, 950, 952, 3, 4, 2, 0, 951, 953, 5, 7, 0, 0, 952, 951, 1, 0, 0, 0, 952, 953, 1, 0, 0, 0, 953, 3, 1, 0, 0, 0, 954, 1075, 3, 272, 136, 0, 955, 1075, 3, 482, 241, 0, 956, 1075, 3, 478, 239, 0, 957, 1075, 3, 480, 240, 0, 958, 1075, 3, 346, 173, 0, 959, 1075, 3, 488, 244, 0, 960, 1075, 3, 286, 143, 0, 961, 1075, 3, 204, 102, 0, 962, 1075, 3, 206, 103, 0, 963, 1075, 3, 212, 106, 0, 964, 1075, 3, 226, 113, 0, 965, 1075, 3, 398, 199, 0, 966, 1075, 3, 28, 14, 0, 967, 1075, 3, 428, 214, 0, 968, 1075, 3, 430, 215, 0, 969, 1075, 3, 440, 220, 0, 970, 1075, 3, 432, 216, 0, 971, 1075, 3, 438, 219, 0, 972, 1075, 3, 238, 119, 0, 973, 1075, 3, 240, 120, 0, 974, 1075, 3, 192, 96, 0, 975, 1075, 3, 484, 242, 0, 976, 1075, 3, 76, 38, 0, 977, 1075, 3, 424, 212, 0, 978, 1075, 3, 100, 50, 0, 979, 1075, 3, 444, 222, 0, 980, 1075, 3, 18, 9, 0, 981, 1075, 3, 20, 10, 0, 982, 1075, 3, 16, 8, 0, 983, 1075, 3, 448, 224, 0, 984, 1075, 3, 178, 89, 0, 985, 1075, 3, 492, 246, 0, 986, 1075, 3, 490, 245, 0, 987, 1075, 3, 234, 117, 0, 988, 1075, 3, 500, 250, 0, 989, 1075, 3, 6, 3, 0, 990, 1075, 3, 72, 36, 0, 991, 1075, 3, 104, 52, 0, 992, 1075, 3, 496, 248, 0, 993, 1075, 3, 318, 159, 0, 994, 1075, 3, 70, 35, 0, 995, 1075, 3, 106, 53, 0, 996, 1075, 3, 248, 124, 0, 997, 1075, 3, 180, 90, 0, 998, 1075, 3, 274, 137, 0, 999, 1075, 3, 414, 207, 0, 1000, 1075, 3, 494, 247, 0, 1001, 1075, 3, 486, 243, 0, 1002, 1075, 3, 202, 101, 0, 1003, 1075, 3, 208, 104, 0, 1004, 1075, 3, 222, 111, 0, 1005, 1075, 3, 228, 114, 0, 1006, 1075, 3, 358, 179, 0, 1007, 1075, 3, 26, 13, 0, 1008, 1075, 3, 186, 93, 0, 1009, 1075, 3, 290, 145, 0, 1010, 1075, 3, 294, 147, 0, 1011, 1075, 3, 442, 221, 0, 1012, 1075, 3, 296, 148, 0, 1013, 1075, 3, 236, 118, 0, 1014, 1075, 3, 198, 99, 0, 1015, 1075, 3, 30, 15, 0, 1016, 1075, 3, 190, 95, 0, 1017, 1075, 3, 114, 57, 0, 1018, 1075, 3, 446, 223, 0, 1019, 1075, 3, 176, 88, 0, 1020, 1075, 3, 200, 100, 0, 1021, 1075, 3, 418, 209, 0, 1022, 1075, 3, 250, 125, 0, 1023, 1075, 3, 268, 134, 0, 1024, 1075, 3, 8, 4, 0, 1025, 1075, 3, 14, 7, 0, 1026, 1075, 3, 232, 116, 0, 1027, 1075, 3, 474, 237, 0, 1028, 1075, 3, 530, 265, 0, 1029, 1075, 3, 552, 276, 0, 1030, 1075, 3, 276, 138, 0, 1031, 1075, 3, 542, 271, 0, 1032, 1075, 3, 74, 37, 0, 1033, 1075, 3, 412, 206, 0, 1034, 1075, 3, 302, 151, 0, 1035, 1075, 3, 526, 263, 0, 1036, 1075, 3, 514, 257, 0, 1037, 1075, 3, 322, 161, 0, 1038, 1075, 3, 328, 164, 0, 1039, 1075, 3, 342, 171, 0, 1040, 1075, 3, 910, 455, 0, 1041, 1075, 3, 230, 115, 0, 1042, 1075, 3, 352, 176, 0, 1043, 1075, 3, 532, 266, 0, 1044, 1075, 3, 458, 229, 0, 1045, 1075, 3, 188, 94, 0, 1046, 1075, 3, 472, 236, 0, 1047, 1075, 3, 544, 272, 0, 1048, 1075, 3, 454, 227, 0, 1049, 1075, 3, 520, 260, 0, 1050, 1075, 3, 300, 150, 0, 1051, 1075, 3, 422, 211, 0, 1052, 1075, 3, 402, 201, 0, 1053, 1075, 3, 400, 200, 0, 1054, 1075, 3, 404, 202, 0, 1055, 1075, 3, 426, 213, 0, 1056, 1075, 3, 330, 165, 0, 1057, 1075, 3, 344, 172, 0, 1058, 1075, 3, 450, 225, 0, 1059, 1075, 3, 320, 160, 0, 1060, 1075, 3, 554, 277, 0, 1061, 1075, 3, 462, 231, 0, 1062, 1075, 3, 314, 157, 0, 1063, 1075, 3, 460, 230, 0, 1064, 1075, 3, 546, 273, 0, 1065, 1075, 3, 498, 249, 0, 1066, 1075, 3, 60, 30, 0, 1067, 1075, 3, 36, 18, 0, 1068, 1075, 3, 68, 34, 0, 1069, 1075, 3, 470, 235, 0, 1070, 1072, 5, 583, 0, 0, 1071, 1073, 5, 584, 0, 0, 1072, 1071, 1, 0, 0, 0, 1072, 1073, 1, 0, 0, 0, 1073, 1075, 1, 0, 0, 0, 1074, 954, 1, 0, 0, 0, 1074, 955, 1, 0, 0, 0, 1074, 956, 1, 0, 0, 0, 1074, 957, 1, 0, 0, 0, 1074, 958, 1, 0, 0, 0, 1074, 959, 1, 0, 0, 0, 1074, 960, 1, 0, 0, 0, 1074, 961, 1, 0, 0, 0, 1074, 962, 1, 0, 0, 0, 1074, 963, 1, 0, 0, 0, 1074, 964, 1, 0, 0, 0, 1074, 965, 1, 0, 0, 0, 1074, 966, 1, 0, 0, 0, 1074, 967, 1, 0, 0, 0, 1074, 968, 1, 0, 0, 0, 1074, 969, 1, 0, 0, 0, 1074, 970, 1, 0, 0, 0, 1074, 971, 1, 0, 0, 0, 1074, 972, 1, 0, 0, 0, 1074, 973, 1, 0, 0, 0, 1074, 974, 1, 0, 0, 0, 1074, 975, 1, 0, 0, 0, 1074, 976, 1, 0, 0, 0, 1074, 977, 1, 0, 0, 0, 1074, 978, 1, 0, 0, 0, 1074, 979, 1, 0, 0, 0, 1074, 980, 1, 0, 0, 0, 1074, 981, 1, 0, 0, 0, 1074, 982, 1, 0, 0, 0, 1074, 983, 1, 0, 0, 0, 1074, 984, 1, 0, 0, 0, 1074, 985, 1, 0, 0, 0, 1074, 986, 1, 0, 0, 0, 1074, 987, 1, 0, 0, 0, 1074, 988, 1, 0, 0, 0, 1074, 989, 1, 0, 0, 0, 1074, 990, 1, 0, 0, 0, 1074, 991, 1, 0, 0, 0, 1074, 992, 1, 0, 0, 0, 1074, 993, 1, 0, 0, 0, 1074, 994, 1, 0, 0, 0, 1074, 995, 1, 0, 0, 0, 1074, 996, 1, 0, 0, 0, 1074, 997, 1, 0, 0, 0, 1074, 998, 1, 0, 0, 0, 1074, 999, 1, 0, 0, 0, 1074, 1000, 1, 0, 0, 0, 1074, 1001, 1, 0, 0, 0, 1074, 1002, 1, 0, 0, 0, 1074, 1003, 1, 0, 0, 0, 1074, 1004, 1, 0, 0, 0, 1074, 1005, 1, 0, 0, 0, 1074, 1006, 1, 0, 0, 0, 1074, 1007, 1, 0, 0, 0, 1074, 1008, 1, 0, 0, 0, 1074, 1009, 1, 0, 0, 0, 1074, 1010, 1, 0, 0, 0, 1074, 1011, 1, 0, 0, 0, 1074, 1012, 1, 0, 0, 0, 1074, 1013, 1, 0, 0, 0, 1074, 1014, 1, 0, 0, 0, 1074, 1015, 1, 0, 0, 0, 1074, 1016, 1, 0, 0, 0, 1074, 1017, 1, 0, 0, 0, 1074, 1018, 1, 0, 0, 0, 1074, 1019, 1, 0, 0, 0, 1074, 1020, 1, 0, 0, 0, 1074, 1021, 1, 0, 0, 0, 1074, 1022, 1, 0, 0, 0, 1074, 1023, 1, 0, 0, 0, 1074, 1024, 1, 0, 0, 0, 1074, 1025, 1, 0, 0, 0, 1074, 1026, 1, 0, 0, 0, 1074, 1027, 1, 0, 0, 0, 1074, 1028, 1, 0, 0, 0, 1074, 1029, 1, 0, 0, 0, 1074, 1030, 1, 0, 0, 0, 1074, 1031, 1, 0, 0, 0, 1074, 1032, 1, 0, 0, 0, 1074, 1033, 1, 0, 0, 0, 1074, 1034, 1, 0, 0, 0, 1074, 1035, 1, 0, 0, 0, 1074, 1036, 1, 0, 0, 0, 1074, 1037, 1, 0, 0, 0, 1074, 1038, 1, 0, 0, 0, 1074, 1039, 1, 0, 0, 0, 1074, 1040, 1, 0, 0, 0, 1074, 1041, 1, 0, 0, 0, 1074, 1042, 1, 0, 0, 0, 1074, 1043, 1, 0, 0, 0, 1074, 1044, 1, 0, 0, 0, 1074, 1045, 1, 0, 0, 0, 1074, 1046, 1, 0, 0, 0, 1074, 1047, 1, 0, 0, 0, 1074, 1048, 1, 0, 0, 0, 1074, 1049, 1, 0, 0, 0, 1074, 1050, 1, 0, 0, 0, 1074, 1051, 1, 0, 0, 0, 1074, 1052, 1, 0, 0, 0, 1074, 1053, 1, 0, 0, 0, 1074, 1054, 1, 0, 0, 0, 1074, 1055, 1, 0, 0, 0, 1074, 1056, 1, 0, 0, 0, 1074, 1057, 1, 0, 0, 0, 1074, 1058, 1, 0, 0, 0, 1074, 1059, 1, 0, 0, 0, 1074, 1060, 1, 0, 0, 0, 1074, 1061, 1, 0, 0, 0, 1074, 1062, 1, 0, 0, 0, 1074, 1063, 1, 0, 0, 0, 1074, 1064, 1, 0, 0, 0, 1074, 1065, 1, 0, 0, 0, 1074, 1066, 1, 0, 0, 0, 1074, 1067, 1, 0, 0, 0, 1074, 1068, 1, 0, 0, 0, 1074, 1069, 1, 0, 0, 0, 1074, 1070, 1, 0, 0, 0, 1075, 5, 1, 0, 0, 0, 1076, 1077, 5, 433, 0, 0, 1077, 1078, 3, 680, 340, 0, 1078, 7, 1, 0, 0, 0, 1079, 1080, 5, 46, 0, 0, 1080, 1081, 5, 318, 0, 0, 1081, 1083, 3, 822, 411, 0, 1082, 1084, 5, 105, 0, 0, 1083, 1082, 1, 0, 0, 0, 1083, 1084, 1, 0, 0, 0, 1084, 1088, 1, 0, 0, 0, 1085, 1087, 3, 12, 6, 0, 1086, 1085, 1, 0, 0, 0, 1087, 1090, 1, 0, 0, 0, 1088, 1086, 1, 0, 0, 0, 1088, 1089, 1, 0, 0, 0, 1089, 9, 1, 0, 0, 0, 1090, 1088, 1, 0, 0, 0, 1091, 1094, 5, 287, 0, 0, 1092, 1095, 3, 816, 408, 0, 1093, 1095, 5, 78, 0, 0, 1094, 1092, 1, 0, 0, 0, 1094, 1093, 1, 0, 0, 0, 1095, 1130, 1, 0, 0, 0, 1096, 1097, 7, 0, 0, 0, 1097, 1098, 5, 287, 0, 0, 1098, 1130, 3, 816, 408, 0, 1099, 1130, 5, 228, 0, 0, 1100, 1130, 5, 229, 0, 0, 1101, 1130, 5, 236, 0, 0, 1102, 1130, 5, 237, 0, 0, 1103, 1130, 5, 234, 0, 0, 1104, 1130, 5, 235, 0, 0, 1105, 1130, 5, 232, 0, 0, 1106, 1130, 5, 233, 0, 0, 1107, 1130, 5, 230, 0, 0, 1108, 1130, 5, 231, 0, 0, 1109, 1130, 5, 535, 0, 0, 1110, 1130, 5, 536, 0, 0, 1111, 1130, 5, 537, 0, 0, 1112, 1130, 5, 538, 0, 0, 1113, 1130, 5, 539, 0, 0, 1114, 1130, 5, 540, 0, 0, 1115, 1116, 5, 164, 0, 0, 1116, 1117, 5, 74, 0, 0, 1117, 1130, 3, 820, 410, 0, 1118, 1119, 5, 371, 0, 0, 1119, 1120, 5, 368, 0, 0, 1120, 1130, 3, 816, 408, 0, 1121, 1122, 5, 68, 0, 0, 1122, 1123, 7, 1, 0, 0, 1123, 1130, 3, 788, 394, 0, 1124, 1125, 7, 2, 0, 0, 1125, 1130, 3, 824, 412, 0, 1126, 1127, 5, 134, 0, 0, 1127, 1130, 3, 788, 394, 0, 1128, 1130, 3, 836, 418, 0, 1129, 1091, 1, 0, 0, 0, 1129, 1096, 1, 0, 0, 0, 1129, 1099, 1, 0, 0, 0, 1129, 1100, 1, 0, 0, 0, 1129, 1101, 1, 0, 0, 0, 1129, 1102, 1, 0, 0, 0, 1129, 1103, 1, 0, 0, 0, 1129, 1104, 1, 0, 0, 0, 1129, 1105, 1, 0, 0, 0, 1129, 1106, 1, 0, 0, 0, 1129, 1107, 1, 0, 0, 0, 1129, 1108, 1, 0, 0, 0, 1129, 1109, 1, 0, 0, 0, 1129, 1110, 1, 0, 0, 0, 1129, 1111, 1, 0, 0, 0, 1129, 1112, 1, 0, 0, 0, 1129, 1113, 1, 0, 0, 0, 1129, 1114, 1, 0, 0, 0, 1129, 1115, 1, 0, 0, 0, 1129, 1118, 1, 0, 0, 0, 1129, 1121, 1, 0, 0, 0, 1129, 1124, 1, 0, 0, 0, 1129, 1126, 1, 0, 0, 0, 1129, 1128, 1, 0, 0, 0, 1130, 11, 1, 0, 0, 0, 1131, 1140, 3, 10, 5, 0, 1132, 1133, 5, 348, 0, 0, 1133, 1140, 5, 574, 0, 0, 1134, 1135, 7, 3, 0, 0, 1135, 1140, 3, 824, 412, 0, 1136, 1137, 5, 68, 0, 0, 1137, 1138, 7, 1, 0, 0, 1138, 1140, 3, 824, 412, 0, 1139, 1131, 1, 0, 0, 0, 1139, 1132, 1, 0, 0, 0, 1139, 1134, 1, 0, 0, 0, 1139, 1136, 1, 0, 0, 0, 1140, 13, 1, 0, 0, 0, 1141, 1142, 5, 46, 0, 0, 1142, 1143, 5, 99, 0, 0, 1143, 1145, 3, 822, 411, 0, 1144, 1146, 5, 105, 0, 0, 1145, 1144, 1, 0, 0, 0, 1145, 1146, 1, 0, 0, 0, 1146, 1150, 1, 0, 0, 0, 1147, 1149, 3, 12, 6, 0, 1148, 1147, 1, 0, 0, 0, 1149, 1152, 1, 0, 0, 0, 1150, 1148, 1, 0, 0, 0, 1150, 1151, 1, 0, 0, 0, 1151, 15, 1, 0, 0, 0, 1152, 1150, 1, 0, 0, 0, 1153, 1154, 5, 138, 0, 0, 1154, 1155, 7, 2, 0, 0, 1155, 1157, 3, 822, 411, 0, 1156, 1158, 5, 105, 0, 0, 1157, 1156, 1, 0, 0, 0, 1157, 1158, 1, 0, 0, 0, 1158, 1162, 1, 0, 0, 0, 1159, 1161, 3, 10, 5, 0, 1160, 1159, 1, 0, 0, 0, 1161, 1164, 1, 0, 0, 0, 1162, 1160, 1, 0, 0, 0, 1162, 1163, 1, 0, 0, 0, 1163, 17, 1, 0, 0, 0, 1164, 1162, 1, 0, 0, 0, 1165, 1166, 5, 138, 0, 0, 1166, 1169, 7, 2, 0, 0, 1167, 1170, 5, 30, 0, 0, 1168, 1170, 3, 822, 411, 0, 1169, 1167, 1, 0, 0, 0, 1169, 1168, 1, 0, 0, 0, 1170, 1171, 1, 0, 0, 0, 1171, 1172, 5, 68, 0, 0, 1172, 1173, 5, 175, 0, 0, 1173, 1174, 3, 792, 396, 0, 1174, 1175, 3, 64, 32, 0, 1175, 19, 1, 0, 0, 0, 1176, 1177, 5, 138, 0, 0, 1177, 1178, 5, 442, 0, 0, 1178, 1180, 3, 798, 399, 0, 1179, 1181, 3, 362, 181, 0, 1180, 1179, 1, 0, 0, 0, 1180, 1181, 1, 0, 0, 0, 1181, 1182, 1, 0, 0, 0, 1182, 1183, 3, 22, 11, 0, 1183, 21, 1, 0, 0, 0, 1184, 1188, 3, 24, 12, 0, 1185, 1187, 3, 24, 12, 0, 1186, 1185, 1, 0, 0, 0, 1187, 1190, 1, 0, 0, 0, 1188, 1186, 1, 0, 0, 0, 1188, 1189, 1, 0, 0, 0, 1189, 1192, 1, 0, 0, 0, 1190, 1188, 1, 0, 0, 0, 1191, 1193, 5, 315, 0, 0, 1192, 1191, 1, 0, 0, 0, 1192, 1193, 1, 0, 0, 0, 1193, 1211, 1, 0, 0, 0, 1194, 1195, 5, 309, 0, 0, 1195, 1196, 5, 94, 0, 0, 1196, 1211, 3, 796, 398, 0, 1197, 1198, 5, 282, 0, 0, 1198, 1199, 5, 94, 0, 0, 1199, 1211, 3, 822, 411, 0, 1200, 1201, 5, 333, 0, 0, 1201, 1202, 5, 323, 0, 0, 1202, 1211, 3, 32, 16, 0, 1203, 1205, 5, 269, 0, 0, 1204, 1203, 1, 0, 0, 0, 1204, 1205, 1, 0, 0, 0, 1205, 1206, 1, 0, 0, 0, 1206, 1207, 5, 462, 0, 0, 1207, 1208, 5, 80, 0, 0, 1208, 1209, 5, 204, 0, 0, 1209, 1211, 3, 826, 413, 0, 1210, 1184, 1, 0, 0, 0, 1210, 1194, 1, 0, 0, 0, 1210, 1197, 1, 0, 0, 0, 1210, 1200, 1, 0, 0, 0, 1210, 1204, 1, 0, 0, 0, 1211, 23, 1, 0, 0, 0, 1212, 1255, 5, 222, 0, 0, 1213, 1255, 5, 338, 0, 0, 1214, 1255, 5, 377, 0, 0, 1215, 1217, 5, 77, 0, 0, 1216, 1215, 1, 0, 0, 0, 1216, 1217, 1, 0, 0, 0, 1217, 1218, 1, 0, 0, 0, 1218, 1255, 5, 250, 0, 0, 1219, 1221, 5, 205, 0, 0, 1220, 1219, 1, 0, 0, 0, 1220, 1221, 1, 0, 0, 0, 1221, 1222, 1, 0, 0, 0, 1222, 1223, 5, 327, 0, 0, 1223, 1230, 5, 243, 0, 0, 1224, 1226, 5, 205, 0, 0, 1225, 1224, 1, 0, 0, 0, 1225, 1226, 1, 0, 0, 0, 1226, 1227, 1, 0, 0, 0, 1227, 1228, 5, 327, 0, 0, 1228, 1230, 5, 181, 0, 0, 1229, 1220, 1, 0, 0, 0, 1229, 1225, 1, 0, 0, 0, 1230, 1255, 1, 0, 0, 0, 1231, 1232, 5, 460, 0, 0, 1232, 1255, 7, 4, 0, 0, 1233, 1234, 5, 170, 0, 0, 1234, 1255, 3, 832, 416, 0, 1235, 1236, 5, 320, 0, 0, 1236, 1255, 3, 826, 413, 0, 1237, 1238, 5, 333, 0, 0, 1238, 1239, 3, 826, 413, 0, 1239, 1242, 7, 5, 0, 0, 1240, 1243, 3, 826, 413, 0, 1241, 1243, 5, 53, 0, 0, 1242, 1240, 1, 0, 0, 0, 1242, 1241, 1, 0, 0, 0, 1243, 1255, 1, 0, 0, 0, 1244, 1245, 5, 333, 0, 0, 1245, 1246, 3, 826, 413, 0, 1246, 1247, 5, 64, 0, 0, 1247, 1248, 5, 434, 0, 0, 1248, 1255, 1, 0, 0, 0, 1249, 1252, 5, 313, 0, 0, 1250, 1253, 3, 826, 413, 0, 1251, 1253, 5, 30, 0, 0, 1252, 1250, 1, 0, 0, 0, 1252, 1251, 1, 0, 0, 0, 1253, 1255, 1, 0, 0, 0, 1254, 1212, 1, 0, 0, 0, 1254, 1213, 1, 0, 0, 0, 1254, 1214, 1, 0, 0, 0, 1254, 1216, 1, 0, 0, 0, 1254, 1229, 1, 0, 0, 0, 1254, 1231, 1, 0, 0, 0, 1254, 1233, 1, 0, 0, 0, 1254, 1235, 1, 0, 0, 0, 1254, 1237, 1, 0, 0, 0, 1254, 1244, 1, 0, 0, 0, 1254, 1249, 1, 0, 0, 0, 1255, 25, 1, 0, 0, 0, 1256, 1257, 5, 46, 0, 0, 1257, 1258, 5, 66, 0, 0, 1258, 1260, 3, 822, 411, 0, 1259, 1261, 5, 105, 0, 0, 1260, 1259, 1, 0, 0, 0, 1260, 1261, 1, 0, 0, 0, 1261, 1265, 1, 0, 0, 0, 1262, 1264, 3, 12, 6, 0, 1263, 1262, 1, 0, 0, 0, 1264, 1267, 1, 0, 0, 0, 1265, 1263, 1, 0, 0, 0, 1265, 1266, 1, 0, 0, 0, 1266, 27, 1, 0, 0, 0, 1267, 1265, 1, 0, 0, 0, 1268, 1269, 5, 138, 0, 0, 1269, 1270, 5, 66, 0, 0, 1270, 1271, 3, 822, 411, 0, 1271, 1272, 7, 6, 0, 0, 1272, 1273, 5, 99, 0, 0, 1273, 1274, 3, 824, 412, 0, 1274, 29, 1, 0, 0, 0, 1275, 1276, 5, 46, 0, 0, 1276, 1278, 5, 323, 0, 0, 1277, 1279, 3, 288, 144, 0, 1278, 1277, 1, 0, 0, 0, 1278, 1279, 1, 0, 0, 0, 1279, 1286, 1, 0, 0, 0, 1280, 1282, 3, 32, 16, 0, 1281, 1280, 1, 0, 0, 0, 1281, 1282, 1, 0, 0, 0, 1282, 1283, 1, 0, 0, 0, 1283, 1284, 5, 106, 0, 0, 1284, 1287, 3, 822, 411, 0, 1285, 1287, 3, 32, 16, 0, 1286, 1281, 1, 0, 0, 0, 1286, 1285, 1, 0, 0, 0, 1287, 1291, 1, 0, 0, 0, 1288, 1290, 3, 34, 17, 0, 1289, 1288, 1, 0, 0, 0, 1290, 1293, 1, 0, 0, 0, 1291, 1289, 1, 0, 0, 0, 1291, 1292, 1, 0, 0, 0, 1292, 31, 1, 0, 0, 0, 1293, 1291, 1, 0, 0, 0, 1294, 1295, 3, 310, 155, 0, 1295, 33, 1, 0, 0, 0, 1296, 1303, 3, 114, 57, 0, 1297, 1303, 3, 352, 176, 0, 1298, 1303, 3, 190, 95, 0, 1299, 1303, 3, 250, 125, 0, 1300, 1303, 3, 328, 164, 0, 1301, 1303, 3, 470, 235, 0, 1302, 1296, 1, 0, 0, 0, 1302, 1297, 1, 0, 0, 0, 1302, 1298, 1, 0, 0, 0, 1302, 1299, 1, 0, 0, 0, 1302, 1300, 1, 0, 0, 0, 1302, 1301, 1, 0, 0, 0, 1303, 35, 1, 0, 0, 0, 1304, 1306, 5, 333, 0, 0, 1305, 1307, 7, 7, 0, 0, 1306, 1305, 1, 0, 0, 0, 1306, 1307, 1, 0, 0, 0, 1307, 1308, 1, 0, 0, 0, 1308, 1309, 3, 38, 19, 0, 1309, 37, 1, 0, 0, 0, 1310, 1311, 5, 356, 0, 0, 1311, 1319, 3, 468, 234, 0, 1312, 1313, 5, 332, 0, 0, 1313, 1314, 5, 154, 0, 0, 1314, 1315, 5, 36, 0, 0, 1315, 1316, 5, 356, 0, 0, 1316, 1319, 3, 468, 234, 0, 1317, 1319, 3, 42, 21, 0, 1318, 1310, 1, 0, 0, 0, 1318, 1312, 1, 0, 0, 0, 1318, 1317, 1, 0, 0, 0, 1319, 39, 1, 0, 0, 0, 1320, 1323, 5, 30, 0, 0, 1321, 1323, 3, 44, 22, 0, 1322, 1320, 1, 0, 0, 0, 1322, 1321, 1, 0, 0, 0, 1323, 1325, 1, 0, 0, 0, 1324, 1326, 7, 5, 0, 0, 1325, 1324, 1, 0, 0, 0, 1325, 1326, 1, 0, 0, 0, 1326, 1329, 1, 0, 0, 0, 1327, 1330, 5, 53, 0, 0, 1328, 1330, 3, 46, 23, 0, 1329, 1327, 1, 0, 0, 0, 1329, 1328, 1, 0, 0, 0, 1329, 1330, 1, 0, 0, 0, 1330, 41, 1, 0, 0, 0, 1331, 1332, 5, 418, 0, 0, 1332, 1333, 5, 386, 0, 0, 1333, 1360, 3, 56, 28, 0, 1334, 1335, 5, 152, 0, 0, 1335, 1360, 3, 816, 408, 0, 1336, 1337, 5, 323, 0, 0, 1337, 1360, 3, 794, 397, 0, 1338, 1341, 5, 267, 0, 0, 1339, 1342, 3, 816, 408, 0, 1340, 1342, 5, 53, 0, 0, 1341, 1339, 1, 0, 0, 0, 1341, 1340, 1, 0, 0, 0, 1341, 1342, 1, 0, 0, 0, 1342, 1360, 1, 0, 0, 0, 1343, 1344, 5, 318, 0, 0, 1344, 1360, 3, 58, 29, 0, 1345, 1346, 5, 332, 0, 0, 1346, 1347, 5, 106, 0, 0, 1347, 1360, 3, 58, 29, 0, 1348, 1349, 5, 383, 0, 0, 1349, 1350, 5, 279, 0, 0, 1350, 1360, 3, 692, 346, 0, 1351, 1352, 5, 356, 0, 0, 1352, 1353, 5, 337, 0, 0, 1353, 1360, 3, 816, 408, 0, 1354, 1355, 3, 44, 22, 0, 1355, 1356, 5, 64, 0, 0, 1356, 1357, 5, 434, 0, 0, 1357, 1360, 1, 0, 0, 0, 1358, 1360, 3, 40, 20, 0, 1359, 1331, 1, 0, 0, 0, 1359, 1334, 1, 0, 0, 0, 1359, 1336, 1, 0, 0, 0, 1359, 1338, 1, 0, 0, 0, 1359, 1343, 1, 0, 0, 0, 1359, 1345, 1, 0, 0, 0, 1359, 1348, 1, 0, 0, 0, 1359, 1351, 1, 0, 0, 0, 1359, 1354, 1, 0, 0, 0, 1359, 1358, 1, 0, 0, 0, 1360, 43, 1, 0, 0, 0, 1361, 1366, 3, 826, 413, 0, 1362, 1363, 5, 11, 0, 0, 1363, 1365, 3, 826, 413, 0, 1364, 1362, 1, 0, 0, 0, 1365, 1368, 1, 0, 0, 0, 1366, 1364, 1, 0, 0, 0, 1366, 1367, 1, 0, 0, 0, 1367, 45, 1, 0, 0, 0, 1368, 1366, 1, 0, 0, 0, 1369, 1374, 3, 48, 24, 0, 1370, 1371, 5, 6, 0, 0, 1371, 1373, 3, 48, 24, 0, 1372, 1370, 1, 0, 0, 0, 1373, 1376, 1, 0, 0, 0, 1374, 1372, 1, 0, 0, 0, 1374, 1375, 1, 0, 0, 0, 1375, 47, 1, 0, 0, 0, 1376, 1374, 1, 0, 0, 0, 1377, 1380, 3, 54, 27, 0, 1378, 1380, 3, 196, 98, 0, 1379, 1377, 1, 0, 0, 0, 1379, 1378, 1, 0, 0, 0, 1380, 49, 1, 0, 0, 0, 1381, 1382, 5, 300, 0, 0, 1382, 1387, 7, 8, 0, 0, 1383, 1384, 5, 310, 0, 0, 1384, 1387, 5, 300, 0, 0, 1385, 1387, 5, 330, 0, 0, 1386, 1381, 1, 0, 0, 0, 1386, 1383, 1, 0, 0, 0, 1386, 1385, 1, 0, 0, 0, 1387, 51, 1, 0, 0, 0, 1388, 1395, 5, 96, 0, 0, 1389, 1395, 5, 60, 0, 0, 1390, 1395, 5, 80, 0, 0, 1391, 1395, 3, 806, 403, 0, 1392, 1395, 3, 842, 421, 0, 1393, 1395, 3, 816, 408, 0, 1394, 1388, 1, 0, 0, 0, 1394, 1389, 1, 0, 0, 0, 1394, 1390, 1, 0, 0, 0, 1394, 1391, 1, 0, 0, 0, 1394, 1392, 1, 0, 0, 0, 1394, 1393, 1, 0, 0, 0, 1395, 53, 1, 0, 0, 0, 1396, 1401, 5, 96, 0, 0, 1397, 1401, 5, 60, 0, 0, 1398, 1401, 5, 80, 0, 0, 1399, 1401, 3, 58, 29, 0, 1400, 1396, 1, 0, 0, 0, 1400, 1397, 1, 0, 0, 0, 1400, 1398, 1, 0, 0, 0, 1400, 1399, 1, 0, 0, 0, 1401, 55, 1, 0, 0, 0, 1402, 1417, 3, 816, 408, 0, 1403, 1417, 5, 53, 0, 0, 1404, 1417, 3, 836, 418, 0, 1405, 1406, 5, 403, 0, 0, 1406, 1408, 3, 816, 408, 0, 1407, 1409, 3, 664, 332, 0, 1408, 1407, 1, 0, 0, 0, 1408, 1409, 1, 0, 0, 0, 1409, 1417, 1, 0, 0, 0, 1410, 1411, 5, 403, 0, 0, 1411, 1412, 3, 656, 328, 0, 1412, 1413, 3, 816, 408, 0, 1413, 1417, 1, 0, 0, 0, 1414, 1417, 3, 196, 98, 0, 1415, 1417, 5, 254, 0, 0, 1416, 1402, 1, 0, 0, 0, 1416, 1403, 1, 0, 0, 0, 1416, 1404, 1, 0, 0, 0, 1416, 1405, 1, 0, 0, 0, 1416, 1410, 1, 0, 0, 0, 1416, 1414, 1, 0, 0, 0, 1416, 1415, 1, 0, 0, 0, 1417, 57, 1, 0, 0, 0, 1418, 1421, 3, 830, 415, 0, 1419, 1421, 3, 816, 408, 0, 1420, 1418, 1, 0, 0, 0, 1420, 1419, 1, 0, 0, 0, 1421, 59, 1, 0, 0, 0, 1422, 1423, 5, 313, 0, 0, 1423, 1424, 3, 62, 31, 0, 1424, 61, 1, 0, 0, 0, 1425, 1426, 5, 418, 0, 0, 1426, 1435, 5, 386, 0, 0, 1427, 1428, 5, 356, 0, 0, 1428, 1429, 5, 244, 0, 0, 1429, 1435, 5, 251, 0, 0, 1430, 1431, 5, 332, 0, 0, 1431, 1435, 5, 106, 0, 0, 1432, 1435, 5, 30, 0, 0, 1433, 1435, 3, 44, 22, 0, 1434, 1425, 1, 0, 0, 0, 1434, 1427, 1, 0, 0, 0, 1434, 1430, 1, 0, 0, 0, 1434, 1432, 1, 0, 0, 0, 1434, 1433, 1, 0, 0, 0, 1435, 63, 1, 0, 0, 0, 1436, 1437, 5, 333, 0, 0, 1437, 1440, 3, 38, 19, 0, 1438, 1440, 3, 60, 30, 0, 1439, 1436, 1, 0, 0, 0, 1439, 1438, 1, 0, 0, 0, 1440, 65, 1, 0, 0, 0, 1441, 1442, 5, 333, 0, 0, 1442, 1445, 3, 42, 21, 0, 1443, 1445, 3, 60, 30, 0, 1444, 1441, 1, 0, 0, 0, 1444, 1443, 1, 0, 0, 0, 1445, 67, 1, 0, 0, 0, 1446, 1456, 5, 335, 0, 0, 1447, 1457, 3, 44, 22, 0, 1448, 1449, 5, 418, 0, 0, 1449, 1457, 5, 386, 0, 0, 1450, 1451, 5, 356, 0, 0, 1451, 1452, 5, 244, 0, 0, 1452, 1457, 5, 251, 0, 0, 1453, 1454, 5, 332, 0, 0, 1454, 1457, 5, 106, 0, 0, 1455, 1457, 5, 30, 0, 0, 1456, 1447, 1, 0, 0, 0, 1456, 1448, 1, 0, 0, 0, 1456, 1450, 1, 0, 0, 0, 1456, 1453, 1, 0, 0, 0, 1456, 1455, 1, 0, 0, 0, 1457, 69, 1, 0, 0, 0, 1458, 1459, 5, 333, 0, 0, 1459, 1462, 5, 165, 0, 0, 1460, 1463, 5, 30, 0, 0, 1461, 1463, 3, 764, 382, 0, 1462, 1460, 1, 0, 0, 0, 1462, 1461, 1, 0, 0, 0, 1463, 1464, 1, 0, 0, 0, 1464, 1465, 7, 9, 0, 0, 1465, 71, 1, 0, 0, 0, 1466, 1467, 5, 155, 0, 0, 1467, 73, 1, 0, 0, 0, 1468, 1469, 5, 187, 0, 0, 1469, 1470, 7, 10, 0, 0, 1470, 75, 1, 0, 0, 0, 1471, 1472, 5, 138, 0, 0, 1472, 1474, 5, 92, 0, 0, 1473, 1475, 3, 416, 208, 0, 1474, 1473, 1, 0, 0, 0, 1474, 1475, 1, 0, 0, 0, 1475, 1476, 1, 0, 0, 0, 1476, 1479, 3, 620, 310, 0, 1477, 1480, 3, 78, 39, 0, 1478, 1480, 3, 80, 40, 0, 1479, 1477, 1, 0, 0, 0, 1479, 1478, 1, 0, 0, 0, 1480, 1589, 1, 0, 0, 0, 1481, 1482, 5, 138, 0, 0, 1482, 1483, 5, 92, 0, 0, 1483, 1484, 5, 30, 0, 0, 1484, 1485, 5, 68, 0, 0, 1485, 1489, 3, 170, 85, 0, 1486, 1487, 5, 281, 0, 0, 1487, 1488, 5, 147, 0, 0, 1488, 1490, 3, 824, 412, 0, 1489, 1486, 1, 0, 0, 0, 1489, 1490, 1, 0, 0, 0, 1490, 1491, 1, 0, 0, 0, 1491, 1492, 5, 333, 0, 0, 1492, 1493, 5, 351, 0, 0, 1493, 1495, 3, 774, 387, 0, 1494, 1496, 5, 272, 0, 0, 1495, 1494, 1, 0, 0, 0, 1495, 1496, 1, 0, 0, 0, 1496, 1589, 1, 0, 0, 0, 1497, 1498, 5, 138, 0, 0, 1498, 1500, 5, 92, 0, 0, 1499, 1501, 3, 416, 208, 0, 1500, 1499, 1, 0, 0, 0, 1500, 1501, 1, 0, 0, 0, 1501, 1502, 1, 0, 0, 0, 1502, 1503, 3, 778, 389, 0, 1503, 1504, 3, 82, 41, 0, 1504, 1505, 3, 98, 49, 0, 1505, 1589, 1, 0, 0, 0, 1506, 1507, 5, 138, 0, 0, 1507, 1509, 5, 92, 0, 0, 1508, 1510, 3, 416, 208, 0, 1509, 1508, 1, 0, 0, 0, 1509, 1510, 1, 0, 0, 0, 1510, 1511, 1, 0, 0, 0, 1511, 1512, 3, 778, 389, 0, 1512, 1513, 5, 436, 0, 0, 1513, 1514, 5, 285, 0, 0, 1514, 1516, 3, 784, 392, 0, 1515, 1517, 7, 11, 0, 0, 1516, 1515, 1, 0, 0, 0, 1516, 1517, 1, 0, 0, 0, 1517, 1589, 1, 0, 0, 0, 1518, 1519, 5, 138, 0, 0, 1519, 1521, 5, 226, 0, 0, 1520, 1522, 3, 416, 208, 0, 1521, 1520, 1, 0, 0, 0, 1521, 1522, 1, 0, 0, 0, 1522, 1523, 1, 0, 0, 0, 1523, 1526, 3, 784, 392, 0, 1524, 1527, 3, 78, 39, 0, 1525, 1527, 3, 82, 41, 0, 1526, 1524, 1, 0, 0, 0, 1526, 1525, 1, 0, 0, 0, 1527, 1589, 1, 0, 0, 0, 1528, 1529, 5, 138, 0, 0, 1529, 1530, 5, 226, 0, 0, 1530, 1531, 5, 30, 0, 0, 1531, 1532, 5, 68, 0, 0, 1532, 1536, 3, 170, 85, 0, 1533, 1534, 5, 281, 0, 0, 1534, 1535, 5, 147, 0, 0, 1535, 1537, 3, 824, 412, 0, 1536, 1533, 1, 0, 0, 0, 1536, 1537, 1, 0, 0, 0, 1537, 1538, 1, 0, 0, 0, 1538, 1539, 5, 333, 0, 0, 1539, 1541, 3, 170, 85, 0, 1540, 1542, 5, 272, 0, 0, 1541, 1540, 1, 0, 0, 0, 1541, 1542, 1, 0, 0, 0, 1542, 1589, 1, 0, 0, 0, 1543, 1544, 5, 138, 0, 0, 1544, 1546, 5, 328, 0, 0, 1545, 1547, 3, 416, 208, 0, 1546, 1545, 1, 0, 0, 0, 1546, 1547, 1, 0, 0, 0, 1547, 1548, 1, 0, 0, 0, 1548, 1549, 3, 784, 392, 0, 1549, 1550, 3, 78, 39, 0, 1550, 1589, 1, 0, 0, 0, 1551, 1553, 5, 138, 0, 0, 1552, 1554, 5, 259, 0, 0, 1553, 1552, 1, 0, 0, 0, 1553, 1554, 1, 0, 0, 0, 1554, 1555, 1, 0, 0, 0, 1555, 1557, 5, 376, 0, 0, 1556, 1558, 3, 416, 208, 0, 1557, 1556, 1, 0, 0, 0, 1557, 1558, 1, 0, 0, 0, 1558, 1559, 1, 0, 0, 0, 1559, 1560, 3, 782, 391, 0, 1560, 1561, 3, 78, 39, 0, 1561, 1589, 1, 0, 0, 0, 1562, 1563, 5, 138, 0, 0, 1563, 1564, 5, 259, 0, 0, 1564, 1565, 5, 376, 0, 0, 1565, 1566, 5, 30, 0, 0, 1566, 1567, 5, 68, 0, 0, 1567, 1571, 3, 170, 85, 0, 1568, 1569, 5, 281, 0, 0, 1569, 1570, 5, 147, 0, 0, 1570, 1572, 3, 824, 412, 0, 1571, 1568, 1, 0, 0, 0, 1571, 1572, 1, 0, 0, 0, 1572, 1573, 1, 0, 0, 0, 1573, 1574, 5, 333, 0, 0, 1574, 1575, 5, 351, 0, 0, 1575, 1577, 3, 774, 387, 0, 1576, 1578, 5, 272, 0, 0, 1577, 1576, 1, 0, 0, 0, 1577, 1578, 1, 0, 0, 0, 1578, 1589, 1, 0, 0, 0, 1579, 1580, 5, 138, 0, 0, 1580, 1581, 5, 63, 0, 0, 1581, 1583, 5, 92, 0, 0, 1582, 1584, 3, 416, 208, 0, 1583, 1582, 1, 0, 0, 0, 1583, 1584, 1, 0, 0, 0, 1584, 1585, 1, 0, 0, 0, 1585, 1586, 3, 620, 310, 0, 1586, 1587, 3, 78, 39, 0, 1587, 1589, 1, 0, 0, 0, 1588, 1471, 1, 0, 0, 0, 1588, 1481, 1, 0, 0, 0, 1588, 1497, 1, 0, 0, 0, 1588, 1506, 1, 0, 0, 0, 1588, 1518, 1, 0, 0, 0, 1588, 1528, 1, 0, 0, 0, 1588, 1543, 1, 0, 0, 0, 1588, 1551, 1, 0, 0, 0, 1588, 1562, 1, 0, 0, 0, 1588, 1579, 1, 0, 0, 0, 1589, 77, 1, 0, 0, 0, 1590, 1595, 3, 84, 42, 0, 1591, 1592, 5, 6, 0, 0, 1592, 1594, 3, 84, 42, 0, 1593, 1591, 1, 0, 0, 0, 1594, 1597, 1, 0, 0, 0, 1595, 1593, 1, 0, 0, 0, 1595, 1596, 1, 0, 0, 0, 1596, 79, 1, 0, 0, 0, 1597, 1595, 1, 0, 0, 0, 1598, 1599, 3, 82, 41, 0, 1599, 1600, 3, 98, 49, 0, 1600, 1605, 1, 0, 0, 0, 1601, 1602, 5, 436, 0, 0, 1602, 1603, 5, 285, 0, 0, 1603, 1605, 3, 784, 392, 0, 1604, 1598, 1, 0, 0, 0, 1604, 1601, 1, 0, 0, 0, 1605, 81, 1, 0, 0, 0, 1606, 1607, 5, 435, 0, 0, 1607, 1608, 5, 285, 0, 0, 1608, 1609, 3, 784, 392, 0, 1609, 83, 1, 0, 0, 0, 1610, 1613, 5, 133, 0, 0, 1611, 1612, 5, 45, 0, 0, 1612, 1614, 3, 826, 413, 0, 1613, 1611, 1, 0, 0, 0, 1613, 1614, 1, 0, 0, 0, 1614, 1615, 1, 0, 0, 0, 1615, 1844, 3, 136, 68, 0, 1616, 1617, 5, 138, 0, 0, 1617, 1618, 5, 45, 0, 0, 1618, 1622, 3, 826, 413, 0, 1619, 1621, 3, 266, 133, 0, 1620, 1619, 1, 0, 0, 0, 1621, 1624, 1, 0, 0, 0, 1622, 1620, 1, 0, 0, 0, 1622, 1623, 1, 0, 0, 0, 1623, 1844, 1, 0, 0, 0, 1624, 1622, 1, 0, 0, 0, 1625, 1626, 5, 372, 0, 0, 1626, 1627, 5, 45, 0, 0, 1627, 1844, 3, 826, 413, 0, 1628, 1629, 5, 191, 0, 0, 1629, 1631, 5, 45, 0, 0, 1630, 1632, 3, 416, 208, 0, 1631, 1630, 1, 0, 0, 0, 1631, 1632, 1, 0, 0, 0, 1632, 1633, 1, 0, 0, 0, 1633, 1635, 3, 826, 413, 0, 1634, 1636, 3, 88, 44, 0, 1635, 1634, 1, 0, 0, 0, 1635, 1636, 1, 0, 0, 0, 1636, 1844, 1, 0, 0, 0, 1637, 1638, 5, 333, 0, 0, 1638, 1639, 5, 379, 0, 0, 1639, 1844, 7, 12, 0, 0, 1640, 1641, 5, 158, 0, 0, 1641, 1642, 5, 80, 0, 0, 1642, 1844, 3, 826, 413, 0, 1643, 1644, 5, 333, 0, 0, 1644, 1844, 7, 13, 0, 0, 1645, 1647, 5, 193, 0, 0, 1646, 1648, 7, 14, 0, 0, 1647, 1646, 1, 0, 0, 0, 1647, 1648, 1, 0, 0, 0, 1648, 1649, 1, 0, 0, 0, 1649, 1844, 5, 357, 0, 0, 1650, 1651, 5, 186, 0, 0, 1651, 1655, 5, 357, 0, 0, 1652, 1656, 5, 30, 0, 0, 1653, 1656, 5, 99, 0, 0, 1654, 1656, 3, 826, 413, 0, 1655, 1652, 1, 0, 0, 0, 1655, 1653, 1, 0, 0, 0, 1655, 1654, 1, 0, 0, 0, 1656, 1844, 1, 0, 0, 0, 1657, 1658, 5, 193, 0, 0, 1658, 1659, 7, 14, 0, 0, 1659, 1660, 5, 321, 0, 0, 1660, 1844, 3, 826, 413, 0, 1661, 1662, 5, 186, 0, 0, 1662, 1663, 5, 321, 0, 0, 1663, 1844, 3, 826, 413, 0, 1664, 1666, 5, 269, 0, 0, 1665, 1664, 1, 0, 0, 0, 1665, 1666, 1, 0, 0, 0, 1666, 1667, 1, 0, 0, 0, 1667, 1668, 5, 228, 0, 0, 1668, 1844, 3, 784, 392, 0, 1669, 1670, 5, 275, 0, 0, 1670, 1844, 3, 310, 155, 0, 1671, 1672, 5, 77, 0, 0, 1672, 1844, 5, 275, 0, 0, 1673, 1674, 5, 282, 0, 0, 1674, 1675, 5, 94, 0, 0, 1675, 1844, 3, 822, 411, 0, 1676, 1677, 5, 333, 0, 0, 1677, 1678, 5, 351, 0, 0, 1678, 1844, 3, 774, 387, 0, 1679, 1680, 5, 312, 0, 0, 1680, 1685, 5, 219, 0, 0, 1681, 1686, 5, 270, 0, 0, 1682, 1686, 5, 113, 0, 0, 1683, 1686, 5, 53, 0, 0, 1684, 1686, 3, 174, 87, 0, 1685, 1681, 1, 0, 0, 0, 1685, 1682, 1, 0, 0, 0, 1685, 1683, 1, 0, 0, 0, 1685, 1684, 1, 0, 0, 0, 1686, 1844, 1, 0, 0, 0, 1687, 1694, 5, 193, 0, 0, 1688, 1694, 5, 186, 0, 0, 1689, 1691, 5, 269, 0, 0, 1690, 1689, 1, 0, 0, 0, 1690, 1691, 1, 0, 0, 0, 1691, 1692, 1, 0, 0, 0, 1692, 1694, 5, 209, 0, 0, 1693, 1687, 1, 0, 0, 0, 1693, 1688, 1, 0, 0, 0, 1693, 1690, 1, 0, 0, 0, 1694, 1695, 1, 0, 0, 0, 1695, 1696, 5, 414, 0, 0, 1696, 1697, 5, 251, 0, 0, 1697, 1844, 5, 327, 0, 0, 1698, 1700, 5, 191, 0, 0, 1699, 1701, 5, 44, 0, 0, 1700, 1699, 1, 0, 0, 0, 1700, 1701, 1, 0, 0, 0, 1701, 1703, 1, 0, 0, 0, 1702, 1704, 3, 416, 208, 0, 1703, 1702, 1, 0, 0, 0, 1703, 1704, 1, 0, 0, 0, 1704, 1705, 1, 0, 0, 0, 1705, 1707, 3, 806, 403, 0, 1706, 1708, 3, 88, 44, 0, 1707, 1706, 1, 0, 0, 0, 1707, 1708, 1, 0, 0, 0, 1708, 1844, 1, 0, 0, 0, 1709, 1711, 5, 133, 0, 0, 1710, 1712, 5, 44, 0, 0, 1711, 1710, 1, 0, 0, 0, 1711, 1712, 1, 0, 0, 0, 1712, 1714, 1, 0, 0, 0, 1713, 1715, 3, 288, 144, 0, 1714, 1713, 1, 0, 0, 0, 1714, 1715, 1, 0, 0, 0, 1715, 1716, 1, 0, 0, 0, 1716, 1844, 3, 126, 63, 0, 1717, 1719, 5, 138, 0, 0, 1718, 1720, 5, 44, 0, 0, 1719, 1718, 1, 0, 0, 0, 1719, 1720, 1, 0, 0, 0, 1720, 1721, 1, 0, 0, 0, 1721, 1724, 3, 806, 403, 0, 1722, 1725, 3, 86, 43, 0, 1723, 1725, 3, 216, 108, 0, 1724, 1722, 1, 0, 0, 0, 1724, 1723, 1, 0, 0, 0, 1725, 1844, 1, 0, 0, 0, 1726, 1728, 5, 138, 0, 0, 1727, 1729, 5, 44, 0, 0, 1728, 1727, 1, 0, 0, 0, 1728, 1729, 1, 0, 0, 0, 1729, 1730, 1, 0, 0, 0, 1730, 1731, 3, 806, 403, 0, 1731, 1732, 7, 15, 0, 0, 1732, 1733, 5, 77, 0, 0, 1733, 1734, 5, 78, 0, 0, 1734, 1844, 1, 0, 0, 0, 1735, 1737, 5, 138, 0, 0, 1736, 1738, 5, 44, 0, 0, 1737, 1736, 1, 0, 0, 0, 1737, 1738, 1, 0, 0, 0, 1738, 1739, 1, 0, 0, 0, 1739, 1740, 3, 806, 403, 0, 1740, 1741, 5, 191, 0, 0, 1741, 1743, 5, 437, 0, 0, 1742, 1744, 3, 416, 208, 0, 1743, 1742, 1, 0, 0, 0, 1743, 1744, 1, 0, 0, 0, 1744, 1844, 1, 0, 0, 0, 1745, 1747, 5, 138, 0, 0, 1746, 1748, 5, 44, 0, 0, 1747, 1746, 1, 0, 0, 0, 1747, 1748, 1, 0, 0, 0, 1748, 1749, 1, 0, 0, 0, 1749, 1750, 3, 806, 403, 0, 1750, 1751, 5, 333, 0, 0, 1751, 1752, 5, 342, 0, 0, 1752, 1753, 3, 820, 410, 0, 1753, 1844, 1, 0, 0, 0, 1754, 1756, 5, 138, 0, 0, 1755, 1757, 5, 44, 0, 0, 1756, 1755, 1, 0, 0, 0, 1756, 1757, 1, 0, 0, 0, 1757, 1758, 1, 0, 0, 0, 1758, 1760, 3, 806, 403, 0, 1759, 1754, 1, 0, 0, 0, 1759, 1760, 1, 0, 0, 0, 1760, 1761, 1, 0, 0, 0, 1761, 1762, 7, 16, 0, 0, 1762, 1844, 3, 92, 46, 0, 1763, 1765, 5, 138, 0, 0, 1764, 1766, 5, 44, 0, 0, 1765, 1764, 1, 0, 0, 0, 1765, 1766, 1, 0, 0, 0, 1766, 1767, 1, 0, 0, 0, 1767, 1768, 3, 806, 403, 0, 1768, 1769, 5, 333, 0, 0, 1769, 1770, 5, 345, 0, 0, 1770, 1771, 3, 826, 413, 0, 1771, 1844, 1, 0, 0, 0, 1772, 1774, 5, 138, 0, 0, 1773, 1775, 5, 44, 0, 0, 1774, 1773, 1, 0, 0, 0, 1774, 1775, 1, 0, 0, 0, 1775, 1776, 1, 0, 0, 0, 1776, 1777, 3, 806, 403, 0, 1777, 1778, 5, 133, 0, 0, 1778, 1779, 5, 438, 0, 0, 1779, 1780, 3, 132, 66, 0, 1780, 1781, 5, 36, 0, 0, 1781, 1790, 5, 219, 0, 0, 1782, 1784, 5, 2, 0, 0, 1783, 1785, 3, 194, 97, 0, 1784, 1783, 1, 0, 0, 0, 1785, 1786, 1, 0, 0, 0, 1786, 1784, 1, 0, 0, 0, 1786, 1787, 1, 0, 0, 0, 1787, 1788, 1, 0, 0, 0, 1788, 1789, 5, 3, 0, 0, 1789, 1791, 1, 0, 0, 0, 1790, 1782, 1, 0, 0, 0, 1790, 1791, 1, 0, 0, 0, 1791, 1844, 1, 0, 0, 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, 1810, 3, 806, 403, 0, 1797, 1802, 5, 314, 0, 0, 1798, 1800, 5, 105, 0, 0, 1799, 1798, 1, 0, 0, 0, 1799, 1800, 1, 0, 0, 0, 1800, 1801, 1, 0, 0, 0, 1801, 1803, 3, 196, 98, 0, 1802, 1799, 1, 0, 0, 0, 1802, 1803, 1, 0, 0, 0, 1803, 1811, 1, 0, 0, 0, 1804, 1808, 5, 333, 0, 0, 1805, 1809, 3, 194, 97, 0, 1806, 1807, 5, 438, 0, 0, 1807, 1809, 3, 132, 66, 0, 1808, 1805, 1, 0, 0, 0, 1808, 1806, 1, 0, 0, 0, 1809, 1811, 1, 0, 0, 0, 1810, 1797, 1, 0, 0, 0, 1810, 1804, 1, 0, 0, 0, 1811, 1812, 1, 0, 0, 0, 1812, 1810, 1, 0, 0, 0, 1812, 1813, 1, 0, 0, 0, 1813, 1844, 1, 0, 0, 0, 1814, 1816, 5, 138, 0, 0, 1815, 1817, 5, 44, 0, 0, 1816, 1815, 1, 0, 0, 0, 1816, 1817, 1, 0, 0, 0, 1817, 1818, 1, 0, 0, 0, 1818, 1819, 3, 806, 403, 0, 1819, 1820, 5, 191, 0, 0, 1820, 1822, 5, 219, 0, 0, 1821, 1823, 3, 416, 208, 0, 1822, 1821, 1, 0, 0, 0, 1822, 1823, 1, 0, 0, 0, 1823, 1844, 1, 0, 0, 0, 1824, 1826, 5, 138, 0, 0, 1825, 1827, 5, 44, 0, 0, 1826, 1825, 1, 0, 0, 0, 1826, 1827, 1, 0, 0, 0, 1827, 1828, 1, 0, 0, 0, 1828, 1831, 3, 806, 403, 0, 1829, 1830, 5, 333, 0, 0, 1830, 1832, 5, 174, 0, 0, 1831, 1829, 1, 0, 0, 0, 1831, 1832, 1, 0, 0, 0, 1832, 1833, 1, 0, 0, 0, 1833, 1834, 5, 360, 0, 0, 1834, 1836, 3, 648, 324, 0, 1835, 1837, 3, 90, 45, 0, 1836, 1835, 1, 0, 0, 0, 1836, 1837, 1, 0, 0, 0, 1837, 1840, 1, 0, 0, 0, 1838, 1839, 5, 100, 0, 0, 1839, 1841, 3, 670, 335, 0, 1840, 1838, 1, 0, 0, 0, 1840, 1841, 1, 0, 0, 0, 1841, 1844, 1, 0, 0, 0, 1842, 1844, 3, 216, 108, 0, 1843, 1610, 1, 0, 0, 0, 1843, 1616, 1, 0, 0, 0, 1843, 1625, 1, 0, 0, 0, 1843, 1628, 1, 0, 0, 0, 1843, 1637, 1, 0, 0, 0, 1843, 1640, 1, 0, 0, 0, 1843, 1643, 1, 0, 0, 0, 1843, 1645, 1, 0, 0, 0, 1843, 1650, 1, 0, 0, 0, 1843, 1657, 1, 0, 0, 0, 1843, 1661, 1, 0, 0, 0, 1843, 1665, 1, 0, 0, 0, 1843, 1669, 1, 0, 0, 0, 1843, 1671, 1, 0, 0, 0, 1843, 1673, 1, 0, 0, 0, 1843, 1676, 1, 0, 0, 0, 1843, 1679, 1, 0, 0, 0, 1843, 1693, 1, 0, 0, 0, 1843, 1698, 1, 0, 0, 0, 1843, 1709, 1, 0, 0, 0, 1843, 1717, 1, 0, 0, 0, 1843, 1726, 1, 0, 0, 0, 1843, 1735, 1, 0, 0, 0, 1843, 1745, 1, 0, 0, 0, 1843, 1759, 1, 0, 0, 0, 1843, 1763, 1, 0, 0, 0, 1843, 1772, 1, 0, 0, 0, 1843, 1792, 1, 0, 0, 0, 1843, 1814, 1, 0, 0, 0, 1843, 1824, 1, 0, 0, 0, 1843, 1842, 1, 0, 0, 0, 1844, 85, 1, 0, 0, 0, 1845, 1846, 5, 333, 0, 0, 1846, 1847, 5, 53, 0, 0, 1847, 1851, 3, 670, 335, 0, 1848, 1849, 5, 191, 0, 0, 1849, 1851, 5, 53, 0, 0, 1850, 1845, 1, 0, 0, 0, 1850, 1848, 1, 0, 0, 0, 1851, 87, 1, 0, 0, 0, 1852, 1853, 7, 17, 0, 0, 1853, 89, 1, 0, 0, 0, 1854, 1855, 5, 43, 0, 0, 1855, 1856, 3, 310, 155, 0, 1856, 91, 1, 0, 0, 0, 1857, 1858, 5, 2, 0, 0, 1858, 1863, 3, 96, 48, 0, 1859, 1860, 5, 6, 0, 0, 1860, 1862, 3, 96, 48, 0, 1861, 1859, 1, 0, 0, 0, 1862, 1865, 1, 0, 0, 0, 1863, 1861, 1, 0, 0, 0, 1863, 1864, 1, 0, 0, 0, 1864, 1866, 1, 0, 0, 0, 1865, 1863, 1, 0, 0, 0, 1866, 1867, 5, 3, 0, 0, 1867, 93, 1, 0, 0, 0, 1868, 1869, 5, 105, 0, 0, 1869, 1870, 3, 92, 46, 0, 1870, 95, 1, 0, 0, 0, 1871, 1876, 3, 832, 416, 0, 1872, 1873, 5, 10, 0, 0, 1873, 1877, 3, 282, 141, 0, 1874, 1875, 5, 11, 0, 0, 1875, 1877, 3, 280, 140, 0, 1876, 1872, 1, 0, 0, 0, 1876, 1874, 1, 0, 0, 0, 1876, 1877, 1, 0, 0, 0, 1877, 97, 1, 0, 0, 0, 1878, 1879, 5, 62, 0, 0, 1879, 1880, 5, 422, 0, 0, 1880, 1881, 5, 105, 0, 0, 1881, 1882, 5, 2, 0, 0, 1882, 1883, 5, 533, 0, 0, 1883, 1884, 3, 196, 98, 0, 1884, 1885, 5, 6, 0, 0, 1885, 1886, 5, 534, 0, 0, 1886, 1887, 3, 196, 98, 0, 1887, 1888, 5, 3, 0, 0, 1888, 1902, 1, 0, 0, 0, 1889, 1890, 5, 62, 0, 0, 1890, 1891, 5, 422, 0, 0, 1891, 1892, 5, 68, 0, 0, 1892, 1902, 3, 528, 264, 0, 1893, 1894, 5, 62, 0, 0, 1894, 1895, 5, 422, 0, 0, 1895, 1896, 5, 64, 0, 0, 1896, 1897, 3, 528, 264, 0, 1897, 1898, 5, 94, 0, 0, 1898, 1899, 3, 528, 264, 0, 1899, 1902, 1, 0, 0, 0, 1900, 1902, 5, 53, 0, 0, 1901, 1878, 1, 0, 0, 0, 1901, 1889, 1, 0, 0, 0, 1901, 1893, 1, 0, 0, 0, 1901, 1900, 1, 0, 0, 0, 1902, 99, 1, 0, 0, 0, 1903, 1904, 5, 138, 0, 0, 1904, 1905, 5, 360, 0, 0, 1905, 1906, 3, 310, 155, 0, 1906, 1911, 3, 102, 51, 0, 1907, 1908, 5, 6, 0, 0, 1908, 1910, 3, 102, 51, 0, 1909, 1907, 1, 0, 0, 0, 1910, 1913, 1, 0, 0, 0, 1911, 1909, 1, 0, 0, 0, 1911, 1912, 1, 0, 0, 0, 1912, 101, 1, 0, 0, 0, 1913, 1911, 1, 0, 0, 0, 1914, 1915, 5, 133, 0, 0, 1915, 1916, 5, 143, 0, 0, 1916, 1918, 3, 640, 320, 0, 1917, 1919, 3, 88, 44, 0, 1918, 1917, 1, 0, 0, 0, 1918, 1919, 1, 0, 0, 0, 1919, 1945, 1, 0, 0, 0, 1920, 1921, 5, 191, 0, 0, 1921, 1923, 5, 143, 0, 0, 1922, 1924, 3, 416, 208, 0, 1923, 1922, 1, 0, 0, 0, 1923, 1924, 1, 0, 0, 0, 1924, 1925, 1, 0, 0, 0, 1925, 1927, 3, 826, 413, 0, 1926, 1928, 3, 88, 44, 0, 1927, 1926, 1, 0, 0, 0, 1927, 1928, 1, 0, 0, 0, 1928, 1945, 1, 0, 0, 0, 1929, 1930, 5, 138, 0, 0, 1930, 1931, 5, 143, 0, 0, 1931, 1934, 3, 826, 413, 0, 1932, 1933, 5, 333, 0, 0, 1933, 1935, 5, 174, 0, 0, 1934, 1932, 1, 0, 0, 0, 1934, 1935, 1, 0, 0, 0, 1935, 1936, 1, 0, 0, 0, 1936, 1937, 5, 360, 0, 0, 1937, 1939, 3, 648, 324, 0, 1938, 1940, 3, 90, 45, 0, 1939, 1938, 1, 0, 0, 0, 1939, 1940, 1, 0, 0, 0, 1940, 1942, 1, 0, 0, 0, 1941, 1943, 3, 88, 44, 0, 1942, 1941, 1, 0, 0, 0, 1942, 1943, 1, 0, 0, 0, 1943, 1945, 1, 0, 0, 0, 1944, 1914, 1, 0, 0, 0, 1944, 1920, 1, 0, 0, 0, 1944, 1929, 1, 0, 0, 0, 1945, 103, 1, 0, 0, 0, 1946, 1949, 5, 157, 0, 0, 1947, 1950, 3, 826, 413, 0, 1948, 1950, 5, 30, 0, 0, 1949, 1947, 1, 0, 0, 0, 1949, 1948, 1, 0, 0, 0, 1950, 105, 1, 0, 0, 0, 1951, 1953, 5, 169, 0, 0, 1952, 1954, 5, 107, 0, 0, 1953, 1952, 1, 0, 0, 0, 1953, 1954, 1, 0, 0, 0, 1954, 1955, 1, 0, 0, 0, 1955, 1957, 3, 778, 389, 0, 1956, 1958, 3, 138, 69, 0, 1957, 1956, 1, 0, 0, 0, 1957, 1958, 1, 0, 0, 0, 1958, 1959, 1, 0, 0, 0, 1959, 1961, 7, 18, 0, 0, 1960, 1962, 5, 297, 0, 0, 1961, 1960, 1, 0, 0, 0, 1961, 1962, 1, 0, 0, 0, 1962, 1966, 1, 0, 0, 0, 1963, 1967, 3, 816, 408, 0, 1964, 1967, 5, 343, 0, 0, 1965, 1967, 5, 344, 0, 0, 1966, 1963, 1, 0, 0, 0, 1966, 1964, 1, 0, 0, 0, 1966, 1965, 1, 0, 0, 0, 1967, 1973, 1, 0, 0, 0, 1968, 1970, 5, 100, 0, 0, 1969, 1968, 1, 0, 0, 0, 1969, 1970, 1, 0, 0, 0, 1970, 1971, 1, 0, 0, 0, 1971, 1972, 5, 184, 0, 0, 1972, 1974, 3, 816, 408, 0, 1973, 1969, 1, 0, 0, 0, 1973, 1974, 1, 0, 0, 0, 1974, 1976, 1, 0, 0, 0, 1975, 1977, 5, 105, 0, 0, 1976, 1975, 1, 0, 0, 0, 1976, 1977, 1, 0, 0, 0, 1977, 1978, 1, 0, 0, 0, 1978, 1980, 3, 110, 55, 0, 1979, 1981, 3, 634, 317, 0, 1980, 1979, 1, 0, 0, 0, 1980, 1981, 1, 0, 0, 0, 1981, 2001, 1, 0, 0, 0, 1982, 1983, 5, 169, 0, 0, 1983, 1984, 5, 2, 0, 0, 1984, 1985, 3, 524, 262, 0, 1985, 1986, 5, 3, 0, 0, 1986, 1988, 5, 94, 0, 0, 1987, 1989, 5, 297, 0, 0, 1988, 1987, 1, 0, 0, 0, 1988, 1989, 1, 0, 0, 0, 1989, 1993, 1, 0, 0, 0, 1990, 1994, 3, 816, 408, 0, 1991, 1994, 5, 343, 0, 0, 1992, 1994, 5, 344, 0, 0, 1993, 1990, 1, 0, 0, 0, 1993, 1991, 1, 0, 0, 0, 1993, 1992, 1, 0, 0, 0, 1994, 1996, 1, 0, 0, 0, 1995, 1997, 5, 105, 0, 0, 1996, 1995, 1, 0, 0, 0, 1996, 1997, 1, 0, 0, 0, 1997, 1998, 1, 0, 0, 0, 1998, 1999, 3, 110, 55, 0, 1999, 2001, 1, 0, 0, 0, 2000, 1951, 1, 0, 0, 0, 2000, 1982, 1, 0, 0, 0, 2001, 107, 1, 0, 0, 0, 2002, 2045, 5, 107, 0, 0, 2003, 2045, 5, 112, 0, 0, 2004, 2006, 7, 19, 0, 0, 2005, 2007, 5, 36, 0, 0, 2006, 2005, 1, 0, 0, 0, 2006, 2007, 1, 0, 0, 0, 2007, 2008, 1, 0, 0, 0, 2008, 2045, 3, 816, 408, 0, 2009, 2045, 5, 171, 0, 0, 2010, 2045, 5, 216, 0, 0, 2011, 2012, 5, 209, 0, 0, 2012, 2015, 5, 298, 0, 0, 2013, 2016, 3, 142, 71, 0, 2014, 2016, 5, 9, 0, 0, 2015, 2013, 1, 0, 0, 0, 2015, 2014, 1, 0, 0, 0, 2016, 2045, 1, 0, 0, 0, 2017, 2019, 5, 209, 0, 0, 2018, 2020, 5, 77, 0, 0, 2019, 2018, 1, 0, 0, 0, 2019, 2020, 1, 0, 0, 0, 2020, 2021, 1, 0, 0, 0, 2021, 2022, 5, 78, 0, 0, 2022, 2045, 3, 142, 71, 0, 2023, 2024, 5, 194, 0, 0, 2024, 2045, 3, 816, 408, 0, 2025, 2042, 7, 20, 0, 0, 2026, 2029, 5, 2, 0, 0, 2027, 2030, 3, 142, 71, 0, 2028, 2030, 5, 9, 0, 0, 2029, 2027, 1, 0, 0, 0, 2029, 2028, 1, 0, 0, 0, 2030, 2038, 1, 0, 0, 0, 2031, 2034, 5, 6, 0, 0, 2032, 2035, 3, 142, 71, 0, 2033, 2035, 5, 9, 0, 0, 2034, 2032, 1, 0, 0, 0, 2034, 2033, 1, 0, 0, 0, 2035, 2037, 1, 0, 0, 0, 2036, 2031, 1, 0, 0, 0, 2037, 2040, 1, 0, 0, 0, 2038, 2036, 1, 0, 0, 0, 2038, 2039, 1, 0, 0, 0, 2039, 2041, 1, 0, 0, 0, 2040, 2038, 1, 0, 0, 0, 2041, 2043, 5, 3, 0, 0, 2042, 2026, 1, 0, 0, 0, 2042, 2043, 1, 0, 0, 0, 2043, 2045, 1, 0, 0, 0, 2044, 2002, 1, 0, 0, 0, 2044, 2003, 1, 0, 0, 0, 2044, 2004, 1, 0, 0, 0, 2044, 2009, 1, 0, 0, 0, 2044, 2010, 1, 0, 0, 0, 2044, 2011, 1, 0, 0, 0, 2044, 2017, 1, 0, 0, 0, 2044, 2023, 1, 0, 0, 0, 2044, 2025, 1, 0, 0, 0, 2045, 2048, 1, 0, 0, 0, 2046, 2044, 1, 0, 0, 0, 2046, 2047, 1, 0, 0, 0, 2047, 109, 1, 0, 0, 0, 2048, 2046, 1, 0, 0, 0, 2049, 2068, 3, 108, 54, 0, 2050, 2053, 5, 2, 0, 0, 2051, 2054, 3, 108, 54, 0, 2052, 2054, 3, 112, 56, 0, 2053, 2051, 1, 0, 0, 0, 2053, 2052, 1, 0, 0, 0, 2054, 2062, 1, 0, 0, 0, 2055, 2058, 5, 6, 0, 0, 2056, 2059, 3, 108, 54, 0, 2057, 2059, 3, 112, 56, 0, 2058, 2056, 1, 0, 0, 0, 2058, 2057, 1, 0, 0, 0, 2059, 2061, 1, 0, 0, 0, 2060, 2055, 1, 0, 0, 0, 2061, 2064, 1, 0, 0, 0, 2062, 2060, 1, 0, 0, 0, 2062, 2063, 1, 0, 0, 0, 2063, 2065, 1, 0, 0, 0, 2064, 2062, 1, 0, 0, 0, 2065, 2066, 5, 3, 0, 0, 2066, 2068, 1, 0, 0, 0, 2067, 2049, 1, 0, 0, 0, 2067, 2050, 1, 0, 0, 0, 2068, 111, 1, 0, 0, 0, 2069, 2084, 3, 832, 416, 0, 2070, 2085, 3, 54, 27, 0, 2071, 2085, 3, 196, 98, 0, 2072, 2085, 5, 9, 0, 0, 2073, 2074, 5, 2, 0, 0, 2074, 2079, 3, 52, 26, 0, 2075, 2076, 5, 6, 0, 0, 2076, 2078, 3, 52, 26, 0, 2077, 2075, 1, 0, 0, 0, 2078, 2081, 1, 0, 0, 0, 2079, 2077, 1, 0, 0, 0, 2079, 2080, 1, 0, 0, 0, 2080, 2082, 1, 0, 0, 0, 2081, 2079, 1, 0, 0, 0, 2082, 2083, 5, 3, 0, 0, 2083, 2085, 1, 0, 0, 0, 2084, 2070, 1, 0, 0, 0, 2084, 2071, 1, 0, 0, 0, 2084, 2072, 1, 0, 0, 0, 2084, 2073, 1, 0, 0, 0, 2084, 2085, 1, 0, 0, 0, 2085, 113, 1, 0, 0, 0, 2086, 2088, 5, 46, 0, 0, 2087, 2089, 3, 116, 58, 0, 2088, 2087, 1, 0, 0, 0, 2088, 2089, 1, 0, 0, 0, 2089, 2090, 1, 0, 0, 0, 2090, 2092, 5, 92, 0, 0, 2091, 2093, 3, 288, 144, 0, 2092, 2091, 1, 0, 0, 0, 2092, 2093, 1, 0, 0, 0, 2093, 2094, 1, 0, 0, 0, 2094, 2160, 3, 776, 388, 0, 2095, 2097, 5, 2, 0, 0, 2096, 2098, 3, 120, 60, 0, 2097, 2096, 1, 0, 0, 0, 2097, 2098, 1, 0, 0, 0, 2098, 2099, 1, 0, 0, 0, 2099, 2101, 5, 3, 0, 0, 2100, 2102, 3, 158, 79, 0, 2101, 2100, 1, 0, 0, 0, 2101, 2102, 1, 0, 0, 0, 2102, 2104, 1, 0, 0, 0, 2103, 2105, 3, 160, 80, 0, 2104, 2103, 1, 0, 0, 0, 2104, 2105, 1, 0, 0, 0, 2105, 2107, 1, 0, 0, 0, 2106, 2108, 3, 164, 82, 0, 2107, 2106, 1, 0, 0, 0, 2107, 2108, 1, 0, 0, 0, 2108, 2110, 1, 0, 0, 0, 2109, 2111, 3, 166, 83, 0, 2110, 2109, 1, 0, 0, 0, 2110, 2111, 1, 0, 0, 0, 2111, 2113, 1, 0, 0, 0, 2112, 2114, 3, 168, 84, 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, 2161, 1, 0, 0, 0, 2118, 2119, 5, 275, 0, 0, 2119, 2121, 3, 310, 155, 0, 2120, 2122, 3, 118, 59, 0, 2121, 2120, 1, 0, 0, 0, 2121, 2122, 1, 0, 0, 0, 2122, 2124, 1, 0, 0, 0, 2123, 2125, 3, 160, 80, 0, 2124, 2123, 1, 0, 0, 0, 2124, 2125, 1, 0, 0, 0, 2125, 2127, 1, 0, 0, 0, 2126, 2128, 3, 164, 82, 0, 2127, 2126, 1, 0, 0, 0, 2127, 2128, 1, 0, 0, 0, 2128, 2130, 1, 0, 0, 0, 2129, 2131, 3, 166, 83, 0, 2130, 2129, 1, 0, 0, 0, 2130, 2131, 1, 0, 0, 0, 2131, 2133, 1, 0, 0, 0, 2132, 2134, 3, 168, 84, 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, 2161, 1, 0, 0, 0, 2138, 2139, 5, 285, 0, 0, 2139, 2140, 5, 275, 0, 0, 2140, 2142, 3, 784, 392, 0, 2141, 2143, 3, 118, 59, 0, 2142, 2141, 1, 0, 0, 0, 2142, 2143, 1, 0, 0, 0, 2143, 2144, 1, 0, 0, 0, 2144, 2146, 3, 98, 49, 0, 2145, 2147, 3, 160, 80, 0, 2146, 2145, 1, 0, 0, 0, 2146, 2147, 1, 0, 0, 0, 2147, 2149, 1, 0, 0, 0, 2148, 2150, 3, 164, 82, 0, 2149, 2148, 1, 0, 0, 0, 2149, 2150, 1, 0, 0, 0, 2150, 2152, 1, 0, 0, 0, 2151, 2153, 3, 166, 83, 0, 2152, 2151, 1, 0, 0, 0, 2152, 2153, 1, 0, 0, 0, 2153, 2155, 1, 0, 0, 0, 2154, 2156, 3, 168, 84, 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, 2095, 1, 0, 0, 0, 2160, 2118, 1, 0, 0, 0, 2160, 2138, 1, 0, 0, 0, 2161, 115, 1, 0, 0, 0, 2162, 2168, 5, 354, 0, 0, 2163, 2168, 5, 352, 0, 0, 2164, 2165, 7, 21, 0, 0, 2165, 2168, 7, 22, 0, 0, 2166, 2168, 5, 367, 0, 0, 2167, 2162, 1, 0, 0, 0, 2167, 2163, 1, 0, 0, 0, 2167, 2164, 1, 0, 0, 0, 2167, 2166, 1, 0, 0, 0, 2168, 117, 1, 0, 0, 0, 2169, 2170, 5, 2, 0, 0, 2170, 2175, 3, 124, 62, 0, 2171, 2172, 5, 6, 0, 0, 2172, 2174, 3, 124, 62, 0, 2173, 2171, 1, 0, 0, 0, 2174, 2177, 1, 0, 0, 0, 2175, 2173, 1, 0, 0, 0, 2175, 2176, 1, 0, 0, 0, 2176, 2178, 1, 0, 0, 0, 2177, 2175, 1, 0, 0, 0, 2178, 2179, 5, 3, 0, 0, 2179, 119, 1, 0, 0, 0, 2180, 2185, 3, 122, 61, 0, 2181, 2182, 5, 6, 0, 0, 2182, 2184, 3, 122, 61, 0, 2183, 2181, 1, 0, 0, 0, 2184, 2187, 1, 0, 0, 0, 2185, 2183, 1, 0, 0, 0, 2185, 2186, 1, 0, 0, 0, 2186, 121, 1, 0, 0, 0, 2187, 2185, 1, 0, 0, 0, 2188, 2189, 5, 45, 0, 0, 2189, 2191, 3, 826, 413, 0, 2190, 2188, 1, 0, 0, 0, 2190, 2191, 1, 0, 0, 0, 2191, 2192, 1, 0, 0, 0, 2192, 2204, 3, 136, 68, 0, 2193, 2204, 3, 126, 63, 0, 2194, 2195, 5, 120, 0, 0, 2195, 2200, 3, 784, 392, 0, 2196, 2197, 7, 23, 0, 0, 2197, 2199, 3, 134, 67, 0, 2198, 2196, 1, 0, 0, 0, 2199, 2202, 1, 0, 0, 0, 2200, 2198, 1, 0, 0, 0, 2200, 2201, 1, 0, 0, 0, 2201, 2204, 1, 0, 0, 0, 2202, 2200, 1, 0, 0, 0, 2203, 2190, 1, 0, 0, 0, 2203, 2193, 1, 0, 0, 0, 2203, 2194, 1, 0, 0, 0, 2204, 123, 1, 0, 0, 0, 2205, 2208, 3, 810, 405, 0, 2206, 2207, 5, 105, 0, 0, 2207, 2209, 5, 280, 0, 0, 2208, 2206, 1, 0, 0, 0, 2208, 2209, 1, 0, 0, 0, 2209, 2213, 1, 0, 0, 0, 2210, 2212, 3, 128, 64, 0, 2211, 2210, 1, 0, 0, 0, 2212, 2215, 1, 0, 0, 0, 2213, 2211, 1, 0, 0, 0, 2213, 2214, 1, 0, 0, 0, 2214, 2222, 1, 0, 0, 0, 2215, 2213, 1, 0, 0, 0, 2216, 2217, 5, 45, 0, 0, 2217, 2219, 3, 826, 413, 0, 2218, 2216, 1, 0, 0, 0, 2218, 2219, 1, 0, 0, 0, 2219, 2220, 1, 0, 0, 0, 2220, 2222, 3, 136, 68, 0, 2221, 2205, 1, 0, 0, 0, 2221, 2218, 1, 0, 0, 0, 2222, 125, 1, 0, 0, 0, 2223, 2224, 3, 810, 405, 0, 2224, 2226, 3, 648, 324, 0, 2225, 2227, 3, 214, 107, 0, 2226, 2225, 1, 0, 0, 0, 2226, 2227, 1, 0, 0, 0, 2227, 2237, 1, 0, 0, 0, 2228, 2235, 5, 345, 0, 0, 2229, 2236, 5, 544, 0, 0, 2230, 2236, 5, 205, 0, 0, 2231, 2236, 5, 545, 0, 0, 2232, 2236, 5, 546, 0, 0, 2233, 2236, 5, 53, 0, 0, 2234, 2236, 3, 826, 413, 0, 2235, 2229, 1, 0, 0, 0, 2235, 2230, 1, 0, 0, 0, 2235, 2231, 1, 0, 0, 0, 2235, 2232, 1, 0, 0, 0, 2235, 2233, 1, 0, 0, 0, 2235, 2234, 1, 0, 0, 0, 2236, 2238, 1, 0, 0, 0, 2237, 2228, 1, 0, 0, 0, 2237, 2238, 1, 0, 0, 0, 2238, 2241, 1, 0, 0, 0, 2239, 2240, 5, 543, 0, 0, 2240, 2242, 3, 826, 413, 0, 2241, 2239, 1, 0, 0, 0, 2241, 2242, 1, 0, 0, 0, 2242, 2244, 1, 0, 0, 0, 2243, 2245, 3, 90, 45, 0, 2244, 2243, 1, 0, 0, 0, 2244, 2245, 1, 0, 0, 0, 2245, 2248, 1, 0, 0, 0, 2246, 2247, 5, 105, 0, 0, 2247, 2249, 5, 280, 0, 0, 2248, 2246, 1, 0, 0, 0, 2248, 2249, 1, 0, 0, 0, 2249, 2253, 1, 0, 0, 0, 2250, 2252, 3, 128, 64, 0, 2251, 2250, 1, 0, 0, 0, 2252, 2255, 1, 0, 0, 0, 2253, 2251, 1, 0, 0, 0, 2253, 2254, 1, 0, 0, 0, 2254, 127, 1, 0, 0, 0, 2255, 2253, 1, 0, 0, 0, 2256, 2257, 5, 45, 0, 0, 2257, 2259, 3, 826, 413, 0, 2258, 2256, 1, 0, 0, 0, 2258, 2259, 1, 0, 0, 0, 2259, 2260, 1, 0, 0, 0, 2260, 2265, 3, 130, 65, 0, 2261, 2263, 5, 77, 0, 0, 2262, 2261, 1, 0, 0, 0, 2262, 2263, 1, 0, 0, 0, 2263, 2264, 1, 0, 0, 0, 2264, 2266, 5, 54, 0, 0, 2265, 2262, 1, 0, 0, 0, 2265, 2266, 1, 0, 0, 0, 2266, 2269, 1, 0, 0, 0, 2267, 2268, 5, 69, 0, 0, 2268, 2270, 7, 9, 0, 0, 2269, 2267, 1, 0, 0, 0, 2269, 2270, 1, 0, 0, 0, 2270, 129, 1, 0, 0, 0, 2271, 2273, 5, 77, 0, 0, 2272, 2271, 1, 0, 0, 0, 2272, 2273, 1, 0, 0, 0, 2273, 2274, 1, 0, 0, 0, 2274, 2352, 5, 78, 0, 0, 2275, 2277, 5, 98, 0, 0, 2276, 2278, 3, 394, 197, 0, 2277, 2276, 1, 0, 0, 0, 2277, 2278, 1, 0, 0, 0, 2278, 2280, 1, 0, 0, 0, 2279, 2281, 3, 172, 86, 0, 2280, 2279, 1, 0, 0, 0, 2280, 2281, 1, 0, 0, 0, 2281, 2352, 1, 0, 0, 0, 2282, 2288, 5, 98, 0, 0, 2283, 2285, 5, 273, 0, 0, 2284, 2286, 5, 77, 0, 0, 2285, 2284, 1, 0, 0, 0, 2285, 2286, 1, 0, 0, 0, 2286, 2287, 1, 0, 0, 0, 2287, 2289, 5, 56, 0, 0, 2288, 2283, 1, 0, 0, 0, 2288, 2289, 1, 0, 0, 0, 2289, 2292, 1, 0, 0, 0, 2290, 2291, 5, 441, 0, 0, 2291, 2293, 3, 354, 177, 0, 2292, 2290, 1, 0, 0, 0, 2292, 2293, 1, 0, 0, 0, 2293, 2295, 1, 0, 0, 0, 2294, 2296, 3, 566, 283, 0, 2295, 2294, 1, 0, 0, 0, 2295, 2296, 1, 0, 0, 0, 2296, 2298, 1, 0, 0, 0, 2297, 2299, 3, 172, 86, 0, 2298, 2297, 1, 0, 0, 0, 2298, 2299, 1, 0, 0, 0, 2299, 2352, 1, 0, 0, 0, 2300, 2301, 5, 85, 0, 0, 2301, 2303, 5, 245, 0, 0, 2302, 2304, 3, 394, 197, 0, 2303, 2302, 1, 0, 0, 0, 2303, 2304, 1, 0, 0, 0, 2304, 2306, 1, 0, 0, 0, 2305, 2307, 3, 172, 86, 0, 2306, 2305, 1, 0, 0, 0, 2306, 2307, 1, 0, 0, 0, 2307, 2352, 1, 0, 0, 0, 2308, 2309, 5, 42, 0, 0, 2309, 2310, 5, 2, 0, 0, 2310, 2311, 3, 670, 335, 0, 2311, 2314, 5, 3, 0, 0, 2312, 2313, 5, 269, 0, 0, 2313, 2315, 5, 228, 0, 0, 2314, 2312, 1, 0, 0, 0, 2314, 2315, 1, 0, 0, 0, 2315, 2352, 1, 0, 0, 0, 2316, 2317, 5, 53, 0, 0, 2317, 2352, 3, 678, 339, 0, 2318, 2319, 5, 438, 0, 0, 2319, 2320, 3, 132, 66, 0, 2320, 2337, 5, 36, 0, 0, 2321, 2330, 5, 219, 0, 0, 2322, 2324, 5, 2, 0, 0, 2323, 2325, 3, 194, 97, 0, 2324, 2323, 1, 0, 0, 0, 2325, 2326, 1, 0, 0, 0, 2326, 2324, 1, 0, 0, 0, 2326, 2327, 1, 0, 0, 0, 2327, 2328, 1, 0, 0, 0, 2328, 2329, 5, 3, 0, 0, 2329, 2331, 1, 0, 0, 0, 2330, 2322, 1, 0, 0, 0, 2330, 2331, 1, 0, 0, 0, 2331, 2338, 1, 0, 0, 0, 2332, 2333, 5, 2, 0, 0, 2333, 2334, 3, 670, 335, 0, 2334, 2335, 5, 3, 0, 0, 2335, 2336, 5, 440, 0, 0, 2336, 2338, 1, 0, 0, 0, 2337, 2321, 1, 0, 0, 0, 2337, 2332, 1, 0, 0, 0, 2338, 2352, 1, 0, 0, 0, 2339, 2340, 5, 86, 0, 0, 2340, 2342, 3, 784, 392, 0, 2341, 2343, 3, 138, 69, 0, 2342, 2341, 1, 0, 0, 0, 2342, 2343, 1, 0, 0, 0, 2343, 2345, 1, 0, 0, 0, 2344, 2346, 3, 146, 73, 0, 2345, 2344, 1, 0, 0, 0, 2345, 2346, 1, 0, 0, 0, 2346, 2348, 1, 0, 0, 0, 2347, 2349, 3, 150, 75, 0, 2348, 2347, 1, 0, 0, 0, 2348, 2349, 1, 0, 0, 0, 2349, 2352, 1, 0, 0, 0, 2350, 2352, 3, 90, 45, 0, 2351, 2272, 1, 0, 0, 0, 2351, 2275, 1, 0, 0, 0, 2351, 2282, 1, 0, 0, 0, 2351, 2300, 1, 0, 0, 0, 2351, 2308, 1, 0, 0, 0, 2351, 2316, 1, 0, 0, 0, 2351, 2318, 1, 0, 0, 0, 2351, 2339, 1, 0, 0, 0, 2351, 2350, 1, 0, 0, 0, 2352, 131, 1, 0, 0, 0, 2353, 2357, 5, 139, 0, 0, 2354, 2355, 5, 147, 0, 0, 2355, 2357, 5, 53, 0, 0, 2356, 2353, 1, 0, 0, 0, 2356, 2354, 1, 0, 0, 0, 2357, 133, 1, 0, 0, 0, 2358, 2359, 7, 24, 0, 0, 2359, 135, 1, 0, 0, 0, 2360, 2361, 5, 42, 0, 0, 2361, 2362, 5, 2, 0, 0, 2362, 2363, 3, 670, 335, 0, 2363, 2367, 5, 3, 0, 0, 2364, 2366, 3, 266, 133, 0, 2365, 2364, 1, 0, 0, 0, 2366, 2369, 1, 0, 0, 0, 2367, 2365, 1, 0, 0, 0, 2367, 2368, 1, 0, 0, 0, 2368, 2457, 1, 0, 0, 0, 2369, 2367, 1, 0, 0, 0, 2370, 2374, 5, 98, 0, 0, 2371, 2372, 5, 85, 0, 0, 2372, 2374, 5, 245, 0, 0, 2373, 2370, 1, 0, 0, 0, 2373, 2371, 1, 0, 0, 0, 2374, 2398, 1, 0, 0, 0, 2375, 2377, 3, 138, 69, 0, 2376, 2378, 3, 144, 72, 0, 2377, 2376, 1, 0, 0, 0, 2377, 2378, 1, 0, 0, 0, 2378, 2380, 1, 0, 0, 0, 2379, 2381, 3, 394, 197, 0, 2380, 2379, 1, 0, 0, 0, 2380, 2381, 1, 0, 0, 0, 2381, 2383, 1, 0, 0, 0, 2382, 2384, 3, 172, 86, 0, 2383, 2382, 1, 0, 0, 0, 2383, 2384, 1, 0, 0, 0, 2384, 2388, 1, 0, 0, 0, 2385, 2387, 3, 266, 133, 0, 2386, 2385, 1, 0, 0, 0, 2387, 2390, 1, 0, 0, 0, 2388, 2386, 1, 0, 0, 0, 2388, 2389, 1, 0, 0, 0, 2389, 2399, 1, 0, 0, 0, 2390, 2388, 1, 0, 0, 0, 2391, 2395, 3, 174, 87, 0, 2392, 2394, 3, 266, 133, 0, 2393, 2392, 1, 0, 0, 0, 2394, 2397, 1, 0, 0, 0, 2395, 2393, 1, 0, 0, 0, 2395, 2396, 1, 0, 0, 0, 2396, 2399, 1, 0, 0, 0, 2397, 2395, 1, 0, 0, 0, 2398, 2375, 1, 0, 0, 0, 2398, 2391, 1, 0, 0, 0, 2399, 2457, 1, 0, 0, 0, 2400, 2402, 5, 199, 0, 0, 2401, 2403, 3, 164, 82, 0, 2402, 2401, 1, 0, 0, 0, 2402, 2403, 1, 0, 0, 0, 2403, 2404, 1, 0, 0, 0, 2404, 2405, 5, 2, 0, 0, 2405, 2410, 3, 148, 74, 0, 2406, 2407, 5, 6, 0, 0, 2407, 2409, 3, 148, 74, 0, 2408, 2406, 1, 0, 0, 0, 2409, 2412, 1, 0, 0, 0, 2410, 2408, 1, 0, 0, 0, 2410, 2411, 1, 0, 0, 0, 2411, 2413, 1, 0, 0, 0, 2412, 2410, 1, 0, 0, 0, 2413, 2415, 5, 3, 0, 0, 2414, 2416, 3, 144, 72, 0, 2415, 2414, 1, 0, 0, 0, 2415, 2416, 1, 0, 0, 0, 2416, 2418, 1, 0, 0, 0, 2417, 2419, 3, 394, 197, 0, 2418, 2417, 1, 0, 0, 0, 2418, 2419, 1, 0, 0, 0, 2419, 2421, 1, 0, 0, 0, 2420, 2422, 3, 172, 86, 0, 2421, 2420, 1, 0, 0, 0, 2421, 2422, 1, 0, 0, 0, 2422, 2428, 1, 0, 0, 0, 2423, 2424, 5, 103, 0, 0, 2424, 2425, 5, 2, 0, 0, 2425, 2426, 3, 670, 335, 0, 2426, 2427, 5, 3, 0, 0, 2427, 2429, 1, 0, 0, 0, 2428, 2423, 1, 0, 0, 0, 2428, 2429, 1, 0, 0, 0, 2429, 2433, 1, 0, 0, 0, 2430, 2432, 3, 266, 133, 0, 2431, 2430, 1, 0, 0, 0, 2432, 2435, 1, 0, 0, 0, 2433, 2431, 1, 0, 0, 0, 2433, 2434, 1, 0, 0, 0, 2434, 2457, 1, 0, 0, 0, 2435, 2433, 1, 0, 0, 0, 2436, 2437, 5, 63, 0, 0, 2437, 2438, 5, 245, 0, 0, 2438, 2439, 3, 138, 69, 0, 2439, 2440, 5, 86, 0, 0, 2440, 2442, 3, 784, 392, 0, 2441, 2443, 3, 138, 69, 0, 2442, 2441, 1, 0, 0, 0, 2442, 2443, 1, 0, 0, 0, 2443, 2445, 1, 0, 0, 0, 2444, 2446, 3, 146, 73, 0, 2445, 2444, 1, 0, 0, 0, 2445, 2446, 1, 0, 0, 0, 2446, 2448, 1, 0, 0, 0, 2447, 2449, 3, 150, 75, 0, 2448, 2447, 1, 0, 0, 0, 2448, 2449, 1, 0, 0, 0, 2449, 2453, 1, 0, 0, 0, 2450, 2452, 3, 266, 133, 0, 2451, 2450, 1, 0, 0, 0, 2452, 2455, 1, 0, 0, 0, 2453, 2451, 1, 0, 0, 0, 2453, 2454, 1, 0, 0, 0, 2454, 2457, 1, 0, 0, 0, 2455, 2453, 1, 0, 0, 0, 2456, 2360, 1, 0, 0, 0, 2456, 2373, 1, 0, 0, 0, 2456, 2400, 1, 0, 0, 0, 2456, 2436, 1, 0, 0, 0, 2457, 137, 1, 0, 0, 0, 2458, 2459, 5, 2, 0, 0, 2459, 2460, 3, 142, 71, 0, 2460, 2461, 5, 3, 0, 0, 2461, 139, 1, 0, 0, 0, 2462, 2463, 5, 2, 0, 0, 2463, 2468, 3, 810, 405, 0, 2464, 2465, 5, 6, 0, 0, 2465, 2467, 3, 810, 405, 0, 2466, 2464, 1, 0, 0, 0, 2467, 2470, 1, 0, 0, 0, 2468, 2466, 1, 0, 0, 0, 2468, 2469, 1, 0, 0, 0, 2469, 2471, 1, 0, 0, 0, 2470, 2468, 1, 0, 0, 0, 2471, 2472, 5, 3, 0, 0, 2472, 141, 1, 0, 0, 0, 2473, 2478, 3, 806, 403, 0, 2474, 2475, 5, 6, 0, 0, 2475, 2477, 3, 806, 403, 0, 2476, 2474, 1, 0, 0, 0, 2477, 2480, 1, 0, 0, 0, 2478, 2476, 1, 0, 0, 0, 2478, 2479, 1, 0, 0, 0, 2479, 143, 1, 0, 0, 0, 2480, 2478, 1, 0, 0, 0, 2481, 2482, 5, 441, 0, 0, 2482, 2483, 3, 138, 69, 0, 2483, 145, 1, 0, 0, 0, 2484, 2485, 5, 258, 0, 0, 2485, 2486, 7, 25, 0, 0, 2486, 147, 1, 0, 0, 0, 2487, 2488, 3, 356, 178, 0, 2488, 2495, 5, 105, 0, 0, 2489, 2496, 3, 408, 204, 0, 2490, 2491, 5, 278, 0, 0, 2491, 2492, 5, 2, 0, 0, 2492, 2493, 3, 408, 204, 0, 2493, 2494, 5, 3, 0, 0, 2494, 2496, 1, 0, 0, 0, 2495, 2489, 1, 0, 0, 0, 2495, 2490, 1, 0, 0, 0, 2496, 149, 1, 0, 0, 0, 2497, 2499, 3, 152, 76, 0, 2498, 2500, 3, 154, 77, 0, 2499, 2498, 1, 0, 0, 0, 2499, 2500, 1, 0, 0, 0, 2500, 2506, 1, 0, 0, 0, 2501, 2503, 3, 154, 77, 0, 2502, 2504, 3, 152, 76, 0, 2503, 2502, 1, 0, 0, 0, 2503, 2504, 1, 0, 0, 0, 2504, 2506, 1, 0, 0, 0, 2505, 2497, 1, 0, 0, 0, 2505, 2501, 1, 0, 0, 0, 2506, 151, 1, 0, 0, 0, 2507, 2508, 5, 80, 0, 0, 2508, 2509, 5, 369, 0, 0, 2509, 2510, 3, 156, 78, 0, 2510, 153, 1, 0, 0, 0, 2511, 2512, 5, 80, 0, 0, 2512, 2513, 5, 182, 0, 0, 2513, 2514, 3, 156, 78, 0, 2514, 155, 1, 0, 0, 0, 2515, 2516, 5, 269, 0, 0, 2516, 2525, 5, 132, 0, 0, 2517, 2525, 5, 315, 0, 0, 2518, 2525, 5, 150, 0, 0, 2519, 2520, 5, 333, 0, 0, 2520, 2522, 7, 26, 0, 0, 2521, 2523, 3, 142, 71, 0, 2522, 2521, 1, 0, 0, 0, 2522, 2523, 1, 0, 0, 0, 2523, 2525, 1, 0, 0, 0, 2524, 2515, 1, 0, 0, 0, 2524, 2517, 1, 0, 0, 0, 2524, 2518, 1, 0, 0, 0, 2524, 2519, 1, 0, 0, 0, 2525, 157, 1, 0, 0, 0, 2526, 2527, 5, 238, 0, 0, 2527, 2528, 5, 2, 0, 0, 2528, 2529, 3, 764, 382, 0, 2529, 2530, 5, 3, 0, 0, 2530, 159, 1, 0, 0, 0, 2531, 2532, 5, 285, 0, 0, 2532, 2533, 5, 147, 0, 0, 2533, 2534, 3, 826, 413, 0, 2534, 2535, 5, 2, 0, 0, 2535, 2540, 3, 162, 81, 0, 2536, 2537, 5, 6, 0, 0, 2537, 2539, 3, 162, 81, 0, 2538, 2536, 1, 0, 0, 0, 2539, 2542, 1, 0, 0, 0, 2540, 2538, 1, 0, 0, 0, 2540, 2541, 1, 0, 0, 0, 2541, 2543, 1, 0, 0, 0, 2542, 2540, 1, 0, 0, 0, 2543, 2544, 5, 3, 0, 0, 2544, 161, 1, 0, 0, 0, 2545, 2552, 3, 806, 403, 0, 2546, 2552, 3, 684, 342, 0, 2547, 2548, 5, 2, 0, 0, 2548, 2549, 3, 670, 335, 0, 2549, 2550, 5, 3, 0, 0, 2550, 2552, 1, 0, 0, 0, 2551, 2545, 1, 0, 0, 0, 2551, 2546, 1, 0, 0, 0, 2551, 2547, 1, 0, 0, 0, 2552, 2554, 1, 0, 0, 0, 2553, 2555, 3, 90, 45, 0, 2554, 2553, 1, 0, 0, 0, 2554, 2555, 1, 0, 0, 0, 2555, 2557, 1, 0, 0, 0, 2556, 2558, 3, 310, 155, 0, 2557, 2556, 1, 0, 0, 0, 2557, 2558, 1, 0, 0, 0, 2558, 163, 1, 0, 0, 0, 2559, 2560, 5, 100, 0, 0, 2560, 2561, 3, 826, 413, 0, 2561, 165, 1, 0, 0, 0, 2562, 2563, 5, 105, 0, 0, 2563, 2567, 3, 92, 46, 0, 2564, 2565, 7, 27, 0, 0, 2565, 2567, 5, 277, 0, 0, 2566, 2562, 1, 0, 0, 0, 2566, 2564, 1, 0, 0, 0, 2567, 167, 1, 0, 0, 0, 2568, 2569, 5, 80, 0, 0, 2569, 2575, 5, 161, 0, 0, 2570, 2576, 5, 191, 0, 0, 2571, 2572, 5, 182, 0, 0, 2572, 2576, 5, 320, 0, 0, 2573, 2574, 5, 292, 0, 0, 2574, 2576, 5, 320, 0, 0, 2575, 2570, 1, 0, 0, 0, 2575, 2571, 1, 0, 0, 0, 2575, 2573, 1, 0, 0, 0, 2576, 169, 1, 0, 0, 0, 2577, 2578, 5, 351, 0, 0, 2578, 2579, 3, 774, 387, 0, 2579, 171, 1, 0, 0, 0, 2580, 2581, 5, 100, 0, 0, 2581, 2582, 5, 226, 0, 0, 2582, 2583, 3, 170, 85, 0, 2583, 173, 1, 0, 0, 0, 2584, 2585, 5, 100, 0, 0, 2585, 2586, 5, 226, 0, 0, 2586, 2587, 3, 826, 413, 0, 2587, 175, 1, 0, 0, 0, 2588, 2589, 5, 46, 0, 0, 2589, 2594, 5, 342, 0, 0, 2590, 2592, 3, 288, 144, 0, 2591, 2590, 1, 0, 0, 0, 2591, 2592, 1, 0, 0, 0, 2592, 2593, 1, 0, 0, 0, 2593, 2595, 3, 310, 155, 0, 2594, 2591, 1, 0, 0, 0, 2594, 2595, 1, 0, 0, 0, 2595, 2597, 1, 0, 0, 0, 2596, 2598, 3, 138, 69, 0, 2597, 2596, 1, 0, 0, 0, 2597, 2598, 1, 0, 0, 0, 2598, 2599, 1, 0, 0, 0, 2599, 2609, 5, 80, 0, 0, 2600, 2605, 3, 734, 367, 0, 2601, 2602, 5, 6, 0, 0, 2602, 2604, 3, 734, 367, 0, 2603, 2601, 1, 0, 0, 0, 2604, 2607, 1, 0, 0, 0, 2605, 2603, 1, 0, 0, 0, 2605, 2606, 1, 0, 0, 0, 2606, 2610, 1, 0, 0, 0, 2607, 2605, 1, 0, 0, 0, 2608, 2610, 3, 728, 364, 0, 2609, 2600, 1, 0, 0, 0, 2609, 2608, 1, 0, 0, 0, 2610, 2611, 1, 0, 0, 0, 2611, 2612, 3, 604, 302, 0, 2612, 177, 1, 0, 0, 0, 2613, 2614, 5, 138, 0, 0, 2614, 2616, 5, 342, 0, 0, 2615, 2617, 3, 416, 208, 0, 2616, 2615, 1, 0, 0, 0, 2616, 2617, 1, 0, 0, 0, 2617, 2618, 1, 0, 0, 0, 2618, 2619, 3, 310, 155, 0, 2619, 2620, 5, 333, 0, 0, 2620, 2621, 5, 342, 0, 0, 2621, 2622, 3, 820, 410, 0, 2622, 179, 1, 0, 0, 0, 2623, 2625, 5, 46, 0, 0, 2624, 2626, 3, 116, 58, 0, 2625, 2624, 1, 0, 0, 0, 2625, 2626, 1, 0, 0, 0, 2626, 2627, 1, 0, 0, 0, 2627, 2629, 5, 92, 0, 0, 2628, 2630, 3, 288, 144, 0, 2629, 2628, 1, 0, 0, 0, 2629, 2630, 1, 0, 0, 0, 2630, 2631, 1, 0, 0, 0, 2631, 2632, 3, 182, 91, 0, 2632, 2633, 5, 36, 0, 0, 2633, 2635, 3, 554, 277, 0, 2634, 2636, 3, 184, 92, 0, 2635, 2634, 1, 0, 0, 0, 2635, 2636, 1, 0, 0, 0, 2636, 181, 1, 0, 0, 0, 2637, 2639, 3, 776, 388, 0, 2638, 2640, 3, 140, 70, 0, 2639, 2638, 1, 0, 0, 0, 2639, 2640, 1, 0, 0, 0, 2640, 2642, 1, 0, 0, 0, 2641, 2643, 3, 164, 82, 0, 2642, 2641, 1, 0, 0, 0, 2642, 2643, 1, 0, 0, 0, 2643, 2645, 1, 0, 0, 0, 2644, 2646, 3, 166, 83, 0, 2645, 2644, 1, 0, 0, 0, 2645, 2646, 1, 0, 0, 0, 2646, 2648, 1, 0, 0, 0, 2647, 2649, 3, 168, 84, 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, 183, 1, 0, 0, 0, 2653, 2657, 5, 105, 0, 0, 2654, 2658, 5, 174, 0, 0, 2655, 2656, 5, 269, 0, 0, 2656, 2658, 5, 174, 0, 0, 2657, 2654, 1, 0, 0, 0, 2657, 2655, 1, 0, 0, 0, 2658, 185, 1, 0, 0, 0, 2659, 2661, 5, 46, 0, 0, 2660, 2662, 5, 367, 0, 0, 2661, 2660, 1, 0, 0, 0, 2661, 2662, 1, 0, 0, 0, 2662, 2663, 1, 0, 0, 0, 2663, 2664, 5, 259, 0, 0, 2664, 2666, 5, 376, 0, 0, 2665, 2667, 3, 288, 144, 0, 2666, 2665, 1, 0, 0, 0, 2666, 2667, 1, 0, 0, 0, 2667, 2668, 1, 0, 0, 0, 2668, 2670, 3, 780, 390, 0, 2669, 2671, 3, 140, 70, 0, 2670, 2669, 1, 0, 0, 0, 2670, 2671, 1, 0, 0, 0, 2671, 2673, 1, 0, 0, 0, 2672, 2674, 3, 164, 82, 0, 2673, 2672, 1, 0, 0, 0, 2673, 2674, 1, 0, 0, 0, 2674, 2676, 1, 0, 0, 0, 2675, 2677, 3, 94, 47, 0, 2676, 2675, 1, 0, 0, 0, 2676, 2677, 1, 0, 0, 0, 2677, 2679, 1, 0, 0, 0, 2678, 2680, 3, 170, 85, 0, 2679, 2678, 1, 0, 0, 0, 2679, 2680, 1, 0, 0, 0, 2680, 2681, 1, 0, 0, 0, 2681, 2682, 5, 36, 0, 0, 2682, 2684, 3, 554, 277, 0, 2683, 2685, 3, 184, 92, 0, 2684, 2683, 1, 0, 0, 0, 2684, 2685, 1, 0, 0, 0, 2685, 187, 1, 0, 0, 0, 2686, 2687, 5, 305, 0, 0, 2687, 2688, 5, 259, 0, 0, 2688, 2690, 5, 376, 0, 0, 2689, 2691, 5, 109, 0, 0, 2690, 2689, 1, 0, 0, 0, 2690, 2691, 1, 0, 0, 0, 2691, 2692, 1, 0, 0, 0, 2692, 2694, 3, 782, 391, 0, 2693, 2695, 3, 184, 92, 0, 2694, 2693, 1, 0, 0, 0, 2694, 2695, 1, 0, 0, 0, 2695, 189, 1, 0, 0, 0, 2696, 2698, 5, 46, 0, 0, 2697, 2699, 3, 116, 58, 0, 2698, 2697, 1, 0, 0, 0, 2698, 2699, 1, 0, 0, 0, 2699, 2700, 1, 0, 0, 0, 2700, 2702, 5, 328, 0, 0, 2701, 2703, 3, 288, 144, 0, 2702, 2701, 1, 0, 0, 0, 2702, 2703, 1, 0, 0, 0, 2703, 2704, 1, 0, 0, 0, 2704, 2710, 3, 784, 392, 0, 2705, 2707, 3, 194, 97, 0, 2706, 2705, 1, 0, 0, 0, 2707, 2708, 1, 0, 0, 0, 2708, 2706, 1, 0, 0, 0, 2708, 2709, 1, 0, 0, 0, 2709, 2711, 1, 0, 0, 0, 2710, 2706, 1, 0, 0, 0, 2710, 2711, 1, 0, 0, 0, 2711, 191, 1, 0, 0, 0, 2712, 2713, 5, 138, 0, 0, 2713, 2715, 5, 328, 0, 0, 2714, 2716, 3, 416, 208, 0, 2715, 2714, 1, 0, 0, 0, 2715, 2716, 1, 0, 0, 0, 2716, 2717, 1, 0, 0, 0, 2717, 2719, 3, 784, 392, 0, 2718, 2720, 3, 194, 97, 0, 2719, 2718, 1, 0, 0, 0, 2720, 2721, 1, 0, 0, 0, 2721, 2719, 1, 0, 0, 0, 2721, 2722, 1, 0, 0, 0, 2722, 193, 1, 0, 0, 0, 2723, 2724, 5, 36, 0, 0, 2724, 2757, 3, 650, 325, 0, 2725, 2727, 5, 148, 0, 0, 2726, 2728, 3, 196, 98, 0, 2727, 2726, 1, 0, 0, 0, 2727, 2728, 1, 0, 0, 0, 2728, 2757, 1, 0, 0, 0, 2729, 2731, 5, 225, 0, 0, 2730, 2732, 5, 147, 0, 0, 2731, 2730, 1, 0, 0, 0, 2731, 2732, 1, 0, 0, 0, 2732, 2733, 1, 0, 0, 0, 2733, 2757, 3, 196, 98, 0, 2734, 2735, 7, 28, 0, 0, 2735, 2757, 3, 196, 98, 0, 2736, 2737, 5, 269, 0, 0, 2737, 2757, 7, 29, 0, 0, 2738, 2739, 5, 281, 0, 0, 2739, 2740, 5, 147, 0, 0, 2740, 2757, 3, 806, 403, 0, 2741, 2742, 5, 328, 0, 0, 2742, 2743, 5, 266, 0, 0, 2743, 2757, 3, 310, 155, 0, 2744, 2746, 5, 340, 0, 0, 2745, 2747, 5, 105, 0, 0, 2746, 2745, 1, 0, 0, 0, 2746, 2747, 1, 0, 0, 0, 2747, 2748, 1, 0, 0, 0, 2748, 2757, 3, 196, 98, 0, 2749, 2751, 5, 314, 0, 0, 2750, 2752, 5, 105, 0, 0, 2751, 2750, 1, 0, 0, 0, 2751, 2752, 1, 0, 0, 0, 2752, 2754, 1, 0, 0, 0, 2753, 2755, 3, 196, 98, 0, 2754, 2753, 1, 0, 0, 0, 2754, 2755, 1, 0, 0, 0, 2755, 2757, 1, 0, 0, 0, 2756, 2723, 1, 0, 0, 0, 2756, 2725, 1, 0, 0, 0, 2756, 2729, 1, 0, 0, 0, 2756, 2734, 1, 0, 0, 0, 2756, 2736, 1, 0, 0, 0, 2756, 2738, 1, 0, 0, 0, 2756, 2741, 1, 0, 0, 0, 2756, 2744, 1, 0, 0, 0, 2756, 2749, 1, 0, 0, 0, 2757, 195, 1, 0, 0, 0, 2758, 2760, 7, 30, 0, 0, 2759, 2758, 1, 0, 0, 0, 2759, 2760, 1, 0, 0, 0, 2760, 2761, 1, 0, 0, 0, 2761, 2764, 5, 576, 0, 0, 2762, 2764, 3, 820, 410, 0, 2763, 2759, 1, 0, 0, 0, 2763, 2762, 1, 0, 0, 0, 2764, 197, 1, 0, 0, 0, 2765, 2767, 5, 46, 0, 0, 2766, 2768, 3, 360, 180, 0, 2767, 2766, 1, 0, 0, 0, 2767, 2768, 1, 0, 0, 0, 2768, 2770, 1, 0, 0, 0, 2769, 2771, 5, 359, 0, 0, 2770, 2769, 1, 0, 0, 0, 2770, 2771, 1, 0, 0, 0, 2771, 2773, 1, 0, 0, 0, 2772, 2774, 5, 295, 0, 0, 2773, 2772, 1, 0, 0, 0, 2773, 2774, 1, 0, 0, 0, 2774, 2775, 1, 0, 0, 0, 2775, 2776, 5, 247, 0, 0, 2776, 2789, 3, 826, 413, 0, 2777, 2778, 5, 215, 0, 0, 2778, 2781, 3, 310, 155, 0, 2779, 2780, 5, 239, 0, 0, 2780, 2782, 3, 310, 155, 0, 2781, 2779, 1, 0, 0, 0, 2781, 2782, 1, 0, 0, 0, 2782, 2787, 1, 0, 0, 0, 2783, 2784, 5, 373, 0, 0, 2784, 2788, 3, 310, 155, 0, 2785, 2786, 5, 269, 0, 0, 2786, 2788, 5, 373, 0, 0, 2787, 2783, 1, 0, 0, 0, 2787, 2785, 1, 0, 0, 0, 2787, 2788, 1, 0, 0, 0, 2788, 2790, 1, 0, 0, 0, 2789, 2777, 1, 0, 0, 0, 2789, 2790, 1, 0, 0, 0, 2790, 199, 1, 0, 0, 0, 2791, 2792, 5, 46, 0, 0, 2792, 2795, 3, 170, 85, 0, 2793, 2794, 5, 282, 0, 0, 2794, 2796, 3, 822, 411, 0, 2795, 2793, 1, 0, 0, 0, 2795, 2796, 1, 0, 0, 0, 2796, 2797, 1, 0, 0, 0, 2797, 2798, 5, 255, 0, 0, 2798, 2800, 3, 816, 408, 0, 2799, 2801, 3, 94, 47, 0, 2800, 2799, 1, 0, 0, 0, 2800, 2801, 1, 0, 0, 0, 2801, 201, 1, 0, 0, 0, 2802, 2803, 5, 46, 0, 0, 2803, 2805, 5, 204, 0, 0, 2804, 2806, 3, 288, 144, 0, 2805, 2804, 1, 0, 0, 0, 2805, 2806, 1, 0, 0, 0, 2806, 2807, 1, 0, 0, 0, 2807, 2809, 3, 826, 413, 0, 2808, 2810, 5, 105, 0, 0, 2809, 2808, 1, 0, 0, 0, 2809, 2810, 1, 0, 0, 0, 2810, 2818, 1, 0, 0, 0, 2811, 2812, 5, 323, 0, 0, 2812, 2817, 3, 794, 397, 0, 2813, 2814, 7, 31, 0, 0, 2814, 2817, 3, 58, 29, 0, 2815, 2817, 5, 150, 0, 0, 2816, 2811, 1, 0, 0, 0, 2816, 2813, 1, 0, 0, 0, 2816, 2815, 1, 0, 0, 0, 2817, 2820, 1, 0, 0, 0, 2818, 2816, 1, 0, 0, 0, 2818, 2819, 1, 0, 0, 0, 2819, 203, 1, 0, 0, 0, 2820, 2818, 1, 0, 0, 0, 2821, 2822, 5, 138, 0, 0, 2822, 2823, 5, 204, 0, 0, 2823, 2824, 3, 826, 413, 0, 2824, 2829, 5, 369, 0, 0, 2825, 2826, 5, 94, 0, 0, 2826, 2828, 3, 58, 29, 0, 2827, 2825, 1, 0, 0, 0, 2828, 2831, 1, 0, 0, 0, 2829, 2827, 1, 0, 0, 0, 2829, 2830, 1, 0, 0, 0, 2830, 205, 1, 0, 0, 0, 2831, 2829, 1, 0, 0, 0, 2832, 2833, 5, 138, 0, 0, 2833, 2834, 5, 204, 0, 0, 2834, 2835, 3, 826, 413, 0, 2835, 2868, 7, 6, 0, 0, 2836, 2837, 5, 443, 0, 0, 2837, 2838, 5, 62, 0, 0, 2838, 2839, 3, 648, 324, 0, 2839, 2840, 5, 247, 0, 0, 2840, 2841, 3, 826, 413, 0, 2841, 2869, 1, 0, 0, 0, 2842, 2843, 5, 442, 0, 0, 2843, 2869, 3, 368, 184, 0, 2844, 2845, 5, 296, 0, 0, 2845, 2869, 3, 372, 186, 0, 2846, 2847, 5, 278, 0, 0, 2847, 2848, 7, 32, 0, 0, 2848, 2849, 3, 310, 155, 0, 2849, 2850, 3, 164, 82, 0, 2850, 2869, 1, 0, 0, 0, 2851, 2852, 5, 278, 0, 0, 2852, 2869, 3, 410, 205, 0, 2853, 2854, 5, 211, 0, 0, 2854, 2869, 3, 376, 188, 0, 2855, 2856, 7, 33, 0, 0, 2856, 2869, 3, 648, 324, 0, 2857, 2858, 5, 41, 0, 0, 2858, 2859, 5, 2, 0, 0, 2859, 2860, 3, 648, 324, 0, 2860, 2861, 5, 36, 0, 0, 2861, 2862, 3, 648, 324, 0, 2862, 2863, 5, 3, 0, 0, 2863, 2869, 1, 0, 0, 0, 2864, 2865, 5, 136, 0, 0, 2865, 2869, 3, 388, 194, 0, 2866, 2869, 3, 306, 153, 0, 2867, 2869, 3, 304, 152, 0, 2868, 2836, 1, 0, 0, 0, 2868, 2842, 1, 0, 0, 0, 2868, 2844, 1, 0, 0, 0, 2868, 2846, 1, 0, 0, 0, 2868, 2851, 1, 0, 0, 0, 2868, 2853, 1, 0, 0, 0, 2868, 2855, 1, 0, 0, 0, 2868, 2857, 1, 0, 0, 0, 2868, 2864, 1, 0, 0, 0, 2868, 2866, 1, 0, 0, 0, 2868, 2867, 1, 0, 0, 0, 2869, 207, 1, 0, 0, 0, 2870, 2871, 5, 46, 0, 0, 2871, 2872, 5, 63, 0, 0, 2872, 2873, 5, 174, 0, 0, 2873, 2874, 5, 381, 0, 0, 2874, 2880, 3, 826, 413, 0, 2875, 2877, 3, 210, 105, 0, 2876, 2875, 1, 0, 0, 0, 2877, 2878, 1, 0, 0, 0, 2878, 2876, 1, 0, 0, 0, 2878, 2879, 1, 0, 0, 0, 2879, 2881, 1, 0, 0, 0, 2880, 2876, 1, 0, 0, 0, 2880, 2881, 1, 0, 0, 0, 2881, 2883, 1, 0, 0, 0, 2882, 2884, 3, 214, 107, 0, 2883, 2882, 1, 0, 0, 0, 2883, 2884, 1, 0, 0, 0, 2884, 209, 1, 0, 0, 0, 2885, 2887, 7, 34, 0, 0, 2886, 2888, 3, 310, 155, 0, 2887, 2886, 1, 0, 0, 0, 2887, 2888, 1, 0, 0, 0, 2888, 2892, 1, 0, 0, 0, 2889, 2890, 5, 269, 0, 0, 2890, 2892, 7, 34, 0, 0, 2891, 2885, 1, 0, 0, 0, 2891, 2889, 1, 0, 0, 0, 2892, 211, 1, 0, 0, 0, 2893, 2894, 5, 138, 0, 0, 2894, 2895, 5, 63, 0, 0, 2895, 2896, 5, 174, 0, 0, 2896, 2897, 5, 381, 0, 0, 2897, 2911, 3, 826, 413, 0, 2898, 2900, 3, 210, 105, 0, 2899, 2898, 1, 0, 0, 0, 2900, 2901, 1, 0, 0, 0, 2901, 2899, 1, 0, 0, 0, 2901, 2902, 1, 0, 0, 0, 2902, 2904, 1, 0, 0, 0, 2903, 2899, 1, 0, 0, 0, 2903, 2904, 1, 0, 0, 0, 2904, 2905, 1, 0, 0, 0, 2905, 2912, 3, 216, 108, 0, 2906, 2908, 3, 210, 105, 0, 2907, 2906, 1, 0, 0, 0, 2908, 2909, 1, 0, 0, 0, 2909, 2907, 1, 0, 0, 0, 2909, 2910, 1, 0, 0, 0, 2910, 2912, 1, 0, 0, 0, 2911, 2903, 1, 0, 0, 0, 2911, 2907, 1, 0, 0, 0, 2912, 213, 1, 0, 0, 0, 2913, 2914, 5, 280, 0, 0, 2914, 2915, 5, 2, 0, 0, 2915, 2920, 3, 220, 110, 0, 2916, 2917, 5, 6, 0, 0, 2917, 2919, 3, 220, 110, 0, 2918, 2916, 1, 0, 0, 0, 2919, 2922, 1, 0, 0, 0, 2920, 2918, 1, 0, 0, 0, 2920, 2921, 1, 0, 0, 0, 2921, 2923, 1, 0, 0, 0, 2922, 2920, 1, 0, 0, 0, 2923, 2924, 5, 3, 0, 0, 2924, 215, 1, 0, 0, 0, 2925, 2926, 5, 280, 0, 0, 2926, 2927, 5, 2, 0, 0, 2927, 2932, 3, 218, 109, 0, 2928, 2929, 5, 6, 0, 0, 2929, 2931, 3, 218, 109, 0, 2930, 2928, 1, 0, 0, 0, 2931, 2934, 1, 0, 0, 0, 2932, 2930, 1, 0, 0, 0, 2932, 2933, 1, 0, 0, 0, 2933, 2935, 1, 0, 0, 0, 2934, 2932, 1, 0, 0, 0, 2935, 2936, 5, 3, 0, 0, 2936, 217, 1, 0, 0, 0, 2937, 2938, 7, 35, 0, 0, 2938, 2939, 3, 220, 110, 0, 2939, 219, 1, 0, 0, 0, 2940, 2941, 3, 832, 416, 0, 2941, 2942, 3, 816, 408, 0, 2942, 221, 1, 0, 0, 0, 2943, 2944, 5, 46, 0, 0, 2944, 2946, 5, 331, 0, 0, 2945, 2947, 3, 288, 144, 0, 2946, 2945, 1, 0, 0, 0, 2946, 2947, 1, 0, 0, 0, 2947, 2948, 1, 0, 0, 0, 2948, 2951, 3, 826, 413, 0, 2949, 2950, 5, 360, 0, 0, 2950, 2952, 3, 816, 408, 0, 2951, 2949, 1, 0, 0, 0, 2951, 2952, 1, 0, 0, 0, 2952, 2954, 1, 0, 0, 0, 2953, 2955, 3, 224, 112, 0, 2954, 2953, 1, 0, 0, 0, 2954, 2955, 1, 0, 0, 0, 2955, 2956, 1, 0, 0, 0, 2956, 2957, 5, 63, 0, 0, 2957, 2958, 5, 174, 0, 0, 2958, 2959, 5, 381, 0, 0, 2959, 2961, 3, 826, 413, 0, 2960, 2962, 3, 214, 107, 0, 2961, 2960, 1, 0, 0, 0, 2961, 2962, 1, 0, 0, 0, 2962, 223, 1, 0, 0, 0, 2963, 2966, 5, 375, 0, 0, 2964, 2967, 3, 816, 408, 0, 2965, 2967, 5, 78, 0, 0, 2966, 2964, 1, 0, 0, 0, 2966, 2965, 1, 0, 0, 0, 2967, 225, 1, 0, 0, 0, 2968, 2969, 5, 138, 0, 0, 2969, 2970, 5, 331, 0, 0, 2970, 2976, 3, 826, 413, 0, 2971, 2977, 3, 216, 108, 0, 2972, 2974, 3, 224, 112, 0, 2973, 2975, 3, 216, 108, 0, 2974, 2973, 1, 0, 0, 0, 2974, 2975, 1, 0, 0, 0, 2975, 2977, 1, 0, 0, 0, 2976, 2971, 1, 0, 0, 0, 2976, 2972, 1, 0, 0, 0, 2977, 227, 1, 0, 0, 0, 2978, 2979, 5, 46, 0, 0, 2979, 2980, 5, 63, 0, 0, 2980, 2982, 5, 92, 0, 0, 2981, 2983, 3, 288, 144, 0, 2982, 2981, 1, 0, 0, 0, 2982, 2983, 1, 0, 0, 0, 2983, 2984, 1, 0, 0, 0, 2984, 2985, 3, 776, 388, 0, 2985, 2987, 5, 2, 0, 0, 2986, 2988, 3, 120, 60, 0, 2987, 2986, 1, 0, 0, 0, 2987, 2988, 1, 0, 0, 0, 2988, 2989, 1, 0, 0, 0, 2989, 2991, 5, 3, 0, 0, 2990, 2992, 3, 158, 79, 0, 2991, 2990, 1, 0, 0, 0, 2991, 2992, 1, 0, 0, 0, 2992, 2993, 1, 0, 0, 0, 2993, 2994, 5, 331, 0, 0, 2994, 2996, 3, 826, 413, 0, 2995, 2997, 3, 214, 107, 0, 2996, 2995, 1, 0, 0, 0, 2996, 2997, 1, 0, 0, 0, 2997, 3018, 1, 0, 0, 0, 2998, 2999, 5, 46, 0, 0, 2999, 3000, 5, 63, 0, 0, 3000, 3002, 5, 92, 0, 0, 3001, 3003, 3, 288, 144, 0, 3002, 3001, 1, 0, 0, 0, 3002, 3003, 1, 0, 0, 0, 3003, 3004, 1, 0, 0, 0, 3004, 3005, 3, 776, 388, 0, 3005, 3006, 5, 285, 0, 0, 3006, 3007, 5, 275, 0, 0, 3007, 3009, 3, 778, 389, 0, 3008, 3010, 3, 118, 59, 0, 3009, 3008, 1, 0, 0, 0, 3009, 3010, 1, 0, 0, 0, 3010, 3011, 1, 0, 0, 0, 3011, 3012, 3, 98, 49, 0, 3012, 3013, 5, 331, 0, 0, 3013, 3015, 3, 826, 413, 0, 3014, 3016, 3, 214, 107, 0, 3015, 3014, 1, 0, 0, 0, 3015, 3016, 1, 0, 0, 0, 3016, 3018, 1, 0, 0, 0, 3017, 2978, 1, 0, 0, 0, 3017, 2998, 1, 0, 0, 0, 3018, 229, 1, 0, 0, 0, 3019, 3020, 5, 444, 0, 0, 3020, 3021, 5, 63, 0, 0, 3021, 3022, 5, 323, 0, 0, 3022, 3032, 3, 794, 397, 0, 3023, 3024, 5, 74, 0, 0, 3024, 3027, 5, 94, 0, 0, 3025, 3027, 5, 59, 0, 0, 3026, 3023, 1, 0, 0, 0, 3026, 3025, 1, 0, 0, 0, 3027, 3028, 1, 0, 0, 0, 3028, 3029, 5, 2, 0, 0, 3029, 3030, 3, 624, 312, 0, 3030, 3031, 5, 3, 0, 0, 3031, 3033, 1, 0, 0, 0, 3032, 3026, 1, 0, 0, 0, 3032, 3033, 1, 0, 0, 0, 3033, 3034, 1, 0, 0, 0, 3034, 3035, 5, 64, 0, 0, 3035, 3036, 5, 331, 0, 0, 3036, 3037, 3, 826, 413, 0, 3037, 3038, 5, 71, 0, 0, 3038, 3040, 3, 826, 413, 0, 3039, 3041, 3, 214, 107, 0, 3040, 3039, 1, 0, 0, 0, 3040, 3041, 1, 0, 0, 0, 3041, 231, 1, 0, 0, 0, 3042, 3043, 5, 46, 0, 0, 3043, 3044, 5, 99, 0, 0, 3044, 3046, 5, 257, 0, 0, 3045, 3047, 3, 288, 144, 0, 3046, 3045, 1, 0, 0, 0, 3046, 3047, 1, 0, 0, 0, 3047, 3048, 1, 0, 0, 0, 3048, 3051, 5, 62, 0, 0, 3049, 3052, 3, 822, 411, 0, 3050, 3052, 5, 99, 0, 0, 3051, 3049, 1, 0, 0, 0, 3051, 3050, 1, 0, 0, 0, 3052, 3053, 1, 0, 0, 0, 3053, 3054, 5, 331, 0, 0, 3054, 3056, 3, 826, 413, 0, 3055, 3057, 3, 214, 107, 0, 3056, 3055, 1, 0, 0, 0, 3056, 3057, 1, 0, 0, 0, 3057, 233, 1, 0, 0, 0, 3058, 3059, 5, 138, 0, 0, 3059, 3060, 5, 99, 0, 0, 3060, 3061, 5, 257, 0, 0, 3061, 3064, 5, 62, 0, 0, 3062, 3065, 3, 822, 411, 0, 3063, 3065, 5, 99, 0, 0, 3064, 3062, 1, 0, 0, 0, 3064, 3063, 1, 0, 0, 0, 3065, 3066, 1, 0, 0, 0, 3066, 3067, 5, 331, 0, 0, 3067, 3068, 3, 826, 413, 0, 3068, 3069, 3, 216, 108, 0, 3069, 235, 1, 0, 0, 0, 3070, 3071, 5, 46, 0, 0, 3071, 3072, 5, 445, 0, 0, 3072, 3073, 3, 826, 413, 0, 3073, 3074, 5, 80, 0, 0, 3074, 3081, 3, 784, 392, 0, 3075, 3079, 5, 36, 0, 0, 3076, 3080, 5, 541, 0, 0, 3077, 3080, 5, 542, 0, 0, 3078, 3080, 3, 836, 418, 0, 3079, 3076, 1, 0, 0, 0, 3079, 3077, 1, 0, 0, 0, 3079, 3078, 1, 0, 0, 0, 3080, 3082, 1, 0, 0, 0, 3081, 3075, 1, 0, 0, 0, 3081, 3082, 1, 0, 0, 0, 3082, 3085, 1, 0, 0, 0, 3083, 3084, 5, 62, 0, 0, 3084, 3086, 7, 36, 0, 0, 3085, 3083, 1, 0, 0, 0, 3085, 3086, 1, 0, 0, 0, 3086, 3089, 1, 0, 0, 0, 3087, 3088, 5, 94, 0, 0, 3088, 3090, 3, 824, 412, 0, 3089, 3087, 1, 0, 0, 0, 3089, 3090, 1, 0, 0, 0, 3090, 3092, 1, 0, 0, 0, 3091, 3093, 3, 244, 122, 0, 3092, 3091, 1, 0, 0, 0, 3092, 3093, 1, 0, 0, 0, 3093, 3095, 1, 0, 0, 0, 3094, 3096, 3, 246, 123, 0, 3095, 3094, 1, 0, 0, 0, 3095, 3096, 1, 0, 0, 0, 3096, 237, 1, 0, 0, 0, 3097, 3098, 5, 138, 0, 0, 3098, 3099, 5, 445, 0, 0, 3099, 3100, 3, 826, 413, 0, 3100, 3101, 5, 80, 0, 0, 3101, 3104, 3, 784, 392, 0, 3102, 3103, 5, 94, 0, 0, 3103, 3105, 3, 824, 412, 0, 3104, 3102, 1, 0, 0, 0, 3104, 3105, 1, 0, 0, 0, 3105, 3107, 1, 0, 0, 0, 3106, 3108, 3, 244, 122, 0, 3107, 3106, 1, 0, 0, 0, 3107, 3108, 1, 0, 0, 0, 3108, 3110, 1, 0, 0, 0, 3109, 3111, 3, 246, 123, 0, 3110, 3109, 1, 0, 0, 0, 3110, 3111, 1, 0, 0, 0, 3111, 239, 1, 0, 0, 0, 3112, 3113, 5, 138, 0, 0, 3113, 3114, 5, 296, 0, 0, 3114, 3116, 3, 800, 400, 0, 3115, 3117, 3, 362, 181, 0, 3116, 3115, 1, 0, 0, 0, 3116, 3117, 1, 0, 0, 0, 3117, 3144, 1, 0, 0, 0, 3118, 3122, 3, 242, 121, 0, 3119, 3121, 3, 242, 121, 0, 3120, 3119, 1, 0, 0, 0, 3121, 3124, 1, 0, 0, 0, 3122, 3120, 1, 0, 0, 0, 3122, 3123, 1, 0, 0, 0, 3123, 3126, 1, 0, 0, 0, 3124, 3122, 1, 0, 0, 0, 3125, 3127, 5, 315, 0, 0, 3126, 3125, 1, 0, 0, 0, 3126, 3127, 1, 0, 0, 0, 3127, 3145, 1, 0, 0, 0, 3128, 3129, 5, 309, 0, 0, 3129, 3130, 5, 94, 0, 0, 3130, 3145, 3, 802, 401, 0, 3131, 3132, 5, 282, 0, 0, 3132, 3133, 5, 94, 0, 0, 3133, 3145, 3, 822, 411, 0, 3134, 3135, 5, 333, 0, 0, 3135, 3136, 5, 323, 0, 0, 3136, 3145, 3, 32, 16, 0, 3137, 3139, 5, 269, 0, 0, 3138, 3137, 1, 0, 0, 0, 3138, 3139, 1, 0, 0, 0, 3139, 3140, 1, 0, 0, 0, 3140, 3141, 5, 462, 0, 0, 3141, 3142, 5, 80, 0, 0, 3142, 3143, 5, 204, 0, 0, 3143, 3145, 3, 826, 413, 0, 3144, 3118, 1, 0, 0, 0, 3144, 3128, 1, 0, 0, 0, 3144, 3131, 1, 0, 0, 0, 3144, 3134, 1, 0, 0, 0, 3144, 3138, 1, 0, 0, 0, 3145, 241, 1, 0, 0, 0, 3146, 3148, 5, 205, 0, 0, 3147, 3146, 1, 0, 0, 0, 3147, 3148, 1, 0, 0, 0, 3148, 3149, 1, 0, 0, 0, 3149, 3150, 5, 327, 0, 0, 3150, 3157, 5, 243, 0, 0, 3151, 3153, 5, 205, 0, 0, 3152, 3151, 1, 0, 0, 0, 3152, 3153, 1, 0, 0, 0, 3153, 3154, 1, 0, 0, 0, 3154, 3155, 5, 327, 0, 0, 3155, 3157, 5, 181, 0, 0, 3156, 3147, 1, 0, 0, 0, 3156, 3152, 1, 0, 0, 0, 3157, 3176, 1, 0, 0, 0, 3158, 3159, 5, 333, 0, 0, 3159, 3160, 3, 826, 413, 0, 3160, 3163, 7, 37, 0, 0, 3161, 3164, 3, 826, 413, 0, 3162, 3164, 5, 53, 0, 0, 3163, 3161, 1, 0, 0, 0, 3163, 3162, 1, 0, 0, 0, 3164, 3176, 1, 0, 0, 0, 3165, 3166, 5, 333, 0, 0, 3166, 3167, 3, 826, 413, 0, 3167, 3168, 5, 64, 0, 0, 3168, 3169, 5, 434, 0, 0, 3169, 3176, 1, 0, 0, 0, 3170, 3173, 5, 313, 0, 0, 3171, 3174, 3, 826, 413, 0, 3172, 3174, 5, 30, 0, 0, 3173, 3171, 1, 0, 0, 0, 3173, 3172, 1, 0, 0, 0, 3174, 3176, 1, 0, 0, 0, 3175, 3156, 1, 0, 0, 0, 3175, 3158, 1, 0, 0, 0, 3175, 3165, 1, 0, 0, 0, 3175, 3170, 1, 0, 0, 0, 3176, 243, 1, 0, 0, 0, 3177, 3178, 5, 100, 0, 0, 3178, 3179, 5, 2, 0, 0, 3179, 3180, 3, 670, 335, 0, 3180, 3181, 5, 3, 0, 0, 3181, 245, 1, 0, 0, 0, 3182, 3183, 5, 105, 0, 0, 3183, 3184, 5, 42, 0, 0, 3184, 3185, 5, 2, 0, 0, 3185, 3186, 3, 670, 335, 0, 3186, 3187, 5, 3, 0, 0, 3187, 247, 1, 0, 0, 0, 3188, 3189, 5, 46, 0, 0, 3189, 3190, 5, 131, 0, 0, 3190, 3191, 5, 446, 0, 0, 3191, 3192, 3, 826, 413, 0, 3192, 3193, 5, 360, 0, 0, 3193, 3194, 7, 38, 0, 0, 3194, 3195, 5, 215, 0, 0, 3195, 3196, 3, 310, 155, 0, 3196, 249, 1, 0, 0, 0, 3197, 3199, 5, 46, 0, 0, 3198, 3200, 3, 360, 180, 0, 3199, 3198, 1, 0, 0, 0, 3199, 3200, 1, 0, 0, 0, 3200, 3201, 1, 0, 0, 0, 3201, 3202, 5, 357, 0, 0, 3202, 3203, 3, 826, 413, 0, 3203, 3204, 3, 252, 126, 0, 3204, 3205, 3, 254, 127, 0, 3205, 3206, 5, 80, 0, 0, 3206, 3218, 3, 778, 389, 0, 3207, 3214, 5, 447, 0, 0, 3208, 3209, 7, 39, 0, 0, 3209, 3211, 7, 40, 0, 0, 3210, 3212, 5, 36, 0, 0, 3211, 3210, 1, 0, 0, 0, 3211, 3212, 1, 0, 0, 0, 3212, 3213, 1, 0, 0, 0, 3213, 3215, 3, 826, 413, 0, 3214, 3208, 1, 0, 0, 0, 3215, 3216, 1, 0, 0, 0, 3216, 3214, 1, 0, 0, 0, 3216, 3217, 1, 0, 0, 0, 3217, 3219, 1, 0, 0, 0, 3218, 3207, 1, 0, 0, 0, 3218, 3219, 1, 0, 0, 0, 3219, 3225, 1, 0, 0, 0, 3220, 3222, 5, 62, 0, 0, 3221, 3223, 5, 192, 0, 0, 3222, 3221, 1, 0, 0, 0, 3222, 3223, 1, 0, 0, 0, 3223, 3224, 1, 0, 0, 0, 3224, 3226, 7, 41, 0, 0, 3225, 3220, 1, 0, 0, 0, 3225, 3226, 1, 0, 0, 0, 3226, 3228, 1, 0, 0, 0, 3227, 3229, 3, 258, 129, 0, 3228, 3227, 1, 0, 0, 0, 3228, 3229, 1, 0, 0, 0, 3229, 3230, 1, 0, 0, 0, 3230, 3231, 5, 202, 0, 0, 3231, 3232, 3, 260, 130, 0, 3232, 3233, 5, 2, 0, 0, 3233, 3234, 3, 262, 131, 0, 3234, 3235, 5, 3, 0, 0, 3235, 3276, 1, 0, 0, 0, 3236, 3238, 5, 46, 0, 0, 3237, 3239, 3, 360, 180, 0, 3238, 3237, 1, 0, 0, 0, 3238, 3239, 1, 0, 0, 0, 3239, 3241, 1, 0, 0, 0, 3240, 3242, 5, 45, 0, 0, 3241, 3240, 1, 0, 0, 0, 3241, 3242, 1, 0, 0, 0, 3242, 3243, 1, 0, 0, 0, 3243, 3244, 5, 357, 0, 0, 3244, 3245, 3, 826, 413, 0, 3245, 3246, 3, 252, 126, 0, 3246, 3247, 3, 254, 127, 0, 3247, 3248, 5, 80, 0, 0, 3248, 3251, 3, 778, 389, 0, 3249, 3250, 5, 64, 0, 0, 3250, 3252, 3, 784, 392, 0, 3251, 3249, 1, 0, 0, 0, 3251, 3252, 1, 0, 0, 0, 3252, 3256, 1, 0, 0, 0, 3253, 3255, 3, 266, 133, 0, 3254, 3253, 1, 0, 0, 0, 3255, 3258, 1, 0, 0, 0, 3256, 3254, 1, 0, 0, 0, 3256, 3257, 1, 0, 0, 0, 3257, 3264, 1, 0, 0, 0, 3258, 3256, 1, 0, 0, 0, 3259, 3261, 5, 62, 0, 0, 3260, 3262, 5, 192, 0, 0, 3261, 3260, 1, 0, 0, 0, 3261, 3262, 1, 0, 0, 0, 3262, 3263, 1, 0, 0, 0, 3263, 3265, 7, 41, 0, 0, 3264, 3259, 1, 0, 0, 0, 3264, 3265, 1, 0, 0, 0, 3265, 3267, 1, 0, 0, 0, 3266, 3268, 3, 258, 129, 0, 3267, 3266, 1, 0, 0, 0, 3267, 3268, 1, 0, 0, 0, 3268, 3269, 1, 0, 0, 0, 3269, 3270, 5, 202, 0, 0, 3270, 3271, 3, 260, 130, 0, 3271, 3272, 5, 2, 0, 0, 3272, 3273, 3, 262, 131, 0, 3273, 3274, 5, 3, 0, 0, 3274, 3276, 1, 0, 0, 0, 3275, 3197, 1, 0, 0, 0, 3275, 3236, 1, 0, 0, 0, 3276, 251, 1, 0, 0, 0, 3277, 3282, 5, 145, 0, 0, 3278, 3282, 5, 135, 0, 0, 3279, 3280, 5, 242, 0, 0, 3280, 3282, 5, 275, 0, 0, 3281, 3277, 1, 0, 0, 0, 3281, 3278, 1, 0, 0, 0, 3281, 3279, 1, 0, 0, 0, 3282, 253, 1, 0, 0, 0, 3283, 3288, 3, 256, 128, 0, 3284, 3285, 5, 82, 0, 0, 3285, 3287, 3, 256, 128, 0, 3286, 3284, 1, 0, 0, 0, 3287, 3290, 1, 0, 0, 0, 3288, 3286, 1, 0, 0, 0, 3288, 3289, 1, 0, 0, 0, 3289, 255, 1, 0, 0, 0, 3290, 3288, 1, 0, 0, 0, 3291, 3300, 5, 241, 0, 0, 3292, 3300, 5, 182, 0, 0, 3293, 3296, 5, 369, 0, 0, 3294, 3295, 5, 275, 0, 0, 3295, 3297, 3, 142, 71, 0, 3296, 3294, 1, 0, 0, 0, 3296, 3297, 1, 0, 0, 0, 3297, 3300, 1, 0, 0, 0, 3298, 3300, 5, 358, 0, 0, 3299, 3291, 1, 0, 0, 0, 3299, 3292, 1, 0, 0, 0, 3299, 3293, 1, 0, 0, 0, 3299, 3298, 1, 0, 0, 0, 3300, 257, 1, 0, 0, 0, 3301, 3302, 5, 102, 0, 0, 3302, 3303, 5, 2, 0, 0, 3303, 3304, 3, 670, 335, 0, 3304, 3305, 5, 3, 0, 0, 3305, 259, 1, 0, 0, 0, 3306, 3307, 5, 211, 0, 0, 3307, 3311, 3, 814, 407, 0, 3308, 3309, 5, 296, 0, 0, 3309, 3311, 3, 800, 400, 0, 3310, 3306, 1, 0, 0, 0, 3310, 3308, 1, 0, 0, 0, 3311, 261, 1, 0, 0, 0, 3312, 3315, 3, 264, 132, 0, 3313, 3315, 1, 0, 0, 0, 3314, 3312, 1, 0, 0, 0, 3314, 3313, 1, 0, 0, 0, 3315, 3320, 1, 0, 0, 0, 3316, 3317, 5, 6, 0, 0, 3317, 3319, 3, 264, 132, 0, 3318, 3316, 1, 0, 0, 0, 3319, 3322, 1, 0, 0, 0, 3320, 3318, 1, 0, 0, 0, 3320, 3321, 1, 0, 0, 0, 3321, 263, 1, 0, 0, 0, 3322, 3320, 1, 0, 0, 0, 3323, 3328, 5, 574, 0, 0, 3324, 3328, 5, 576, 0, 0, 3325, 3328, 3, 816, 408, 0, 3326, 3328, 3, 832, 416, 0, 3327, 3323, 1, 0, 0, 0, 3327, 3324, 1, 0, 0, 0, 3327, 3325, 1, 0, 0, 0, 3327, 3326, 1, 0, 0, 0, 3328, 265, 1, 0, 0, 0, 3329, 3331, 5, 77, 0, 0, 3330, 3329, 1, 0, 0, 0, 3330, 3331, 1, 0, 0, 0, 3331, 3332, 1, 0, 0, 0, 3332, 3340, 5, 54, 0, 0, 3333, 3334, 5, 69, 0, 0, 3334, 3340, 7, 9, 0, 0, 3335, 3336, 5, 77, 0, 0, 3336, 3340, 5, 371, 0, 0, 3337, 3338, 5, 269, 0, 0, 3338, 3340, 5, 228, 0, 0, 3339, 3330, 1, 0, 0, 0, 3339, 3333, 1, 0, 0, 0, 3339, 3335, 1, 0, 0, 0, 3339, 3337, 1, 0, 0, 0, 3340, 267, 1, 0, 0, 0, 3341, 3342, 5, 46, 0, 0, 3342, 3343, 5, 198, 0, 0, 3343, 3344, 5, 357, 0, 0, 3344, 3345, 3, 826, 413, 0, 3345, 3346, 5, 80, 0, 0, 3346, 3356, 3, 832, 416, 0, 3347, 3348, 5, 102, 0, 0, 3348, 3353, 3, 270, 135, 0, 3349, 3350, 5, 33, 0, 0, 3350, 3352, 3, 270, 135, 0, 3351, 3349, 1, 0, 0, 0, 3352, 3355, 1, 0, 0, 0, 3353, 3351, 1, 0, 0, 0, 3353, 3354, 1, 0, 0, 0, 3354, 3357, 1, 0, 0, 0, 3355, 3353, 1, 0, 0, 0, 3356, 3347, 1, 0, 0, 0, 3356, 3357, 1, 0, 0, 0, 3357, 3358, 1, 0, 0, 0, 3358, 3359, 5, 202, 0, 0, 3359, 3360, 3, 260, 130, 0, 3360, 3361, 5, 2, 0, 0, 3361, 3362, 5, 3, 0, 0, 3362, 269, 1, 0, 0, 0, 3363, 3364, 3, 826, 413, 0, 3364, 3365, 5, 68, 0, 0, 3365, 3366, 5, 2, 0, 0, 3366, 3370, 3, 816, 408, 0, 3367, 3369, 3, 456, 228, 0, 3368, 3367, 1, 0, 0, 0, 3369, 3372, 1, 0, 0, 0, 3370, 3368, 1, 0, 0, 0, 3370, 3371, 1, 0, 0, 0, 3371, 3373, 1, 0, 0, 0, 3372, 3370, 1, 0, 0, 0, 3373, 3374, 5, 3, 0, 0, 3374, 271, 1, 0, 0, 0, 3375, 3376, 5, 138, 0, 0, 3376, 3377, 5, 198, 0, 0, 3377, 3378, 5, 357, 0, 0, 3378, 3384, 3, 826, 413, 0, 3379, 3381, 5, 193, 0, 0, 3380, 3382, 7, 14, 0, 0, 3381, 3380, 1, 0, 0, 0, 3381, 3382, 1, 0, 0, 0, 3382, 3385, 1, 0, 0, 0, 3383, 3385, 5, 186, 0, 0, 3384, 3379, 1, 0, 0, 0, 3384, 3383, 1, 0, 0, 0, 3385, 273, 1, 0, 0, 0, 3386, 3387, 5, 46, 0, 0, 3387, 3388, 5, 140, 0, 0, 3388, 3389, 3, 310, 155, 0, 3389, 3390, 5, 42, 0, 0, 3390, 3391, 5, 2, 0, 0, 3391, 3392, 3, 670, 335, 0, 3392, 3396, 5, 3, 0, 0, 3393, 3395, 3, 266, 133, 0, 3394, 3393, 1, 0, 0, 0, 3395, 3398, 1, 0, 0, 0, 3396, 3394, 1, 0, 0, 0, 3396, 3397, 1, 0, 0, 0, 3397, 275, 1, 0, 0, 0, 3398, 3396, 1, 0, 0, 0, 3399, 3401, 5, 46, 0, 0, 3400, 3402, 3, 360, 180, 0, 3401, 3400, 1, 0, 0, 0, 3401, 3402, 1, 0, 0, 0, 3402, 3403, 1, 0, 0, 0, 3403, 3404, 5, 136, 0, 0, 3404, 3419, 3, 814, 407, 0, 3405, 3406, 3, 386, 193, 0, 3406, 3407, 3, 278, 139, 0, 3407, 3420, 1, 0, 0, 0, 3408, 3409, 5, 2, 0, 0, 3409, 3414, 3, 284, 142, 0, 3410, 3411, 5, 6, 0, 0, 3411, 3413, 3, 284, 142, 0, 3412, 3410, 1, 0, 0, 0, 3413, 3416, 1, 0, 0, 0, 3414, 3412, 1, 0, 0, 0, 3414, 3415, 1, 0, 0, 0, 3415, 3417, 1, 0, 0, 0, 3416, 3414, 1, 0, 0, 0, 3417, 3418, 5, 3, 0, 0, 3418, 3420, 1, 0, 0, 0, 3419, 3405, 1, 0, 0, 0, 3419, 3408, 1, 0, 0, 0, 3420, 3478, 1, 0, 0, 0, 3421, 3422, 5, 46, 0, 0, 3422, 3423, 5, 278, 0, 0, 3423, 3424, 3, 408, 204, 0, 3424, 3425, 3, 278, 139, 0, 3425, 3478, 1, 0, 0, 0, 3426, 3427, 5, 46, 0, 0, 3427, 3428, 5, 360, 0, 0, 3428, 3429, 3, 310, 155, 0, 3429, 3447, 5, 36, 0, 0, 3430, 3432, 5, 2, 0, 0, 3431, 3433, 3, 638, 319, 0, 3432, 3431, 1, 0, 0, 0, 3432, 3433, 1, 0, 0, 0, 3433, 3434, 1, 0, 0, 0, 3434, 3448, 5, 3, 0, 0, 3435, 3436, 5, 196, 0, 0, 3436, 3444, 5, 2, 0, 0, 3437, 3441, 3, 816, 408, 0, 3438, 3440, 3, 456, 228, 0, 3439, 3438, 1, 0, 0, 0, 3440, 3443, 1, 0, 0, 0, 3441, 3439, 1, 0, 0, 0, 3441, 3442, 1, 0, 0, 0, 3442, 3445, 1, 0, 0, 0, 3443, 3441, 1, 0, 0, 0, 3444, 3437, 1, 0, 0, 0, 3444, 3445, 1, 0, 0, 0, 3445, 3446, 1, 0, 0, 0, 3446, 3448, 5, 3, 0, 0, 3447, 3430, 1, 0, 0, 0, 3447, 3435, 1, 0, 0, 0, 3448, 3478, 1, 0, 0, 0, 3449, 3450, 5, 46, 0, 0, 3450, 3451, 5, 360, 0, 0, 3451, 3457, 3, 310, 155, 0, 3452, 3453, 5, 36, 0, 0, 3453, 3455, 5, 299, 0, 0, 3454, 3452, 1, 0, 0, 0, 3454, 3455, 1, 0, 0, 0, 3455, 3456, 1, 0, 0, 0, 3456, 3458, 3, 278, 139, 0, 3457, 3454, 1, 0, 0, 0, 3457, 3458, 1, 0, 0, 0, 3458, 3478, 1, 0, 0, 0, 3459, 3460, 5, 46, 0, 0, 3460, 3461, 5, 355, 0, 0, 3461, 3462, 5, 325, 0, 0, 3462, 3463, 7, 42, 0, 0, 3463, 3464, 3, 310, 155, 0, 3464, 3465, 3, 278, 139, 0, 3465, 3478, 1, 0, 0, 0, 3466, 3467, 5, 46, 0, 0, 3467, 3469, 5, 108, 0, 0, 3468, 3470, 3, 288, 144, 0, 3469, 3468, 1, 0, 0, 0, 3469, 3470, 1, 0, 0, 0, 3470, 3471, 1, 0, 0, 0, 3471, 3475, 3, 310, 155, 0, 3472, 3476, 3, 278, 139, 0, 3473, 3474, 5, 64, 0, 0, 3474, 3476, 3, 310, 155, 0, 3475, 3472, 1, 0, 0, 0, 3475, 3473, 1, 0, 0, 0, 3476, 3478, 1, 0, 0, 0, 3477, 3399, 1, 0, 0, 0, 3477, 3421, 1, 0, 0, 0, 3477, 3426, 1, 0, 0, 0, 3477, 3449, 1, 0, 0, 0, 3477, 3459, 1, 0, 0, 0, 3477, 3466, 1, 0, 0, 0, 3478, 277, 1, 0, 0, 0, 3479, 3480, 5, 2, 0, 0, 3480, 3485, 3, 280, 140, 0, 3481, 3482, 5, 6, 0, 0, 3482, 3484, 3, 280, 140, 0, 3483, 3481, 1, 0, 0, 0, 3484, 3487, 1, 0, 0, 0, 3485, 3483, 1, 0, 0, 0, 3485, 3486, 1, 0, 0, 0, 3486, 3488, 1, 0, 0, 0, 3487, 3485, 1, 0, 0, 0, 3488, 3489, 5, 3, 0, 0, 3489, 279, 1, 0, 0, 0, 3490, 3493, 3, 832, 416, 0, 3491, 3492, 5, 10, 0, 0, 3492, 3494, 3, 282, 141, 0, 3493, 3491, 1, 0, 0, 0, 3493, 3494, 1, 0, 0, 0, 3494, 281, 1, 0, 0, 0, 3495, 3502, 3, 382, 191, 0, 3496, 3502, 3, 844, 422, 0, 3497, 3502, 3, 724, 362, 0, 3498, 3502, 3, 196, 98, 0, 3499, 3502, 3, 816, 408, 0, 3500, 3502, 5, 407, 0, 0, 3501, 3495, 1, 0, 0, 0, 3501, 3496, 1, 0, 0, 0, 3501, 3497, 1, 0, 0, 0, 3501, 3498, 1, 0, 0, 0, 3501, 3499, 1, 0, 0, 0, 3501, 3500, 1, 0, 0, 0, 3502, 283, 1, 0, 0, 0, 3503, 3504, 3, 836, 418, 0, 3504, 3505, 5, 10, 0, 0, 3505, 3506, 3, 282, 141, 0, 3506, 285, 1, 0, 0, 0, 3507, 3508, 5, 138, 0, 0, 3508, 3509, 5, 360, 0, 0, 3509, 3510, 3, 310, 155, 0, 3510, 3511, 5, 133, 0, 0, 3511, 3513, 5, 450, 0, 0, 3512, 3514, 3, 288, 144, 0, 3513, 3512, 1, 0, 0, 0, 3513, 3514, 1, 0, 0, 0, 3514, 3515, 1, 0, 0, 0, 3515, 3518, 3, 816, 408, 0, 3516, 3517, 7, 43, 0, 0, 3517, 3519, 3, 816, 408, 0, 3518, 3516, 1, 0, 0, 0, 3518, 3519, 1, 0, 0, 0, 3519, 3530, 1, 0, 0, 0, 3520, 3521, 5, 138, 0, 0, 3521, 3522, 5, 360, 0, 0, 3522, 3523, 3, 310, 155, 0, 3523, 3524, 5, 309, 0, 0, 3524, 3525, 5, 450, 0, 0, 3525, 3526, 3, 816, 408, 0, 3526, 3527, 5, 94, 0, 0, 3527, 3528, 3, 816, 408, 0, 3528, 3530, 1, 0, 0, 0, 3529, 3507, 1, 0, 0, 0, 3529, 3520, 1, 0, 0, 0, 3530, 287, 1, 0, 0, 0, 3531, 3532, 5, 220, 0, 0, 3532, 3533, 5, 77, 0, 0, 3533, 3534, 5, 396, 0, 0, 3534, 289, 1, 0, 0, 0, 3535, 3536, 5, 46, 0, 0, 3536, 3537, 5, 278, 0, 0, 3537, 3538, 5, 156, 0, 0, 3538, 3540, 3, 310, 155, 0, 3539, 3541, 5, 53, 0, 0, 3540, 3539, 1, 0, 0, 0, 3540, 3541, 1, 0, 0, 0, 3541, 3542, 1, 0, 0, 0, 3542, 3543, 5, 62, 0, 0, 3543, 3544, 5, 360, 0, 0, 3544, 3545, 3, 648, 324, 0, 3545, 3548, 3, 164, 82, 0, 3546, 3547, 5, 206, 0, 0, 3547, 3549, 3, 310, 155, 0, 3548, 3546, 1, 0, 0, 0, 3548, 3549, 1, 0, 0, 0, 3549, 3550, 1, 0, 0, 0, 3550, 3551, 5, 36, 0, 0, 3551, 3556, 3, 292, 146, 0, 3552, 3553, 5, 6, 0, 0, 3553, 3555, 3, 292, 146, 0, 3554, 3552, 1, 0, 0, 0, 3555, 3558, 1, 0, 0, 0, 3556, 3554, 1, 0, 0, 0, 3556, 3557, 1, 0, 0, 0, 3557, 291, 1, 0, 0, 0, 3558, 3556, 1, 0, 0, 0, 3559, 3560, 5, 278, 0, 0, 3560, 3561, 5, 574, 0, 0, 3561, 3563, 3, 408, 204, 0, 3562, 3564, 3, 406, 203, 0, 3563, 3562, 1, 0, 0, 0, 3563, 3564, 1, 0, 0, 0, 3564, 3572, 1, 0, 0, 0, 3565, 3570, 5, 62, 0, 0, 3566, 3571, 5, 325, 0, 0, 3567, 3568, 5, 83, 0, 0, 3568, 3569, 5, 147, 0, 0, 3569, 3571, 3, 310, 155, 0, 3570, 3566, 1, 0, 0, 0, 3570, 3567, 1, 0, 0, 0, 3571, 3573, 1, 0, 0, 0, 3572, 3565, 1, 0, 0, 0, 3572, 3573, 1, 0, 0, 0, 3573, 3575, 1, 0, 0, 0, 3574, 3576, 5, 302, 0, 0, 3575, 3574, 1, 0, 0, 0, 3575, 3576, 1, 0, 0, 0, 3576, 3586, 1, 0, 0, 0, 3577, 3578, 5, 211, 0, 0, 3578, 3580, 5, 574, 0, 0, 3579, 3581, 3, 522, 261, 0, 3580, 3579, 1, 0, 0, 0, 3580, 3581, 1, 0, 0, 0, 3581, 3582, 1, 0, 0, 0, 3582, 3586, 3, 376, 188, 0, 3583, 3584, 5, 345, 0, 0, 3584, 3586, 3, 648, 324, 0, 3585, 3559, 1, 0, 0, 0, 3585, 3577, 1, 0, 0, 0, 3585, 3583, 1, 0, 0, 0, 3586, 293, 1, 0, 0, 0, 3587, 3588, 5, 46, 0, 0, 3588, 3589, 5, 278, 0, 0, 3589, 3590, 5, 206, 0, 0, 3590, 3591, 3, 310, 155, 0, 3591, 3592, 3, 164, 82, 0, 3592, 295, 1, 0, 0, 0, 3593, 3594, 5, 138, 0, 0, 3594, 3595, 5, 278, 0, 0, 3595, 3596, 5, 206, 0, 0, 3596, 3597, 3, 310, 155, 0, 3597, 3616, 3, 164, 82, 0, 3598, 3599, 5, 133, 0, 0, 3599, 3604, 3, 292, 146, 0, 3600, 3601, 5, 6, 0, 0, 3601, 3603, 3, 292, 146, 0, 3602, 3600, 1, 0, 0, 0, 3603, 3606, 1, 0, 0, 0, 3604, 3602, 1, 0, 0, 0, 3604, 3605, 1, 0, 0, 0, 3605, 3617, 1, 0, 0, 0, 3606, 3604, 1, 0, 0, 0, 3607, 3608, 5, 191, 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, 3617, 1, 0, 0, 0, 3615, 3613, 1, 0, 0, 0, 3616, 3598, 1, 0, 0, 0, 3616, 3607, 1, 0, 0, 0, 3617, 297, 1, 0, 0, 0, 3618, 3619, 7, 44, 0, 0, 3619, 3620, 5, 574, 0, 0, 3620, 3621, 3, 522, 261, 0, 3621, 299, 1, 0, 0, 0, 3622, 3623, 5, 301, 0, 0, 3623, 3624, 5, 281, 0, 0, 3624, 3625, 5, 147, 0, 0, 3625, 3626, 3, 824, 412, 0, 3626, 3627, 5, 94, 0, 0, 3627, 3628, 3, 822, 411, 0, 3628, 301, 1, 0, 0, 0, 3629, 3652, 5, 191, 0, 0, 3630, 3653, 5, 328, 0, 0, 3631, 3653, 5, 226, 0, 0, 3632, 3653, 5, 108, 0, 0, 3633, 3653, 5, 168, 0, 0, 3634, 3653, 5, 342, 0, 0, 3635, 3653, 5, 452, 0, 0, 3636, 3653, 5, 331, 0, 0, 3637, 3638, 5, 131, 0, 0, 3638, 3653, 5, 446, 0, 0, 3639, 3640, 5, 198, 0, 0, 3640, 3653, 5, 357, 0, 0, 3641, 3653, 5, 204, 0, 0, 3642, 3644, 5, 295, 0, 0, 3643, 3642, 1, 0, 0, 0, 3643, 3644, 1, 0, 0, 0, 3644, 3645, 1, 0, 0, 0, 3645, 3653, 5, 247, 0, 0, 3646, 3647, 5, 63, 0, 0, 3647, 3648, 5, 174, 0, 0, 3648, 3653, 5, 381, 0, 0, 3649, 3650, 5, 355, 0, 0, 3650, 3651, 5, 325, 0, 0, 3651, 3653, 7, 42, 0, 0, 3652, 3630, 1, 0, 0, 0, 3652, 3631, 1, 0, 0, 0, 3652, 3632, 1, 0, 0, 0, 3652, 3633, 1, 0, 0, 0, 3652, 3634, 1, 0, 0, 0, 3652, 3635, 1, 0, 0, 0, 3652, 3636, 1, 0, 0, 0, 3652, 3637, 1, 0, 0, 0, 3652, 3639, 1, 0, 0, 0, 3652, 3641, 1, 0, 0, 0, 3652, 3643, 1, 0, 0, 0, 3652, 3646, 1, 0, 0, 0, 3652, 3649, 1, 0, 0, 0, 3653, 3655, 1, 0, 0, 0, 3654, 3656, 3, 416, 208, 0, 3655, 3654, 1, 0, 0, 0, 3655, 3656, 1, 0, 0, 0, 3656, 3657, 1, 0, 0, 0, 3657, 3659, 3, 788, 394, 0, 3658, 3660, 3, 88, 44, 0, 3659, 3658, 1, 0, 0, 0, 3659, 3660, 1, 0, 0, 0, 3660, 3837, 1, 0, 0, 0, 3661, 3663, 5, 191, 0, 0, 3662, 3664, 5, 259, 0, 0, 3663, 3662, 1, 0, 0, 0, 3663, 3664, 1, 0, 0, 0, 3664, 3665, 1, 0, 0, 0, 3665, 3667, 5, 376, 0, 0, 3666, 3668, 3, 416, 208, 0, 3667, 3666, 1, 0, 0, 0, 3667, 3668, 1, 0, 0, 0, 3668, 3669, 1, 0, 0, 0, 3669, 3674, 3, 782, 391, 0, 3670, 3671, 5, 6, 0, 0, 3671, 3673, 3, 782, 391, 0, 3672, 3670, 1, 0, 0, 0, 3673, 3676, 1, 0, 0, 0, 3674, 3672, 1, 0, 0, 0, 3674, 3675, 1, 0, 0, 0, 3675, 3678, 1, 0, 0, 0, 3676, 3674, 1, 0, 0, 0, 3677, 3679, 3, 88, 44, 0, 3678, 3677, 1, 0, 0, 0, 3678, 3679, 1, 0, 0, 0, 3679, 3837, 1, 0, 0, 0, 3680, 3682, 5, 191, 0, 0, 3681, 3683, 5, 63, 0, 0, 3682, 3681, 1, 0, 0, 0, 3682, 3683, 1, 0, 0, 0, 3683, 3684, 1, 0, 0, 0, 3684, 3686, 5, 92, 0, 0, 3685, 3687, 3, 416, 208, 0, 3686, 3685, 1, 0, 0, 0, 3686, 3687, 1, 0, 0, 0, 3687, 3688, 1, 0, 0, 0, 3688, 3690, 3, 766, 383, 0, 3689, 3691, 3, 88, 44, 0, 3690, 3689, 1, 0, 0, 0, 3690, 3691, 1, 0, 0, 0, 3691, 3837, 1, 0, 0, 0, 3692, 3693, 5, 191, 0, 0, 3693, 3695, 5, 323, 0, 0, 3694, 3696, 3, 416, 208, 0, 3695, 3694, 1, 0, 0, 0, 3695, 3696, 1, 0, 0, 0, 3696, 3697, 1, 0, 0, 0, 3697, 3699, 3, 768, 384, 0, 3698, 3700, 3, 88, 44, 0, 3699, 3698, 1, 0, 0, 0, 3699, 3700, 1, 0, 0, 0, 3700, 3837, 1, 0, 0, 0, 3701, 3702, 5, 191, 0, 0, 3702, 3704, 7, 45, 0, 0, 3703, 3705, 3, 416, 208, 0, 3704, 3703, 1, 0, 0, 0, 3704, 3705, 1, 0, 0, 0, 3705, 3706, 1, 0, 0, 0, 3706, 3707, 3, 826, 413, 0, 3707, 3708, 5, 80, 0, 0, 3708, 3710, 3, 310, 155, 0, 3709, 3711, 3, 88, 44, 0, 3710, 3709, 1, 0, 0, 0, 3710, 3711, 1, 0, 0, 0, 3711, 3837, 1, 0, 0, 0, 3712, 3713, 5, 191, 0, 0, 3713, 3715, 7, 33, 0, 0, 3714, 3716, 3, 416, 208, 0, 3715, 3714, 1, 0, 0, 0, 3715, 3716, 1, 0, 0, 0, 3716, 3717, 1, 0, 0, 0, 3717, 3722, 3, 648, 324, 0, 3718, 3719, 5, 6, 0, 0, 3719, 3721, 3, 648, 324, 0, 3720, 3718, 1, 0, 0, 0, 3721, 3724, 1, 0, 0, 0, 3722, 3720, 1, 0, 0, 0, 3722, 3723, 1, 0, 0, 0, 3723, 3726, 1, 0, 0, 0, 3724, 3722, 1, 0, 0, 0, 3725, 3727, 3, 88, 44, 0, 3726, 3725, 1, 0, 0, 0, 3726, 3727, 1, 0, 0, 0, 3727, 3837, 1, 0, 0, 0, 3728, 3729, 5, 191, 0, 0, 3729, 3730, 5, 226, 0, 0, 3730, 3732, 5, 109, 0, 0, 3731, 3733, 3, 416, 208, 0, 3732, 3731, 1, 0, 0, 0, 3732, 3733, 1, 0, 0, 0, 3733, 3734, 1, 0, 0, 0, 3734, 3736, 3, 308, 154, 0, 3735, 3737, 3, 88, 44, 0, 3736, 3735, 1, 0, 0, 0, 3736, 3737, 1, 0, 0, 0, 3737, 3837, 1, 0, 0, 0, 3738, 3739, 5, 191, 0, 0, 3739, 3741, 5, 41, 0, 0, 3740, 3742, 3, 416, 208, 0, 3741, 3740, 1, 0, 0, 0, 3741, 3742, 1, 0, 0, 0, 3742, 3743, 1, 0, 0, 0, 3743, 3744, 5, 2, 0, 0, 3744, 3745, 3, 648, 324, 0, 3745, 3746, 5, 36, 0, 0, 3746, 3747, 3, 648, 324, 0, 3747, 3749, 5, 3, 0, 0, 3748, 3750, 3, 88, 44, 0, 3749, 3748, 1, 0, 0, 0, 3749, 3750, 1, 0, 0, 0, 3750, 3837, 1, 0, 0, 0, 3751, 3752, 5, 191, 0, 0, 3752, 3753, 5, 278, 0, 0, 3753, 3755, 7, 32, 0, 0, 3754, 3756, 3, 416, 208, 0, 3755, 3754, 1, 0, 0, 0, 3755, 3756, 1, 0, 0, 0, 3756, 3757, 1, 0, 0, 0, 3757, 3758, 3, 310, 155, 0, 3758, 3760, 3, 164, 82, 0, 3759, 3761, 3, 88, 44, 0, 3760, 3759, 1, 0, 0, 0, 3760, 3761, 1, 0, 0, 0, 3761, 3837, 1, 0, 0, 0, 3762, 3763, 5, 191, 0, 0, 3763, 3764, 5, 281, 0, 0, 3764, 3765, 5, 147, 0, 0, 3765, 3767, 3, 824, 412, 0, 3766, 3768, 3, 88, 44, 0, 3767, 3766, 1, 0, 0, 0, 3767, 3768, 1, 0, 0, 0, 3768, 3837, 1, 0, 0, 0, 3769, 3770, 5, 191, 0, 0, 3770, 3772, 5, 451, 0, 0, 3771, 3773, 3, 416, 208, 0, 3772, 3771, 1, 0, 0, 0, 3772, 3773, 1, 0, 0, 0, 3773, 3774, 1, 0, 0, 0, 3774, 3776, 3, 826, 413, 0, 3775, 3777, 3, 88, 44, 0, 3776, 3775, 1, 0, 0, 0, 3776, 3777, 1, 0, 0, 0, 3777, 3837, 1, 0, 0, 0, 3778, 3779, 5, 191, 0, 0, 3779, 3781, 5, 351, 0, 0, 3780, 3782, 3, 416, 208, 0, 3781, 3780, 1, 0, 0, 0, 3781, 3782, 1, 0, 0, 0, 3782, 3783, 1, 0, 0, 0, 3783, 3837, 3, 774, 387, 0, 3784, 3785, 5, 191, 0, 0, 3785, 3787, 5, 443, 0, 0, 3786, 3788, 3, 416, 208, 0, 3787, 3786, 1, 0, 0, 0, 3787, 3788, 1, 0, 0, 0, 3788, 3789, 1, 0, 0, 0, 3789, 3790, 5, 62, 0, 0, 3790, 3791, 3, 648, 324, 0, 3791, 3792, 5, 247, 0, 0, 3792, 3794, 3, 826, 413, 0, 3793, 3795, 3, 88, 44, 0, 3794, 3793, 1, 0, 0, 0, 3794, 3795, 1, 0, 0, 0, 3795, 3837, 1, 0, 0, 0, 3796, 3797, 5, 191, 0, 0, 3797, 3799, 7, 46, 0, 0, 3798, 3800, 3, 416, 208, 0, 3799, 3798, 1, 0, 0, 0, 3799, 3800, 1, 0, 0, 0, 3800, 3801, 1, 0, 0, 0, 3801, 3837, 3, 824, 412, 0, 3802, 3803, 5, 191, 0, 0, 3803, 3804, 5, 99, 0, 0, 3804, 3806, 5, 257, 0, 0, 3805, 3807, 3, 416, 208, 0, 3806, 3805, 1, 0, 0, 0, 3806, 3807, 1, 0, 0, 0, 3807, 3808, 1, 0, 0, 0, 3808, 3811, 5, 62, 0, 0, 3809, 3812, 3, 822, 411, 0, 3810, 3812, 5, 99, 0, 0, 3811, 3809, 1, 0, 0, 0, 3811, 3810, 1, 0, 0, 0, 3812, 3813, 1, 0, 0, 0, 3813, 3814, 5, 331, 0, 0, 3814, 3837, 3, 826, 413, 0, 3815, 3816, 5, 191, 0, 0, 3816, 3818, 5, 175, 0, 0, 3817, 3819, 3, 416, 208, 0, 3818, 3817, 1, 0, 0, 0, 3818, 3819, 1, 0, 0, 0, 3819, 3820, 1, 0, 0, 0, 3820, 3834, 3, 792, 396, 0, 3821, 3823, 5, 105, 0, 0, 3822, 3821, 1, 0, 0, 0, 3822, 3823, 1, 0, 0, 0, 3823, 3824, 1, 0, 0, 0, 3824, 3825, 5, 2, 0, 0, 3825, 3830, 5, 209, 0, 0, 3826, 3827, 5, 6, 0, 0, 3827, 3829, 5, 209, 0, 0, 3828, 3826, 1, 0, 0, 0, 3829, 3832, 1, 0, 0, 0, 3830, 3828, 1, 0, 0, 0, 3830, 3831, 1, 0, 0, 0, 3831, 3833, 1, 0, 0, 0, 3832, 3830, 1, 0, 0, 0, 3833, 3835, 5, 3, 0, 0, 3834, 3822, 1, 0, 0, 0, 3834, 3835, 1, 0, 0, 0, 3835, 3837, 1, 0, 0, 0, 3836, 3629, 1, 0, 0, 0, 3836, 3661, 1, 0, 0, 0, 3836, 3680, 1, 0, 0, 0, 3836, 3692, 1, 0, 0, 0, 3836, 3701, 1, 0, 0, 0, 3836, 3712, 1, 0, 0, 0, 3836, 3728, 1, 0, 0, 0, 3836, 3738, 1, 0, 0, 0, 3836, 3751, 1, 0, 0, 0, 3836, 3762, 1, 0, 0, 0, 3836, 3769, 1, 0, 0, 0, 3836, 3778, 1, 0, 0, 0, 3836, 3784, 1, 0, 0, 0, 3836, 3796, 1, 0, 0, 0, 3836, 3802, 1, 0, 0, 0, 3836, 3815, 1, 0, 0, 0, 3837, 303, 1, 0, 0, 0, 3838, 3840, 5, 63, 0, 0, 3839, 3838, 1, 0, 0, 0, 3839, 3840, 1, 0, 0, 0, 3840, 3841, 1, 0, 0, 0, 3841, 3842, 5, 92, 0, 0, 3842, 3855, 3, 778, 389, 0, 3843, 3845, 5, 259, 0, 0, 3844, 3843, 1, 0, 0, 0, 3844, 3845, 1, 0, 0, 0, 3845, 3846, 1, 0, 0, 0, 3846, 3847, 5, 376, 0, 0, 3847, 3855, 3, 782, 391, 0, 3848, 3849, 7, 47, 0, 0, 3849, 3855, 3, 310, 155, 0, 3850, 3851, 5, 355, 0, 0, 3851, 3852, 5, 325, 0, 0, 3852, 3853, 7, 42, 0, 0, 3853, 3855, 3, 310, 155, 0, 3854, 3839, 1, 0, 0, 0, 3854, 3844, 1, 0, 0, 0, 3854, 3848, 1, 0, 0, 0, 3854, 3850, 1, 0, 0, 0, 3855, 305, 1, 0, 0, 0, 3856, 3857, 5, 198, 0, 0, 3857, 3873, 5, 357, 0, 0, 3858, 3859, 5, 131, 0, 0, 3859, 3873, 5, 446, 0, 0, 3860, 3873, 5, 204, 0, 0, 3861, 3873, 5, 452, 0, 0, 3862, 3873, 5, 331, 0, 0, 3863, 3873, 5, 318, 0, 0, 3864, 3873, 5, 451, 0, 0, 3865, 3866, 5, 63, 0, 0, 3866, 3867, 5, 174, 0, 0, 3867, 3873, 5, 381, 0, 0, 3868, 3870, 5, 295, 0, 0, 3869, 3868, 1, 0, 0, 0, 3869, 3870, 1, 0, 0, 0, 3870, 3871, 1, 0, 0, 0, 3871, 3873, 5, 247, 0, 0, 3872, 3856, 1, 0, 0, 0, 3872, 3858, 1, 0, 0, 0, 3872, 3860, 1, 0, 0, 0, 3872, 3861, 1, 0, 0, 0, 3872, 3862, 1, 0, 0, 0, 3872, 3863, 1, 0, 0, 0, 3872, 3864, 1, 0, 0, 0, 3872, 3865, 1, 0, 0, 0, 3872, 3869, 1, 0, 0, 0, 3873, 3874, 1, 0, 0, 0, 3874, 3881, 3, 826, 413, 0, 3875, 3876, 5, 323, 0, 0, 3876, 3881, 3, 794, 397, 0, 3877, 3878, 5, 175, 0, 0, 3878, 3881, 3, 792, 396, 0, 3879, 3881, 3, 170, 85, 0, 3880, 3872, 1, 0, 0, 0, 3880, 3875, 1, 0, 0, 0, 3880, 3877, 1, 0, 0, 0, 3880, 3879, 1, 0, 0, 0, 3881, 307, 1, 0, 0, 0, 3882, 3887, 3, 310, 155, 0, 3883, 3884, 5, 6, 0, 0, 3884, 3886, 3, 310, 155, 0, 3885, 3883, 1, 0, 0, 0, 3886, 3889, 1, 0, 0, 0, 3887, 3885, 1, 0, 0, 0, 3887, 3888, 1, 0, 0, 0, 3888, 309, 1, 0, 0, 0, 3889, 3887, 1, 0, 0, 0, 3890, 3892, 3, 826, 413, 0, 3891, 3893, 3, 312, 156, 0, 3892, 3891, 1, 0, 0, 0, 3892, 3893, 1, 0, 0, 0, 3893, 311, 1, 0, 0, 0, 3894, 3895, 5, 11, 0, 0, 3895, 3897, 3, 832, 416, 0, 3896, 3894, 1, 0, 0, 0, 3897, 3898, 1, 0, 0, 0, 3898, 3896, 1, 0, 0, 0, 3898, 3899, 1, 0, 0, 0, 3899, 313, 1, 0, 0, 0, 3900, 3902, 5, 358, 0, 0, 3901, 3903, 5, 92, 0, 0, 3902, 3901, 1, 0, 0, 0, 3902, 3903, 1, 0, 0, 0, 3903, 3904, 1, 0, 0, 0, 3904, 3909, 3, 316, 158, 0, 3905, 3906, 5, 6, 0, 0, 3906, 3908, 3, 316, 158, 0, 3907, 3905, 1, 0, 0, 0, 3908, 3911, 1, 0, 0, 0, 3909, 3907, 1, 0, 0, 0, 3909, 3910, 1, 0, 0, 0, 3910, 3914, 1, 0, 0, 0, 3911, 3909, 1, 0, 0, 0, 3912, 3913, 7, 48, 0, 0, 3913, 3915, 5, 219, 0, 0, 3914, 3912, 1, 0, 0, 0, 3914, 3915, 1, 0, 0, 0, 3915, 3917, 1, 0, 0, 0, 3916, 3918, 3, 88, 44, 0, 3917, 3916, 1, 0, 0, 0, 3917, 3918, 1, 0, 0, 0, 3918, 315, 1, 0, 0, 0, 3919, 3921, 5, 81, 0, 0, 3920, 3919, 1, 0, 0, 0, 3920, 3921, 1, 0, 0, 0, 3921, 3922, 1, 0, 0, 0, 3922, 3924, 3, 778, 389, 0, 3923, 3925, 5, 9, 0, 0, 3924, 3923, 1, 0, 0, 0, 3924, 3925, 1, 0, 0, 0, 3925, 317, 1, 0, 0, 0, 3926, 3927, 5, 159, 0, 0, 3927, 3986, 5, 80, 0, 0, 3928, 3987, 3, 304, 152, 0, 3929, 3987, 3, 306, 153, 0, 3930, 3931, 5, 44, 0, 0, 3931, 3933, 3, 826, 413, 0, 3932, 3934, 3, 312, 156, 0, 3933, 3932, 1, 0, 0, 0, 3933, 3934, 1, 0, 0, 0, 3934, 3935, 1, 0, 0, 0, 3935, 3936, 5, 11, 0, 0, 3936, 3937, 3, 806, 403, 0, 3937, 3987, 1, 0, 0, 0, 3938, 3939, 7, 33, 0, 0, 3939, 3987, 3, 648, 324, 0, 3940, 3941, 5, 136, 0, 0, 3941, 3987, 3, 388, 194, 0, 3942, 3943, 5, 211, 0, 0, 3943, 3987, 3, 376, 188, 0, 3944, 3945, 5, 278, 0, 0, 3945, 3987, 3, 410, 205, 0, 3946, 3947, 5, 45, 0, 0, 3947, 3948, 3, 826, 413, 0, 3948, 3954, 5, 80, 0, 0, 3949, 3955, 3, 778, 389, 0, 3950, 3952, 5, 189, 0, 0, 3951, 3950, 1, 0, 0, 0, 3951, 3952, 1, 0, 0, 0, 3952, 3953, 1, 0, 0, 0, 3953, 3955, 3, 310, 155, 0, 3954, 3949, 1, 0, 0, 0, 3954, 3951, 1, 0, 0, 0, 3955, 3987, 1, 0, 0, 0, 3956, 3957, 7, 45, 0, 0, 3957, 3958, 3, 826, 413, 0, 3958, 3959, 5, 80, 0, 0, 3959, 3960, 3, 310, 155, 0, 3960, 3987, 1, 0, 0, 0, 3961, 3962, 5, 296, 0, 0, 3962, 3987, 3, 372, 186, 0, 3963, 3964, 5, 442, 0, 0, 3964, 3987, 3, 368, 184, 0, 3965, 3966, 5, 443, 0, 0, 3966, 3967, 5, 62, 0, 0, 3967, 3968, 3, 648, 324, 0, 3968, 3969, 5, 247, 0, 0, 3969, 3970, 3, 826, 413, 0, 3970, 3987, 1, 0, 0, 0, 3971, 3972, 5, 278, 0, 0, 3972, 3973, 7, 32, 0, 0, 3973, 3974, 3, 310, 155, 0, 3974, 3975, 3, 164, 82, 0, 3975, 3987, 1, 0, 0, 0, 3976, 3977, 5, 248, 0, 0, 3977, 3978, 5, 274, 0, 0, 3978, 3987, 3, 196, 98, 0, 3979, 3980, 5, 41, 0, 0, 3980, 3981, 5, 2, 0, 0, 3981, 3982, 3, 648, 324, 0, 3982, 3983, 5, 36, 0, 0, 3983, 3984, 3, 648, 324, 0, 3984, 3985, 5, 3, 0, 0, 3985, 3987, 1, 0, 0, 0, 3986, 3928, 1, 0, 0, 0, 3986, 3929, 1, 0, 0, 0, 3986, 3930, 1, 0, 0, 0, 3986, 3938, 1, 0, 0, 0, 3986, 3940, 1, 0, 0, 0, 3986, 3942, 1, 0, 0, 0, 3986, 3944, 1, 0, 0, 0, 3986, 3946, 1, 0, 0, 0, 3986, 3956, 1, 0, 0, 0, 3986, 3961, 1, 0, 0, 0, 3986, 3963, 1, 0, 0, 0, 3986, 3965, 1, 0, 0, 0, 3986, 3971, 1, 0, 0, 0, 3986, 3976, 1, 0, 0, 0, 3986, 3979, 1, 0, 0, 0, 3987, 3988, 1, 0, 0, 0, 3988, 3991, 5, 116, 0, 0, 3989, 3992, 3, 816, 408, 0, 3990, 3992, 5, 78, 0, 0, 3991, 3989, 1, 0, 0, 0, 3991, 3990, 1, 0, 0, 0, 3992, 319, 1, 0, 0, 0, 3993, 3994, 5, 327, 0, 0, 3994, 3997, 5, 246, 0, 0, 3995, 3996, 5, 62, 0, 0, 3996, 3998, 3, 58, 29, 0, 3997, 3995, 1, 0, 0, 0, 3997, 3998, 1, 0, 0, 0, 3998, 3999, 1, 0, 0, 0, 3999, 4017, 5, 80, 0, 0, 4000, 4001, 7, 33, 0, 0, 4001, 4018, 3, 648, 324, 0, 4002, 4003, 5, 136, 0, 0, 4003, 4018, 3, 388, 194, 0, 4004, 4005, 5, 44, 0, 0, 4005, 4018, 3, 806, 403, 0, 4006, 4007, 5, 211, 0, 0, 4007, 4018, 3, 376, 188, 0, 4008, 4009, 5, 248, 0, 0, 4009, 4010, 5, 274, 0, 0, 4010, 4018, 3, 196, 98, 0, 4011, 4012, 5, 296, 0, 0, 4012, 4018, 3, 372, 186, 0, 4013, 4014, 5, 442, 0, 0, 4014, 4018, 3, 368, 184, 0, 4015, 4018, 3, 304, 152, 0, 4016, 4018, 3, 306, 153, 0, 4017, 4000, 1, 0, 0, 0, 4017, 4002, 1, 0, 0, 0, 4017, 4004, 1, 0, 0, 0, 4017, 4006, 1, 0, 0, 0, 4017, 4008, 1, 0, 0, 0, 4017, 4011, 1, 0, 0, 0, 4017, 4013, 1, 0, 0, 0, 4017, 4015, 1, 0, 0, 0, 4017, 4016, 1, 0, 0, 0, 4018, 4019, 1, 0, 0, 0, 4019, 4022, 5, 116, 0, 0, 4020, 4023, 3, 816, 408, 0, 4021, 4023, 5, 78, 0, 0, 4022, 4020, 1, 0, 0, 0, 4022, 4021, 1, 0, 0, 0, 4023, 321, 1, 0, 0, 0, 4024, 4025, 7, 49, 0, 0, 4025, 4026, 3, 324, 162, 0, 4026, 323, 1, 0, 0, 0, 4027, 4029, 7, 50, 0, 0, 4028, 4027, 1, 0, 0, 0, 4028, 4029, 1, 0, 0, 0, 4029, 4031, 1, 0, 0, 0, 4030, 4032, 3, 326, 163, 0, 4031, 4030, 1, 0, 0, 0, 4031, 4032, 1, 0, 0, 0, 4032, 4033, 1, 0, 0, 0, 4033, 4071, 3, 826, 413, 0, 4034, 4036, 7, 51, 0, 0, 4035, 4034, 1, 0, 0, 0, 4035, 4036, 1, 0, 0, 0, 4036, 4037, 1, 0, 0, 0, 4037, 4039, 3, 820, 410, 0, 4038, 4040, 3, 326, 163, 0, 4039, 4038, 1, 0, 0, 0, 4039, 4040, 1, 0, 0, 0, 4040, 4041, 1, 0, 0, 0, 4041, 4042, 3, 826, 413, 0, 4042, 4071, 1, 0, 0, 0, 4043, 4045, 5, 210, 0, 0, 4044, 4046, 3, 820, 410, 0, 4045, 4044, 1, 0, 0, 0, 4045, 4046, 1, 0, 0, 0, 4046, 4048, 1, 0, 0, 0, 4047, 4049, 3, 326, 163, 0, 4048, 4047, 1, 0, 0, 0, 4048, 4049, 1, 0, 0, 0, 4049, 4050, 1, 0, 0, 0, 4050, 4071, 3, 826, 413, 0, 4051, 4053, 5, 210, 0, 0, 4052, 4051, 1, 0, 0, 0, 4052, 4053, 1, 0, 0, 0, 4053, 4054, 1, 0, 0, 0, 4054, 4056, 5, 30, 0, 0, 4055, 4057, 3, 326, 163, 0, 4056, 4055, 1, 0, 0, 0, 4056, 4057, 1, 0, 0, 0, 4057, 4058, 1, 0, 0, 0, 4058, 4071, 3, 826, 413, 0, 4059, 4064, 5, 144, 0, 0, 4060, 4062, 5, 30, 0, 0, 4061, 4060, 1, 0, 0, 0, 4061, 4062, 1, 0, 0, 0, 4062, 4065, 1, 0, 0, 0, 4063, 4065, 3, 820, 410, 0, 4064, 4061, 1, 0, 0, 0, 4064, 4063, 1, 0, 0, 0, 4065, 4067, 1, 0, 0, 0, 4066, 4068, 3, 326, 163, 0, 4067, 4066, 1, 0, 0, 0, 4067, 4068, 1, 0, 0, 0, 4068, 4069, 1, 0, 0, 0, 4069, 4071, 3, 826, 413, 0, 4070, 4028, 1, 0, 0, 0, 4070, 4035, 1, 0, 0, 0, 4070, 4043, 1, 0, 0, 0, 4070, 4052, 1, 0, 0, 0, 4070, 4059, 1, 0, 0, 0, 4071, 325, 1, 0, 0, 0, 4072, 4073, 7, 52, 0, 0, 4073, 327, 1, 0, 0, 0, 4074, 4075, 5, 65, 0, 0, 4075, 4076, 3, 332, 166, 0, 4076, 4077, 5, 80, 0, 0, 4077, 4078, 3, 338, 169, 0, 4078, 4079, 5, 94, 0, 0, 4079, 4083, 3, 340, 170, 0, 4080, 4081, 5, 105, 0, 0, 4081, 4082, 5, 65, 0, 0, 4082, 4084, 5, 279, 0, 0, 4083, 4080, 1, 0, 0, 0, 4083, 4084, 1, 0, 0, 0, 4084, 329, 1, 0, 0, 0, 4085, 4089, 5, 317, 0, 0, 4086, 4087, 5, 65, 0, 0, 4087, 4088, 5, 279, 0, 0, 4088, 4090, 5, 62, 0, 0, 4089, 4086, 1, 0, 0, 0, 4089, 4090, 1, 0, 0, 0, 4090, 4091, 1, 0, 0, 0, 4091, 4092, 3, 332, 166, 0, 4092, 4093, 5, 80, 0, 0, 4093, 4094, 3, 338, 169, 0, 4094, 4095, 5, 64, 0, 0, 4095, 4097, 3, 340, 170, 0, 4096, 4098, 3, 88, 44, 0, 4097, 4096, 1, 0, 0, 0, 4097, 4098, 1, 0, 0, 0, 4098, 331, 1, 0, 0, 0, 4099, 4104, 3, 336, 168, 0, 4100, 4101, 5, 6, 0, 0, 4101, 4103, 3, 336, 168, 0, 4102, 4100, 1, 0, 0, 0, 4103, 4106, 1, 0, 0, 0, 4104, 4102, 1, 0, 0, 0, 4104, 4105, 1, 0, 0, 0, 4105, 4123, 1, 0, 0, 0, 4106, 4104, 1, 0, 0, 0, 4107, 4109, 5, 30, 0, 0, 4108, 4110, 5, 294, 0, 0, 4109, 4108, 1, 0, 0, 0, 4109, 4110, 1, 0, 0, 0, 4110, 4112, 1, 0, 0, 0, 4111, 4113, 3, 138, 69, 0, 4112, 4111, 1, 0, 0, 0, 4112, 4113, 1, 0, 0, 0, 4113, 4123, 1, 0, 0, 0, 4114, 4119, 3, 334, 167, 0, 4115, 4116, 5, 6, 0, 0, 4116, 4118, 3, 334, 167, 0, 4117, 4115, 1, 0, 0, 0, 4118, 4121, 1, 0, 0, 0, 4119, 4117, 1, 0, 0, 0, 4119, 4120, 1, 0, 0, 0, 4120, 4123, 1, 0, 0, 0, 4121, 4119, 1, 0, 0, 0, 4122, 4099, 1, 0, 0, 0, 4122, 4107, 1, 0, 0, 0, 4122, 4114, 1, 0, 0, 0, 4123, 333, 1, 0, 0, 0, 4124, 4125, 7, 53, 0, 0, 4125, 335, 1, 0, 0, 0, 4126, 4131, 5, 88, 0, 0, 4127, 4131, 5, 86, 0, 0, 4128, 4131, 5, 46, 0, 0, 4129, 4131, 3, 826, 413, 0, 4130, 4126, 1, 0, 0, 0, 4130, 4127, 1, 0, 0, 0, 4130, 4128, 1, 0, 0, 0, 4130, 4129, 1, 0, 0, 0, 4131, 4133, 1, 0, 0, 0, 4132, 4134, 3, 138, 69, 0, 4133, 4132, 1, 0, 0, 0, 4133, 4134, 1, 0, 0, 0, 4134, 337, 1, 0, 0, 0, 4135, 4136, 5, 92, 0, 0, 4136, 4181, 3, 766, 383, 0, 4137, 4139, 5, 328, 0, 0, 4138, 4137, 1, 0, 0, 0, 4138, 4139, 1, 0, 0, 0, 4139, 4140, 1, 0, 0, 0, 4140, 4181, 3, 764, 382, 0, 4141, 4145, 5, 63, 0, 0, 4142, 4143, 5, 174, 0, 0, 4143, 4146, 5, 381, 0, 0, 4144, 4146, 5, 331, 0, 0, 4145, 4142, 1, 0, 0, 0, 4145, 4144, 1, 0, 0, 0, 4146, 4149, 1, 0, 0, 0, 4147, 4149, 5, 247, 0, 0, 4148, 4141, 1, 0, 0, 0, 4148, 4147, 1, 0, 0, 0, 4149, 4150, 1, 0, 0, 0, 4150, 4181, 3, 788, 394, 0, 4151, 4152, 5, 211, 0, 0, 4152, 4181, 3, 374, 187, 0, 4153, 4154, 5, 296, 0, 0, 4154, 4181, 3, 370, 185, 0, 4155, 4156, 5, 442, 0, 0, 4156, 4181, 3, 366, 183, 0, 4157, 4158, 5, 175, 0, 0, 4158, 4181, 3, 770, 385, 0, 4159, 4160, 7, 33, 0, 0, 4160, 4181, 3, 308, 154, 0, 4161, 4162, 5, 248, 0, 0, 4162, 4163, 5, 274, 0, 0, 4163, 4168, 3, 196, 98, 0, 4164, 4165, 5, 6, 0, 0, 4165, 4167, 3, 196, 98, 0, 4166, 4164, 1, 0, 0, 0, 4167, 4170, 1, 0, 0, 0, 4168, 4166, 1, 0, 0, 0, 4168, 4169, 1, 0, 0, 0, 4169, 4181, 1, 0, 0, 0, 4170, 4168, 1, 0, 0, 0, 4171, 4172, 5, 323, 0, 0, 4172, 4181, 3, 768, 384, 0, 4173, 4174, 5, 351, 0, 0, 4174, 4181, 3, 786, 393, 0, 4175, 4176, 5, 30, 0, 0, 4176, 4177, 7, 54, 0, 0, 4177, 4178, 5, 68, 0, 0, 4178, 4179, 5, 323, 0, 0, 4179, 4181, 3, 768, 384, 0, 4180, 4135, 1, 0, 0, 0, 4180, 4138, 1, 0, 0, 0, 4180, 4148, 1, 0, 0, 0, 4180, 4151, 1, 0, 0, 0, 4180, 4153, 1, 0, 0, 0, 4180, 4155, 1, 0, 0, 0, 4180, 4157, 1, 0, 0, 0, 4180, 4159, 1, 0, 0, 0, 4180, 4161, 1, 0, 0, 0, 4180, 4171, 1, 0, 0, 0, 4180, 4173, 1, 0, 0, 0, 4180, 4175, 1, 0, 0, 0, 4181, 339, 1, 0, 0, 0, 4182, 4184, 5, 66, 0, 0, 4183, 4182, 1, 0, 0, 0, 4183, 4184, 1, 0, 0, 0, 4184, 4185, 1, 0, 0, 0, 4185, 4186, 3, 822, 411, 0, 4186, 4194, 1, 0, 0, 0, 4187, 4189, 5, 6, 0, 0, 4188, 4190, 5, 66, 0, 0, 4189, 4188, 1, 0, 0, 0, 4189, 4190, 1, 0, 0, 0, 4190, 4191, 1, 0, 0, 0, 4191, 4193, 3, 822, 411, 0, 4192, 4187, 1, 0, 0, 0, 4193, 4196, 1, 0, 0, 0, 4194, 4192, 1, 0, 0, 0, 4194, 4195, 1, 0, 0, 0, 4195, 341, 1, 0, 0, 0, 4196, 4194, 1, 0, 0, 0, 4197, 4198, 5, 65, 0, 0, 4198, 4203, 3, 336, 168, 0, 4199, 4200, 5, 6, 0, 0, 4200, 4202, 3, 336, 168, 0, 4201, 4199, 1, 0, 0, 0, 4202, 4205, 1, 0, 0, 0, 4203, 4201, 1, 0, 0, 0, 4203, 4204, 1, 0, 0, 0, 4204, 4206, 1, 0, 0, 0, 4205, 4203, 1, 0, 0, 0, 4206, 4207, 5, 94, 0, 0, 4207, 4211, 3, 824, 412, 0, 4208, 4209, 5, 105, 0, 0, 4209, 4210, 5, 134, 0, 0, 4210, 4212, 5, 279, 0, 0, 4211, 4208, 1, 0, 0, 0, 4211, 4212, 1, 0, 0, 0, 4212, 4216, 1, 0, 0, 0, 4213, 4214, 5, 214, 0, 0, 4214, 4215, 5, 147, 0, 0, 4215, 4217, 3, 822, 411, 0, 4216, 4213, 1, 0, 0, 0, 4216, 4217, 1, 0, 0, 0, 4217, 343, 1, 0, 0, 0, 4218, 4222, 5, 317, 0, 0, 4219, 4220, 5, 134, 0, 0, 4220, 4221, 5, 279, 0, 0, 4221, 4223, 5, 62, 0, 0, 4222, 4219, 1, 0, 0, 0, 4222, 4223, 1, 0, 0, 0, 4223, 4224, 1, 0, 0, 0, 4224, 4229, 3, 336, 168, 0, 4225, 4226, 5, 6, 0, 0, 4226, 4228, 3, 336, 168, 0, 4227, 4225, 1, 0, 0, 0, 4228, 4231, 1, 0, 0, 0, 4229, 4227, 1, 0, 0, 0, 4229, 4230, 1, 0, 0, 0, 4230, 4232, 1, 0, 0, 0, 4231, 4229, 1, 0, 0, 0, 4232, 4233, 5, 64, 0, 0, 4233, 4237, 3, 824, 412, 0, 4234, 4235, 5, 214, 0, 0, 4235, 4236, 5, 147, 0, 0, 4236, 4238, 3, 822, 411, 0, 4237, 4234, 1, 0, 0, 0, 4237, 4238, 1, 0, 0, 0, 4238, 4240, 1, 0, 0, 0, 4239, 4241, 3, 88, 44, 0, 4240, 4239, 1, 0, 0, 0, 4240, 4241, 1, 0, 0, 0, 4241, 345, 1, 0, 0, 0, 4242, 4243, 5, 138, 0, 0, 4243, 4244, 5, 53, 0, 0, 4244, 4253, 5, 294, 0, 0, 4245, 4246, 5, 68, 0, 0, 4246, 4247, 5, 323, 0, 0, 4247, 4252, 3, 768, 384, 0, 4248, 4249, 5, 62, 0, 0, 4249, 4250, 7, 2, 0, 0, 4250, 4252, 3, 824, 412, 0, 4251, 4245, 1, 0, 0, 0, 4251, 4248, 1, 0, 0, 0, 4252, 4255, 1, 0, 0, 0, 4253, 4251, 1, 0, 0, 0, 4253, 4254, 1, 0, 0, 0, 4254, 4256, 1, 0, 0, 0, 4255, 4253, 1, 0, 0, 0, 4256, 4257, 3, 348, 174, 0, 4257, 347, 1, 0, 0, 0, 4258, 4259, 5, 65, 0, 0, 4259, 4260, 3, 332, 166, 0, 4260, 4261, 5, 80, 0, 0, 4261, 4262, 3, 350, 175, 0, 4262, 4263, 5, 94, 0, 0, 4263, 4267, 3, 340, 170, 0, 4264, 4265, 5, 105, 0, 0, 4265, 4266, 5, 65, 0, 0, 4266, 4268, 5, 279, 0, 0, 4267, 4264, 1, 0, 0, 0, 4267, 4268, 1, 0, 0, 0, 4268, 4284, 1, 0, 0, 0, 4269, 4273, 5, 317, 0, 0, 4270, 4271, 5, 65, 0, 0, 4271, 4272, 5, 279, 0, 0, 4272, 4274, 5, 62, 0, 0, 4273, 4270, 1, 0, 0, 0, 4273, 4274, 1, 0, 0, 0, 4274, 4275, 1, 0, 0, 0, 4275, 4276, 3, 332, 166, 0, 4276, 4277, 5, 80, 0, 0, 4277, 4278, 3, 350, 175, 0, 4278, 4279, 5, 64, 0, 0, 4279, 4281, 3, 340, 170, 0, 4280, 4282, 3, 88, 44, 0, 4281, 4280, 1, 0, 0, 0, 4281, 4282, 1, 0, 0, 0, 4282, 4284, 1, 0, 0, 0, 4283, 4258, 1, 0, 0, 0, 4283, 4269, 1, 0, 0, 0, 4284, 349, 1, 0, 0, 0, 4285, 4286, 7, 55, 0, 0, 4286, 351, 1, 0, 0, 0, 4287, 4289, 5, 46, 0, 0, 4288, 4290, 5, 98, 0, 0, 4289, 4288, 1, 0, 0, 0, 4289, 4290, 1, 0, 0, 0, 4290, 4291, 1, 0, 0, 0, 4291, 4293, 5, 226, 0, 0, 4292, 4294, 5, 109, 0, 0, 4293, 4292, 1, 0, 0, 0, 4293, 4294, 1, 0, 0, 0, 4294, 4296, 1, 0, 0, 0, 4295, 4297, 3, 288, 144, 0, 4296, 4295, 1, 0, 0, 0, 4296, 4297, 1, 0, 0, 0, 4297, 4299, 1, 0, 0, 0, 4298, 4300, 3, 826, 413, 0, 4299, 4298, 1, 0, 0, 0, 4299, 4300, 1, 0, 0, 0, 4300, 4301, 1, 0, 0, 0, 4301, 4302, 5, 80, 0, 0, 4302, 4304, 3, 620, 310, 0, 4303, 4305, 3, 164, 82, 0, 4304, 4303, 1, 0, 0, 0, 4304, 4305, 1, 0, 0, 0, 4305, 4306, 1, 0, 0, 0, 4306, 4309, 3, 354, 177, 0, 4307, 4308, 5, 441, 0, 0, 4308, 4310, 3, 354, 177, 0, 4309, 4307, 1, 0, 0, 0, 4309, 4310, 1, 0, 0, 0, 4310, 4316, 1, 0, 0, 0, 4311, 4313, 5, 273, 0, 0, 4312, 4314, 5, 77, 0, 0, 4313, 4312, 1, 0, 0, 0, 4313, 4314, 1, 0, 0, 0, 4314, 4315, 1, 0, 0, 0, 4315, 4317, 5, 56, 0, 0, 4316, 4311, 1, 0, 0, 0, 4316, 4317, 1, 0, 0, 0, 4317, 4319, 1, 0, 0, 0, 4318, 4320, 3, 94, 47, 0, 4319, 4318, 1, 0, 0, 0, 4319, 4320, 1, 0, 0, 0, 4320, 4322, 1, 0, 0, 0, 4321, 4323, 3, 170, 85, 0, 4322, 4321, 1, 0, 0, 0, 4322, 4323, 1, 0, 0, 0, 4323, 4325, 1, 0, 0, 0, 4324, 4326, 3, 634, 317, 0, 4325, 4324, 1, 0, 0, 0, 4325, 4326, 1, 0, 0, 0, 4326, 353, 1, 0, 0, 0, 4327, 4328, 5, 2, 0, 0, 4328, 4333, 3, 356, 178, 0, 4329, 4330, 5, 6, 0, 0, 4330, 4332, 3, 356, 178, 0, 4331, 4329, 1, 0, 0, 0, 4332, 4335, 1, 0, 0, 0, 4333, 4331, 1, 0, 0, 0, 4333, 4334, 1, 0, 0, 0, 4334, 4336, 1, 0, 0, 0, 4335, 4333, 1, 0, 0, 0, 4336, 4337, 5, 3, 0, 0, 4337, 355, 1, 0, 0, 0, 4338, 4345, 3, 806, 403, 0, 4339, 4345, 3, 684, 342, 0, 4340, 4341, 5, 2, 0, 0, 4341, 4342, 3, 670, 335, 0, 4342, 4343, 5, 3, 0, 0, 4343, 4345, 1, 0, 0, 0, 4344, 4338, 1, 0, 0, 0, 4344, 4339, 1, 0, 0, 0, 4344, 4340, 1, 0, 0, 0, 4345, 4347, 1, 0, 0, 0, 4346, 4348, 3, 90, 45, 0, 4347, 4346, 1, 0, 0, 0, 4347, 4348, 1, 0, 0, 0, 4348, 4355, 1, 0, 0, 0, 4349, 4351, 3, 310, 155, 0, 4350, 4349, 1, 0, 0, 0, 4350, 4351, 1, 0, 0, 0, 4351, 4356, 1, 0, 0, 0, 4352, 4353, 3, 310, 155, 0, 4353, 4354, 3, 92, 46, 0, 4354, 4356, 1, 0, 0, 0, 4355, 4350, 1, 0, 0, 0, 4355, 4352, 1, 0, 0, 0, 4356, 4358, 1, 0, 0, 0, 4357, 4359, 7, 56, 0, 0, 4358, 4357, 1, 0, 0, 0, 4358, 4359, 1, 0, 0, 0, 4359, 4362, 1, 0, 0, 0, 4360, 4361, 5, 273, 0, 0, 4361, 4363, 7, 57, 0, 0, 4362, 4360, 1, 0, 0, 0, 4362, 4363, 1, 0, 0, 0, 4363, 357, 1, 0, 0, 0, 4364, 4366, 5, 46, 0, 0, 4365, 4367, 3, 360, 180, 0, 4366, 4365, 1, 0, 0, 0, 4366, 4367, 1, 0, 0, 0, 4367, 4372, 1, 0, 0, 0, 4368, 4369, 5, 211, 0, 0, 4369, 4373, 3, 812, 406, 0, 4370, 4371, 5, 296, 0, 0, 4371, 4373, 3, 802, 401, 0, 4372, 4368, 1, 0, 0, 0, 4372, 4370, 1, 0, 0, 0, 4373, 4374, 1, 0, 0, 0, 4374, 4383, 5, 2, 0, 0, 4375, 4380, 3, 384, 192, 0, 4376, 4377, 5, 6, 0, 0, 4377, 4379, 3, 384, 192, 0, 4378, 4376, 1, 0, 0, 0, 4379, 4382, 1, 0, 0, 0, 4380, 4378, 1, 0, 0, 0, 4380, 4381, 1, 0, 0, 0, 4381, 4384, 1, 0, 0, 0, 4382, 4380, 1, 0, 0, 0, 4383, 4375, 1, 0, 0, 0, 4383, 4384, 1, 0, 0, 0, 4384, 4385, 1, 0, 0, 0, 4385, 4386, 5, 3, 0, 0, 4386, 4403, 1, 0, 0, 0, 4387, 4401, 5, 316, 0, 0, 4388, 4402, 3, 382, 191, 0, 4389, 4390, 5, 92, 0, 0, 4390, 4391, 5, 2, 0, 0, 4391, 4396, 3, 396, 198, 0, 4392, 4393, 5, 6, 0, 0, 4393, 4395, 3, 396, 198, 0, 4394, 4392, 1, 0, 0, 0, 4395, 4398, 1, 0, 0, 0, 4396, 4394, 1, 0, 0, 0, 4396, 4397, 1, 0, 0, 0, 4397, 4399, 1, 0, 0, 0, 4398, 4396, 1, 0, 0, 0, 4399, 4400, 5, 3, 0, 0, 4400, 4402, 1, 0, 0, 0, 4401, 4388, 1, 0, 0, 0, 4401, 4389, 1, 0, 0, 0, 4402, 4404, 1, 0, 0, 0, 4403, 4387, 1, 0, 0, 0, 4403, 4404, 1, 0, 0, 0, 4404, 4406, 1, 0, 0, 0, 4405, 4407, 3, 392, 196, 0, 4406, 4405, 1, 0, 0, 0, 4407, 4408, 1, 0, 0, 0, 4408, 4406, 1, 0, 0, 0, 4408, 4409, 1, 0, 0, 0, 4409, 4415, 1, 0, 0, 0, 4410, 4411, 5, 105, 0, 0, 4411, 4412, 5, 2, 0, 0, 4412, 4413, 3, 788, 394, 0, 4413, 4414, 5, 3, 0, 0, 4414, 4416, 1, 0, 0, 0, 4415, 4410, 1, 0, 0, 0, 4415, 4416, 1, 0, 0, 0, 4416, 359, 1, 0, 0, 0, 4417, 4418, 5, 82, 0, 0, 4418, 4419, 5, 311, 0, 0, 4419, 361, 1, 0, 0, 0, 4420, 4422, 5, 2, 0, 0, 4421, 4423, 3, 364, 182, 0, 4422, 4421, 1, 0, 0, 0, 4422, 4423, 1, 0, 0, 0, 4423, 4424, 1, 0, 0, 0, 4424, 4425, 5, 3, 0, 0, 4425, 363, 1, 0, 0, 0, 4426, 4431, 3, 378, 189, 0, 4427, 4428, 5, 6, 0, 0, 4428, 4430, 3, 378, 189, 0, 4429, 4427, 1, 0, 0, 0, 4430, 4433, 1, 0, 0, 0, 4431, 4429, 1, 0, 0, 0, 4431, 4432, 1, 0, 0, 0, 4432, 365, 1, 0, 0, 0, 4433, 4431, 1, 0, 0, 0, 4434, 4439, 3, 368, 184, 0, 4435, 4436, 5, 6, 0, 0, 4436, 4438, 3, 368, 184, 0, 4437, 4435, 1, 0, 0, 0, 4438, 4441, 1, 0, 0, 0, 4439, 4437, 1, 0, 0, 0, 4439, 4440, 1, 0, 0, 0, 4440, 367, 1, 0, 0, 0, 4441, 4439, 1, 0, 0, 0, 4442, 4443, 3, 798, 399, 0, 4443, 4444, 3, 362, 181, 0, 4444, 4448, 1, 0, 0, 0, 4445, 4448, 3, 842, 421, 0, 4446, 4448, 3, 784, 392, 0, 4447, 4442, 1, 0, 0, 0, 4447, 4445, 1, 0, 0, 0, 4447, 4446, 1, 0, 0, 0, 4448, 369, 1, 0, 0, 0, 4449, 4454, 3, 372, 186, 0, 4450, 4451, 5, 6, 0, 0, 4451, 4453, 3, 372, 186, 0, 4452, 4450, 1, 0, 0, 0, 4453, 4456, 1, 0, 0, 0, 4454, 4452, 1, 0, 0, 0, 4454, 4455, 1, 0, 0, 0, 4455, 371, 1, 0, 0, 0, 4456, 4454, 1, 0, 0, 0, 4457, 4458, 3, 800, 400, 0, 4458, 4459, 3, 362, 181, 0, 4459, 4463, 1, 0, 0, 0, 4460, 4463, 3, 842, 421, 0, 4461, 4463, 3, 784, 392, 0, 4462, 4457, 1, 0, 0, 0, 4462, 4460, 1, 0, 0, 0, 4462, 4461, 1, 0, 0, 0, 4463, 373, 1, 0, 0, 0, 4464, 4469, 3, 376, 188, 0, 4465, 4466, 5, 6, 0, 0, 4466, 4468, 3, 376, 188, 0, 4467, 4465, 1, 0, 0, 0, 4468, 4471, 1, 0, 0, 0, 4469, 4467, 1, 0, 0, 0, 4469, 4470, 1, 0, 0, 0, 4470, 375, 1, 0, 0, 0, 4471, 4469, 1, 0, 0, 0, 4472, 4473, 3, 814, 407, 0, 4473, 4474, 3, 362, 181, 0, 4474, 4478, 1, 0, 0, 0, 4475, 4478, 3, 842, 421, 0, 4476, 4478, 3, 784, 392, 0, 4477, 4472, 1, 0, 0, 0, 4477, 4475, 1, 0, 0, 0, 4477, 4476, 1, 0, 0, 0, 4478, 377, 1, 0, 0, 0, 4479, 4481, 3, 380, 190, 0, 4480, 4482, 3, 828, 414, 0, 4481, 4480, 1, 0, 0, 0, 4481, 4482, 1, 0, 0, 0, 4482, 4488, 1, 0, 0, 0, 4483, 4485, 3, 828, 414, 0, 4484, 4486, 3, 380, 190, 0, 4485, 4484, 1, 0, 0, 0, 4485, 4486, 1, 0, 0, 0, 4486, 4488, 1, 0, 0, 0, 4487, 4479, 1, 0, 0, 0, 4487, 4483, 1, 0, 0, 0, 4487, 4488, 1, 0, 0, 0, 4488, 4489, 1, 0, 0, 0, 4489, 4490, 3, 382, 191, 0, 4490, 379, 1, 0, 0, 0, 4491, 4493, 5, 68, 0, 0, 4492, 4494, 5, 453, 0, 0, 4493, 4492, 1, 0, 0, 0, 4493, 4494, 1, 0, 0, 0, 4494, 4499, 1, 0, 0, 0, 4495, 4499, 5, 453, 0, 0, 4496, 4499, 5, 400, 0, 0, 4497, 4499, 5, 101, 0, 0, 4498, 4491, 1, 0, 0, 0, 4498, 4495, 1, 0, 0, 0, 4498, 4496, 1, 0, 0, 0, 4498, 4497, 1, 0, 0, 0, 4499, 381, 1, 0, 0, 0, 4500, 4510, 3, 648, 324, 0, 4501, 4503, 5, 415, 0, 0, 4502, 4501, 1, 0, 0, 0, 4502, 4503, 1, 0, 0, 0, 4503, 4504, 1, 0, 0, 0, 4504, 4505, 3, 828, 414, 0, 4505, 4506, 3, 312, 156, 0, 4506, 4507, 5, 27, 0, 0, 4507, 4508, 5, 360, 0, 0, 4508, 4510, 1, 0, 0, 0, 4509, 4500, 1, 0, 0, 0, 4509, 4502, 1, 0, 0, 0, 4510, 383, 1, 0, 0, 0, 4511, 4514, 3, 378, 189, 0, 4512, 4513, 7, 58, 0, 0, 4513, 4515, 3, 670, 335, 0, 4514, 4512, 1, 0, 0, 0, 4514, 4515, 1, 0, 0, 0, 4515, 385, 1, 0, 0, 0, 4516, 4526, 5, 2, 0, 0, 4517, 4527, 5, 9, 0, 0, 4518, 4520, 3, 364, 182, 0, 4519, 4518, 1, 0, 0, 0, 4519, 4520, 1, 0, 0, 0, 4520, 4524, 1, 0, 0, 0, 4521, 4522, 5, 83, 0, 0, 4522, 4523, 5, 147, 0, 0, 4523, 4525, 3, 364, 182, 0, 4524, 4521, 1, 0, 0, 0, 4524, 4525, 1, 0, 0, 0, 4525, 4527, 1, 0, 0, 0, 4526, 4517, 1, 0, 0, 0, 4526, 4519, 1, 0, 0, 0, 4527, 4528, 1, 0, 0, 0, 4528, 4529, 5, 3, 0, 0, 4529, 387, 1, 0, 0, 0, 4530, 4531, 3, 814, 407, 0, 4531, 4532, 3, 386, 193, 0, 4532, 389, 1, 0, 0, 0, 4533, 4534, 5, 316, 0, 0, 4534, 4537, 5, 78, 0, 0, 4535, 4537, 5, 149, 0, 0, 4536, 4533, 1, 0, 0, 0, 4536, 4535, 1, 0, 0, 0, 4537, 4538, 1, 0, 0, 0, 4538, 4539, 5, 80, 0, 0, 4539, 4540, 5, 78, 0, 0, 4540, 4563, 5, 458, 0, 0, 4541, 4563, 5, 346, 0, 0, 4542, 4563, 5, 222, 0, 0, 4543, 4563, 5, 338, 0, 0, 4544, 4563, 5, 377, 0, 0, 4545, 4547, 5, 205, 0, 0, 4546, 4545, 1, 0, 0, 0, 4546, 4547, 1, 0, 0, 0, 4547, 4548, 1, 0, 0, 0, 4548, 4549, 5, 327, 0, 0, 4549, 4563, 7, 59, 0, 0, 4550, 4563, 5, 250, 0, 0, 4551, 4552, 5, 77, 0, 0, 4552, 4563, 5, 250, 0, 0, 4553, 4554, 7, 60, 0, 0, 4554, 4563, 3, 196, 98, 0, 4555, 4556, 5, 459, 0, 0, 4556, 4563, 3, 310, 155, 0, 4557, 4558, 5, 333, 0, 0, 4558, 4563, 3, 42, 21, 0, 4559, 4563, 3, 60, 30, 0, 4560, 4561, 5, 460, 0, 0, 4561, 4563, 3, 826, 413, 0, 4562, 4536, 1, 0, 0, 0, 4562, 4541, 1, 0, 0, 0, 4562, 4542, 1, 0, 0, 0, 4562, 4543, 1, 0, 0, 0, 4562, 4544, 1, 0, 0, 0, 4562, 4546, 1, 0, 0, 0, 4562, 4550, 1, 0, 0, 0, 4562, 4551, 1, 0, 0, 0, 4562, 4553, 1, 0, 0, 0, 4562, 4555, 1, 0, 0, 0, 4562, 4557, 1, 0, 0, 0, 4562, 4559, 1, 0, 0, 0, 4562, 4560, 1, 0, 0, 0, 4563, 391, 1, 0, 0, 0, 4564, 4565, 5, 36, 0, 0, 4565, 4566, 3, 816, 408, 0, 4566, 4567, 3, 456, 228, 0, 4567, 4600, 1, 0, 0, 0, 4568, 4569, 5, 247, 0, 0, 4569, 4600, 3, 58, 29, 0, 4570, 4571, 5, 443, 0, 0, 4571, 4572, 5, 62, 0, 0, 4572, 4573, 5, 360, 0, 0, 4573, 4580, 3, 648, 324, 0, 4574, 4575, 5, 6, 0, 0, 4575, 4576, 5, 62, 0, 0, 4576, 4577, 5, 360, 0, 0, 4577, 4579, 3, 648, 324, 0, 4578, 4574, 1, 0, 0, 0, 4579, 4582, 1, 0, 0, 0, 4580, 4578, 1, 0, 0, 0, 4580, 4581, 1, 0, 0, 0, 4581, 4600, 1, 0, 0, 0, 4582, 4580, 1, 0, 0, 0, 4583, 4600, 5, 104, 0, 0, 4584, 4585, 5, 333, 0, 0, 4585, 4592, 3, 826, 413, 0, 4586, 4587, 5, 94, 0, 0, 4587, 4593, 3, 826, 413, 0, 4588, 4589, 5, 10, 0, 0, 4589, 4593, 3, 826, 413, 0, 4590, 4591, 5, 64, 0, 0, 4591, 4593, 5, 434, 0, 0, 4592, 4586, 1, 0, 0, 0, 4592, 4588, 1, 0, 0, 0, 4592, 4590, 1, 0, 0, 0, 4593, 4600, 1, 0, 0, 0, 4594, 4595, 5, 36, 0, 0, 4595, 4600, 3, 826, 413, 0, 4596, 4600, 3, 4, 2, 0, 4597, 4600, 3, 390, 195, 0, 4598, 4600, 3, 826, 413, 0, 4599, 4564, 1, 0, 0, 0, 4599, 4568, 1, 0, 0, 0, 4599, 4570, 1, 0, 0, 0, 4599, 4583, 1, 0, 0, 0, 4599, 4584, 1, 0, 0, 0, 4599, 4594, 1, 0, 0, 0, 4599, 4596, 1, 0, 0, 0, 4599, 4597, 1, 0, 0, 0, 4599, 4598, 1, 0, 0, 0, 4600, 393, 1, 0, 0, 0, 4601, 4602, 5, 105, 0, 0, 4602, 4603, 3, 278, 139, 0, 4603, 395, 1, 0, 0, 0, 4604, 4605, 3, 806, 403, 0, 4605, 4606, 3, 382, 191, 0, 4606, 397, 1, 0, 0, 0, 4607, 4614, 5, 138, 0, 0, 4608, 4609, 5, 211, 0, 0, 4609, 4615, 3, 376, 188, 0, 4610, 4611, 5, 296, 0, 0, 4611, 4615, 3, 372, 186, 0, 4612, 4613, 5, 442, 0, 0, 4613, 4615, 3, 368, 184, 0, 4614, 4608, 1, 0, 0, 0, 4614, 4610, 1, 0, 0, 0, 4614, 4612, 1, 0, 0, 0, 4615, 4617, 1, 0, 0, 0, 4616, 4618, 3, 390, 195, 0, 4617, 4616, 1, 0, 0, 0, 4618, 4619, 1, 0, 0, 0, 4619, 4617, 1, 0, 0, 0, 4619, 4620, 1, 0, 0, 0, 4620, 4622, 1, 0, 0, 0, 4621, 4623, 5, 315, 0, 0, 4622, 4621, 1, 0, 0, 0, 4622, 4623, 1, 0, 0, 0, 4623, 399, 1, 0, 0, 0, 4624, 4640, 5, 191, 0, 0, 4625, 4627, 5, 211, 0, 0, 4626, 4628, 3, 416, 208, 0, 4627, 4626, 1, 0, 0, 0, 4627, 4628, 1, 0, 0, 0, 4628, 4629, 1, 0, 0, 0, 4629, 4641, 3, 374, 187, 0, 4630, 4632, 5, 296, 0, 0, 4631, 4633, 3, 416, 208, 0, 4632, 4631, 1, 0, 0, 0, 4632, 4633, 1, 0, 0, 0, 4633, 4634, 1, 0, 0, 0, 4634, 4641, 3, 370, 185, 0, 4635, 4637, 5, 442, 0, 0, 4636, 4638, 3, 416, 208, 0, 4637, 4636, 1, 0, 0, 0, 4637, 4638, 1, 0, 0, 0, 4638, 4639, 1, 0, 0, 0, 4639, 4641, 3, 366, 183, 0, 4640, 4625, 1, 0, 0, 0, 4640, 4630, 1, 0, 0, 0, 4640, 4635, 1, 0, 0, 0, 4641, 4643, 1, 0, 0, 0, 4642, 4644, 3, 88, 44, 0, 4643, 4642, 1, 0, 0, 0, 4643, 4644, 1, 0, 0, 0, 4644, 401, 1, 0, 0, 0, 4645, 4646, 5, 191, 0, 0, 4646, 4648, 5, 136, 0, 0, 4647, 4649, 3, 416, 208, 0, 4648, 4647, 1, 0, 0, 0, 4648, 4649, 1, 0, 0, 0, 4649, 4650, 1, 0, 0, 0, 4650, 4655, 3, 388, 194, 0, 4651, 4652, 5, 6, 0, 0, 4652, 4654, 3, 388, 194, 0, 4653, 4651, 1, 0, 0, 0, 4654, 4657, 1, 0, 0, 0, 4655, 4653, 1, 0, 0, 0, 4655, 4656, 1, 0, 0, 0, 4656, 4659, 1, 0, 0, 0, 4657, 4655, 1, 0, 0, 0, 4658, 4660, 3, 88, 44, 0, 4659, 4658, 1, 0, 0, 0, 4659, 4660, 1, 0, 0, 0, 4660, 403, 1, 0, 0, 0, 4661, 4662, 5, 191, 0, 0, 4662, 4664, 5, 278, 0, 0, 4663, 4665, 3, 416, 208, 0, 4664, 4663, 1, 0, 0, 0, 4664, 4665, 1, 0, 0, 0, 4665, 4666, 1, 0, 0, 0, 4666, 4671, 3, 410, 205, 0, 4667, 4668, 5, 6, 0, 0, 4668, 4670, 3, 410, 205, 0, 4669, 4667, 1, 0, 0, 0, 4670, 4673, 1, 0, 0, 0, 4671, 4669, 1, 0, 0, 0, 4671, 4672, 1, 0, 0, 0, 4672, 4675, 1, 0, 0, 0, 4673, 4671, 1, 0, 0, 0, 4674, 4676, 3, 88, 44, 0, 4675, 4674, 1, 0, 0, 0, 4675, 4676, 1, 0, 0, 0, 4676, 405, 1, 0, 0, 0, 4677, 4690, 5, 2, 0, 0, 4678, 4681, 3, 648, 324, 0, 4679, 4680, 5, 6, 0, 0, 4680, 4682, 3, 648, 324, 0, 4681, 4679, 1, 0, 0, 0, 4681, 4682, 1, 0, 0, 0, 4682, 4691, 1, 0, 0, 0, 4683, 4684, 5, 407, 0, 0, 4684, 4685, 5, 6, 0, 0, 4685, 4691, 3, 648, 324, 0, 4686, 4687, 3, 648, 324, 0, 4687, 4688, 5, 6, 0, 0, 4688, 4689, 5, 407, 0, 0, 4689, 4691, 1, 0, 0, 0, 4690, 4678, 1, 0, 0, 0, 4690, 4683, 1, 0, 0, 0, 4690, 4686, 1, 0, 0, 0, 4691, 4692, 1, 0, 0, 0, 4692, 4693, 5, 3, 0, 0, 4693, 407, 1, 0, 0, 0, 4694, 4695, 3, 826, 413, 0, 4695, 4696, 5, 11, 0, 0, 4696, 4698, 1, 0, 0, 0, 4697, 4694, 1, 0, 0, 0, 4698, 4701, 1, 0, 0, 0, 4699, 4697, 1, 0, 0, 0, 4699, 4700, 1, 0, 0, 0, 4700, 4702, 1, 0, 0, 0, 4701, 4699, 1, 0, 0, 0, 4702, 4703, 3, 718, 359, 0, 4703, 409, 1, 0, 0, 0, 4704, 4705, 3, 408, 204, 0, 4705, 4706, 3, 406, 203, 0, 4706, 411, 1, 0, 0, 0, 4707, 4711, 5, 57, 0, 0, 4708, 4712, 3, 816, 408, 0, 4709, 4710, 5, 247, 0, 0, 4710, 4712, 3, 58, 29, 0, 4711, 4708, 1, 0, 0, 0, 4711, 4709, 1, 0, 0, 0, 4712, 4713, 1, 0, 0, 0, 4713, 4711, 1, 0, 0, 0, 4713, 4714, 1, 0, 0, 0, 4714, 413, 1, 0, 0, 0, 4715, 4716, 5, 46, 0, 0, 4716, 4717, 5, 41, 0, 0, 4717, 4718, 5, 2, 0, 0, 4718, 4719, 3, 648, 324, 0, 4719, 4720, 5, 36, 0, 0, 4720, 4721, 3, 648, 324, 0, 4721, 4738, 5, 3, 0, 0, 4722, 4723, 5, 379, 0, 0, 4723, 4726, 5, 211, 0, 0, 4724, 4725, 5, 36, 0, 0, 4725, 4727, 7, 61, 0, 0, 4726, 4724, 1, 0, 0, 0, 4726, 4727, 1, 0, 0, 0, 4727, 4739, 1, 0, 0, 0, 4728, 4732, 5, 105, 0, 0, 4729, 4730, 5, 211, 0, 0, 4730, 4733, 3, 376, 188, 0, 4731, 4733, 5, 400, 0, 0, 4732, 4729, 1, 0, 0, 0, 4732, 4731, 1, 0, 0, 0, 4733, 4736, 1, 0, 0, 0, 4734, 4735, 5, 36, 0, 0, 4735, 4737, 7, 61, 0, 0, 4736, 4734, 1, 0, 0, 0, 4736, 4737, 1, 0, 0, 0, 4737, 4739, 1, 0, 0, 0, 4738, 4722, 1, 0, 0, 0, 4738, 4728, 1, 0, 0, 0, 4739, 415, 1, 0, 0, 0, 4740, 4741, 5, 220, 0, 0, 4741, 4742, 5, 396, 0, 0, 4742, 417, 1, 0, 0, 0, 4743, 4745, 5, 46, 0, 0, 4744, 4746, 3, 360, 180, 0, 4745, 4744, 1, 0, 0, 0, 4745, 4746, 1, 0, 0, 0, 4746, 4747, 1, 0, 0, 0, 4747, 4748, 5, 443, 0, 0, 4748, 4749, 5, 62, 0, 0, 4749, 4750, 3, 648, 324, 0, 4750, 4751, 5, 247, 0, 0, 4751, 4752, 3, 826, 413, 0, 4752, 4767, 5, 2, 0, 0, 4753, 4754, 5, 64, 0, 0, 4754, 4758, 3, 420, 210, 0, 4755, 4756, 5, 6, 0, 0, 4756, 4757, 5, 94, 0, 0, 4757, 4759, 3, 420, 210, 0, 4758, 4755, 1, 0, 0, 0, 4758, 4759, 1, 0, 0, 0, 4759, 4768, 1, 0, 0, 0, 4760, 4761, 5, 94, 0, 0, 4761, 4765, 3, 420, 210, 0, 4762, 4763, 5, 6, 0, 0, 4763, 4764, 5, 64, 0, 0, 4764, 4766, 3, 420, 210, 0, 4765, 4762, 1, 0, 0, 0, 4765, 4766, 1, 0, 0, 0, 4766, 4768, 1, 0, 0, 0, 4767, 4753, 1, 0, 0, 0, 4767, 4760, 1, 0, 0, 0, 4768, 4769, 1, 0, 0, 0, 4769, 4770, 5, 3, 0, 0, 4770, 419, 1, 0, 0, 0, 4771, 4772, 5, 461, 0, 0, 4772, 4773, 5, 105, 0, 0, 4773, 4774, 5, 211, 0, 0, 4774, 4775, 3, 376, 188, 0, 4775, 421, 1, 0, 0, 0, 4776, 4787, 5, 306, 0, 0, 4777, 4778, 5, 2, 0, 0, 4778, 4783, 5, 128, 0, 0, 4779, 4780, 5, 6, 0, 0, 4780, 4782, 5, 128, 0, 0, 4781, 4779, 1, 0, 0, 0, 4782, 4785, 1, 0, 0, 0, 4783, 4781, 1, 0, 0, 0, 4783, 4784, 1, 0, 0, 0, 4784, 4786, 1, 0, 0, 0, 4785, 4783, 1, 0, 0, 0, 4786, 4788, 5, 3, 0, 0, 4787, 4777, 1, 0, 0, 0, 4787, 4788, 1, 0, 0, 0, 4788, 4814, 1, 0, 0, 0, 4789, 4791, 5, 226, 0, 0, 4790, 4792, 5, 109, 0, 0, 4791, 4790, 1, 0, 0, 0, 4791, 4792, 1, 0, 0, 0, 4792, 4793, 1, 0, 0, 0, 4793, 4815, 3, 784, 392, 0, 4794, 4796, 5, 92, 0, 0, 4795, 4797, 5, 109, 0, 0, 4796, 4795, 1, 0, 0, 0, 4796, 4797, 1, 0, 0, 0, 4797, 4798, 1, 0, 0, 0, 4798, 4815, 3, 778, 389, 0, 4799, 4801, 5, 323, 0, 0, 4800, 4802, 5, 109, 0, 0, 4801, 4800, 1, 0, 0, 0, 4801, 4802, 1, 0, 0, 0, 4802, 4803, 1, 0, 0, 0, 4803, 4815, 3, 794, 397, 0, 4804, 4806, 5, 349, 0, 0, 4805, 4807, 5, 109, 0, 0, 4806, 4805, 1, 0, 0, 0, 4806, 4807, 1, 0, 0, 0, 4807, 4808, 1, 0, 0, 0, 4808, 4815, 3, 826, 413, 0, 4809, 4811, 5, 175, 0, 0, 4810, 4812, 5, 109, 0, 0, 4811, 4810, 1, 0, 0, 0, 4811, 4812, 1, 0, 0, 0, 4812, 4813, 1, 0, 0, 0, 4813, 4815, 3, 792, 396, 0, 4814, 4789, 1, 0, 0, 0, 4814, 4794, 1, 0, 0, 0, 4814, 4799, 1, 0, 0, 0, 4814, 4804, 1, 0, 0, 0, 4814, 4809, 1, 0, 0, 0, 4815, 423, 1, 0, 0, 0, 4816, 4817, 5, 138, 0, 0, 4817, 4818, 3, 170, 85, 0, 4818, 4819, 7, 16, 0, 0, 4819, 4820, 3, 92, 46, 0, 4820, 425, 1, 0, 0, 0, 4821, 4826, 5, 138, 0, 0, 4822, 4823, 5, 136, 0, 0, 4823, 4827, 3, 388, 194, 0, 4824, 4825, 5, 442, 0, 0, 4825, 4827, 3, 368, 184, 0, 4826, 4822, 1, 0, 0, 0, 4826, 4824, 1, 0, 0, 0, 4827, 4828, 1, 0, 0, 0, 4828, 4829, 5, 309, 0, 0, 4829, 4830, 5, 94, 0, 0, 4830, 4831, 3, 826, 413, 0, 4831, 5029, 1, 0, 0, 0, 4832, 4833, 5, 138, 0, 0, 4833, 4834, 5, 175, 0, 0, 4834, 4835, 3, 792, 396, 0, 4835, 4836, 5, 309, 0, 0, 4836, 4837, 5, 94, 0, 0, 4837, 4838, 3, 790, 395, 0, 4838, 5029, 1, 0, 0, 0, 4839, 4840, 5, 138, 0, 0, 4840, 4841, 7, 62, 0, 0, 4841, 4842, 3, 310, 155, 0, 4842, 4843, 5, 309, 0, 0, 4843, 4844, 5, 94, 0, 0, 4844, 4845, 3, 826, 413, 0, 4845, 5029, 1, 0, 0, 0, 4846, 4847, 5, 138, 0, 0, 4847, 4848, 5, 211, 0, 0, 4848, 4849, 3, 376, 188, 0, 4849, 4850, 5, 309, 0, 0, 4850, 4851, 5, 94, 0, 0, 4851, 4852, 3, 812, 406, 0, 4852, 5029, 1, 0, 0, 0, 4853, 4854, 5, 138, 0, 0, 4854, 4855, 5, 278, 0, 0, 4855, 4856, 7, 32, 0, 0, 4856, 4857, 3, 310, 155, 0, 4857, 4858, 3, 164, 82, 0, 4858, 4859, 5, 309, 0, 0, 4859, 4860, 5, 94, 0, 0, 4860, 4861, 3, 826, 413, 0, 4861, 5029, 1, 0, 0, 0, 4862, 4863, 5, 138, 0, 0, 4863, 4864, 5, 296, 0, 0, 4864, 4865, 3, 372, 186, 0, 4865, 4866, 5, 309, 0, 0, 4866, 4867, 5, 94, 0, 0, 4867, 4868, 3, 802, 401, 0, 4868, 5029, 1, 0, 0, 0, 4869, 4870, 5, 138, 0, 0, 4870, 4871, 5, 323, 0, 0, 4871, 4872, 3, 794, 397, 0, 4872, 4873, 5, 309, 0, 0, 4873, 4874, 5, 94, 0, 0, 4874, 4875, 3, 32, 16, 0, 4875, 5029, 1, 0, 0, 0, 4876, 4877, 5, 138, 0, 0, 4877, 4879, 7, 63, 0, 0, 4878, 4880, 3, 416, 208, 0, 4879, 4878, 1, 0, 0, 0, 4879, 4880, 1, 0, 0, 0, 4880, 4881, 1, 0, 0, 0, 4881, 4882, 3, 784, 392, 0, 4882, 4883, 5, 309, 0, 0, 4883, 4884, 5, 94, 0, 0, 4884, 4885, 3, 826, 413, 0, 4885, 5029, 1, 0, 0, 0, 4886, 4888, 5, 138, 0, 0, 4887, 4889, 5, 259, 0, 0, 4888, 4887, 1, 0, 0, 0, 4888, 4889, 1, 0, 0, 0, 4889, 4890, 1, 0, 0, 0, 4890, 4892, 5, 376, 0, 0, 4891, 4893, 3, 416, 208, 0, 4892, 4891, 1, 0, 0, 0, 4892, 4893, 1, 0, 0, 0, 4893, 4894, 1, 0, 0, 0, 4894, 4895, 3, 782, 391, 0, 4895, 4896, 5, 309, 0, 0, 4896, 4897, 5, 94, 0, 0, 4897, 4898, 3, 780, 390, 0, 4898, 5029, 1, 0, 0, 0, 4899, 4901, 5, 138, 0, 0, 4900, 4902, 5, 63, 0, 0, 4901, 4900, 1, 0, 0, 0, 4901, 4902, 1, 0, 0, 0, 4902, 4903, 1, 0, 0, 0, 4903, 4905, 5, 92, 0, 0, 4904, 4906, 3, 416, 208, 0, 4905, 4904, 1, 0, 0, 0, 4905, 4906, 1, 0, 0, 0, 4906, 4907, 1, 0, 0, 0, 4907, 4908, 3, 620, 310, 0, 4908, 4909, 5, 309, 0, 0, 4909, 4910, 5, 94, 0, 0, 4910, 4911, 3, 776, 388, 0, 4911, 5029, 1, 0, 0, 0, 4912, 4937, 5, 138, 0, 0, 4913, 4915, 5, 63, 0, 0, 4914, 4913, 1, 0, 0, 0, 4914, 4915, 1, 0, 0, 0, 4915, 4916, 1, 0, 0, 0, 4916, 4918, 5, 92, 0, 0, 4917, 4919, 3, 416, 208, 0, 4918, 4917, 1, 0, 0, 0, 4918, 4919, 1, 0, 0, 0, 4919, 4920, 1, 0, 0, 0, 4920, 4921, 3, 620, 310, 0, 4921, 4923, 5, 309, 0, 0, 4922, 4924, 5, 44, 0, 0, 4923, 4922, 1, 0, 0, 0, 4923, 4924, 1, 0, 0, 0, 4924, 4938, 1, 0, 0, 0, 4925, 4927, 5, 259, 0, 0, 4926, 4925, 1, 0, 0, 0, 4926, 4927, 1, 0, 0, 0, 4927, 4928, 1, 0, 0, 0, 4928, 4930, 5, 376, 0, 0, 4929, 4931, 3, 416, 208, 0, 4930, 4929, 1, 0, 0, 0, 4930, 4931, 1, 0, 0, 0, 4931, 4932, 1, 0, 0, 0, 4932, 4933, 3, 782, 391, 0, 4933, 4935, 5, 309, 0, 0, 4934, 4936, 5, 44, 0, 0, 4935, 4934, 1, 0, 0, 0, 4935, 4936, 1, 0, 0, 0, 4936, 4938, 1, 0, 0, 0, 4937, 4914, 1, 0, 0, 0, 4937, 4926, 1, 0, 0, 0, 4938, 4939, 1, 0, 0, 0, 4939, 4940, 3, 806, 403, 0, 4940, 4941, 5, 94, 0, 0, 4941, 4942, 3, 810, 405, 0, 4942, 5029, 1, 0, 0, 0, 4943, 4951, 5, 138, 0, 0, 4944, 4946, 5, 92, 0, 0, 4945, 4947, 3, 416, 208, 0, 4946, 4945, 1, 0, 0, 0, 4946, 4947, 1, 0, 0, 0, 4947, 4948, 1, 0, 0, 0, 4948, 4952, 3, 620, 310, 0, 4949, 4950, 5, 189, 0, 0, 4950, 4952, 3, 310, 155, 0, 4951, 4944, 1, 0, 0, 0, 4951, 4949, 1, 0, 0, 0, 4952, 4953, 1, 0, 0, 0, 4953, 4954, 5, 309, 0, 0, 4954, 4955, 5, 45, 0, 0, 4955, 4956, 3, 826, 413, 0, 4956, 4957, 5, 94, 0, 0, 4957, 4958, 3, 826, 413, 0, 4958, 5029, 1, 0, 0, 0, 4959, 4966, 5, 138, 0, 0, 4960, 4962, 5, 445, 0, 0, 4961, 4963, 3, 416, 208, 0, 4962, 4961, 1, 0, 0, 0, 4962, 4963, 1, 0, 0, 0, 4963, 4967, 1, 0, 0, 0, 4964, 4967, 5, 321, 0, 0, 4965, 4967, 5, 357, 0, 0, 4966, 4960, 1, 0, 0, 0, 4966, 4964, 1, 0, 0, 0, 4966, 4965, 1, 0, 0, 0, 4967, 4968, 1, 0, 0, 0, 4968, 4969, 3, 826, 413, 0, 4969, 4970, 5, 80, 0, 0, 4970, 4971, 3, 784, 392, 0, 4971, 4972, 5, 309, 0, 0, 4972, 4973, 5, 94, 0, 0, 4973, 4974, 3, 826, 413, 0, 4974, 5029, 1, 0, 0, 0, 4975, 4988, 5, 138, 0, 0, 4976, 4977, 5, 63, 0, 0, 4977, 4978, 5, 174, 0, 0, 4978, 4989, 5, 381, 0, 0, 4979, 4981, 5, 295, 0, 0, 4980, 4979, 1, 0, 0, 0, 4980, 4981, 1, 0, 0, 0, 4981, 4982, 1, 0, 0, 0, 4982, 4989, 5, 247, 0, 0, 4983, 4989, 5, 452, 0, 0, 4984, 4989, 5, 331, 0, 0, 4985, 4989, 5, 451, 0, 0, 4986, 4987, 5, 198, 0, 0, 4987, 4989, 5, 357, 0, 0, 4988, 4976, 1, 0, 0, 0, 4988, 4980, 1, 0, 0, 0, 4988, 4983, 1, 0, 0, 0, 4988, 4984, 1, 0, 0, 0, 4988, 4985, 1, 0, 0, 0, 4988, 4986, 1, 0, 0, 0, 4989, 4990, 1, 0, 0, 0, 4990, 4991, 3, 826, 413, 0, 4991, 4992, 5, 309, 0, 0, 4992, 4993, 5, 94, 0, 0, 4993, 4994, 3, 826, 413, 0, 4994, 5029, 1, 0, 0, 0, 4995, 4996, 5, 138, 0, 0, 4996, 4997, 7, 46, 0, 0, 4997, 4998, 3, 822, 411, 0, 4998, 4999, 5, 309, 0, 0, 4999, 5000, 5, 94, 0, 0, 5000, 5001, 3, 822, 411, 0, 5001, 5029, 1, 0, 0, 0, 5002, 5003, 5, 138, 0, 0, 5003, 5004, 3, 170, 85, 0, 5004, 5005, 5, 309, 0, 0, 5005, 5006, 5, 94, 0, 0, 5006, 5007, 3, 774, 387, 0, 5007, 5029, 1, 0, 0, 0, 5008, 5009, 5, 138, 0, 0, 5009, 5010, 5, 355, 0, 0, 5010, 5011, 5, 325, 0, 0, 5011, 5012, 7, 42, 0, 0, 5012, 5013, 3, 310, 155, 0, 5013, 5014, 5, 309, 0, 0, 5014, 5015, 5, 94, 0, 0, 5015, 5016, 3, 826, 413, 0, 5016, 5029, 1, 0, 0, 0, 5017, 5018, 5, 138, 0, 0, 5018, 5019, 5, 360, 0, 0, 5019, 5020, 3, 310, 155, 0, 5020, 5021, 5, 309, 0, 0, 5021, 5022, 5, 143, 0, 0, 5022, 5023, 3, 826, 413, 0, 5023, 5024, 5, 94, 0, 0, 5024, 5026, 3, 826, 413, 0, 5025, 5027, 3, 88, 44, 0, 5026, 5025, 1, 0, 0, 0, 5026, 5027, 1, 0, 0, 0, 5027, 5029, 1, 0, 0, 0, 5028, 4821, 1, 0, 0, 0, 5028, 4832, 1, 0, 0, 0, 5028, 4839, 1, 0, 0, 0, 5028, 4846, 1, 0, 0, 0, 5028, 4853, 1, 0, 0, 0, 5028, 4862, 1, 0, 0, 0, 5028, 4869, 1, 0, 0, 0, 5028, 4876, 1, 0, 0, 0, 5028, 4886, 1, 0, 0, 0, 5028, 4899, 1, 0, 0, 0, 5028, 4912, 1, 0, 0, 0, 5028, 4943, 1, 0, 0, 0, 5028, 4959, 1, 0, 0, 0, 5028, 4975, 1, 0, 0, 0, 5028, 4995, 1, 0, 0, 0, 5028, 5002, 1, 0, 0, 0, 5028, 5008, 1, 0, 0, 0, 5028, 5017, 1, 0, 0, 0, 5029, 427, 1, 0, 0, 0, 5030, 5047, 5, 138, 0, 0, 5031, 5032, 5, 211, 0, 0, 5032, 5048, 3, 376, 188, 0, 5033, 5034, 5, 296, 0, 0, 5034, 5048, 3, 372, 186, 0, 5035, 5036, 5, 442, 0, 0, 5036, 5048, 3, 368, 184, 0, 5037, 5038, 5, 357, 0, 0, 5038, 5039, 3, 826, 413, 0, 5039, 5040, 5, 80, 0, 0, 5040, 5041, 3, 784, 392, 0, 5041, 5048, 1, 0, 0, 0, 5042, 5043, 5, 259, 0, 0, 5043, 5044, 5, 376, 0, 0, 5044, 5048, 3, 782, 391, 0, 5045, 5046, 5, 226, 0, 0, 5046, 5048, 3, 784, 392, 0, 5047, 5031, 1, 0, 0, 0, 5047, 5033, 1, 0, 0, 0, 5047, 5035, 1, 0, 0, 0, 5047, 5037, 1, 0, 0, 0, 5047, 5042, 1, 0, 0, 0, 5047, 5045, 1, 0, 0, 0, 5048, 5050, 1, 0, 0, 0, 5049, 5051, 5, 269, 0, 0, 5050, 5049, 1, 0, 0, 0, 5050, 5051, 1, 0, 0, 0, 5051, 5052, 1, 0, 0, 0, 5052, 5053, 5, 462, 0, 0, 5053, 5054, 5, 80, 0, 0, 5054, 5055, 5, 204, 0, 0, 5055, 5056, 3, 826, 413, 0, 5056, 429, 1, 0, 0, 0, 5057, 5096, 5, 138, 0, 0, 5058, 5059, 5, 136, 0, 0, 5059, 5097, 3, 388, 194, 0, 5060, 5061, 5, 204, 0, 0, 5061, 5097, 3, 826, 413, 0, 5062, 5063, 5, 211, 0, 0, 5063, 5097, 3, 376, 188, 0, 5064, 5065, 5, 278, 0, 0, 5065, 5097, 3, 410, 205, 0, 5066, 5067, 5, 278, 0, 0, 5067, 5068, 7, 32, 0, 0, 5068, 5069, 3, 310, 155, 0, 5069, 5070, 3, 164, 82, 0, 5070, 5097, 1, 0, 0, 0, 5071, 5072, 5, 296, 0, 0, 5072, 5097, 3, 372, 186, 0, 5073, 5074, 5, 442, 0, 0, 5074, 5097, 3, 368, 184, 0, 5075, 5077, 5, 328, 0, 0, 5076, 5078, 3, 416, 208, 0, 5077, 5076, 1, 0, 0, 0, 5077, 5078, 1, 0, 0, 0, 5078, 5079, 1, 0, 0, 0, 5079, 5097, 3, 784, 392, 0, 5080, 5082, 5, 259, 0, 0, 5081, 5080, 1, 0, 0, 0, 5081, 5082, 1, 0, 0, 0, 5082, 5083, 1, 0, 0, 0, 5083, 5085, 5, 376, 0, 0, 5084, 5086, 3, 416, 208, 0, 5085, 5084, 1, 0, 0, 0, 5085, 5086, 1, 0, 0, 0, 5086, 5087, 1, 0, 0, 0, 5087, 5097, 3, 782, 391, 0, 5088, 5090, 5, 63, 0, 0, 5089, 5088, 1, 0, 0, 0, 5089, 5090, 1, 0, 0, 0, 5090, 5091, 1, 0, 0, 0, 5091, 5093, 5, 92, 0, 0, 5092, 5094, 3, 416, 208, 0, 5093, 5092, 1, 0, 0, 0, 5093, 5094, 1, 0, 0, 0, 5094, 5095, 1, 0, 0, 0, 5095, 5097, 3, 620, 310, 0, 5096, 5058, 1, 0, 0, 0, 5096, 5060, 1, 0, 0, 0, 5096, 5062, 1, 0, 0, 0, 5096, 5064, 1, 0, 0, 0, 5096, 5066, 1, 0, 0, 0, 5096, 5071, 1, 0, 0, 0, 5096, 5073, 1, 0, 0, 0, 5096, 5075, 1, 0, 0, 0, 5096, 5081, 1, 0, 0, 0, 5096, 5089, 1, 0, 0, 0, 5097, 5098, 1, 0, 0, 0, 5098, 5099, 5, 333, 0, 0, 5099, 5100, 5, 323, 0, 0, 5100, 5101, 3, 794, 397, 0, 5101, 5119, 1, 0, 0, 0, 5102, 5111, 5, 138, 0, 0, 5103, 5104, 5, 355, 0, 0, 5104, 5105, 5, 325, 0, 0, 5105, 5112, 7, 42, 0, 0, 5106, 5112, 5, 108, 0, 0, 5107, 5112, 5, 168, 0, 0, 5108, 5112, 5, 189, 0, 0, 5109, 5112, 5, 342, 0, 0, 5110, 5112, 5, 360, 0, 0, 5111, 5103, 1, 0, 0, 0, 5111, 5106, 1, 0, 0, 0, 5111, 5107, 1, 0, 0, 0, 5111, 5108, 1, 0, 0, 0, 5111, 5109, 1, 0, 0, 0, 5111, 5110, 1, 0, 0, 0, 5112, 5113, 1, 0, 0, 0, 5113, 5114, 3, 310, 155, 0, 5114, 5115, 5, 333, 0, 0, 5115, 5116, 5, 323, 0, 0, 5116, 5117, 3, 794, 397, 0, 5117, 5119, 1, 0, 0, 0, 5118, 5057, 1, 0, 0, 0, 5118, 5102, 1, 0, 0, 0, 5119, 431, 1, 0, 0, 0, 5120, 5121, 5, 138, 0, 0, 5121, 5122, 5, 278, 0, 0, 5122, 5123, 3, 410, 205, 0, 5123, 5124, 5, 333, 0, 0, 5124, 5125, 3, 434, 217, 0, 5125, 433, 1, 0, 0, 0, 5126, 5127, 5, 2, 0, 0, 5127, 5132, 3, 436, 218, 0, 5128, 5129, 5, 6, 0, 0, 5129, 5131, 3, 436, 218, 0, 5130, 5128, 1, 0, 0, 0, 5131, 5134, 1, 0, 0, 0, 5132, 5130, 1, 0, 0, 0, 5132, 5133, 1, 0, 0, 0, 5133, 5135, 1, 0, 0, 0, 5134, 5132, 1, 0, 0, 0, 5135, 5136, 5, 3, 0, 0, 5136, 435, 1, 0, 0, 0, 5137, 5138, 3, 832, 416, 0, 5138, 5145, 5, 10, 0, 0, 5139, 5146, 5, 407, 0, 0, 5140, 5146, 3, 382, 191, 0, 5141, 5146, 3, 844, 422, 0, 5142, 5146, 3, 724, 362, 0, 5143, 5146, 3, 196, 98, 0, 5144, 5146, 3, 816, 408, 0, 5145, 5139, 1, 0, 0, 0, 5145, 5140, 1, 0, 0, 0, 5145, 5141, 1, 0, 0, 0, 5145, 5142, 1, 0, 0, 0, 5145, 5143, 1, 0, 0, 0, 5145, 5144, 1, 0, 0, 0, 5146, 437, 1, 0, 0, 0, 5147, 5148, 5, 138, 0, 0, 5148, 5149, 5, 360, 0, 0, 5149, 5150, 3, 310, 155, 0, 5150, 5151, 5, 333, 0, 0, 5151, 5152, 3, 434, 217, 0, 5152, 439, 1, 0, 0, 0, 5153, 5154, 5, 138, 0, 0, 5154, 5155, 5, 278, 0, 0, 5155, 5156, 7, 32, 0, 0, 5156, 5157, 3, 310, 155, 0, 5157, 5158, 3, 164, 82, 0, 5158, 5159, 5, 282, 0, 0, 5159, 5160, 5, 94, 0, 0, 5160, 5161, 3, 822, 411, 0, 5161, 5228, 1, 0, 0, 0, 5162, 5189, 5, 138, 0, 0, 5163, 5164, 5, 136, 0, 0, 5164, 5190, 3, 388, 194, 0, 5165, 5166, 5, 175, 0, 0, 5166, 5190, 3, 792, 396, 0, 5167, 5168, 5, 211, 0, 0, 5168, 5190, 3, 376, 188, 0, 5169, 5171, 5, 295, 0, 0, 5170, 5169, 1, 0, 0, 0, 5170, 5171, 1, 0, 0, 0, 5171, 5172, 1, 0, 0, 0, 5172, 5173, 5, 247, 0, 0, 5173, 5190, 3, 826, 413, 0, 5174, 5175, 5, 248, 0, 0, 5175, 5176, 5, 274, 0, 0, 5176, 5190, 3, 196, 98, 0, 5177, 5178, 5, 248, 0, 0, 5178, 5179, 5, 274, 0, 0, 5179, 5190, 3, 196, 98, 0, 5180, 5181, 5, 278, 0, 0, 5181, 5190, 3, 410, 205, 0, 5182, 5183, 5, 296, 0, 0, 5183, 5190, 3, 372, 186, 0, 5184, 5185, 5, 442, 0, 0, 5185, 5190, 3, 368, 184, 0, 5186, 5187, 5, 323, 0, 0, 5187, 5190, 3, 794, 397, 0, 5188, 5190, 3, 170, 85, 0, 5189, 5163, 1, 0, 0, 0, 5189, 5165, 1, 0, 0, 0, 5189, 5167, 1, 0, 0, 0, 5189, 5170, 1, 0, 0, 0, 5189, 5174, 1, 0, 0, 0, 5189, 5177, 1, 0, 0, 0, 5189, 5180, 1, 0, 0, 0, 5189, 5182, 1, 0, 0, 0, 5189, 5184, 1, 0, 0, 0, 5189, 5186, 1, 0, 0, 0, 5189, 5188, 1, 0, 0, 0, 5190, 5191, 1, 0, 0, 0, 5191, 5192, 5, 282, 0, 0, 5192, 5193, 5, 94, 0, 0, 5193, 5194, 3, 822, 411, 0, 5194, 5228, 1, 0, 0, 0, 5195, 5204, 5, 138, 0, 0, 5196, 5197, 5, 355, 0, 0, 5197, 5198, 5, 325, 0, 0, 5198, 5205, 7, 64, 0, 0, 5199, 5205, 5, 108, 0, 0, 5200, 5205, 5, 168, 0, 0, 5201, 5205, 5, 189, 0, 0, 5202, 5205, 5, 360, 0, 0, 5203, 5205, 5, 342, 0, 0, 5204, 5196, 1, 0, 0, 0, 5204, 5199, 1, 0, 0, 0, 5204, 5200, 1, 0, 0, 0, 5204, 5201, 1, 0, 0, 0, 5204, 5202, 1, 0, 0, 0, 5204, 5203, 1, 0, 0, 0, 5205, 5206, 1, 0, 0, 0, 5206, 5207, 3, 310, 155, 0, 5207, 5208, 5, 282, 0, 0, 5208, 5209, 5, 94, 0, 0, 5209, 5210, 3, 822, 411, 0, 5210, 5228, 1, 0, 0, 0, 5211, 5220, 5, 138, 0, 0, 5212, 5221, 5, 331, 0, 0, 5213, 5214, 5, 63, 0, 0, 5214, 5215, 5, 174, 0, 0, 5215, 5221, 5, 381, 0, 0, 5216, 5217, 5, 198, 0, 0, 5217, 5221, 5, 357, 0, 0, 5218, 5221, 5, 452, 0, 0, 5219, 5221, 5, 451, 0, 0, 5220, 5212, 1, 0, 0, 0, 5220, 5213, 1, 0, 0, 0, 5220, 5216, 1, 0, 0, 0, 5220, 5218, 1, 0, 0, 0, 5220, 5219, 1, 0, 0, 0, 5221, 5222, 1, 0, 0, 0, 5222, 5223, 3, 826, 413, 0, 5223, 5224, 5, 282, 0, 0, 5224, 5225, 5, 94, 0, 0, 5225, 5226, 3, 822, 411, 0, 5226, 5228, 1, 0, 0, 0, 5227, 5153, 1, 0, 0, 0, 5227, 5162, 1, 0, 0, 0, 5227, 5195, 1, 0, 0, 0, 5227, 5211, 1, 0, 0, 0, 5228, 441, 1, 0, 0, 0, 5229, 5230, 5, 46, 0, 0, 5230, 5231, 5, 452, 0, 0, 5231, 5238, 3, 826, 413, 0, 5232, 5233, 5, 62, 0, 0, 5233, 5234, 5, 92, 0, 0, 5234, 5239, 3, 624, 312, 0, 5235, 5236, 5, 62, 0, 0, 5236, 5237, 5, 30, 0, 0, 5237, 5239, 5, 350, 0, 0, 5238, 5232, 1, 0, 0, 0, 5238, 5235, 1, 0, 0, 0, 5238, 5239, 1, 0, 0, 0, 5239, 5241, 1, 0, 0, 0, 5240, 5242, 3, 394, 197, 0, 5241, 5240, 1, 0, 0, 0, 5241, 5242, 1, 0, 0, 0, 5242, 443, 1, 0, 0, 0, 5243, 5244, 5, 138, 0, 0, 5244, 5245, 5, 452, 0, 0, 5245, 5263, 3, 826, 413, 0, 5246, 5247, 5, 282, 0, 0, 5247, 5248, 5, 94, 0, 0, 5248, 5264, 3, 822, 411, 0, 5249, 5250, 5, 333, 0, 0, 5250, 5264, 3, 278, 139, 0, 5251, 5252, 5, 309, 0, 0, 5252, 5253, 5, 94, 0, 0, 5253, 5264, 3, 826, 413, 0, 5254, 5255, 7, 35, 0, 0, 5255, 5260, 3, 622, 311, 0, 5256, 5257, 5, 6, 0, 0, 5257, 5259, 3, 622, 311, 0, 5258, 5256, 1, 0, 0, 0, 5259, 5262, 1, 0, 0, 0, 5260, 5258, 1, 0, 0, 0, 5260, 5261, 1, 0, 0, 0, 5261, 5264, 1, 0, 0, 0, 5262, 5260, 1, 0, 0, 0, 5263, 5246, 1, 0, 0, 0, 5263, 5249, 1, 0, 0, 0, 5263, 5251, 1, 0, 0, 0, 5263, 5254, 1, 0, 0, 0, 5264, 445, 1, 0, 0, 0, 5265, 5266, 5, 46, 0, 0, 5266, 5267, 5, 451, 0, 0, 5267, 5268, 3, 826, 413, 0, 5268, 5269, 5, 164, 0, 0, 5269, 5270, 3, 816, 408, 0, 5270, 5271, 5, 452, 0, 0, 5271, 5276, 3, 832, 416, 0, 5272, 5273, 5, 6, 0, 0, 5273, 5275, 3, 832, 416, 0, 5274, 5272, 1, 0, 0, 0, 5275, 5278, 1, 0, 0, 0, 5276, 5274, 1, 0, 0, 0, 5276, 5277, 1, 0, 0, 0, 5277, 5280, 1, 0, 0, 0, 5278, 5276, 1, 0, 0, 0, 5279, 5281, 3, 394, 197, 0, 5280, 5279, 1, 0, 0, 0, 5280, 5281, 1, 0, 0, 0, 5281, 447, 1, 0, 0, 0, 5282, 5283, 5, 138, 0, 0, 5283, 5284, 5, 451, 0, 0, 5284, 5285, 3, 826, 413, 0, 5285, 5286, 5, 333, 0, 0, 5286, 5287, 3, 278, 139, 0, 5287, 5339, 1, 0, 0, 0, 5288, 5289, 5, 138, 0, 0, 5289, 5290, 5, 451, 0, 0, 5290, 5291, 3, 826, 413, 0, 5291, 5292, 5, 164, 0, 0, 5292, 5293, 3, 816, 408, 0, 5293, 5339, 1, 0, 0, 0, 5294, 5295, 5, 138, 0, 0, 5295, 5296, 5, 451, 0, 0, 5296, 5297, 3, 826, 413, 0, 5297, 5298, 5, 305, 0, 0, 5298, 5300, 5, 452, 0, 0, 5299, 5301, 3, 394, 197, 0, 5300, 5299, 1, 0, 0, 0, 5300, 5301, 1, 0, 0, 0, 5301, 5339, 1, 0, 0, 0, 5302, 5303, 5, 138, 0, 0, 5303, 5304, 5, 451, 0, 0, 5304, 5305, 3, 826, 413, 0, 5305, 5306, 7, 35, 0, 0, 5306, 5307, 5, 452, 0, 0, 5307, 5312, 3, 832, 416, 0, 5308, 5309, 5, 6, 0, 0, 5309, 5311, 3, 832, 416, 0, 5310, 5308, 1, 0, 0, 0, 5311, 5314, 1, 0, 0, 0, 5312, 5310, 1, 0, 0, 0, 5312, 5313, 1, 0, 0, 0, 5313, 5316, 1, 0, 0, 0, 5314, 5312, 1, 0, 0, 0, 5315, 5317, 3, 394, 197, 0, 5316, 5315, 1, 0, 0, 0, 5316, 5317, 1, 0, 0, 0, 5317, 5339, 1, 0, 0, 0, 5318, 5319, 5, 138, 0, 0, 5319, 5320, 5, 451, 0, 0, 5320, 5321, 3, 826, 413, 0, 5321, 5322, 7, 65, 0, 0, 5322, 5339, 1, 0, 0, 0, 5323, 5324, 5, 138, 0, 0, 5324, 5325, 5, 451, 0, 0, 5325, 5326, 3, 826, 413, 0, 5326, 5327, 5, 465, 0, 0, 5327, 5328, 5, 2, 0, 0, 5328, 5329, 3, 284, 142, 0, 5329, 5330, 5, 3, 0, 0, 5330, 5339, 1, 0, 0, 0, 5331, 5332, 5, 138, 0, 0, 5332, 5333, 5, 451, 0, 0, 5333, 5334, 3, 826, 413, 0, 5334, 5335, 5, 282, 0, 0, 5335, 5336, 5, 94, 0, 0, 5336, 5337, 3, 822, 411, 0, 5337, 5339, 1, 0, 0, 0, 5338, 5282, 1, 0, 0, 0, 5338, 5288, 1, 0, 0, 0, 5338, 5294, 1, 0, 0, 0, 5338, 5302, 1, 0, 0, 0, 5338, 5318, 1, 0, 0, 0, 5338, 5323, 1, 0, 0, 0, 5338, 5331, 1, 0, 0, 0, 5339, 449, 1, 0, 0, 0, 5340, 5342, 5, 46, 0, 0, 5341, 5343, 3, 360, 180, 0, 5342, 5341, 1, 0, 0, 0, 5342, 5343, 1, 0, 0, 0, 5343, 5344, 1, 0, 0, 0, 5344, 5345, 5, 321, 0, 0, 5345, 5346, 3, 826, 413, 0, 5346, 5347, 5, 36, 0, 0, 5347, 5348, 5, 80, 0, 0, 5348, 5349, 7, 66, 0, 0, 5349, 5350, 5, 94, 0, 0, 5350, 5352, 3, 784, 392, 0, 5351, 5353, 3, 634, 317, 0, 5352, 5351, 1, 0, 0, 0, 5352, 5353, 1, 0, 0, 0, 5353, 5354, 1, 0, 0, 0, 5354, 5356, 5, 57, 0, 0, 5355, 5357, 7, 67, 0, 0, 5356, 5355, 1, 0, 0, 0, 5356, 5357, 1, 0, 0, 0, 5357, 5374, 1, 0, 0, 0, 5358, 5375, 5, 270, 0, 0, 5359, 5375, 3, 452, 226, 0, 5360, 5362, 5, 2, 0, 0, 5361, 5363, 3, 452, 226, 0, 5362, 5361, 1, 0, 0, 0, 5362, 5363, 1, 0, 0, 0, 5363, 5370, 1, 0, 0, 0, 5364, 5366, 5, 7, 0, 0, 5365, 5367, 3, 452, 226, 0, 5366, 5365, 1, 0, 0, 0, 5366, 5367, 1, 0, 0, 0, 5367, 5369, 1, 0, 0, 0, 5368, 5364, 1, 0, 0, 0, 5369, 5372, 1, 0, 0, 0, 5370, 5368, 1, 0, 0, 0, 5370, 5371, 1, 0, 0, 0, 5371, 5373, 1, 0, 0, 0, 5372, 5370, 1, 0, 0, 0, 5373, 5375, 5, 3, 0, 0, 5374, 5358, 1, 0, 0, 0, 5374, 5359, 1, 0, 0, 0, 5374, 5360, 1, 0, 0, 0, 5375, 451, 1, 0, 0, 0, 5376, 5382, 3, 554, 277, 0, 5377, 5382, 3, 532, 266, 0, 5378, 5382, 3, 546, 273, 0, 5379, 5382, 3, 542, 271, 0, 5380, 5382, 3, 454, 227, 0, 5381, 5376, 1, 0, 0, 0, 5381, 5377, 1, 0, 0, 0, 5381, 5378, 1, 0, 0, 0, 5381, 5379, 1, 0, 0, 0, 5381, 5380, 1, 0, 0, 0, 5382, 453, 1, 0, 0, 0, 5383, 5384, 5, 271, 0, 0, 5384, 5386, 3, 826, 413, 0, 5385, 5387, 3, 456, 228, 0, 5386, 5385, 1, 0, 0, 0, 5386, 5387, 1, 0, 0, 0, 5387, 455, 1, 0, 0, 0, 5388, 5389, 5, 6, 0, 0, 5389, 5390, 3, 816, 408, 0, 5390, 457, 1, 0, 0, 0, 5391, 5392, 5, 252, 0, 0, 5392, 5393, 3, 826, 413, 0, 5393, 459, 1, 0, 0, 0, 5394, 5397, 5, 366, 0, 0, 5395, 5398, 3, 826, 413, 0, 5396, 5398, 5, 9, 0, 0, 5397, 5395, 1, 0, 0, 0, 5397, 5396, 1, 0, 0, 0, 5398, 461, 1, 0, 0, 0, 5399, 5401, 5, 146, 0, 0, 5400, 5402, 3, 464, 232, 0, 5401, 5400, 1, 0, 0, 0, 5401, 5402, 1, 0, 0, 0, 5402, 5404, 1, 0, 0, 0, 5403, 5405, 3, 468, 234, 0, 5404, 5403, 1, 0, 0, 0, 5404, 5405, 1, 0, 0, 0, 5405, 5445, 1, 0, 0, 0, 5406, 5407, 5, 340, 0, 0, 5407, 5409, 5, 356, 0, 0, 5408, 5410, 3, 468, 234, 0, 5409, 5408, 1, 0, 0, 0, 5409, 5410, 1, 0, 0, 0, 5410, 5445, 1, 0, 0, 0, 5411, 5412, 5, 322, 0, 0, 5412, 5445, 3, 826, 413, 0, 5413, 5415, 5, 308, 0, 0, 5414, 5416, 5, 322, 0, 0, 5415, 5414, 1, 0, 0, 0, 5415, 5416, 1, 0, 0, 0, 5416, 5417, 1, 0, 0, 0, 5417, 5445, 3, 826, 413, 0, 5418, 5419, 5, 290, 0, 0, 5419, 5420, 5, 356, 0, 0, 5420, 5445, 3, 816, 408, 0, 5421, 5422, 7, 68, 0, 0, 5422, 5423, 5, 291, 0, 0, 5423, 5445, 3, 816, 408, 0, 5424, 5426, 7, 69, 0, 0, 5425, 5427, 3, 464, 232, 0, 5426, 5425, 1, 0, 0, 0, 5426, 5427, 1, 0, 0, 0, 5427, 5433, 1, 0, 0, 0, 5428, 5430, 5, 33, 0, 0, 5429, 5431, 5, 269, 0, 0, 5430, 5429, 1, 0, 0, 0, 5430, 5431, 1, 0, 0, 0, 5431, 5432, 1, 0, 0, 0, 5432, 5434, 5, 153, 0, 0, 5433, 5428, 1, 0, 0, 0, 5433, 5434, 1, 0, 0, 0, 5434, 5445, 1, 0, 0, 0, 5435, 5437, 5, 319, 0, 0, 5436, 5438, 3, 464, 232, 0, 5437, 5436, 1, 0, 0, 0, 5437, 5438, 1, 0, 0, 0, 5438, 5439, 1, 0, 0, 0, 5439, 5441, 5, 94, 0, 0, 5440, 5442, 5, 322, 0, 0, 5441, 5440, 1, 0, 0, 0, 5441, 5442, 1, 0, 0, 0, 5442, 5443, 1, 0, 0, 0, 5443, 5445, 3, 826, 413, 0, 5444, 5399, 1, 0, 0, 0, 5444, 5406, 1, 0, 0, 0, 5444, 5411, 1, 0, 0, 0, 5444, 5413, 1, 0, 0, 0, 5444, 5418, 1, 0, 0, 0, 5444, 5421, 1, 0, 0, 0, 5444, 5424, 1, 0, 0, 0, 5444, 5435, 1, 0, 0, 0, 5445, 463, 1, 0, 0, 0, 5446, 5447, 7, 70, 0, 0, 5447, 465, 1, 0, 0, 0, 5448, 5449, 5, 244, 0, 0, 5449, 5450, 5, 251, 0, 0, 5450, 5458, 3, 50, 25, 0, 5451, 5452, 5, 300, 0, 0, 5452, 5458, 7, 71, 0, 0, 5453, 5455, 5, 77, 0, 0, 5454, 5453, 1, 0, 0, 0, 5454, 5455, 1, 0, 0, 0, 5455, 5456, 1, 0, 0, 0, 5456, 5458, 5, 54, 0, 0, 5457, 5448, 1, 0, 0, 0, 5457, 5451, 1, 0, 0, 0, 5457, 5454, 1, 0, 0, 0, 5458, 467, 1, 0, 0, 0, 5459, 5466, 3, 466, 233, 0, 5460, 5462, 5, 6, 0, 0, 5461, 5460, 1, 0, 0, 0, 5461, 5462, 1, 0, 0, 0, 5462, 5463, 1, 0, 0, 0, 5463, 5465, 3, 466, 233, 0, 5464, 5461, 1, 0, 0, 0, 5465, 5468, 1, 0, 0, 0, 5466, 5464, 1, 0, 0, 0, 5466, 5467, 1, 0, 0, 0, 5467, 469, 1, 0, 0, 0, 5468, 5466, 1, 0, 0, 0, 5469, 5472, 5, 46, 0, 0, 5470, 5471, 5, 82, 0, 0, 5471, 5473, 5, 311, 0, 0, 5472, 5470, 1, 0, 0, 0, 5472, 5473, 1, 0, 0, 0, 5473, 5475, 1, 0, 0, 0, 5474, 5476, 3, 116, 58, 0, 5475, 5474, 1, 0, 0, 0, 5475, 5476, 1, 0, 0, 0, 5476, 5492, 1, 0, 0, 0, 5477, 5478, 5, 376, 0, 0, 5478, 5480, 3, 780, 390, 0, 5479, 5481, 3, 140, 70, 0, 5480, 5479, 1, 0, 0, 0, 5480, 5481, 1, 0, 0, 0, 5481, 5483, 1, 0, 0, 0, 5482, 5484, 3, 94, 47, 0, 5483, 5482, 1, 0, 0, 0, 5483, 5484, 1, 0, 0, 0, 5484, 5493, 1, 0, 0, 0, 5485, 5486, 5, 303, 0, 0, 5486, 5487, 5, 376, 0, 0, 5487, 5488, 3, 780, 390, 0, 5488, 5490, 3, 138, 69, 0, 5489, 5491, 3, 94, 47, 0, 5490, 5489, 1, 0, 0, 0, 5490, 5491, 1, 0, 0, 0, 5491, 5493, 1, 0, 0, 0, 5492, 5477, 1, 0, 0, 0, 5492, 5485, 1, 0, 0, 0, 5493, 5494, 1, 0, 0, 0, 5494, 5495, 5, 36, 0, 0, 5495, 5502, 3, 554, 277, 0, 5496, 5498, 5, 105, 0, 0, 5497, 5499, 7, 72, 0, 0, 5498, 5497, 1, 0, 0, 0, 5498, 5499, 1, 0, 0, 0, 5499, 5500, 1, 0, 0, 0, 5500, 5501, 5, 42, 0, 0, 5501, 5503, 5, 279, 0, 0, 5502, 5496, 1, 0, 0, 0, 5502, 5503, 1, 0, 0, 0, 5503, 471, 1, 0, 0, 0, 5504, 5505, 5, 253, 0, 0, 5505, 5506, 3, 816, 408, 0, 5506, 473, 1, 0, 0, 0, 5507, 5508, 5, 46, 0, 0, 5508, 5509, 5, 175, 0, 0, 5509, 5511, 3, 790, 395, 0, 5510, 5512, 5, 105, 0, 0, 5511, 5510, 1, 0, 0, 0, 5511, 5512, 1, 0, 0, 0, 5512, 5518, 1, 0, 0, 0, 5513, 5515, 3, 476, 238, 0, 5514, 5513, 1, 0, 0, 0, 5515, 5516, 1, 0, 0, 0, 5516, 5514, 1, 0, 0, 0, 5516, 5517, 1, 0, 0, 0, 5517, 5519, 1, 0, 0, 0, 5518, 5514, 1, 0, 0, 0, 5518, 5519, 1, 0, 0, 0, 5519, 475, 1, 0, 0, 0, 5520, 5521, 5, 164, 0, 0, 5521, 5529, 5, 74, 0, 0, 5522, 5529, 5, 194, 0, 0, 5523, 5529, 5, 255, 0, 0, 5524, 5529, 5, 282, 0, 0, 5525, 5529, 5, 351, 0, 0, 5526, 5529, 5, 353, 0, 0, 5527, 5529, 3, 836, 418, 0, 5528, 5520, 1, 0, 0, 0, 5528, 5522, 1, 0, 0, 0, 5528, 5523, 1, 0, 0, 0, 5528, 5524, 1, 0, 0, 0, 5528, 5525, 1, 0, 0, 0, 5528, 5526, 1, 0, 0, 0, 5528, 5527, 1, 0, 0, 0, 5529, 5531, 1, 0, 0, 0, 5530, 5532, 5, 10, 0, 0, 5531, 5530, 1, 0, 0, 0, 5531, 5532, 1, 0, 0, 0, 5532, 5536, 1, 0, 0, 0, 5533, 5537, 3, 820, 410, 0, 5534, 5537, 3, 54, 27, 0, 5535, 5537, 5, 53, 0, 0, 5536, 5533, 1, 0, 0, 0, 5536, 5534, 1, 0, 0, 0, 5536, 5535, 1, 0, 0, 0, 5537, 477, 1, 0, 0, 0, 5538, 5539, 5, 138, 0, 0, 5539, 5540, 5, 175, 0, 0, 5540, 5556, 3, 792, 396, 0, 5541, 5542, 5, 333, 0, 0, 5542, 5543, 5, 351, 0, 0, 5543, 5545, 3, 774, 387, 0, 5544, 5541, 1, 0, 0, 0, 5544, 5545, 1, 0, 0, 0, 5545, 5557, 1, 0, 0, 0, 5546, 5548, 5, 105, 0, 0, 5547, 5546, 1, 0, 0, 0, 5547, 5548, 1, 0, 0, 0, 5548, 5550, 1, 0, 0, 0, 5549, 5551, 3, 476, 238, 0, 5550, 5549, 1, 0, 0, 0, 5551, 5552, 1, 0, 0, 0, 5552, 5550, 1, 0, 0, 0, 5552, 5553, 1, 0, 0, 0, 5553, 5555, 1, 0, 0, 0, 5554, 5547, 1, 0, 0, 0, 5554, 5555, 1, 0, 0, 0, 5555, 5557, 1, 0, 0, 0, 5556, 5544, 1, 0, 0, 0, 5556, 5554, 1, 0, 0, 0, 5557, 479, 1, 0, 0, 0, 5558, 5559, 5, 138, 0, 0, 5559, 5560, 5, 175, 0, 0, 5560, 5562, 3, 792, 396, 0, 5561, 5563, 3, 64, 32, 0, 5562, 5561, 1, 0, 0, 0, 5562, 5563, 1, 0, 0, 0, 5563, 481, 1, 0, 0, 0, 5564, 5565, 5, 138, 0, 0, 5565, 5566, 5, 108, 0, 0, 5566, 5567, 3, 310, 155, 0, 5567, 5568, 5, 305, 0, 0, 5568, 5569, 5, 375, 0, 0, 5569, 483, 1, 0, 0, 0, 5570, 5571, 5, 138, 0, 0, 5571, 5572, 5, 349, 0, 0, 5572, 5573, 7, 16, 0, 0, 5573, 5574, 3, 40, 20, 0, 5574, 485, 1, 0, 0, 0, 5575, 5576, 5, 46, 0, 0, 5576, 5577, 5, 189, 0, 0, 5577, 5579, 3, 310, 155, 0, 5578, 5580, 5, 36, 0, 0, 5579, 5578, 1, 0, 0, 0, 5579, 5580, 1, 0, 0, 0, 5580, 5581, 1, 0, 0, 0, 5581, 5585, 3, 648, 324, 0, 5582, 5584, 3, 128, 64, 0, 5583, 5582, 1, 0, 0, 0, 5584, 5587, 1, 0, 0, 0, 5585, 5583, 1, 0, 0, 0, 5585, 5586, 1, 0, 0, 0, 5586, 487, 1, 0, 0, 0, 5587, 5585, 1, 0, 0, 0, 5588, 5589, 5, 138, 0, 0, 5589, 5590, 5, 189, 0, 0, 5590, 5613, 3, 310, 155, 0, 5591, 5614, 3, 86, 43, 0, 5592, 5593, 7, 15, 0, 0, 5593, 5594, 5, 77, 0, 0, 5594, 5614, 5, 78, 0, 0, 5595, 5598, 5, 133, 0, 0, 5596, 5597, 5, 45, 0, 0, 5597, 5599, 3, 826, 413, 0, 5598, 5596, 1, 0, 0, 0, 5598, 5599, 1, 0, 0, 0, 5599, 5600, 1, 0, 0, 0, 5600, 5614, 3, 136, 68, 0, 5601, 5602, 5, 191, 0, 0, 5602, 5604, 5, 45, 0, 0, 5603, 5605, 3, 416, 208, 0, 5604, 5603, 1, 0, 0, 0, 5604, 5605, 1, 0, 0, 0, 5605, 5606, 1, 0, 0, 0, 5606, 5608, 3, 826, 413, 0, 5607, 5609, 3, 88, 44, 0, 5608, 5607, 1, 0, 0, 0, 5608, 5609, 1, 0, 0, 0, 5609, 5614, 1, 0, 0, 0, 5610, 5611, 5, 372, 0, 0, 5611, 5612, 5, 45, 0, 0, 5612, 5614, 3, 826, 413, 0, 5613, 5591, 1, 0, 0, 0, 5613, 5592, 1, 0, 0, 0, 5613, 5595, 1, 0, 0, 0, 5613, 5601, 1, 0, 0, 0, 5613, 5610, 1, 0, 0, 0, 5614, 489, 1, 0, 0, 0, 5615, 5616, 5, 138, 0, 0, 5616, 5617, 5, 355, 0, 0, 5617, 5618, 5, 325, 0, 0, 5618, 5619, 5, 185, 0, 0, 5619, 5620, 3, 310, 155, 0, 5620, 5621, 3, 278, 139, 0, 5621, 491, 1, 0, 0, 0, 5622, 5623, 5, 138, 0, 0, 5623, 5624, 5, 355, 0, 0, 5624, 5625, 5, 325, 0, 0, 5625, 5626, 5, 163, 0, 0, 5626, 5627, 3, 310, 155, 0, 5627, 5628, 7, 73, 0, 0, 5628, 5629, 5, 257, 0, 0, 5629, 5630, 5, 62, 0, 0, 5630, 5631, 3, 788, 394, 0, 5631, 5632, 5, 105, 0, 0, 5632, 5633, 3, 308, 154, 0, 5633, 5664, 1, 0, 0, 0, 5634, 5635, 5, 138, 0, 0, 5635, 5636, 5, 355, 0, 0, 5636, 5637, 5, 325, 0, 0, 5637, 5638, 5, 163, 0, 0, 5638, 5639, 3, 310, 155, 0, 5639, 5640, 5, 138, 0, 0, 5640, 5643, 5, 257, 0, 0, 5641, 5642, 5, 62, 0, 0, 5642, 5644, 3, 788, 394, 0, 5643, 5641, 1, 0, 0, 0, 5643, 5644, 1, 0, 0, 0, 5644, 5645, 1, 0, 0, 0, 5645, 5646, 5, 311, 0, 0, 5646, 5647, 3, 310, 155, 0, 5647, 5648, 5, 105, 0, 0, 5648, 5649, 3, 310, 155, 0, 5649, 5664, 1, 0, 0, 0, 5650, 5651, 5, 138, 0, 0, 5651, 5652, 5, 355, 0, 0, 5652, 5653, 5, 325, 0, 0, 5653, 5654, 5, 163, 0, 0, 5654, 5655, 3, 310, 155, 0, 5655, 5656, 5, 191, 0, 0, 5656, 5658, 5, 257, 0, 0, 5657, 5659, 3, 416, 208, 0, 5658, 5657, 1, 0, 0, 0, 5658, 5659, 1, 0, 0, 0, 5659, 5660, 1, 0, 0, 0, 5660, 5661, 5, 62, 0, 0, 5661, 5662, 3, 788, 394, 0, 5662, 5664, 1, 0, 0, 0, 5663, 5622, 1, 0, 0, 0, 5663, 5634, 1, 0, 0, 0, 5663, 5650, 1, 0, 0, 0, 5664, 493, 1, 0, 0, 0, 5665, 5667, 5, 46, 0, 0, 5666, 5668, 5, 53, 0, 0, 5667, 5666, 1, 0, 0, 0, 5667, 5668, 1, 0, 0, 0, 5668, 5669, 1, 0, 0, 0, 5669, 5670, 5, 168, 0, 0, 5670, 5671, 3, 310, 155, 0, 5671, 5672, 5, 62, 0, 0, 5672, 5673, 3, 816, 408, 0, 5673, 5674, 5, 94, 0, 0, 5674, 5675, 3, 816, 408, 0, 5675, 5676, 5, 64, 0, 0, 5676, 5677, 3, 310, 155, 0, 5677, 495, 1, 0, 0, 0, 5678, 5680, 5, 158, 0, 0, 5679, 5681, 3, 508, 254, 0, 5680, 5679, 1, 0, 0, 0, 5680, 5681, 1, 0, 0, 0, 5681, 5686, 1, 0, 0, 0, 5682, 5684, 3, 778, 389, 0, 5683, 5685, 3, 164, 82, 0, 5684, 5683, 1, 0, 0, 0, 5684, 5685, 1, 0, 0, 0, 5685, 5687, 1, 0, 0, 0, 5686, 5682, 1, 0, 0, 0, 5686, 5687, 1, 0, 0, 0, 5687, 5704, 1, 0, 0, 0, 5688, 5689, 5, 158, 0, 0, 5689, 5690, 5, 2, 0, 0, 5690, 5695, 3, 508, 254, 0, 5691, 5692, 5, 6, 0, 0, 5692, 5694, 3, 508, 254, 0, 5693, 5691, 1, 0, 0, 0, 5694, 5697, 1, 0, 0, 0, 5695, 5693, 1, 0, 0, 0, 5695, 5696, 1, 0, 0, 0, 5696, 5698, 1, 0, 0, 0, 5697, 5695, 1, 0, 0, 0, 5698, 5699, 5, 3, 0, 0, 5699, 5701, 3, 778, 389, 0, 5700, 5702, 3, 164, 82, 0, 5701, 5700, 1, 0, 0, 0, 5701, 5702, 1, 0, 0, 0, 5702, 5704, 1, 0, 0, 0, 5703, 5678, 1, 0, 0, 0, 5703, 5688, 1, 0, 0, 0, 5704, 497, 1, 0, 0, 0, 5705, 5721, 5, 370, 0, 0, 5706, 5708, 5, 113, 0, 0, 5707, 5706, 1, 0, 0, 0, 5707, 5708, 1, 0, 0, 0, 5708, 5710, 1, 0, 0, 0, 5709, 5711, 5, 112, 0, 0, 5710, 5709, 1, 0, 0, 0, 5710, 5711, 1, 0, 0, 0, 5711, 5713, 1, 0, 0, 0, 5712, 5714, 3, 508, 254, 0, 5713, 5712, 1, 0, 0, 0, 5713, 5714, 1, 0, 0, 0, 5714, 5716, 1, 0, 0, 0, 5715, 5717, 3, 502, 251, 0, 5716, 5715, 1, 0, 0, 0, 5716, 5717, 1, 0, 0, 0, 5717, 5722, 1, 0, 0, 0, 5718, 5720, 3, 518, 259, 0, 5719, 5718, 1, 0, 0, 0, 5719, 5720, 1, 0, 0, 0, 5720, 5722, 1, 0, 0, 0, 5721, 5707, 1, 0, 0, 0, 5721, 5719, 1, 0, 0, 0, 5722, 5724, 1, 0, 0, 0, 5723, 5725, 3, 512, 256, 0, 5724, 5723, 1, 0, 0, 0, 5724, 5725, 1, 0, 0, 0, 5725, 499, 1, 0, 0, 0, 5726, 5741, 3, 502, 251, 0, 5727, 5729, 3, 508, 254, 0, 5728, 5727, 1, 0, 0, 0, 5728, 5729, 1, 0, 0, 0, 5729, 5742, 1, 0, 0, 0, 5730, 5731, 5, 2, 0, 0, 5731, 5736, 3, 506, 253, 0, 5732, 5733, 5, 6, 0, 0, 5733, 5735, 3, 506, 253, 0, 5734, 5732, 1, 0, 0, 0, 5735, 5738, 1, 0, 0, 0, 5736, 5734, 1, 0, 0, 0, 5736, 5737, 1, 0, 0, 0, 5737, 5739, 1, 0, 0, 0, 5738, 5736, 1, 0, 0, 0, 5739, 5740, 5, 3, 0, 0, 5740, 5742, 1, 0, 0, 0, 5741, 5728, 1, 0, 0, 0, 5741, 5730, 1, 0, 0, 0, 5742, 5744, 1, 0, 0, 0, 5743, 5745, 3, 512, 256, 0, 5744, 5743, 1, 0, 0, 0, 5744, 5745, 1, 0, 0, 0, 5745, 501, 1, 0, 0, 0, 5746, 5747, 7, 74, 0, 0, 5747, 503, 1, 0, 0, 0, 5748, 5751, 3, 830, 415, 0, 5749, 5751, 3, 502, 251, 0, 5750, 5748, 1, 0, 0, 0, 5750, 5749, 1, 0, 0, 0, 5751, 5754, 1, 0, 0, 0, 5752, 5755, 3, 54, 27, 0, 5753, 5755, 3, 196, 98, 0, 5754, 5752, 1, 0, 0, 0, 5754, 5753, 1, 0, 0, 0, 5754, 5755, 1, 0, 0, 0, 5755, 505, 1, 0, 0, 0, 5756, 5758, 7, 75, 0, 0, 5757, 5759, 7, 76, 0, 0, 5758, 5757, 1, 0, 0, 0, 5758, 5759, 1, 0, 0, 0, 5759, 5766, 1, 0, 0, 0, 5760, 5763, 5, 548, 0, 0, 5761, 5764, 3, 196, 98, 0, 5762, 5764, 3, 816, 408, 0, 5763, 5761, 1, 0, 0, 0, 5763, 5762, 1, 0, 0, 0, 5764, 5766, 1, 0, 0, 0, 5765, 5756, 1, 0, 0, 0, 5765, 5760, 1, 0, 0, 0, 5766, 507, 1, 0, 0, 0, 5767, 5769, 5, 128, 0, 0, 5768, 5770, 7, 76, 0, 0, 5769, 5768, 1, 0, 0, 0, 5769, 5770, 1, 0, 0, 0, 5770, 509, 1, 0, 0, 0, 5771, 5773, 3, 778, 389, 0, 5772, 5774, 3, 138, 69, 0, 5773, 5772, 1, 0, 0, 0, 5773, 5774, 1, 0, 0, 0, 5774, 511, 1, 0, 0, 0, 5775, 5780, 3, 510, 255, 0, 5776, 5777, 5, 6, 0, 0, 5777, 5779, 3, 510, 255, 0, 5778, 5776, 1, 0, 0, 0, 5779, 5782, 1, 0, 0, 0, 5780, 5778, 1, 0, 0, 0, 5780, 5781, 1, 0, 0, 0, 5781, 513, 1, 0, 0, 0, 5782, 5780, 1, 0, 0, 0, 5783, 5794, 5, 203, 0, 0, 5784, 5795, 3, 518, 259, 0, 5785, 5787, 5, 128, 0, 0, 5786, 5785, 1, 0, 0, 0, 5786, 5787, 1, 0, 0, 0, 5787, 5795, 1, 0, 0, 0, 5788, 5790, 3, 502, 251, 0, 5789, 5791, 3, 508, 254, 0, 5790, 5789, 1, 0, 0, 0, 5790, 5791, 1, 0, 0, 0, 5791, 5793, 1, 0, 0, 0, 5792, 5788, 1, 0, 0, 0, 5792, 5793, 1, 0, 0, 0, 5793, 5795, 1, 0, 0, 0, 5794, 5784, 1, 0, 0, 0, 5794, 5786, 1, 0, 0, 0, 5794, 5792, 1, 0, 0, 0, 5795, 5796, 1, 0, 0, 0, 5796, 5797, 3, 516, 258, 0, 5797, 515, 1, 0, 0, 0, 5798, 5808, 3, 554, 277, 0, 5799, 5808, 3, 532, 266, 0, 5800, 5808, 3, 546, 273, 0, 5801, 5808, 3, 542, 271, 0, 5802, 5808, 3, 552, 276, 0, 5803, 5808, 3, 180, 90, 0, 5804, 5808, 3, 186, 93, 0, 5805, 5808, 3, 188, 94, 0, 5806, 5808, 3, 526, 263, 0, 5807, 5798, 1, 0, 0, 0, 5807, 5799, 1, 0, 0, 0, 5807, 5800, 1, 0, 0, 0, 5807, 5801, 1, 0, 0, 0, 5807, 5802, 1, 0, 0, 0, 5807, 5803, 1, 0, 0, 0, 5807, 5804, 1, 0, 0, 0, 5807, 5805, 1, 0, 0, 0, 5807, 5806, 1, 0, 0, 0, 5808, 517, 1, 0, 0, 0, 5809, 5810, 5, 2, 0, 0, 5810, 5815, 3, 504, 252, 0, 5811, 5812, 5, 6, 0, 0, 5812, 5814, 3, 504, 252, 0, 5813, 5811, 1, 0, 0, 0, 5814, 5817, 1, 0, 0, 0, 5815, 5813, 1, 0, 0, 0, 5815, 5816, 1, 0, 0, 0, 5816, 5818, 1, 0, 0, 0, 5817, 5815, 1, 0, 0, 0, 5818, 5819, 5, 3, 0, 0, 5819, 519, 1, 0, 0, 0, 5820, 5821, 5, 290, 0, 0, 5821, 5823, 3, 826, 413, 0, 5822, 5824, 3, 522, 261, 0, 5823, 5822, 1, 0, 0, 0, 5823, 5824, 1, 0, 0, 0, 5824, 5825, 1, 0, 0, 0, 5825, 5826, 5, 36, 0, 0, 5826, 5827, 3, 524, 262, 0, 5827, 521, 1, 0, 0, 0, 5828, 5829, 5, 2, 0, 0, 5829, 5834, 3, 648, 324, 0, 5830, 5831, 5, 6, 0, 0, 5831, 5833, 3, 648, 324, 0, 5832, 5830, 1, 0, 0, 0, 5833, 5836, 1, 0, 0, 0, 5834, 5832, 1, 0, 0, 0, 5834, 5835, 1, 0, 0, 0, 5835, 5837, 1, 0, 0, 0, 5836, 5834, 1, 0, 0, 0, 5837, 5838, 5, 3, 0, 0, 5838, 523, 1, 0, 0, 0, 5839, 5845, 3, 554, 277, 0, 5840, 5845, 3, 532, 266, 0, 5841, 5845, 3, 546, 273, 0, 5842, 5845, 3, 542, 271, 0, 5843, 5845, 3, 910, 455, 0, 5844, 5839, 1, 0, 0, 0, 5844, 5840, 1, 0, 0, 0, 5844, 5841, 1, 0, 0, 0, 5844, 5842, 1, 0, 0, 0, 5844, 5843, 1, 0, 0, 0, 5845, 525, 1, 0, 0, 0, 5846, 5847, 5, 202, 0, 0, 5847, 5849, 3, 826, 413, 0, 5848, 5850, 3, 528, 264, 0, 5849, 5848, 1, 0, 0, 0, 5849, 5850, 1, 0, 0, 0, 5850, 5870, 1, 0, 0, 0, 5851, 5853, 5, 46, 0, 0, 5852, 5854, 3, 116, 58, 0, 5853, 5852, 1, 0, 0, 0, 5853, 5854, 1, 0, 0, 0, 5854, 5855, 1, 0, 0, 0, 5855, 5857, 5, 92, 0, 0, 5856, 5858, 3, 288, 144, 0, 5857, 5856, 1, 0, 0, 0, 5857, 5858, 1, 0, 0, 0, 5858, 5859, 1, 0, 0, 0, 5859, 5860, 3, 182, 91, 0, 5860, 5861, 5, 36, 0, 0, 5861, 5862, 5, 202, 0, 0, 5862, 5864, 3, 826, 413, 0, 5863, 5865, 3, 528, 264, 0, 5864, 5863, 1, 0, 0, 0, 5864, 5865, 1, 0, 0, 0, 5865, 5867, 1, 0, 0, 0, 5866, 5868, 3, 184, 92, 0, 5867, 5866, 1, 0, 0, 0, 5867, 5868, 1, 0, 0, 0, 5868, 5870, 1, 0, 0, 0, 5869, 5846, 1, 0, 0, 0, 5869, 5851, 1, 0, 0, 0, 5870, 527, 1, 0, 0, 0, 5871, 5872, 5, 2, 0, 0, 5872, 5873, 3, 728, 364, 0, 5873, 5874, 5, 3, 0, 0, 5874, 529, 1, 0, 0, 0, 5875, 5877, 5, 177, 0, 0, 5876, 5878, 5, 290, 0, 0, 5877, 5876, 1, 0, 0, 0, 5877, 5878, 1, 0, 0, 0, 5878, 5881, 1, 0, 0, 0, 5879, 5882, 3, 826, 413, 0, 5880, 5882, 5, 30, 0, 0, 5881, 5879, 1, 0, 0, 0, 5881, 5880, 1, 0, 0, 0, 5882, 531, 1, 0, 0, 0, 5883, 5885, 3, 566, 283, 0, 5884, 5883, 1, 0, 0, 0, 5884, 5885, 1, 0, 0, 0, 5885, 5886, 1, 0, 0, 0, 5886, 5887, 5, 241, 0, 0, 5887, 5888, 5, 71, 0, 0, 5888, 5891, 3, 778, 389, 0, 5889, 5890, 5, 36, 0, 0, 5890, 5892, 3, 826, 413, 0, 5891, 5889, 1, 0, 0, 0, 5891, 5892, 1, 0, 0, 0, 5892, 5893, 1, 0, 0, 0, 5893, 5915, 3, 534, 267, 0, 5894, 5895, 5, 80, 0, 0, 5895, 5903, 5, 464, 0, 0, 5896, 5898, 3, 354, 177, 0, 5897, 5899, 3, 634, 317, 0, 5898, 5897, 1, 0, 0, 0, 5898, 5899, 1, 0, 0, 0, 5899, 5904, 1, 0, 0, 0, 5900, 5901, 5, 80, 0, 0, 5901, 5902, 5, 45, 0, 0, 5902, 5904, 3, 826, 413, 0, 5903, 5896, 1, 0, 0, 0, 5903, 5900, 1, 0, 0, 0, 5903, 5904, 1, 0, 0, 0, 5904, 5905, 1, 0, 0, 0, 5905, 5913, 5, 57, 0, 0, 5906, 5907, 5, 369, 0, 0, 5907, 5908, 5, 333, 0, 0, 5908, 5910, 3, 548, 274, 0, 5909, 5911, 3, 634, 317, 0, 5910, 5909, 1, 0, 0, 0, 5910, 5911, 1, 0, 0, 0, 5911, 5914, 1, 0, 0, 0, 5912, 5914, 5, 270, 0, 0, 5913, 5906, 1, 0, 0, 0, 5913, 5912, 1, 0, 0, 0, 5914, 5916, 1, 0, 0, 0, 5915, 5894, 1, 0, 0, 0, 5915, 5916, 1, 0, 0, 0, 5916, 5918, 1, 0, 0, 0, 5917, 5919, 3, 540, 270, 0, 5918, 5917, 1, 0, 0, 0, 5918, 5919, 1, 0, 0, 0, 5919, 533, 1, 0, 0, 0, 5920, 5921, 5, 2, 0, 0, 5921, 5922, 3, 536, 268, 0, 5922, 5923, 5, 3, 0, 0, 5923, 5925, 1, 0, 0, 0, 5924, 5920, 1, 0, 0, 0, 5924, 5925, 1, 0, 0, 0, 5925, 5929, 1, 0, 0, 0, 5926, 5927, 5, 463, 0, 0, 5927, 5928, 7, 77, 0, 0, 5928, 5930, 5, 450, 0, 0, 5929, 5926, 1, 0, 0, 0, 5929, 5930, 1, 0, 0, 0, 5930, 5933, 1, 0, 0, 0, 5931, 5934, 3, 920, 460, 0, 5932, 5934, 3, 554, 277, 0, 5933, 5931, 1, 0, 0, 0, 5933, 5932, 1, 0, 0, 0, 5934, 535, 1, 0, 0, 0, 5935, 5940, 3, 538, 269, 0, 5936, 5937, 5, 6, 0, 0, 5937, 5939, 3, 538, 269, 0, 5938, 5936, 1, 0, 0, 0, 5939, 5942, 1, 0, 0, 0, 5940, 5938, 1, 0, 0, 0, 5940, 5941, 1, 0, 0, 0, 5941, 537, 1, 0, 0, 0, 5942, 5940, 1, 0, 0, 0, 5943, 5944, 3, 806, 403, 0, 5944, 5945, 3, 756, 378, 0, 5945, 539, 1, 0, 0, 0, 5946, 5947, 5, 87, 0, 0, 5947, 5948, 3, 758, 379, 0, 5948, 541, 1, 0, 0, 0, 5949, 5951, 3, 566, 283, 0, 5950, 5949, 1, 0, 0, 0, 5950, 5951, 1, 0, 0, 0, 5951, 5952, 1, 0, 0, 0, 5952, 5953, 5, 182, 0, 0, 5953, 5954, 5, 64, 0, 0, 5954, 5957, 3, 626, 313, 0, 5955, 5956, 5, 100, 0, 0, 5956, 5958, 3, 606, 303, 0, 5957, 5955, 1, 0, 0, 0, 5957, 5958, 1, 0, 0, 0, 5958, 5960, 1, 0, 0, 0, 5959, 5961, 3, 636, 318, 0, 5960, 5959, 1, 0, 0, 0, 5960, 5961, 1, 0, 0, 0, 5961, 5963, 1, 0, 0, 0, 5962, 5964, 3, 540, 270, 0, 5963, 5962, 1, 0, 0, 0, 5963, 5964, 1, 0, 0, 0, 5964, 543, 1, 0, 0, 0, 5965, 5967, 5, 256, 0, 0, 5966, 5968, 5, 92, 0, 0, 5967, 5966, 1, 0, 0, 0, 5967, 5968, 1, 0, 0, 0, 5968, 5969, 1, 0, 0, 0, 5969, 5984, 3, 624, 312, 0, 5970, 5981, 5, 68, 0, 0, 5971, 5972, 7, 78, 0, 0, 5972, 5982, 7, 79, 0, 0, 5973, 5978, 5, 334, 0, 0, 5974, 5975, 5, 369, 0, 0, 5975, 5979, 5, 201, 0, 0, 5976, 5977, 5, 414, 0, 0, 5977, 5979, 5, 201, 0, 0, 5978, 5974, 1, 0, 0, 0, 5978, 5976, 1, 0, 0, 0, 5978, 5979, 1, 0, 0, 0, 5979, 5982, 1, 0, 0, 0, 5980, 5982, 5, 201, 0, 0, 5981, 5971, 1, 0, 0, 0, 5981, 5973, 1, 0, 0, 0, 5981, 5980, 1, 0, 0, 0, 5982, 5983, 1, 0, 0, 0, 5983, 5985, 5, 263, 0, 0, 5984, 5970, 1, 0, 0, 0, 5984, 5985, 1, 0, 0, 0, 5985, 5987, 1, 0, 0, 0, 5986, 5988, 5, 272, 0, 0, 5987, 5986, 1, 0, 0, 0, 5987, 5988, 1, 0, 0, 0, 5988, 545, 1, 0, 0, 0, 5989, 5991, 3, 566, 283, 0, 5990, 5989, 1, 0, 0, 0, 5990, 5991, 1, 0, 0, 0, 5991, 5992, 1, 0, 0, 0, 5992, 5993, 5, 369, 0, 0, 5993, 5994, 3, 626, 313, 0, 5994, 5995, 5, 333, 0, 0, 5995, 5997, 3, 548, 274, 0, 5996, 5998, 3, 604, 302, 0, 5997, 5996, 1, 0, 0, 0, 5997, 5998, 1, 0, 0, 0, 5998, 6000, 1, 0, 0, 0, 5999, 6001, 3, 636, 318, 0, 6000, 5999, 1, 0, 0, 0, 6000, 6001, 1, 0, 0, 0, 6001, 6003, 1, 0, 0, 0, 6002, 6004, 3, 540, 270, 0, 6003, 6002, 1, 0, 0, 0, 6003, 6004, 1, 0, 0, 0, 6004, 547, 1, 0, 0, 0, 6005, 6010, 3, 550, 275, 0, 6006, 6007, 5, 6, 0, 0, 6007, 6009, 3, 550, 275, 0, 6008, 6006, 1, 0, 0, 0, 6009, 6012, 1, 0, 0, 0, 6010, 6008, 1, 0, 0, 0, 6010, 6011, 1, 0, 0, 0, 6011, 549, 1, 0, 0, 0, 6012, 6010, 1, 0, 0, 0, 6013, 6014, 3, 538, 269, 0, 6014, 6015, 5, 10, 0, 0, 6015, 6016, 3, 670, 335, 0, 6016, 6032, 1, 0, 0, 0, 6017, 6018, 5, 2, 0, 0, 6018, 6019, 3, 536, 268, 0, 6019, 6020, 5, 3, 0, 0, 6020, 6029, 5, 10, 0, 0, 6021, 6023, 5, 414, 0, 0, 6022, 6021, 1, 0, 0, 0, 6022, 6023, 1, 0, 0, 0, 6023, 6024, 1, 0, 0, 0, 6024, 6030, 3, 670, 335, 0, 6025, 6026, 5, 2, 0, 0, 6026, 6027, 3, 560, 280, 0, 6027, 6028, 5, 3, 0, 0, 6028, 6030, 1, 0, 0, 0, 6029, 6022, 1, 0, 0, 0, 6029, 6025, 1, 0, 0, 0, 6030, 6032, 1, 0, 0, 0, 6031, 6013, 1, 0, 0, 0, 6031, 6017, 1, 0, 0, 0, 6032, 551, 1, 0, 0, 0, 6033, 6034, 5, 178, 0, 0, 6034, 6043, 3, 826, 413, 0, 6035, 6037, 5, 269, 0, 0, 6036, 6035, 1, 0, 0, 0, 6036, 6037, 1, 0, 0, 0, 6037, 6038, 1, 0, 0, 0, 6038, 6042, 5, 324, 0, 0, 6039, 6042, 5, 107, 0, 0, 6040, 6042, 5, 240, 0, 0, 6041, 6036, 1, 0, 0, 0, 6041, 6039, 1, 0, 0, 0, 6041, 6040, 1, 0, 0, 0, 6042, 6045, 1, 0, 0, 0, 6043, 6041, 1, 0, 0, 0, 6043, 6044, 1, 0, 0, 0, 6044, 6046, 1, 0, 0, 0, 6045, 6043, 1, 0, 0, 0, 6046, 6049, 5, 172, 0, 0, 6047, 6048, 7, 27, 0, 0, 6048, 6050, 5, 217, 0, 0, 6049, 6047, 1, 0, 0, 0, 6049, 6050, 1, 0, 0, 0, 6050, 6051, 1, 0, 0, 0, 6051, 6052, 5, 62, 0, 0, 6052, 6053, 3, 554, 277, 0, 6053, 553, 1, 0, 0, 0, 6054, 6057, 3, 558, 279, 0, 6055, 6057, 3, 556, 278, 0, 6056, 6054, 1, 0, 0, 0, 6056, 6055, 1, 0, 0, 0, 6057, 555, 1, 0, 0, 0, 6058, 6061, 5, 2, 0, 0, 6059, 6062, 3, 558, 279, 0, 6060, 6062, 3, 556, 278, 0, 6061, 6059, 1, 0, 0, 0, 6061, 6060, 1, 0, 0, 0, 6062, 6063, 1, 0, 0, 0, 6063, 6064, 5, 3, 0, 0, 6064, 557, 1, 0, 0, 0, 6065, 6067, 3, 566, 283, 0, 6066, 6065, 1, 0, 0, 0, 6066, 6067, 1, 0, 0, 0, 6067, 6068, 1, 0, 0, 0, 6068, 6070, 3, 560, 280, 0, 6069, 6071, 3, 580, 290, 0, 6070, 6069, 1, 0, 0, 0, 6070, 6071, 1, 0, 0, 0, 6071, 6080, 1, 0, 0, 0, 6072, 6074, 3, 600, 300, 0, 6073, 6075, 3, 584, 292, 0, 6074, 6073, 1, 0, 0, 0, 6074, 6075, 1, 0, 0, 0, 6075, 6081, 1, 0, 0, 0, 6076, 6078, 3, 584, 292, 0, 6077, 6079, 3, 600, 300, 0, 6078, 6077, 1, 0, 0, 0, 6078, 6079, 1, 0, 0, 0, 6079, 6081, 1, 0, 0, 0, 6080, 6072, 1, 0, 0, 0, 6080, 6076, 1, 0, 0, 0, 6080, 6081, 1, 0, 0, 0, 6081, 559, 1, 0, 0, 0, 6082, 6085, 3, 562, 281, 0, 6083, 6085, 3, 556, 278, 0, 6084, 6082, 1, 0, 0, 0, 6084, 6083, 1, 0, 0, 0, 6085, 561, 1, 0, 0, 0, 6086, 6096, 5, 88, 0, 0, 6087, 6089, 5, 30, 0, 0, 6088, 6087, 1, 0, 0, 0, 6088, 6089, 1, 0, 0, 0, 6089, 6091, 1, 0, 0, 0, 6090, 6092, 3, 574, 287, 0, 6091, 6090, 1, 0, 0, 0, 6091, 6092, 1, 0, 0, 0, 6092, 6097, 1, 0, 0, 0, 6093, 6095, 3, 578, 289, 0, 6094, 6093, 1, 0, 0, 0, 6094, 6095, 1, 0, 0, 0, 6095, 6097, 1, 0, 0, 0, 6096, 6088, 1, 0, 0, 0, 6096, 6094, 1, 0, 0, 0, 6097, 6098, 1, 0, 0, 0, 6098, 6109, 3, 940, 470, 0, 6099, 6109, 3, 602, 301, 0, 6100, 6101, 5, 92, 0, 0, 6101, 6109, 3, 620, 310, 0, 6102, 6103, 3, 556, 278, 0, 6103, 6106, 3, 564, 282, 0, 6104, 6107, 3, 562, 281, 0, 6105, 6107, 3, 556, 278, 0, 6106, 6104, 1, 0, 0, 0, 6106, 6105, 1, 0, 0, 0, 6107, 6109, 1, 0, 0, 0, 6108, 6086, 1, 0, 0, 0, 6108, 6099, 1, 0, 0, 0, 6108, 6100, 1, 0, 0, 0, 6108, 6102, 1, 0, 0, 0, 6109, 6117, 1, 0, 0, 0, 6110, 6113, 3, 564, 282, 0, 6111, 6114, 3, 562, 281, 0, 6112, 6114, 3, 556, 278, 0, 6113, 6111, 1, 0, 0, 0, 6113, 6112, 1, 0, 0, 0, 6114, 6116, 1, 0, 0, 0, 6115, 6110, 1, 0, 0, 0, 6116, 6119, 1, 0, 0, 0, 6117, 6115, 1, 0, 0, 0, 6117, 6118, 1, 0, 0, 0, 6118, 563, 1, 0, 0, 0, 6119, 6117, 1, 0, 0, 0, 6120, 6122, 7, 80, 0, 0, 6121, 6123, 7, 81, 0, 0, 6122, 6121, 1, 0, 0, 0, 6122, 6123, 1, 0, 0, 0, 6123, 565, 1, 0, 0, 0, 6124, 6126, 5, 105, 0, 0, 6125, 6127, 5, 303, 0, 0, 6126, 6125, 1, 0, 0, 0, 6126, 6127, 1, 0, 0, 0, 6127, 6128, 1, 0, 0, 0, 6128, 6133, 3, 568, 284, 0, 6129, 6130, 5, 6, 0, 0, 6130, 6132, 3, 568, 284, 0, 6131, 6129, 1, 0, 0, 0, 6132, 6135, 1, 0, 0, 0, 6133, 6131, 1, 0, 0, 0, 6133, 6134, 1, 0, 0, 0, 6134, 567, 1, 0, 0, 0, 6135, 6133, 1, 0, 0, 0, 6136, 6138, 3, 826, 413, 0, 6137, 6139, 3, 138, 69, 0, 6138, 6137, 1, 0, 0, 0, 6138, 6139, 1, 0, 0, 0, 6139, 6140, 1, 0, 0, 0, 6140, 6145, 5, 36, 0, 0, 6141, 6143, 5, 77, 0, 0, 6142, 6141, 1, 0, 0, 0, 6142, 6143, 1, 0, 0, 0, 6143, 6144, 1, 0, 0, 0, 6144, 6146, 5, 259, 0, 0, 6145, 6142, 1, 0, 0, 0, 6145, 6146, 1, 0, 0, 0, 6146, 6147, 1, 0, 0, 0, 6147, 6148, 5, 2, 0, 0, 6148, 6149, 3, 524, 262, 0, 6149, 6151, 5, 3, 0, 0, 6150, 6152, 3, 570, 285, 0, 6151, 6150, 1, 0, 0, 0, 6151, 6152, 1, 0, 0, 0, 6152, 6154, 1, 0, 0, 0, 6153, 6155, 3, 572, 286, 0, 6154, 6153, 1, 0, 0, 0, 6154, 6155, 1, 0, 0, 0, 6155, 569, 1, 0, 0, 0, 6156, 6157, 5, 325, 0, 0, 6157, 6158, 7, 82, 0, 0, 6158, 6159, 5, 207, 0, 0, 6159, 6160, 5, 147, 0, 0, 6160, 6161, 3, 142, 71, 0, 6161, 6162, 5, 333, 0, 0, 6162, 6163, 3, 806, 403, 0, 6163, 571, 1, 0, 0, 0, 6164, 6165, 5, 173, 0, 0, 6165, 6166, 3, 142, 71, 0, 6166, 6167, 5, 333, 0, 0, 6167, 6173, 3, 806, 403, 0, 6168, 6169, 5, 94, 0, 0, 6169, 6170, 3, 826, 413, 0, 6170, 6171, 5, 53, 0, 0, 6171, 6172, 3, 826, 413, 0, 6172, 6174, 1, 0, 0, 0, 6173, 6168, 1, 0, 0, 0, 6173, 6174, 1, 0, 0, 0, 6174, 6175, 1, 0, 0, 0, 6175, 6176, 5, 100, 0, 0, 6176, 6177, 3, 806, 403, 0, 6177, 573, 1, 0, 0, 0, 6178, 6184, 5, 71, 0, 0, 6179, 6181, 5, 346, 0, 0, 6180, 6179, 1, 0, 0, 0, 6180, 6181, 1, 0, 0, 0, 6181, 6182, 1, 0, 0, 0, 6182, 6185, 3, 576, 288, 0, 6183, 6185, 3, 728, 364, 0, 6184, 6180, 1, 0, 0, 0, 6184, 6183, 1, 0, 0, 0, 6185, 575, 1, 0, 0, 0, 6186, 6188, 7, 21, 0, 0, 6187, 6186, 1, 0, 0, 0, 6187, 6188, 1, 0, 0, 0, 6188, 6189, 1, 0, 0, 0, 6189, 6191, 7, 22, 0, 0, 6190, 6192, 5, 92, 0, 0, 6191, 6190, 1, 0, 0, 0, 6191, 6192, 1, 0, 0, 0, 6192, 6193, 1, 0, 0, 0, 6193, 6202, 3, 776, 388, 0, 6194, 6196, 5, 367, 0, 0, 6195, 6194, 1, 0, 0, 0, 6195, 6196, 1, 0, 0, 0, 6196, 6198, 1, 0, 0, 0, 6197, 6199, 5, 92, 0, 0, 6198, 6197, 1, 0, 0, 0, 6198, 6199, 1, 0, 0, 0, 6199, 6200, 1, 0, 0, 0, 6200, 6202, 3, 776, 388, 0, 6201, 6187, 1, 0, 0, 0, 6201, 6195, 1, 0, 0, 0, 6202, 577, 1, 0, 0, 0, 6203, 6206, 5, 56, 0, 0, 6204, 6205, 5, 80, 0, 0, 6205, 6207, 3, 528, 264, 0, 6206, 6204, 1, 0, 0, 0, 6206, 6207, 1, 0, 0, 0, 6207, 579, 1, 0, 0, 0, 6208, 6209, 5, 83, 0, 0, 6209, 6210, 5, 147, 0, 0, 6210, 6215, 3, 582, 291, 0, 6211, 6212, 5, 6, 0, 0, 6212, 6214, 3, 582, 291, 0, 6213, 6211, 1, 0, 0, 0, 6214, 6217, 1, 0, 0, 0, 6215, 6213, 1, 0, 0, 0, 6215, 6216, 1, 0, 0, 0, 6216, 581, 1, 0, 0, 0, 6217, 6215, 1, 0, 0, 0, 6218, 6222, 3, 736, 368, 0, 6219, 6220, 5, 100, 0, 0, 6220, 6223, 3, 724, 362, 0, 6221, 6223, 7, 56, 0, 0, 6222, 6219, 1, 0, 0, 0, 6222, 6221, 1, 0, 0, 0, 6222, 6223, 1, 0, 0, 0, 6223, 6226, 1, 0, 0, 0, 6224, 6225, 5, 273, 0, 0, 6225, 6227, 7, 57, 0, 0, 6226, 6224, 1, 0, 0, 0, 6226, 6227, 1, 0, 0, 0, 6227, 583, 1, 0, 0, 0, 6228, 6230, 3, 590, 295, 0, 6229, 6231, 3, 588, 294, 0, 6230, 6229, 1, 0, 0, 0, 6230, 6231, 1, 0, 0, 0, 6231, 6240, 1, 0, 0, 0, 6232, 6235, 3, 586, 293, 0, 6233, 6235, 3, 588, 294, 0, 6234, 6232, 1, 0, 0, 0, 6234, 6233, 1, 0, 0, 0, 6235, 6237, 1, 0, 0, 0, 6236, 6238, 3, 590, 295, 0, 6237, 6236, 1, 0, 0, 0, 6237, 6238, 1, 0, 0, 0, 6238, 6240, 1, 0, 0, 0, 6239, 6228, 1, 0, 0, 0, 6239, 6234, 1, 0, 0, 0, 6240, 585, 1, 0, 0, 0, 6241, 6244, 5, 74, 0, 0, 6242, 6245, 3, 670, 335, 0, 6243, 6245, 5, 30, 0, 0, 6244, 6242, 1, 0, 0, 0, 6244, 6243, 1, 0, 0, 0, 6245, 6248, 1, 0, 0, 0, 6246, 6247, 5, 6, 0, 0, 6247, 6249, 3, 670, 335, 0, 6248, 6246, 1, 0, 0, 0, 6248, 6249, 1, 0, 0, 0, 6249, 587, 1, 0, 0, 0, 6250, 6251, 5, 61, 0, 0, 6251, 6253, 7, 83, 0, 0, 6252, 6254, 3, 592, 296, 0, 6253, 6252, 1, 0, 0, 0, 6253, 6254, 1, 0, 0, 0, 6254, 6255, 1, 0, 0, 0, 6255, 6259, 7, 84, 0, 0, 6256, 6260, 5, 81, 0, 0, 6257, 6258, 5, 105, 0, 0, 6258, 6260, 5, 467, 0, 0, 6259, 6256, 1, 0, 0, 0, 6259, 6257, 1, 0, 0, 0, 6260, 589, 1, 0, 0, 0, 6261, 6266, 5, 79, 0, 0, 6262, 6263, 3, 592, 296, 0, 6263, 6264, 7, 84, 0, 0, 6264, 6267, 1, 0, 0, 0, 6265, 6267, 3, 670, 335, 0, 6266, 6262, 1, 0, 0, 0, 6266, 6265, 1, 0, 0, 0, 6267, 591, 1, 0, 0, 0, 6268, 6269, 7, 30, 0, 0, 6269, 6272, 7, 85, 0, 0, 6270, 6272, 3, 678, 339, 0, 6271, 6268, 1, 0, 0, 0, 6271, 6270, 1, 0, 0, 0, 6272, 593, 1, 0, 0, 0, 6273, 6274, 5, 66, 0, 0, 6274, 6276, 5, 147, 0, 0, 6275, 6277, 7, 81, 0, 0, 6276, 6275, 1, 0, 0, 0, 6276, 6277, 1, 0, 0, 0, 6277, 6278, 1, 0, 0, 0, 6278, 6279, 3, 596, 298, 0, 6279, 595, 1, 0, 0, 0, 6280, 6285, 3, 598, 299, 0, 6281, 6282, 5, 6, 0, 0, 6282, 6284, 3, 598, 299, 0, 6283, 6281, 1, 0, 0, 0, 6284, 6287, 1, 0, 0, 0, 6285, 6283, 1, 0, 0, 0, 6285, 6286, 1, 0, 0, 0, 6286, 597, 1, 0, 0, 0, 6287, 6285, 1, 0, 0, 0, 6288, 6312, 3, 736, 368, 0, 6289, 6290, 5, 2, 0, 0, 6290, 6312, 5, 3, 0, 0, 6291, 6293, 7, 86, 0, 0, 6292, 6291, 1, 0, 0, 0, 6292, 6293, 1, 0, 0, 0, 6293, 6294, 1, 0, 0, 0, 6294, 6295, 5, 2, 0, 0, 6295, 6300, 3, 736, 368, 0, 6296, 6297, 5, 6, 0, 0, 6297, 6299, 3, 736, 368, 0, 6298, 6296, 1, 0, 0, 0, 6299, 6302, 1, 0, 0, 0, 6300, 6298, 1, 0, 0, 0, 6300, 6301, 1, 0, 0, 0, 6301, 6303, 1, 0, 0, 0, 6302, 6300, 1, 0, 0, 0, 6303, 6304, 5, 3, 0, 0, 6304, 6312, 1, 0, 0, 0, 6305, 6306, 5, 470, 0, 0, 6306, 6307, 5, 471, 0, 0, 6307, 6308, 5, 2, 0, 0, 6308, 6309, 3, 596, 298, 0, 6309, 6310, 5, 3, 0, 0, 6310, 6312, 1, 0, 0, 0, 6311, 6288, 1, 0, 0, 0, 6311, 6289, 1, 0, 0, 0, 6311, 6292, 1, 0, 0, 0, 6311, 6305, 1, 0, 0, 0, 6312, 599, 1, 0, 0, 0, 6313, 6323, 5, 62, 0, 0, 6314, 6315, 5, 269, 0, 0, 6315, 6317, 5, 245, 0, 0, 6316, 6314, 1, 0, 0, 0, 6316, 6317, 1, 0, 0, 0, 6317, 6318, 1, 0, 0, 0, 6318, 6324, 5, 369, 0, 0, 6319, 6321, 5, 245, 0, 0, 6320, 6319, 1, 0, 0, 0, 6320, 6321, 1, 0, 0, 0, 6321, 6322, 1, 0, 0, 0, 6322, 6324, 5, 334, 0, 0, 6323, 6316, 1, 0, 0, 0, 6323, 6320, 1, 0, 0, 0, 6324, 6327, 1, 0, 0, 0, 6325, 6326, 5, 275, 0, 0, 6326, 6328, 3, 764, 382, 0, 6327, 6325, 1, 0, 0, 0, 6327, 6328, 1, 0, 0, 0, 6328, 6332, 1, 0, 0, 0, 6329, 6333, 5, 272, 0, 0, 6330, 6331, 5, 465, 0, 0, 6331, 6333, 5, 466, 0, 0, 6332, 6329, 1, 0, 0, 0, 6332, 6330, 1, 0, 0, 0, 6332, 6333, 1, 0, 0, 0, 6333, 6335, 1, 0, 0, 0, 6334, 6313, 1, 0, 0, 0, 6335, 6336, 1, 0, 0, 0, 6336, 6334, 1, 0, 0, 0, 6336, 6337, 1, 0, 0, 0, 6337, 6342, 1, 0, 0, 0, 6338, 6339, 5, 62, 0, 0, 6339, 6340, 5, 300, 0, 0, 6340, 6342, 5, 81, 0, 0, 6341, 6334, 1, 0, 0, 0, 6341, 6338, 1, 0, 0, 0, 6342, 601, 1, 0, 0, 0, 6343, 6344, 5, 422, 0, 0, 6344, 6349, 3, 528, 264, 0, 6345, 6346, 5, 6, 0, 0, 6346, 6348, 3, 528, 264, 0, 6347, 6345, 1, 0, 0, 0, 6348, 6351, 1, 0, 0, 0, 6349, 6347, 1, 0, 0, 0, 6349, 6350, 1, 0, 0, 0, 6350, 603, 1, 0, 0, 0, 6351, 6349, 1, 0, 0, 0, 6352, 6353, 5, 64, 0, 0, 6353, 6354, 3, 606, 303, 0, 6354, 605, 1, 0, 0, 0, 6355, 6360, 3, 608, 304, 0, 6356, 6357, 5, 6, 0, 0, 6357, 6359, 3, 608, 304, 0, 6358, 6356, 1, 0, 0, 0, 6359, 6362, 1, 0, 0, 0, 6360, 6358, 1, 0, 0, 0, 6360, 6361, 1, 0, 0, 0, 6361, 607, 1, 0, 0, 0, 6362, 6360, 1, 0, 0, 0, 6363, 6378, 3, 620, 310, 0, 6364, 6366, 5, 81, 0, 0, 6365, 6364, 1, 0, 0, 0, 6365, 6366, 1, 0, 0, 0, 6366, 6367, 1, 0, 0, 0, 6367, 6369, 3, 782, 391, 0, 6368, 6370, 5, 9, 0, 0, 6369, 6368, 1, 0, 0, 0, 6369, 6370, 1, 0, 0, 0, 6370, 6372, 1, 0, 0, 0, 6371, 6373, 3, 142, 71, 0, 6372, 6371, 1, 0, 0, 0, 6372, 6373, 1, 0, 0, 0, 6373, 6375, 1, 0, 0, 0, 6374, 6376, 3, 634, 317, 0, 6375, 6374, 1, 0, 0, 0, 6375, 6376, 1, 0, 0, 0, 6376, 6378, 1, 0, 0, 0, 6377, 6363, 1, 0, 0, 0, 6377, 6365, 1, 0, 0, 0, 6378, 6380, 1, 0, 0, 0, 6379, 6381, 3, 612, 306, 0, 6380, 6379, 1, 0, 0, 0, 6380, 6381, 1, 0, 0, 0, 6381, 6383, 1, 0, 0, 0, 6382, 6384, 3, 628, 314, 0, 6383, 6382, 1, 0, 0, 0, 6383, 6384, 1, 0, 0, 0, 6384, 6414, 1, 0, 0, 0, 6385, 6387, 5, 72, 0, 0, 6386, 6385, 1, 0, 0, 0, 6386, 6387, 1, 0, 0, 0, 6387, 6388, 1, 0, 0, 0, 6388, 6414, 3, 610, 305, 0, 6389, 6390, 5, 2, 0, 0, 6390, 6407, 3, 608, 304, 0, 6391, 6392, 5, 110, 0, 0, 6392, 6393, 5, 118, 0, 0, 6393, 6408, 3, 608, 304, 0, 6394, 6396, 5, 121, 0, 0, 6395, 6397, 3, 616, 308, 0, 6396, 6395, 1, 0, 0, 0, 6396, 6397, 1, 0, 0, 0, 6397, 6398, 1, 0, 0, 0, 6398, 6399, 5, 118, 0, 0, 6399, 6408, 3, 608, 304, 0, 6400, 6402, 3, 616, 308, 0, 6401, 6400, 1, 0, 0, 0, 6401, 6402, 1, 0, 0, 0, 6402, 6403, 1, 0, 0, 0, 6403, 6404, 5, 118, 0, 0, 6404, 6405, 3, 608, 304, 0, 6405, 6406, 3, 618, 309, 0, 6406, 6408, 1, 0, 0, 0, 6407, 6391, 1, 0, 0, 0, 6407, 6394, 1, 0, 0, 0, 6407, 6401, 1, 0, 0, 0, 6407, 6408, 1, 0, 0, 0, 6408, 6409, 1, 0, 0, 0, 6409, 6411, 5, 3, 0, 0, 6410, 6412, 3, 612, 306, 0, 6411, 6410, 1, 0, 0, 0, 6411, 6412, 1, 0, 0, 0, 6412, 6414, 1, 0, 0, 0, 6413, 6377, 1, 0, 0, 0, 6413, 6386, 1, 0, 0, 0, 6413, 6389, 1, 0, 0, 0, 6414, 6433, 1, 0, 0, 0, 6415, 6416, 5, 110, 0, 0, 6416, 6417, 5, 118, 0, 0, 6417, 6432, 3, 608, 304, 0, 6418, 6420, 5, 121, 0, 0, 6419, 6421, 3, 616, 308, 0, 6420, 6419, 1, 0, 0, 0, 6420, 6421, 1, 0, 0, 0, 6421, 6422, 1, 0, 0, 0, 6422, 6423, 5, 118, 0, 0, 6423, 6432, 3, 608, 304, 0, 6424, 6426, 3, 616, 308, 0, 6425, 6424, 1, 0, 0, 0, 6425, 6426, 1, 0, 0, 0, 6426, 6427, 1, 0, 0, 0, 6427, 6428, 5, 118, 0, 0, 6428, 6429, 3, 608, 304, 0, 6429, 6430, 3, 618, 309, 0, 6430, 6432, 1, 0, 0, 0, 6431, 6415, 1, 0, 0, 0, 6431, 6418, 1, 0, 0, 0, 6431, 6425, 1, 0, 0, 0, 6432, 6435, 1, 0, 0, 0, 6433, 6431, 1, 0, 0, 0, 6433, 6434, 1, 0, 0, 0, 6434, 609, 1, 0, 0, 0, 6435, 6433, 1, 0, 0, 0, 6436, 6438, 3, 642, 321, 0, 6437, 6439, 3, 612, 306, 0, 6438, 6437, 1, 0, 0, 0, 6438, 6439, 1, 0, 0, 0, 6439, 6449, 1, 0, 0, 0, 6440, 6442, 3, 630, 315, 0, 6441, 6443, 3, 614, 307, 0, 6442, 6441, 1, 0, 0, 0, 6442, 6443, 1, 0, 0, 0, 6443, 6449, 1, 0, 0, 0, 6444, 6446, 3, 556, 278, 0, 6445, 6447, 3, 612, 306, 0, 6446, 6445, 1, 0, 0, 0, 6446, 6447, 1, 0, 0, 0, 6447, 6449, 1, 0, 0, 0, 6448, 6436, 1, 0, 0, 0, 6448, 6440, 1, 0, 0, 0, 6448, 6444, 1, 0, 0, 0, 6449, 611, 1, 0, 0, 0, 6450, 6452, 5, 36, 0, 0, 6451, 6450, 1, 0, 0, 0, 6451, 6452, 1, 0, 0, 0, 6452, 6453, 1, 0, 0, 0, 6453, 6458, 3, 826, 413, 0, 6454, 6455, 5, 2, 0, 0, 6455, 6456, 3, 788, 394, 0, 6456, 6457, 5, 3, 0, 0, 6457, 6459, 1, 0, 0, 0, 6458, 6454, 1, 0, 0, 0, 6458, 6459, 1, 0, 0, 0, 6459, 613, 1, 0, 0, 0, 6460, 6473, 3, 612, 306, 0, 6461, 6463, 5, 36, 0, 0, 6462, 6464, 3, 826, 413, 0, 6463, 6462, 1, 0, 0, 0, 6463, 6464, 1, 0, 0, 0, 6464, 6467, 1, 0, 0, 0, 6465, 6467, 3, 826, 413, 0, 6466, 6461, 1, 0, 0, 0, 6466, 6465, 1, 0, 0, 0, 6467, 6468, 1, 0, 0, 0, 6468, 6469, 5, 2, 0, 0, 6469, 6470, 3, 638, 319, 0, 6470, 6471, 5, 3, 0, 0, 6471, 6473, 1, 0, 0, 0, 6472, 6460, 1, 0, 0, 0, 6472, 6466, 1, 0, 0, 0, 6473, 615, 1, 0, 0, 0, 6474, 6476, 7, 87, 0, 0, 6475, 6477, 5, 123, 0, 0, 6476, 6475, 1, 0, 0, 0, 6476, 6477, 1, 0, 0, 0, 6477, 617, 1, 0, 0, 0, 6478, 6479, 5, 100, 0, 0, 6479, 6483, 3, 138, 69, 0, 6480, 6481, 5, 80, 0, 0, 6481, 6483, 3, 670, 335, 0, 6482, 6478, 1, 0, 0, 0, 6482, 6480, 1, 0, 0, 0, 6483, 619, 1, 0, 0, 0, 6484, 6500, 3, 316, 158, 0, 6485, 6491, 5, 81, 0, 0, 6486, 6492, 3, 778, 389, 0, 6487, 6488, 5, 2, 0, 0, 6488, 6489, 3, 778, 389, 0, 6489, 6490, 5, 3, 0, 0, 6490, 6492, 1, 0, 0, 0, 6491, 6486, 1, 0, 0, 0, 6491, 6487, 1, 0, 0, 0, 6492, 6500, 1, 0, 0, 0, 6493, 6494, 5, 68, 0, 0, 6494, 6497, 5, 323, 0, 0, 6495, 6498, 3, 794, 397, 0, 6496, 6498, 5, 111, 0, 0, 6497, 6495, 1, 0, 0, 0, 6497, 6496, 1, 0, 0, 0, 6498, 6500, 1, 0, 0, 0, 6499, 6484, 1, 0, 0, 0, 6499, 6485, 1, 0, 0, 0, 6499, 6493, 1, 0, 0, 0, 6500, 621, 1, 0, 0, 0, 6501, 6502, 5, 92, 0, 0, 6502, 6504, 3, 316, 158, 0, 6503, 6505, 3, 138, 69, 0, 6504, 6503, 1, 0, 0, 0, 6504, 6505, 1, 0, 0, 0, 6505, 6507, 1, 0, 0, 0, 6506, 6508, 3, 634, 317, 0, 6507, 6506, 1, 0, 0, 0, 6507, 6508, 1, 0, 0, 0, 6508, 6526, 1, 0, 0, 0, 6509, 6510, 5, 92, 0, 0, 6510, 6516, 5, 81, 0, 0, 6511, 6517, 3, 778, 389, 0, 6512, 6513, 5, 2, 0, 0, 6513, 6514, 3, 778, 389, 0, 6514, 6515, 5, 3, 0, 0, 6515, 6517, 1, 0, 0, 0, 6516, 6511, 1, 0, 0, 0, 6516, 6512, 1, 0, 0, 0, 6517, 6526, 1, 0, 0, 0, 6518, 6519, 5, 350, 0, 0, 6519, 6520, 5, 68, 0, 0, 6520, 6523, 5, 323, 0, 0, 6521, 6524, 3, 794, 397, 0, 6522, 6524, 5, 111, 0, 0, 6523, 6521, 1, 0, 0, 0, 6523, 6522, 1, 0, 0, 0, 6524, 6526, 1, 0, 0, 0, 6525, 6501, 1, 0, 0, 0, 6525, 6509, 1, 0, 0, 0, 6525, 6518, 1, 0, 0, 0, 6526, 623, 1, 0, 0, 0, 6527, 6532, 3, 620, 310, 0, 6528, 6529, 5, 6, 0, 0, 6529, 6531, 3, 620, 310, 0, 6530, 6528, 1, 0, 0, 0, 6531, 6534, 1, 0, 0, 0, 6532, 6530, 1, 0, 0, 0, 6532, 6533, 1, 0, 0, 0, 6533, 625, 1, 0, 0, 0, 6534, 6532, 1, 0, 0, 0, 6535, 6540, 3, 620, 310, 0, 6536, 6538, 5, 36, 0, 0, 6537, 6536, 1, 0, 0, 0, 6537, 6538, 1, 0, 0, 0, 6538, 6539, 1, 0, 0, 0, 6539, 6541, 3, 826, 413, 0, 6540, 6537, 1, 0, 0, 0, 6540, 6541, 1, 0, 0, 0, 6541, 627, 1, 0, 0, 0, 6542, 6543, 5, 472, 0, 0, 6543, 6544, 3, 814, 407, 0, 6544, 6550, 3, 528, 264, 0, 6545, 6546, 5, 310, 0, 0, 6546, 6547, 5, 2, 0, 0, 6547, 6548, 3, 670, 335, 0, 6548, 6549, 5, 3, 0, 0, 6549, 6551, 1, 0, 0, 0, 6550, 6545, 1, 0, 0, 0, 6550, 6551, 1, 0, 0, 0, 6551, 629, 1, 0, 0, 0, 6552, 6567, 3, 684, 342, 0, 6553, 6554, 5, 320, 0, 0, 6554, 6555, 5, 64, 0, 0, 6555, 6556, 5, 2, 0, 0, 6556, 6561, 3, 632, 316, 0, 6557, 6558, 5, 6, 0, 0, 6558, 6560, 3, 632, 316, 0, 6559, 6557, 1, 0, 0, 0, 6560, 6563, 1, 0, 0, 0, 6561, 6559, 1, 0, 0, 0, 6561, 6562, 1, 0, 0, 0, 6562, 6564, 1, 0, 0, 0, 6563, 6561, 1, 0, 0, 0, 6564, 6565, 5, 3, 0, 0, 6565, 6567, 1, 0, 0, 0, 6566, 6552, 1, 0, 0, 0, 6566, 6553, 1, 0, 0, 0, 6567, 6570, 1, 0, 0, 0, 6568, 6569, 5, 105, 0, 0, 6569, 6571, 5, 473, 0, 0, 6570, 6568, 1, 0, 0, 0, 6570, 6571, 1, 0, 0, 0, 6571, 631, 1, 0, 0, 0, 6572, 6578, 3, 684, 342, 0, 6573, 6574, 5, 36, 0, 0, 6574, 6575, 5, 2, 0, 0, 6575, 6576, 3, 638, 319, 0, 6576, 6577, 5, 3, 0, 0, 6577, 6579, 1, 0, 0, 0, 6578, 6573, 1, 0, 0, 0, 6578, 6579, 1, 0, 0, 0, 6579, 633, 1, 0, 0, 0, 6580, 6581, 5, 103, 0, 0, 6581, 6582, 3, 736, 368, 0, 6582, 635, 1, 0, 0, 0, 6583, 6588, 5, 103, 0, 0, 6584, 6585, 5, 434, 0, 0, 6585, 6586, 5, 275, 0, 0, 6586, 6589, 3, 826, 413, 0, 6587, 6589, 3, 670, 335, 0, 6588, 6584, 1, 0, 0, 0, 6588, 6587, 1, 0, 0, 0, 6589, 637, 1, 0, 0, 0, 6590, 6595, 3, 640, 320, 0, 6591, 6592, 5, 6, 0, 0, 6592, 6594, 3, 640, 320, 0, 6593, 6591, 1, 0, 0, 0, 6594, 6597, 1, 0, 0, 0, 6595, 6593, 1, 0, 0, 0, 6595, 6596, 1, 0, 0, 0, 6596, 639, 1, 0, 0, 0, 6597, 6595, 1, 0, 0, 0, 6598, 6599, 3, 826, 413, 0, 6599, 6601, 3, 648, 324, 0, 6600, 6602, 3, 90, 45, 0, 6601, 6600, 1, 0, 0, 0, 6601, 6602, 1, 0, 0, 0, 6602, 641, 1, 0, 0, 0, 6603, 6604, 5, 474, 0, 0, 6604, 6618, 5, 2, 0, 0, 6605, 6606, 5, 476, 0, 0, 6606, 6607, 5, 2, 0, 0, 6607, 6612, 3, 646, 323, 0, 6608, 6609, 5, 6, 0, 0, 6609, 6611, 3, 646, 323, 0, 6610, 6608, 1, 0, 0, 0, 6611, 6614, 1, 0, 0, 0, 6612, 6610, 1, 0, 0, 0, 6612, 6613, 1, 0, 0, 0, 6613, 6615, 1, 0, 0, 0, 6614, 6612, 1, 0, 0, 0, 6615, 6616, 5, 3, 0, 0, 6616, 6617, 5, 6, 0, 0, 6617, 6619, 1, 0, 0, 0, 6618, 6605, 1, 0, 0, 0, 6618, 6619, 1, 0, 0, 0, 6619, 6620, 1, 0, 0, 0, 6620, 6621, 3, 678, 339, 0, 6621, 6622, 3, 694, 347, 0, 6622, 6623, 5, 475, 0, 0, 6623, 6628, 3, 644, 322, 0, 6624, 6625, 5, 6, 0, 0, 6625, 6627, 3, 644, 322, 0, 6626, 6624, 1, 0, 0, 0, 6627, 6630, 1, 0, 0, 0, 6628, 6626, 1, 0, 0, 0, 6628, 6629, 1, 0, 0, 0, 6629, 6631, 1, 0, 0, 0, 6630, 6628, 1, 0, 0, 0, 6631, 6632, 5, 3, 0, 0, 6632, 643, 1, 0, 0, 0, 6633, 6652, 3, 826, 413, 0, 6634, 6648, 3, 648, 324, 0, 6635, 6638, 5, 53, 0, 0, 6636, 6638, 3, 836, 418, 0, 6637, 6635, 1, 0, 0, 0, 6637, 6636, 1, 0, 0, 0, 6638, 6639, 1, 0, 0, 0, 6639, 6645, 3, 670, 335, 0, 6640, 6642, 5, 77, 0, 0, 6641, 6640, 1, 0, 0, 0, 6641, 6642, 1, 0, 0, 0, 6642, 6643, 1, 0, 0, 0, 6643, 6645, 5, 78, 0, 0, 6644, 6637, 1, 0, 0, 0, 6644, 6641, 1, 0, 0, 0, 6645, 6646, 1, 0, 0, 0, 6646, 6644, 1, 0, 0, 0, 6646, 6647, 1, 0, 0, 0, 6647, 6649, 1, 0, 0, 0, 6648, 6644, 1, 0, 0, 0, 6648, 6649, 1, 0, 0, 0, 6649, 6653, 1, 0, 0, 0, 6650, 6651, 5, 62, 0, 0, 6651, 6653, 5, 473, 0, 0, 6652, 6634, 1, 0, 0, 0, 6652, 6650, 1, 0, 0, 0, 6653, 645, 1, 0, 0, 0, 6654, 6655, 3, 678, 339, 0, 6655, 6656, 5, 36, 0, 0, 6656, 6657, 3, 832, 416, 0, 6657, 6661, 1, 0, 0, 0, 6658, 6659, 5, 53, 0, 0, 6659, 6661, 3, 678, 339, 0, 6660, 6654, 1, 0, 0, 0, 6660, 6658, 1, 0, 0, 0, 6661, 647, 1, 0, 0, 0, 6662, 6664, 5, 415, 0, 0, 6663, 6662, 1, 0, 0, 0, 6663, 6664, 1, 0, 0, 0, 6664, 6665, 1, 0, 0, 0, 6665, 6682, 3, 650, 325, 0, 6666, 6668, 5, 4, 0, 0, 6667, 6669, 5, 574, 0, 0, 6668, 6667, 1, 0, 0, 0, 6668, 6669, 1, 0, 0, 0, 6669, 6670, 1, 0, 0, 0, 6670, 6672, 5, 5, 0, 0, 6671, 6666, 1, 0, 0, 0, 6672, 6675, 1, 0, 0, 0, 6673, 6671, 1, 0, 0, 0, 6673, 6674, 1, 0, 0, 0, 6674, 6683, 1, 0, 0, 0, 6675, 6673, 1, 0, 0, 0, 6676, 6680, 5, 35, 0, 0, 6677, 6678, 5, 4, 0, 0, 6678, 6679, 5, 574, 0, 0, 6679, 6681, 5, 5, 0, 0, 6680, 6677, 1, 0, 0, 0, 6680, 6681, 1, 0, 0, 0, 6681, 6683, 1, 0, 0, 0, 6682, 6673, 1, 0, 0, 0, 6682, 6676, 1, 0, 0, 0, 6683, 6689, 1, 0, 0, 0, 6684, 6685, 3, 784, 392, 0, 6685, 6686, 5, 27, 0, 0, 6686, 6687, 7, 88, 0, 0, 6687, 6689, 1, 0, 0, 0, 6688, 6663, 1, 0, 0, 0, 6688, 6684, 1, 0, 0, 0, 6689, 649, 1, 0, 0, 0, 6690, 6692, 3, 828, 414, 0, 6691, 6693, 3, 312, 156, 0, 6692, 6691, 1, 0, 0, 0, 6692, 6693, 1, 0, 0, 0, 6693, 6695, 1, 0, 0, 0, 6694, 6696, 3, 528, 264, 0, 6695, 6694, 1, 0, 0, 0, 6695, 6696, 1, 0, 0, 0, 6696, 6706, 1, 0, 0, 0, 6697, 6706, 3, 652, 326, 0, 6698, 6703, 5, 403, 0, 0, 6699, 6701, 3, 664, 332, 0, 6700, 6699, 1, 0, 0, 0, 6700, 6701, 1, 0, 0, 0, 6701, 6704, 1, 0, 0, 0, 6702, 6704, 3, 656, 328, 0, 6703, 6700, 1, 0, 0, 0, 6703, 6702, 1, 0, 0, 0, 6704, 6706, 1, 0, 0, 0, 6705, 6690, 1, 0, 0, 0, 6705, 6697, 1, 0, 0, 0, 6705, 6698, 1, 0, 0, 0, 6706, 651, 1, 0, 0, 0, 6707, 6712, 3, 654, 327, 0, 6708, 6712, 3, 658, 329, 0, 6709, 6712, 3, 660, 330, 0, 6710, 6712, 3, 662, 331, 0, 6711, 6707, 1, 0, 0, 0, 6711, 6708, 1, 0, 0, 0, 6711, 6709, 1, 0, 0, 0, 6711, 6710, 1, 0, 0, 0, 6712, 653, 1, 0, 0, 0, 6713, 6730, 5, 401, 0, 0, 6714, 6730, 5, 402, 0, 0, 6715, 6730, 5, 416, 0, 0, 6716, 6730, 5, 388, 0, 0, 6717, 6730, 5, 413, 0, 0, 6718, 6720, 5, 398, 0, 0, 6719, 6721, 3, 656, 328, 0, 6720, 6719, 1, 0, 0, 0, 6720, 6721, 1, 0, 0, 0, 6721, 6730, 1, 0, 0, 0, 6722, 6723, 5, 190, 0, 0, 6723, 6730, 5, 412, 0, 0, 6724, 6726, 7, 89, 0, 0, 6725, 6727, 3, 528, 264, 0, 6726, 6725, 1, 0, 0, 0, 6726, 6727, 1, 0, 0, 0, 6727, 6730, 1, 0, 0, 0, 6728, 6730, 5, 390, 0, 0, 6729, 6713, 1, 0, 0, 0, 6729, 6714, 1, 0, 0, 0, 6729, 6715, 1, 0, 0, 0, 6729, 6716, 1, 0, 0, 0, 6729, 6717, 1, 0, 0, 0, 6729, 6718, 1, 0, 0, 0, 6729, 6722, 1, 0, 0, 0, 6729, 6724, 1, 0, 0, 0, 6729, 6728, 1, 0, 0, 0, 6730, 655, 1, 0, 0, 0, 6731, 6732, 5, 2, 0, 0, 6732, 6733, 5, 574, 0, 0, 6733, 6734, 5, 3, 0, 0, 6734, 657, 1, 0, 0, 0, 6735, 6737, 5, 389, 0, 0, 6736, 6738, 5, 374, 0, 0, 6737, 6736, 1, 0, 0, 0, 6737, 6738, 1, 0, 0, 0, 6738, 6740, 1, 0, 0, 0, 6739, 6741, 3, 528, 264, 0, 6740, 6739, 1, 0, 0, 0, 6740, 6741, 1, 0, 0, 0, 6741, 659, 1, 0, 0, 0, 6742, 6744, 7, 90, 0, 0, 6743, 6745, 5, 374, 0, 0, 6744, 6743, 1, 0, 0, 0, 6744, 6745, 1, 0, 0, 0, 6745, 6753, 1, 0, 0, 0, 6746, 6753, 5, 423, 0, 0, 6747, 6748, 5, 405, 0, 0, 6748, 6750, 7, 91, 0, 0, 6749, 6751, 5, 374, 0, 0, 6750, 6749, 1, 0, 0, 0, 6750, 6751, 1, 0, 0, 0, 6751, 6753, 1, 0, 0, 0, 6752, 6742, 1, 0, 0, 0, 6752, 6746, 1, 0, 0, 0, 6752, 6747, 1, 0, 0, 0, 6753, 6755, 1, 0, 0, 0, 6754, 6756, 3, 656, 328, 0, 6755, 6754, 1, 0, 0, 0, 6755, 6756, 1, 0, 0, 0, 6756, 661, 1, 0, 0, 0, 6757, 6759, 7, 92, 0, 0, 6758, 6760, 3, 656, 328, 0, 6759, 6758, 1, 0, 0, 0, 6759, 6760, 1, 0, 0, 0, 6760, 6764, 1, 0, 0, 0, 6761, 6762, 7, 27, 0, 0, 6762, 6763, 5, 418, 0, 0, 6763, 6765, 5, 386, 0, 0, 6764, 6761, 1, 0, 0, 0, 6764, 6765, 1, 0, 0, 0, 6765, 663, 1, 0, 0, 0, 6766, 6796, 5, 264, 0, 0, 6767, 6796, 3, 666, 333, 0, 6768, 6771, 5, 384, 0, 0, 6769, 6770, 5, 94, 0, 0, 6770, 6772, 5, 264, 0, 0, 6771, 6769, 1, 0, 0, 0, 6771, 6772, 1, 0, 0, 0, 6772, 6796, 1, 0, 0, 0, 6773, 6780, 5, 176, 0, 0, 6774, 6778, 5, 94, 0, 0, 6775, 6779, 5, 218, 0, 0, 6776, 6779, 5, 261, 0, 0, 6777, 6779, 3, 666, 333, 0, 6778, 6775, 1, 0, 0, 0, 6778, 6776, 1, 0, 0, 0, 6778, 6777, 1, 0, 0, 0, 6779, 6781, 1, 0, 0, 0, 6780, 6774, 1, 0, 0, 0, 6780, 6781, 1, 0, 0, 0, 6781, 6796, 1, 0, 0, 0, 6782, 6788, 5, 218, 0, 0, 6783, 6786, 5, 94, 0, 0, 6784, 6787, 5, 261, 0, 0, 6785, 6787, 3, 666, 333, 0, 6786, 6784, 1, 0, 0, 0, 6786, 6785, 1, 0, 0, 0, 6787, 6789, 1, 0, 0, 0, 6788, 6783, 1, 0, 0, 0, 6788, 6789, 1, 0, 0, 0, 6789, 6796, 1, 0, 0, 0, 6790, 6793, 5, 261, 0, 0, 6791, 6792, 5, 94, 0, 0, 6792, 6794, 3, 666, 333, 0, 6793, 6791, 1, 0, 0, 0, 6793, 6794, 1, 0, 0, 0, 6794, 6796, 1, 0, 0, 0, 6795, 6766, 1, 0, 0, 0, 6795, 6767, 1, 0, 0, 0, 6795, 6768, 1, 0, 0, 0, 6795, 6773, 1, 0, 0, 0, 6795, 6782, 1, 0, 0, 0, 6795, 6790, 1, 0, 0, 0, 6796, 665, 1, 0, 0, 0, 6797, 6799, 5, 326, 0, 0, 6798, 6800, 3, 656, 328, 0, 6799, 6798, 1, 0, 0, 0, 6799, 6800, 1, 0, 0, 0, 6800, 667, 1, 0, 0, 0, 6801, 6802, 7, 93, 0, 0, 6802, 669, 1, 0, 0, 0, 6803, 6804, 3, 672, 336, 0, 6804, 671, 1, 0, 0, 0, 6805, 6806, 6, 336, -1, 0, 6806, 6808, 3, 676, 338, 0, 6807, 6809, 3, 674, 337, 0, 6808, 6807, 1, 0, 0, 0, 6808, 6809, 1, 0, 0, 0, 6809, 6813, 1, 0, 0, 0, 6810, 6811, 5, 77, 0, 0, 6811, 6813, 3, 672, 336, 3, 6812, 6805, 1, 0, 0, 0, 6812, 6810, 1, 0, 0, 0, 6813, 6822, 1, 0, 0, 0, 6814, 6815, 10, 2, 0, 0, 6815, 6816, 5, 33, 0, 0, 6816, 6821, 3, 672, 336, 3, 6817, 6818, 10, 1, 0, 0, 6818, 6819, 5, 82, 0, 0, 6819, 6821, 3, 672, 336, 2, 6820, 6814, 1, 0, 0, 0, 6820, 6817, 1, 0, 0, 0, 6821, 6824, 1, 0, 0, 0, 6822, 6820, 1, 0, 0, 0, 6822, 6823, 1, 0, 0, 0, 6823, 673, 1, 0, 0, 0, 6824, 6822, 1, 0, 0, 0, 6825, 6826, 3, 668, 334, 0, 6826, 6827, 3, 676, 338, 0, 6827, 6897, 1, 0, 0, 0, 6828, 6829, 3, 668, 334, 0, 6829, 6830, 3, 726, 363, 0, 6830, 6836, 3, 716, 358, 0, 6831, 6837, 3, 556, 278, 0, 6832, 6833, 5, 2, 0, 0, 6833, 6834, 3, 670, 335, 0, 6834, 6835, 5, 3, 0, 0, 6835, 6837, 1, 0, 0, 0, 6836, 6831, 1, 0, 0, 0, 6836, 6832, 1, 0, 0, 0, 6837, 6897, 1, 0, 0, 0, 6838, 6840, 5, 77, 0, 0, 6839, 6838, 1, 0, 0, 0, 6839, 6840, 1, 0, 0, 0, 6840, 6841, 1, 0, 0, 0, 6841, 6842, 5, 387, 0, 0, 6842, 6843, 3, 676, 338, 0, 6843, 6844, 5, 33, 0, 0, 6844, 6845, 3, 676, 338, 0, 6845, 6897, 1, 0, 0, 0, 6846, 6848, 5, 77, 0, 0, 6847, 6846, 1, 0, 0, 0, 6847, 6848, 1, 0, 0, 0, 6848, 6849, 1, 0, 0, 0, 6849, 6850, 5, 68, 0, 0, 6850, 6851, 5, 2, 0, 0, 6851, 6856, 3, 670, 335, 0, 6852, 6853, 5, 6, 0, 0, 6853, 6855, 3, 670, 335, 0, 6854, 6852, 1, 0, 0, 0, 6855, 6858, 1, 0, 0, 0, 6856, 6854, 1, 0, 0, 0, 6856, 6857, 1, 0, 0, 0, 6857, 6859, 1, 0, 0, 0, 6858, 6856, 1, 0, 0, 0, 6859, 6860, 5, 3, 0, 0, 6860, 6897, 1, 0, 0, 0, 6861, 6863, 5, 77, 0, 0, 6862, 6861, 1, 0, 0, 0, 6862, 6863, 1, 0, 0, 0, 6863, 6864, 1, 0, 0, 0, 6864, 6865, 5, 68, 0, 0, 6865, 6897, 3, 556, 278, 0, 6866, 6868, 5, 77, 0, 0, 6867, 6866, 1, 0, 0, 0, 6867, 6868, 1, 0, 0, 0, 6868, 6877, 1, 0, 0, 0, 6869, 6878, 5, 120, 0, 0, 6870, 6878, 5, 114, 0, 0, 6871, 6872, 5, 127, 0, 0, 6872, 6878, 5, 94, 0, 0, 6873, 6875, 5, 387, 0, 0, 6874, 6876, 5, 91, 0, 0, 6875, 6874, 1, 0, 0, 0, 6875, 6876, 1, 0, 0, 0, 6876, 6878, 1, 0, 0, 0, 6877, 6869, 1, 0, 0, 0, 6877, 6870, 1, 0, 0, 0, 6877, 6871, 1, 0, 0, 0, 6877, 6873, 1, 0, 0, 0, 6878, 6879, 1, 0, 0, 0, 6879, 6882, 3, 676, 338, 0, 6880, 6881, 5, 197, 0, 0, 6881, 6883, 3, 676, 338, 0, 6882, 6880, 1, 0, 0, 0, 6882, 6883, 1, 0, 0, 0, 6883, 6897, 1, 0, 0, 0, 6884, 6886, 5, 116, 0, 0, 6885, 6887, 5, 77, 0, 0, 6886, 6885, 1, 0, 0, 0, 6886, 6887, 1, 0, 0, 0, 6887, 6888, 1, 0, 0, 0, 6888, 6897, 5, 78, 0, 0, 6889, 6891, 5, 116, 0, 0, 6890, 6892, 5, 77, 0, 0, 6891, 6890, 1, 0, 0, 0, 6891, 6892, 1, 0, 0, 0, 6892, 6893, 1, 0, 0, 0, 6893, 6894, 5, 56, 0, 0, 6894, 6895, 5, 64, 0, 0, 6895, 6897, 3, 676, 338, 0, 6896, 6825, 1, 0, 0, 0, 6896, 6828, 1, 0, 0, 0, 6896, 6839, 1, 0, 0, 0, 6896, 6847, 1, 0, 0, 0, 6896, 6862, 1, 0, 0, 0, 6896, 6867, 1, 0, 0, 0, 6896, 6884, 1, 0, 0, 0, 6896, 6889, 1, 0, 0, 0, 6897, 675, 1, 0, 0, 0, 6898, 6899, 6, 338, -1, 0, 6899, 6903, 3, 678, 339, 0, 6900, 6901, 7, 30, 0, 0, 6901, 6903, 3, 676, 338, 4, 6902, 6898, 1, 0, 0, 0, 6902, 6900, 1, 0, 0, 0, 6903, 6920, 1, 0, 0, 0, 6904, 6905, 10, 3, 0, 0, 6905, 6906, 7, 94, 0, 0, 6906, 6919, 3, 676, 338, 4, 6907, 6908, 10, 2, 0, 0, 6908, 6909, 7, 30, 0, 0, 6909, 6919, 3, 676, 338, 3, 6910, 6911, 10, 1, 0, 0, 6911, 6912, 5, 15, 0, 0, 6912, 6919, 3, 676, 338, 2, 6913, 6914, 10, 5, 0, 0, 6914, 6915, 5, 142, 0, 0, 6915, 6916, 5, 418, 0, 0, 6916, 6917, 5, 386, 0, 0, 6917, 6919, 3, 670, 335, 0, 6918, 6904, 1, 0, 0, 0, 6918, 6907, 1, 0, 0, 0, 6918, 6910, 1, 0, 0, 0, 6918, 6913, 1, 0, 0, 0, 6919, 6922, 1, 0, 0, 0, 6920, 6918, 1, 0, 0, 0, 6920, 6921, 1, 0, 0, 0, 6921, 677, 1, 0, 0, 0, 6922, 6920, 1, 0, 0, 0, 6923, 6924, 6, 339, -1, 0, 6924, 6925, 7, 95, 0, 0, 6925, 7012, 3, 556, 278, 0, 6926, 6929, 5, 35, 0, 0, 6927, 6930, 3, 556, 278, 0, 6928, 6930, 3, 742, 371, 0, 6929, 6927, 1, 0, 0, 0, 6929, 6928, 1, 0, 0, 0, 6930, 7012, 1, 0, 0, 0, 6931, 6932, 5, 28, 0, 0, 6932, 7012, 3, 756, 378, 0, 6933, 6934, 5, 470, 0, 0, 6934, 7012, 3, 528, 264, 0, 6935, 7012, 5, 574, 0, 0, 6936, 7012, 5, 576, 0, 0, 6937, 7012, 5, 566, 0, 0, 6938, 7012, 5, 570, 0, 0, 6939, 6949, 3, 814, 407, 0, 6940, 6950, 3, 816, 408, 0, 6941, 6942, 5, 2, 0, 0, 6942, 6944, 3, 738, 369, 0, 6943, 6945, 3, 580, 290, 0, 6944, 6943, 1, 0, 0, 0, 6944, 6945, 1, 0, 0, 0, 6945, 6946, 1, 0, 0, 0, 6946, 6947, 5, 3, 0, 0, 6947, 6948, 3, 816, 408, 0, 6948, 6950, 1, 0, 0, 0, 6949, 6940, 1, 0, 0, 0, 6949, 6941, 1, 0, 0, 0, 6950, 7012, 1, 0, 0, 0, 6951, 6953, 3, 652, 326, 0, 6952, 6951, 1, 0, 0, 0, 6952, 6953, 1, 0, 0, 0, 6953, 6954, 1, 0, 0, 0, 6954, 7012, 3, 816, 408, 0, 6955, 6963, 5, 403, 0, 0, 6956, 6958, 3, 816, 408, 0, 6957, 6959, 3, 664, 332, 0, 6958, 6957, 1, 0, 0, 0, 6958, 6959, 1, 0, 0, 0, 6959, 6964, 1, 0, 0, 0, 6960, 6961, 3, 656, 328, 0, 6961, 6962, 3, 816, 408, 0, 6962, 6964, 1, 0, 0, 0, 6963, 6956, 1, 0, 0, 0, 6963, 6960, 1, 0, 0, 0, 6964, 7012, 1, 0, 0, 0, 6965, 7012, 5, 96, 0, 0, 6966, 7012, 5, 60, 0, 0, 6967, 7012, 5, 78, 0, 0, 6968, 7012, 5, 577, 0, 0, 6969, 6970, 5, 2, 0, 0, 6970, 6971, 3, 670, 335, 0, 6971, 6972, 5, 3, 0, 0, 6972, 6973, 3, 756, 378, 0, 6973, 7012, 1, 0, 0, 0, 6974, 6976, 5, 40, 0, 0, 6975, 6977, 3, 670, 335, 0, 6976, 6975, 1, 0, 0, 0, 6976, 6977, 1, 0, 0, 0, 6977, 6979, 1, 0, 0, 0, 6978, 6980, 3, 750, 375, 0, 6979, 6978, 1, 0, 0, 0, 6980, 6981, 1, 0, 0, 0, 6981, 6979, 1, 0, 0, 0, 6981, 6982, 1, 0, 0, 0, 6982, 6985, 1, 0, 0, 0, 6983, 6984, 5, 58, 0, 0, 6984, 6986, 3, 670, 335, 0, 6985, 6983, 1, 0, 0, 0, 6985, 6986, 1, 0, 0, 0, 6986, 6987, 1, 0, 0, 0, 6987, 6988, 5, 454, 0, 0, 6988, 7012, 1, 0, 0, 0, 6989, 7012, 3, 682, 341, 0, 6990, 6992, 3, 556, 278, 0, 6991, 6993, 3, 754, 377, 0, 6992, 6991, 1, 0, 0, 0, 6992, 6993, 1, 0, 0, 0, 6993, 7012, 1, 0, 0, 0, 6994, 7012, 3, 714, 357, 0, 6995, 6996, 5, 2, 0, 0, 6996, 6997, 3, 670, 335, 0, 6997, 6998, 5, 6, 0, 0, 6998, 6999, 3, 728, 364, 0, 6999, 7000, 5, 3, 0, 0, 7000, 7012, 1, 0, 0, 0, 7001, 7002, 3, 712, 356, 0, 7002, 7003, 5, 125, 0, 0, 7003, 7004, 3, 712, 356, 0, 7004, 7012, 1, 0, 0, 0, 7005, 7012, 3, 808, 404, 0, 7006, 7007, 7, 30, 0, 0, 7007, 7012, 3, 678, 339, 5, 7008, 7009, 3, 722, 361, 0, 7009, 7010, 3, 678, 339, 2, 7010, 7012, 1, 0, 0, 0, 7011, 6923, 1, 0, 0, 0, 7011, 6926, 1, 0, 0, 0, 7011, 6931, 1, 0, 0, 0, 7011, 6933, 1, 0, 0, 0, 7011, 6935, 1, 0, 0, 0, 7011, 6936, 1, 0, 0, 0, 7011, 6937, 1, 0, 0, 0, 7011, 6938, 1, 0, 0, 0, 7011, 6939, 1, 0, 0, 0, 7011, 6952, 1, 0, 0, 0, 7011, 6955, 1, 0, 0, 0, 7011, 6965, 1, 0, 0, 0, 7011, 6966, 1, 0, 0, 0, 7011, 6967, 1, 0, 0, 0, 7011, 6968, 1, 0, 0, 0, 7011, 6969, 1, 0, 0, 0, 7011, 6974, 1, 0, 0, 0, 7011, 6989, 1, 0, 0, 0, 7011, 6990, 1, 0, 0, 0, 7011, 6994, 1, 0, 0, 0, 7011, 6995, 1, 0, 0, 0, 7011, 7001, 1, 0, 0, 0, 7011, 7005, 1, 0, 0, 0, 7011, 7006, 1, 0, 0, 0, 7011, 7008, 1, 0, 0, 0, 7012, 7040, 1, 0, 0, 0, 7013, 7014, 10, 3, 0, 0, 7014, 7015, 3, 720, 360, 0, 7015, 7016, 3, 678, 339, 4, 7016, 7039, 1, 0, 0, 0, 7017, 7018, 10, 6, 0, 0, 7018, 7019, 5, 26, 0, 0, 7019, 7039, 3, 648, 324, 0, 7020, 7021, 10, 4, 0, 0, 7021, 7023, 3, 722, 361, 0, 7022, 7024, 3, 678, 339, 0, 7023, 7022, 1, 0, 0, 0, 7023, 7024, 1, 0, 0, 0, 7024, 7039, 1, 0, 0, 0, 7025, 7026, 10, 1, 0, 0, 7026, 7028, 5, 116, 0, 0, 7027, 7029, 5, 77, 0, 0, 7028, 7027, 1, 0, 0, 0, 7028, 7029, 1, 0, 0, 0, 7029, 7036, 1, 0, 0, 0, 7030, 7031, 5, 56, 0, 0, 7031, 7032, 5, 64, 0, 0, 7032, 7037, 3, 678, 339, 0, 7033, 7034, 5, 275, 0, 0, 7034, 7037, 3, 522, 261, 0, 7035, 7037, 5, 188, 0, 0, 7036, 7030, 1, 0, 0, 0, 7036, 7033, 1, 0, 0, 0, 7036, 7035, 1, 0, 0, 0, 7037, 7039, 1, 0, 0, 0, 7038, 7013, 1, 0, 0, 0, 7038, 7017, 1, 0, 0, 0, 7038, 7020, 1, 0, 0, 0, 7038, 7025, 1, 0, 0, 0, 7039, 7042, 1, 0, 0, 0, 7040, 7038, 1, 0, 0, 0, 7040, 7041, 1, 0, 0, 0, 7041, 679, 1, 0, 0, 0, 7042, 7040, 1, 0, 0, 0, 7043, 7044, 3, 814, 407, 0, 7044, 7065, 5, 2, 0, 0, 7045, 7049, 3, 738, 369, 0, 7046, 7047, 5, 6, 0, 0, 7047, 7048, 5, 101, 0, 0, 7048, 7050, 3, 740, 370, 0, 7049, 7046, 1, 0, 0, 0, 7049, 7050, 1, 0, 0, 0, 7050, 7052, 1, 0, 0, 0, 7051, 7053, 3, 580, 290, 0, 7052, 7051, 1, 0, 0, 0, 7052, 7053, 1, 0, 0, 0, 7053, 7066, 1, 0, 0, 0, 7054, 7055, 5, 101, 0, 0, 7055, 7057, 3, 740, 370, 0, 7056, 7058, 3, 580, 290, 0, 7057, 7056, 1, 0, 0, 0, 7057, 7058, 1, 0, 0, 0, 7058, 7066, 1, 0, 0, 0, 7059, 7060, 7, 81, 0, 0, 7060, 7062, 3, 738, 369, 0, 7061, 7063, 3, 580, 290, 0, 7062, 7061, 1, 0, 0, 0, 7062, 7063, 1, 0, 0, 0, 7063, 7066, 1, 0, 0, 0, 7064, 7066, 5, 9, 0, 0, 7065, 7045, 1, 0, 0, 0, 7065, 7054, 1, 0, 0, 0, 7065, 7059, 1, 0, 0, 0, 7065, 7064, 1, 0, 0, 0, 7065, 7066, 1, 0, 0, 0, 7066, 7067, 1, 0, 0, 0, 7067, 7068, 5, 3, 0, 0, 7068, 681, 1, 0, 0, 0, 7069, 7076, 3, 680, 340, 0, 7070, 7071, 5, 479, 0, 0, 7071, 7072, 5, 66, 0, 0, 7072, 7073, 5, 2, 0, 0, 7073, 7074, 3, 580, 290, 0, 7074, 7075, 5, 3, 0, 0, 7075, 7077, 1, 0, 0, 0, 7076, 7070, 1, 0, 0, 0, 7076, 7077, 1, 0, 0, 0, 7077, 7084, 1, 0, 0, 0, 7078, 7079, 5, 480, 0, 0, 7079, 7080, 5, 2, 0, 0, 7080, 7081, 5, 103, 0, 0, 7081, 7082, 3, 670, 335, 0, 7082, 7083, 5, 3, 0, 0, 7083, 7085, 1, 0, 0, 0, 7084, 7078, 1, 0, 0, 0, 7084, 7085, 1, 0, 0, 0, 7085, 7091, 1, 0, 0, 0, 7086, 7089, 5, 124, 0, 0, 7087, 7090, 3, 706, 353, 0, 7088, 7090, 3, 826, 413, 0, 7089, 7087, 1, 0, 0, 0, 7089, 7088, 1, 0, 0, 0, 7090, 7092, 1, 0, 0, 0, 7091, 7086, 1, 0, 0, 0, 7091, 7092, 1, 0, 0, 0, 7092, 7095, 1, 0, 0, 0, 7093, 7095, 3, 686, 343, 0, 7094, 7069, 1, 0, 0, 0, 7094, 7093, 1, 0, 0, 0, 7095, 683, 1, 0, 0, 0, 7096, 7099, 3, 680, 340, 0, 7097, 7099, 3, 686, 343, 0, 7098, 7096, 1, 0, 0, 0, 7098, 7097, 1, 0, 0, 0, 7099, 685, 1, 0, 0, 0, 7100, 7101, 5, 108, 0, 0, 7101, 7102, 5, 62, 0, 0, 7102, 7103, 5, 2, 0, 0, 7103, 7104, 3, 670, 335, 0, 7104, 7105, 5, 3, 0, 0, 7105, 7275, 1, 0, 0, 0, 7106, 7275, 5, 48, 0, 0, 7107, 7109, 7, 96, 0, 0, 7108, 7110, 3, 656, 328, 0, 7109, 7108, 1, 0, 0, 0, 7109, 7110, 1, 0, 0, 0, 7110, 7275, 1, 0, 0, 0, 7111, 7275, 5, 49, 0, 0, 7112, 7275, 5, 52, 0, 0, 7113, 7275, 5, 89, 0, 0, 7114, 7275, 5, 99, 0, 0, 7115, 7275, 5, 47, 0, 0, 7116, 7275, 5, 111, 0, 0, 7117, 7118, 7, 97, 0, 0, 7118, 7119, 5, 2, 0, 0, 7119, 7120, 3, 670, 335, 0, 7120, 7121, 5, 36, 0, 0, 7121, 7122, 3, 648, 324, 0, 7122, 7123, 5, 3, 0, 0, 7123, 7275, 1, 0, 0, 0, 7124, 7125, 5, 397, 0, 0, 7125, 7130, 5, 2, 0, 0, 7126, 7127, 3, 744, 372, 0, 7127, 7128, 5, 64, 0, 0, 7128, 7129, 3, 670, 335, 0, 7129, 7131, 1, 0, 0, 0, 7130, 7126, 1, 0, 0, 0, 7130, 7131, 1, 0, 0, 0, 7131, 7132, 1, 0, 0, 0, 7132, 7275, 5, 3, 0, 0, 7133, 7134, 5, 489, 0, 0, 7134, 7135, 5, 2, 0, 0, 7135, 7138, 3, 670, 335, 0, 7136, 7137, 5, 6, 0, 0, 7137, 7139, 3, 746, 373, 0, 7138, 7136, 1, 0, 0, 0, 7138, 7139, 1, 0, 0, 0, 7139, 7140, 1, 0, 0, 0, 7140, 7141, 5, 3, 0, 0, 7141, 7275, 1, 0, 0, 0, 7142, 7143, 5, 410, 0, 0, 7143, 7144, 5, 2, 0, 0, 7144, 7145, 3, 670, 335, 0, 7145, 7146, 5, 84, 0, 0, 7146, 7147, 3, 670, 335, 0, 7147, 7148, 5, 64, 0, 0, 7148, 7151, 3, 670, 335, 0, 7149, 7150, 5, 62, 0, 0, 7150, 7152, 3, 670, 335, 0, 7151, 7149, 1, 0, 0, 0, 7151, 7152, 1, 0, 0, 0, 7152, 7153, 1, 0, 0, 0, 7153, 7154, 5, 3, 0, 0, 7154, 7275, 1, 0, 0, 0, 7155, 7156, 5, 411, 0, 0, 7156, 7161, 5, 2, 0, 0, 7157, 7158, 3, 678, 339, 0, 7158, 7159, 5, 68, 0, 0, 7159, 7160, 3, 678, 339, 0, 7160, 7162, 1, 0, 0, 0, 7161, 7157, 1, 0, 0, 0, 7161, 7162, 1, 0, 0, 0, 7162, 7163, 1, 0, 0, 0, 7163, 7275, 5, 3, 0, 0, 7164, 7165, 5, 417, 0, 0, 7165, 7167, 5, 2, 0, 0, 7166, 7168, 3, 748, 374, 0, 7167, 7166, 1, 0, 0, 0, 7167, 7168, 1, 0, 0, 0, 7168, 7169, 1, 0, 0, 0, 7169, 7275, 5, 3, 0, 0, 7170, 7171, 5, 421, 0, 0, 7171, 7173, 5, 2, 0, 0, 7172, 7174, 7, 98, 0, 0, 7173, 7172, 1, 0, 0, 0, 7173, 7174, 1, 0, 0, 0, 7174, 7179, 1, 0, 0, 0, 7175, 7177, 3, 670, 335, 0, 7176, 7175, 1, 0, 0, 0, 7176, 7177, 1, 0, 0, 0, 7177, 7178, 1, 0, 0, 0, 7178, 7180, 5, 64, 0, 0, 7179, 7176, 1, 0, 0, 0, 7179, 7180, 1, 0, 0, 0, 7180, 7181, 1, 0, 0, 0, 7181, 7182, 3, 728, 364, 0, 7182, 7183, 1, 0, 0, 0, 7183, 7184, 5, 3, 0, 0, 7184, 7275, 1, 0, 0, 0, 7185, 7186, 5, 408, 0, 0, 7186, 7187, 5, 2, 0, 0, 7187, 7188, 3, 670, 335, 0, 7188, 7189, 5, 6, 0, 0, 7189, 7190, 3, 670, 335, 0, 7190, 7191, 5, 3, 0, 0, 7191, 7275, 1, 0, 0, 0, 7192, 7193, 7, 99, 0, 0, 7193, 7275, 3, 528, 264, 0, 7194, 7195, 5, 426, 0, 0, 7195, 7196, 5, 2, 0, 0, 7196, 7197, 5, 266, 0, 0, 7197, 7207, 3, 832, 416, 0, 7198, 7205, 5, 6, 0, 0, 7199, 7200, 5, 424, 0, 0, 7200, 7201, 5, 2, 0, 0, 7201, 7202, 3, 688, 344, 0, 7202, 7203, 5, 3, 0, 0, 7203, 7206, 1, 0, 0, 0, 7204, 7206, 3, 728, 364, 0, 7205, 7199, 1, 0, 0, 0, 7205, 7204, 1, 0, 0, 0, 7206, 7208, 1, 0, 0, 0, 7207, 7198, 1, 0, 0, 0, 7207, 7208, 1, 0, 0, 0, 7208, 7209, 1, 0, 0, 0, 7209, 7210, 5, 3, 0, 0, 7210, 7275, 1, 0, 0, 0, 7211, 7212, 5, 427, 0, 0, 7212, 7213, 5, 2, 0, 0, 7213, 7214, 3, 678, 339, 0, 7214, 7215, 3, 694, 347, 0, 7215, 7216, 5, 3, 0, 0, 7216, 7275, 1, 0, 0, 0, 7217, 7218, 5, 428, 0, 0, 7218, 7219, 5, 2, 0, 0, 7219, 7220, 3, 688, 344, 0, 7220, 7221, 5, 3, 0, 0, 7221, 7275, 1, 0, 0, 0, 7222, 7223, 5, 429, 0, 0, 7223, 7224, 5, 2, 0, 0, 7224, 7225, 3, 692, 346, 0, 7225, 7228, 3, 670, 335, 0, 7226, 7227, 7, 100, 0, 0, 7227, 7229, 5, 378, 0, 0, 7228, 7226, 1, 0, 0, 0, 7228, 7229, 1, 0, 0, 0, 7229, 7230, 1, 0, 0, 0, 7230, 7231, 5, 3, 0, 0, 7231, 7275, 1, 0, 0, 0, 7232, 7233, 5, 430, 0, 0, 7233, 7234, 5, 2, 0, 0, 7234, 7235, 5, 266, 0, 0, 7235, 7238, 3, 832, 416, 0, 7236, 7237, 5, 6, 0, 0, 7237, 7239, 3, 670, 335, 0, 7238, 7236, 1, 0, 0, 0, 7238, 7239, 1, 0, 0, 0, 7239, 7240, 1, 0, 0, 0, 7240, 7241, 5, 3, 0, 0, 7241, 7275, 1, 0, 0, 0, 7242, 7243, 5, 431, 0, 0, 7243, 7244, 5, 2, 0, 0, 7244, 7245, 5, 383, 0, 0, 7245, 7246, 3, 670, 335, 0, 7246, 7247, 5, 6, 0, 0, 7247, 7251, 5, 375, 0, 0, 7248, 7249, 5, 269, 0, 0, 7249, 7252, 5, 450, 0, 0, 7250, 7252, 3, 670, 335, 0, 7251, 7248, 1, 0, 0, 0, 7251, 7250, 1, 0, 0, 0, 7252, 7262, 1, 0, 0, 0, 7253, 7254, 5, 6, 0, 0, 7254, 7260, 5, 339, 0, 0, 7255, 7257, 5, 269, 0, 0, 7256, 7255, 1, 0, 0, 0, 7256, 7257, 1, 0, 0, 0, 7257, 7258, 1, 0, 0, 0, 7258, 7261, 5, 450, 0, 0, 7259, 7261, 5, 385, 0, 0, 7260, 7256, 1, 0, 0, 0, 7260, 7259, 1, 0, 0, 0, 7261, 7263, 1, 0, 0, 0, 7262, 7253, 1, 0, 0, 0, 7262, 7263, 1, 0, 0, 0, 7263, 7264, 1, 0, 0, 0, 7264, 7265, 5, 3, 0, 0, 7265, 7275, 1, 0, 0, 0, 7266, 7267, 5, 432, 0, 0, 7267, 7268, 5, 2, 0, 0, 7268, 7269, 3, 692, 346, 0, 7269, 7270, 3, 670, 335, 0, 7270, 7271, 5, 36, 0, 0, 7271, 7272, 3, 650, 325, 0, 7272, 7273, 5, 3, 0, 0, 7273, 7275, 1, 0, 0, 0, 7274, 7100, 1, 0, 0, 0, 7274, 7106, 1, 0, 0, 0, 7274, 7107, 1, 0, 0, 0, 7274, 7111, 1, 0, 0, 0, 7274, 7112, 1, 0, 0, 0, 7274, 7113, 1, 0, 0, 0, 7274, 7114, 1, 0, 0, 0, 7274, 7115, 1, 0, 0, 0, 7274, 7116, 1, 0, 0, 0, 7274, 7117, 1, 0, 0, 0, 7274, 7124, 1, 0, 0, 0, 7274, 7133, 1, 0, 0, 0, 7274, 7142, 1, 0, 0, 0, 7274, 7155, 1, 0, 0, 0, 7274, 7164, 1, 0, 0, 0, 7274, 7170, 1, 0, 0, 0, 7274, 7185, 1, 0, 0, 0, 7274, 7192, 1, 0, 0, 0, 7274, 7194, 1, 0, 0, 0, 7274, 7211, 1, 0, 0, 0, 7274, 7217, 1, 0, 0, 0, 7274, 7222, 1, 0, 0, 0, 7274, 7232, 1, 0, 0, 0, 7274, 7242, 1, 0, 0, 0, 7274, 7266, 1, 0, 0, 0, 7275, 687, 1, 0, 0, 0, 7276, 7281, 3, 690, 345, 0, 7277, 7278, 5, 6, 0, 0, 7278, 7280, 3, 690, 345, 0, 7279, 7277, 1, 0, 0, 0, 7280, 7283, 1, 0, 0, 0, 7281, 7279, 1, 0, 0, 0, 7281, 7282, 1, 0, 0, 0, 7282, 689, 1, 0, 0, 0, 7283, 7281, 1, 0, 0, 0, 7284, 7287, 3, 670, 335, 0, 7285, 7286, 5, 36, 0, 0, 7286, 7288, 3, 832, 416, 0, 7287, 7285, 1, 0, 0, 0, 7287, 7288, 1, 0, 0, 0, 7288, 691, 1, 0, 0, 0, 7289, 7290, 7, 101, 0, 0, 7290, 693, 1, 0, 0, 0, 7291, 7293, 5, 286, 0, 0, 7292, 7294, 3, 696, 348, 0, 7293, 7292, 1, 0, 0, 0, 7293, 7294, 1, 0, 0, 0, 7294, 7295, 1, 0, 0, 0, 7295, 7297, 3, 678, 339, 0, 7296, 7298, 3, 696, 348, 0, 7297, 7296, 1, 0, 0, 0, 7297, 7298, 1, 0, 0, 0, 7298, 695, 1, 0, 0, 0, 7299, 7300, 5, 147, 0, 0, 7300, 7301, 7, 102, 0, 0, 7301, 697, 1, 0, 0, 0, 7302, 7303, 5, 104, 0, 0, 7303, 7308, 3, 702, 351, 0, 7304, 7305, 5, 6, 0, 0, 7305, 7307, 3, 702, 351, 0, 7306, 7304, 1, 0, 0, 0, 7307, 7310, 1, 0, 0, 0, 7308, 7306, 1, 0, 0, 0, 7308, 7309, 1, 0, 0, 0, 7309, 699, 1, 0, 0, 0, 7310, 7308, 1, 0, 0, 0, 7311, 7312, 5, 67, 0, 0, 7312, 7313, 3, 670, 335, 0, 7313, 701, 1, 0, 0, 0, 7314, 7315, 3, 826, 413, 0, 7315, 7316, 5, 36, 0, 0, 7316, 7317, 3, 706, 353, 0, 7317, 703, 1, 0, 0, 0, 7318, 7321, 5, 124, 0, 0, 7319, 7322, 3, 706, 353, 0, 7320, 7322, 3, 826, 413, 0, 7321, 7319, 1, 0, 0, 0, 7321, 7320, 1, 0, 0, 0, 7322, 705, 1, 0, 0, 0, 7323, 7325, 5, 2, 0, 0, 7324, 7326, 3, 826, 413, 0, 7325, 7324, 1, 0, 0, 0, 7325, 7326, 1, 0, 0, 0, 7326, 7330, 1, 0, 0, 0, 7327, 7328, 5, 285, 0, 0, 7328, 7329, 5, 147, 0, 0, 7329, 7331, 3, 728, 364, 0, 7330, 7327, 1, 0, 0, 0, 7330, 7331, 1, 0, 0, 0, 7331, 7333, 1, 0, 0, 0, 7332, 7334, 3, 580, 290, 0, 7333, 7332, 1, 0, 0, 0, 7333, 7334, 1, 0, 0, 0, 7334, 7336, 1, 0, 0, 0, 7335, 7337, 3, 708, 354, 0, 7336, 7335, 1, 0, 0, 0, 7336, 7337, 1, 0, 0, 0, 7337, 7338, 1, 0, 0, 0, 7338, 7339, 5, 3, 0, 0, 7339, 707, 1, 0, 0, 0, 7340, 7345, 7, 103, 0, 0, 7341, 7342, 5, 387, 0, 0, 7342, 7343, 3, 710, 355, 0, 7343, 7344, 5, 33, 0, 0, 7344, 7346, 1, 0, 0, 0, 7345, 7341, 1, 0, 0, 0, 7345, 7346, 1, 0, 0, 0, 7346, 7347, 1, 0, 0, 0, 7347, 7348, 3, 710, 355, 0, 7348, 7358, 1, 0, 0, 0, 7349, 7356, 5, 199, 0, 0, 7350, 7351, 5, 434, 0, 0, 7351, 7357, 5, 414, 0, 0, 7352, 7357, 5, 66, 0, 0, 7353, 7357, 5, 467, 0, 0, 7354, 7355, 5, 269, 0, 0, 7355, 7357, 5, 482, 0, 0, 7356, 7350, 1, 0, 0, 0, 7356, 7352, 1, 0, 0, 0, 7356, 7353, 1, 0, 0, 0, 7356, 7354, 1, 0, 0, 0, 7357, 7359, 1, 0, 0, 0, 7358, 7349, 1, 0, 0, 0, 7358, 7359, 1, 0, 0, 0, 7359, 709, 1, 0, 0, 0, 7360, 7363, 5, 362, 0, 0, 7361, 7363, 3, 670, 335, 0, 7362, 7360, 1, 0, 0, 0, 7362, 7361, 1, 0, 0, 0, 7363, 7364, 1, 0, 0, 0, 7364, 7368, 7, 104, 0, 0, 7365, 7366, 5, 434, 0, 0, 7366, 7368, 5, 414, 0, 0, 7367, 7362, 1, 0, 0, 0, 7367, 7365, 1, 0, 0, 0, 7368, 711, 1, 0, 0, 0, 7369, 7377, 3, 714, 357, 0, 7370, 7371, 5, 2, 0, 0, 7371, 7372, 3, 728, 364, 0, 7372, 7373, 5, 6, 0, 0, 7373, 7374, 3, 670, 335, 0, 7374, 7375, 5, 3, 0, 0, 7375, 7377, 1, 0, 0, 0, 7376, 7369, 1, 0, 0, 0, 7376, 7370, 1, 0, 0, 0, 7377, 713, 1, 0, 0, 0, 7378, 7379, 5, 414, 0, 0, 7379, 7381, 5, 2, 0, 0, 7380, 7382, 3, 728, 364, 0, 7381, 7380, 1, 0, 0, 0, 7381, 7382, 1, 0, 0, 0, 7382, 7383, 1, 0, 0, 0, 7383, 7384, 5, 3, 0, 0, 7384, 715, 1, 0, 0, 0, 7385, 7386, 7, 105, 0, 0, 7386, 717, 1, 0, 0, 0, 7387, 7390, 5, 29, 0, 0, 7388, 7390, 3, 720, 360, 0, 7389, 7387, 1, 0, 0, 0, 7389, 7388, 1, 0, 0, 0, 7390, 719, 1, 0, 0, 0, 7391, 7392, 7, 106, 0, 0, 7392, 721, 1, 0, 0, 0, 7393, 7400, 5, 29, 0, 0, 7394, 7395, 5, 278, 0, 0, 7395, 7396, 5, 2, 0, 0, 7396, 7397, 3, 408, 204, 0, 7397, 7398, 5, 3, 0, 0, 7398, 7400, 1, 0, 0, 0, 7399, 7393, 1, 0, 0, 0, 7399, 7394, 1, 0, 0, 0, 7400, 723, 1, 0, 0, 0, 7401, 7408, 3, 718, 359, 0, 7402, 7403, 5, 278, 0, 0, 7403, 7404, 5, 2, 0, 0, 7404, 7405, 3, 408, 204, 0, 7405, 7406, 5, 3, 0, 0, 7406, 7408, 1, 0, 0, 0, 7407, 7401, 1, 0, 0, 0, 7407, 7402, 1, 0, 0, 0, 7408, 725, 1, 0, 0, 0, 7409, 7415, 3, 724, 362, 0, 7410, 7412, 5, 77, 0, 0, 7411, 7410, 1, 0, 0, 0, 7411, 7412, 1, 0, 0, 0, 7412, 7413, 1, 0, 0, 0, 7413, 7415, 7, 107, 0, 0, 7414, 7409, 1, 0, 0, 0, 7414, 7411, 1, 0, 0, 0, 7415, 727, 1, 0, 0, 0, 7416, 7421, 3, 670, 335, 0, 7417, 7418, 5, 6, 0, 0, 7418, 7420, 3, 670, 335, 0, 7419, 7417, 1, 0, 0, 0, 7420, 7423, 1, 0, 0, 0, 7421, 7419, 1, 0, 0, 0, 7421, 7422, 1, 0, 0, 0, 7422, 729, 1, 0, 0, 0, 7423, 7421, 1, 0, 0, 0, 7424, 7425, 3, 670, 335, 0, 7425, 731, 1, 0, 0, 0, 7426, 7427, 3, 806, 403, 0, 7427, 733, 1, 0, 0, 0, 7428, 7429, 5, 2, 0, 0, 7429, 7430, 3, 670, 335, 0, 7430, 7431, 5, 3, 0, 0, 7431, 7434, 1, 0, 0, 0, 7432, 7434, 3, 806, 403, 0, 7433, 7428, 1, 0, 0, 0, 7433, 7432, 1, 0, 0, 0, 7434, 735, 1, 0, 0, 0, 7435, 7438, 3, 670, 335, 0, 7436, 7438, 3, 806, 403, 0, 7437, 7435, 1, 0, 0, 0, 7437, 7436, 1, 0, 0, 0, 7438, 737, 1, 0, 0, 0, 7439, 7444, 3, 740, 370, 0, 7440, 7441, 5, 6, 0, 0, 7441, 7443, 3, 740, 370, 0, 7442, 7440, 1, 0, 0, 0, 7443, 7446, 1, 0, 0, 0, 7444, 7442, 1, 0, 0, 0, 7444, 7445, 1, 0, 0, 0, 7445, 739, 1, 0, 0, 0, 7446, 7444, 1, 0, 0, 0, 7447, 7455, 3, 806, 403, 0, 7448, 7455, 3, 670, 335, 0, 7449, 7452, 3, 828, 414, 0, 7450, 7451, 7, 108, 0, 0, 7451, 7453, 3, 670, 335, 0, 7452, 7450, 1, 0, 0, 0, 7452, 7453, 1, 0, 0, 0, 7453, 7455, 1, 0, 0, 0, 7454, 7447, 1, 0, 0, 0, 7454, 7448, 1, 0, 0, 0, 7454, 7449, 1, 0, 0, 0, 7455, 741, 1, 0, 0, 0, 7456, 7466, 5, 4, 0, 0, 7457, 7467, 3, 728, 364, 0, 7458, 7463, 3, 742, 371, 0, 7459, 7460, 5, 6, 0, 0, 7460, 7462, 3, 742, 371, 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, 743, 1, 0, 0, 0, 7470, 7479, 3, 836, 418, 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, 816, 408, 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, 745, 1, 0, 0, 0, 7480, 7481, 7, 109, 0, 0, 7481, 747, 1, 0, 0, 0, 7482, 7483, 3, 670, 335, 0, 7483, 7484, 5, 64, 0, 0, 7484, 7487, 3, 670, 335, 0, 7485, 7486, 5, 62, 0, 0, 7486, 7488, 3, 670, 335, 0, 7487, 7485, 1, 0, 0, 0, 7487, 7488, 1, 0, 0, 0, 7488, 7504, 1, 0, 0, 0, 7489, 7490, 3, 670, 335, 0, 7490, 7491, 5, 62, 0, 0, 7491, 7494, 3, 670, 335, 0, 7492, 7493, 5, 64, 0, 0, 7493, 7495, 3, 670, 335, 0, 7494, 7492, 1, 0, 0, 0, 7494, 7495, 1, 0, 0, 0, 7495, 7504, 1, 0, 0, 0, 7496, 7497, 3, 670, 335, 0, 7497, 7498, 5, 127, 0, 0, 7498, 7499, 3, 670, 335, 0, 7499, 7500, 5, 197, 0, 0, 7500, 7501, 3, 670, 335, 0, 7501, 7504, 1, 0, 0, 0, 7502, 7504, 3, 728, 364, 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, 749, 1, 0, 0, 0, 7505, 7506, 5, 102, 0, 0, 7506, 7507, 3, 670, 335, 0, 7507, 7508, 5, 93, 0, 0, 7508, 7509, 3, 670, 335, 0, 7509, 751, 1, 0, 0, 0, 7510, 7511, 5, 11, 0, 0, 7511, 7527, 3, 834, 417, 0, 7512, 7513, 5, 11, 0, 0, 7513, 7527, 5, 9, 0, 0, 7514, 7523, 5, 4, 0, 0, 7515, 7524, 3, 670, 335, 0, 7516, 7518, 3, 670, 335, 0, 7517, 7516, 1, 0, 0, 0, 7517, 7518, 1, 0, 0, 0, 7518, 7519, 1, 0, 0, 0, 7519, 7521, 5, 8, 0, 0, 7520, 7522, 3, 670, 335, 0, 7521, 7520, 1, 0, 0, 0, 7521, 7522, 1, 0, 0, 0, 7522, 7524, 1, 0, 0, 0, 7523, 7515, 1, 0, 0, 0, 7523, 7517, 1, 0, 0, 0, 7524, 7525, 1, 0, 0, 0, 7525, 7527, 5, 5, 0, 0, 7526, 7510, 1, 0, 0, 0, 7526, 7512, 1, 0, 0, 0, 7526, 7514, 1, 0, 0, 0, 7527, 753, 1, 0, 0, 0, 7528, 7530, 3, 752, 376, 0, 7529, 7528, 1, 0, 0, 0, 7530, 7531, 1, 0, 0, 0, 7531, 7529, 1, 0, 0, 0, 7531, 7532, 1, 0, 0, 0, 7532, 755, 1, 0, 0, 0, 7533, 7535, 3, 752, 376, 0, 7534, 7533, 1, 0, 0, 0, 7535, 7538, 1, 0, 0, 0, 7536, 7534, 1, 0, 0, 0, 7536, 7537, 1, 0, 0, 0, 7537, 757, 1, 0, 0, 0, 7538, 7536, 1, 0, 0, 0, 7539, 7544, 3, 760, 380, 0, 7540, 7541, 5, 6, 0, 0, 7541, 7543, 3, 760, 380, 0, 7542, 7540, 1, 0, 0, 0, 7543, 7546, 1, 0, 0, 0, 7544, 7542, 1, 0, 0, 0, 7544, 7545, 1, 0, 0, 0, 7545, 759, 1, 0, 0, 0, 7546, 7544, 1, 0, 0, 0, 7547, 7567, 3, 762, 381, 0, 7548, 7551, 3, 732, 366, 0, 7549, 7551, 3, 730, 365, 0, 7550, 7548, 1, 0, 0, 0, 7550, 7549, 1, 0, 0, 0, 7551, 7557, 1, 0, 0, 0, 7552, 7554, 5, 36, 0, 0, 7553, 7552, 1, 0, 0, 0, 7553, 7554, 1, 0, 0, 0, 7554, 7555, 1, 0, 0, 0, 7555, 7558, 3, 836, 418, 0, 7556, 7558, 1, 0, 0, 0, 7557, 7553, 1, 0, 0, 0, 7557, 7556, 1, 0, 0, 0, 7558, 7567, 1, 0, 0, 0, 7559, 7560, 3, 826, 413, 0, 7560, 7561, 5, 11, 0, 0, 7561, 7562, 4, 380, 10, 0, 7562, 7563, 3, 804, 402, 0, 7563, 7567, 1, 0, 0, 0, 7564, 7565, 4, 380, 11, 0, 7565, 7567, 3, 804, 402, 0, 7566, 7547, 1, 0, 0, 0, 7566, 7550, 1, 0, 0, 0, 7566, 7559, 1, 0, 0, 0, 7566, 7564, 1, 0, 0, 0, 7567, 761, 1, 0, 0, 0, 7568, 7569, 3, 826, 413, 0, 7569, 7570, 5, 11, 0, 0, 7570, 7572, 1, 0, 0, 0, 7571, 7568, 1, 0, 0, 0, 7572, 7575, 1, 0, 0, 0, 7573, 7571, 1, 0, 0, 0, 7573, 7574, 1, 0, 0, 0, 7574, 7576, 1, 0, 0, 0, 7575, 7573, 1, 0, 0, 0, 7576, 7577, 5, 9, 0, 0, 7577, 763, 1, 0, 0, 0, 7578, 7583, 3, 784, 392, 0, 7579, 7580, 5, 6, 0, 0, 7580, 7582, 3, 784, 392, 0, 7581, 7579, 1, 0, 0, 0, 7582, 7585, 1, 0, 0, 0, 7583, 7581, 1, 0, 0, 0, 7583, 7584, 1, 0, 0, 0, 7584, 765, 1, 0, 0, 0, 7585, 7583, 1, 0, 0, 0, 7586, 7591, 3, 778, 389, 0, 7587, 7588, 5, 6, 0, 0, 7588, 7590, 3, 778, 389, 0, 7589, 7587, 1, 0, 0, 0, 7590, 7593, 1, 0, 0, 0, 7591, 7589, 1, 0, 0, 0, 7591, 7592, 1, 0, 0, 0, 7592, 767, 1, 0, 0, 0, 7593, 7591, 1, 0, 0, 0, 7594, 7599, 3, 794, 397, 0, 7595, 7596, 5, 6, 0, 0, 7596, 7598, 3, 794, 397, 0, 7597, 7595, 1, 0, 0, 0, 7598, 7601, 1, 0, 0, 0, 7599, 7597, 1, 0, 0, 0, 7599, 7600, 1, 0, 0, 0, 7600, 769, 1, 0, 0, 0, 7601, 7599, 1, 0, 0, 0, 7602, 7607, 3, 792, 396, 0, 7603, 7604, 5, 6, 0, 0, 7604, 7606, 3, 792, 396, 0, 7605, 7603, 1, 0, 0, 0, 7606, 7609, 1, 0, 0, 0, 7607, 7605, 1, 0, 0, 0, 7607, 7608, 1, 0, 0, 0, 7608, 771, 1, 0, 0, 0, 7609, 7607, 1, 0, 0, 0, 7610, 7611, 3, 784, 392, 0, 7611, 773, 1, 0, 0, 0, 7612, 7613, 3, 784, 392, 0, 7613, 775, 1, 0, 0, 0, 7614, 7615, 3, 784, 392, 0, 7615, 777, 1, 0, 0, 0, 7616, 7617, 3, 784, 392, 0, 7617, 779, 1, 0, 0, 0, 7618, 7619, 3, 784, 392, 0, 7619, 781, 1, 0, 0, 0, 7620, 7621, 3, 310, 155, 0, 7621, 783, 1, 0, 0, 0, 7622, 7624, 3, 826, 413, 0, 7623, 7625, 3, 754, 377, 0, 7624, 7623, 1, 0, 0, 0, 7624, 7625, 1, 0, 0, 0, 7625, 785, 1, 0, 0, 0, 7626, 7631, 3, 774, 387, 0, 7627, 7628, 5, 6, 0, 0, 7628, 7630, 3, 774, 387, 0, 7629, 7627, 1, 0, 0, 0, 7630, 7633, 1, 0, 0, 0, 7631, 7629, 1, 0, 0, 0, 7631, 7632, 1, 0, 0, 0, 7632, 787, 1, 0, 0, 0, 7633, 7631, 1, 0, 0, 0, 7634, 7639, 3, 826, 413, 0, 7635, 7636, 5, 6, 0, 0, 7636, 7638, 3, 826, 413, 0, 7637, 7635, 1, 0, 0, 0, 7638, 7641, 1, 0, 0, 0, 7639, 7637, 1, 0, 0, 0, 7639, 7640, 1, 0, 0, 0, 7640, 789, 1, 0, 0, 0, 7641, 7639, 1, 0, 0, 0, 7642, 7643, 3, 310, 155, 0, 7643, 791, 1, 0, 0, 0, 7644, 7645, 3, 310, 155, 0, 7645, 793, 1, 0, 0, 0, 7646, 7647, 3, 310, 155, 0, 7647, 795, 1, 0, 0, 0, 7648, 7649, 3, 826, 413, 0, 7649, 797, 1, 0, 0, 0, 7650, 7651, 3, 826, 413, 0, 7651, 799, 1, 0, 0, 0, 7652, 7657, 3, 828, 414, 0, 7653, 7654, 3, 826, 413, 0, 7654, 7655, 3, 754, 377, 0, 7655, 7657, 1, 0, 0, 0, 7656, 7652, 1, 0, 0, 0, 7656, 7653, 1, 0, 0, 0, 7657, 801, 1, 0, 0, 0, 7658, 7663, 3, 828, 414, 0, 7659, 7660, 3, 826, 413, 0, 7660, 7661, 3, 754, 377, 0, 7661, 7663, 1, 0, 0, 0, 7662, 7658, 1, 0, 0, 0, 7662, 7659, 1, 0, 0, 0, 7663, 803, 1, 0, 0, 0, 7664, 7665, 1, 0, 0, 0, 7665, 805, 1, 0, 0, 0, 7666, 7667, 3, 826, 413, 0, 7667, 7668, 3, 756, 378, 0, 7668, 807, 1, 0, 0, 0, 7669, 7670, 3, 826, 413, 0, 7670, 7671, 3, 756, 378, 0, 7671, 809, 1, 0, 0, 0, 7672, 7673, 3, 826, 413, 0, 7673, 811, 1, 0, 0, 0, 7674, 7679, 3, 828, 414, 0, 7675, 7676, 3, 826, 413, 0, 7676, 7677, 3, 754, 377, 0, 7677, 7679, 1, 0, 0, 0, 7678, 7674, 1, 0, 0, 0, 7678, 7675, 1, 0, 0, 0, 7679, 813, 1, 0, 0, 0, 7680, 7685, 3, 828, 414, 0, 7681, 7682, 3, 826, 413, 0, 7682, 7683, 3, 754, 377, 0, 7683, 7685, 1, 0, 0, 0, 7684, 7680, 1, 0, 0, 0, 7684, 7681, 1, 0, 0, 0, 7685, 815, 1, 0, 0, 0, 7686, 7689, 3, 818, 409, 0, 7687, 7688, 5, 487, 0, 0, 7688, 7690, 3, 818, 409, 0, 7689, 7687, 1, 0, 0, 0, 7689, 7690, 1, 0, 0, 0, 7690, 817, 1, 0, 0, 0, 7691, 7703, 5, 561, 0, 0, 7692, 7703, 5, 563, 0, 0, 7693, 7697, 5, 565, 0, 0, 7694, 7696, 5, 590, 0, 0, 7695, 7694, 1, 0, 0, 0, 7696, 7699, 1, 0, 0, 0, 7697, 7695, 1, 0, 0, 0, 7697, 7698, 1, 0, 0, 0, 7698, 7700, 1, 0, 0, 0, 7699, 7697, 1, 0, 0, 0, 7700, 7703, 5, 591, 0, 0, 7701, 7703, 5, 586, 0, 0, 7702, 7691, 1, 0, 0, 0, 7702, 7692, 1, 0, 0, 0, 7702, 7693, 1, 0, 0, 0, 7702, 7701, 1, 0, 0, 0, 7703, 819, 1, 0, 0, 0, 7704, 7706, 7, 30, 0, 0, 7705, 7704, 1, 0, 0, 0, 7705, 7706, 1, 0, 0, 0, 7706, 7707, 1, 0, 0, 0, 7707, 7708, 5, 574, 0, 0, 7708, 821, 1, 0, 0, 0, 7709, 7715, 3, 830, 415, 0, 7710, 7715, 5, 52, 0, 0, 7711, 7715, 5, 49, 0, 0, 7712, 7715, 5, 89, 0, 0, 7713, 7715, 5, 524, 0, 0, 7714, 7709, 1, 0, 0, 0, 7714, 7710, 1, 0, 0, 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, 822, 411, 0, 7717, 7718, 5, 6, 0, 0, 7718, 7720, 3, 822, 411, 0, 7719, 7717, 1, 0, 0, 0, 7720, 7723, 1, 0, 0, 0, 7721, 7719, 1, 0, 0, 0, 7721, 7722, 1, 0, 0, 0, 7722, 825, 1, 0, 0, 0, 7723, 7721, 1, 0, 0, 0, 7724, 7727, 3, 836, 418, 0, 7725, 7727, 3, 840, 420, 0, 7726, 7724, 1, 0, 0, 0, 7726, 7725, 1, 0, 0, 0, 7727, 827, 1, 0, 0, 0, 7728, 7731, 3, 836, 418, 0, 7729, 7731, 3, 842, 421, 0, 7730, 7728, 1, 0, 0, 0, 7730, 7729, 1, 0, 0, 0, 7731, 829, 1, 0, 0, 0, 7732, 7736, 3, 836, 418, 0, 7733, 7736, 3, 840, 420, 0, 7734, 7736, 3, 842, 421, 0, 7735, 7732, 1, 0, 0, 0, 7735, 7733, 1, 0, 0, 0, 7735, 7734, 1, 0, 0, 0, 7736, 831, 1, 0, 0, 0, 7737, 7742, 3, 836, 418, 0, 7738, 7742, 3, 840, 420, 0, 7739, 7742, 3, 842, 421, 0, 7740, 7742, 3, 844, 422, 0, 7741, 7737, 1, 0, 0, 0, 7741, 7738, 1, 0, 0, 0, 7741, 7739, 1, 0, 0, 0, 7741, 7740, 1, 0, 0, 0, 7742, 833, 1, 0, 0, 0, 7743, 7747, 3, 836, 418, 0, 7744, 7747, 3, 840, 420, 0, 7745, 7747, 3, 842, 421, 0, 7746, 7743, 1, 0, 0, 0, 7746, 7744, 1, 0, 0, 0, 7746, 7745, 1, 0, 0, 0, 7747, 835, 1, 0, 0, 0, 7748, 7751, 5, 552, 0, 0, 7749, 7750, 5, 487, 0, 0, 7750, 7752, 3, 818, 409, 0, 7751, 7749, 1, 0, 0, 0, 7751, 7752, 1, 0, 0, 0, 7752, 7760, 1, 0, 0, 0, 7753, 7760, 3, 816, 408, 0, 7754, 7760, 5, 553, 0, 0, 7755, 7760, 5, 557, 0, 0, 7756, 7760, 5, 577, 0, 0, 7757, 7760, 5, 578, 0, 0, 7758, 7760, 3, 838, 419, 0, 7759, 7748, 1, 0, 0, 0, 7759, 7753, 1, 0, 0, 0, 7759, 7754, 1, 0, 0, 0, 7759, 7755, 1, 0, 0, 0, 7759, 7756, 1, 0, 0, 0, 7759, 7757, 1, 0, 0, 0, 7759, 7758, 1, 0, 0, 0, 7760, 837, 1, 0, 0, 0, 7761, 7762, 7, 110, 0, 0, 7762, 839, 1, 0, 0, 0, 7763, 7815, 5, 387, 0, 0, 7764, 7815, 5, 388, 0, 0, 7765, 7815, 3, 658, 329, 0, 7766, 7815, 5, 390, 0, 0, 7767, 7815, 5, 391, 0, 0, 7768, 7815, 3, 660, 330, 0, 7769, 7815, 5, 393, 0, 0, 7770, 7815, 5, 394, 0, 0, 7771, 7815, 5, 395, 0, 0, 7772, 7815, 5, 396, 0, 0, 7773, 7815, 5, 397, 0, 0, 7774, 7815, 5, 398, 0, 0, 7775, 7815, 5, 399, 0, 0, 7776, 7815, 5, 470, 0, 0, 7777, 7815, 5, 400, 0, 0, 7778, 7815, 5, 401, 0, 0, 7779, 7815, 5, 402, 0, 0, 7780, 7815, 5, 403, 0, 0, 7781, 7815, 5, 404, 0, 0, 7782, 7815, 5, 405, 0, 0, 7783, 7815, 5, 406, 0, 0, 7784, 7815, 5, 407, 0, 0, 7785, 7815, 5, 489, 0, 0, 7786, 7815, 5, 408, 0, 0, 7787, 7815, 3, 654, 327, 0, 7788, 7815, 5, 453, 0, 0, 7789, 7815, 5, 410, 0, 0, 7790, 7815, 5, 411, 0, 0, 7791, 7815, 5, 412, 0, 0, 7792, 7815, 5, 413, 0, 0, 7793, 7815, 5, 414, 0, 0, 7794, 7815, 5, 415, 0, 0, 7795, 7815, 5, 416, 0, 0, 7796, 7815, 5, 417, 0, 0, 7797, 7815, 5, 418, 0, 0, 7798, 7815, 5, 419, 0, 0, 7799, 7815, 5, 420, 0, 0, 7800, 7815, 5, 421, 0, 0, 7801, 7815, 5, 422, 0, 0, 7802, 7815, 5, 423, 0, 0, 7803, 7815, 5, 424, 0, 0, 7804, 7815, 5, 425, 0, 0, 7805, 7815, 5, 426, 0, 0, 7806, 7815, 5, 427, 0, 0, 7807, 7815, 5, 428, 0, 0, 7808, 7815, 5, 476, 0, 0, 7809, 7815, 5, 429, 0, 0, 7810, 7815, 5, 430, 0, 0, 7811, 7815, 5, 431, 0, 0, 7812, 7815, 5, 432, 0, 0, 7813, 7815, 5, 474, 0, 0, 7814, 7763, 1, 0, 0, 0, 7814, 7764, 1, 0, 0, 0, 7814, 7765, 1, 0, 0, 0, 7814, 7766, 1, 0, 0, 0, 7814, 7767, 1, 0, 0, 0, 7814, 7768, 1, 0, 0, 0, 7814, 7769, 1, 0, 0, 0, 7814, 7770, 1, 0, 0, 0, 7814, 7771, 1, 0, 0, 0, 7814, 7772, 1, 0, 0, 0, 7814, 7773, 1, 0, 0, 0, 7814, 7774, 1, 0, 0, 0, 7814, 7775, 1, 0, 0, 0, 7814, 7776, 1, 0, 0, 0, 7814, 7777, 1, 0, 0, 0, 7814, 7778, 1, 0, 0, 0, 7814, 7779, 1, 0, 0, 0, 7814, 7780, 1, 0, 0, 0, 7814, 7781, 1, 0, 0, 0, 7814, 7782, 1, 0, 0, 0, 7814, 7783, 1, 0, 0, 0, 7814, 7784, 1, 0, 0, 0, 7814, 7785, 1, 0, 0, 0, 7814, 7786, 1, 0, 0, 0, 7814, 7787, 1, 0, 0, 0, 7814, 7788, 1, 0, 0, 0, 7814, 7789, 1, 0, 0, 0, 7814, 7790, 1, 0, 0, 0, 7814, 7791, 1, 0, 0, 0, 7814, 7792, 1, 0, 0, 0, 7814, 7793, 1, 0, 0, 0, 7814, 7794, 1, 0, 0, 0, 7814, 7795, 1, 0, 0, 0, 7814, 7796, 1, 0, 0, 0, 7814, 7797, 1, 0, 0, 0, 7814, 7798, 1, 0, 0, 0, 7814, 7799, 1, 0, 0, 0, 7814, 7800, 1, 0, 0, 0, 7814, 7801, 1, 0, 0, 0, 7814, 7802, 1, 0, 0, 0, 7814, 7803, 1, 0, 0, 0, 7814, 7804, 1, 0, 0, 0, 7814, 7805, 1, 0, 0, 0, 7814, 7806, 1, 0, 0, 0, 7814, 7807, 1, 0, 0, 0, 7814, 7808, 1, 0, 0, 0, 7814, 7809, 1, 0, 0, 0, 7814, 7810, 1, 0, 0, 0, 7814, 7811, 1, 0, 0, 0, 7814, 7812, 1, 0, 0, 0, 7814, 7813, 1, 0, 0, 0, 7815, 841, 1, 0, 0, 0, 7816, 7817, 7, 111, 0, 0, 7817, 843, 1, 0, 0, 0, 7818, 7819, 7, 112, 0, 0, 7819, 845, 1, 0, 0, 0, 7820, 7822, 3, 848, 424, 0, 7821, 7820, 1, 0, 0, 0, 7821, 7822, 1, 0, 0, 0, 7822, 7833, 1, 0, 0, 0, 7823, 7831, 5, 178, 0, 0, 7824, 7828, 3, 850, 425, 0, 7825, 7828, 5, 178, 0, 0, 7826, 7828, 3, 848, 424, 0, 7827, 7824, 1, 0, 0, 0, 7827, 7825, 1, 0, 0, 0, 7827, 7826, 1, 0, 0, 0, 7828, 7829, 1, 0, 0, 0, 7829, 7827, 1, 0, 0, 0, 7829, 7830, 1, 0, 0, 0, 7830, 7832, 1, 0, 0, 0, 7831, 7827, 1, 0, 0, 0, 7831, 7832, 1, 0, 0, 0, 7832, 7834, 1, 0, 0, 0, 7833, 7823, 1, 0, 0, 0, 7833, 7834, 1, 0, 0, 0, 7834, 7835, 1, 0, 0, 0, 7835, 7839, 5, 146, 0, 0, 7836, 7838, 3, 856, 428, 0, 7837, 7836, 1, 0, 0, 0, 7838, 7841, 1, 0, 0, 0, 7839, 7837, 1, 0, 0, 0, 7839, 7840, 1, 0, 0, 0, 7840, 7843, 1, 0, 0, 0, 7841, 7839, 1, 0, 0, 0, 7842, 7844, 3, 934, 467, 0, 7843, 7842, 1, 0, 0, 0, 7843, 7844, 1, 0, 0, 0, 7844, 7845, 1, 0, 0, 0, 7845, 7847, 5, 454, 0, 0, 7846, 7848, 3, 938, 469, 0, 7847, 7846, 1, 0, 0, 0, 7847, 7848, 1, 0, 0, 0, 7848, 847, 1, 0, 0, 0, 7849, 7850, 5, 18, 0, 0, 7850, 7851, 3, 938, 469, 0, 7851, 7852, 5, 19, 0, 0, 7852, 849, 1, 0, 0, 0, 7853, 7900, 3, 938, 469, 0, 7854, 7855, 5, 496, 0, 0, 7855, 7858, 5, 62, 0, 0, 7856, 7859, 5, 28, 0, 0, 7857, 7859, 3, 826, 413, 0, 7858, 7856, 1, 0, 0, 0, 7858, 7857, 1, 0, 0, 0, 7859, 7901, 1, 0, 0, 0, 7860, 7862, 5, 497, 0, 0, 7861, 7860, 1, 0, 0, 0, 7861, 7862, 1, 0, 0, 0, 7862, 7863, 1, 0, 0, 0, 7863, 7865, 3, 648, 324, 0, 7864, 7866, 3, 90, 45, 0, 7865, 7864, 1, 0, 0, 0, 7865, 7866, 1, 0, 0, 0, 7866, 7869, 1, 0, 0, 0, 7867, 7868, 5, 77, 0, 0, 7868, 7870, 5, 78, 0, 0, 7869, 7867, 1, 0, 0, 0, 7869, 7870, 1, 0, 0, 0, 7870, 7876, 1, 0, 0, 0, 7871, 7874, 3, 854, 427, 0, 7872, 7874, 5, 53, 0, 0, 7873, 7871, 1, 0, 0, 0, 7873, 7872, 1, 0, 0, 0, 7874, 7875, 1, 0, 0, 0, 7875, 7877, 3, 940, 470, 0, 7876, 7873, 1, 0, 0, 0, 7876, 7877, 1, 0, 0, 0, 7877, 7901, 1, 0, 0, 0, 7878, 7880, 5, 269, 0, 0, 7879, 7878, 1, 0, 0, 0, 7879, 7880, 1, 0, 0, 0, 7880, 7881, 1, 0, 0, 0, 7881, 7883, 5, 324, 0, 0, 7882, 7879, 1, 0, 0, 0, 7882, 7883, 1, 0, 0, 0, 7883, 7884, 1, 0, 0, 0, 7884, 7896, 5, 172, 0, 0, 7885, 7886, 5, 2, 0, 0, 7886, 7891, 3, 852, 426, 0, 7887, 7888, 5, 6, 0, 0, 7888, 7890, 3, 852, 426, 0, 7889, 7887, 1, 0, 0, 0, 7890, 7893, 1, 0, 0, 0, 7891, 7889, 1, 0, 0, 0, 7891, 7892, 1, 0, 0, 0, 7892, 7894, 1, 0, 0, 0, 7893, 7891, 1, 0, 0, 0, 7894, 7895, 5, 3, 0, 0, 7895, 7897, 1, 0, 0, 0, 7896, 7885, 1, 0, 0, 0, 7896, 7897, 1, 0, 0, 0, 7897, 7898, 1, 0, 0, 0, 7898, 7899, 7, 113, 0, 0, 7899, 7901, 3, 554, 277, 0, 7900, 7854, 1, 0, 0, 0, 7900, 7861, 1, 0, 0, 0, 7900, 7882, 1, 0, 0, 0, 7901, 7902, 1, 0, 0, 0, 7902, 7903, 5, 7, 0, 0, 7903, 851, 1, 0, 0, 0, 7904, 7905, 3, 938, 469, 0, 7905, 7906, 3, 648, 324, 0, 7906, 853, 1, 0, 0, 0, 7907, 7908, 7, 114, 0, 0, 7908, 855, 1, 0, 0, 0, 7909, 7910, 3, 846, 423, 0, 7910, 7911, 5, 7, 0, 0, 7911, 7934, 1, 0, 0, 0, 7912, 7934, 3, 884, 442, 0, 7913, 7934, 3, 886, 443, 0, 7914, 7934, 3, 862, 431, 0, 7915, 7934, 3, 870, 435, 0, 7916, 7934, 3, 874, 437, 0, 7917, 7934, 3, 876, 438, 0, 7918, 7934, 3, 880, 440, 0, 7919, 7934, 3, 882, 441, 0, 7920, 7934, 3, 890, 445, 0, 7921, 7934, 3, 894, 447, 0, 7922, 7934, 3, 896, 448, 0, 7923, 7934, 3, 858, 429, 0, 7924, 7934, 3, 860, 430, 0, 7925, 7934, 3, 864, 432, 0, 7926, 7934, 3, 900, 450, 0, 7927, 7934, 3, 904, 452, 0, 7928, 7934, 3, 908, 454, 0, 7929, 7934, 3, 924, 462, 0, 7930, 7934, 3, 926, 463, 0, 7931, 7934, 3, 928, 464, 0, 7932, 7934, 3, 930, 465, 0, 7933, 7909, 1, 0, 0, 0, 7933, 7912, 1, 0, 0, 0, 7933, 7913, 1, 0, 0, 0, 7933, 7914, 1, 0, 0, 0, 7933, 7915, 1, 0, 0, 0, 7933, 7916, 1, 0, 0, 0, 7933, 7917, 1, 0, 0, 0, 7933, 7918, 1, 0, 0, 0, 7933, 7919, 1, 0, 0, 0, 7933, 7920, 1, 0, 0, 0, 7933, 7921, 1, 0, 0, 0, 7933, 7922, 1, 0, 0, 0, 7933, 7923, 1, 0, 0, 0, 7933, 7924, 1, 0, 0, 0, 7933, 7925, 1, 0, 0, 0, 7933, 7926, 1, 0, 0, 0, 7933, 7927, 1, 0, 0, 0, 7933, 7928, 1, 0, 0, 0, 7933, 7929, 1, 0, 0, 0, 7933, 7930, 1, 0, 0, 0, 7933, 7931, 1, 0, 0, 0, 7933, 7932, 1, 0, 0, 0, 7934, 857, 1, 0, 0, 0, 7935, 7936, 5, 498, 0, 0, 7936, 7937, 3, 940, 470, 0, 7937, 7938, 5, 7, 0, 0, 7938, 859, 1, 0, 0, 0, 7939, 7940, 5, 433, 0, 0, 7940, 7947, 3, 938, 469, 0, 7941, 7943, 5, 2, 0, 0, 7942, 7944, 3, 728, 364, 0, 7943, 7942, 1, 0, 0, 0, 7943, 7944, 1, 0, 0, 0, 7944, 7945, 1, 0, 0, 0, 7945, 7946, 5, 3, 0, 0, 7946, 7948, 5, 7, 0, 0, 7947, 7941, 1, 0, 0, 0, 7947, 7948, 1, 0, 0, 0, 7948, 7959, 1, 0, 0, 0, 7949, 7950, 5, 57, 0, 0, 7950, 7951, 3, 938, 469, 0, 7951, 7953, 5, 2, 0, 0, 7952, 7954, 3, 728, 364, 0, 7953, 7952, 1, 0, 0, 0, 7953, 7954, 1, 0, 0, 0, 7954, 7955, 1, 0, 0, 0, 7955, 7956, 5, 3, 0, 0, 7956, 7957, 5, 7, 0, 0, 7957, 7959, 1, 0, 0, 0, 7958, 7939, 1, 0, 0, 0, 7958, 7949, 1, 0, 0, 0, 7959, 861, 1, 0, 0, 0, 7960, 7961, 3, 868, 434, 0, 7961, 7962, 3, 854, 427, 0, 7962, 7963, 3, 940, 470, 0, 7963, 7964, 5, 7, 0, 0, 7964, 863, 1, 0, 0, 0, 7965, 7967, 5, 499, 0, 0, 7966, 7968, 7, 115, 0, 0, 7967, 7966, 1, 0, 0, 0, 7967, 7968, 1, 0, 0, 0, 7968, 7969, 1, 0, 0, 0, 7969, 7970, 5, 500, 0, 0, 7970, 7975, 3, 866, 433, 0, 7971, 7972, 5, 6, 0, 0, 7972, 7974, 3, 866, 433, 0, 7973, 7971, 1, 0, 0, 0, 7974, 7977, 1, 0, 0, 0, 7975, 7973, 1, 0, 0, 0, 7975, 7976, 1, 0, 0, 0, 7976, 7978, 1, 0, 0, 0, 7977, 7975, 1, 0, 0, 0, 7978, 7979, 5, 7, 0, 0, 7979, 865, 1, 0, 0, 0, 7980, 7981, 3, 868, 434, 0, 7981, 7982, 3, 854, 427, 0, 7982, 7983, 3, 826, 413, 0, 7983, 867, 1, 0, 0, 0, 7984, 7987, 3, 310, 155, 0, 7985, 7987, 5, 28, 0, 0, 7986, 7984, 1, 0, 0, 0, 7986, 7985, 1, 0, 0, 0, 7987, 7994, 1, 0, 0, 0, 7988, 7989, 5, 4, 0, 0, 7989, 7990, 3, 670, 335, 0, 7990, 7991, 5, 5, 0, 0, 7991, 7993, 1, 0, 0, 0, 7992, 7988, 1, 0, 0, 0, 7993, 7996, 1, 0, 0, 0, 7994, 7992, 1, 0, 0, 0, 7994, 7995, 1, 0, 0, 0, 7995, 869, 1, 0, 0, 0, 7996, 7994, 1, 0, 0, 0, 7997, 7998, 5, 220, 0, 0, 7998, 7999, 3, 940, 470, 0, 7999, 8003, 5, 93, 0, 0, 8000, 8002, 3, 856, 428, 0, 8001, 8000, 1, 0, 0, 0, 8002, 8005, 1, 0, 0, 0, 8003, 8001, 1, 0, 0, 0, 8003, 8004, 1, 0, 0, 0, 8004, 8017, 1, 0, 0, 0, 8005, 8003, 1, 0, 0, 0, 8006, 8007, 5, 502, 0, 0, 8007, 8008, 3, 670, 335, 0, 8008, 8012, 5, 93, 0, 0, 8009, 8011, 3, 856, 428, 0, 8010, 8009, 1, 0, 0, 0, 8011, 8014, 1, 0, 0, 0, 8012, 8010, 1, 0, 0, 0, 8012, 8013, 1, 0, 0, 0, 8013, 8016, 1, 0, 0, 0, 8014, 8012, 1, 0, 0, 0, 8015, 8006, 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, 8022, 3, 872, 436, 0, 8021, 8020, 1, 0, 0, 0, 8021, 8022, 1, 0, 0, 0, 8022, 8023, 1, 0, 0, 0, 8023, 8024, 5, 454, 0, 0, 8024, 8025, 5, 220, 0, 0, 8025, 8026, 5, 7, 0, 0, 8026, 871, 1, 0, 0, 0, 8027, 8031, 5, 58, 0, 0, 8028, 8030, 3, 856, 428, 0, 8029, 8028, 1, 0, 0, 0, 8030, 8033, 1, 0, 0, 0, 8031, 8029, 1, 0, 0, 0, 8031, 8032, 1, 0, 0, 0, 8032, 873, 1, 0, 0, 0, 8033, 8031, 1, 0, 0, 0, 8034, 8036, 5, 40, 0, 0, 8035, 8037, 3, 940, 470, 0, 8036, 8035, 1, 0, 0, 0, 8036, 8037, 1, 0, 0, 0, 8037, 8047, 1, 0, 0, 0, 8038, 8039, 5, 102, 0, 0, 8039, 8040, 3, 728, 364, 0, 8040, 8044, 5, 93, 0, 0, 8041, 8043, 3, 856, 428, 0, 8042, 8041, 1, 0, 0, 0, 8043, 8046, 1, 0, 0, 0, 8044, 8042, 1, 0, 0, 0, 8044, 8045, 1, 0, 0, 0, 8045, 8048, 1, 0, 0, 0, 8046, 8044, 1, 0, 0, 0, 8047, 8038, 1, 0, 0, 0, 8048, 8049, 1, 0, 0, 0, 8049, 8047, 1, 0, 0, 0, 8049, 8050, 1, 0, 0, 0, 8050, 8052, 1, 0, 0, 0, 8051, 8053, 3, 872, 436, 0, 8052, 8051, 1, 0, 0, 0, 8052, 8053, 1, 0, 0, 0, 8053, 8054, 1, 0, 0, 0, 8054, 8055, 5, 454, 0, 0, 8055, 8056, 5, 40, 0, 0, 8056, 8057, 5, 7, 0, 0, 8057, 875, 1, 0, 0, 0, 8058, 8060, 3, 848, 424, 0, 8059, 8058, 1, 0, 0, 0, 8059, 8060, 1, 0, 0, 0, 8060, 8065, 1, 0, 0, 0, 8061, 8062, 5, 503, 0, 0, 8062, 8066, 3, 670, 335, 0, 8063, 8064, 5, 62, 0, 0, 8064, 8066, 3, 878, 439, 0, 8065, 8061, 1, 0, 0, 0, 8065, 8063, 1, 0, 0, 0, 8065, 8066, 1, 0, 0, 0, 8066, 8067, 1, 0, 0, 0, 8067, 8068, 3, 892, 446, 0, 8068, 877, 1, 0, 0, 0, 8069, 8070, 3, 308, 154, 0, 8070, 8093, 5, 68, 0, 0, 8071, 8073, 3, 826, 413, 0, 8072, 8074, 3, 528, 264, 0, 8073, 8072, 1, 0, 0, 0, 8073, 8074, 1, 0, 0, 0, 8074, 8094, 1, 0, 0, 0, 8075, 8094, 3, 554, 277, 0, 8076, 8094, 3, 514, 257, 0, 8077, 8078, 5, 202, 0, 0, 8078, 8081, 3, 670, 335, 0, 8079, 8080, 5, 100, 0, 0, 8080, 8082, 3, 728, 364, 0, 8081, 8079, 1, 0, 0, 0, 8081, 8082, 1, 0, 0, 0, 8082, 8094, 1, 0, 0, 0, 8083, 8085, 5, 504, 0, 0, 8084, 8083, 1, 0, 0, 0, 8084, 8085, 1, 0, 0, 0, 8085, 8086, 1, 0, 0, 0, 8086, 8087, 3, 670, 335, 0, 8087, 8088, 5, 24, 0, 0, 8088, 8091, 3, 670, 335, 0, 8089, 8090, 5, 147, 0, 0, 8090, 8092, 3, 670, 335, 0, 8091, 8089, 1, 0, 0, 0, 8091, 8092, 1, 0, 0, 0, 8092, 8094, 1, 0, 0, 0, 8093, 8071, 1, 0, 0, 0, 8093, 8075, 1, 0, 0, 0, 8093, 8076, 1, 0, 0, 0, 8093, 8077, 1, 0, 0, 0, 8093, 8084, 1, 0, 0, 0, 8094, 879, 1, 0, 0, 0, 8095, 8097, 3, 848, 424, 0, 8096, 8095, 1, 0, 0, 0, 8096, 8097, 1, 0, 0, 0, 8097, 8098, 1, 0, 0, 0, 8098, 8099, 5, 505, 0, 0, 8099, 8102, 3, 308, 154, 0, 8100, 8101, 5, 506, 0, 0, 8101, 8103, 5, 574, 0, 0, 8102, 8100, 1, 0, 0, 0, 8102, 8103, 1, 0, 0, 0, 8103, 8104, 1, 0, 0, 0, 8104, 8105, 5, 68, 0, 0, 8105, 8106, 5, 35, 0, 0, 8106, 8107, 3, 670, 335, 0, 8107, 8108, 3, 892, 446, 0, 8108, 881, 1, 0, 0, 0, 8109, 8111, 7, 116, 0, 0, 8110, 8112, 3, 938, 469, 0, 8111, 8110, 1, 0, 0, 0, 8111, 8112, 1, 0, 0, 0, 8112, 8115, 1, 0, 0, 0, 8113, 8114, 5, 102, 0, 0, 8114, 8116, 3, 940, 470, 0, 8115, 8113, 1, 0, 0, 0, 8115, 8116, 1, 0, 0, 0, 8116, 8117, 1, 0, 0, 0, 8117, 8118, 5, 7, 0, 0, 8118, 883, 1, 0, 0, 0, 8119, 8134, 5, 508, 0, 0, 8120, 8121, 5, 268, 0, 0, 8121, 8135, 3, 940, 470, 0, 8122, 8129, 5, 509, 0, 0, 8123, 8124, 5, 202, 0, 0, 8124, 8125, 3, 670, 335, 0, 8125, 8126, 5, 100, 0, 0, 8126, 8127, 3, 728, 364, 0, 8127, 8130, 1, 0, 0, 0, 8128, 8130, 3, 554, 277, 0, 8129, 8123, 1, 0, 0, 0, 8129, 8128, 1, 0, 0, 0, 8130, 8135, 1, 0, 0, 0, 8131, 8133, 3, 940, 470, 0, 8132, 8131, 1, 0, 0, 0, 8132, 8133, 1, 0, 0, 0, 8133, 8135, 1, 0, 0, 0, 8134, 8120, 1, 0, 0, 0, 8134, 8122, 1, 0, 0, 0, 8134, 8132, 1, 0, 0, 0, 8135, 8136, 1, 0, 0, 0, 8136, 8137, 5, 7, 0, 0, 8137, 885, 1, 0, 0, 0, 8138, 8168, 5, 510, 0, 0, 8139, 8141, 7, 117, 0, 0, 8140, 8139, 1, 0, 0, 0, 8140, 8141, 1, 0, 0, 0, 8141, 8154, 1, 0, 0, 0, 8142, 8155, 3, 836, 418, 0, 8143, 8144, 5, 511, 0, 0, 8144, 8155, 3, 816, 408, 0, 8145, 8152, 3, 816, 408, 0, 8146, 8147, 5, 6, 0, 0, 8147, 8149, 3, 670, 335, 0, 8148, 8146, 1, 0, 0, 0, 8149, 8150, 1, 0, 0, 0, 8150, 8148, 1, 0, 0, 0, 8150, 8151, 1, 0, 0, 0, 8151, 8153, 1, 0, 0, 0, 8152, 8148, 1, 0, 0, 0, 8152, 8153, 1, 0, 0, 0, 8153, 8155, 1, 0, 0, 0, 8154, 8142, 1, 0, 0, 0, 8154, 8143, 1, 0, 0, 0, 8154, 8145, 1, 0, 0, 0, 8154, 8155, 1, 0, 0, 0, 8155, 8165, 1, 0, 0, 0, 8156, 8157, 5, 100, 0, 0, 8157, 8162, 3, 888, 444, 0, 8158, 8159, 5, 6, 0, 0, 8159, 8161, 3, 888, 444, 0, 8160, 8158, 1, 0, 0, 0, 8161, 8164, 1, 0, 0, 0, 8162, 8160, 1, 0, 0, 0, 8162, 8163, 1, 0, 0, 0, 8163, 8166, 1, 0, 0, 0, 8164, 8162, 1, 0, 0, 0, 8165, 8156, 1, 0, 0, 0, 8165, 8166, 1, 0, 0, 0, 8166, 8167, 1, 0, 0, 0, 8167, 8169, 5, 7, 0, 0, 8168, 8140, 1, 0, 0, 0, 8168, 8169, 1, 0, 0, 0, 8169, 887, 1, 0, 0, 0, 8170, 8171, 3, 836, 418, 0, 8171, 8172, 5, 10, 0, 0, 8172, 8173, 3, 670, 335, 0, 8173, 889, 1, 0, 0, 0, 8174, 8175, 5, 518, 0, 0, 8175, 8178, 3, 940, 470, 0, 8176, 8177, 5, 6, 0, 0, 8177, 8179, 3, 940, 470, 0, 8178, 8176, 1, 0, 0, 0, 8178, 8179, 1, 0, 0, 0, 8179, 8180, 1, 0, 0, 0, 8180, 8181, 5, 7, 0, 0, 8181, 891, 1, 0, 0, 0, 8182, 8186, 5, 519, 0, 0, 8183, 8185, 3, 856, 428, 0, 8184, 8183, 1, 0, 0, 0, 8185, 8188, 1, 0, 0, 0, 8186, 8184, 1, 0, 0, 0, 8186, 8187, 1, 0, 0, 0, 8187, 8189, 1, 0, 0, 0, 8188, 8186, 1, 0, 0, 0, 8189, 8190, 5, 454, 0, 0, 8190, 8192, 5, 519, 0, 0, 8191, 8193, 3, 938, 469, 0, 8192, 8191, 1, 0, 0, 0, 8192, 8193, 1, 0, 0, 0, 8193, 8194, 1, 0, 0, 0, 8194, 8195, 5, 7, 0, 0, 8195, 893, 1, 0, 0, 0, 8196, 8198, 3, 4, 2, 0, 8197, 8199, 3, 898, 449, 0, 8198, 8197, 1, 0, 0, 0, 8198, 8199, 1, 0, 0, 0, 8199, 8200, 1, 0, 0, 0, 8200, 8201, 5, 7, 0, 0, 8201, 895, 1, 0, 0, 0, 8202, 8203, 5, 202, 0, 0, 8203, 8219, 3, 670, 335, 0, 8204, 8206, 3, 898, 449, 0, 8205, 8204, 1, 0, 0, 0, 8205, 8206, 1, 0, 0, 0, 8206, 8209, 1, 0, 0, 0, 8207, 8208, 5, 100, 0, 0, 8208, 8210, 3, 728, 364, 0, 8209, 8207, 1, 0, 0, 0, 8209, 8210, 1, 0, 0, 0, 8210, 8220, 1, 0, 0, 0, 8211, 8212, 5, 100, 0, 0, 8212, 8214, 3, 728, 364, 0, 8213, 8211, 1, 0, 0, 0, 8213, 8214, 1, 0, 0, 0, 8214, 8216, 1, 0, 0, 0, 8215, 8217, 3, 898, 449, 0, 8216, 8215, 1, 0, 0, 0, 8216, 8217, 1, 0, 0, 0, 8217, 8220, 1, 0, 0, 0, 8218, 8220, 1, 0, 0, 0, 8219, 8205, 1, 0, 0, 0, 8219, 8213, 1, 0, 0, 0, 8219, 8218, 1, 0, 0, 0, 8220, 8221, 1, 0, 0, 0, 8221, 8222, 5, 7, 0, 0, 8222, 897, 1, 0, 0, 0, 8223, 8225, 5, 71, 0, 0, 8224, 8226, 5, 346, 0, 0, 8225, 8224, 1, 0, 0, 0, 8225, 8226, 1, 0, 0, 0, 8226, 8227, 1, 0, 0, 0, 8227, 8228, 3, 728, 364, 0, 8228, 899, 1, 0, 0, 0, 8229, 8261, 5, 520, 0, 0, 8230, 8235, 3, 932, 466, 0, 8231, 8233, 5, 269, 0, 0, 8232, 8231, 1, 0, 0, 0, 8232, 8233, 1, 0, 0, 0, 8233, 8234, 1, 0, 0, 0, 8234, 8236, 5, 324, 0, 0, 8235, 8232, 1, 0, 0, 0, 8235, 8236, 1, 0, 0, 0, 8236, 8237, 1, 0, 0, 0, 8237, 8245, 5, 62, 0, 0, 8238, 8246, 3, 554, 277, 0, 8239, 8240, 5, 202, 0, 0, 8240, 8243, 3, 940, 470, 0, 8241, 8242, 5, 100, 0, 0, 8242, 8244, 3, 728, 364, 0, 8243, 8241, 1, 0, 0, 0, 8243, 8244, 1, 0, 0, 0, 8244, 8246, 1, 0, 0, 0, 8245, 8238, 1, 0, 0, 0, 8245, 8239, 1, 0, 0, 0, 8246, 8262, 1, 0, 0, 0, 8247, 8259, 3, 826, 413, 0, 8248, 8249, 5, 2, 0, 0, 8249, 8254, 3, 902, 451, 0, 8250, 8251, 5, 6, 0, 0, 8251, 8253, 3, 902, 451, 0, 8252, 8250, 1, 0, 0, 0, 8253, 8256, 1, 0, 0, 0, 8254, 8252, 1, 0, 0, 0, 8254, 8255, 1, 0, 0, 0, 8255, 8257, 1, 0, 0, 0, 8256, 8254, 1, 0, 0, 0, 8257, 8258, 5, 3, 0, 0, 8258, 8260, 1, 0, 0, 0, 8259, 8248, 1, 0, 0, 0, 8259, 8260, 1, 0, 0, 0, 8260, 8262, 1, 0, 0, 0, 8261, 8230, 1, 0, 0, 0, 8261, 8247, 1, 0, 0, 0, 8262, 8263, 1, 0, 0, 0, 8263, 8264, 5, 7, 0, 0, 8264, 901, 1, 0, 0, 0, 8265, 8266, 3, 826, 413, 0, 8266, 8267, 5, 20, 0, 0, 8267, 8269, 1, 0, 0, 0, 8268, 8265, 1, 0, 0, 0, 8268, 8269, 1, 0, 0, 0, 8269, 8270, 1, 0, 0, 0, 8270, 8271, 3, 670, 335, 0, 8271, 903, 1, 0, 0, 0, 8272, 8274, 5, 61, 0, 0, 8273, 8275, 3, 906, 453, 0, 8274, 8273, 1, 0, 0, 0, 8274, 8275, 1, 0, 0, 0, 8275, 8277, 1, 0, 0, 0, 8276, 8278, 3, 326, 163, 0, 8277, 8276, 1, 0, 0, 0, 8277, 8278, 1, 0, 0, 0, 8278, 8279, 1, 0, 0, 0, 8279, 8280, 3, 932, 466, 0, 8280, 8281, 5, 71, 0, 0, 8281, 8282, 3, 728, 364, 0, 8282, 8283, 5, 7, 0, 0, 8283, 905, 1, 0, 0, 0, 8284, 8299, 5, 268, 0, 0, 8285, 8299, 5, 293, 0, 0, 8286, 8299, 5, 207, 0, 0, 8287, 8299, 5, 249, 0, 0, 8288, 8290, 7, 51, 0, 0, 8289, 8288, 1, 0, 0, 0, 8289, 8290, 1, 0, 0, 0, 8290, 8291, 1, 0, 0, 0, 8291, 8299, 3, 670, 335, 0, 8292, 8299, 5, 30, 0, 0, 8293, 8296, 7, 118, 0, 0, 8294, 8297, 3, 670, 335, 0, 8295, 8297, 5, 30, 0, 0, 8296, 8294, 1, 0, 0, 0, 8296, 8295, 1, 0, 0, 0, 8296, 8297, 1, 0, 0, 0, 8297, 8299, 1, 0, 0, 0, 8298, 8284, 1, 0, 0, 0, 8298, 8285, 1, 0, 0, 0, 8298, 8286, 1, 0, 0, 0, 8298, 8287, 1, 0, 0, 0, 8298, 8289, 1, 0, 0, 0, 8298, 8292, 1, 0, 0, 0, 8298, 8293, 1, 0, 0, 0, 8299, 907, 1, 0, 0, 0, 8300, 8302, 5, 265, 0, 0, 8301, 8303, 3, 906, 453, 0, 8302, 8301, 1, 0, 0, 0, 8302, 8303, 1, 0, 0, 0, 8303, 8304, 1, 0, 0, 0, 8304, 8305, 3, 932, 466, 0, 8305, 8306, 5, 7, 0, 0, 8306, 909, 1, 0, 0, 0, 8307, 8309, 3, 566, 283, 0, 8308, 8307, 1, 0, 0, 0, 8308, 8309, 1, 0, 0, 0, 8309, 8310, 1, 0, 0, 0, 8310, 8311, 5, 525, 0, 0, 8311, 8313, 5, 71, 0, 0, 8312, 8314, 5, 81, 0, 0, 8313, 8312, 1, 0, 0, 0, 8313, 8314, 1, 0, 0, 0, 8314, 8315, 1, 0, 0, 0, 8315, 8317, 3, 778, 389, 0, 8316, 8318, 5, 9, 0, 0, 8317, 8316, 1, 0, 0, 0, 8317, 8318, 1, 0, 0, 0, 8318, 8323, 1, 0, 0, 0, 8319, 8321, 5, 36, 0, 0, 8320, 8319, 1, 0, 0, 0, 8320, 8321, 1, 0, 0, 0, 8321, 8322, 1, 0, 0, 0, 8322, 8324, 3, 826, 413, 0, 8323, 8320, 1, 0, 0, 0, 8323, 8324, 1, 0, 0, 0, 8324, 8325, 1, 0, 0, 0, 8325, 8326, 5, 100, 0, 0, 8326, 8327, 3, 912, 456, 0, 8327, 8328, 5, 80, 0, 0, 8328, 8330, 3, 670, 335, 0, 8329, 8331, 3, 914, 457, 0, 8330, 8329, 1, 0, 0, 0, 8331, 8332, 1, 0, 0, 0, 8332, 8330, 1, 0, 0, 0, 8332, 8333, 1, 0, 0, 0, 8333, 8335, 1, 0, 0, 0, 8334, 8336, 3, 540, 270, 0, 8335, 8334, 1, 0, 0, 0, 8335, 8336, 1, 0, 0, 0, 8336, 911, 1, 0, 0, 0, 8337, 8339, 5, 81, 0, 0, 8338, 8337, 1, 0, 0, 0, 8338, 8339, 1, 0, 0, 0, 8339, 8340, 1, 0, 0, 0, 8340, 8342, 3, 778, 389, 0, 8341, 8343, 5, 9, 0, 0, 8342, 8341, 1, 0, 0, 0, 8342, 8343, 1, 0, 0, 0, 8343, 8349, 1, 0, 0, 0, 8344, 8347, 3, 558, 279, 0, 8345, 8347, 3, 602, 301, 0, 8346, 8344, 1, 0, 0, 0, 8346, 8345, 1, 0, 0, 0, 8347, 8349, 1, 0, 0, 0, 8348, 8338, 1, 0, 0, 0, 8348, 8346, 1, 0, 0, 0, 8349, 8354, 1, 0, 0, 0, 8350, 8352, 5, 36, 0, 0, 8351, 8350, 1, 0, 0, 0, 8351, 8352, 1, 0, 0, 0, 8352, 8353, 1, 0, 0, 0, 8353, 8355, 3, 826, 413, 0, 8354, 8351, 1, 0, 0, 0, 8354, 8355, 1, 0, 0, 0, 8355, 913, 1, 0, 0, 0, 8356, 8357, 5, 102, 0, 0, 8357, 8360, 5, 526, 0, 0, 8358, 8359, 5, 33, 0, 0, 8359, 8361, 3, 670, 335, 0, 8360, 8358, 1, 0, 0, 0, 8360, 8361, 1, 0, 0, 0, 8361, 8362, 1, 0, 0, 0, 8362, 8367, 5, 93, 0, 0, 8363, 8368, 3, 918, 459, 0, 8364, 8368, 5, 182, 0, 0, 8365, 8366, 5, 57, 0, 0, 8366, 8368, 5, 270, 0, 0, 8367, 8363, 1, 0, 0, 0, 8367, 8364, 1, 0, 0, 0, 8367, 8365, 1, 0, 0, 0, 8368, 8383, 1, 0, 0, 0, 8369, 8370, 5, 102, 0, 0, 8370, 8371, 5, 77, 0, 0, 8371, 8374, 5, 526, 0, 0, 8372, 8373, 5, 33, 0, 0, 8373, 8375, 3, 670, 335, 0, 8374, 8372, 1, 0, 0, 0, 8374, 8375, 1, 0, 0, 0, 8375, 8376, 1, 0, 0, 0, 8376, 8380, 5, 93, 0, 0, 8377, 8381, 3, 916, 458, 0, 8378, 8379, 5, 57, 0, 0, 8379, 8381, 5, 270, 0, 0, 8380, 8377, 1, 0, 0, 0, 8380, 8378, 1, 0, 0, 0, 8381, 8383, 1, 0, 0, 0, 8382, 8356, 1, 0, 0, 0, 8382, 8369, 1, 0, 0, 0, 8383, 915, 1, 0, 0, 0, 8384, 8386, 5, 241, 0, 0, 8385, 8387, 3, 138, 69, 0, 8386, 8385, 1, 0, 0, 0, 8386, 8387, 1, 0, 0, 0, 8387, 8391, 1, 0, 0, 0, 8388, 8389, 5, 463, 0, 0, 8389, 8390, 7, 77, 0, 0, 8390, 8392, 5, 450, 0, 0, 8391, 8388, 1, 0, 0, 0, 8391, 8392, 1, 0, 0, 0, 8392, 8393, 1, 0, 0, 0, 8393, 8394, 3, 920, 460, 0, 8394, 917, 1, 0, 0, 0, 8395, 8396, 5, 369, 0, 0, 8396, 8414, 5, 333, 0, 0, 8397, 8398, 3, 806, 403, 0, 8398, 8399, 5, 10, 0, 0, 8399, 8400, 3, 922, 461, 0, 8400, 8415, 1, 0, 0, 0, 8401, 8402, 3, 138, 69, 0, 8402, 8403, 5, 10, 0, 0, 8403, 8404, 5, 2, 0, 0, 8404, 8409, 3, 922, 461, 0, 8405, 8406, 5, 6, 0, 0, 8406, 8408, 3, 922, 461, 0, 8407, 8405, 1, 0, 0, 0, 8408, 8411, 1, 0, 0, 0, 8409, 8407, 1, 0, 0, 0, 8409, 8410, 1, 0, 0, 0, 8410, 8412, 1, 0, 0, 0, 8411, 8409, 1, 0, 0, 0, 8412, 8413, 5, 3, 0, 0, 8413, 8415, 1, 0, 0, 0, 8414, 8397, 1, 0, 0, 0, 8414, 8401, 1, 0, 0, 0, 8415, 8416, 1, 0, 0, 0, 8416, 8414, 1, 0, 0, 0, 8416, 8417, 1, 0, 0, 0, 8417, 919, 1, 0, 0, 0, 8418, 8419, 5, 422, 0, 0, 8419, 8420, 5, 2, 0, 0, 8420, 8425, 3, 922, 461, 0, 8421, 8422, 5, 6, 0, 0, 8422, 8424, 3, 922, 461, 0, 8423, 8421, 1, 0, 0, 0, 8424, 8427, 1, 0, 0, 0, 8425, 8423, 1, 0, 0, 0, 8425, 8426, 1, 0, 0, 0, 8426, 8428, 1, 0, 0, 0, 8427, 8425, 1, 0, 0, 0, 8428, 8429, 5, 3, 0, 0, 8429, 8433, 1, 0, 0, 0, 8430, 8431, 5, 53, 0, 0, 8431, 8433, 5, 422, 0, 0, 8432, 8418, 1, 0, 0, 0, 8432, 8430, 1, 0, 0, 0, 8433, 921, 1, 0, 0, 0, 8434, 8437, 3, 582, 291, 0, 8435, 8437, 5, 53, 0, 0, 8436, 8434, 1, 0, 0, 0, 8436, 8435, 1, 0, 0, 0, 8437, 923, 1, 0, 0, 0, 8438, 8439, 5, 157, 0, 0, 8439, 8440, 3, 932, 466, 0, 8440, 8441, 5, 7, 0, 0, 8441, 925, 1, 0, 0, 0, 8442, 8443, 5, 78, 0, 0, 8443, 8444, 5, 7, 0, 0, 8444, 927, 1, 0, 0, 0, 8445, 8451, 7, 68, 0, 0, 8446, 8448, 5, 33, 0, 0, 8447, 8449, 5, 269, 0, 0, 8448, 8447, 1, 0, 0, 0, 8448, 8449, 1, 0, 0, 0, 8449, 8450, 1, 0, 0, 0, 8450, 8452, 5, 153, 0, 0, 8451, 8446, 1, 0, 0, 0, 8451, 8452, 1, 0, 0, 0, 8452, 8453, 1, 0, 0, 0, 8453, 8454, 5, 7, 0, 0, 8454, 929, 1, 0, 0, 0, 8455, 8456, 5, 333, 0, 0, 8456, 8457, 3, 310, 155, 0, 8457, 8458, 5, 94, 0, 0, 8458, 8459, 5, 53, 0, 0, 8459, 8460, 5, 7, 0, 0, 8460, 8468, 1, 0, 0, 0, 8461, 8464, 5, 313, 0, 0, 8462, 8465, 3, 310, 155, 0, 8463, 8465, 5, 30, 0, 0, 8464, 8462, 1, 0, 0, 0, 8464, 8463, 1, 0, 0, 0, 8465, 8466, 1, 0, 0, 0, 8466, 8468, 5, 7, 0, 0, 8467, 8455, 1, 0, 0, 0, 8467, 8461, 1, 0, 0, 0, 8468, 931, 1, 0, 0, 0, 8469, 8472, 3, 826, 413, 0, 8470, 8472, 5, 28, 0, 0, 8471, 8469, 1, 0, 0, 0, 8471, 8470, 1, 0, 0, 0, 8472, 933, 1, 0, 0, 0, 8473, 8490, 5, 517, 0, 0, 8474, 8475, 5, 102, 0, 0, 8475, 8480, 3, 936, 468, 0, 8476, 8477, 5, 82, 0, 0, 8477, 8479, 3, 936, 468, 0, 8478, 8476, 1, 0, 0, 0, 8479, 8482, 1, 0, 0, 0, 8480, 8478, 1, 0, 0, 0, 8480, 8481, 1, 0, 0, 0, 8481, 8483, 1, 0, 0, 0, 8482, 8480, 1, 0, 0, 0, 8483, 8487, 5, 93, 0, 0, 8484, 8486, 3, 856, 428, 0, 8485, 8484, 1, 0, 0, 0, 8486, 8489, 1, 0, 0, 0, 8487, 8485, 1, 0, 0, 0, 8487, 8488, 1, 0, 0, 0, 8488, 8491, 1, 0, 0, 0, 8489, 8487, 1, 0, 0, 0, 8490, 8474, 1, 0, 0, 0, 8491, 8492, 1, 0, 0, 0, 8492, 8490, 1, 0, 0, 0, 8492, 8493, 1, 0, 0, 0, 8493, 935, 1, 0, 0, 0, 8494, 8498, 3, 938, 469, 0, 8495, 8496, 5, 511, 0, 0, 8496, 8498, 3, 816, 408, 0, 8497, 8494, 1, 0, 0, 0, 8497, 8495, 1, 0, 0, 0, 8498, 937, 1, 0, 0, 0, 8499, 8502, 3, 826, 413, 0, 8500, 8502, 3, 838, 419, 0, 8501, 8499, 1, 0, 0, 0, 8501, 8500, 1, 0, 0, 0, 8502, 939, 1, 0, 0, 0, 8503, 8505, 3, 758, 379, 0, 8504, 8503, 1, 0, 0, 0, 8504, 8505, 1, 0, 0, 0, 8505, 8507, 1, 0, 0, 0, 8506, 8508, 3, 574, 287, 0, 8507, 8506, 1, 0, 0, 0, 8507, 8508, 1, 0, 0, 0, 8508, 8510, 1, 0, 0, 0, 8509, 8511, 3, 604, 302, 0, 8510, 8509, 1, 0, 0, 0, 8510, 8511, 1, 0, 0, 0, 8511, 8513, 1, 0, 0, 0, 8512, 8514, 3, 634, 317, 0, 8513, 8512, 1, 0, 0, 0, 8513, 8514, 1, 0, 0, 0, 8514, 8516, 1, 0, 0, 0, 8515, 8517, 3, 594, 297, 0, 8516, 8515, 1, 0, 0, 0, 8516, 8517, 1, 0, 0, 0, 8517, 8519, 1, 0, 0, 0, 8518, 8520, 3, 700, 350, 0, 8519, 8518, 1, 0, 0, 0, 8519, 8520, 1, 0, 0, 0, 8520, 8522, 1, 0, 0, 0, 8521, 8523, 3, 698, 349, 0, 8522, 8521, 1, 0, 0, 0, 8522, 8523, 1, 0, 0, 0, 8523, 941, 1, 0, 0, 0, 1192, 945, 952, 1072, 1074, 1083, 1088, 1094, 1129, 1139, 1145, 1150, 1157, 1162, 1169, 1180, 1188, 1192, 1204, 1210, 1216, 1220, 1225, 1229, 1242, 1252, 1254, 1260, 1265, 1278, 1281, 1286, 1291, 1302, 1306, 1318, 1322, 1325, 1329, 1341, 1359, 1366, 1374, 1379, 1386, 1394, 1400, 1408, 1416, 1420, 1434, 1439, 1444, 1456, 1462, 1474, 1479, 1489, 1495, 1500, 1509, 1516, 1521, 1526, 1536, 1541, 1546, 1553, 1557, 1571, 1577, 1583, 1588, 1595, 1604, 1613, 1622, 1631, 1635, 1647, 1655, 1665, 1685, 1690, 1693, 1700, 1703, 1707, 1711, 1714, 1719, 1724, 1728, 1737, 1743, 1747, 1756, 1759, 1765, 1774, 1786, 1790, 1794, 1799, 1802, 1808, 1810, 1812, 1816, 1822, 1826, 1831, 1836, 1840, 1843, 1850, 1863, 1876, 1901, 1911, 1918, 1923, 1927, 1934, 1939, 1942, 1944, 1949, 1953, 1957, 1961, 1966, 1969, 1973, 1976, 1980, 1988, 1993, 1996, 2000, 2006, 2015, 2019, 2029, 2034, 2038, 2042, 2044, 2046, 2053, 2058, 2062, 2067, 2079, 2084, 2088, 2092, 2097, 2101, 2104, 2107, 2110, 2113, 2116, 2121, 2124, 2127, 2130, 2133, 2136, 2142, 2146, 2149, 2152, 2155, 2158, 2160, 2167, 2175, 2185, 2190, 2200, 2203, 2208, 2213, 2218, 2221, 2226, 2235, 2237, 2241, 2244, 2248, 2253, 2258, 2262, 2265, 2269, 2272, 2277, 2280, 2285, 2288, 2292, 2295, 2298, 2303, 2306, 2314, 2326, 2330, 2337, 2342, 2345, 2348, 2351, 2356, 2367, 2373, 2377, 2380, 2383, 2388, 2395, 2398, 2402, 2410, 2415, 2418, 2421, 2428, 2433, 2442, 2445, 2448, 2453, 2456, 2468, 2478, 2495, 2499, 2503, 2505, 2522, 2524, 2540, 2551, 2554, 2557, 2566, 2575, 2591, 2594, 2597, 2605, 2609, 2616, 2625, 2629, 2635, 2639, 2642, 2645, 2648, 2651, 2657, 2661, 2666, 2670, 2673, 2676, 2679, 2684, 2690, 2694, 2698, 2702, 2708, 2710, 2715, 2721, 2727, 2731, 2746, 2751, 2754, 2756, 2759, 2763, 2767, 2770, 2773, 2781, 2787, 2789, 2795, 2800, 2805, 2809, 2816, 2818, 2829, 2868, 2878, 2880, 2883, 2887, 2891, 2901, 2903, 2909, 2911, 2920, 2932, 2946, 2951, 2954, 2961, 2966, 2974, 2976, 2982, 2987, 2991, 2996, 3002, 3009, 3015, 3017, 3026, 3032, 3040, 3046, 3051, 3056, 3064, 3079, 3081, 3085, 3089, 3092, 3095, 3104, 3107, 3110, 3116, 3122, 3126, 3138, 3144, 3147, 3152, 3156, 3163, 3173, 3175, 3199, 3211, 3216, 3218, 3222, 3225, 3228, 3238, 3241, 3251, 3256, 3261, 3264, 3267, 3275, 3281, 3288, 3296, 3299, 3310, 3314, 3320, 3327, 3330, 3339, 3353, 3356, 3370, 3381, 3384, 3396, 3401, 3414, 3419, 3432, 3441, 3444, 3447, 3454, 3457, 3469, 3475, 3477, 3485, 3493, 3501, 3513, 3518, 3529, 3540, 3548, 3556, 3563, 3570, 3572, 3575, 3580, 3585, 3604, 3613, 3616, 3643, 3652, 3655, 3659, 3663, 3667, 3674, 3678, 3682, 3686, 3690, 3695, 3699, 3704, 3710, 3715, 3722, 3726, 3732, 3736, 3741, 3749, 3755, 3760, 3767, 3772, 3776, 3781, 3787, 3794, 3799, 3806, 3811, 3818, 3822, 3830, 3834, 3836, 3839, 3844, 3854, 3869, 3872, 3880, 3887, 3892, 3898, 3902, 3909, 3914, 3917, 3920, 3924, 3933, 3951, 3954, 3986, 3991, 3997, 4017, 4022, 4028, 4031, 4035, 4039, 4045, 4048, 4052, 4056, 4061, 4064, 4067, 4070, 4083, 4089, 4097, 4104, 4109, 4112, 4119, 4122, 4130, 4133, 4138, 4145, 4148, 4168, 4180, 4183, 4189, 4194, 4203, 4211, 4216, 4222, 4229, 4237, 4240, 4251, 4253, 4267, 4273, 4281, 4283, 4289, 4293, 4296, 4299, 4304, 4309, 4313, 4316, 4319, 4322, 4325, 4333, 4344, 4347, 4350, 4355, 4358, 4362, 4366, 4372, 4380, 4383, 4396, 4401, 4403, 4408, 4415, 4422, 4431, 4439, 4447, 4454, 4462, 4469, 4477, 4481, 4485, 4487, 4493, 4498, 4502, 4509, 4514, 4519, 4524, 4526, 4536, 4546, 4562, 4580, 4592, 4599, 4614, 4619, 4622, 4627, 4632, 4637, 4640, 4643, 4648, 4655, 4659, 4664, 4671, 4675, 4681, 4690, 4699, 4711, 4713, 4726, 4732, 4736, 4738, 4745, 4758, 4765, 4767, 4783, 4787, 4791, 4796, 4801, 4806, 4811, 4814, 4826, 4879, 4888, 4892, 4901, 4905, 4914, 4918, 4923, 4926, 4930, 4935, 4937, 4946, 4951, 4962, 4966, 4980, 4988, 5026, 5028, 5047, 5050, 5077, 5081, 5085, 5089, 5093, 5096, 5111, 5118, 5132, 5145, 5170, 5189, 5204, 5220, 5227, 5238, 5241, 5260, 5263, 5276, 5280, 5300, 5312, 5316, 5338, 5342, 5352, 5356, 5362, 5366, 5370, 5374, 5381, 5386, 5397, 5401, 5404, 5409, 5415, 5426, 5430, 5433, 5437, 5441, 5444, 5454, 5457, 5461, 5466, 5472, 5475, 5480, 5483, 5490, 5492, 5498, 5502, 5511, 5516, 5518, 5528, 5531, 5536, 5544, 5547, 5552, 5554, 5556, 5562, 5579, 5585, 5598, 5604, 5608, 5613, 5643, 5658, 5663, 5667, 5680, 5684, 5686, 5695, 5701, 5703, 5707, 5710, 5713, 5716, 5719, 5721, 5724, 5728, 5736, 5741, 5744, 5750, 5754, 5758, 5763, 5765, 5769, 5773, 5780, 5786, 5790, 5792, 5794, 5807, 5815, 5823, 5834, 5844, 5849, 5853, 5857, 5864, 5867, 5869, 5877, 5881, 5884, 5891, 5898, 5903, 5910, 5913, 5915, 5918, 5924, 5929, 5933, 5940, 5950, 5957, 5960, 5963, 5967, 5978, 5981, 5984, 5987, 5990, 5997, 6000, 6003, 6010, 6022, 6029, 6031, 6036, 6041, 6043, 6049, 6056, 6061, 6066, 6070, 6074, 6078, 6080, 6084, 6088, 6091, 6094, 6096, 6106, 6108, 6113, 6117, 6122, 6126, 6133, 6138, 6142, 6145, 6151, 6154, 6173, 6180, 6184, 6187, 6191, 6195, 6198, 6201, 6206, 6215, 6222, 6226, 6230, 6234, 6237, 6239, 6244, 6248, 6253, 6259, 6266, 6271, 6276, 6285, 6292, 6300, 6311, 6316, 6320, 6323, 6327, 6332, 6336, 6341, 6349, 6360, 6365, 6369, 6372, 6375, 6377, 6380, 6383, 6386, 6396, 6401, 6407, 6411, 6413, 6420, 6425, 6431, 6433, 6438, 6442, 6446, 6448, 6451, 6458, 6463, 6466, 6472, 6476, 6482, 6491, 6497, 6499, 6504, 6507, 6516, 6523, 6525, 6532, 6537, 6540, 6550, 6561, 6566, 6570, 6578, 6588, 6595, 6601, 6612, 6618, 6628, 6637, 6641, 6644, 6646, 6648, 6652, 6660, 6663, 6668, 6673, 6680, 6682, 6688, 6692, 6695, 6700, 6703, 6705, 6711, 6720, 6726, 6729, 6737, 6740, 6744, 6750, 6752, 6755, 6759, 6764, 6771, 6778, 6780, 6786, 6788, 6793, 6795, 6799, 6808, 6812, 6820, 6822, 6836, 6839, 6847, 6856, 6862, 6867, 6875, 6877, 6882, 6886, 6891, 6896, 6902, 6918, 6920, 6929, 6944, 6949, 6952, 6958, 6963, 6976, 6981, 6985, 6992, 7011, 7023, 7028, 7036, 7038, 7040, 7049, 7052, 7057, 7062, 7065, 7076, 7084, 7089, 7091, 7094, 7098, 7109, 7130, 7138, 7151, 7161, 7167, 7173, 7176, 7179, 7205, 7207, 7228, 7238, 7251, 7256, 7260, 7262, 7274, 7281, 7287, 7293, 7297, 7308, 7321, 7325, 7330, 7333, 7336, 7345, 7356, 7358, 7362, 7367, 7376, 7381, 7389, 7399, 7407, 7411, 7414, 7421, 7433, 7437, 7444, 7452, 7454, 7463, 7466, 7478, 7487, 7494, 7503, 7517, 7521, 7523, 7526, 7531, 7536, 7544, 7550, 7553, 7557, 7566, 7573, 7583, 7591, 7599, 7607, 7624, 7631, 7639, 7656, 7662, 7678, 7684, 7689, 7697, 7702, 7705, 7714, 7721, 7726, 7730, 7735, 7741, 7746, 7751, 7759, 7814, 7821, 7827, 7829, 7831, 7833, 7839, 7843, 7847, 7858, 7861, 7865, 7869, 7873, 7876, 7879, 7882, 7891, 7896, 7900, 7933, 7943, 7947, 7953, 7958, 7967, 7975, 7986, 7994, 8003, 8012, 8017, 8021, 8031, 8036, 8044, 8049, 8052, 8059, 8065, 8073, 8081, 8084, 8091, 8093, 8096, 8102, 8111, 8115, 8129, 8132, 8134, 8140, 8150, 8152, 8154, 8162, 8165, 8168, 8178, 8186, 8192, 8198, 8205, 8209, 8213, 8216, 8219, 8225, 8232, 8235, 8243, 8245, 8254, 8259, 8261, 8268, 8274, 8277, 8289, 8296, 8298, 8302, 8308, 8313, 8317, 8320, 8323, 8332, 8335, 8338, 8342, 8346, 8348, 8351, 8354, 8360, 8367, 8374, 8380, 8382, 8386, 8391, 8409, 8414, 8416, 8425, 8432, 8436, 8448, 8451, 8464, 8467, 8471, 8480, 8487, 8492, 8497, 8501, 8504, 8507, 8510, 8513, 8516, 8519, 8522] \ No newline at end of file diff --git a/src/lib/postgresql/PostgreSqlParser.ts b/src/lib/postgresql/PostgreSqlParser.ts index c8b80d4b5..d4bccae84 100644 --- a/src/lib/postgresql/PostgreSqlParser.ts +++ b/src/lib/postgresql/PostgreSqlParser.ts @@ -1026,59 +1026,60 @@ export class PostgreSqlParser extends SQLParserBase { public static readonly RULE_typeFunctionName = 414; public static readonly RULE_nonReservedWord = 415; public static readonly RULE_colLabel = 416; - public static readonly RULE_identifier = 417; - public static readonly RULE_unreservedKeyword = 418; - public static readonly RULE_colNameKeyword = 419; - public static readonly RULE_typeFuncNameKeyword = 420; - public static readonly RULE_reservedKeyword = 421; - public static readonly RULE_plBlock = 422; - public static readonly RULE_labelDecl = 423; - public static readonly RULE_declStatement = 424; - public static readonly RULE_declCursorArg = 425; - public static readonly RULE_assignOperator = 426; - public static readonly RULE_procStmt = 427; - public static readonly RULE_stmtPerform = 428; - public static readonly RULE_stmtCall = 429; - public static readonly RULE_stmtAssign = 430; - public static readonly RULE_stmtGetdiag = 431; - public static readonly RULE_getdiagListItem = 432; - public static readonly RULE_assignVar = 433; - public static readonly RULE_stmtIf = 434; - public static readonly RULE_stmtElse = 435; - public static readonly RULE_stmtCase = 436; - public static readonly RULE_stmtLoopWhileFor = 437; - public static readonly RULE_forControl = 438; - public static readonly RULE_stmtForeach = 439; - public static readonly RULE_stmtExit = 440; - public static readonly RULE_stmtReturn = 441; - public static readonly RULE_stmtRaise = 442; - public static readonly RULE_optRaiseUsingElem = 443; - public static readonly RULE_stmtAssert = 444; - public static readonly RULE_loopBody = 445; - public static readonly RULE_stmtExecsql = 446; - public static readonly RULE_stmtDynexecute = 447; - public static readonly RULE_optExecuteInto = 448; - public static readonly RULE_stmtOpen = 449; - public static readonly RULE_optOpenBoundListItem = 450; - public static readonly RULE_stmtFetch = 451; - public static readonly RULE_optFetchFirection = 452; - public static readonly RULE_stmtMove = 453; - public static readonly RULE_mergeStmt = 454; - public static readonly RULE_dataSource = 455; - public static readonly RULE_mergeWhenClause = 456; - public static readonly RULE_mergeInsert = 457; - public static readonly RULE_mergeUpdate = 458; - public static readonly RULE_defaultValuesOrValues = 459; - public static readonly RULE_exprofdefault = 460; - public static readonly RULE_stmtClose = 461; - public static readonly RULE_stmtNull = 462; - public static readonly RULE_stmtCommitOrRollback = 463; - public static readonly RULE_stmtSet = 464; - public static readonly RULE_cursorVariable = 465; - public static readonly RULE_exceptionSect = 466; - public static readonly RULE_procCondition = 467; - public static readonly RULE_anyIdentifier = 468; - public static readonly RULE_sqlExpression = 469; + public static readonly RULE_indirectionLabel = 417; + public static readonly RULE_identifier = 418; + public static readonly RULE_unreservedKeyword = 419; + public static readonly RULE_colNameKeyword = 420; + public static readonly RULE_typeFuncNameKeyword = 421; + public static readonly RULE_reservedKeyword = 422; + public static readonly RULE_plBlock = 423; + public static readonly RULE_labelDecl = 424; + public static readonly RULE_declStatement = 425; + public static readonly RULE_declCursorArg = 426; + public static readonly RULE_assignOperator = 427; + public static readonly RULE_procStmt = 428; + public static readonly RULE_stmtPerform = 429; + public static readonly RULE_stmtCall = 430; + public static readonly RULE_stmtAssign = 431; + public static readonly RULE_stmtGetdiag = 432; + public static readonly RULE_getdiagListItem = 433; + public static readonly RULE_assignVar = 434; + public static readonly RULE_stmtIf = 435; + public static readonly RULE_stmtElse = 436; + public static readonly RULE_stmtCase = 437; + public static readonly RULE_stmtLoopWhileFor = 438; + public static readonly RULE_forControl = 439; + public static readonly RULE_stmtForeach = 440; + public static readonly RULE_stmtExit = 441; + public static readonly RULE_stmtReturn = 442; + public static readonly RULE_stmtRaise = 443; + public static readonly RULE_optRaiseUsingElem = 444; + public static readonly RULE_stmtAssert = 445; + public static readonly RULE_loopBody = 446; + public static readonly RULE_stmtExecsql = 447; + public static readonly RULE_stmtDynexecute = 448; + public static readonly RULE_optExecuteInto = 449; + public static readonly RULE_stmtOpen = 450; + public static readonly RULE_optOpenBoundListItem = 451; + public static readonly RULE_stmtFetch = 452; + public static readonly RULE_optFetchFirection = 453; + public static readonly RULE_stmtMove = 454; + public static readonly RULE_mergeStmt = 455; + public static readonly RULE_dataSource = 456; + public static readonly RULE_mergeWhenClause = 457; + public static readonly RULE_mergeInsert = 458; + public static readonly RULE_mergeUpdate = 459; + public static readonly RULE_defaultValuesOrValues = 460; + public static readonly RULE_exprofdefault = 461; + public static readonly RULE_stmtClose = 462; + public static readonly RULE_stmtNull = 463; + public static readonly RULE_stmtCommitOrRollback = 464; + public static readonly RULE_stmtSet = 465; + public static readonly RULE_cursorVariable = 466; + public static readonly RULE_exceptionSect = 467; + public static readonly RULE_procCondition = 468; + public static readonly RULE_anyIdentifier = 469; + public static readonly RULE_sqlExpression = 470; public static readonly literalNames = [ null, "'$'", "'('", "')'", "'['", "']'", "','", "';'", "':'", "'*'", @@ -1413,9 +1414,9 @@ export class PostgreSqlParser extends SQLParserBase { "procedureNameCreate", "emptyColumn", "columnName", "columnNamePath", "columnNameCreate", "functionNameCreate", "functionName", "stringConst", "anysconst", "signedConst", "roleSpec", "roleList", "colId", "typeFunctionName", - "nonReservedWord", "colLabel", "identifier", "unreservedKeyword", - "colNameKeyword", "typeFuncNameKeyword", "reservedKeyword", "plBlock", - "labelDecl", "declStatement", "declCursorArg", "assignOperator", + "nonReservedWord", "colLabel", "indirectionLabel", "identifier", + "unreservedKeyword", "colNameKeyword", "typeFuncNameKeyword", "reservedKeyword", + "plBlock", "labelDecl", "declStatement", "declCursorArg", "assignOperator", "procStmt", "stmtPerform", "stmtCall", "stmtAssign", "stmtGetdiag", "getdiagListItem", "assignVar", "stmtIf", "stmtElse", "stmtCase", "stmtLoopWhileFor", "forControl", "stmtForeach", "stmtExit", "stmtReturn", @@ -1449,21 +1450,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 943; + this.state = 945; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 2 || _la === 31 || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 570441729) !== 0) || ((((_la - 65)) & ~0x1F) === 0 && ((1 << (_la - 65)) & 142606337) !== 0) || _la === 105 || _la === 129 || ((((_la - 138)) & ~0x1F) === 0 && ((1 << (_la - 138)) & 2159673601) !== 0) || ((((_la - 177)) & ~0x1F) === 0 && ((1 << (_la - 177)) & 100680739) !== 0) || ((((_la - 241)) & ~0x1F) === 0 && ((1 << (_la - 241)) & 1090557953) !== 0) || ((((_la - 290)) & ~0x1F) === 0 && ((1 << (_la - 290)) & 679839745) !== 0) || ((((_la - 322)) & ~0x1F) === 0 && ((1 << (_la - 322)) & 272417) !== 0) || ((((_la - 358)) & ~0x1F) === 0 && ((1 << (_la - 358)) & 6401) !== 0) || ((((_la - 422)) & ~0x1F) === 0 && ((1 << (_la - 422)) & 4196353) !== 0) || _la === 454 || _la === 525 || _la === 583) { { { - this.state = 940; + this.state = 942; this.singleStmt(); } } - this.state = 945; + this.state = 947; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 946; + this.state = 948; this.match(PostgreSqlParser.EOF); } } @@ -1488,14 +1489,14 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 948; - this.stmt(); this.state = 950; + this.stmt(); + this.state = 952; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 7) { { - this.state = 949; + this.state = 951; this.match(PostgreSqlParser.SEMI); } } @@ -1521,832 +1522,832 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 4, PostgreSqlParser.RULE_stmt); let _la: number; try { - this.state = 1072; + this.state = 1074; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 3, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 952; + this.state = 954; this.alterEventTrigStmt(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 953; + this.state = 955; this.alterCollationStmt(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 954; + this.state = 956; this.alterDatabaseStmt(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 955; + this.state = 957; this.alterDatabaseSetStmt(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 956; + this.state = 958; this.alterDefaultPrivilegesStmt(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 957; + this.state = 959; this.alterDomainStmt(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 958; + this.state = 960; this.alterEnumStmt(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 959; + this.state = 961; this.alterExtensionStmt(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 960; + this.state = 962; this.alterExtensionContentsStmt(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 961; + this.state = 963; this.alterFdwStmt(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 962; + this.state = 964; this.alterForeignServerStmt(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 963; + this.state = 965; this.alterFunctionStmt(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 964; + this.state = 966; this.alterGroupStmt(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 965; + this.state = 967; this.alterObjectDependsStmt(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 966; + this.state = 968; this.alterObjectSchemaStmt(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 967; + this.state = 969; this.alterOwnerStmt(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 968; + this.state = 970; this.alterOperatorStmt(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 969; + this.state = 971; this.alterTypeStmt(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 970; + this.state = 972; this.alterPolicyStmt(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 971; + this.state = 973; this.alterProcedureStmt(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 972; + this.state = 974; this.alterSeqStmt(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 973; + this.state = 975; this.alterSystemStmt(); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 974; + this.state = 976; this.alterTableStmt(); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 975; + this.state = 977; this.alterTblSpcStmt(); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 976; + this.state = 978; this.alterCompositeTypeStmt(); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 977; + this.state = 979; this.alterPublicationStmt(); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 978; + this.state = 980; this.alterRoleSetStmt(); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 979; + this.state = 981; this.alterRoutineStmt(); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 980; + this.state = 982; this.alterRoleStmt(); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 981; + this.state = 983; this.alterSubscriptionStmt(); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 982; + this.state = 984; this.alterStatsStmt(); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 983; + this.state = 985; this.alterSearchConfigurationStmt(); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 984; + this.state = 986; this.alterSearchDictionaryStmt(); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 985; + this.state = 987; this.alterUserMappingStmt(); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 986; + this.state = 988; this.analyzeStmt(); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 987; + this.state = 989; this.callStmt(); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 988; + this.state = 990; this.checkPointStmt(); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 989; + this.state = 991; this.closePortalStmt(); } break; case 39: this.enterOuterAlt(localContext, 39); { - this.state = 990; + this.state = 992; this.clusterStmt(); } break; case 40: this.enterOuterAlt(localContext, 40); { - this.state = 991; + this.state = 993; this.commentStmt(); } break; case 41: this.enterOuterAlt(localContext, 41); { - this.state = 992; + this.state = 994; this.constraintsSetStmt(); } break; case 42: this.enterOuterAlt(localContext, 42); { - this.state = 993; + this.state = 995; this.copyStmt(); } break; case 43: this.enterOuterAlt(localContext, 43); { - this.state = 994; + this.state = 996; this.createAccessMethodStmt(); } break; case 44: this.enterOuterAlt(localContext, 44); { - this.state = 995; + this.state = 997; this.createAsStmt(); } break; case 45: this.enterOuterAlt(localContext, 45); { - this.state = 996; + this.state = 998; this.createAssertionStmt(); } break; case 46: this.enterOuterAlt(localContext, 46); { - this.state = 997; + this.state = 999; this.createCastStmt(); } break; case 47: this.enterOuterAlt(localContext, 47); { - this.state = 998; + this.state = 1000; this.createConversionStmt(); } break; case 48: this.enterOuterAlt(localContext, 48); { - this.state = 999; + this.state = 1001; this.createDomainStmt(); } break; case 49: this.enterOuterAlt(localContext, 49); { - this.state = 1000; + this.state = 1002; this.createExtensionStmt(); } break; case 50: this.enterOuterAlt(localContext, 50); { - this.state = 1001; + this.state = 1003; this.createFdwStmt(); } break; case 51: this.enterOuterAlt(localContext, 51); { - this.state = 1002; + this.state = 1004; this.createForeignServerStmt(); } break; case 52: this.enterOuterAlt(localContext, 52); { - this.state = 1003; + this.state = 1005; this.createForeignTableStmt(); } break; case 53: this.enterOuterAlt(localContext, 53); { - this.state = 1004; + this.state = 1006; this.createFunctionStmt(); } break; case 54: this.enterOuterAlt(localContext, 54); { - this.state = 1005; + this.state = 1007; this.createGroupStmt(); } break; case 55: this.enterOuterAlt(localContext, 55); { - this.state = 1006; + this.state = 1008; this.createMaterializedViewStmt(); } break; case 56: this.enterOuterAlt(localContext, 56); { - this.state = 1007; + this.state = 1009; this.createOperatorClassStmt(); } break; case 57: this.enterOuterAlt(localContext, 57); { - this.state = 1008; + this.state = 1010; this.createOperatorFamilyStmt(); } break; case 58: this.enterOuterAlt(localContext, 58); { - this.state = 1009; + this.state = 1011; this.createPublicationStmt(); } break; case 59: this.enterOuterAlt(localContext, 59); { - this.state = 1010; + this.state = 1012; this.alterOperatorFamilyStmt(); } break; case 60: this.enterOuterAlt(localContext, 60); { - this.state = 1011; + this.state = 1013; this.createPolicyStmt(); } break; case 61: this.enterOuterAlt(localContext, 61); { - this.state = 1012; + this.state = 1014; this.createProceduralLangStmt(); } break; case 62: this.enterOuterAlt(localContext, 62); { - this.state = 1013; + this.state = 1015; this.createSchemaStmt(); } break; case 63: this.enterOuterAlt(localContext, 63); { - this.state = 1014; + this.state = 1016; this.createSeqStmt(); } break; case 64: this.enterOuterAlt(localContext, 64); { - this.state = 1015; + this.state = 1017; this.createStmt(); } break; case 65: this.enterOuterAlt(localContext, 65); { - this.state = 1016; + this.state = 1018; this.createSubscriptionStmt(); } break; case 66: this.enterOuterAlt(localContext, 66); { - this.state = 1017; + this.state = 1019; this.createStatsStmt(); } break; case 67: this.enterOuterAlt(localContext, 67); { - this.state = 1018; + this.state = 1020; this.createTableSpaceStmt(); } break; case 68: this.enterOuterAlt(localContext, 68); { - this.state = 1019; + this.state = 1021; this.createTransformStmt(); } break; case 69: this.enterOuterAlt(localContext, 69); { - this.state = 1020; + this.state = 1022; this.createTrigStmt(); } break; case 70: this.enterOuterAlt(localContext, 70); { - this.state = 1021; + this.state = 1023; this.createEventTrigStmt(); } break; case 71: this.enterOuterAlt(localContext, 71); { - this.state = 1022; + this.state = 1024; this.createRoleStmt(); } break; case 72: this.enterOuterAlt(localContext, 72); { - this.state = 1023; + this.state = 1025; this.createUserStmt(); } break; case 73: this.enterOuterAlt(localContext, 73); { - this.state = 1024; + this.state = 1026; this.createUserMappingStmt(); } break; case 74: this.enterOuterAlt(localContext, 74); { - this.state = 1025; + this.state = 1027; this.createDbStmt(); } break; case 75: this.enterOuterAlt(localContext, 75); { - this.state = 1026; + this.state = 1028; this.dealLocateStmt(); } break; case 76: this.enterOuterAlt(localContext, 76); { - this.state = 1027; + this.state = 1029; this.declareCursorStmt(); } break; case 77: this.enterOuterAlt(localContext, 77); { - this.state = 1028; + this.state = 1030; this.defineStmt(); } break; case 78: this.enterOuterAlt(localContext, 78); { - this.state = 1029; + this.state = 1031; this.deleteStmt(); } break; case 79: this.enterOuterAlt(localContext, 79); { - this.state = 1030; + this.state = 1032; this.discardStmt(); } break; case 80: this.enterOuterAlt(localContext, 80); { - this.state = 1031; + this.state = 1033; this.doStmt(); } break; case 81: this.enterOuterAlt(localContext, 81); { - this.state = 1032; + this.state = 1034; this.dropStmt(); } break; case 82: this.enterOuterAlt(localContext, 82); { - this.state = 1033; + this.state = 1035; this.executeStmt(); } break; case 83: this.enterOuterAlt(localContext, 83); { - this.state = 1034; + this.state = 1036; this.explainStmt(); } break; case 84: this.enterOuterAlt(localContext, 84); { - this.state = 1035; + this.state = 1037; this.fetchStmt(); } break; case 85: this.enterOuterAlt(localContext, 85); { - this.state = 1036; + this.state = 1038; this.grantStmt(); } break; case 86: this.enterOuterAlt(localContext, 86); { - this.state = 1037; + this.state = 1039; this.grantRoleStmt(); } break; case 87: this.enterOuterAlt(localContext, 87); { - this.state = 1038; + this.state = 1040; this.mergeStmt(); } break; case 88: this.enterOuterAlt(localContext, 88); { - this.state = 1039; + this.state = 1041; this.importForeignSchemaStmt(); } break; case 89: this.enterOuterAlt(localContext, 89); { - this.state = 1040; + this.state = 1042; this.indexStmt(); } break; case 90: this.enterOuterAlt(localContext, 90); { - this.state = 1041; + this.state = 1043; this.insertStmt(); } break; case 91: this.enterOuterAlt(localContext, 91); { - this.state = 1042; + this.state = 1044; this.listenStmt(); } break; case 92: this.enterOuterAlt(localContext, 92); { - this.state = 1043; + this.state = 1045; this.refreshMaterializedViewStmt(); } break; case 93: this.enterOuterAlt(localContext, 93); { - this.state = 1044; + this.state = 1046; this.loadStmt(); } break; case 94: this.enterOuterAlt(localContext, 94); { - this.state = 1045; + this.state = 1047; this.lockStmt(); } break; case 95: this.enterOuterAlt(localContext, 95); { - this.state = 1046; + this.state = 1048; this.notifyStmt(); } break; case 96: this.enterOuterAlt(localContext, 96); { - this.state = 1047; + this.state = 1049; this.prepareStmt(); } break; case 97: this.enterOuterAlt(localContext, 97); { - this.state = 1048; + this.state = 1050; this.reassignOwnedStmt(); } break; case 98: this.enterOuterAlt(localContext, 98); { - this.state = 1049; + this.state = 1051; this.reindexStmt(); } break; case 99: this.enterOuterAlt(localContext, 99); { - this.state = 1050; + this.state = 1052; this.removeAggregateStmt(); } break; case 100: this.enterOuterAlt(localContext, 100); { - this.state = 1051; + this.state = 1053; this.removeFuncStmt(); } break; case 101: this.enterOuterAlt(localContext, 101); { - this.state = 1052; + this.state = 1054; this.removeOperatorStmt(); } break; case 102: this.enterOuterAlt(localContext, 102); { - this.state = 1053; + this.state = 1055; this.renameStmt(); } break; case 103: this.enterOuterAlt(localContext, 103); { - this.state = 1054; + this.state = 1056; this.revokeStmt(); } break; case 104: this.enterOuterAlt(localContext, 104); { - this.state = 1055; + this.state = 1057; this.revokeRoleStmt(); } break; case 105: this.enterOuterAlt(localContext, 105); { - this.state = 1056; + this.state = 1058; this.ruleStmt(); } break; case 106: this.enterOuterAlt(localContext, 106); { - this.state = 1057; + this.state = 1059; this.secLabelStmt(); } break; case 107: this.enterOuterAlt(localContext, 107); { - this.state = 1058; + this.state = 1060; this.selectStmt(); } break; case 108: this.enterOuterAlt(localContext, 108); { - this.state = 1059; + this.state = 1061; this.transactionStmt(); } break; case 109: this.enterOuterAlt(localContext, 109); { - this.state = 1060; + this.state = 1062; this.truncateStmt(); } break; case 110: this.enterOuterAlt(localContext, 110); { - this.state = 1061; + this.state = 1063; this.unListenStmt(); } break; case 111: this.enterOuterAlt(localContext, 111); { - this.state = 1062; + this.state = 1064; this.updateStmt(); } break; case 112: this.enterOuterAlt(localContext, 112); { - this.state = 1063; + this.state = 1065; this.vacuumStmt(); } break; case 113: this.enterOuterAlt(localContext, 113); { - this.state = 1064; + this.state = 1066; this.variableResetStmt(); } break; case 114: this.enterOuterAlt(localContext, 114); { - this.state = 1065; + this.state = 1067; this.variableSetStmt(); } break; case 115: this.enterOuterAlt(localContext, 115); { - this.state = 1066; + this.state = 1068; this.variableShowStmt(); } break; case 116: this.enterOuterAlt(localContext, 116); { - this.state = 1067; + this.state = 1069; this.viewStmt(); } break; case 117: this.enterOuterAlt(localContext, 117); { - this.state = 1068; - this.match(PostgreSqlParser.MetaCommand); this.state = 1070; + this.match(PostgreSqlParser.MetaCommand); + this.state = 1072; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 584) { { - this.state = 1069; + this.state = 1071; this.match(PostgreSqlParser.EndMetaCommand); } } @@ -2375,9 +2376,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1074; + this.state = 1076; this.match(PostgreSqlParser.KW_CALL); - this.state = 1075; + this.state = 1077; this.funcApplication(); } } @@ -2402,35 +2403,35 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1077; + this.state = 1079; this.match(PostgreSqlParser.KW_CREATE); - this.state = 1078; + this.state = 1080; this.match(PostgreSqlParser.KW_ROLE); - this.state = 1079; - this.roleSpec(); this.state = 1081; + this.roleSpec(); + this.state = 1083; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 4, this.context) ) { case 1: { - this.state = 1080; + this.state = 1082; this.match(PostgreSqlParser.KW_WITH); } break; } - this.state = 1086; + this.state = 1088; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 5, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1083; + this.state = 1085; this.createOperatorRoleElem(); } } } - this.state = 1088; + this.state = 1090; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 5, this.context); } @@ -2455,15 +2456,15 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 10, PostgreSqlParser.RULE_alterOperatorRoleElem); let _la: number; try { - this.state = 1127; + this.state = 1129; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 7, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1089; + this.state = 1091; this.match(PostgreSqlParser.KW_PASSWORD); - this.state = 1092; + this.state = 1094; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: @@ -2471,13 +2472,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 1090; + this.state = 1092; this.stringConst(); } break; case PostgreSqlParser.KW_NULL: { - this.state = 1091; + this.state = 1093; this.match(PostgreSqlParser.KW_NULL); } break; @@ -2489,7 +2490,7 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1094; + this.state = 1096; _la = this.tokenStream.LA(1); if(!(_la === 195 || _la === 364)) { this.errorHandler.recoverInline(this); @@ -2498,152 +2499,152 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1095; + this.state = 1097; this.match(PostgreSqlParser.KW_PASSWORD); - this.state = 1096; + this.state = 1098; this.stringConst(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1097; + this.state = 1099; this.match(PostgreSqlParser.KW_INHERIT); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1098; + this.state = 1100; this.match(PostgreSqlParser.KW_NOINHERIT); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1099; + this.state = 1101; this.match(PostgreSqlParser.KW_CREATEUSER); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1100; + this.state = 1102; this.match(PostgreSqlParser.KW_NOCREATEUSER); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1101; + this.state = 1103; this.match(PostgreSqlParser.KW_CREATEROLE); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1102; + this.state = 1104; this.match(PostgreSqlParser.KW_NOCREATEROLE); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1103; + this.state = 1105; this.match(PostgreSqlParser.KW_CREATEDB); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1104; + this.state = 1106; this.match(PostgreSqlParser.KW_NOCREATEDB); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 1105; + this.state = 1107; this.match(PostgreSqlParser.KW_SUPERUSER); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 1106; + this.state = 1108; this.match(PostgreSqlParser.KW_NOSUPERUSER); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 1107; + this.state = 1109; this.match(PostgreSqlParser.KW_LOGIN); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 1108; + this.state = 1110; this.match(PostgreSqlParser.KW_NOLOGIN); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 1109; + this.state = 1111; this.match(PostgreSqlParser.KW_REPLICATION); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 1110; + this.state = 1112; this.match(PostgreSqlParser.KW_NOREPLICATION); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 1111; + this.state = 1113; this.match(PostgreSqlParser.KW_BYPASSRLS); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 1112; + this.state = 1114; this.match(PostgreSqlParser.KW_NOBYPASSRLS); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 1113; + this.state = 1115; this.match(PostgreSqlParser.KW_CONNECTION); - this.state = 1114; + this.state = 1116; this.match(PostgreSqlParser.KW_LIMIT); - this.state = 1115; + this.state = 1117; this.signedConst(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 1116; + this.state = 1118; this.match(PostgreSqlParser.KW_VALID); - this.state = 1117; + this.state = 1119; this.match(PostgreSqlParser.KW_UNTIL); - this.state = 1118; + this.state = 1120; this.stringConst(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 1119; + this.state = 1121; this.match(PostgreSqlParser.KW_IN); - this.state = 1120; + this.state = 1122; _la = this.tokenStream.LA(1); if(!(_la === 66 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -2652,14 +2653,14 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1121; + this.state = 1123; this.nameList(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 1122; + this.state = 1124; _la = this.tokenStream.LA(1); if(!(_la === 99 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -2668,23 +2669,23 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1123; + this.state = 1125; this.roleList(); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 1124; + this.state = 1126; this.match(PostgreSqlParser.KW_ADMIN); - this.state = 1125; + this.state = 1127; this.nameList(); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 1126; + this.state = 1128; this.identifier(); } break; @@ -2709,29 +2710,29 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 12, PostgreSqlParser.RULE_createOperatorRoleElem); let _la: number; try { - this.state = 1137; + this.state = 1139; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 8, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1129; + this.state = 1131; this.alterOperatorRoleElem(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1130; + this.state = 1132; this.match(PostgreSqlParser.KW_SYSID); - this.state = 1131; + this.state = 1133; this.match(PostgreSqlParser.Integral); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1132; + this.state = 1134; _la = this.tokenStream.LA(1); if(!(_la === 134 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -2740,16 +2741,16 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1133; + this.state = 1135; this.roleList(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1134; + this.state = 1136; this.match(PostgreSqlParser.KW_IN); - this.state = 1135; + this.state = 1137; _la = this.tokenStream.LA(1); if(!(_la === 66 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -2758,7 +2759,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1136; + this.state = 1138; this.roleList(); } break; @@ -2785,35 +2786,35 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1139; + this.state = 1141; this.match(PostgreSqlParser.KW_CREATE); - this.state = 1140; + this.state = 1142; this.match(PostgreSqlParser.KW_USER); - this.state = 1141; - this.roleSpec(); this.state = 1143; + this.roleSpec(); + this.state = 1145; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 9, this.context) ) { case 1: { - this.state = 1142; + this.state = 1144; this.match(PostgreSqlParser.KW_WITH); } break; } - this.state = 1148; + this.state = 1150; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 10, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1145; + this.state = 1147; this.createOperatorRoleElem(); } } } - this.state = 1150; + this.state = 1152; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 10, this.context); } @@ -2841,9 +2842,9 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1151; + this.state = 1153; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1152; + this.state = 1154; _la = this.tokenStream.LA(1); if(!(_la === 99 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -2852,31 +2853,31 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1153; - this.roleSpec(); this.state = 1155; + this.roleSpec(); + this.state = 1157; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 11, this.context) ) { case 1: { - this.state = 1154; + this.state = 1156; this.match(PostgreSqlParser.KW_WITH); } break; } - this.state = 1160; + this.state = 1162; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 12, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1157; + this.state = 1159; this.alterOperatorRoleElem(); } } } - this.state = 1162; + this.state = 1164; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 12, this.context); } @@ -2903,9 +2904,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1163; + this.state = 1165; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1164; + this.state = 1166; _la = this.tokenStream.LA(1); if(!(_la === 99 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -2914,12 +2915,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1167; + this.state = 1169; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ALL: { - this.state = 1165; + this.state = 1167; this.match(PostgreSqlParser.KW_ALL); } break; @@ -3342,20 +3343,20 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 1166; + this.state = 1168; this.roleSpec(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1169; + this.state = 1171; this.match(PostgreSqlParser.KW_IN); - this.state = 1170; + this.state = 1172; this.match(PostgreSqlParser.KW_DATABASE); - this.state = 1171; + this.state = 1173; this.databaseName(); - this.state = 1172; + this.state = 1174; this.setOrResetClause(); } } @@ -3380,23 +3381,23 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1174; + this.state = 1176; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1175; + this.state = 1177; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 1176; - this.routineName(); this.state = 1178; + this.routineName(); + this.state = 1180; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 1177; + this.state = 1179; this.funcArgs(); } } - this.state = 1180; + this.state = 1182; this.alterRoutineClause(); } } @@ -3420,36 +3421,36 @@ export class PostgreSqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 1208; + this.state = 1210; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 18, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1182; + this.state = 1184; this.routineAction(); - this.state = 1186; + this.state = 1188; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 15, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1183; + this.state = 1185; this.routineAction(); } } } - this.state = 1188; + this.state = 1190; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 15, this.context); } - this.state = 1190; + this.state = 1192; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 16, this.context) ) { case 1: { - this.state = 1189; + this.state = 1191; this.match(PostgreSqlParser.KW_RESTRICT); } break; @@ -3459,56 +3460,56 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1192; + this.state = 1194; this.match(PostgreSqlParser.KW_RENAME); - this.state = 1193; + this.state = 1195; this.match(PostgreSqlParser.KW_TO); - this.state = 1194; + this.state = 1196; this.routineNameCreate(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1195; + this.state = 1197; this.match(PostgreSqlParser.KW_OWNER); - this.state = 1196; + this.state = 1198; this.match(PostgreSqlParser.KW_TO); - this.state = 1197; + this.state = 1199; this.roleSpec(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1198; + this.state = 1200; this.match(PostgreSqlParser.KW_SET); - this.state = 1199; + this.state = 1201; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 1200; + this.state = 1202; this.schemaNameCreate(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1202; + this.state = 1204; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 1201; + this.state = 1203; this.match(PostgreSqlParser.KW_NO); } } - this.state = 1204; + this.state = 1206; this.match(PostgreSqlParser.KW_DEPENDS); - this.state = 1205; + this.state = 1207; this.match(PostgreSqlParser.KW_ON); - this.state = 1206; + this.state = 1208; this.match(PostgreSqlParser.KW_EXTENSION); - this.state = 1207; + this.state = 1209; this.colId(); } break; @@ -3533,86 +3534,86 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 24, PostgreSqlParser.RULE_routineAction); let _la: number; try { - this.state = 1252; + this.state = 1254; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 25, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1210; + this.state = 1212; this.match(PostgreSqlParser.KW_IMMUTABLE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1211; + this.state = 1213; this.match(PostgreSqlParser.KW_STABLE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1212; + this.state = 1214; this.match(PostgreSqlParser.KW_VOLATILE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1214; + this.state = 1216; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 1213; + this.state = 1215; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 1216; + this.state = 1218; this.match(PostgreSqlParser.KW_LEAKPROOF); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1227; + this.state = 1229; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 22, this.context) ) { case 1: { - this.state = 1218; + this.state = 1220; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 205) { { - this.state = 1217; + this.state = 1219; this.match(PostgreSqlParser.KW_EXTERNAL); } } - this.state = 1220; + this.state = 1222; this.match(PostgreSqlParser.KW_SECURITY); - this.state = 1221; + this.state = 1223; this.match(PostgreSqlParser.KW_INVOKER); } break; case 2: { - this.state = 1223; + this.state = 1225; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 205) { { - this.state = 1222; + this.state = 1224; this.match(PostgreSqlParser.KW_EXTERNAL); } } - this.state = 1225; + this.state = 1227; this.match(PostgreSqlParser.KW_SECURITY); - this.state = 1226; + this.state = 1228; this.match(PostgreSqlParser.KW_DEFINER); } break; @@ -3622,9 +3623,9 @@ export class PostgreSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1229; + this.state = 1231; this.match(PostgreSqlParser.KW_PARALLEL); - this.state = 1230; + this.state = 1232; _la = this.tokenStream.LA(1); if(!(((((_la - 529)) & ~0x1F) === 0 && ((1 << (_la - 529)) & 7) !== 0))) { this.errorHandler.recoverInline(this); @@ -3638,29 +3639,29 @@ export class PostgreSqlParser extends SQLParserBase { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1231; + this.state = 1233; this.match(PostgreSqlParser.KW_COST); - this.state = 1232; + this.state = 1234; this.colLabel(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1233; + this.state = 1235; this.match(PostgreSqlParser.KW_ROWS); - this.state = 1234; + this.state = 1236; this.colId(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1235; + this.state = 1237; this.match(PostgreSqlParser.KW_SET); - this.state = 1236; + this.state = 1238; this.colId(); - this.state = 1237; + this.state = 1239; _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 94)) { this.errorHandler.recoverInline(this); @@ -3669,18 +3670,18 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1240; + this.state = 1242; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 23, this.context) ) { case 1: { - this.state = 1238; + this.state = 1240; this.colId(); } break; case 2: { - this.state = 1239; + this.state = 1241; this.match(PostgreSqlParser.KW_DEFAULT); } break; @@ -3690,22 +3691,22 @@ export class PostgreSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1242; + this.state = 1244; this.match(PostgreSqlParser.KW_SET); - this.state = 1243; + this.state = 1245; this.colId(); - this.state = 1244; + this.state = 1246; this.match(PostgreSqlParser.KW_FROM); - this.state = 1245; + this.state = 1247; this.match(PostgreSqlParser.KW_CURRENT); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 1247; + this.state = 1249; this.match(PostgreSqlParser.KW_RESET); - this.state = 1250; + this.state = 1252; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -4103,13 +4104,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 1248; + this.state = 1250; this.colId(); } break; case PostgreSqlParser.KW_ALL: { - this.state = 1249; + this.state = 1251; this.match(PostgreSqlParser.KW_ALL); } break; @@ -4141,35 +4142,35 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1254; + this.state = 1256; this.match(PostgreSqlParser.KW_CREATE); - this.state = 1255; + this.state = 1257; this.match(PostgreSqlParser.KW_GROUP); - this.state = 1256; - this.roleSpec(); this.state = 1258; + this.roleSpec(); + this.state = 1260; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 26, this.context) ) { case 1: { - this.state = 1257; + this.state = 1259; this.match(PostgreSqlParser.KW_WITH); } break; } - this.state = 1263; + this.state = 1265; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 27, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1260; + this.state = 1262; this.createOperatorRoleElem(); } } } - this.state = 1265; + this.state = 1267; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 27, this.context); } @@ -4196,13 +4197,13 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1266; + this.state = 1268; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1267; + this.state = 1269; this.match(PostgreSqlParser.KW_GROUP); - this.state = 1268; + this.state = 1270; this.roleSpec(); - this.state = 1269; + this.state = 1271; _la = this.tokenStream.LA(1); if(!(_la === 133 || _la === 191)) { this.errorHandler.recoverInline(this); @@ -4211,9 +4212,9 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1270; + this.state = 1272; this.match(PostgreSqlParser.KW_USER); - this.state = 1271; + this.state = 1273; this.roleList(); } } @@ -4239,61 +4240,61 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1273; + this.state = 1275; this.match(PostgreSqlParser.KW_CREATE); - this.state = 1274; - this.match(PostgreSqlParser.KW_SCHEMA); this.state = 1276; + this.match(PostgreSqlParser.KW_SCHEMA); + this.state = 1278; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 28, this.context) ) { case 1: { - this.state = 1275; + this.state = 1277; this.ifNotExists(); } break; } - this.state = 1284; + this.state = 1286; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 30, this.context) ) { case 1: { - this.state = 1279; + this.state = 1281; 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)) & 3221570659) !== 0) || _la === 586) { { - this.state = 1278; + this.state = 1280; this.schemaNameCreate(); } } - this.state = 1281; + this.state = 1283; this.match(PostgreSqlParser.KW_AUTHORIZATION); - this.state = 1282; + this.state = 1284; this.roleSpec(); } break; case 2: { - this.state = 1283; + this.state = 1285; this.schemaNameCreate(); } break; } - this.state = 1289; + this.state = 1291; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 31, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1286; + this.state = 1288; this.schemaStmt(); } } } - this.state = 1291; + this.state = 1293; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 31, this.context); } @@ -4319,7 +4320,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1292; + this.state = 1294; this.anyName(); } } @@ -4341,48 +4342,48 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new SchemaStmtContext(this.context, this.state); this.enterRule(localContext, 34, PostgreSqlParser.RULE_schemaStmt); try { - this.state = 1300; + this.state = 1302; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 32, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1294; + this.state = 1296; this.createStmt(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1295; + this.state = 1297; this.indexStmt(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1296; + this.state = 1298; this.createSeqStmt(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1297; + this.state = 1299; this.createTrigStmt(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1298; + this.state = 1300; this.grantStmt(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1299; + this.state = 1301; this.viewStmt(); } break; @@ -4409,14 +4410,14 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1302; - this.match(PostgreSqlParser.KW_SET); this.state = 1304; + this.match(PostgreSqlParser.KW_SET); + this.state = 1306; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 33, this.context) ) { case 1: { - this.state = 1303; + this.state = 1305; _la = this.tokenStream.LA(1); if(!(_la === 254 || _la === 332)) { this.errorHandler.recoverInline(this); @@ -4428,7 +4429,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 1306; + this.state = 1308; this.setRest(); } } @@ -4450,37 +4451,37 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new SetRestContext(this.context, this.state); this.enterRule(localContext, 38, PostgreSqlParser.RULE_setRest); try { - this.state = 1316; + this.state = 1318; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 34, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1308; + this.state = 1310; this.match(PostgreSqlParser.KW_TRANSACTION); - this.state = 1309; + this.state = 1311; this.transactionModeList(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1310; + this.state = 1312; this.match(PostgreSqlParser.KW_SESSION); - this.state = 1311; + this.state = 1313; this.match(PostgreSqlParser.KW_CHARACTERISTICS); - this.state = 1312; + this.state = 1314; this.match(PostgreSqlParser.KW_AS); - this.state = 1313; + this.state = 1315; this.match(PostgreSqlParser.KW_TRANSACTION); - this.state = 1314; + this.state = 1316; this.transactionModeList(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1315; + this.state = 1317; this.setRestMore(); } break; @@ -4507,12 +4508,12 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1320; + this.state = 1322; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ALL: { - this.state = 1318; + this.state = 1320; this.match(PostgreSqlParser.KW_ALL); } break; @@ -4911,19 +4912,19 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 1319; + this.state = 1321; this.varName(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1323; + this.state = 1325; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 94) { { - this.state = 1322; + this.state = 1324; _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 94)) { this.errorHandler.recoverInline(this); @@ -4935,18 +4936,18 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 1327; + this.state = 1329; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 37, this.context) ) { case 1: { - this.state = 1325; + this.state = 1327; this.match(PostgreSqlParser.KW_DEFAULT); } break; case 2: { - this.state = 1326; + this.state = 1328; this.varList(); } break; @@ -4971,55 +4972,55 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new SetRestMoreContext(this.context, this.state); this.enterRule(localContext, 42, PostgreSqlParser.RULE_setRestMore); try { - this.state = 1357; + this.state = 1359; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 39, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1329; + this.state = 1331; this.match(PostgreSqlParser.KW_TIME); - this.state = 1330; + this.state = 1332; this.match(PostgreSqlParser.KW_ZONE); - this.state = 1331; + this.state = 1333; this.zoneValue(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1332; + this.state = 1334; this.match(PostgreSqlParser.KW_CATALOG); - this.state = 1333; + this.state = 1335; this.stringConst(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1334; + this.state = 1336; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 1335; + this.state = 1337; this.schemaName(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1336; + this.state = 1338; this.match(PostgreSqlParser.KW_NAMES); - this.state = 1339; + this.state = 1341; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 38, this.context) ) { case 1: { - this.state = 1337; + this.state = 1339; this.stringConst(); } break; case 2: { - this.state = 1338; + this.state = 1340; this.match(PostgreSqlParser.KW_DEFAULT); } break; @@ -5029,60 +5030,60 @@ export class PostgreSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1341; + this.state = 1343; this.match(PostgreSqlParser.KW_ROLE); - this.state = 1342; + this.state = 1344; this.nonReservedWordOrStringConst(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1343; + this.state = 1345; this.match(PostgreSqlParser.KW_SESSION); - this.state = 1344; + this.state = 1346; this.match(PostgreSqlParser.KW_AUTHORIZATION); - this.state = 1345; + this.state = 1347; this.nonReservedWordOrStringConst(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1346; + this.state = 1348; this.match(PostgreSqlParser.KW_XML); - this.state = 1347; + this.state = 1349; this.match(PostgreSqlParser.KW_OPTION); - this.state = 1348; + this.state = 1350; this.documentOrContent(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1349; + this.state = 1351; this.match(PostgreSqlParser.KW_TRANSACTION); - this.state = 1350; + this.state = 1352; this.match(PostgreSqlParser.KW_SNAPSHOT); - this.state = 1351; + this.state = 1353; this.stringConst(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1352; + this.state = 1354; this.varName(); - this.state = 1353; + this.state = 1355; this.match(PostgreSqlParser.KW_FROM); - this.state = 1354; + this.state = 1356; this.match(PostgreSqlParser.KW_CURRENT); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1356; + this.state = 1358; this.genericSet(); } break; @@ -5109,21 +5110,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1359; + this.state = 1361; this.colId(); - this.state = 1364; + this.state = 1366; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 11) { { { - this.state = 1360; + this.state = 1362; this.match(PostgreSqlParser.DOT); - this.state = 1361; + this.state = 1363; this.colId(); } } - this.state = 1366; + this.state = 1368; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5150,21 +5151,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1367; + this.state = 1369; this.varValue(); - this.state = 1372; + this.state = 1374; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 1368; + this.state = 1370; this.match(PostgreSqlParser.COMMA); - this.state = 1369; + this.state = 1371; this.varValue(); } } - this.state = 1374; + this.state = 1376; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -5188,7 +5189,7 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new VarValueContext(this.context, this.state); this.enterRule(localContext, 48, PostgreSqlParser.RULE_varValue); try { - this.state = 1377; + this.state = 1379; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -5611,7 +5612,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 1375; + this.state = 1377; this.booleanOrString(); } break; @@ -5621,7 +5622,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.Numeric: this.enterOuterAlt(localContext, 2); { - this.state = 1376; + this.state = 1378; this.numericOnly(); } break; @@ -5648,15 +5649,15 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 50, PostgreSqlParser.RULE_isoLevel); let _la: number; try { - this.state = 1384; + this.state = 1386; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_READ: this.enterOuterAlt(localContext, 1); { - this.state = 1379; + this.state = 1381; this.match(PostgreSqlParser.KW_READ); - this.state = 1380; + this.state = 1382; _la = this.tokenStream.LA(1); if(!(_la === 162 || _la === 363)) { this.errorHandler.recoverInline(this); @@ -5670,16 +5671,16 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_REPEATABLE: this.enterOuterAlt(localContext, 2); { - this.state = 1381; + this.state = 1383; this.match(PostgreSqlParser.KW_REPEATABLE); - this.state = 1382; + this.state = 1384; this.match(PostgreSqlParser.KW_READ); } break; case PostgreSqlParser.KW_SERIALIZABLE: this.enterOuterAlt(localContext, 3); { - this.state = 1383; + this.state = 1385; this.match(PostgreSqlParser.KW_SERIALIZABLE); } break; @@ -5705,48 +5706,48 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new OptBooleanOrStringColumnContext(this.context, this.state); this.enterRule(localContext, 52, PostgreSqlParser.RULE_optBooleanOrStringColumn); try { - this.state = 1392; + this.state = 1394; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 44, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1386; + this.state = 1388; this.match(PostgreSqlParser.KW_TRUE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1387; + this.state = 1389; this.match(PostgreSqlParser.KW_FALSE); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1388; + this.state = 1390; this.match(PostgreSqlParser.KW_ON); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1389; + this.state = 1391; this.columnName(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1390; + this.state = 1392; this.typeFuncNameKeyword(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1391; + this.state = 1393; this.stringConst(); } break; @@ -5770,27 +5771,27 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new BooleanOrStringContext(this.context, this.state); this.enterRule(localContext, 54, PostgreSqlParser.RULE_booleanOrString); try { - this.state = 1398; + this.state = 1400; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_TRUE: this.enterOuterAlt(localContext, 1); { - this.state = 1394; + this.state = 1396; this.match(PostgreSqlParser.KW_TRUE); } break; case PostgreSqlParser.KW_FALSE: this.enterOuterAlt(localContext, 2); { - this.state = 1395; + this.state = 1397; this.match(PostgreSqlParser.KW_FALSE); } break; case PostgreSqlParser.KW_ON: this.enterOuterAlt(localContext, 3); { - this.state = 1396; + this.state = 1398; this.match(PostgreSqlParser.KW_ON); } break; @@ -6211,7 +6212,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 4); { - this.state = 1397; + this.state = 1399; this.nonReservedWordOrStringConst(); } break; @@ -6237,43 +6238,43 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ZoneValueContext(this.context, this.state); this.enterRule(localContext, 56, PostgreSqlParser.RULE_zoneValue); try { - this.state = 1414; + this.state = 1416; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 47, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1400; + this.state = 1402; this.stringConst(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1401; + this.state = 1403; this.match(PostgreSqlParser.KW_DEFAULT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1402; + this.state = 1404; this.identifier(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1403; + this.state = 1405; this.match(PostgreSqlParser.KW_INTERVAL); - this.state = 1404; - this.stringConst(); this.state = 1406; + this.stringConst(); + this.state = 1408; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 46, this.context) ) { case 1: { - this.state = 1405; + this.state = 1407; this.optInterval(); } break; @@ -6283,25 +6284,25 @@ export class PostgreSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1408; + this.state = 1410; this.match(PostgreSqlParser.KW_INTERVAL); - this.state = 1409; + this.state = 1411; this.optFloat(); - this.state = 1410; + this.state = 1412; this.stringConst(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1412; + this.state = 1414; this.numericOnly(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1413; + this.state = 1415; this.match(PostgreSqlParser.KW_LOCAL); } break; @@ -6325,20 +6326,20 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new NonReservedWordOrStringConstContext(this.context, this.state); this.enterRule(localContext, 58, PostgreSqlParser.RULE_nonReservedWordOrStringConst); try { - this.state = 1418; + this.state = 1420; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 48, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1416; + this.state = 1418; this.nonReservedWord(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1417; + this.state = 1419; this.stringConst(); } break; @@ -6364,9 +6365,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1420; + this.state = 1422; this.match(PostgreSqlParser.KW_RESET); - this.state = 1421; + this.state = 1423; this.resetRest(); } } @@ -6388,49 +6389,49 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ResetRestContext(this.context, this.state); this.enterRule(localContext, 62, PostgreSqlParser.RULE_resetRest); try { - this.state = 1432; + this.state = 1434; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 49, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1423; + this.state = 1425; this.match(PostgreSqlParser.KW_TIME); - this.state = 1424; + this.state = 1426; this.match(PostgreSqlParser.KW_ZONE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1425; + this.state = 1427; this.match(PostgreSqlParser.KW_TRANSACTION); - this.state = 1426; + this.state = 1428; this.match(PostgreSqlParser.KW_ISOLATION); - this.state = 1427; + this.state = 1429; this.match(PostgreSqlParser.KW_LEVEL); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1428; + this.state = 1430; this.match(PostgreSqlParser.KW_SESSION); - this.state = 1429; + this.state = 1431; this.match(PostgreSqlParser.KW_AUTHORIZATION); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1430; + this.state = 1432; this.match(PostgreSqlParser.KW_ALL); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1431; + this.state = 1433; this.varName(); } break; @@ -6454,22 +6455,22 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new SetOrResetClauseContext(this.context, this.state); this.enterRule(localContext, 64, PostgreSqlParser.RULE_setOrResetClause); try { - this.state = 1437; + this.state = 1439; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_SET: this.enterOuterAlt(localContext, 1); { - this.state = 1434; + this.state = 1436; this.match(PostgreSqlParser.KW_SET); - this.state = 1435; + this.state = 1437; this.setRest(); } break; case PostgreSqlParser.KW_RESET: this.enterOuterAlt(localContext, 2); { - this.state = 1436; + this.state = 1438; this.variableResetStmt(); } break; @@ -6495,22 +6496,22 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new FunctionSetOrResetClauseContext(this.context, this.state); this.enterRule(localContext, 66, PostgreSqlParser.RULE_functionSetOrResetClause); try { - this.state = 1442; + this.state = 1444; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_SET: this.enterOuterAlt(localContext, 1); { - this.state = 1439; + this.state = 1441; this.match(PostgreSqlParser.KW_SET); - this.state = 1440; + this.state = 1442; this.setRestMore(); } break; case PostgreSqlParser.KW_RESET: this.enterOuterAlt(localContext, 2); { - this.state = 1441; + this.state = 1443; this.variableResetStmt(); } break; @@ -6538,46 +6539,46 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1444; + this.state = 1446; this.match(PostgreSqlParser.KW_SHOW); - this.state = 1454; + this.state = 1456; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 52, this.context) ) { case 1: { - this.state = 1445; + this.state = 1447; this.varName(); } break; case 2: { - this.state = 1446; + this.state = 1448; this.match(PostgreSqlParser.KW_TIME); - this.state = 1447; + this.state = 1449; this.match(PostgreSqlParser.KW_ZONE); } break; case 3: { - this.state = 1448; + this.state = 1450; this.match(PostgreSqlParser.KW_TRANSACTION); - this.state = 1449; + this.state = 1451; this.match(PostgreSqlParser.KW_ISOLATION); - this.state = 1450; + this.state = 1452; this.match(PostgreSqlParser.KW_LEVEL); } break; case 4: { - this.state = 1451; + this.state = 1453; this.match(PostgreSqlParser.KW_SESSION); - this.state = 1452; + this.state = 1454; this.match(PostgreSqlParser.KW_AUTHORIZATION); } break; case 5: { - this.state = 1453; + this.state = 1455; this.match(PostgreSqlParser.KW_ALL); } break; @@ -6605,16 +6606,16 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1456; + this.state = 1458; this.match(PostgreSqlParser.KW_SET); - this.state = 1457; + this.state = 1459; this.match(PostgreSqlParser.KW_CONSTRAINTS); - this.state = 1460; + this.state = 1462; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ALL: { - this.state = 1458; + this.state = 1460; this.match(PostgreSqlParser.KW_ALL); } break; @@ -7013,14 +7014,14 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 1459; + this.state = 1461; this.qualifiedNameList(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1462; + this.state = 1464; _la = this.tokenStream.LA(1); if(!(_la === 180 || _la === 221)) { this.errorHandler.recoverInline(this); @@ -7051,7 +7052,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1464; + this.state = 1466; this.match(PostgreSqlParser.KW_CHECKPOINT); } } @@ -7076,9 +7077,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1466; + this.state = 1468; this.match(PostgreSqlParser.KW_DISCARD); - this.state = 1467; + this.state = 1469; _la = this.tokenStream.LA(1); if(!(_la === 30 || _la === 288 || ((((_la - 329)) & ~0x1F) === 0 && ((1 << (_la - 329)) & 41943041) !== 0))) { this.errorHandler.recoverInline(this); @@ -7108,29 +7109,29 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 76, PostgreSqlParser.RULE_alterTableStmt); let _la: number; try { - this.state = 1586; + this.state = 1588; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 71, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1469; + this.state = 1471; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1470; - this.match(PostgreSqlParser.KW_TABLE); this.state = 1472; + this.match(PostgreSqlParser.KW_TABLE); + this.state = 1474; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 54, this.context) ) { case 1: { - this.state = 1471; + this.state = 1473; this.ifExists(); } break; } - this.state = 1474; + this.state = 1476; this.relationExpr(); - this.state = 1477; + this.state = 1479; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_NOT: @@ -7151,14 +7152,14 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_SET: case PostgreSqlParser.KW_VALIDATE: { - this.state = 1475; + this.state = 1477; this.alterTableCmds(); } break; case PostgreSqlParser.KW_ATTACH: case PostgreSqlParser.KW_DETACH: { - this.state = 1476; + this.state = 1478; this.partitionCmd(); } break; @@ -7170,42 +7171,42 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1479; + this.state = 1481; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1480; + this.state = 1482; this.match(PostgreSqlParser.KW_TABLE); - this.state = 1481; + this.state = 1483; this.match(PostgreSqlParser.KW_ALL); - this.state = 1482; + this.state = 1484; this.match(PostgreSqlParser.KW_IN); - this.state = 1483; + this.state = 1485; this.optTableSpace(); - this.state = 1487; + this.state = 1489; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 281) { { - this.state = 1484; + this.state = 1486; this.match(PostgreSqlParser.KW_OWNED); - this.state = 1485; + this.state = 1487; this.match(PostgreSqlParser.KW_BY); - this.state = 1486; + this.state = 1488; this.roleList(); } } - this.state = 1489; + this.state = 1491; this.match(PostgreSqlParser.KW_SET); - this.state = 1490; + this.state = 1492; this.match(PostgreSqlParser.KW_TABLESPACE); - this.state = 1491; - this.tableSpaceName(); this.state = 1493; + this.tableSpaceName(); + this.state = 1495; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 57, this.context) ) { case 1: { - this.state = 1492; + this.state = 1494; this.match(PostgreSqlParser.KW_NOWAIT); } break; @@ -7215,59 +7216,59 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1495; + this.state = 1497; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1496; - this.match(PostgreSqlParser.KW_TABLE); this.state = 1498; + this.match(PostgreSqlParser.KW_TABLE); + this.state = 1500; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 58, this.context) ) { case 1: { - this.state = 1497; + this.state = 1499; this.ifExists(); } break; } - this.state = 1500; + this.state = 1502; this.tableName(); - this.state = 1501; + this.state = 1503; this.indexPartitionCmd(); - this.state = 1502; + this.state = 1504; this.partitionBoundSpec(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1504; + this.state = 1506; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1505; - this.match(PostgreSqlParser.KW_TABLE); this.state = 1507; + this.match(PostgreSqlParser.KW_TABLE); + this.state = 1509; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 59, this.context) ) { case 1: { - this.state = 1506; + this.state = 1508; this.ifExists(); } break; } - this.state = 1509; + this.state = 1511; this.tableName(); - this.state = 1510; + this.state = 1512; this.match(PostgreSqlParser.KW_DETACH); - this.state = 1511; + this.state = 1513; this.match(PostgreSqlParser.KW_PARTITION); - this.state = 1512; - this.qualifiedName(); this.state = 1514; + this.qualifiedName(); + this.state = 1516; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109 || _la === 532) { { - this.state = 1513; + this.state = 1515; _la = this.tokenStream.LA(1); if(!(_la === 109 || _la === 532)) { this.errorHandler.recoverInline(this); @@ -7284,23 +7285,23 @@ export class PostgreSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1516; + this.state = 1518; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1517; - this.match(PostgreSqlParser.KW_INDEX); this.state = 1519; + this.match(PostgreSqlParser.KW_INDEX); + this.state = 1521; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 61, this.context) ) { case 1: { - this.state = 1518; + this.state = 1520; this.ifExists(); } break; } - this.state = 1521; + this.state = 1523; this.qualifiedName(); - this.state = 1524; + this.state = 1526; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_NOT: @@ -7321,13 +7322,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_SET: case PostgreSqlParser.KW_VALIDATE: { - this.state = 1522; + this.state = 1524; this.alterTableCmds(); } break; case PostgreSqlParser.KW_ATTACH: { - this.state = 1523; + this.state = 1525; this.indexPartitionCmd(); } break; @@ -7339,40 +7340,40 @@ export class PostgreSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1526; + this.state = 1528; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1527; + this.state = 1529; this.match(PostgreSqlParser.KW_INDEX); - this.state = 1528; + this.state = 1530; this.match(PostgreSqlParser.KW_ALL); - this.state = 1529; + this.state = 1531; this.match(PostgreSqlParser.KW_IN); - this.state = 1530; + this.state = 1532; this.optTableSpace(); - this.state = 1534; + this.state = 1536; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 281) { { - this.state = 1531; + this.state = 1533; this.match(PostgreSqlParser.KW_OWNED); - this.state = 1532; + this.state = 1534; this.match(PostgreSqlParser.KW_BY); - this.state = 1533; + this.state = 1535; this.roleList(); } } - this.state = 1536; + this.state = 1538; this.match(PostgreSqlParser.KW_SET); - this.state = 1537; - this.optTableSpace(); this.state = 1539; + this.optTableSpace(); + this.state = 1541; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 64, this.context) ) { case 1: { - this.state = 1538; + this.state = 1540; this.match(PostgreSqlParser.KW_NOWAIT); } break; @@ -7382,100 +7383,100 @@ export class PostgreSqlParser extends SQLParserBase { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1541; + this.state = 1543; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1542; - this.match(PostgreSqlParser.KW_SEQUENCE); this.state = 1544; + this.match(PostgreSqlParser.KW_SEQUENCE); + this.state = 1546; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 65, this.context) ) { case 1: { - this.state = 1543; + this.state = 1545; this.ifExists(); } break; } - this.state = 1546; + this.state = 1548; this.qualifiedName(); - this.state = 1547; + this.state = 1549; this.alterTableCmds(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1549; - this.match(PostgreSqlParser.KW_ALTER); this.state = 1551; + this.match(PostgreSqlParser.KW_ALTER); + this.state = 1553; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 259) { { - this.state = 1550; + this.state = 1552; this.match(PostgreSqlParser.KW_MATERIALIZED); } } - this.state = 1553; - this.match(PostgreSqlParser.KW_VIEW); this.state = 1555; + this.match(PostgreSqlParser.KW_VIEW); + this.state = 1557; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 67, this.context) ) { case 1: { - this.state = 1554; + this.state = 1556; this.ifExists(); } break; } - this.state = 1557; + this.state = 1559; this.viewName(); - this.state = 1558; + this.state = 1560; this.alterTableCmds(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1560; + this.state = 1562; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1561; + this.state = 1563; this.match(PostgreSqlParser.KW_MATERIALIZED); - this.state = 1562; + this.state = 1564; this.match(PostgreSqlParser.KW_VIEW); - this.state = 1563; + this.state = 1565; this.match(PostgreSqlParser.KW_ALL); - this.state = 1564; + this.state = 1566; this.match(PostgreSqlParser.KW_IN); - this.state = 1565; + this.state = 1567; this.optTableSpace(); - this.state = 1569; + this.state = 1571; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 281) { { - this.state = 1566; + this.state = 1568; this.match(PostgreSqlParser.KW_OWNED); - this.state = 1567; + this.state = 1569; this.match(PostgreSqlParser.KW_BY); - this.state = 1568; + this.state = 1570; this.roleList(); } } - this.state = 1571; + this.state = 1573; this.match(PostgreSqlParser.KW_SET); - this.state = 1572; + this.state = 1574; this.match(PostgreSqlParser.KW_TABLESPACE); - this.state = 1573; - this.tableSpaceName(); this.state = 1575; + this.tableSpaceName(); + this.state = 1577; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 69, this.context) ) { case 1: { - this.state = 1574; + this.state = 1576; this.match(PostgreSqlParser.KW_NOWAIT); } break; @@ -7485,25 +7486,25 @@ export class PostgreSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1577; + this.state = 1579; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1578; + this.state = 1580; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 1579; - this.match(PostgreSqlParser.KW_TABLE); this.state = 1581; + this.match(PostgreSqlParser.KW_TABLE); + this.state = 1583; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 70, this.context) ) { case 1: { - this.state = 1580; + this.state = 1582; this.ifExists(); } break; } - this.state = 1583; + this.state = 1585; this.relationExpr(); - this.state = 1584; + this.state = 1586; this.alterTableCmds(); } break; @@ -7530,21 +7531,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1588; + this.state = 1590; this.alterTableCmd(); - this.state = 1593; + this.state = 1595; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 1589; + this.state = 1591; this.match(PostgreSqlParser.COMMA); - this.state = 1590; + this.state = 1592; this.alterTableCmd(); } } - this.state = 1595; + this.state = 1597; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -7568,26 +7569,26 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new PartitionCmdContext(this.context, this.state); this.enterRule(localContext, 80, PostgreSqlParser.RULE_partitionCmd); try { - this.state = 1602; + this.state = 1604; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ATTACH: this.enterOuterAlt(localContext, 1); { - this.state = 1596; + this.state = 1598; this.indexPartitionCmd(); - this.state = 1597; + this.state = 1599; this.partitionBoundSpec(); } break; case PostgreSqlParser.KW_DETACH: this.enterOuterAlt(localContext, 2); { - this.state = 1599; + this.state = 1601; this.match(PostgreSqlParser.KW_DETACH); - this.state = 1600; + this.state = 1602; this.match(PostgreSqlParser.KW_PARTITION); - this.state = 1601; + this.state = 1603; this.qualifiedName(); } break; @@ -7615,11 +7616,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1604; + this.state = 1606; this.match(PostgreSqlParser.KW_ATTACH); - this.state = 1605; + this.state = 1607; this.match(PostgreSqlParser.KW_PARTITION); - this.state = 1606; + this.state = 1608; this.qualifiedName(); } } @@ -7643,52 +7644,52 @@ export class PostgreSqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 1841; + this.state = 1843; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 113, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1608; + this.state = 1610; this.match(PostgreSqlParser.KW_ADD); - this.state = 1611; + this.state = 1613; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 45) { { - this.state = 1609; + this.state = 1611; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 1610; + this.state = 1612; this.colId(); } } - this.state = 1613; + this.state = 1615; this.constraintElem(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1614; + this.state = 1616; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1615; + this.state = 1617; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 1616; + this.state = 1618; this.colId(); - this.state = 1620; + this.state = 1622; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 75, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1617; + this.state = 1619; this.constraintAttributeElem(); } } } - this.state = 1622; + this.state = 1624; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 75, this.context); } @@ -7697,39 +7698,39 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1623; + this.state = 1625; this.match(PostgreSqlParser.KW_VALIDATE); - this.state = 1624; + this.state = 1626; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 1625; + this.state = 1627; this.colId(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1626; + this.state = 1628; this.match(PostgreSqlParser.KW_DROP); - this.state = 1627; - this.match(PostgreSqlParser.KW_CONSTRAINT); this.state = 1629; + this.match(PostgreSqlParser.KW_CONSTRAINT); + this.state = 1631; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 76, this.context) ) { case 1: { - this.state = 1628; + this.state = 1630; this.ifExists(); } break; } - this.state = 1631; - this.colId(); this.state = 1633; + this.colId(); + this.state = 1635; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 77, this.context) ) { case 1: { - this.state = 1632; + this.state = 1634; this.optDropBehavior(); } break; @@ -7739,11 +7740,11 @@ export class PostgreSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1635; + this.state = 1637; this.match(PostgreSqlParser.KW_SET); - this.state = 1636; + this.state = 1638; this.match(PostgreSqlParser.KW_WITHOUT); - this.state = 1637; + this.state = 1639; _la = this.tokenStream.LA(1); if(!(_la === 158 || _la === 277)) { this.errorHandler.recoverInline(this); @@ -7757,20 +7758,20 @@ export class PostgreSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1638; + this.state = 1640; this.match(PostgreSqlParser.KW_CLUSTER); - this.state = 1639; + this.state = 1641; this.match(PostgreSqlParser.KW_ON); - this.state = 1640; + this.state = 1642; this.colId(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1641; + this.state = 1643; this.match(PostgreSqlParser.KW_SET); - this.state = 1642; + this.state = 1644; _la = this.tokenStream.LA(1); if(!(_la === 367 || _la === 439)) { this.errorHandler.recoverInline(this); @@ -7784,14 +7785,14 @@ export class PostgreSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1643; - this.match(PostgreSqlParser.KW_ENABLE); this.state = 1645; + this.match(PostgreSqlParser.KW_ENABLE); + this.state = 1647; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 139 || _la === 312) { { - this.state = 1644; + this.state = 1646; _la = this.tokenStream.LA(1); if(!(_la === 139 || _la === 312)) { this.errorHandler.recoverInline(this); @@ -7803,29 +7804,29 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 1647; + this.state = 1649; this.match(PostgreSqlParser.KW_TRIGGER); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1648; + this.state = 1650; this.match(PostgreSqlParser.KW_DISABLE); - this.state = 1649; + this.state = 1651; this.match(PostgreSqlParser.KW_TRIGGER); - this.state = 1653; + this.state = 1655; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ALL: { - this.state = 1650; + this.state = 1652; this.match(PostgreSqlParser.KW_ALL); } break; case PostgreSqlParser.KW_USER: { - this.state = 1651; + this.state = 1653; this.match(PostgreSqlParser.KW_USER); } break; @@ -8224,7 +8225,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 1652; + this.state = 1654; this.colId(); } break; @@ -8236,9 +8237,9 @@ export class PostgreSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1655; + this.state = 1657; this.match(PostgreSqlParser.KW_ENABLE); - this.state = 1656; + this.state = 1658; _la = this.tokenStream.LA(1); if(!(_la === 139 || _la === 312)) { this.errorHandler.recoverInline(this); @@ -8247,113 +8248,113 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1657; + this.state = 1659; this.match(PostgreSqlParser.KW_RULE); - this.state = 1658; + this.state = 1660; this.colId(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 1659; + this.state = 1661; this.match(PostgreSqlParser.KW_DISABLE); - this.state = 1660; + this.state = 1662; this.match(PostgreSqlParser.KW_RULE); - this.state = 1661; + this.state = 1663; this.colId(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 1663; + this.state = 1665; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 1662; + this.state = 1664; this.match(PostgreSqlParser.KW_NO); } } - this.state = 1665; + this.state = 1667; this.match(PostgreSqlParser.KW_INHERIT); - this.state = 1666; + this.state = 1668; this.qualifiedName(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 1667; + this.state = 1669; this.match(PostgreSqlParser.KW_OF); - this.state = 1668; + this.state = 1670; this.anyName(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 1669; + this.state = 1671; this.match(PostgreSqlParser.KW_NOT); - this.state = 1670; + this.state = 1672; this.match(PostgreSqlParser.KW_OF); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 1671; + this.state = 1673; this.match(PostgreSqlParser.KW_OWNER); - this.state = 1672; + this.state = 1674; this.match(PostgreSqlParser.KW_TO); - this.state = 1673; + this.state = 1675; this.roleSpec(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 1674; + this.state = 1676; this.match(PostgreSqlParser.KW_SET); - this.state = 1675; + this.state = 1677; this.match(PostgreSqlParser.KW_TABLESPACE); - this.state = 1676; + this.state = 1678; this.tableSpaceName(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 1677; + this.state = 1679; this.match(PostgreSqlParser.KW_REPLICA); - this.state = 1678; + this.state = 1680; this.match(PostgreSqlParser.KW_IDENTITY); - this.state = 1683; + this.state = 1685; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_NOTHING: { - this.state = 1679; + this.state = 1681; this.match(PostgreSqlParser.KW_NOTHING); } break; case PostgreSqlParser.KW_FULL: { - this.state = 1680; + this.state = 1682; this.match(PostgreSqlParser.KW_FULL); } break; case PostgreSqlParser.KW_DEFAULT: { - this.state = 1681; + this.state = 1683; this.match(PostgreSqlParser.KW_DEFAULT); } break; case PostgreSqlParser.KW_USING: { - this.state = 1682; + this.state = 1684; this.existingIndex(); } break; @@ -8365,18 +8366,18 @@ export class PostgreSqlParser extends SQLParserBase { case 18: this.enterOuterAlt(localContext, 18); { - this.state = 1691; + this.state = 1693; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ENABLE: { - this.state = 1685; + this.state = 1687; this.match(PostgreSqlParser.KW_ENABLE); } break; case PostgreSqlParser.KW_DISABLE: { - this.state = 1686; + this.state = 1688; this.match(PostgreSqlParser.KW_DISABLE); } break; @@ -8384,17 +8385,17 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_NO: { { - this.state = 1688; + this.state = 1690; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 1687; + this.state = 1689; this.match(PostgreSqlParser.KW_NO); } } - this.state = 1690; + this.state = 1692; this.match(PostgreSqlParser.KW_FORCE); } } @@ -8402,47 +8403,47 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 1693; + this.state = 1695; this.match(PostgreSqlParser.KW_ROW); - this.state = 1694; + this.state = 1696; this.match(PostgreSqlParser.KW_LEVEL); - this.state = 1695; + this.state = 1697; this.match(PostgreSqlParser.KW_SECURITY); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 1696; - this.match(PostgreSqlParser.KW_DROP); this.state = 1698; + this.match(PostgreSqlParser.KW_DROP); + this.state = 1700; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 84, this.context) ) { - case 1: + _la = this.tokenStream.LA(1); + if (_la === 44) { { - this.state = 1697; + this.state = 1699; this.match(PostgreSqlParser.KW_COLUMN); } - break; } - this.state = 1701; + + this.state = 1703; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 85, this.context) ) { case 1: { - this.state = 1700; + this.state = 1702; this.ifExists(); } break; } - this.state = 1703; - this.columnName(); this.state = 1705; + this.columnName(); + this.state = 1707; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 86, this.context) ) { case 1: { - this.state = 1704; + this.state = 1706; this.optDropBehavior(); } break; @@ -8452,62 +8453,62 @@ export class PostgreSqlParser extends SQLParserBase { case 20: this.enterOuterAlt(localContext, 20); { - this.state = 1707; - this.match(PostgreSqlParser.KW_ADD); this.state = 1709; + this.match(PostgreSqlParser.KW_ADD); + this.state = 1711; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 44) { { - this.state = 1708; + this.state = 1710; this.match(PostgreSqlParser.KW_COLUMN); } } - this.state = 1712; + this.state = 1714; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 88, this.context) ) { case 1: { - this.state = 1711; + this.state = 1713; this.ifNotExists(); } break; } - this.state = 1714; + this.state = 1716; this.column_def(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 1715; - this.match(PostgreSqlParser.KW_ALTER); this.state = 1717; + this.match(PostgreSqlParser.KW_ALTER); + this.state = 1719; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 89, this.context) ) { - case 1: + _la = this.tokenStream.LA(1); + if (_la === 44) { { - this.state = 1716; + this.state = 1718; this.match(PostgreSqlParser.KW_COLUMN); } - break; } - this.state = 1719; + + this.state = 1721; this.columnName(); - this.state = 1722; + this.state = 1724; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DROP: case PostgreSqlParser.KW_SET: { - this.state = 1720; + this.state = 1722; this.alterColumnDefault(); } break; case PostgreSqlParser.KW_OPTIONS: { - this.state = 1721; + this.state = 1723; this.alterGenericOptions(); } break; @@ -8519,21 +8520,21 @@ export class PostgreSqlParser extends SQLParserBase { case 22: this.enterOuterAlt(localContext, 22); { - this.state = 1724; - this.match(PostgreSqlParser.KW_ALTER); this.state = 1726; + this.match(PostgreSqlParser.KW_ALTER); + this.state = 1728; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 91, this.context) ) { - case 1: + _la = this.tokenStream.LA(1); + if (_la === 44) { { - this.state = 1725; + this.state = 1727; this.match(PostgreSqlParser.KW_COLUMN); } - break; } - this.state = 1728; + + this.state = 1730; this.columnName(); - this.state = 1729; + this.state = 1731; _la = this.tokenStream.LA(1); if(!(_la === 191 || _la === 333)) { this.errorHandler.recoverInline(this); @@ -8542,39 +8543,39 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1730; + this.state = 1732; this.match(PostgreSqlParser.KW_NOT); - this.state = 1731; + this.state = 1733; this.match(PostgreSqlParser.KW_NULL); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 1733; - this.match(PostgreSqlParser.KW_ALTER); this.state = 1735; + this.match(PostgreSqlParser.KW_ALTER); + this.state = 1737; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 92, this.context) ) { - case 1: + _la = this.tokenStream.LA(1); + if (_la === 44) { { - this.state = 1734; + this.state = 1736; this.match(PostgreSqlParser.KW_COLUMN); } - break; } - this.state = 1737; + + this.state = 1739; this.columnName(); - this.state = 1738; + this.state = 1740; this.match(PostgreSqlParser.KW_DROP); - this.state = 1739; - this.match(PostgreSqlParser.KW_EXPRESSION); this.state = 1741; + this.match(PostgreSqlParser.KW_EXPRESSION); + this.state = 1743; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 93, this.context) ) { case 1: { - this.state = 1740; + this.state = 1742; this.ifExists(); } break; @@ -8584,54 +8585,54 @@ export class PostgreSqlParser extends SQLParserBase { case 24: this.enterOuterAlt(localContext, 24); { - this.state = 1743; - this.match(PostgreSqlParser.KW_ALTER); this.state = 1745; + this.match(PostgreSqlParser.KW_ALTER); + this.state = 1747; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 94, this.context) ) { - case 1: + _la = this.tokenStream.LA(1); + if (_la === 44) { { - this.state = 1744; + this.state = 1746; this.match(PostgreSqlParser.KW_COLUMN); } - break; } - this.state = 1747; + + this.state = 1749; this.columnName(); - this.state = 1748; + this.state = 1750; this.match(PostgreSqlParser.KW_SET); - this.state = 1749; + this.state = 1751; this.match(PostgreSqlParser.KW_STATISTICS); - this.state = 1750; + this.state = 1752; this.signedConst(); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 1757; + this.state = 1759; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 138) { { - this.state = 1752; - this.match(PostgreSqlParser.KW_ALTER); this.state = 1754; + this.match(PostgreSqlParser.KW_ALTER); + this.state = 1756; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 95, this.context) ) { - case 1: + _la = this.tokenStream.LA(1); + if (_la === 44) { { - this.state = 1753; + this.state = 1755; this.match(PostgreSqlParser.KW_COLUMN); } - break; } - this.state = 1756; + + this.state = 1758; this.columnName(); } } - this.state = 1759; + this.state = 1761; _la = this.tokenStream.LA(1); if(!(_la === 313 || _la === 333)) { this.errorHandler.recoverInline(this); @@ -8640,84 +8641,84 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1760; + this.state = 1762; this.relOptions(); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 1761; - this.match(PostgreSqlParser.KW_ALTER); this.state = 1763; + this.match(PostgreSqlParser.KW_ALTER); + this.state = 1765; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 97, this.context) ) { - case 1: + _la = this.tokenStream.LA(1); + if (_la === 44) { { - this.state = 1762; + this.state = 1764; this.match(PostgreSqlParser.KW_COLUMN); } - break; } - this.state = 1765; + + this.state = 1767; this.columnName(); - this.state = 1766; + this.state = 1768; this.match(PostgreSqlParser.KW_SET); - this.state = 1767; + this.state = 1769; this.match(PostgreSqlParser.KW_STORAGE); - this.state = 1768; + this.state = 1770; this.colId(); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 1770; - this.match(PostgreSqlParser.KW_ALTER); this.state = 1772; + this.match(PostgreSqlParser.KW_ALTER); + this.state = 1774; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 98, this.context) ) { - case 1: + _la = this.tokenStream.LA(1); + if (_la === 44) { { - this.state = 1771; + this.state = 1773; this.match(PostgreSqlParser.KW_COLUMN); } - break; } - this.state = 1774; + + this.state = 1776; this.columnName(); - this.state = 1775; + this.state = 1777; this.match(PostgreSqlParser.KW_ADD); - this.state = 1776; + this.state = 1778; this.match(PostgreSqlParser.KW_GENERATED); - this.state = 1777; + this.state = 1779; this.generatedWhen(); - this.state = 1778; + this.state = 1780; this.match(PostgreSqlParser.KW_AS); - this.state = 1779; + this.state = 1781; this.match(PostgreSqlParser.KW_IDENTITY); - this.state = 1788; + this.state = 1790; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 100, this.context) ) { case 1: { - this.state = 1780; - this.match(PostgreSqlParser.OPEN_PAREN); this.state = 1782; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 1784; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 1781; + this.state = 1783; this.seqOptElem(); } } - this.state = 1784; + this.state = 1786; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 36 || _la === 148 || _la === 225 || ((((_la - 260)) & ~0x1F) === 0 && ((1 << (_la - 260)) & 2097669) !== 0) || ((((_la - 314)) & ~0x1F) === 0 && ((1 << (_la - 314)) & 67125249) !== 0)); - this.state = 1786; + this.state = 1788; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -8727,50 +8728,50 @@ export class PostgreSqlParser extends SQLParserBase { case 28: this.enterOuterAlt(localContext, 28); { - this.state = 1790; - this.match(PostgreSqlParser.KW_ALTER); this.state = 1792; + this.match(PostgreSqlParser.KW_ALTER); + this.state = 1794; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 101, this.context) ) { - case 1: + _la = this.tokenStream.LA(1); + if (_la === 44) { { - this.state = 1791; + this.state = 1793; this.match(PostgreSqlParser.KW_COLUMN); } - break; } - this.state = 1794; + + this.state = 1796; this.columnName(); - this.state = 1808; + this.state = 1810; this.errorHandler.sync(this); alternative = 1; do { switch (alternative) { case 1: { - this.state = 1808; + this.state = 1810; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_RESTART: { - this.state = 1795; + this.state = 1797; this.match(PostgreSqlParser.KW_RESTART); - this.state = 1800; + this.state = 1802; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 103, this.context) ) { case 1: { - this.state = 1797; + this.state = 1799; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 1796; + this.state = 1798; this.match(PostgreSqlParser.KW_WITH); } } - this.state = 1799; + this.state = 1801; this.numericOnly(); } break; @@ -8779,9 +8780,9 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_SET: { - this.state = 1802; + this.state = 1804; this.match(PostgreSqlParser.KW_SET); - this.state = 1806; + this.state = 1808; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_AS: @@ -8795,15 +8796,15 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_SEQUENCE: case PostgreSqlParser.KW_START: { - this.state = 1803; + this.state = 1805; this.seqOptElem(); } break; case PostgreSqlParser.KW_GENERATED: { - this.state = 1804; + this.state = 1806; this.match(PostgreSqlParser.KW_GENERATED); - this.state = 1805; + this.state = 1807; this.generatedWhen(); } break; @@ -8820,7 +8821,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 1810; + this.state = 1812; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 106, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -8829,30 +8830,30 @@ export class PostgreSqlParser extends SQLParserBase { case 29: this.enterOuterAlt(localContext, 29); { - this.state = 1812; - this.match(PostgreSqlParser.KW_ALTER); this.state = 1814; + this.match(PostgreSqlParser.KW_ALTER); + this.state = 1816; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 107, this.context) ) { - case 1: + _la = this.tokenStream.LA(1); + if (_la === 44) { { - this.state = 1813; + this.state = 1815; this.match(PostgreSqlParser.KW_COLUMN); } - break; } - this.state = 1816; + + this.state = 1818; this.columnName(); - this.state = 1817; + this.state = 1819; this.match(PostgreSqlParser.KW_DROP); - this.state = 1818; - this.match(PostgreSqlParser.KW_IDENTITY); this.state = 1820; + this.match(PostgreSqlParser.KW_IDENTITY); + this.state = 1822; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 108, this.context) ) { case 1: { - this.state = 1819; + this.state = 1821; this.ifExists(); } break; @@ -8862,54 +8863,54 @@ export class PostgreSqlParser extends SQLParserBase { case 30: this.enterOuterAlt(localContext, 30); { - this.state = 1822; - this.match(PostgreSqlParser.KW_ALTER); this.state = 1824; + this.match(PostgreSqlParser.KW_ALTER); + this.state = 1826; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 109, this.context) ) { - case 1: + _la = this.tokenStream.LA(1); + if (_la === 44) { { - this.state = 1823; + this.state = 1825; this.match(PostgreSqlParser.KW_COLUMN); } - break; } - this.state = 1826; + + this.state = 1828; this.columnName(); - this.state = 1829; + this.state = 1831; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 333) { { - this.state = 1827; + this.state = 1829; this.match(PostgreSqlParser.KW_SET); - this.state = 1828; + this.state = 1830; this.match(PostgreSqlParser.KW_DATA); } } - this.state = 1831; + this.state = 1833; this.match(PostgreSqlParser.KW_TYPE); - this.state = 1832; - this.typename(); this.state = 1834; + this.typename(); + this.state = 1836; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 43) { { - this.state = 1833; + this.state = 1835; this.collateClause(); } } - this.state = 1838; + this.state = 1840; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 1836; + this.state = 1838; this.match(PostgreSqlParser.KW_USING); - this.state = 1837; + this.state = 1839; this.expression(); } } @@ -8919,7 +8920,7 @@ export class PostgreSqlParser extends SQLParserBase { case 31: this.enterOuterAlt(localContext, 31); { - this.state = 1840; + this.state = 1842; this.alterGenericOptions(); } break; @@ -8943,26 +8944,26 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new AlterColumnDefaultContext(this.context, this.state); this.enterRule(localContext, 86, PostgreSqlParser.RULE_alterColumnDefault); try { - this.state = 1848; + this.state = 1850; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_SET: this.enterOuterAlt(localContext, 1); { - this.state = 1843; + this.state = 1845; this.match(PostgreSqlParser.KW_SET); - this.state = 1844; + this.state = 1846; this.match(PostgreSqlParser.KW_DEFAULT); - this.state = 1845; + this.state = 1847; this.expression(); } break; case PostgreSqlParser.KW_DROP: this.enterOuterAlt(localContext, 2); { - this.state = 1846; + this.state = 1848; this.match(PostgreSqlParser.KW_DROP); - this.state = 1847; + this.state = 1849; this.match(PostgreSqlParser.KW_DEFAULT); } break; @@ -8991,7 +8992,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1850; + this.state = 1852; _la = this.tokenStream.LA(1); if(!(_la === 150 || _la === 315)) { this.errorHandler.recoverInline(this); @@ -9022,9 +9023,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1852; + this.state = 1854; this.match(PostgreSqlParser.KW_COLLATE); - this.state = 1853; + this.state = 1855; this.anyName(); } } @@ -9049,27 +9050,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1855; + this.state = 1857; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 1856; + this.state = 1858; this.relOptionElem(); - this.state = 1861; + this.state = 1863; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 1857; + this.state = 1859; this.match(PostgreSqlParser.COMMA); - this.state = 1858; + this.state = 1860; this.relOptionElem(); } } - this.state = 1863; + this.state = 1865; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1864; + this.state = 1866; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -9093,9 +9094,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1866; + this.state = 1868; this.match(PostgreSqlParser.KW_WITH); - this.state = 1867; + this.state = 1869; this.relOptions(); } } @@ -9119,24 +9120,24 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1869; + this.state = 1871; this.colLabel(); - this.state = 1874; + this.state = 1876; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.EQUAL: { - this.state = 1870; + this.state = 1872; this.match(PostgreSqlParser.EQUAL); - this.state = 1871; + this.state = 1873; this.defArg(); } break; case PostgreSqlParser.DOT: { - this.state = 1872; + this.state = 1874; this.match(PostgreSqlParser.DOT); - this.state = 1873; + this.state = 1875; this.defElem(); } break; @@ -9166,68 +9167,68 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new PartitionBoundSpecContext(this.context, this.state); this.enterRule(localContext, 98, PostgreSqlParser.RULE_partitionBoundSpec); try { - this.state = 1899; + this.state = 1901; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 117, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1876; + this.state = 1878; this.match(PostgreSqlParser.KW_FOR); - this.state = 1877; + this.state = 1879; this.match(PostgreSqlParser.KW_VALUES); - this.state = 1878; + this.state = 1880; this.match(PostgreSqlParser.KW_WITH); - this.state = 1879; + this.state = 1881; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 1880; + this.state = 1882; this.match(PostgreSqlParser.KW_MODULUS); - this.state = 1881; + this.state = 1883; this.numericOnly(); - this.state = 1882; + this.state = 1884; this.match(PostgreSqlParser.COMMA); - this.state = 1883; + this.state = 1885; this.match(PostgreSqlParser.KW_REMAINDER); - this.state = 1884; + this.state = 1886; this.numericOnly(); - this.state = 1885; + this.state = 1887; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1887; + this.state = 1889; this.match(PostgreSqlParser.KW_FOR); - this.state = 1888; + this.state = 1890; this.match(PostgreSqlParser.KW_VALUES); - this.state = 1889; + this.state = 1891; this.match(PostgreSqlParser.KW_IN); - this.state = 1890; + this.state = 1892; this.executeParamClause(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1891; + this.state = 1893; this.match(PostgreSqlParser.KW_FOR); - this.state = 1892; + this.state = 1894; this.match(PostgreSqlParser.KW_VALUES); - this.state = 1893; + this.state = 1895; this.match(PostgreSqlParser.KW_FROM); - this.state = 1894; + this.state = 1896; this.executeParamClause(); - this.state = 1895; + this.state = 1897; this.match(PostgreSqlParser.KW_TO); - this.state = 1896; + this.state = 1898; this.executeParamClause(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1898; + this.state = 1900; this.match(PostgreSqlParser.KW_DEFAULT); } break; @@ -9254,27 +9255,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1901; + this.state = 1903; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1902; + this.state = 1904; this.match(PostgreSqlParser.KW_TYPE); - this.state = 1903; + this.state = 1905; this.anyName(); - this.state = 1904; + this.state = 1906; this.alterTypeCmd(); - this.state = 1909; + this.state = 1911; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 1905; + this.state = 1907; this.match(PostgreSqlParser.COMMA); - this.state = 1906; + this.state = 1908; this.alterTypeCmd(); } } - this.state = 1911; + this.state = 1913; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -9299,24 +9300,24 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 102, PostgreSqlParser.RULE_alterTypeCmd); let _la: number; try { - this.state = 1942; + this.state = 1944; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ADD: this.enterOuterAlt(localContext, 1); { - this.state = 1912; + this.state = 1914; this.match(PostgreSqlParser.KW_ADD); - this.state = 1913; + this.state = 1915; this.match(PostgreSqlParser.KW_ATTRIBUTE); - this.state = 1914; - this.tableFuncElement(); this.state = 1916; + this.tableFuncElement(); + this.state = 1918; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 119, this.context) ) { case 1: { - this.state = 1915; + this.state = 1917; this.optDropBehavior(); } break; @@ -9326,28 +9327,28 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_DROP: this.enterOuterAlt(localContext, 2); { - this.state = 1918; + this.state = 1920; this.match(PostgreSqlParser.KW_DROP); - this.state = 1919; - this.match(PostgreSqlParser.KW_ATTRIBUTE); this.state = 1921; + this.match(PostgreSqlParser.KW_ATTRIBUTE); + this.state = 1923; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 120, this.context) ) { case 1: { - this.state = 1920; + this.state = 1922; this.ifExists(); } break; } - this.state = 1923; - this.colId(); this.state = 1925; + this.colId(); + this.state = 1927; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 121, this.context) ) { case 1: { - this.state = 1924; + this.state = 1926; this.optDropBehavior(); } break; @@ -9357,44 +9358,44 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_ALTER: this.enterOuterAlt(localContext, 3); { - this.state = 1927; + this.state = 1929; this.match(PostgreSqlParser.KW_ALTER); - this.state = 1928; + this.state = 1930; this.match(PostgreSqlParser.KW_ATTRIBUTE); - this.state = 1929; + this.state = 1931; this.colId(); - this.state = 1932; + this.state = 1934; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 333) { { - this.state = 1930; + this.state = 1932; this.match(PostgreSqlParser.KW_SET); - this.state = 1931; + this.state = 1933; this.match(PostgreSqlParser.KW_DATA); } } - this.state = 1934; + this.state = 1936; this.match(PostgreSqlParser.KW_TYPE); - this.state = 1935; - this.typename(); this.state = 1937; + this.typename(); + this.state = 1939; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 43) { { - this.state = 1936; + this.state = 1938; this.collateClause(); } } - this.state = 1940; + this.state = 1942; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 124, this.context) ) { case 1: { - this.state = 1939; + this.state = 1941; this.optDropBehavior(); } break; @@ -9425,9 +9426,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1944; + this.state = 1946; this.match(PostgreSqlParser.KW_CLOSE); - this.state = 1947; + this.state = 1949; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -9825,13 +9826,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 1945; + this.state = 1947; this.colId(); } break; case PostgreSqlParser.KW_ALL: { - this.state = 1946; + this.state = 1948; this.match(PostgreSqlParser.KW_ALL); } break; @@ -9859,37 +9860,37 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 106, PostgreSqlParser.RULE_copyStmt); let _la: number; try { - this.state = 1998; + this.state = 2000; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 138, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1949; - this.match(PostgreSqlParser.KW_COPY); this.state = 1951; + this.match(PostgreSqlParser.KW_COPY); + this.state = 1953; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 107) { { - this.state = 1950; + this.state = 1952; this.match(PostgreSqlParser.KW_BINARY); } } - this.state = 1953; - this.tableName(); this.state = 1955; + this.tableName(); + this.state = 1957; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 1954; + this.state = 1956; this.optColumnList(); } } - this.state = 1957; + this.state = 1959; _la = this.tokenStream.LA(1); if(!(_la === 64 || _la === 94)) { this.errorHandler.recoverInline(this); @@ -9898,17 +9899,17 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1959; + this.state = 1961; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 297) { { - this.state = 1958; + this.state = 1960; this.match(PostgreSqlParser.KW_PROGRAM); } } - this.state = 1964; + this.state = 1966; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: @@ -9916,65 +9917,65 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 1961; + this.state = 1963; this.stringConst(); } break; case PostgreSqlParser.KW_STDIN: { - this.state = 1962; + this.state = 1964; this.match(PostgreSqlParser.KW_STDIN); } break; case PostgreSqlParser.KW_STDOUT: { - this.state = 1963; + this.state = 1965; this.match(PostgreSqlParser.KW_STDOUT); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1971; + this.state = 1973; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 132, this.context) ) { case 1: { - this.state = 1967; + this.state = 1969; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 1966; + this.state = 1968; this.match(PostgreSqlParser.KW_USING); } } - this.state = 1969; + this.state = 1971; this.match(PostgreSqlParser.KW_DELIMITERS); - this.state = 1970; + this.state = 1972; this.stringConst(); } break; } - this.state = 1974; + this.state = 1976; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 133, this.context) ) { case 1: { - this.state = 1973; + this.state = 1975; this.match(PostgreSqlParser.KW_WITH); } break; } - this.state = 1976; - this.copyOptions(); this.state = 1978; + this.copyOptions(); + this.state = 1980; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 1977; + this.state = 1979; this.whereClause(); } } @@ -9984,27 +9985,27 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1980; + this.state = 1982; this.match(PostgreSqlParser.KW_COPY); - this.state = 1981; + this.state = 1983; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 1982; + this.state = 1984; this.preParableStmt(); - this.state = 1983; + this.state = 1985; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 1984; - this.match(PostgreSqlParser.KW_TO); this.state = 1986; + this.match(PostgreSqlParser.KW_TO); + this.state = 1988; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 297) { { - this.state = 1985; + this.state = 1987; this.match(PostgreSqlParser.KW_PROGRAM); } } - this.state = 1991; + this.state = 1993; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: @@ -10012,36 +10013,36 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 1988; + this.state = 1990; this.stringConst(); } break; case PostgreSqlParser.KW_STDIN: { - this.state = 1989; + this.state = 1991; this.match(PostgreSqlParser.KW_STDIN); } break; case PostgreSqlParser.KW_STDOUT: { - this.state = 1990; + this.state = 1992; this.match(PostgreSqlParser.KW_STDOUT); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1994; + this.state = 1996; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 137, this.context) ) { case 1: { - this.state = 1993; + this.state = 1995; this.match(PostgreSqlParser.KW_WITH); } break; } - this.state = 1996; + this.state = 1998; this.copyOptions(); } break; @@ -10069,30 +10070,30 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2044; + this.state = 2046; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 147, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 2042; + this.state = 2044; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 146, this.context) ) { case 1: { - this.state = 2000; + this.state = 2002; this.match(PostgreSqlParser.KW_BINARY); } break; case 2: { - this.state = 2001; + this.state = 2003; this.match(PostgreSqlParser.KW_FREEZE); } break; case 3: { - this.state = 2002; + this.state = 2004; _la = this.tokenStream.LA(1); if(!(_la === 78 || _la === 183 || _la === 197 || _la === 298)) { this.errorHandler.recoverInline(this); @@ -10101,87 +10102,482 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2004; + this.state = 2006; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 2003; + this.state = 2005; this.match(PostgreSqlParser.KW_AS); } } - this.state = 2006; + this.state = 2008; this.stringConst(); } break; case 4: { - this.state = 2007; + this.state = 2009; this.match(PostgreSqlParser.KW_CSV); } break; case 5: { - this.state = 2008; + this.state = 2010; this.match(PostgreSqlParser.KW_HEADER); } break; case 6: { - this.state = 2009; + this.state = 2011; this.match(PostgreSqlParser.KW_FORCE); - this.state = 2010; + this.state = 2012; this.match(PostgreSqlParser.KW_QUOTE); - this.state = 2013; + this.state = 2015; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 140, this.context) ) { - case 1: + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.KW_DEFAULT: + case PostgreSqlParser.KW_IS: + case PostgreSqlParser.KW_OUTER: + case PostgreSqlParser.KW_OVER: + case PostgreSqlParser.KW_ABORT: + case PostgreSqlParser.KW_ABSOLUTE: + case PostgreSqlParser.KW_ACCESS: + case PostgreSqlParser.KW_ACTION: + case PostgreSqlParser.KW_ADD: + case PostgreSqlParser.KW_ADMIN: + case PostgreSqlParser.KW_AFTER: + case PostgreSqlParser.KW_AGGREGATE: + case PostgreSqlParser.KW_ALSO: + case PostgreSqlParser.KW_ALTER: + case PostgreSqlParser.KW_ALWAYS: + case PostgreSqlParser.KW_ASSERTION: + case PostgreSqlParser.KW_ASSIGNMENT: + case PostgreSqlParser.KW_AT: + case PostgreSqlParser.KW_ATTRIBUTE: + case PostgreSqlParser.KW_BACKWARD: + case PostgreSqlParser.KW_BEFORE: + case PostgreSqlParser.KW_BEGIN: + case PostgreSqlParser.KW_BY: + case PostgreSqlParser.KW_CACHE: + case PostgreSqlParser.KW_CALLED: + case PostgreSqlParser.KW_CASCADE: + case PostgreSqlParser.KW_CASCADED: + case PostgreSqlParser.KW_CATALOG: + case PostgreSqlParser.KW_CHAIN: + case PostgreSqlParser.KW_CHARACTERISTICS: + case PostgreSqlParser.KW_CHECKPOINT: + case PostgreSqlParser.KW_CLASS: + case PostgreSqlParser.KW_CLOSE: + case PostgreSqlParser.KW_CLUSTER: + case PostgreSqlParser.KW_COMMENT: + case PostgreSqlParser.KW_COMMENTS: + case PostgreSqlParser.KW_COMMIT: + case PostgreSqlParser.KW_COMMITTED: + case PostgreSqlParser.KW_CONFIGURATION: + case PostgreSqlParser.KW_CONNECTION: + case PostgreSqlParser.KW_CONSTRAINTS: + case PostgreSqlParser.KW_CONTENT: + case PostgreSqlParser.KW_CONTINUE: + case PostgreSqlParser.KW_CONVERSION: + case PostgreSqlParser.KW_COPY: + case PostgreSqlParser.KW_COST: + case PostgreSqlParser.KW_CSV: + case PostgreSqlParser.KW_CURSOR: + case PostgreSqlParser.KW_CYCLE: + case PostgreSqlParser.KW_DATA: + case PostgreSqlParser.KW_DATABASE: + case PostgreSqlParser.KW_DAY: + case PostgreSqlParser.KW_DEALLOCATE: + case PostgreSqlParser.KW_DECLARE: + case PostgreSqlParser.KW_DEFAULTS: + case PostgreSqlParser.KW_DEFERRED: + case PostgreSqlParser.KW_DEFINER: + case PostgreSqlParser.KW_DELETE: + case PostgreSqlParser.KW_DELIMITER: + case PostgreSqlParser.KW_DELIMITERS: + case PostgreSqlParser.KW_DICTIONARY: + case PostgreSqlParser.KW_DISABLE: + case PostgreSqlParser.KW_DISCARD: + case PostgreSqlParser.KW_DOCUMENT: + case PostgreSqlParser.KW_DOMAIN: + case PostgreSqlParser.KW_DOUBLE: + case PostgreSqlParser.KW_DROP: + case PostgreSqlParser.KW_EACH: + case PostgreSqlParser.KW_ENABLE: + case PostgreSqlParser.KW_ENCODING: + case PostgreSqlParser.KW_ENCRYPTED: + case PostgreSqlParser.KW_ENUM: + case PostgreSqlParser.KW_ESCAPE: + case PostgreSqlParser.KW_EVENT: + case PostgreSqlParser.KW_EXCLUDE: + case PostgreSqlParser.KW_EXCLUDING: + case PostgreSqlParser.KW_EXCLUSIVE: + case PostgreSqlParser.KW_EXECUTE: + case PostgreSqlParser.KW_EXPLAIN: + case PostgreSqlParser.KW_EXTENSION: + case PostgreSqlParser.KW_EXTERNAL: + case PostgreSqlParser.KW_FAMILY: + case PostgreSqlParser.KW_FIRST: + case PostgreSqlParser.KW_FOLLOWING: + case PostgreSqlParser.KW_FORCE: + case PostgreSqlParser.KW_FORWARD: + case PostgreSqlParser.KW_FUNCTION: + case PostgreSqlParser.KW_FUNCTIONS: + case PostgreSqlParser.KW_GLOBAL: + case PostgreSqlParser.KW_GRANTED: + case PostgreSqlParser.KW_HANDLER: + case PostgreSqlParser.KW_HEADER: + case PostgreSqlParser.KW_HOLD: + case PostgreSqlParser.KW_HOUR: + case PostgreSqlParser.KW_IDENTITY: + case PostgreSqlParser.KW_IF: + case PostgreSqlParser.KW_IMMEDIATE: + case PostgreSqlParser.KW_IMMUTABLE: + case PostgreSqlParser.KW_IMPLICIT: + case PostgreSqlParser.KW_INCLUDING: + case PostgreSqlParser.KW_INCREMENT: + case PostgreSqlParser.KW_INDEX: + case PostgreSqlParser.KW_INDEXES: + case PostgreSqlParser.KW_INHERIT: + case PostgreSqlParser.KW_INHERITS: + case PostgreSqlParser.KW_INLINE: + case PostgreSqlParser.KW_INSENSITIVE: + case PostgreSqlParser.KW_INSERT: + case PostgreSqlParser.KW_INSTEAD: + case PostgreSqlParser.KW_INVOKER: + case PostgreSqlParser.KW_ISOLATION: + case PostgreSqlParser.KW_KEY: + case PostgreSqlParser.KW_LABEL: + case PostgreSqlParser.KW_LANGUAGE: + case PostgreSqlParser.KW_LARGE: + case PostgreSqlParser.KW_LAST: + case PostgreSqlParser.KW_LEAKPROOF: + case PostgreSqlParser.KW_LEVEL: + case PostgreSqlParser.KW_LISTEN: + case PostgreSqlParser.KW_LOAD: + case PostgreSqlParser.KW_LOCAL: + case PostgreSqlParser.KW_LOCATION: + case PostgreSqlParser.KW_LOCK: + case PostgreSqlParser.KW_MAPPING: + case PostgreSqlParser.KW_MATCH: + case PostgreSqlParser.KW_MATERIALIZED: + case PostgreSqlParser.KW_MAXVALUE: + case PostgreSqlParser.KW_MINUTE: + case PostgreSqlParser.KW_MINVALUE: + case PostgreSqlParser.KW_MODE: + case PostgreSqlParser.KW_MONTH: + case PostgreSqlParser.KW_MOVE: + case PostgreSqlParser.KW_NAME: + case PostgreSqlParser.KW_NAMES: + case PostgreSqlParser.KW_NEXT: + case PostgreSqlParser.KW_NO: + case PostgreSqlParser.KW_NOTHING: + case PostgreSqlParser.KW_NOTIFY: + case PostgreSqlParser.KW_NOWAIT: + case PostgreSqlParser.KW_NULLS: + case PostgreSqlParser.KW_OBJECT: + case PostgreSqlParser.KW_OF: + case PostgreSqlParser.KW_OFF: + case PostgreSqlParser.KW_OIDS: + case PostgreSqlParser.KW_OPERATOR: + case PostgreSqlParser.KW_OPTION: + case PostgreSqlParser.KW_OPTIONS: + case PostgreSqlParser.KW_OWNED: + case PostgreSqlParser.KW_OWNER: + case PostgreSqlParser.KW_PARSER: + case PostgreSqlParser.KW_PARTIAL: + case PostgreSqlParser.KW_PARTITION: + case PostgreSqlParser.KW_PASSING: + case PostgreSqlParser.KW_PASSWORD: + case PostgreSqlParser.KW_PLANS: + case PostgreSqlParser.KW_PRECEDING: + case PostgreSqlParser.KW_PREPARE: + case PostgreSqlParser.KW_PREPARED: + case PostgreSqlParser.KW_PRESERVE: + case PostgreSqlParser.KW_PRIOR: + case PostgreSqlParser.KW_PRIVILEGES: + case PostgreSqlParser.KW_PROCEDURAL: + case PostgreSqlParser.KW_PROCEDURE: + case PostgreSqlParser.KW_PROGRAM: + case PostgreSqlParser.KW_QUOTE: + case PostgreSqlParser.KW_RANGE: + case PostgreSqlParser.KW_READ: + case PostgreSqlParser.KW_REASSIGN: + case PostgreSqlParser.KW_RECHECK: + case PostgreSqlParser.KW_RECURSIVE: + case PostgreSqlParser.KW_REF: + case PostgreSqlParser.KW_REFRESH: + case PostgreSqlParser.KW_REINDEX: + case PostgreSqlParser.KW_RELATIVE: + case PostgreSqlParser.KW_RELEASE: + case PostgreSqlParser.KW_RENAME: + case PostgreSqlParser.KW_REPEATABLE: + case PostgreSqlParser.KW_REPLACE: + case PostgreSqlParser.KW_REPLICA: + case PostgreSqlParser.KW_RESET: + case PostgreSqlParser.KW_RESTART: + case PostgreSqlParser.KW_RESTRICT: + case PostgreSqlParser.KW_RETURNS: + case PostgreSqlParser.KW_REVOKE: + case PostgreSqlParser.KW_ROLE: + case PostgreSqlParser.KW_ROLLBACK: + case PostgreSqlParser.KW_ROWS: + case PostgreSqlParser.KW_RULE: + case PostgreSqlParser.KW_SAVEPOINT: + case PostgreSqlParser.KW_SCHEMA: + case PostgreSqlParser.KW_SCROLL: + case PostgreSqlParser.KW_SEARCH: + case PostgreSqlParser.KW_SECOND: + case PostgreSqlParser.KW_SECURITY: + case PostgreSqlParser.KW_SEQUENCE: + case PostgreSqlParser.KW_SEQUENCES: + case PostgreSqlParser.KW_SERIALIZABLE: + case PostgreSqlParser.KW_SERVER: + case PostgreSqlParser.KW_SESSION: + case PostgreSqlParser.KW_SET: + case PostgreSqlParser.KW_SHARE: + case PostgreSqlParser.KW_SHOW: + case PostgreSqlParser.KW_SIMPLE: + case PostgreSqlParser.KW_SNAPSHOT: + case PostgreSqlParser.KW_STABLE: + case PostgreSqlParser.KW_STANDALONE: + case PostgreSqlParser.KW_START: + case PostgreSqlParser.KW_STATEMENT: + case PostgreSqlParser.KW_STATISTICS: + case PostgreSqlParser.KW_STDIN: + case PostgreSqlParser.KW_STDOUT: + case PostgreSqlParser.KW_STORAGE: + case PostgreSqlParser.KW_STRICT: + case PostgreSqlParser.KW_STRIP: + case PostgreSqlParser.KW_SYSID: + case PostgreSqlParser.KW_SYSTEM: + case PostgreSqlParser.KW_TABLES: + case PostgreSqlParser.KW_TABLESPACE: + case PostgreSqlParser.KW_TEMP: + case PostgreSqlParser.KW_TEMPLATE: + case PostgreSqlParser.KW_TEMPORARY: + case PostgreSqlParser.KW_TEXT: + case PostgreSqlParser.KW_TRANSACTION: + case PostgreSqlParser.KW_TRIGGER: + case PostgreSqlParser.KW_TRUNCATE: + case PostgreSqlParser.KW_TRUSTED: + case PostgreSqlParser.KW_TYPE: + case PostgreSqlParser.KW_TYPES: + case PostgreSqlParser.KW_UNBOUNDED: + case PostgreSqlParser.KW_UNCOMMITTED: + case PostgreSqlParser.KW_UNENCRYPTED: + case PostgreSqlParser.KW_UNKNOWN: + case PostgreSqlParser.KW_UNLISTEN: + case PostgreSqlParser.KW_UNLOGGED: + case PostgreSqlParser.KW_UNTIL: + case PostgreSqlParser.KW_UPDATE: + case PostgreSqlParser.KW_VACUUM: + case PostgreSqlParser.KW_VALID: + case PostgreSqlParser.KW_VALIDATE: + case PostgreSqlParser.KW_VALIDATOR: + case PostgreSqlParser.KW_VARYING: + case PostgreSqlParser.KW_VERSION: + case PostgreSqlParser.KW_VIEW: + case PostgreSqlParser.KW_VOLATILE: + case PostgreSqlParser.KW_WHITESPACE: + case PostgreSqlParser.KW_WITHOUT: + case PostgreSqlParser.KW_WORK: + case PostgreSqlParser.KW_WRAPPER: + case PostgreSqlParser.KW_WRITE: + case PostgreSqlParser.KW_XML: + case PostgreSqlParser.KW_YEAR: + case PostgreSqlParser.KW_YES: + case PostgreSqlParser.KW_ZONE: + case PostgreSqlParser.KW_BETWEEN: + case PostgreSqlParser.KW_BIGINT: + case PostgreSqlParser.KW_BIT: + case PostgreSqlParser.KW_BOOLEAN: + case PostgreSqlParser.KW_CHAR: + case PostgreSqlParser.KW_CHARACTER: + case PostgreSqlParser.KW_COALESCE: + case PostgreSqlParser.KW_DEC: + case PostgreSqlParser.KW_DECIMAL: + case PostgreSqlParser.KW_EXISTS: + case PostgreSqlParser.KW_EXTRACT: + case PostgreSqlParser.KW_FLOAT: + case PostgreSqlParser.KW_GREATEST: + case PostgreSqlParser.KW_INOUT: + case PostgreSqlParser.KW_INT: + case PostgreSqlParser.KW_INTEGER: + case PostgreSqlParser.KW_INTERVAL: + case PostgreSqlParser.KW_LEAST: + case PostgreSqlParser.KW_NATIONAL: + case PostgreSqlParser.KW_NCHAR: + case PostgreSqlParser.KW_NONE: + case PostgreSqlParser.KW_NULLIF: + case PostgreSqlParser.KW_NUMERIC: + case PostgreSqlParser.KW_OVERLAY: + case PostgreSqlParser.KW_POSITION: + case PostgreSqlParser.KW_PRECISION: + case PostgreSqlParser.KW_REAL: + case PostgreSqlParser.KW_ROW: + case PostgreSqlParser.KW_SETOF: + case PostgreSqlParser.KW_SMALLINT: + case PostgreSqlParser.KW_SUBSTRING: + case PostgreSqlParser.KW_TIME: + case PostgreSqlParser.KW_TIMESTAMP: + case PostgreSqlParser.KW_TREAT: + case PostgreSqlParser.KW_TRIM: + case PostgreSqlParser.KW_VALUES: + case PostgreSqlParser.KW_VARCHAR: + case PostgreSqlParser.KW_XMLATTRIBUTES: + case PostgreSqlParser.KW_XMLCONCAT: + case PostgreSqlParser.KW_XMLELEMENT: + case PostgreSqlParser.KW_XMLEXISTS: + case PostgreSqlParser.KW_XMLFOREST: + case PostgreSqlParser.KW_XMLPARSE: + case PostgreSqlParser.KW_XMLPI: + case PostgreSqlParser.KW_XMLROOT: + case PostgreSqlParser.KW_XMLSERIALIZE: + case PostgreSqlParser.KW_CALL: + case PostgreSqlParser.KW_CURRENT: + case PostgreSqlParser.KW_ATTACH: + case PostgreSqlParser.KW_DETACH: + case PostgreSqlParser.KW_EXPRESSION: + case PostgreSqlParser.KW_GENERATED: + case PostgreSqlParser.KW_LOGGED: + case PostgreSqlParser.KW_STORED: + case PostgreSqlParser.KW_INCLUDE: + case PostgreSqlParser.KW_ROUTINE: + case PostgreSqlParser.KW_TRANSFORM: + case PostgreSqlParser.KW_IMPORT: + case PostgreSqlParser.KW_POLICY: + case PostgreSqlParser.KW_METHOD: + case PostgreSqlParser.KW_REFERENCING: + case PostgreSqlParser.KW_NEW: + case PostgreSqlParser.KW_OLD: + case PostgreSqlParser.KW_VALUE: + case PostgreSqlParser.KW_SUBSCRIPTION: + case PostgreSqlParser.KW_PUBLICATION: + case PostgreSqlParser.KW_OUT: + case PostgreSqlParser.KW_ROUTINES: + case PostgreSqlParser.KW_SCHEMAS: + case PostgreSqlParser.KW_PROCEDURES: + case PostgreSqlParser.KW_INPUT: + case PostgreSqlParser.KW_SUPPORT: + case PostgreSqlParser.KW_PARALLEL: + case PostgreSqlParser.KW_SQL: + case PostgreSqlParser.KW_DEPENDS: + case PostgreSqlParser.KW_OVERRIDING: + case PostgreSqlParser.KW_CONFLICT: + case PostgreSqlParser.KW_SKIP: + case PostgreSqlParser.KW_LOCKED: + case PostgreSqlParser.KW_TIES: + case PostgreSqlParser.KW_ROLLUP: + case PostgreSqlParser.KW_CUBE: + case PostgreSqlParser.KW_GROUPING: + case PostgreSqlParser.KW_SETS: + case PostgreSqlParser.KW_ORDINALITY: + case PostgreSqlParser.KW_XMLTABLE: + case PostgreSqlParser.KW_COLUMNS: + case PostgreSqlParser.KW_XMLNAMESPACES: + case PostgreSqlParser.KW_ROWTYPE: + case PostgreSqlParser.KW_NORMALIZED: + case PostgreSqlParser.KW_WITHIN: + case PostgreSqlParser.KW_FILTER: + case PostgreSqlParser.KW_GROUPS: + case PostgreSqlParser.KW_OTHERS: + case PostgreSqlParser.KW_NFC: + case PostgreSqlParser.KW_NFD: + case PostgreSqlParser.KW_NFKC: + case PostgreSqlParser.KW_NFKD: + case PostgreSqlParser.KW_UESCAPE: + case PostgreSqlParser.KW_VIEWS: + case PostgreSqlParser.KW_NORMALIZE: + case PostgreSqlParser.KW_DUMP: + case PostgreSqlParser.KW_PRINT_STRICT_PARAMS: + case PostgreSqlParser.KW_VARIABLE_CONFLICT: + case PostgreSqlParser.KW_ERROR: + case PostgreSqlParser.KW_USE_VARIABLE: + case PostgreSqlParser.KW_USE_COLUMN: + case PostgreSqlParser.KW_ALIAS: + case PostgreSqlParser.KW_CONSTANT: + case PostgreSqlParser.KW_PERFORM: + case PostgreSqlParser.KW_GET: + case PostgreSqlParser.KW_DIAGNOSTICS: + case PostgreSqlParser.KW_STACKED: + case PostgreSqlParser.KW_ELSIF: + case PostgreSqlParser.KW_REVERSE: + case PostgreSqlParser.KW_SLICE: + case PostgreSqlParser.KW_EXIT: + case PostgreSqlParser.KW_RETURN: + case PostgreSqlParser.KW_QUERY: + case PostgreSqlParser.KW_RAISE: + case PostgreSqlParser.KW_SQLSTATE: + case PostgreSqlParser.KW_DEBUG: + case PostgreSqlParser.KW_LOG: + case PostgreSqlParser.KW_INFO: + case PostgreSqlParser.KW_NOTICE: + case PostgreSqlParser.KW_WARNING: + case PostgreSqlParser.KW_EXCEPTION: + case PostgreSqlParser.KW_ASSERT: + case PostgreSqlParser.KW_OPEN: + case PostgreSqlParser.KW_PUBLIC: + case PostgreSqlParser.KW_SKIP_LOCKED: + case PostgreSqlParser.KW_BUFFER_USAGE_LIMIT: + case PostgreSqlParser.Identifier: + case PostgreSqlParser.QuotedIdentifier: + case PostgreSqlParser.UnicodeQuotedIdentifier: + case PostgreSqlParser.StringConstant: + case PostgreSqlParser.UnicodeEscapeStringConstant: + case PostgreSqlParser.BeginDollarStringConstant: + case PostgreSqlParser.PLSQLVARIABLENAME: + case PostgreSqlParser.PLSQLIDENTIFIER: + case PostgreSqlParser.EscapeStringConstant: { - this.state = 2011; + this.state = 2013; this.columnList(); } break; - case 2: + case PostgreSqlParser.STAR: { - this.state = 2012; + this.state = 2014; this.match(PostgreSqlParser.STAR); } break; + default: + throw new antlr.NoViableAltException(this); } } break; case 7: { - this.state = 2015; - this.match(PostgreSqlParser.KW_FORCE); this.state = 2017; + this.match(PostgreSqlParser.KW_FORCE); + this.state = 2019; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 2016; + this.state = 2018; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 2019; + this.state = 2021; this.match(PostgreSqlParser.KW_NULL); - this.state = 2020; + this.state = 2022; this.columnList(); } break; case 8: { - this.state = 2021; + this.state = 2023; this.match(PostgreSqlParser.KW_ENCODING); - this.state = 2022; + this.state = 2024; this.stringConst(); } break; case 9: { - this.state = 2023; + this.state = 2025; _la = this.tokenStream.LA(1); if(!(((((_la - 549)) & ~0x1F) === 0 && ((1 << (_la - 549)) & 7) !== 0))) { this.errorHandler.recoverInline(this); @@ -10190,60 +10586,850 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2040; + this.state = 2042; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 145, this.context) ) { case 1: { - this.state = 2024; + this.state = 2026; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2027; + this.state = 2029; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 142, this.context) ) { - case 1: + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.KW_DEFAULT: + case PostgreSqlParser.KW_IS: + case PostgreSqlParser.KW_OUTER: + case PostgreSqlParser.KW_OVER: + case PostgreSqlParser.KW_ABORT: + case PostgreSqlParser.KW_ABSOLUTE: + case PostgreSqlParser.KW_ACCESS: + case PostgreSqlParser.KW_ACTION: + case PostgreSqlParser.KW_ADD: + case PostgreSqlParser.KW_ADMIN: + case PostgreSqlParser.KW_AFTER: + case PostgreSqlParser.KW_AGGREGATE: + case PostgreSqlParser.KW_ALSO: + case PostgreSqlParser.KW_ALTER: + case PostgreSqlParser.KW_ALWAYS: + case PostgreSqlParser.KW_ASSERTION: + case PostgreSqlParser.KW_ASSIGNMENT: + case PostgreSqlParser.KW_AT: + case PostgreSqlParser.KW_ATTRIBUTE: + case PostgreSqlParser.KW_BACKWARD: + case PostgreSqlParser.KW_BEFORE: + case PostgreSqlParser.KW_BEGIN: + case PostgreSqlParser.KW_BY: + case PostgreSqlParser.KW_CACHE: + case PostgreSqlParser.KW_CALLED: + case PostgreSqlParser.KW_CASCADE: + case PostgreSqlParser.KW_CASCADED: + case PostgreSqlParser.KW_CATALOG: + case PostgreSqlParser.KW_CHAIN: + case PostgreSqlParser.KW_CHARACTERISTICS: + case PostgreSqlParser.KW_CHECKPOINT: + case PostgreSqlParser.KW_CLASS: + case PostgreSqlParser.KW_CLOSE: + case PostgreSqlParser.KW_CLUSTER: + case PostgreSqlParser.KW_COMMENT: + case PostgreSqlParser.KW_COMMENTS: + case PostgreSqlParser.KW_COMMIT: + case PostgreSqlParser.KW_COMMITTED: + case PostgreSqlParser.KW_CONFIGURATION: + case PostgreSqlParser.KW_CONNECTION: + case PostgreSqlParser.KW_CONSTRAINTS: + case PostgreSqlParser.KW_CONTENT: + case PostgreSqlParser.KW_CONTINUE: + case PostgreSqlParser.KW_CONVERSION: + case PostgreSqlParser.KW_COPY: + case PostgreSqlParser.KW_COST: + case PostgreSqlParser.KW_CSV: + case PostgreSqlParser.KW_CURSOR: + case PostgreSqlParser.KW_CYCLE: + case PostgreSqlParser.KW_DATA: + case PostgreSqlParser.KW_DATABASE: + case PostgreSqlParser.KW_DAY: + case PostgreSqlParser.KW_DEALLOCATE: + case PostgreSqlParser.KW_DECLARE: + case PostgreSqlParser.KW_DEFAULTS: + case PostgreSqlParser.KW_DEFERRED: + case PostgreSqlParser.KW_DEFINER: + case PostgreSqlParser.KW_DELETE: + case PostgreSqlParser.KW_DELIMITER: + case PostgreSqlParser.KW_DELIMITERS: + case PostgreSqlParser.KW_DICTIONARY: + case PostgreSqlParser.KW_DISABLE: + case PostgreSqlParser.KW_DISCARD: + case PostgreSqlParser.KW_DOCUMENT: + case PostgreSqlParser.KW_DOMAIN: + case PostgreSqlParser.KW_DOUBLE: + case PostgreSqlParser.KW_DROP: + case PostgreSqlParser.KW_EACH: + case PostgreSqlParser.KW_ENABLE: + case PostgreSqlParser.KW_ENCODING: + case PostgreSqlParser.KW_ENCRYPTED: + case PostgreSqlParser.KW_ENUM: + case PostgreSqlParser.KW_ESCAPE: + case PostgreSqlParser.KW_EVENT: + case PostgreSqlParser.KW_EXCLUDE: + case PostgreSqlParser.KW_EXCLUDING: + case PostgreSqlParser.KW_EXCLUSIVE: + case PostgreSqlParser.KW_EXECUTE: + case PostgreSqlParser.KW_EXPLAIN: + case PostgreSqlParser.KW_EXTENSION: + case PostgreSqlParser.KW_EXTERNAL: + case PostgreSqlParser.KW_FAMILY: + case PostgreSqlParser.KW_FIRST: + case PostgreSqlParser.KW_FOLLOWING: + case PostgreSqlParser.KW_FORCE: + case PostgreSqlParser.KW_FORWARD: + case PostgreSqlParser.KW_FUNCTION: + case PostgreSqlParser.KW_FUNCTIONS: + case PostgreSqlParser.KW_GLOBAL: + case PostgreSqlParser.KW_GRANTED: + case PostgreSqlParser.KW_HANDLER: + case PostgreSqlParser.KW_HEADER: + case PostgreSqlParser.KW_HOLD: + case PostgreSqlParser.KW_HOUR: + case PostgreSqlParser.KW_IDENTITY: + case PostgreSqlParser.KW_IF: + case PostgreSqlParser.KW_IMMEDIATE: + case PostgreSqlParser.KW_IMMUTABLE: + case PostgreSqlParser.KW_IMPLICIT: + case PostgreSqlParser.KW_INCLUDING: + case PostgreSqlParser.KW_INCREMENT: + case PostgreSqlParser.KW_INDEX: + case PostgreSqlParser.KW_INDEXES: + case PostgreSqlParser.KW_INHERIT: + case PostgreSqlParser.KW_INHERITS: + case PostgreSqlParser.KW_INLINE: + case PostgreSqlParser.KW_INSENSITIVE: + case PostgreSqlParser.KW_INSERT: + case PostgreSqlParser.KW_INSTEAD: + case PostgreSqlParser.KW_INVOKER: + case PostgreSqlParser.KW_ISOLATION: + case PostgreSqlParser.KW_KEY: + case PostgreSqlParser.KW_LABEL: + case PostgreSqlParser.KW_LANGUAGE: + case PostgreSqlParser.KW_LARGE: + case PostgreSqlParser.KW_LAST: + case PostgreSqlParser.KW_LEAKPROOF: + case PostgreSqlParser.KW_LEVEL: + case PostgreSqlParser.KW_LISTEN: + case PostgreSqlParser.KW_LOAD: + case PostgreSqlParser.KW_LOCAL: + case PostgreSqlParser.KW_LOCATION: + case PostgreSqlParser.KW_LOCK: + case PostgreSqlParser.KW_MAPPING: + case PostgreSqlParser.KW_MATCH: + case PostgreSqlParser.KW_MATERIALIZED: + case PostgreSqlParser.KW_MAXVALUE: + case PostgreSqlParser.KW_MINUTE: + case PostgreSqlParser.KW_MINVALUE: + case PostgreSqlParser.KW_MODE: + case PostgreSqlParser.KW_MONTH: + case PostgreSqlParser.KW_MOVE: + case PostgreSqlParser.KW_NAME: + case PostgreSqlParser.KW_NAMES: + case PostgreSqlParser.KW_NEXT: + case PostgreSqlParser.KW_NO: + case PostgreSqlParser.KW_NOTHING: + case PostgreSqlParser.KW_NOTIFY: + case PostgreSqlParser.KW_NOWAIT: + case PostgreSqlParser.KW_NULLS: + case PostgreSqlParser.KW_OBJECT: + case PostgreSqlParser.KW_OF: + case PostgreSqlParser.KW_OFF: + case PostgreSqlParser.KW_OIDS: + case PostgreSqlParser.KW_OPERATOR: + case PostgreSqlParser.KW_OPTION: + case PostgreSqlParser.KW_OPTIONS: + case PostgreSqlParser.KW_OWNED: + case PostgreSqlParser.KW_OWNER: + case PostgreSqlParser.KW_PARSER: + case PostgreSqlParser.KW_PARTIAL: + case PostgreSqlParser.KW_PARTITION: + case PostgreSqlParser.KW_PASSING: + case PostgreSqlParser.KW_PASSWORD: + case PostgreSqlParser.KW_PLANS: + case PostgreSqlParser.KW_PRECEDING: + case PostgreSqlParser.KW_PREPARE: + case PostgreSqlParser.KW_PREPARED: + case PostgreSqlParser.KW_PRESERVE: + case PostgreSqlParser.KW_PRIOR: + case PostgreSqlParser.KW_PRIVILEGES: + case PostgreSqlParser.KW_PROCEDURAL: + case PostgreSqlParser.KW_PROCEDURE: + case PostgreSqlParser.KW_PROGRAM: + case PostgreSqlParser.KW_QUOTE: + case PostgreSqlParser.KW_RANGE: + case PostgreSqlParser.KW_READ: + case PostgreSqlParser.KW_REASSIGN: + case PostgreSqlParser.KW_RECHECK: + case PostgreSqlParser.KW_RECURSIVE: + case PostgreSqlParser.KW_REF: + case PostgreSqlParser.KW_REFRESH: + case PostgreSqlParser.KW_REINDEX: + case PostgreSqlParser.KW_RELATIVE: + case PostgreSqlParser.KW_RELEASE: + case PostgreSqlParser.KW_RENAME: + case PostgreSqlParser.KW_REPEATABLE: + case PostgreSqlParser.KW_REPLACE: + case PostgreSqlParser.KW_REPLICA: + case PostgreSqlParser.KW_RESET: + case PostgreSqlParser.KW_RESTART: + case PostgreSqlParser.KW_RESTRICT: + case PostgreSqlParser.KW_RETURNS: + case PostgreSqlParser.KW_REVOKE: + case PostgreSqlParser.KW_ROLE: + case PostgreSqlParser.KW_ROLLBACK: + case PostgreSqlParser.KW_ROWS: + case PostgreSqlParser.KW_RULE: + case PostgreSqlParser.KW_SAVEPOINT: + case PostgreSqlParser.KW_SCHEMA: + case PostgreSqlParser.KW_SCROLL: + case PostgreSqlParser.KW_SEARCH: + case PostgreSqlParser.KW_SECOND: + case PostgreSqlParser.KW_SECURITY: + case PostgreSqlParser.KW_SEQUENCE: + case PostgreSqlParser.KW_SEQUENCES: + case PostgreSqlParser.KW_SERIALIZABLE: + case PostgreSqlParser.KW_SERVER: + case PostgreSqlParser.KW_SESSION: + case PostgreSqlParser.KW_SET: + case PostgreSqlParser.KW_SHARE: + case PostgreSqlParser.KW_SHOW: + case PostgreSqlParser.KW_SIMPLE: + case PostgreSqlParser.KW_SNAPSHOT: + case PostgreSqlParser.KW_STABLE: + case PostgreSqlParser.KW_STANDALONE: + case PostgreSqlParser.KW_START: + case PostgreSqlParser.KW_STATEMENT: + case PostgreSqlParser.KW_STATISTICS: + case PostgreSqlParser.KW_STDIN: + case PostgreSqlParser.KW_STDOUT: + case PostgreSqlParser.KW_STORAGE: + case PostgreSqlParser.KW_STRICT: + case PostgreSqlParser.KW_STRIP: + case PostgreSqlParser.KW_SYSID: + case PostgreSqlParser.KW_SYSTEM: + case PostgreSqlParser.KW_TABLES: + case PostgreSqlParser.KW_TABLESPACE: + case PostgreSqlParser.KW_TEMP: + case PostgreSqlParser.KW_TEMPLATE: + case PostgreSqlParser.KW_TEMPORARY: + case PostgreSqlParser.KW_TEXT: + case PostgreSqlParser.KW_TRANSACTION: + case PostgreSqlParser.KW_TRIGGER: + case PostgreSqlParser.KW_TRUNCATE: + case PostgreSqlParser.KW_TRUSTED: + case PostgreSqlParser.KW_TYPE: + case PostgreSqlParser.KW_TYPES: + case PostgreSqlParser.KW_UNBOUNDED: + case PostgreSqlParser.KW_UNCOMMITTED: + case PostgreSqlParser.KW_UNENCRYPTED: + case PostgreSqlParser.KW_UNKNOWN: + case PostgreSqlParser.KW_UNLISTEN: + case PostgreSqlParser.KW_UNLOGGED: + case PostgreSqlParser.KW_UNTIL: + case PostgreSqlParser.KW_UPDATE: + case PostgreSqlParser.KW_VACUUM: + case PostgreSqlParser.KW_VALID: + case PostgreSqlParser.KW_VALIDATE: + case PostgreSqlParser.KW_VALIDATOR: + case PostgreSqlParser.KW_VARYING: + case PostgreSqlParser.KW_VERSION: + case PostgreSqlParser.KW_VIEW: + case PostgreSqlParser.KW_VOLATILE: + case PostgreSqlParser.KW_WHITESPACE: + case PostgreSqlParser.KW_WITHOUT: + case PostgreSqlParser.KW_WORK: + case PostgreSqlParser.KW_WRAPPER: + case PostgreSqlParser.KW_WRITE: + case PostgreSqlParser.KW_XML: + case PostgreSqlParser.KW_YEAR: + case PostgreSqlParser.KW_YES: + case PostgreSqlParser.KW_ZONE: + case PostgreSqlParser.KW_BETWEEN: + case PostgreSqlParser.KW_BIGINT: + case PostgreSqlParser.KW_BIT: + case PostgreSqlParser.KW_BOOLEAN: + case PostgreSqlParser.KW_CHAR: + case PostgreSqlParser.KW_CHARACTER: + case PostgreSqlParser.KW_COALESCE: + case PostgreSqlParser.KW_DEC: + case PostgreSqlParser.KW_DECIMAL: + case PostgreSqlParser.KW_EXISTS: + case PostgreSqlParser.KW_EXTRACT: + case PostgreSqlParser.KW_FLOAT: + case PostgreSqlParser.KW_GREATEST: + case PostgreSqlParser.KW_INOUT: + case PostgreSqlParser.KW_INT: + case PostgreSqlParser.KW_INTEGER: + case PostgreSqlParser.KW_INTERVAL: + case PostgreSqlParser.KW_LEAST: + case PostgreSqlParser.KW_NATIONAL: + case PostgreSqlParser.KW_NCHAR: + case PostgreSqlParser.KW_NONE: + case PostgreSqlParser.KW_NULLIF: + case PostgreSqlParser.KW_NUMERIC: + case PostgreSqlParser.KW_OVERLAY: + case PostgreSqlParser.KW_POSITION: + case PostgreSqlParser.KW_PRECISION: + case PostgreSqlParser.KW_REAL: + case PostgreSqlParser.KW_ROW: + case PostgreSqlParser.KW_SETOF: + case PostgreSqlParser.KW_SMALLINT: + case PostgreSqlParser.KW_SUBSTRING: + case PostgreSqlParser.KW_TIME: + case PostgreSqlParser.KW_TIMESTAMP: + case PostgreSqlParser.KW_TREAT: + case PostgreSqlParser.KW_TRIM: + case PostgreSqlParser.KW_VALUES: + case PostgreSqlParser.KW_VARCHAR: + case PostgreSqlParser.KW_XMLATTRIBUTES: + case PostgreSqlParser.KW_XMLCONCAT: + case PostgreSqlParser.KW_XMLELEMENT: + case PostgreSqlParser.KW_XMLEXISTS: + case PostgreSqlParser.KW_XMLFOREST: + case PostgreSqlParser.KW_XMLPARSE: + case PostgreSqlParser.KW_XMLPI: + case PostgreSqlParser.KW_XMLROOT: + case PostgreSqlParser.KW_XMLSERIALIZE: + case PostgreSqlParser.KW_CALL: + case PostgreSqlParser.KW_CURRENT: + case PostgreSqlParser.KW_ATTACH: + case PostgreSqlParser.KW_DETACH: + case PostgreSqlParser.KW_EXPRESSION: + case PostgreSqlParser.KW_GENERATED: + case PostgreSqlParser.KW_LOGGED: + case PostgreSqlParser.KW_STORED: + case PostgreSqlParser.KW_INCLUDE: + case PostgreSqlParser.KW_ROUTINE: + case PostgreSqlParser.KW_TRANSFORM: + case PostgreSqlParser.KW_IMPORT: + case PostgreSqlParser.KW_POLICY: + case PostgreSqlParser.KW_METHOD: + case PostgreSqlParser.KW_REFERENCING: + case PostgreSqlParser.KW_NEW: + case PostgreSqlParser.KW_OLD: + case PostgreSqlParser.KW_VALUE: + case PostgreSqlParser.KW_SUBSCRIPTION: + case PostgreSqlParser.KW_PUBLICATION: + case PostgreSqlParser.KW_OUT: + case PostgreSqlParser.KW_ROUTINES: + case PostgreSqlParser.KW_SCHEMAS: + case PostgreSqlParser.KW_PROCEDURES: + case PostgreSqlParser.KW_INPUT: + case PostgreSqlParser.KW_SUPPORT: + case PostgreSqlParser.KW_PARALLEL: + case PostgreSqlParser.KW_SQL: + case PostgreSqlParser.KW_DEPENDS: + case PostgreSqlParser.KW_OVERRIDING: + case PostgreSqlParser.KW_CONFLICT: + case PostgreSqlParser.KW_SKIP: + case PostgreSqlParser.KW_LOCKED: + case PostgreSqlParser.KW_TIES: + case PostgreSqlParser.KW_ROLLUP: + case PostgreSqlParser.KW_CUBE: + case PostgreSqlParser.KW_GROUPING: + case PostgreSqlParser.KW_SETS: + case PostgreSqlParser.KW_ORDINALITY: + case PostgreSqlParser.KW_XMLTABLE: + case PostgreSqlParser.KW_COLUMNS: + case PostgreSqlParser.KW_XMLNAMESPACES: + case PostgreSqlParser.KW_ROWTYPE: + case PostgreSqlParser.KW_NORMALIZED: + case PostgreSqlParser.KW_WITHIN: + case PostgreSqlParser.KW_FILTER: + case PostgreSqlParser.KW_GROUPS: + case PostgreSqlParser.KW_OTHERS: + case PostgreSqlParser.KW_NFC: + case PostgreSqlParser.KW_NFD: + case PostgreSqlParser.KW_NFKC: + case PostgreSqlParser.KW_NFKD: + case PostgreSqlParser.KW_UESCAPE: + case PostgreSqlParser.KW_VIEWS: + case PostgreSqlParser.KW_NORMALIZE: + case PostgreSqlParser.KW_DUMP: + case PostgreSqlParser.KW_PRINT_STRICT_PARAMS: + case PostgreSqlParser.KW_VARIABLE_CONFLICT: + case PostgreSqlParser.KW_ERROR: + case PostgreSqlParser.KW_USE_VARIABLE: + case PostgreSqlParser.KW_USE_COLUMN: + case PostgreSqlParser.KW_ALIAS: + case PostgreSqlParser.KW_CONSTANT: + case PostgreSqlParser.KW_PERFORM: + case PostgreSqlParser.KW_GET: + case PostgreSqlParser.KW_DIAGNOSTICS: + case PostgreSqlParser.KW_STACKED: + case PostgreSqlParser.KW_ELSIF: + case PostgreSqlParser.KW_REVERSE: + case PostgreSqlParser.KW_SLICE: + case PostgreSqlParser.KW_EXIT: + case PostgreSqlParser.KW_RETURN: + case PostgreSqlParser.KW_QUERY: + case PostgreSqlParser.KW_RAISE: + case PostgreSqlParser.KW_SQLSTATE: + case PostgreSqlParser.KW_DEBUG: + case PostgreSqlParser.KW_LOG: + case PostgreSqlParser.KW_INFO: + case PostgreSqlParser.KW_NOTICE: + case PostgreSqlParser.KW_WARNING: + case PostgreSqlParser.KW_EXCEPTION: + case PostgreSqlParser.KW_ASSERT: + case PostgreSqlParser.KW_OPEN: + case PostgreSqlParser.KW_PUBLIC: + case PostgreSqlParser.KW_SKIP_LOCKED: + case PostgreSqlParser.KW_BUFFER_USAGE_LIMIT: + case PostgreSqlParser.Identifier: + case PostgreSqlParser.QuotedIdentifier: + case PostgreSqlParser.UnicodeQuotedIdentifier: + case PostgreSqlParser.StringConstant: + case PostgreSqlParser.UnicodeEscapeStringConstant: + case PostgreSqlParser.BeginDollarStringConstant: + case PostgreSqlParser.PLSQLVARIABLENAME: + case PostgreSqlParser.PLSQLIDENTIFIER: + case PostgreSqlParser.EscapeStringConstant: { - this.state = 2025; + this.state = 2027; this.columnList(); } break; - case 2: + case PostgreSqlParser.STAR: { - this.state = 2026; + this.state = 2028; this.match(PostgreSqlParser.STAR); } break; + default: + throw new antlr.NoViableAltException(this); } - this.state = 2036; + this.state = 2038; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2029; + this.state = 2031; this.match(PostgreSqlParser.COMMA); - this.state = 2032; + this.state = 2034; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 143, this.context) ) { - case 1: + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.KW_DEFAULT: + case PostgreSqlParser.KW_IS: + case PostgreSqlParser.KW_OUTER: + case PostgreSqlParser.KW_OVER: + case PostgreSqlParser.KW_ABORT: + case PostgreSqlParser.KW_ABSOLUTE: + case PostgreSqlParser.KW_ACCESS: + case PostgreSqlParser.KW_ACTION: + case PostgreSqlParser.KW_ADD: + case PostgreSqlParser.KW_ADMIN: + case PostgreSqlParser.KW_AFTER: + case PostgreSqlParser.KW_AGGREGATE: + case PostgreSqlParser.KW_ALSO: + case PostgreSqlParser.KW_ALTER: + case PostgreSqlParser.KW_ALWAYS: + case PostgreSqlParser.KW_ASSERTION: + case PostgreSqlParser.KW_ASSIGNMENT: + case PostgreSqlParser.KW_AT: + case PostgreSqlParser.KW_ATTRIBUTE: + case PostgreSqlParser.KW_BACKWARD: + case PostgreSqlParser.KW_BEFORE: + case PostgreSqlParser.KW_BEGIN: + case PostgreSqlParser.KW_BY: + case PostgreSqlParser.KW_CACHE: + case PostgreSqlParser.KW_CALLED: + case PostgreSqlParser.KW_CASCADE: + case PostgreSqlParser.KW_CASCADED: + case PostgreSqlParser.KW_CATALOG: + case PostgreSqlParser.KW_CHAIN: + case PostgreSqlParser.KW_CHARACTERISTICS: + case PostgreSqlParser.KW_CHECKPOINT: + case PostgreSqlParser.KW_CLASS: + case PostgreSqlParser.KW_CLOSE: + case PostgreSqlParser.KW_CLUSTER: + case PostgreSqlParser.KW_COMMENT: + case PostgreSqlParser.KW_COMMENTS: + case PostgreSqlParser.KW_COMMIT: + case PostgreSqlParser.KW_COMMITTED: + case PostgreSqlParser.KW_CONFIGURATION: + case PostgreSqlParser.KW_CONNECTION: + case PostgreSqlParser.KW_CONSTRAINTS: + case PostgreSqlParser.KW_CONTENT: + case PostgreSqlParser.KW_CONTINUE: + case PostgreSqlParser.KW_CONVERSION: + case PostgreSqlParser.KW_COPY: + case PostgreSqlParser.KW_COST: + case PostgreSqlParser.KW_CSV: + case PostgreSqlParser.KW_CURSOR: + case PostgreSqlParser.KW_CYCLE: + case PostgreSqlParser.KW_DATA: + case PostgreSqlParser.KW_DATABASE: + case PostgreSqlParser.KW_DAY: + case PostgreSqlParser.KW_DEALLOCATE: + case PostgreSqlParser.KW_DECLARE: + case PostgreSqlParser.KW_DEFAULTS: + case PostgreSqlParser.KW_DEFERRED: + case PostgreSqlParser.KW_DEFINER: + case PostgreSqlParser.KW_DELETE: + case PostgreSqlParser.KW_DELIMITER: + case PostgreSqlParser.KW_DELIMITERS: + case PostgreSqlParser.KW_DICTIONARY: + case PostgreSqlParser.KW_DISABLE: + case PostgreSqlParser.KW_DISCARD: + case PostgreSqlParser.KW_DOCUMENT: + case PostgreSqlParser.KW_DOMAIN: + case PostgreSqlParser.KW_DOUBLE: + case PostgreSqlParser.KW_DROP: + case PostgreSqlParser.KW_EACH: + case PostgreSqlParser.KW_ENABLE: + case PostgreSqlParser.KW_ENCODING: + case PostgreSqlParser.KW_ENCRYPTED: + case PostgreSqlParser.KW_ENUM: + case PostgreSqlParser.KW_ESCAPE: + case PostgreSqlParser.KW_EVENT: + case PostgreSqlParser.KW_EXCLUDE: + case PostgreSqlParser.KW_EXCLUDING: + case PostgreSqlParser.KW_EXCLUSIVE: + case PostgreSqlParser.KW_EXECUTE: + case PostgreSqlParser.KW_EXPLAIN: + case PostgreSqlParser.KW_EXTENSION: + case PostgreSqlParser.KW_EXTERNAL: + case PostgreSqlParser.KW_FAMILY: + case PostgreSqlParser.KW_FIRST: + case PostgreSqlParser.KW_FOLLOWING: + case PostgreSqlParser.KW_FORCE: + case PostgreSqlParser.KW_FORWARD: + case PostgreSqlParser.KW_FUNCTION: + case PostgreSqlParser.KW_FUNCTIONS: + case PostgreSqlParser.KW_GLOBAL: + case PostgreSqlParser.KW_GRANTED: + case PostgreSqlParser.KW_HANDLER: + case PostgreSqlParser.KW_HEADER: + case PostgreSqlParser.KW_HOLD: + case PostgreSqlParser.KW_HOUR: + case PostgreSqlParser.KW_IDENTITY: + case PostgreSqlParser.KW_IF: + case PostgreSqlParser.KW_IMMEDIATE: + case PostgreSqlParser.KW_IMMUTABLE: + case PostgreSqlParser.KW_IMPLICIT: + case PostgreSqlParser.KW_INCLUDING: + case PostgreSqlParser.KW_INCREMENT: + case PostgreSqlParser.KW_INDEX: + case PostgreSqlParser.KW_INDEXES: + case PostgreSqlParser.KW_INHERIT: + case PostgreSqlParser.KW_INHERITS: + case PostgreSqlParser.KW_INLINE: + case PostgreSqlParser.KW_INSENSITIVE: + case PostgreSqlParser.KW_INSERT: + case PostgreSqlParser.KW_INSTEAD: + case PostgreSqlParser.KW_INVOKER: + case PostgreSqlParser.KW_ISOLATION: + case PostgreSqlParser.KW_KEY: + case PostgreSqlParser.KW_LABEL: + case PostgreSqlParser.KW_LANGUAGE: + case PostgreSqlParser.KW_LARGE: + case PostgreSqlParser.KW_LAST: + case PostgreSqlParser.KW_LEAKPROOF: + case PostgreSqlParser.KW_LEVEL: + case PostgreSqlParser.KW_LISTEN: + case PostgreSqlParser.KW_LOAD: + case PostgreSqlParser.KW_LOCAL: + case PostgreSqlParser.KW_LOCATION: + case PostgreSqlParser.KW_LOCK: + case PostgreSqlParser.KW_MAPPING: + case PostgreSqlParser.KW_MATCH: + case PostgreSqlParser.KW_MATERIALIZED: + case PostgreSqlParser.KW_MAXVALUE: + case PostgreSqlParser.KW_MINUTE: + case PostgreSqlParser.KW_MINVALUE: + case PostgreSqlParser.KW_MODE: + case PostgreSqlParser.KW_MONTH: + case PostgreSqlParser.KW_MOVE: + case PostgreSqlParser.KW_NAME: + case PostgreSqlParser.KW_NAMES: + case PostgreSqlParser.KW_NEXT: + case PostgreSqlParser.KW_NO: + case PostgreSqlParser.KW_NOTHING: + case PostgreSqlParser.KW_NOTIFY: + case PostgreSqlParser.KW_NOWAIT: + case PostgreSqlParser.KW_NULLS: + case PostgreSqlParser.KW_OBJECT: + case PostgreSqlParser.KW_OF: + case PostgreSqlParser.KW_OFF: + case PostgreSqlParser.KW_OIDS: + case PostgreSqlParser.KW_OPERATOR: + case PostgreSqlParser.KW_OPTION: + case PostgreSqlParser.KW_OPTIONS: + case PostgreSqlParser.KW_OWNED: + case PostgreSqlParser.KW_OWNER: + case PostgreSqlParser.KW_PARSER: + case PostgreSqlParser.KW_PARTIAL: + case PostgreSqlParser.KW_PARTITION: + case PostgreSqlParser.KW_PASSING: + case PostgreSqlParser.KW_PASSWORD: + case PostgreSqlParser.KW_PLANS: + case PostgreSqlParser.KW_PRECEDING: + case PostgreSqlParser.KW_PREPARE: + case PostgreSqlParser.KW_PREPARED: + case PostgreSqlParser.KW_PRESERVE: + case PostgreSqlParser.KW_PRIOR: + case PostgreSqlParser.KW_PRIVILEGES: + case PostgreSqlParser.KW_PROCEDURAL: + case PostgreSqlParser.KW_PROCEDURE: + case PostgreSqlParser.KW_PROGRAM: + case PostgreSqlParser.KW_QUOTE: + case PostgreSqlParser.KW_RANGE: + case PostgreSqlParser.KW_READ: + case PostgreSqlParser.KW_REASSIGN: + case PostgreSqlParser.KW_RECHECK: + case PostgreSqlParser.KW_RECURSIVE: + case PostgreSqlParser.KW_REF: + case PostgreSqlParser.KW_REFRESH: + case PostgreSqlParser.KW_REINDEX: + case PostgreSqlParser.KW_RELATIVE: + case PostgreSqlParser.KW_RELEASE: + case PostgreSqlParser.KW_RENAME: + case PostgreSqlParser.KW_REPEATABLE: + case PostgreSqlParser.KW_REPLACE: + case PostgreSqlParser.KW_REPLICA: + case PostgreSqlParser.KW_RESET: + case PostgreSqlParser.KW_RESTART: + case PostgreSqlParser.KW_RESTRICT: + case PostgreSqlParser.KW_RETURNS: + case PostgreSqlParser.KW_REVOKE: + case PostgreSqlParser.KW_ROLE: + case PostgreSqlParser.KW_ROLLBACK: + case PostgreSqlParser.KW_ROWS: + case PostgreSqlParser.KW_RULE: + case PostgreSqlParser.KW_SAVEPOINT: + case PostgreSqlParser.KW_SCHEMA: + case PostgreSqlParser.KW_SCROLL: + case PostgreSqlParser.KW_SEARCH: + case PostgreSqlParser.KW_SECOND: + case PostgreSqlParser.KW_SECURITY: + case PostgreSqlParser.KW_SEQUENCE: + case PostgreSqlParser.KW_SEQUENCES: + case PostgreSqlParser.KW_SERIALIZABLE: + case PostgreSqlParser.KW_SERVER: + case PostgreSqlParser.KW_SESSION: + case PostgreSqlParser.KW_SET: + case PostgreSqlParser.KW_SHARE: + case PostgreSqlParser.KW_SHOW: + case PostgreSqlParser.KW_SIMPLE: + case PostgreSqlParser.KW_SNAPSHOT: + case PostgreSqlParser.KW_STABLE: + case PostgreSqlParser.KW_STANDALONE: + case PostgreSqlParser.KW_START: + case PostgreSqlParser.KW_STATEMENT: + case PostgreSqlParser.KW_STATISTICS: + case PostgreSqlParser.KW_STDIN: + case PostgreSqlParser.KW_STDOUT: + case PostgreSqlParser.KW_STORAGE: + case PostgreSqlParser.KW_STRICT: + case PostgreSqlParser.KW_STRIP: + case PostgreSqlParser.KW_SYSID: + case PostgreSqlParser.KW_SYSTEM: + case PostgreSqlParser.KW_TABLES: + case PostgreSqlParser.KW_TABLESPACE: + case PostgreSqlParser.KW_TEMP: + case PostgreSqlParser.KW_TEMPLATE: + case PostgreSqlParser.KW_TEMPORARY: + case PostgreSqlParser.KW_TEXT: + case PostgreSqlParser.KW_TRANSACTION: + case PostgreSqlParser.KW_TRIGGER: + case PostgreSqlParser.KW_TRUNCATE: + case PostgreSqlParser.KW_TRUSTED: + case PostgreSqlParser.KW_TYPE: + case PostgreSqlParser.KW_TYPES: + case PostgreSqlParser.KW_UNBOUNDED: + case PostgreSqlParser.KW_UNCOMMITTED: + case PostgreSqlParser.KW_UNENCRYPTED: + case PostgreSqlParser.KW_UNKNOWN: + case PostgreSqlParser.KW_UNLISTEN: + case PostgreSqlParser.KW_UNLOGGED: + case PostgreSqlParser.KW_UNTIL: + case PostgreSqlParser.KW_UPDATE: + case PostgreSqlParser.KW_VACUUM: + case PostgreSqlParser.KW_VALID: + case PostgreSqlParser.KW_VALIDATE: + case PostgreSqlParser.KW_VALIDATOR: + case PostgreSqlParser.KW_VARYING: + case PostgreSqlParser.KW_VERSION: + case PostgreSqlParser.KW_VIEW: + case PostgreSqlParser.KW_VOLATILE: + case PostgreSqlParser.KW_WHITESPACE: + case PostgreSqlParser.KW_WITHOUT: + case PostgreSqlParser.KW_WORK: + case PostgreSqlParser.KW_WRAPPER: + case PostgreSqlParser.KW_WRITE: + case PostgreSqlParser.KW_XML: + case PostgreSqlParser.KW_YEAR: + case PostgreSqlParser.KW_YES: + case PostgreSqlParser.KW_ZONE: + case PostgreSqlParser.KW_BETWEEN: + case PostgreSqlParser.KW_BIGINT: + case PostgreSqlParser.KW_BIT: + case PostgreSqlParser.KW_BOOLEAN: + case PostgreSqlParser.KW_CHAR: + case PostgreSqlParser.KW_CHARACTER: + case PostgreSqlParser.KW_COALESCE: + case PostgreSqlParser.KW_DEC: + case PostgreSqlParser.KW_DECIMAL: + case PostgreSqlParser.KW_EXISTS: + case PostgreSqlParser.KW_EXTRACT: + case PostgreSqlParser.KW_FLOAT: + case PostgreSqlParser.KW_GREATEST: + case PostgreSqlParser.KW_INOUT: + case PostgreSqlParser.KW_INT: + case PostgreSqlParser.KW_INTEGER: + case PostgreSqlParser.KW_INTERVAL: + case PostgreSqlParser.KW_LEAST: + case PostgreSqlParser.KW_NATIONAL: + case PostgreSqlParser.KW_NCHAR: + case PostgreSqlParser.KW_NONE: + case PostgreSqlParser.KW_NULLIF: + case PostgreSqlParser.KW_NUMERIC: + case PostgreSqlParser.KW_OVERLAY: + case PostgreSqlParser.KW_POSITION: + case PostgreSqlParser.KW_PRECISION: + case PostgreSqlParser.KW_REAL: + case PostgreSqlParser.KW_ROW: + case PostgreSqlParser.KW_SETOF: + case PostgreSqlParser.KW_SMALLINT: + case PostgreSqlParser.KW_SUBSTRING: + case PostgreSqlParser.KW_TIME: + case PostgreSqlParser.KW_TIMESTAMP: + case PostgreSqlParser.KW_TREAT: + case PostgreSqlParser.KW_TRIM: + case PostgreSqlParser.KW_VALUES: + case PostgreSqlParser.KW_VARCHAR: + case PostgreSqlParser.KW_XMLATTRIBUTES: + case PostgreSqlParser.KW_XMLCONCAT: + case PostgreSqlParser.KW_XMLELEMENT: + case PostgreSqlParser.KW_XMLEXISTS: + case PostgreSqlParser.KW_XMLFOREST: + case PostgreSqlParser.KW_XMLPARSE: + case PostgreSqlParser.KW_XMLPI: + case PostgreSqlParser.KW_XMLROOT: + case PostgreSqlParser.KW_XMLSERIALIZE: + case PostgreSqlParser.KW_CALL: + case PostgreSqlParser.KW_CURRENT: + case PostgreSqlParser.KW_ATTACH: + case PostgreSqlParser.KW_DETACH: + case PostgreSqlParser.KW_EXPRESSION: + case PostgreSqlParser.KW_GENERATED: + case PostgreSqlParser.KW_LOGGED: + case PostgreSqlParser.KW_STORED: + case PostgreSqlParser.KW_INCLUDE: + case PostgreSqlParser.KW_ROUTINE: + case PostgreSqlParser.KW_TRANSFORM: + case PostgreSqlParser.KW_IMPORT: + case PostgreSqlParser.KW_POLICY: + case PostgreSqlParser.KW_METHOD: + case PostgreSqlParser.KW_REFERENCING: + case PostgreSqlParser.KW_NEW: + case PostgreSqlParser.KW_OLD: + case PostgreSqlParser.KW_VALUE: + case PostgreSqlParser.KW_SUBSCRIPTION: + case PostgreSqlParser.KW_PUBLICATION: + case PostgreSqlParser.KW_OUT: + case PostgreSqlParser.KW_ROUTINES: + case PostgreSqlParser.KW_SCHEMAS: + case PostgreSqlParser.KW_PROCEDURES: + case PostgreSqlParser.KW_INPUT: + case PostgreSqlParser.KW_SUPPORT: + case PostgreSqlParser.KW_PARALLEL: + case PostgreSqlParser.KW_SQL: + case PostgreSqlParser.KW_DEPENDS: + case PostgreSqlParser.KW_OVERRIDING: + case PostgreSqlParser.KW_CONFLICT: + case PostgreSqlParser.KW_SKIP: + case PostgreSqlParser.KW_LOCKED: + case PostgreSqlParser.KW_TIES: + case PostgreSqlParser.KW_ROLLUP: + case PostgreSqlParser.KW_CUBE: + case PostgreSqlParser.KW_GROUPING: + case PostgreSqlParser.KW_SETS: + case PostgreSqlParser.KW_ORDINALITY: + case PostgreSqlParser.KW_XMLTABLE: + case PostgreSqlParser.KW_COLUMNS: + case PostgreSqlParser.KW_XMLNAMESPACES: + case PostgreSqlParser.KW_ROWTYPE: + case PostgreSqlParser.KW_NORMALIZED: + case PostgreSqlParser.KW_WITHIN: + case PostgreSqlParser.KW_FILTER: + case PostgreSqlParser.KW_GROUPS: + case PostgreSqlParser.KW_OTHERS: + case PostgreSqlParser.KW_NFC: + case PostgreSqlParser.KW_NFD: + case PostgreSqlParser.KW_NFKC: + case PostgreSqlParser.KW_NFKD: + case PostgreSqlParser.KW_UESCAPE: + case PostgreSqlParser.KW_VIEWS: + case PostgreSqlParser.KW_NORMALIZE: + case PostgreSqlParser.KW_DUMP: + case PostgreSqlParser.KW_PRINT_STRICT_PARAMS: + case PostgreSqlParser.KW_VARIABLE_CONFLICT: + case PostgreSqlParser.KW_ERROR: + case PostgreSqlParser.KW_USE_VARIABLE: + case PostgreSqlParser.KW_USE_COLUMN: + case PostgreSqlParser.KW_ALIAS: + case PostgreSqlParser.KW_CONSTANT: + case PostgreSqlParser.KW_PERFORM: + case PostgreSqlParser.KW_GET: + case PostgreSqlParser.KW_DIAGNOSTICS: + case PostgreSqlParser.KW_STACKED: + case PostgreSqlParser.KW_ELSIF: + case PostgreSqlParser.KW_REVERSE: + case PostgreSqlParser.KW_SLICE: + case PostgreSqlParser.KW_EXIT: + case PostgreSqlParser.KW_RETURN: + case PostgreSqlParser.KW_QUERY: + case PostgreSqlParser.KW_RAISE: + case PostgreSqlParser.KW_SQLSTATE: + case PostgreSqlParser.KW_DEBUG: + case PostgreSqlParser.KW_LOG: + case PostgreSqlParser.KW_INFO: + case PostgreSqlParser.KW_NOTICE: + case PostgreSqlParser.KW_WARNING: + case PostgreSqlParser.KW_EXCEPTION: + case PostgreSqlParser.KW_ASSERT: + case PostgreSqlParser.KW_OPEN: + case PostgreSqlParser.KW_PUBLIC: + case PostgreSqlParser.KW_SKIP_LOCKED: + case PostgreSqlParser.KW_BUFFER_USAGE_LIMIT: + case PostgreSqlParser.Identifier: + case PostgreSqlParser.QuotedIdentifier: + case PostgreSqlParser.UnicodeQuotedIdentifier: + case PostgreSqlParser.StringConstant: + case PostgreSqlParser.UnicodeEscapeStringConstant: + case PostgreSqlParser.BeginDollarStringConstant: + case PostgreSqlParser.PLSQLVARIABLENAME: + case PostgreSqlParser.PLSQLIDENTIFIER: + case PostgreSqlParser.EscapeStringConstant: { - this.state = 2030; + this.state = 2032; this.columnList(); } break; - case 2: + case PostgreSqlParser.STAR: { - this.state = 2031; + this.state = 2033; this.match(PostgreSqlParser.STAR); } break; + default: + throw new antlr.NoViableAltException(this); } } } - this.state = 2038; + this.state = 2040; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2039; + this.state = 2041; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -10253,7 +11439,7 @@ export class PostgreSqlParser extends SQLParserBase { } } } - this.state = 2046; + this.state = 2048; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 147, this.context); } @@ -10278,68 +11464,68 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 110, PostgreSqlParser.RULE_copyOptions); let _la: number; try { - this.state = 2065; + this.state = 2067; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 151, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2047; + this.state = 2049; this.copyOptionsNoparens(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2048; + this.state = 2050; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2051; + this.state = 2053; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 148, this.context) ) { case 1: { - this.state = 2049; + this.state = 2051; this.copyOptionsNoparens(); } break; case 2: { - this.state = 2050; + this.state = 2052; this.copyGenericOptElem(); } break; } - this.state = 2060; + this.state = 2062; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2053; + this.state = 2055; this.match(PostgreSqlParser.COMMA); - this.state = 2056; + this.state = 2058; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 149, this.context) ) { case 1: { - this.state = 2054; + this.state = 2056; this.copyOptionsNoparens(); } break; case 2: { - this.state = 2055; + this.state = 2057; this.copyGenericOptElem(); } break; } } } - this.state = 2062; + this.state = 2064; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2063; + this.state = 2065; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -10366,9 +11552,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2067; + this.state = 2069; this.colLabel(); - this.state = 2082; + this.state = 2084; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -10790,7 +11976,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 2068; + this.state = 2070; this.booleanOrString(); } break; @@ -10799,39 +11985,39 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.Integral: case PostgreSqlParser.Numeric: { - this.state = 2069; + this.state = 2071; this.numericOnly(); } break; case PostgreSqlParser.STAR: { - this.state = 2070; + this.state = 2072; this.match(PostgreSqlParser.STAR); } break; case PostgreSqlParser.OPEN_PAREN: { - this.state = 2071; + this.state = 2073; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2072; + this.state = 2074; this.optBooleanOrStringColumn(); - this.state = 2077; + this.state = 2079; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2073; + this.state = 2075; this.match(PostgreSqlParser.COMMA); - this.state = 2074; + this.state = 2076; this.optBooleanOrStringColumn(); } } - this.state = 2079; + this.state = 2081; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2080; + this.state = 2082; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -10865,107 +12051,107 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new ColumnCreateTableContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2084; - this.match(PostgreSqlParser.KW_CREATE); this.state = 2086; + this.match(PostgreSqlParser.KW_CREATE); + this.state = 2088; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 213 || _la === 254 || ((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 32773) !== 0)) { { - this.state = 2085; + this.state = 2087; this.optTemp(); } } - this.state = 2088; - this.match(PostgreSqlParser.KW_TABLE); this.state = 2090; + this.match(PostgreSqlParser.KW_TABLE); + this.state = 2092; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 155, this.context) ) { case 1: { - this.state = 2089; + this.state = 2091; this.ifNotExists(); } break; } - this.state = 2092; + this.state = 2094; this.tableNameCreate(); - this.state = 2158; + this.state = 2160; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: { - this.state = 2093; - this.match(PostgreSqlParser.OPEN_PAREN); this.state = 2095; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 2097; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 42)) & ~0x1F) === 0 && ((1 << (_la - 42)) & 2099209) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2147491841) !== 0) || ((((_la - 120)) & ~0x1F) === 0 && ((1 << (_la - 120)) & 4294966809) !== 0) || ((((_la - 152)) & ~0x1F) === 0 && ((1 << (_la - 152)) & 4294967295) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 4294967295) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290781183) !== 0) || ((((_la - 248)) & ~0x1F) === 0 && ((1 << (_la - 248)) & 4294967295) !== 0) || ((((_la - 280)) & ~0x1F) === 0 && ((1 << (_la - 280)) & 4294967295) !== 0) || ((((_la - 312)) & ~0x1F) === 0 && ((1 << (_la - 312)) & 4294967295) !== 0) || ((((_la - 344)) & ~0x1F) === 0 && ((1 << (_la - 344)) & 4294967295) !== 0) || ((((_la - 376)) & ~0x1F) === 0 && ((1 << (_la - 376)) & 4294967295) !== 0) || ((((_la - 408)) & ~0x1F) === 0 && ((1 << (_la - 408)) & 4294967295) !== 0) || ((((_la - 440)) & ~0x1F) === 0 && ((1 << (_la - 440)) & 4294950911) !== 0) || ((((_la - 473)) & ~0x1F) === 0 && ((1 << (_la - 473)) & 3221225471) !== 0) || ((((_la - 506)) & ~0x1F) === 0 && ((1 << (_la - 506)) & 286719) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 2094; + this.state = 2096; this.tableElementList(); } } - this.state = 2097; - this.match(PostgreSqlParser.CLOSE_PAREN); this.state = 2099; + this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 2101; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 157, this.context) ) { case 1: { - this.state = 2098; + this.state = 2100; this.optInherit(); } break; } - this.state = 2102; + this.state = 2104; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 158, this.context) ) { case 1: { - this.state = 2101; + this.state = 2103; this.partitionSpec(); } break; } - this.state = 2105; + this.state = 2107; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2104; + this.state = 2106; this.tableAccessMethodClause(); } } - this.state = 2108; + this.state = 2110; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 160, this.context) ) { case 1: { - this.state = 2107; + this.state = 2109; this.optWith(); } break; } - this.state = 2111; + this.state = 2113; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 2110; + this.state = 2112; this.onCommitOption(); } } - this.state = 2114; + this.state = 2116; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 162, this.context) ) { case 1: { - this.state = 2113; + this.state = 2115; this.optTableSpace(); } break; @@ -10974,66 +12160,66 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_OF: { - this.state = 2116; + this.state = 2118; this.match(PostgreSqlParser.KW_OF); - this.state = 2117; - this.anyName(); this.state = 2119; + this.anyName(); + this.state = 2121; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 163, this.context) ) { case 1: { - this.state = 2118; + this.state = 2120; this.optTypedTableElEmentList(); } break; } - this.state = 2122; + this.state = 2124; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 164, this.context) ) { case 1: { - this.state = 2121; + this.state = 2123; this.partitionSpec(); } break; } - this.state = 2125; + this.state = 2127; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2124; + this.state = 2126; this.tableAccessMethodClause(); } } - this.state = 2128; + this.state = 2130; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 166, this.context) ) { case 1: { - this.state = 2127; + this.state = 2129; this.optWith(); } break; } - this.state = 2131; + this.state = 2133; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 2130; + this.state = 2132; this.onCommitOption(); } } - this.state = 2134; + this.state = 2136; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 168, this.context) ) { case 1: { - this.state = 2133; + this.state = 2135; this.optTableSpace(); } break; @@ -11042,70 +12228,70 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_PARTITION: { - this.state = 2136; + this.state = 2138; this.match(PostgreSqlParser.KW_PARTITION); - this.state = 2137; + this.state = 2139; this.match(PostgreSqlParser.KW_OF); - this.state = 2138; - this.qualifiedName(); this.state = 2140; + this.qualifiedName(); + this.state = 2142; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 2139; + this.state = 2141; this.optTypedTableElEmentList(); } } - this.state = 2142; - this.partitionBoundSpec(); this.state = 2144; + this.partitionBoundSpec(); + this.state = 2146; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 170, this.context) ) { case 1: { - this.state = 2143; + this.state = 2145; this.partitionSpec(); } break; } - this.state = 2147; + this.state = 2149; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2146; + this.state = 2148; this.tableAccessMethodClause(); } } - this.state = 2150; + this.state = 2152; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 172, this.context) ) { case 1: { - this.state = 2149; + this.state = 2151; this.optWith(); } break; } - this.state = 2153; + this.state = 2155; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 2152; + this.state = 2154; this.onCommitOption(); } } - this.state = 2156; + this.state = 2158; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 174, this.context) ) { case 1: { - this.state = 2155; + this.state = 2157; this.optTableSpace(); } break; @@ -11136,20 +12322,20 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 116, PostgreSqlParser.RULE_optTemp); let _la: number; try { - this.state = 2165; + this.state = 2167; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_TEMPORARY: this.enterOuterAlt(localContext, 1); { - this.state = 2160; + this.state = 2162; this.match(PostgreSqlParser.KW_TEMPORARY); } break; case PostgreSqlParser.KW_TEMP: this.enterOuterAlt(localContext, 2); { - this.state = 2161; + this.state = 2163; this.match(PostgreSqlParser.KW_TEMP); } break; @@ -11157,7 +12343,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_LOCAL: this.enterOuterAlt(localContext, 3); { - this.state = 2162; + this.state = 2164; _la = this.tokenStream.LA(1); if(!(_la === 213 || _la === 254)) { this.errorHandler.recoverInline(this); @@ -11166,7 +12352,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2163; + this.state = 2165; _la = this.tokenStream.LA(1); if(!(_la === 352 || _la === 354)) { this.errorHandler.recoverInline(this); @@ -11180,7 +12366,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_UNLOGGED: this.enterOuterAlt(localContext, 4); { - this.state = 2164; + this.state = 2166; this.match(PostgreSqlParser.KW_UNLOGGED); } break; @@ -11209,27 +12395,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2167; + this.state = 2169; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2168; + this.state = 2170; this.typedTableElement(); - this.state = 2173; + this.state = 2175; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2169; + this.state = 2171; this.match(PostgreSqlParser.COMMA); - this.state = 2170; + this.state = 2172; this.typedTableElement(); } } - this.state = 2175; + this.state = 2177; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2176; + this.state = 2178; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -11254,21 +12440,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2178; + this.state = 2180; this.tableElement(); - this.state = 2183; + this.state = 2185; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2179; + this.state = 2181; this.match(PostgreSqlParser.COMMA); - this.state = 2180; + this.state = 2182; this.tableElement(); } } - this.state = 2185; + this.state = 2187; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -11293,49 +12479,49 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 122, PostgreSqlParser.RULE_tableElement); let _la: number; try { - this.state = 2201; + this.state = 2203; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 181, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2188; + this.state = 2190; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 45) { { - this.state = 2186; + this.state = 2188; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 2187; + this.state = 2189; this.colId(); } } - this.state = 2190; + this.state = 2192; this.constraintElem(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2191; + this.state = 2193; this.column_def(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2192; + this.state = 2194; this.match(PostgreSqlParser.KW_LIKE); - this.state = 2193; + this.state = 2195; this.qualifiedName(); - this.state = 2198; + this.state = 2200; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 200 || _la === 224) { { { - this.state = 2194; + this.state = 2196; _la = this.tokenStream.LA(1); if(!(_la === 200 || _la === 224)) { this.errorHandler.recoverInline(this); @@ -11344,11 +12530,11 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2195; + this.state = 2197; this.tableLikeOption(); } } - this.state = 2200; + this.state = 2202; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -11375,37 +12561,37 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 124, PostgreSqlParser.RULE_typedTableElement); let _la: number; try { - this.state = 2219; + this.state = 2221; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 185, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2203; + this.state = 2205; this.columnNameCreate(); - this.state = 2206; + this.state = 2208; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 2204; + this.state = 2206; this.match(PostgreSqlParser.KW_WITH); - this.state = 2205; + this.state = 2207; this.match(PostgreSqlParser.KW_OPTIONS); } } - this.state = 2211; + this.state = 2213; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (((((_la - 42)) & ~0x1F) === 0 && ((1 << (_la - 42)) & 2059) !== 0) || ((((_la - 77)) & ~0x1F) === 0 && ((1 << (_la - 77)) & 2097923) !== 0) || _la === 438) { { { - this.state = 2208; + this.state = 2210; this.colConstraint(); } } - this.state = 2213; + this.state = 2215; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -11414,19 +12600,19 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2216; + this.state = 2218; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 45) { { - this.state = 2214; + this.state = 2216; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 2215; + this.state = 2217; this.colId(); } } - this.state = 2218; + this.state = 2220; this.constraintElem(); } break; @@ -11454,63 +12640,63 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2221; + this.state = 2223; this.columnNameCreate(); - this.state = 2222; - localContext._colType = this.typename(); this.state = 2224; + localContext._colType = this.typename(); + this.state = 2226; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 186, this.context) ) { case 1: { - this.state = 2223; + this.state = 2225; this.createGenericOptions(); } break; } - this.state = 2235; + this.state = 2237; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 188, this.context) ) { case 1: { - this.state = 2226; + this.state = 2228; this.match(PostgreSqlParser.KW_STORAGE); - this.state = 2233; + this.state = 2235; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 187, this.context) ) { case 1: { - this.state = 2227; + this.state = 2229; this.match(PostgreSqlParser.KW_PLAIN); } break; case 2: { - this.state = 2228; + this.state = 2230; this.match(PostgreSqlParser.KW_EXTERNAL); } break; case 3: { - this.state = 2229; + this.state = 2231; this.match(PostgreSqlParser.KW_EXTENDED); } break; case 4: { - this.state = 2230; + this.state = 2232; this.match(PostgreSqlParser.KW_MAIN); } break; case 5: { - this.state = 2231; + this.state = 2233; this.match(PostgreSqlParser.KW_DEFAULT); } break; case 6: { - this.state = 2232; + this.state = 2234; this.colId(); } break; @@ -11518,53 +12704,53 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 2239; + this.state = 2241; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 543) { { - this.state = 2237; + this.state = 2239; this.match(PostgreSqlParser.KW_COMPRESSION); - this.state = 2238; + this.state = 2240; this.colId(); } } - this.state = 2242; + this.state = 2244; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 190, this.context) ) { case 1: { - this.state = 2241; + this.state = 2243; this.collateClause(); } break; } - this.state = 2246; + this.state = 2248; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 191, this.context) ) { case 1: { - this.state = 2244; + this.state = 2246; this.match(PostgreSqlParser.KW_WITH); - this.state = 2245; + this.state = 2247; this.match(PostgreSqlParser.KW_OPTIONS); } break; } - this.state = 2251; + this.state = 2253; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 192, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2248; + this.state = 2250; this.colConstraint(); } } } - this.state = 2253; + this.state = 2255; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 192, this.context); } @@ -11591,48 +12777,48 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2256; + this.state = 2258; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 45) { { - this.state = 2254; + this.state = 2256; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 2255; + this.state = 2257; this.colId(); } } - this.state = 2258; + this.state = 2260; this.colConstraintElem(); - this.state = 2263; + this.state = 2265; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 195, this.context) ) { case 1: { - this.state = 2260; + this.state = 2262; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 2259; + this.state = 2261; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 2262; + this.state = 2264; this.match(PostgreSqlParser.KW_DEFERRABLE); } break; } - this.state = 2267; + this.state = 2269; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 69) { { - this.state = 2265; + this.state = 2267; this.match(PostgreSqlParser.KW_INITIALLY); - this.state = 2266; + this.state = 2268; _la = this.tokenStream.LA(1); if(!(_la === 180 || _la === 221)) { this.errorHandler.recoverInline(this); @@ -11665,47 +12851,47 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 130, PostgreSqlParser.RULE_colConstraintElem); let _la: number; try { - this.state = 2349; + this.state = 2351; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 214, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2270; + this.state = 2272; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 2269; + this.state = 2271; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 2272; + this.state = 2274; this.match(PostgreSqlParser.KW_NULL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2273; - this.match(PostgreSqlParser.KW_UNIQUE); this.state = 2275; + this.match(PostgreSqlParser.KW_UNIQUE); + this.state = 2277; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 198, this.context) ) { case 1: { - this.state = 2274; + this.state = 2276; this.optDefinition(); } break; } - this.state = 2278; + this.state = 2280; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2277; + this.state = 2279; this.optConstableSpace(); } } @@ -11715,59 +12901,59 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2280; + this.state = 2282; this.match(PostgreSqlParser.KW_UNIQUE); - this.state = 2286; + this.state = 2288; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 201, this.context) ) { case 1: { - this.state = 2281; - this.match(PostgreSqlParser.KW_NULLS); this.state = 2283; + this.match(PostgreSqlParser.KW_NULLS); + this.state = 2285; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 2282; + this.state = 2284; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 2285; + this.state = 2287; this.match(PostgreSqlParser.KW_DISTINCT); } break; } { - this.state = 2290; + this.state = 2292; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 202, this.context) ) { case 1: { - this.state = 2288; + this.state = 2290; this.match(PostgreSqlParser.KW_INCLUDE); - this.state = 2289; + this.state = 2291; this.indexParams(); } break; } - this.state = 2293; + this.state = 2295; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 203, this.context) ) { case 1: { - this.state = 2292; + this.state = 2294; this.withClause(); } break; } - this.state = 2296; + this.state = 2298; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2295; + this.state = 2297; this.optConstableSpace(); } } @@ -11778,26 +12964,26 @@ export class PostgreSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2298; + this.state = 2300; this.match(PostgreSqlParser.KW_PRIMARY); - this.state = 2299; - this.match(PostgreSqlParser.KW_KEY); this.state = 2301; + this.match(PostgreSqlParser.KW_KEY); + this.state = 2303; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 205, this.context) ) { case 1: { - this.state = 2300; + this.state = 2302; this.optDefinition(); } break; } - this.state = 2304; + this.state = 2306; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2303; + this.state = 2305; this.optConstableSpace(); } } @@ -11807,22 +12993,22 @@ export class PostgreSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2306; + this.state = 2308; this.match(PostgreSqlParser.KW_CHECK); - this.state = 2307; + this.state = 2309; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2308; + this.state = 2310; this.expression(); - this.state = 2309; + this.state = 2311; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 2312; + this.state = 2314; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 207, this.context) ) { case 1: { - this.state = 2310; + this.state = 2312; this.match(PostgreSqlParser.KW_NO); - this.state = 2311; + this.state = 2313; this.match(PostgreSqlParser.KW_INHERIT); } break; @@ -11832,50 +13018,50 @@ export class PostgreSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2314; + this.state = 2316; this.match(PostgreSqlParser.KW_DEFAULT); - this.state = 2315; + this.state = 2317; this.primaryExpression(0); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2316; + this.state = 2318; this.match(PostgreSqlParser.KW_GENERATED); - this.state = 2317; + this.state = 2319; this.generatedWhen(); - this.state = 2318; + this.state = 2320; this.match(PostgreSqlParser.KW_AS); - this.state = 2335; + this.state = 2337; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_IDENTITY: { - this.state = 2319; + this.state = 2321; this.match(PostgreSqlParser.KW_IDENTITY); - this.state = 2328; + this.state = 2330; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 209, this.context) ) { case 1: { - this.state = 2320; - this.match(PostgreSqlParser.OPEN_PAREN); this.state = 2322; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 2324; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2321; + this.state = 2323; this.seqOptElem(); } } - this.state = 2324; + this.state = 2326; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 36 || _la === 148 || _la === 225 || ((((_la - 260)) & ~0x1F) === 0 && ((1 << (_la - 260)) & 2097669) !== 0) || ((((_la - 314)) & ~0x1F) === 0 && ((1 << (_la - 314)) & 67125249) !== 0)); - this.state = 2326; + this.state = 2328; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -11884,13 +13070,13 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.OPEN_PAREN: { - this.state = 2330; + this.state = 2332; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2331; + this.state = 2333; this.expression(); - this.state = 2332; + this.state = 2334; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 2333; + this.state = 2335; this.match(PostgreSqlParser.KW_STORED); } break; @@ -11902,36 +13088,36 @@ export class PostgreSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2337; + this.state = 2339; this.match(PostgreSqlParser.KW_REFERENCES); - this.state = 2338; - this.qualifiedName(); this.state = 2340; + this.qualifiedName(); + this.state = 2342; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 211, this.context) ) { case 1: { - this.state = 2339; + this.state = 2341; this.optColumnList(); } break; } - this.state = 2343; + this.state = 2345; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 212, this.context) ) { case 1: { - this.state = 2342; + this.state = 2344; this.keyMatch(); } break; } - this.state = 2346; + this.state = 2348; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 2345; + this.state = 2347; this.keyActions(); } } @@ -11941,7 +13127,7 @@ export class PostgreSqlParser extends SQLParserBase { case 9: this.enterOuterAlt(localContext, 9); { - this.state = 2348; + this.state = 2350; this.collateClause(); } break; @@ -11965,22 +13151,22 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new GeneratedWhenContext(this.context, this.state); this.enterRule(localContext, 132, PostgreSqlParser.RULE_generatedWhen); try { - this.state = 2354; + this.state = 2356; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ALWAYS: this.enterOuterAlt(localContext, 1); { - this.state = 2351; + this.state = 2353; this.match(PostgreSqlParser.KW_ALWAYS); } break; case PostgreSqlParser.KW_BY: this.enterOuterAlt(localContext, 2); { - this.state = 2352; + this.state = 2354; this.match(PostgreSqlParser.KW_BY); - this.state = 2353; + this.state = 2355; this.match(PostgreSqlParser.KW_DEFAULT); } break; @@ -12009,7 +13195,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2356; + this.state = 2358; _la = this.tokenStream.LA(1); if(!(_la === 30 || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 524321) !== 0) || _la === 219 || _la === 227 || _la === 342 || _la === 345 || _la === 438)) { this.errorHandler.recoverInline(this); @@ -12040,33 +13226,33 @@ export class PostgreSqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 2454; + this.state = 2456; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CHECK: this.enterOuterAlt(localContext, 1); { - this.state = 2358; + this.state = 2360; this.match(PostgreSqlParser.KW_CHECK); - this.state = 2359; + this.state = 2361; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2360; + this.state = 2362; this.expression(); - this.state = 2361; + this.state = 2363; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 2365; + this.state = 2367; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 216, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2362; + this.state = 2364; this.constraintAttributeElem(); } } } - this.state = 2367; + this.state = 2369; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 216, this.context); } @@ -12076,21 +13262,21 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_UNIQUE: this.enterOuterAlt(localContext, 2); { - this.state = 2371; + this.state = 2373; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_UNIQUE: { - this.state = 2368; + this.state = 2370; this.match(PostgreSqlParser.KW_UNIQUE); } break; case PostgreSqlParser.KW_PRIMARY: { { - this.state = 2369; + this.state = 2371; this.match(PostgreSqlParser.KW_PRIMARY); - this.state = 2370; + this.state = 2372; this.match(PostgreSqlParser.KW_KEY); } } @@ -12098,56 +13284,56 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 2396; + this.state = 2398; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: { - this.state = 2373; - this.optColumnList(); this.state = 2375; + this.optColumnList(); + this.state = 2377; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 218, this.context) ) { case 1: { - this.state = 2374; + this.state = 2376; this.columnListInclude(); } break; } - this.state = 2378; + this.state = 2380; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 219, this.context) ) { case 1: { - this.state = 2377; + this.state = 2379; this.optDefinition(); } break; } - this.state = 2381; + this.state = 2383; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2380; + this.state = 2382; this.optConstableSpace(); } } - this.state = 2386; + this.state = 2388; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 221, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2383; + this.state = 2385; this.constraintAttributeElem(); } } } - this.state = 2388; + this.state = 2390; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 221, this.context); } @@ -12155,21 +13341,21 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_USING: { - this.state = 2389; + this.state = 2391; this.existingIndex(); - this.state = 2393; + this.state = 2395; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 222, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2390; + this.state = 2392; this.constraintAttributeElem(); } } } - this.state = 2395; + this.state = 2397; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 222, this.context); } @@ -12183,99 +13369,99 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_EXCLUDE: this.enterOuterAlt(localContext, 3); { - this.state = 2398; - this.match(PostgreSqlParser.KW_EXCLUDE); this.state = 2400; + this.match(PostgreSqlParser.KW_EXCLUDE); + this.state = 2402; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2399; + this.state = 2401; this.tableAccessMethodClause(); } } - this.state = 2402; + this.state = 2404; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2403; + this.state = 2405; this.exclusionConstraintElem(); - this.state = 2408; + this.state = 2410; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2404; + this.state = 2406; this.match(PostgreSqlParser.COMMA); - this.state = 2405; + this.state = 2407; this.exclusionConstraintElem(); } } - this.state = 2410; + this.state = 2412; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2411; - this.match(PostgreSqlParser.CLOSE_PAREN); this.state = 2413; + this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 2415; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 226, this.context) ) { case 1: { - this.state = 2412; + this.state = 2414; this.columnListInclude(); } break; } - this.state = 2416; + this.state = 2418; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 227, this.context) ) { case 1: { - this.state = 2415; + this.state = 2417; this.optDefinition(); } break; } - this.state = 2419; + this.state = 2421; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2418; + this.state = 2420; this.optConstableSpace(); } } - this.state = 2426; + this.state = 2428; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 2421; + this.state = 2423; this.match(PostgreSqlParser.KW_WHERE); - this.state = 2422; + this.state = 2424; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2423; + this.state = 2425; this.expression(); - this.state = 2424; + this.state = 2426; this.match(PostgreSqlParser.CLOSE_PAREN); } } - this.state = 2431; + this.state = 2433; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 230, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2428; + this.state = 2430; this.constraintAttributeElem(); } } } - this.state = 2433; + this.state = 2435; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 230, this.context); } @@ -12284,59 +13470,59 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_FOREIGN: this.enterOuterAlt(localContext, 4); { - this.state = 2434; + this.state = 2436; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 2435; + this.state = 2437; this.match(PostgreSqlParser.KW_KEY); - this.state = 2436; + this.state = 2438; this.optColumnList(); - this.state = 2437; + this.state = 2439; this.match(PostgreSqlParser.KW_REFERENCES); - this.state = 2438; - this.qualifiedName(); this.state = 2440; + this.qualifiedName(); + this.state = 2442; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 231, this.context) ) { case 1: { - this.state = 2439; + this.state = 2441; this.optColumnList(); } break; } - this.state = 2443; + this.state = 2445; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 232, this.context) ) { case 1: { - this.state = 2442; + this.state = 2444; this.keyMatch(); } break; } - this.state = 2446; + this.state = 2448; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 2445; + this.state = 2447; this.keyActions(); } } - this.state = 2451; + this.state = 2453; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 234, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2448; + this.state = 2450; this.constraintAttributeElem(); } } } - this.state = 2453; + this.state = 2455; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 234, this.context); } @@ -12366,11 +13552,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2456; + this.state = 2458; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2457; + this.state = 2459; this.columnList(); - this.state = 2458; + this.state = 2460; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -12395,27 +13581,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2460; + this.state = 2462; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2461; + this.state = 2463; this.columnNameCreate(); - this.state = 2466; + this.state = 2468; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2462; + this.state = 2464; this.match(PostgreSqlParser.COMMA); - this.state = 2463; + this.state = 2465; this.columnNameCreate(); } } - this.state = 2468; + this.state = 2470; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2469; + this.state = 2471; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -12440,23 +13626,23 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2471; + this.state = 2473; this.columnName(); - this.state = 2476; + this.state = 2478; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 237, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2472; + this.state = 2474; this.match(PostgreSqlParser.COMMA); - this.state = 2473; + this.state = 2475; this.columnName(); } } } - this.state = 2478; + this.state = 2480; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 237, this.context); } @@ -12482,9 +13668,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2479; + this.state = 2481; this.match(PostgreSqlParser.KW_INCLUDE); - this.state = 2480; + this.state = 2482; this.optColumnList(); } } @@ -12509,9 +13695,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2482; + this.state = 2484; this.match(PostgreSqlParser.KW_MATCH); - this.state = 2483; + this.state = 2485; _la = this.tokenStream.LA(1); if(!(_la === 113 || _la === 284 || _la === 336)) { this.errorHandler.recoverInline(this); @@ -12542,28 +13728,28 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2485; + this.state = 2487; this.indexElem(); - this.state = 2486; + this.state = 2488; this.match(PostgreSqlParser.KW_WITH); - this.state = 2493; + this.state = 2495; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 238, this.context) ) { case 1: { - this.state = 2487; + this.state = 2489; this.anyOperator(); } break; case 2: { - this.state = 2488; + this.state = 2490; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 2489; + this.state = 2491; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2490; + this.state = 2492; this.anyOperator(); - this.state = 2491; + this.state = 2493; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -12589,20 +13775,20 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 150, PostgreSqlParser.RULE_keyActions); let _la: number; try { - this.state = 2503; + this.state = 2505; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 241, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2495; - this.keyUpdate(); this.state = 2497; + this.keyUpdate(); + this.state = 2499; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 2496; + this.state = 2498; this.keyDelete(); } } @@ -12612,14 +13798,14 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2499; - this.keyDelete(); this.state = 2501; + this.keyDelete(); + this.state = 2503; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 2500; + this.state = 2502; this.keyUpdate(); } } @@ -12648,11 +13834,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2505; + this.state = 2507; this.match(PostgreSqlParser.KW_ON); - this.state = 2506; + this.state = 2508; this.match(PostgreSqlParser.KW_UPDATE); - this.state = 2507; + this.state = 2509; this.keyAction(); } } @@ -12676,11 +13862,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2509; + this.state = 2511; this.match(PostgreSqlParser.KW_ON); - this.state = 2510; + this.state = 2512; this.match(PostgreSqlParser.KW_DELETE); - this.state = 2511; + this.state = 2513; this.keyAction(); } } @@ -12703,38 +13889,38 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 156, PostgreSqlParser.RULE_keyAction); let _la: number; try { - this.state = 2522; + this.state = 2524; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_NO: this.enterOuterAlt(localContext, 1); { - this.state = 2513; + this.state = 2515; this.match(PostgreSqlParser.KW_NO); - this.state = 2514; + this.state = 2516; this.match(PostgreSqlParser.KW_ACTION); } break; case PostgreSqlParser.KW_RESTRICT: this.enterOuterAlt(localContext, 2); { - this.state = 2515; + this.state = 2517; this.match(PostgreSqlParser.KW_RESTRICT); } break; case PostgreSqlParser.KW_CASCADE: this.enterOuterAlt(localContext, 3); { - this.state = 2516; + this.state = 2518; this.match(PostgreSqlParser.KW_CASCADE); } break; case PostgreSqlParser.KW_SET: this.enterOuterAlt(localContext, 4); { - this.state = 2517; + this.state = 2519; this.match(PostgreSqlParser.KW_SET); - this.state = 2518; + this.state = 2520; _la = this.tokenStream.LA(1); if(!(_la === 53 || _la === 78)) { this.errorHandler.recoverInline(this); @@ -12743,12 +13929,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2520; + this.state = 2522; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 242, this.context) ) { case 1: { - this.state = 2519; + this.state = 2521; this.columnList(); } break; @@ -12779,13 +13965,13 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2524; + this.state = 2526; this.match(PostgreSqlParser.KW_INHERITS); - this.state = 2525; + this.state = 2527; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2526; + this.state = 2528; this.qualifiedNameList(); - this.state = 2527; + this.state = 2529; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -12810,33 +13996,33 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2529; + this.state = 2531; this.match(PostgreSqlParser.KW_PARTITION); - this.state = 2530; + this.state = 2532; this.match(PostgreSqlParser.KW_BY); - this.state = 2531; + this.state = 2533; this.colId(); - this.state = 2532; + this.state = 2534; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2533; + this.state = 2535; this.partElem(); - this.state = 2538; + this.state = 2540; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2534; + this.state = 2536; this.match(PostgreSqlParser.COMMA); - this.state = 2535; + this.state = 2537; this.partElem(); } } - this.state = 2540; + this.state = 2542; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2541; + this.state = 2543; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -12861,50 +14047,50 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2549; + this.state = 2551; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 245, this.context) ) { case 1: { - this.state = 2543; + this.state = 2545; this.columnName(); } break; case 2: { - this.state = 2544; + this.state = 2546; this.funcExprWindowless(); } break; case 3: { { - this.state = 2545; + this.state = 2547; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2546; + this.state = 2548; this.expression(); - this.state = 2547; + this.state = 2549; this.match(PostgreSqlParser.CLOSE_PAREN); } } break; } - this.state = 2552; + this.state = 2554; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 43) { { - this.state = 2551; + this.state = 2553; this.collateClause(); } } - this.state = 2555; + this.state = 2557; 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)) & 3221570659) !== 0) || _la === 586) { { - this.state = 2554; + this.state = 2556; this.anyName(); } } @@ -12931,9 +14117,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2557; + this.state = 2559; this.match(PostgreSqlParser.KW_USING); - this.state = 2558; + this.state = 2560; this.colId(); } } @@ -12956,22 +14142,22 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 166, PostgreSqlParser.RULE_optWith); let _la: number; try { - this.state = 2564; + this.state = 2566; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2560; + this.state = 2562; this.match(PostgreSqlParser.KW_WITH); - this.state = 2561; + this.state = 2563; this.relOptions(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2562; + this.state = 2564; _la = this.tokenStream.LA(1); if(!(_la === 105 || _la === 379)) { this.errorHandler.recoverInline(this); @@ -12980,7 +14166,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2563; + this.state = 2565; this.match(PostgreSqlParser.KW_OIDS); } break; @@ -13006,32 +14192,32 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2566; + this.state = 2568; this.match(PostgreSqlParser.KW_ON); - this.state = 2567; + this.state = 2569; this.match(PostgreSqlParser.KW_COMMIT); - this.state = 2573; + this.state = 2575; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DROP: { - this.state = 2568; + this.state = 2570; this.match(PostgreSqlParser.KW_DROP); } break; case PostgreSqlParser.KW_DELETE: { - this.state = 2569; + this.state = 2571; this.match(PostgreSqlParser.KW_DELETE); - this.state = 2570; + this.state = 2572; this.match(PostgreSqlParser.KW_ROWS); } break; case PostgreSqlParser.KW_PRESERVE: { - this.state = 2571; + this.state = 2573; this.match(PostgreSqlParser.KW_PRESERVE); - this.state = 2572; + this.state = 2574; this.match(PostgreSqlParser.KW_ROWS); } break; @@ -13060,9 +14246,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2575; + this.state = 2577; this.match(PostgreSqlParser.KW_TABLESPACE); - this.state = 2576; + this.state = 2578; this.tableSpaceName(); } } @@ -13086,11 +14272,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2578; + this.state = 2580; this.match(PostgreSqlParser.KW_USING); - this.state = 2579; + this.state = 2581; this.match(PostgreSqlParser.KW_INDEX); - this.state = 2580; + this.state = 2582; this.optTableSpace(); } } @@ -13114,11 +14300,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2582; + this.state = 2584; this.match(PostgreSqlParser.KW_USING); - this.state = 2583; + this.state = 2585; this.match(PostgreSqlParser.KW_INDEX); - this.state = 2584; + this.state = 2586; this.colId(); } } @@ -13143,62 +14329,62 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2586; + this.state = 2588; this.match(PostgreSqlParser.KW_CREATE); - this.state = 2587; + this.state = 2589; this.match(PostgreSqlParser.KW_STATISTICS); - this.state = 2592; + this.state = 2594; 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)) & 3221570659) !== 0) || _la === 586) { { - this.state = 2589; + this.state = 2591; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 250, this.context) ) { case 1: { - this.state = 2588; + this.state = 2590; this.ifNotExists(); } break; } - this.state = 2591; + this.state = 2593; this.anyName(); } } - this.state = 2595; + this.state = 2597; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 2594; + this.state = 2596; this.optColumnList(); } } - this.state = 2597; + this.state = 2599; this.match(PostgreSqlParser.KW_ON); - this.state = 2607; + this.state = 2609; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 254, this.context) ) { case 1: { - this.state = 2598; + this.state = 2600; this.columnExpr(); - this.state = 2603; + this.state = 2605; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2599; + this.state = 2601; this.match(PostgreSqlParser.COMMA); - this.state = 2600; + this.state = 2602; this.columnExpr(); } } - this.state = 2605; + this.state = 2607; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -13206,12 +14392,12 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 2606; + this.state = 2608; this.exprList(); } break; } - this.state = 2609; + this.state = 2611; this.fromClause(); } } @@ -13235,27 +14421,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2611; + this.state = 2613; this.match(PostgreSqlParser.KW_ALTER); - this.state = 2612; - this.match(PostgreSqlParser.KW_STATISTICS); this.state = 2614; + this.match(PostgreSqlParser.KW_STATISTICS); + this.state = 2616; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 255, this.context) ) { case 1: { - this.state = 2613; + this.state = 2615; this.ifExists(); } break; } - this.state = 2616; + this.state = 2618; this.anyName(); - this.state = 2617; + this.state = 2619; this.match(PostgreSqlParser.KW_SET); - this.state = 2618; + this.state = 2620; this.match(PostgreSqlParser.KW_STATISTICS); - this.state = 2619; + this.state = 2621; this.signedConst(); } } @@ -13281,42 +14467,42 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new QueryCreateTableContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2621; - this.match(PostgreSqlParser.KW_CREATE); this.state = 2623; + this.match(PostgreSqlParser.KW_CREATE); + this.state = 2625; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 213 || _la === 254 || ((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 32773) !== 0)) { { - this.state = 2622; + this.state = 2624; this.optTemp(); } } - this.state = 2625; - this.match(PostgreSqlParser.KW_TABLE); this.state = 2627; + this.match(PostgreSqlParser.KW_TABLE); + this.state = 2629; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 257, this.context) ) { case 1: { - this.state = 2626; + this.state = 2628; this.ifNotExists(); } break; } - this.state = 2629; + this.state = 2631; this.createAsTarget(); - this.state = 2630; + this.state = 2632; this.match(PostgreSqlParser.KW_AS); - this.state = 2631; - this.selectStmt(); this.state = 2633; + this.selectStmt(); + this.state = 2635; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 258, this.context) ) { case 1: { - this.state = 2632; + this.state = 2634; this.optWithData(); } break; @@ -13344,54 +14530,54 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2635; - this.tableNameCreate(); this.state = 2637; + this.tableNameCreate(); + this.state = 2639; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 2636; + this.state = 2638; this.columnListCreate(); } } - this.state = 2640; + this.state = 2642; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2639; + this.state = 2641; this.tableAccessMethodClause(); } } - this.state = 2643; + this.state = 2645; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105 || _la === 379) { { - this.state = 2642; + this.state = 2644; this.optWith(); } } - this.state = 2646; + this.state = 2648; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 2645; + this.state = 2647; this.onCommitOption(); } } - this.state = 2649; + this.state = 2651; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 351) { { - this.state = 2648; + this.state = 2650; this.optTableSpace(); } } @@ -13418,22 +14604,22 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2651; + this.state = 2653; this.match(PostgreSqlParser.KW_WITH); - this.state = 2655; + this.state = 2657; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DATA: { - this.state = 2652; + this.state = 2654; this.match(PostgreSqlParser.KW_DATA); } break; case PostgreSqlParser.KW_NO: { - this.state = 2653; + this.state = 2655; this.match(PostgreSqlParser.KW_NO); - this.state = 2654; + this.state = 2656; this.match(PostgreSqlParser.KW_DATA); } break; @@ -13464,84 +14650,84 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new CreateMaterializedViewContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2657; - this.match(PostgreSqlParser.KW_CREATE); this.state = 2659; + this.match(PostgreSqlParser.KW_CREATE); + this.state = 2661; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 367) { { - this.state = 2658; + this.state = 2660; this.match(PostgreSqlParser.KW_UNLOGGED); } } - this.state = 2661; + this.state = 2663; this.match(PostgreSqlParser.KW_MATERIALIZED); - this.state = 2662; - this.match(PostgreSqlParser.KW_VIEW); this.state = 2664; + this.match(PostgreSqlParser.KW_VIEW); + this.state = 2666; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 266, this.context) ) { case 1: { - this.state = 2663; + this.state = 2665; this.ifNotExists(); } break; } - this.state = 2666; - this.viewNameCreate(); this.state = 2668; + this.viewNameCreate(); + this.state = 2670; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 2667; + this.state = 2669; this.columnListCreate(); } } - this.state = 2671; + this.state = 2673; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 2670; + this.state = 2672; this.tableAccessMethodClause(); } } - this.state = 2674; + this.state = 2676; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 2673; + this.state = 2675; this.optRelOptions(); } } - this.state = 2677; + this.state = 2679; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 351) { { - this.state = 2676; + this.state = 2678; this.optTableSpace(); } } - this.state = 2679; + this.state = 2681; this.match(PostgreSqlParser.KW_AS); - this.state = 2680; - this.selectStmt(); this.state = 2682; + this.selectStmt(); + this.state = 2684; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 271, this.context) ) { case 1: { - this.state = 2681; + this.state = 2683; this.optWithData(); } break; @@ -13569,30 +14755,30 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2684; + this.state = 2686; this.match(PostgreSqlParser.KW_REFRESH); - this.state = 2685; + this.state = 2687; this.match(PostgreSqlParser.KW_MATERIALIZED); - this.state = 2686; - this.match(PostgreSqlParser.KW_VIEW); this.state = 2688; + this.match(PostgreSqlParser.KW_VIEW); + this.state = 2690; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 2687; + this.state = 2689; this.match(PostgreSqlParser.KW_CONCURRENTLY); } } - this.state = 2690; - this.viewName(); this.state = 2692; + this.viewName(); + this.state = 2694; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 273, this.context) ) { case 1: { - this.state = 2691; + this.state = 2693; this.optWithData(); } break; @@ -13621,38 +14807,38 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2694; - this.match(PostgreSqlParser.KW_CREATE); this.state = 2696; + this.match(PostgreSqlParser.KW_CREATE); + this.state = 2698; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 213 || _la === 254 || ((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 32773) !== 0)) { { - this.state = 2695; + this.state = 2697; this.optTemp(); } } - this.state = 2698; - this.match(PostgreSqlParser.KW_SEQUENCE); this.state = 2700; + this.match(PostgreSqlParser.KW_SEQUENCE); + this.state = 2702; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 275, this.context) ) { case 1: { - this.state = 2699; + this.state = 2701; this.ifNotExists(); } break; } - this.state = 2702; + this.state = 2704; this.qualifiedName(); - this.state = 2708; + this.state = 2710; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 277, this.context) ) { case 1: { - this.state = 2704; + this.state = 2706; this.errorHandler.sync(this); alternative = 1; do { @@ -13660,7 +14846,7 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 2703; + this.state = 2705; this.seqOptElem(); } } @@ -13668,7 +14854,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 2706; + this.state = 2708; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 276, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -13698,23 +14884,23 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2710; + this.state = 2712; this.match(PostgreSqlParser.KW_ALTER); - this.state = 2711; - this.match(PostgreSqlParser.KW_SEQUENCE); this.state = 2713; + this.match(PostgreSqlParser.KW_SEQUENCE); + this.state = 2715; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 278, this.context) ) { case 1: { - this.state = 2712; + this.state = 2714; this.ifExists(); } break; } - this.state = 2715; - this.qualifiedName(); this.state = 2717; + this.qualifiedName(); + this.state = 2719; this.errorHandler.sync(this); alternative = 1; do { @@ -13722,7 +14908,7 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 2716; + this.state = 2718; this.seqOptElem(); } } @@ -13730,7 +14916,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 2719; + this.state = 2721; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 279, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -13755,29 +14941,29 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 194, PostgreSqlParser.RULE_seqOptElem); let _la: number; try { - this.state = 2754; + this.state = 2756; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_AS: this.enterOuterAlt(localContext, 1); { - this.state = 2721; + this.state = 2723; this.match(PostgreSqlParser.KW_AS); - this.state = 2722; + this.state = 2724; this.simpleTypeName(); } break; case PostgreSqlParser.KW_CACHE: this.enterOuterAlt(localContext, 2); { - this.state = 2723; - this.match(PostgreSqlParser.KW_CACHE); this.state = 2725; + this.match(PostgreSqlParser.KW_CACHE); + this.state = 2727; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12 || _la === 13 || _la === 574 || _la === 576) { { - this.state = 2724; + this.state = 2726; this.numericOnly(); } } @@ -13787,19 +14973,19 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_INCREMENT: this.enterOuterAlt(localContext, 3); { - this.state = 2727; - this.match(PostgreSqlParser.KW_INCREMENT); this.state = 2729; + this.match(PostgreSqlParser.KW_INCREMENT); + this.state = 2731; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 147) { { - this.state = 2728; + this.state = 2730; this.match(PostgreSqlParser.KW_BY); } } - this.state = 2731; + this.state = 2733; this.numericOnly(); } break; @@ -13807,7 +14993,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_MINVALUE: this.enterOuterAlt(localContext, 4); { - this.state = 2732; + this.state = 2734; _la = this.tokenStream.LA(1); if(!(_la === 260 || _la === 262)) { this.errorHandler.recoverInline(this); @@ -13816,16 +15002,16 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2733; + this.state = 2735; this.numericOnly(); } break; case PostgreSqlParser.KW_NO: this.enterOuterAlt(localContext, 5); { - this.state = 2734; + this.state = 2736; this.match(PostgreSqlParser.KW_NO); - this.state = 2735; + this.state = 2737; _la = this.tokenStream.LA(1); if(!(_la === 173 || _la === 260 || _la === 262)) { this.errorHandler.recoverInline(this); @@ -13839,65 +15025,65 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_OWNED: this.enterOuterAlt(localContext, 6); { - this.state = 2736; + this.state = 2738; this.match(PostgreSqlParser.KW_OWNED); - this.state = 2737; + this.state = 2739; this.match(PostgreSqlParser.KW_BY); - this.state = 2738; + this.state = 2740; this.columnName(); } break; case PostgreSqlParser.KW_SEQUENCE: this.enterOuterAlt(localContext, 7); { - this.state = 2739; + this.state = 2741; this.match(PostgreSqlParser.KW_SEQUENCE); - this.state = 2740; + this.state = 2742; this.match(PostgreSqlParser.KW_NAME); - this.state = 2741; + this.state = 2743; this.anyName(); } break; case PostgreSqlParser.KW_START: this.enterOuterAlt(localContext, 8); { - this.state = 2742; - this.match(PostgreSqlParser.KW_START); this.state = 2744; + this.match(PostgreSqlParser.KW_START); + this.state = 2746; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 2743; + this.state = 2745; this.match(PostgreSqlParser.KW_WITH); } } - this.state = 2746; + this.state = 2748; this.numericOnly(); } break; case PostgreSqlParser.KW_RESTART: this.enterOuterAlt(localContext, 9); { - this.state = 2747; - this.match(PostgreSqlParser.KW_RESTART); this.state = 2749; + this.match(PostgreSqlParser.KW_RESTART); + this.state = 2751; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 283, this.context) ) { case 1: { - this.state = 2748; + this.state = 2750; this.match(PostgreSqlParser.KW_WITH); } break; } - this.state = 2752; + this.state = 2754; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12 || _la === 13 || _la === 574 || _la === 576) { { - this.state = 2751; + this.state = 2753; this.numericOnly(); } } @@ -13927,18 +15113,18 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 196, PostgreSqlParser.RULE_numericOnly); let _la: number; try { - this.state = 2761; + this.state = 2763; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 287, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2757; + this.state = 2759; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12 || _la === 13) { { - this.state = 2756; + this.state = 2758; _la = this.tokenStream.LA(1); if(!(_la === 12 || _la === 13)) { this.errorHandler.recoverInline(this); @@ -13950,14 +15136,14 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 2759; + this.state = 2761; this.match(PostgreSqlParser.Numeric); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2760; + this.state = 2762; this.signedConst(); } break; @@ -13984,79 +15170,79 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2763; - this.match(PostgreSqlParser.KW_CREATE); this.state = 2765; + this.match(PostgreSqlParser.KW_CREATE); + this.state = 2767; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 2764; + this.state = 2766; this.orReplaceOpt(); } } - this.state = 2768; + this.state = 2770; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 359) { { - this.state = 2767; + this.state = 2769; this.match(PostgreSqlParser.KW_TRUSTED); } } - this.state = 2771; + this.state = 2773; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 295) { { - this.state = 2770; + this.state = 2772; this.match(PostgreSqlParser.KW_PROCEDURAL); } } - this.state = 2773; + this.state = 2775; this.match(PostgreSqlParser.KW_LANGUAGE); - this.state = 2774; + this.state = 2776; this.colId(); - this.state = 2787; + this.state = 2789; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 293, this.context) ) { case 1: { - this.state = 2775; + this.state = 2777; this.match(PostgreSqlParser.KW_HANDLER); - this.state = 2776; + this.state = 2778; this.anyName(); - this.state = 2779; + this.state = 2781; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 291, this.context) ) { case 1: { - this.state = 2777; + this.state = 2779; this.match(PostgreSqlParser.KW_INLINE); - this.state = 2778; + this.state = 2780; this.anyName(); } break; } - this.state = 2785; + this.state = 2787; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 292, this.context) ) { case 1: { - this.state = 2781; + this.state = 2783; this.match(PostgreSqlParser.KW_VALIDATOR); - this.state = 2782; + this.state = 2784; this.anyName(); } break; case 2: { - this.state = 2783; + this.state = 2785; this.match(PostgreSqlParser.KW_NO); - this.state = 2784; + this.state = 2786; this.match(PostgreSqlParser.KW_VALIDATOR); } break; @@ -14087,32 +15273,32 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2789; + this.state = 2791; this.match(PostgreSqlParser.KW_CREATE); - this.state = 2790; + this.state = 2792; this.optTableSpace(); - this.state = 2793; + this.state = 2795; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 282) { { - this.state = 2791; + this.state = 2793; this.match(PostgreSqlParser.KW_OWNER); - this.state = 2792; + this.state = 2794; this.roleSpec(); } } - this.state = 2795; + this.state = 2797; this.match(PostgreSqlParser.KW_LOCATION); - this.state = 2796; - this.stringConst(); this.state = 2798; + this.stringConst(); + this.state = 2800; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 295, this.context) ) { case 1: { - this.state = 2797; + this.state = 2799; this.optRelOptions(); } break; @@ -14141,53 +15327,53 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2800; + this.state = 2802; this.match(PostgreSqlParser.KW_CREATE); - this.state = 2801; - this.match(PostgreSqlParser.KW_EXTENSION); this.state = 2803; + this.match(PostgreSqlParser.KW_EXTENSION); + this.state = 2805; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 296, this.context) ) { case 1: { - this.state = 2802; + this.state = 2804; this.ifNotExists(); } break; } - this.state = 2805; - this.colId(); this.state = 2807; + this.colId(); + this.state = 2809; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 297, this.context) ) { case 1: { - this.state = 2806; + this.state = 2808; this.match(PostgreSqlParser.KW_WITH); } break; } - this.state = 2816; + this.state = 2818; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 299, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { - this.state = 2814; + this.state = 2816; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_SCHEMA: { - this.state = 2809; + this.state = 2811; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 2810; + this.state = 2812; this.schemaName(); } break; case PostgreSqlParser.KW_FROM: case PostgreSqlParser.KW_VERSION: { - this.state = 2811; + this.state = 2813; _la = this.tokenStream.LA(1); if(!(_la === 64 || _la === 375)) { this.errorHandler.recoverInline(this); @@ -14196,13 +15382,13 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2812; + this.state = 2814; this.nonReservedWordOrStringConst(); } break; case PostgreSqlParser.KW_CASCADE: { - this.state = 2813; + this.state = 2815; this.match(PostgreSqlParser.KW_CASCADE); } break; @@ -14211,7 +15397,7 @@ export class PostgreSqlParser extends SQLParserBase { } } } - this.state = 2818; + this.state = 2820; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 299, this.context); } @@ -14238,27 +15424,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2819; + this.state = 2821; this.match(PostgreSqlParser.KW_ALTER); - this.state = 2820; + this.state = 2822; this.match(PostgreSqlParser.KW_EXTENSION); - this.state = 2821; + this.state = 2823; this.colId(); - this.state = 2822; + this.state = 2824; this.match(PostgreSqlParser.KW_UPDATE); - this.state = 2827; + this.state = 2829; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 94) { { { - this.state = 2823; + this.state = 2825; this.match(PostgreSqlParser.KW_TO); - this.state = 2824; + this.state = 2826; this.nonReservedWordOrStringConst(); } } - this.state = 2829; + this.state = 2831; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -14285,13 +15471,13 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2830; + this.state = 2832; this.match(PostgreSqlParser.KW_ALTER); - this.state = 2831; + this.state = 2833; this.match(PostgreSqlParser.KW_EXTENSION); - this.state = 2832; + this.state = 2834; this.colId(); - this.state = 2833; + this.state = 2835; _la = this.tokenStream.LA(1); if(!(_la === 133 || _la === 191)) { this.errorHandler.recoverInline(this); @@ -14300,44 +15486,44 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2866; + this.state = 2868; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 301, this.context) ) { case 1: { - this.state = 2834; + this.state = 2836; this.match(PostgreSqlParser.KW_TRANSFORM); - this.state = 2835; + this.state = 2837; this.match(PostgreSqlParser.KW_FOR); - this.state = 2836; + this.state = 2838; this.typename(); - this.state = 2837; + this.state = 2839; this.match(PostgreSqlParser.KW_LANGUAGE); - this.state = 2838; + this.state = 2840; this.colId(); } break; case 2: { - this.state = 2840; + this.state = 2842; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 2841; + this.state = 2843; this.routineWithArgTypes(); } break; case 3: { - this.state = 2842; + this.state = 2844; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 2843; + this.state = 2845; this.procedureWithArgTypes(); } break; case 4: { - this.state = 2844; + this.state = 2846; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 2845; + this.state = 2847; _la = this.tokenStream.LA(1); if(!(_la === 156 || _la === 206)) { this.errorHandler.recoverInline(this); @@ -14346,31 +15532,31 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2846; + this.state = 2848; this.anyName(); - this.state = 2847; + this.state = 2849; this.tableAccessMethodClause(); } break; case 5: { - this.state = 2849; + this.state = 2851; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 2850; + this.state = 2852; this.operatorWithArgTypes(); } break; case 6: { - this.state = 2851; + this.state = 2853; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 2852; + this.state = 2854; this.functionWithArgTypes(); } break; case 7: { - this.state = 2853; + this.state = 2855; _la = this.tokenStream.LA(1); if(!(_la === 189 || _la === 360)) { this.errorHandler.recoverInline(this); @@ -14379,43 +15565,43 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2854; + this.state = 2856; this.typename(); } break; case 8: { - this.state = 2855; - this.match(PostgreSqlParser.KW_CAST); - this.state = 2856; - this.match(PostgreSqlParser.OPEN_PAREN); this.state = 2857; - this.typename(); + this.match(PostgreSqlParser.KW_CAST); this.state = 2858; - this.match(PostgreSqlParser.KW_AS); + this.match(PostgreSqlParser.OPEN_PAREN); this.state = 2859; this.typename(); this.state = 2860; + this.match(PostgreSqlParser.KW_AS); + this.state = 2861; + this.typename(); + this.state = 2862; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case 9: { - this.state = 2862; + this.state = 2864; this.match(PostgreSqlParser.KW_AGGREGATE); - this.state = 2863; + this.state = 2865; this.aggregateWithArgTypes(); } break; case 10: { - this.state = 2864; + this.state = 2866; this.objectTypeName(); } break; case 11: { - this.state = 2865; + this.state = 2867; this.objectTypeAnyName(); } break; @@ -14443,22 +15629,22 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2868; + this.state = 2870; this.match(PostgreSqlParser.KW_CREATE); - this.state = 2869; + this.state = 2871; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 2870; + this.state = 2872; this.match(PostgreSqlParser.KW_DATA); - this.state = 2871; + this.state = 2873; this.match(PostgreSqlParser.KW_WRAPPER); - this.state = 2872; + this.state = 2874; this.colId(); - this.state = 2878; + this.state = 2880; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 303, this.context) ) { case 1: { - this.state = 2874; + this.state = 2876; this.errorHandler.sync(this); alternative = 1; do { @@ -14466,7 +15652,7 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 2873; + this.state = 2875; this.fdwOption(); } } @@ -14474,19 +15660,19 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 2876; + this.state = 2878; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 302, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; } - this.state = 2881; + this.state = 2883; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 304, this.context) ) { case 1: { - this.state = 2880; + this.state = 2882; this.createGenericOptions(); } break; @@ -14512,14 +15698,14 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 210, PostgreSqlParser.RULE_fdwOption); let _la: number; try { - this.state = 2889; + this.state = 2891; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_HANDLER: case PostgreSqlParser.KW_VALIDATOR: this.enterOuterAlt(localContext, 1); { - this.state = 2883; + this.state = 2885; _la = this.tokenStream.LA(1); if(!(_la === 215 || _la === 373)) { this.errorHandler.recoverInline(this); @@ -14528,12 +15714,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2885; + this.state = 2887; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 305, this.context) ) { case 1: { - this.state = 2884; + this.state = 2886; this.anyName(); } break; @@ -14543,9 +15729,9 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_NO: this.enterOuterAlt(localContext, 2); { - this.state = 2887; + this.state = 2889; this.match(PostgreSqlParser.KW_NO); - this.state = 2888; + this.state = 2890; _la = this.tokenStream.LA(1); if(!(_la === 215 || _la === 373)) { this.errorHandler.recoverInline(this); @@ -14582,50 +15768,50 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2891; + this.state = 2893; this.match(PostgreSqlParser.KW_ALTER); - this.state = 2892; + this.state = 2894; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 2893; + this.state = 2895; this.match(PostgreSqlParser.KW_DATA); - this.state = 2894; + this.state = 2896; this.match(PostgreSqlParser.KW_WRAPPER); - this.state = 2895; + this.state = 2897; this.colId(); - this.state = 2909; + this.state = 2911; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 310, this.context) ) { case 1: { - this.state = 2901; + this.state = 2903; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 215 || _la === 269 || _la === 373) { { - this.state = 2897; + this.state = 2899; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2896; + this.state = 2898; this.fdwOption(); } } - this.state = 2899; + this.state = 2901; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 215 || _la === 269 || _la === 373); } } - this.state = 2903; + this.state = 2905; this.alterGenericOptions(); } break; case 2: { - this.state = 2905; + this.state = 2907; this.errorHandler.sync(this); alternative = 1; do { @@ -14633,7 +15819,7 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 2904; + this.state = 2906; this.fdwOption(); } } @@ -14641,7 +15827,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 2907; + this.state = 2909; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 309, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -14671,29 +15857,29 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2911; + this.state = 2913; this.match(PostgreSqlParser.KW_OPTIONS); - this.state = 2912; + this.state = 2914; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2913; + this.state = 2915; this.genericOptionElem(); - this.state = 2918; + this.state = 2920; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2914; + this.state = 2916; this.match(PostgreSqlParser.COMMA); - this.state = 2915; + this.state = 2917; this.genericOptionElem(); } } - this.state = 2920; + this.state = 2922; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2921; + this.state = 2923; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -14718,29 +15904,29 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2923; + this.state = 2925; this.match(PostgreSqlParser.KW_OPTIONS); - this.state = 2924; + this.state = 2926; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 2925; + this.state = 2927; this.alterGenericOptionElem(); - this.state = 2930; + this.state = 2932; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 2926; + this.state = 2928; this.match(PostgreSqlParser.COMMA); - this.state = 2927; + this.state = 2929; this.alterGenericOptionElem(); } } - this.state = 2932; + this.state = 2934; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2933; + this.state = 2935; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -14765,7 +15951,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2935; + this.state = 2937; _la = this.tokenStream.LA(1); if(!(_la === 133 || _la === 191 || _la === 333)) { this.errorHandler.recoverInline(this); @@ -14774,7 +15960,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2936; + this.state = 2938; this.genericOptionElem(); } } @@ -14798,9 +15984,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2938; + this.state = 2940; this.colLabel(); - this.state = 2939; + this.state = 2941; this.stringConst(); } } @@ -14825,58 +16011,58 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2941; + this.state = 2943; this.match(PostgreSqlParser.KW_CREATE); - this.state = 2942; - this.match(PostgreSqlParser.KW_SERVER); this.state = 2944; + this.match(PostgreSqlParser.KW_SERVER); + this.state = 2946; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 313, this.context) ) { case 1: { - this.state = 2943; + this.state = 2945; this.ifNotExists(); } break; } - this.state = 2946; + this.state = 2948; this.colId(); - this.state = 2949; + this.state = 2951; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 360) { { - this.state = 2947; + this.state = 2949; this.match(PostgreSqlParser.KW_TYPE); - this.state = 2948; + this.state = 2950; this.stringConst(); } } - this.state = 2952; + this.state = 2954; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 375) { { - this.state = 2951; + this.state = 2953; this.foreignServerVersion(); } } - this.state = 2954; + this.state = 2956; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 2955; + this.state = 2957; this.match(PostgreSqlParser.KW_DATA); - this.state = 2956; + this.state = 2958; this.match(PostgreSqlParser.KW_WRAPPER); - this.state = 2957; - this.colId(); this.state = 2959; + this.colId(); + this.state = 2961; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 316, this.context) ) { case 1: { - this.state = 2958; + this.state = 2960; this.createGenericOptions(); } break; @@ -14903,9 +16089,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2961; + this.state = 2963; this.match(PostgreSqlParser.KW_VERSION); - this.state = 2964; + this.state = 2966; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: @@ -14913,13 +16099,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 2962; + this.state = 2964; this.stringConst(); } break; case PostgreSqlParser.KW_NULL: { - this.state = 2963; + this.state = 2965; this.match(PostgreSqlParser.KW_NULL); } break; @@ -14948,31 +16134,31 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2966; + this.state = 2968; this.match(PostgreSqlParser.KW_ALTER); - this.state = 2967; + this.state = 2969; this.match(PostgreSqlParser.KW_SERVER); - this.state = 2968; + this.state = 2970; this.colId(); - this.state = 2974; + this.state = 2976; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_OPTIONS: { - this.state = 2969; + this.state = 2971; this.alterGenericOptions(); } break; case PostgreSqlParser.KW_VERSION: { - this.state = 2970; - this.foreignServerVersion(); this.state = 2972; + this.foreignServerVersion(); + this.state = 2974; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 318, this.context) ) { case 1: { - this.state = 2971; + this.state = 2973; this.alterGenericOptions(); } break; @@ -15003,65 +16189,65 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 228, PostgreSqlParser.RULE_createForeignTableStmt); let _la: number; try { - this.state = 3015; + this.state = 3017; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 327, this.context) ) { case 1: localContext = new CreateForeignTableContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2976; + this.state = 2978; this.match(PostgreSqlParser.KW_CREATE); - this.state = 2977; + this.state = 2979; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 2978; - this.match(PostgreSqlParser.KW_TABLE); this.state = 2980; + this.match(PostgreSqlParser.KW_TABLE); + this.state = 2982; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 320, this.context) ) { case 1: { - this.state = 2979; + this.state = 2981; this.ifNotExists(); } break; } - this.state = 2982; + this.state = 2984; this.tableNameCreate(); - this.state = 2983; - this.match(PostgreSqlParser.OPEN_PAREN); this.state = 2985; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 2987; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 42)) & ~0x1F) === 0 && ((1 << (_la - 42)) & 2099209) !== 0) || ((((_la - 85)) & ~0x1F) === 0 && ((1 << (_la - 85)) & 2147491841) !== 0) || ((((_la - 120)) & ~0x1F) === 0 && ((1 << (_la - 120)) & 4294966809) !== 0) || ((((_la - 152)) & ~0x1F) === 0 && ((1 << (_la - 152)) & 4294967295) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 4294967295) !== 0) || ((((_la - 216)) & ~0x1F) === 0 && ((1 << (_la - 216)) & 4290781183) !== 0) || ((((_la - 248)) & ~0x1F) === 0 && ((1 << (_la - 248)) & 4294967295) !== 0) || ((((_la - 280)) & ~0x1F) === 0 && ((1 << (_la - 280)) & 4294967295) !== 0) || ((((_la - 312)) & ~0x1F) === 0 && ((1 << (_la - 312)) & 4294967295) !== 0) || ((((_la - 344)) & ~0x1F) === 0 && ((1 << (_la - 344)) & 4294967295) !== 0) || ((((_la - 376)) & ~0x1F) === 0 && ((1 << (_la - 376)) & 4294967295) !== 0) || ((((_la - 408)) & ~0x1F) === 0 && ((1 << (_la - 408)) & 4294967295) !== 0) || ((((_la - 440)) & ~0x1F) === 0 && ((1 << (_la - 440)) & 4294950911) !== 0) || ((((_la - 473)) & ~0x1F) === 0 && ((1 << (_la - 473)) & 3221225471) !== 0) || ((((_la - 506)) & ~0x1F) === 0 && ((1 << (_la - 506)) & 286719) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 2984; + this.state = 2986; this.tableElementList(); } } - this.state = 2987; - this.match(PostgreSqlParser.CLOSE_PAREN); this.state = 2989; + this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 2991; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 238) { { - this.state = 2988; + this.state = 2990; this.optInherit(); } } - this.state = 2991; + this.state = 2993; this.match(PostgreSqlParser.KW_SERVER); - this.state = 2992; - this.colId(); this.state = 2994; + this.colId(); + this.state = 2996; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 323, this.context) ) { case 1: { - this.state = 2993; + this.state = 2995; this.createGenericOptions(); } break; @@ -15072,52 +16258,52 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new CreatePartitionForeignTableContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2996; + this.state = 2998; this.match(PostgreSqlParser.KW_CREATE); - this.state = 2997; + this.state = 2999; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 2998; - this.match(PostgreSqlParser.KW_TABLE); this.state = 3000; + this.match(PostgreSqlParser.KW_TABLE); + this.state = 3002; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 324, this.context) ) { case 1: { - this.state = 2999; + this.state = 3001; this.ifNotExists(); } break; } - this.state = 3002; + this.state = 3004; this.tableNameCreate(); - this.state = 3003; + this.state = 3005; this.match(PostgreSqlParser.KW_PARTITION); - this.state = 3004; + this.state = 3006; this.match(PostgreSqlParser.KW_OF); - this.state = 3005; - this.tableName(); this.state = 3007; + this.tableName(); + this.state = 3009; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 3006; + this.state = 3008; this.optTypedTableElEmentList(); } } - this.state = 3009; + this.state = 3011; this.partitionBoundSpec(); - this.state = 3010; + this.state = 3012; this.match(PostgreSqlParser.KW_SERVER); - this.state = 3011; - this.colId(); this.state = 3013; + this.colId(); + this.state = 3015; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 326, this.context) ) { case 1: { - this.state = 3012; + this.state = 3014; this.createGenericOptions(); } break; @@ -15147,64 +16333,64 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3017; + this.state = 3019; this.match(PostgreSqlParser.KW_IMPORT); - this.state = 3018; + this.state = 3020; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 3019; + this.state = 3021; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 3020; + this.state = 3022; this.schemaName(); - this.state = 3030; + this.state = 3032; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59 || _la === 74) { { - this.state = 3024; + this.state = 3026; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_LIMIT: { - this.state = 3021; + this.state = 3023; this.match(PostgreSqlParser.KW_LIMIT); - this.state = 3022; + this.state = 3024; this.match(PostgreSqlParser.KW_TO); } break; case PostgreSqlParser.KW_EXCEPT: { - this.state = 3023; + this.state = 3025; this.match(PostgreSqlParser.KW_EXCEPT); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3026; + this.state = 3028; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3027; + this.state = 3029; this.relationExprList(); - this.state = 3028; + this.state = 3030; this.match(PostgreSqlParser.CLOSE_PAREN); } } - this.state = 3032; - this.match(PostgreSqlParser.KW_FROM); - this.state = 3033; - this.match(PostgreSqlParser.KW_SERVER); this.state = 3034; - this.colId(); + this.match(PostgreSqlParser.KW_FROM); this.state = 3035; - this.match(PostgreSqlParser.KW_INTO); + this.match(PostgreSqlParser.KW_SERVER); this.state = 3036; this.colId(); + this.state = 3037; + this.match(PostgreSqlParser.KW_INTO); this.state = 3038; + this.colId(); + this.state = 3040; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 330, this.context) ) { case 1: { - this.state = 3037; + this.state = 3039; this.createGenericOptions(); } break; @@ -15232,25 +16418,25 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3040; + this.state = 3042; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3041; + this.state = 3043; this.match(PostgreSqlParser.KW_USER); - this.state = 3042; - this.match(PostgreSqlParser.KW_MAPPING); this.state = 3044; + this.match(PostgreSqlParser.KW_MAPPING); + this.state = 3046; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 3043; + this.state = 3045; this.ifNotExists(); } } - this.state = 3046; + this.state = 3048; this.match(PostgreSqlParser.KW_FOR); - this.state = 3049; + this.state = 3051; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CURRENT_ROLE: @@ -15672,29 +16858,29 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 3047; + this.state = 3049; this.roleSpec(); } break; case PostgreSqlParser.KW_USER: { - this.state = 3048; + this.state = 3050; this.match(PostgreSqlParser.KW_USER); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3051; + this.state = 3053; this.match(PostgreSqlParser.KW_SERVER); - this.state = 3052; - this.colId(); this.state = 3054; + this.colId(); + this.state = 3056; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 333, this.context) ) { case 1: { - this.state = 3053; + this.state = 3055; this.createGenericOptions(); } break; @@ -15721,15 +16907,15 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3056; + this.state = 3058; this.match(PostgreSqlParser.KW_ALTER); - this.state = 3057; + this.state = 3059; this.match(PostgreSqlParser.KW_USER); - this.state = 3058; + this.state = 3060; this.match(PostgreSqlParser.KW_MAPPING); - this.state = 3059; + this.state = 3061; this.match(PostgreSqlParser.KW_FOR); - this.state = 3062; + this.state = 3064; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CURRENT_ROLE: @@ -16151,24 +17337,24 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 3060; + this.state = 3062; this.roleSpec(); } break; case PostgreSqlParser.KW_USER: { - this.state = 3061; + this.state = 3063; this.match(PostgreSqlParser.KW_USER); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3064; + this.state = 3066; this.match(PostgreSqlParser.KW_SERVER); - this.state = 3065; + this.state = 3067; this.colId(); - this.state = 3066; + this.state = 3068; this.alterGenericOptions(); } } @@ -16193,35 +17379,35 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3068; + this.state = 3070; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3069; + this.state = 3071; this.match(PostgreSqlParser.KW_POLICY); - this.state = 3070; + this.state = 3072; this.colId(); - this.state = 3071; + this.state = 3073; this.match(PostgreSqlParser.KW_ON); - this.state = 3072; + this.state = 3074; this.qualifiedName(); - this.state = 3079; + this.state = 3081; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 336, this.context) ) { case 1: { - this.state = 3073; + this.state = 3075; this.match(PostgreSqlParser.KW_AS); - this.state = 3077; + this.state = 3079; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_PERMISSIVE: { - this.state = 3074; + this.state = 3076; this.match(PostgreSqlParser.KW_PERMISSIVE); } break; case PostgreSqlParser.KW_RESTRICTIVE: { - this.state = 3075; + this.state = 3077; this.match(PostgreSqlParser.KW_RESTRICTIVE); } break; @@ -16569,7 +17755,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 3076; + this.state = 3078; this.identifier(); } break; @@ -16579,14 +17765,14 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 3083; + this.state = 3085; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 3081; + this.state = 3083; this.match(PostgreSqlParser.KW_FOR); - this.state = 3082; + this.state = 3084; _la = this.tokenStream.LA(1); if(!(_la === 30 || _la === 88 || _la === 182 || _la === 241 || _la === 369)) { this.errorHandler.recoverInline(this); @@ -16598,34 +17784,34 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 3087; + this.state = 3089; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 94) { { - this.state = 3085; + this.state = 3087; this.match(PostgreSqlParser.KW_TO); - this.state = 3086; + this.state = 3088; this.roleList(); } } - this.state = 3090; + this.state = 3092; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3089; + this.state = 3091; this.rowSecurityOptionalExpr(); } } - this.state = 3093; + this.state = 3095; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 340, this.context) ) { case 1: { - this.state = 3092; + this.state = 3094; this.rowSecurityOptionalWithCheck(); } break; @@ -16653,44 +17839,44 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3095; + this.state = 3097; this.match(PostgreSqlParser.KW_ALTER); - this.state = 3096; + this.state = 3098; this.match(PostgreSqlParser.KW_POLICY); - this.state = 3097; + this.state = 3099; this.colId(); - this.state = 3098; + this.state = 3100; this.match(PostgreSqlParser.KW_ON); - this.state = 3099; + this.state = 3101; this.qualifiedName(); - this.state = 3102; + this.state = 3104; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 94) { { - this.state = 3100; + this.state = 3102; this.match(PostgreSqlParser.KW_TO); - this.state = 3101; + this.state = 3103; this.roleList(); } } - this.state = 3105; + this.state = 3107; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 3104; + this.state = 3106; this.rowSecurityOptionalExpr(); } } - this.state = 3108; + this.state = 3110; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 343, this.context) ) { case 1: { - this.state = 3107; + this.state = 3109; this.rowSecurityOptionalWithCheck(); } break; @@ -16719,51 +17905,51 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3110; + this.state = 3112; this.match(PostgreSqlParser.KW_ALTER); - this.state = 3111; + this.state = 3113; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 3112; - this.procedureName(); this.state = 3114; + this.procedureName(); + this.state = 3116; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 3113; + this.state = 3115; this.funcArgs(); } } - this.state = 3142; + this.state = 3144; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 348, this.context) ) { case 1: { - this.state = 3116; + this.state = 3118; this.procedureAction(); - this.state = 3120; + this.state = 3122; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 345, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3117; + this.state = 3119; this.procedureAction(); } } } - this.state = 3122; + this.state = 3124; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 345, this.context); } - this.state = 3124; + this.state = 3126; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 346, this.context) ) { case 1: { - this.state = 3123; + this.state = 3125; this.match(PostgreSqlParser.KW_RESTRICT); } break; @@ -16772,53 +17958,53 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 3126; + this.state = 3128; this.match(PostgreSqlParser.KW_RENAME); - this.state = 3127; + this.state = 3129; this.match(PostgreSqlParser.KW_TO); - this.state = 3128; + this.state = 3130; this.procedureNameCreate(); } break; case 3: { - this.state = 3129; + this.state = 3131; this.match(PostgreSqlParser.KW_OWNER); - this.state = 3130; + this.state = 3132; this.match(PostgreSqlParser.KW_TO); - this.state = 3131; + this.state = 3133; this.roleSpec(); } break; case 4: { - this.state = 3132; + this.state = 3134; this.match(PostgreSqlParser.KW_SET); - this.state = 3133; + this.state = 3135; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 3134; + this.state = 3136; this.schemaNameCreate(); } break; case 5: { - this.state = 3136; + this.state = 3138; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 3135; + this.state = 3137; this.match(PostgreSqlParser.KW_NO); } } - this.state = 3138; + this.state = 3140; this.match(PostgreSqlParser.KW_DEPENDS); - this.state = 3139; + this.state = 3141; this.match(PostgreSqlParser.KW_ON); - this.state = 3140; + this.state = 3142; this.match(PostgreSqlParser.KW_EXTENSION); - this.state = 3141; + this.state = 3143; this.colId(); } break; @@ -16844,48 +18030,48 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 242, PostgreSqlParser.RULE_procedureAction); let _la: number; try { - this.state = 3173; + this.state = 3175; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 354, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3154; + this.state = 3156; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 351, this.context) ) { case 1: { - this.state = 3145; + this.state = 3147; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 205) { { - this.state = 3144; + this.state = 3146; this.match(PostgreSqlParser.KW_EXTERNAL); } } - this.state = 3147; + this.state = 3149; this.match(PostgreSqlParser.KW_SECURITY); - this.state = 3148; + this.state = 3150; this.match(PostgreSqlParser.KW_INVOKER); } break; case 2: { - this.state = 3150; + this.state = 3152; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 205) { { - this.state = 3149; + this.state = 3151; this.match(PostgreSqlParser.KW_EXTERNAL); } } - this.state = 3152; + this.state = 3154; this.match(PostgreSqlParser.KW_SECURITY); - this.state = 3153; + this.state = 3155; this.match(PostgreSqlParser.KW_DEFINER); } break; @@ -16895,11 +18081,11 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3156; + this.state = 3158; this.match(PostgreSqlParser.KW_SET); - this.state = 3157; + this.state = 3159; this.colId(); - this.state = 3158; + this.state = 3160; _la = this.tokenStream.LA(1); if(!(_la === 9 || _la === 94)) { this.errorHandler.recoverInline(this); @@ -16908,18 +18094,18 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3161; + this.state = 3163; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 352, this.context) ) { case 1: { - this.state = 3159; + this.state = 3161; this.colId(); } break; case 2: { - this.state = 3160; + this.state = 3162; this.match(PostgreSqlParser.KW_DEFAULT); } break; @@ -16929,22 +18115,22 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3163; + this.state = 3165; this.match(PostgreSqlParser.KW_SET); - this.state = 3164; + this.state = 3166; this.colId(); - this.state = 3165; + this.state = 3167; this.match(PostgreSqlParser.KW_FROM); - this.state = 3166; + this.state = 3168; this.match(PostgreSqlParser.KW_CURRENT); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3168; + this.state = 3170; this.match(PostgreSqlParser.KW_RESET); - this.state = 3171; + this.state = 3173; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -17342,13 +18528,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 3169; + this.state = 3171; this.colId(); } break; case PostgreSqlParser.KW_ALL: { - this.state = 3170; + this.state = 3172; this.match(PostgreSqlParser.KW_ALL); } break; @@ -17379,13 +18565,13 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3175; + this.state = 3177; this.match(PostgreSqlParser.KW_USING); - this.state = 3176; + this.state = 3178; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3177; + this.state = 3179; this.expression(); - this.state = 3178; + this.state = 3180; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -17409,15 +18595,15 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3180; + this.state = 3182; this.match(PostgreSqlParser.KW_WITH); - this.state = 3181; + this.state = 3183; this.match(PostgreSqlParser.KW_CHECK); - this.state = 3182; + this.state = 3184; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3183; + this.state = 3185; this.expression(); - this.state = 3184; + this.state = 3186; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -17442,17 +18628,17 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3186; + this.state = 3188; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3187; + this.state = 3189; this.match(PostgreSqlParser.KW_ACCESS); - this.state = 3188; + this.state = 3190; this.match(PostgreSqlParser.KW_METHOD); - this.state = 3189; + this.state = 3191; this.colId(); - this.state = 3190; + this.state = 3192; this.match(PostgreSqlParser.KW_TYPE); - this.state = 3191; + this.state = 3193; _la = this.tokenStream.LA(1); if(!(_la === 92 || _la === 226)) { this.errorHandler.recoverInline(this); @@ -17461,9 +18647,9 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3192; + this.state = 3194; this.match(PostgreSqlParser.KW_HANDLER); - this.state = 3193; + this.state = 3195; this.anyName(); } } @@ -17486,50 +18672,50 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 250, PostgreSqlParser.RULE_createTrigStmt); let _la: number; try { - this.state = 3273; + this.state = 3275; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 369, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3195; - this.match(PostgreSqlParser.KW_CREATE); this.state = 3197; + this.match(PostgreSqlParser.KW_CREATE); + this.state = 3199; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 3196; + this.state = 3198; this.orReplaceOpt(); } } - this.state = 3199; + this.state = 3201; this.match(PostgreSqlParser.KW_TRIGGER); - this.state = 3200; + this.state = 3202; this.colId(); - this.state = 3201; + this.state = 3203; this.triggerActionTime(); - this.state = 3202; + this.state = 3204; this.triggerEvents(); - this.state = 3203; + this.state = 3205; this.match(PostgreSqlParser.KW_ON); - this.state = 3204; + this.state = 3206; this.tableName(); - this.state = 3216; + this.state = 3218; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 447) { { - this.state = 3205; + this.state = 3207; this.match(PostgreSqlParser.KW_REFERENCING); - this.state = 3212; + this.state = 3214; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3206; + this.state = 3208; _la = this.tokenStream.LA(1); if(!(_la === 448 || _la === 449)) { this.errorHandler.recoverInline(this); @@ -17538,7 +18724,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3207; + this.state = 3209; _la = this.tokenStream.LA(1); if(!(_la === 92 || _la === 414)) { this.errorHandler.recoverInline(this); @@ -17547,45 +18733,45 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3209; + this.state = 3211; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 3208; + this.state = 3210; this.match(PostgreSqlParser.KW_AS); } } - this.state = 3211; + this.state = 3213; this.colId(); } } - this.state = 3214; + this.state = 3216; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 448 || _la === 449); } } - this.state = 3223; + this.state = 3225; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 3218; - this.match(PostgreSqlParser.KW_FOR); this.state = 3220; + this.match(PostgreSqlParser.KW_FOR); + this.state = 3222; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 3219; + this.state = 3221; this.match(PostgreSqlParser.KW_EACH); } } - this.state = 3222; + this.state = 3224; _la = this.tokenStream.LA(1); if(!(_la === 341 || _la === 414)) { this.errorHandler.recoverInline(this); @@ -17597,109 +18783,109 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 3226; + this.state = 3228; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 102) { { - this.state = 3225; + this.state = 3227; this.triggerWhen(); } } - this.state = 3228; + this.state = 3230; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 3229; + this.state = 3231; this.functionOrProcedure(); - this.state = 3230; + this.state = 3232; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3231; + this.state = 3233; this.triggerFuncArgs(); - this.state = 3232; + this.state = 3234; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3234; - this.match(PostgreSqlParser.KW_CREATE); this.state = 3236; + this.match(PostgreSqlParser.KW_CREATE); + this.state = 3238; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 3235; + this.state = 3237; this.orReplaceOpt(); } } - this.state = 3239; + this.state = 3241; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 45) { { - this.state = 3238; + this.state = 3240; this.match(PostgreSqlParser.KW_CONSTRAINT); } } - this.state = 3241; + this.state = 3243; this.match(PostgreSqlParser.KW_TRIGGER); - this.state = 3242; + this.state = 3244; this.colId(); - this.state = 3243; + this.state = 3245; this.triggerActionTime(); - this.state = 3244; + this.state = 3246; this.triggerEvents(); - this.state = 3245; + this.state = 3247; this.match(PostgreSqlParser.KW_ON); - this.state = 3246; + this.state = 3248; this.tableName(); - this.state = 3249; + this.state = 3251; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 3247; + this.state = 3249; this.match(PostgreSqlParser.KW_FROM); - this.state = 3248; + this.state = 3250; this.qualifiedName(); } } - this.state = 3254; + this.state = 3256; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (((((_la - 54)) & ~0x1F) === 0 && ((1 << (_la - 54)) & 8421377) !== 0) || _la === 269) { { { - this.state = 3251; + this.state = 3253; this.constraintAttributeElem(); } } - this.state = 3256; + this.state = 3258; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3262; + this.state = 3264; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 3257; - this.match(PostgreSqlParser.KW_FOR); this.state = 3259; + this.match(PostgreSqlParser.KW_FOR); + this.state = 3261; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 192) { { - this.state = 3258; + this.state = 3260; this.match(PostgreSqlParser.KW_EACH); } } - this.state = 3261; + this.state = 3263; _la = this.tokenStream.LA(1); if(!(_la === 341 || _la === 414)) { this.errorHandler.recoverInline(this); @@ -17711,25 +18897,25 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 3265; + this.state = 3267; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 102) { { - this.state = 3264; + this.state = 3266; this.triggerWhen(); } } - this.state = 3267; + this.state = 3269; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 3268; + this.state = 3270; this.functionOrProcedure(); - this.state = 3269; + this.state = 3271; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3270; + this.state = 3272; this.triggerFuncArgs(); - this.state = 3271; + this.state = 3273; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -17753,29 +18939,29 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new TriggerActionTimeContext(this.context, this.state); this.enterRule(localContext, 252, PostgreSqlParser.RULE_triggerActionTime); try { - this.state = 3279; + this.state = 3281; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_BEFORE: this.enterOuterAlt(localContext, 1); { - this.state = 3275; + this.state = 3277; this.match(PostgreSqlParser.KW_BEFORE); } break; case PostgreSqlParser.KW_AFTER: this.enterOuterAlt(localContext, 2); { - this.state = 3276; + this.state = 3278; this.match(PostgreSqlParser.KW_AFTER); } break; case PostgreSqlParser.KW_INSTEAD: this.enterOuterAlt(localContext, 3); { - this.state = 3277; + this.state = 3279; this.match(PostgreSqlParser.KW_INSTEAD); - this.state = 3278; + this.state = 3280; this.match(PostgreSqlParser.KW_OF); } break; @@ -17804,21 +18990,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3281; + this.state = 3283; this.triggerOneEvent(); - this.state = 3286; + this.state = 3288; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 82) { { { - this.state = 3282; + this.state = 3284; this.match(PostgreSqlParser.KW_OR); - this.state = 3283; + this.state = 3285; this.triggerOneEvent(); } } - this.state = 3288; + this.state = 3290; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17843,36 +19029,36 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 256, PostgreSqlParser.RULE_triggerOneEvent); let _la: number; try { - this.state = 3297; + this.state = 3299; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_INSERT: this.enterOuterAlt(localContext, 1); { - this.state = 3289; + this.state = 3291; this.match(PostgreSqlParser.KW_INSERT); } break; case PostgreSqlParser.KW_DELETE: this.enterOuterAlt(localContext, 2); { - this.state = 3290; + this.state = 3292; this.match(PostgreSqlParser.KW_DELETE); } break; case PostgreSqlParser.KW_UPDATE: this.enterOuterAlt(localContext, 3); { - this.state = 3291; + this.state = 3293; this.match(PostgreSqlParser.KW_UPDATE); - this.state = 3294; + this.state = 3296; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 275) { { - this.state = 3292; + this.state = 3294; this.match(PostgreSqlParser.KW_OF); - this.state = 3293; + this.state = 3295; this.columnList(); } } @@ -17882,7 +19068,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_TRUNCATE: this.enterOuterAlt(localContext, 4); { - this.state = 3296; + this.state = 3298; this.match(PostgreSqlParser.KW_TRUNCATE); } break; @@ -17910,13 +19096,13 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3299; + this.state = 3301; this.match(PostgreSqlParser.KW_WHEN); - this.state = 3300; + this.state = 3302; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3301; + this.state = 3303; this.expression(); - this.state = 3302; + this.state = 3304; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -17938,24 +19124,24 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new FunctionOrProcedureContext(this.context, this.state); this.enterRule(localContext, 260, PostgreSqlParser.RULE_functionOrProcedure); try { - this.state = 3308; + this.state = 3310; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FUNCTION: this.enterOuterAlt(localContext, 1); { - this.state = 3304; + this.state = 3306; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 3305; + this.state = 3307; this.functionName(); } break; case PostgreSqlParser.KW_PROCEDURE: this.enterOuterAlt(localContext, 2); { - this.state = 3306; + this.state = 3308; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 3307; + this.state = 3309; this.procedureName(); } break; @@ -17984,7 +19170,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3312; + this.state = 3314; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ALL: @@ -18480,7 +19666,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 3310; + this.state = 3312; this.triggerFuncArg(); } break; @@ -18493,19 +19679,19 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3318; + this.state = 3320; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3314; + this.state = 3316; this.match(PostgreSqlParser.COMMA); - this.state = 3315; + this.state = 3317; this.triggerFuncArg(); } } - this.state = 3320; + this.state = 3322; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -18529,34 +19715,34 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new TriggerFuncArgContext(this.context, this.state); this.enterRule(localContext, 264, PostgreSqlParser.RULE_triggerFuncArg); try { - this.state = 3325; + this.state = 3327; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 377, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3321; + this.state = 3323; this.match(PostgreSqlParser.Integral); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3322; + this.state = 3324; this.match(PostgreSqlParser.Numeric); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3323; + this.state = 3325; this.stringConst(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3324; + this.state = 3326; this.colLabel(); } break; @@ -18581,32 +19767,32 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 266, PostgreSqlParser.RULE_constraintAttributeElem); let _la: number; try { - this.state = 3337; + this.state = 3339; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 379, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3328; + this.state = 3330; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 3327; + this.state = 3329; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 3330; + this.state = 3332; this.match(PostgreSqlParser.KW_DEFERRABLE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3331; + this.state = 3333; this.match(PostgreSqlParser.KW_INITIALLY); - this.state = 3332; + this.state = 3334; _la = this.tokenStream.LA(1); if(!(_la === 180 || _la === 221)) { this.errorHandler.recoverInline(this); @@ -18620,18 +19806,18 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3333; + this.state = 3335; this.match(PostgreSqlParser.KW_NOT); - this.state = 3334; + this.state = 3336; this.match(PostgreSqlParser.KW_VALID); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3335; + this.state = 3337; this.match(PostgreSqlParser.KW_NO); - this.state = 3336; + this.state = 3338; this.match(PostgreSqlParser.KW_INHERIT); } break; @@ -18658,53 +19844,53 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3339; + this.state = 3341; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3340; + this.state = 3342; this.match(PostgreSqlParser.KW_EVENT); - this.state = 3341; + this.state = 3343; this.match(PostgreSqlParser.KW_TRIGGER); - this.state = 3342; + this.state = 3344; this.colId(); - this.state = 3343; + this.state = 3345; this.match(PostgreSqlParser.KW_ON); - this.state = 3344; + this.state = 3346; this.colLabel(); - this.state = 3354; + this.state = 3356; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 102) { { - this.state = 3345; + this.state = 3347; this.match(PostgreSqlParser.KW_WHEN); - this.state = 3346; + this.state = 3348; this.eventTriggerWhenItem(); - this.state = 3351; + this.state = 3353; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 33) { { { - this.state = 3347; + this.state = 3349; this.match(PostgreSqlParser.KW_AND); - this.state = 3348; + this.state = 3350; this.eventTriggerWhenItem(); } } - this.state = 3353; + this.state = 3355; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3356; + this.state = 3358; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 3357; + this.state = 3359; this.functionOrProcedure(); - this.state = 3358; + this.state = 3360; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3359; + this.state = 3361; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -18729,29 +19915,29 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3361; + this.state = 3363; this.colId(); - this.state = 3362; + this.state = 3364; this.match(PostgreSqlParser.KW_IN); - this.state = 3363; + this.state = 3365; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3364; + this.state = 3366; this.stringConst(); - this.state = 3368; + this.state = 3370; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3365; + this.state = 3367; this.notifyPayload(); } } - this.state = 3370; + this.state = 3372; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3371; + this.state = 3373; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -18776,27 +19962,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3373; + this.state = 3375; this.match(PostgreSqlParser.KW_ALTER); - this.state = 3374; + this.state = 3376; this.match(PostgreSqlParser.KW_EVENT); - this.state = 3375; + this.state = 3377; this.match(PostgreSqlParser.KW_TRIGGER); - this.state = 3376; + this.state = 3378; this.colId(); - this.state = 3382; + this.state = 3384; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ENABLE: { - this.state = 3377; - this.match(PostgreSqlParser.KW_ENABLE); this.state = 3379; + this.match(PostgreSqlParser.KW_ENABLE); + this.state = 3381; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 383, this.context) ) { case 1: { - this.state = 3378; + this.state = 3380; _la = this.tokenStream.LA(1); if(!(_la === 139 || _la === 312)) { this.errorHandler.recoverInline(this); @@ -18812,7 +19998,7 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_DISABLE: { - this.state = 3381; + this.state = 3383; this.match(PostgreSqlParser.KW_DISABLE); } break; @@ -18842,33 +20028,33 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3384; + this.state = 3386; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3385; + this.state = 3387; this.match(PostgreSqlParser.KW_ASSERTION); - this.state = 3386; + this.state = 3388; this.anyName(); - this.state = 3387; + this.state = 3389; this.match(PostgreSqlParser.KW_CHECK); - this.state = 3388; + this.state = 3390; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3389; + this.state = 3391; this.expression(); - this.state = 3390; + this.state = 3392; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 3394; + this.state = 3396; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 385, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3391; + this.state = 3393; this.constraintAttributeElem(); } } } - this.state = 3396; + this.state = 3398; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 385, this.context); } @@ -18893,64 +20079,64 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 276, PostgreSqlParser.RULE_defineStmt); let _la: number; try { - this.state = 3475; + this.state = 3477; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 397, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3397; - this.match(PostgreSqlParser.KW_CREATE); this.state = 3399; + this.match(PostgreSqlParser.KW_CREATE); + this.state = 3401; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 3398; + this.state = 3400; this.orReplaceOpt(); } } - this.state = 3401; + this.state = 3403; this.match(PostgreSqlParser.KW_AGGREGATE); - this.state = 3402; + this.state = 3404; this.functionName(); - this.state = 3417; + this.state = 3419; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 388, this.context) ) { case 1: { { - this.state = 3403; + this.state = 3405; this.aggregateArgs(); - this.state = 3404; + this.state = 3406; this.definition(); } } break; case 2: { - this.state = 3406; + this.state = 3408; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3407; + this.state = 3409; this.oldAggregateElem(); - this.state = 3412; + this.state = 3414; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3408; + this.state = 3410; this.match(PostgreSqlParser.COMMA); - this.state = 3409; + this.state = 3411; this.oldAggregateElem(); } } - this.state = 3414; + this.state = 3416; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3415; + this.state = 3417; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -18960,79 +20146,79 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3419; + this.state = 3421; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3420; + this.state = 3422; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 3421; + this.state = 3423; this.anyOperator(); - this.state = 3422; + this.state = 3424; this.definition(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3424; + this.state = 3426; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3425; + this.state = 3427; this.match(PostgreSqlParser.KW_TYPE); - this.state = 3426; + this.state = 3428; this.anyName(); - this.state = 3427; + this.state = 3429; this.match(PostgreSqlParser.KW_AS); - this.state = 3445; + this.state = 3447; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: { - this.state = 3428; - this.match(PostgreSqlParser.OPEN_PAREN); this.state = 3430; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 3432; 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)) & 3221570659) !== 0) || _la === 586) { { - this.state = 3429; + this.state = 3431; this.tableFuncElementList(); } } - this.state = 3432; + this.state = 3434; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_ENUM: { - this.state = 3433; + this.state = 3435; this.match(PostgreSqlParser.KW_ENUM); - this.state = 3434; + this.state = 3436; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3442; + this.state = 3444; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 561)) & ~0x1F) === 0 && ((1 << (_la - 561)) & 33554453) !== 0)) { { - this.state = 3435; + this.state = 3437; this.stringConst(); - this.state = 3439; + this.state = 3441; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3436; + this.state = 3438; this.notifyPayload(); } } - this.state = 3441; + this.state = 3443; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3444; + this.state = 3446; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -19044,30 +20230,30 @@ export class PostgreSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3447; + this.state = 3449; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3448; + this.state = 3450; this.match(PostgreSqlParser.KW_TYPE); - this.state = 3449; + this.state = 3451; this.anyName(); - this.state = 3455; + this.state = 3457; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 394, this.context) ) { case 1: { - this.state = 3452; + this.state = 3454; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 3450; + this.state = 3452; this.match(PostgreSqlParser.KW_AS); - this.state = 3451; + this.state = 3453; this.match(PostgreSqlParser.KW_RANGE); } } - this.state = 3454; + this.state = 3456; this.definition(); } break; @@ -19077,13 +20263,13 @@ export class PostgreSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3457; + this.state = 3459; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3458; + this.state = 3460; this.match(PostgreSqlParser.KW_TEXT); - this.state = 3459; + this.state = 3461; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 3460; + this.state = 3462; _la = this.tokenStream.LA(1); if(!(_la === 163 || _la === 185 || _la === 283 || _la === 353)) { this.errorHandler.recoverInline(this); @@ -19092,46 +20278,46 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3461; + this.state = 3463; this.anyName(); - this.state = 3462; + this.state = 3464; this.definition(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3464; + this.state = 3466; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3465; - this.match(PostgreSqlParser.KW_COLLATION); this.state = 3467; + this.match(PostgreSqlParser.KW_COLLATION); + this.state = 3469; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 395, this.context) ) { case 1: { - this.state = 3466; + this.state = 3468; this.ifNotExists(); } break; } - this.state = 3469; + this.state = 3471; this.anyName(); - this.state = 3473; + this.state = 3475; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: { - this.state = 3470; + this.state = 3472; this.definition(); } break; case PostgreSqlParser.KW_FROM: { { - this.state = 3471; + this.state = 3473; this.match(PostgreSqlParser.KW_FROM); - this.state = 3472; + this.state = 3474; this.anyName(); } } @@ -19164,27 +20350,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3477; + this.state = 3479; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3478; + this.state = 3480; this.defElem(); - this.state = 3483; + this.state = 3485; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3479; + this.state = 3481; this.match(PostgreSqlParser.COMMA); - this.state = 3480; + this.state = 3482; this.defElem(); } } - this.state = 3485; + this.state = 3487; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3486; + this.state = 3488; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -19209,16 +20395,16 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3488; + this.state = 3490; this.colLabel(); - this.state = 3491; + this.state = 3493; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10) { { - this.state = 3489; + this.state = 3491; this.match(PostgreSqlParser.EQUAL); - this.state = 3490; + this.state = 3492; this.defArg(); } } @@ -19243,48 +20429,48 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new DefArgContext(this.context, this.state); this.enterRule(localContext, 282, PostgreSqlParser.RULE_defArg); try { - this.state = 3499; + this.state = 3501; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 400, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3493; + this.state = 3495; this.funcType(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3494; + this.state = 3496; this.reservedKeyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3495; + this.state = 3497; this.qualAllOp(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3496; + this.state = 3498; this.numericOnly(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3497; + this.state = 3499; this.stringConst(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3498; + this.state = 3500; this.match(PostgreSqlParser.KW_NONE); } break; @@ -19310,11 +20496,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3501; + this.state = 3503; this.identifier(); - this.state = 3502; + this.state = 3504; this.match(PostgreSqlParser.EQUAL); - this.state = 3503; + this.state = 3505; this.defArg(); } } @@ -19337,40 +20523,40 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 286, PostgreSqlParser.RULE_alterEnumStmt); let _la: number; try { - this.state = 3527; + this.state = 3529; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 403, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3505; + this.state = 3507; this.match(PostgreSqlParser.KW_ALTER); - this.state = 3506; + this.state = 3508; this.match(PostgreSqlParser.KW_TYPE); - this.state = 3507; + this.state = 3509; this.anyName(); - this.state = 3508; + this.state = 3510; this.match(PostgreSqlParser.KW_ADD); - this.state = 3509; - this.match(PostgreSqlParser.KW_VALUE); this.state = 3511; + this.match(PostgreSqlParser.KW_VALUE); + this.state = 3513; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 3510; + this.state = 3512; this.ifNotExists(); } } - this.state = 3513; + this.state = 3515; this.stringConst(); - this.state = 3516; + this.state = 3518; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 402, this.context) ) { case 1: { - this.state = 3514; + this.state = 3516; _la = this.tokenStream.LA(1); if(!(_la === 135 || _la === 145)) { this.errorHandler.recoverInline(this); @@ -19379,7 +20565,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3515; + this.state = 3517; this.stringConst(); } break; @@ -19389,21 +20575,21 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3518; + this.state = 3520; this.match(PostgreSqlParser.KW_ALTER); - this.state = 3519; + this.state = 3521; this.match(PostgreSqlParser.KW_TYPE); - this.state = 3520; + this.state = 3522; this.anyName(); - this.state = 3521; + this.state = 3523; this.match(PostgreSqlParser.KW_RENAME); - this.state = 3522; + this.state = 3524; this.match(PostgreSqlParser.KW_VALUE); - this.state = 3523; + this.state = 3525; this.stringConst(); - this.state = 3524; + this.state = 3526; this.match(PostgreSqlParser.KW_TO); - this.state = 3525; + this.state = 3527; this.stringConst(); } break; @@ -19429,11 +20615,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3529; + this.state = 3531; this.match(PostgreSqlParser.KW_IF); - this.state = 3530; + this.state = 3532; this.match(PostgreSqlParser.KW_NOT); - this.state = 3531; + this.state = 3533; this.match(PostgreSqlParser.KW_EXISTS); } } @@ -19458,61 +20644,61 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3533; + this.state = 3535; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3534; + this.state = 3536; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 3535; + this.state = 3537; this.match(PostgreSqlParser.KW_CLASS); - this.state = 3536; - this.anyName(); this.state = 3538; + this.anyName(); + this.state = 3540; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 3537; + this.state = 3539; this.match(PostgreSqlParser.KW_DEFAULT); } } - this.state = 3540; + this.state = 3542; this.match(PostgreSqlParser.KW_FOR); - this.state = 3541; + this.state = 3543; this.match(PostgreSqlParser.KW_TYPE); - this.state = 3542; + this.state = 3544; this.typename(); - this.state = 3543; + this.state = 3545; this.tableAccessMethodClause(); - this.state = 3546; + this.state = 3548; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 206) { { - this.state = 3544; + this.state = 3546; this.match(PostgreSqlParser.KW_FAMILY); - this.state = 3545; + this.state = 3547; this.anyName(); } } - this.state = 3548; + this.state = 3550; this.match(PostgreSqlParser.KW_AS); - this.state = 3549; + this.state = 3551; this.opClassItem(); - this.state = 3554; + this.state = 3556; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3550; + this.state = 3552; this.match(PostgreSqlParser.COMMA); - this.state = 3551; + this.state = 3553; this.opClassItem(); } } - this.state = 3556; + this.state = 3558; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -19537,52 +20723,52 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 292, PostgreSqlParser.RULE_opClassItem); let _la: number; try { - this.state = 3583; + this.state = 3585; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_OPERATOR: this.enterOuterAlt(localContext, 1); { - this.state = 3557; + this.state = 3559; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 3558; + this.state = 3560; this.match(PostgreSqlParser.Integral); - this.state = 3559; - this.anyOperator(); this.state = 3561; + this.anyOperator(); + this.state = 3563; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 407, this.context) ) { case 1: { - this.state = 3560; + this.state = 3562; this.operatorArgTypes(); } break; } - this.state = 3570; + this.state = 3572; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 3563; + this.state = 3565; this.match(PostgreSqlParser.KW_FOR); - this.state = 3568; + this.state = 3570; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_SEARCH: { - this.state = 3564; + this.state = 3566; this.match(PostgreSqlParser.KW_SEARCH); } break; case PostgreSqlParser.KW_ORDER: { { - this.state = 3565; + this.state = 3567; this.match(PostgreSqlParser.KW_ORDER); - this.state = 3566; + this.state = 3568; this.match(PostgreSqlParser.KW_BY); - this.state = 3567; + this.state = 3569; this.anyName(); } } @@ -19593,12 +20779,12 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 3573; + this.state = 3575; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 410, this.context) ) { case 1: { - this.state = 3572; + this.state = 3574; this.match(PostgreSqlParser.KW_RECHECK); } break; @@ -19608,30 +20794,30 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_FUNCTION: this.enterOuterAlt(localContext, 2); { - this.state = 3575; + this.state = 3577; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 3576; - this.match(PostgreSqlParser.Integral); this.state = 3578; + this.match(PostgreSqlParser.Integral); + this.state = 3580; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 3577; + this.state = 3579; this.prepTypeClause(); } } - this.state = 3580; + this.state = 3582; this.functionWithArgTypes(); } break; case PostgreSqlParser.KW_STORAGE: this.enterOuterAlt(localContext, 3); { - this.state = 3581; + this.state = 3583; this.match(PostgreSqlParser.KW_STORAGE); - this.state = 3582; + this.state = 3584; this.typename(); } break; @@ -19659,15 +20845,15 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3585; + this.state = 3587; this.match(PostgreSqlParser.KW_CREATE); - this.state = 3586; + this.state = 3588; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 3587; + this.state = 3589; this.match(PostgreSqlParser.KW_FAMILY); - this.state = 3588; + this.state = 3590; this.anyName(); - this.state = 3589; + this.state = 3591; this.tableAccessMethodClause(); } } @@ -19692,38 +20878,38 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3591; + this.state = 3593; this.match(PostgreSqlParser.KW_ALTER); - this.state = 3592; + this.state = 3594; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 3593; + this.state = 3595; this.match(PostgreSqlParser.KW_FAMILY); - this.state = 3594; + this.state = 3596; this.anyName(); - this.state = 3595; + this.state = 3597; this.tableAccessMethodClause(); - this.state = 3614; + this.state = 3616; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ADD: { - this.state = 3596; + this.state = 3598; this.match(PostgreSqlParser.KW_ADD); - this.state = 3597; + this.state = 3599; this.opClassItem(); - this.state = 3602; + this.state = 3604; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3598; + this.state = 3600; this.match(PostgreSqlParser.COMMA); - this.state = 3599; + this.state = 3601; this.opClassItem(); } } - this.state = 3604; + this.state = 3606; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -19731,23 +20917,23 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_DROP: { - this.state = 3605; + this.state = 3607; this.match(PostgreSqlParser.KW_DROP); - this.state = 3606; + this.state = 3608; this.opClassDrop(); - this.state = 3611; + this.state = 3613; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3607; + this.state = 3609; this.match(PostgreSqlParser.COMMA); - this.state = 3608; + this.state = 3610; this.opClassDrop(); } } - this.state = 3613; + this.state = 3615; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -19779,7 +20965,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3616; + this.state = 3618; _la = this.tokenStream.LA(1); if(!(_la === 211 || _la === 278)) { this.errorHandler.recoverInline(this); @@ -19788,9 +20974,9 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3617; + this.state = 3619; this.match(PostgreSqlParser.Integral); - this.state = 3618; + this.state = 3620; this.prepTypeClause(); } } @@ -19814,17 +21000,17 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3620; + this.state = 3622; this.match(PostgreSqlParser.KW_REASSIGN); - this.state = 3621; + this.state = 3623; this.match(PostgreSqlParser.KW_OWNED); - this.state = 3622; + this.state = 3624; this.match(PostgreSqlParser.KW_BY); - this.state = 3623; + this.state = 3625; this.roleList(); - this.state = 3624; + this.state = 3626; this.match(PostgreSqlParser.KW_TO); - this.state = 3625; + this.state = 3627; this.roleSpec(); } } @@ -19847,115 +21033,115 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 302, PostgreSqlParser.RULE_dropStmt); let _la: number; try { - this.state = 3834; + this.state = 3836; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 453, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3627; + this.state = 3629; this.match(PostgreSqlParser.KW_DROP); - this.state = 3650; + this.state = 3652; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_SEQUENCE: { - this.state = 3628; + this.state = 3630; this.match(PostgreSqlParser.KW_SEQUENCE); } break; case PostgreSqlParser.KW_INDEX: { - this.state = 3629; + this.state = 3631; this.match(PostgreSqlParser.KW_INDEX); } break; case PostgreSqlParser.KW_COLLATION: { - this.state = 3630; + this.state = 3632; this.match(PostgreSqlParser.KW_COLLATION); } break; case PostgreSqlParser.KW_CONVERSION: { - this.state = 3631; + this.state = 3633; this.match(PostgreSqlParser.KW_CONVERSION); } break; case PostgreSqlParser.KW_STATISTICS: { - this.state = 3632; + this.state = 3634; this.match(PostgreSqlParser.KW_STATISTICS); } break; case PostgreSqlParser.KW_PUBLICATION: { - this.state = 3633; + this.state = 3635; this.match(PostgreSqlParser.KW_PUBLICATION); } break; case PostgreSqlParser.KW_SERVER: { - this.state = 3634; + this.state = 3636; this.match(PostgreSqlParser.KW_SERVER); } break; case PostgreSqlParser.KW_ACCESS: { - this.state = 3635; + this.state = 3637; this.match(PostgreSqlParser.KW_ACCESS); - this.state = 3636; + this.state = 3638; this.match(PostgreSqlParser.KW_METHOD); } break; case PostgreSqlParser.KW_EVENT: { - this.state = 3637; + this.state = 3639; this.match(PostgreSqlParser.KW_EVENT); - this.state = 3638; + this.state = 3640; this.match(PostgreSqlParser.KW_TRIGGER); } break; case PostgreSqlParser.KW_EXTENSION: { - this.state = 3639; + this.state = 3641; this.match(PostgreSqlParser.KW_EXTENSION); } break; case PostgreSqlParser.KW_LANGUAGE: case PostgreSqlParser.KW_PROCEDURAL: { - this.state = 3641; + this.state = 3643; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 295) { { - this.state = 3640; + this.state = 3642; this.match(PostgreSqlParser.KW_PROCEDURAL); } } - this.state = 3643; + this.state = 3645; this.match(PostgreSqlParser.KW_LANGUAGE); } break; case PostgreSqlParser.KW_FOREIGN: { - this.state = 3644; + this.state = 3646; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 3645; + this.state = 3647; this.match(PostgreSqlParser.KW_DATA); - this.state = 3646; + this.state = 3648; this.match(PostgreSqlParser.KW_WRAPPER); } break; case PostgreSqlParser.KW_TEXT: { - this.state = 3647; + this.state = 3649; this.match(PostgreSqlParser.KW_TEXT); - this.state = 3648; + this.state = 3650; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 3649; + this.state = 3651; _la = this.tokenStream.LA(1); if(!(_la === 163 || _la === 185 || _la === 283 || _la === 353)) { this.errorHandler.recoverInline(this); @@ -19969,24 +21155,24 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3653; + this.state = 3655; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 418, this.context) ) { case 1: { - this.state = 3652; + this.state = 3654; this.ifExists(); } break; } - this.state = 3655; - this.nameList(); this.state = 3657; + this.nameList(); + this.state = 3659; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 419, this.context) ) { case 1: { - this.state = 3656; + this.state = 3658; this.optDropBehavior(); } break; @@ -19996,54 +21182,54 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3659; - this.match(PostgreSqlParser.KW_DROP); this.state = 3661; + this.match(PostgreSqlParser.KW_DROP); + this.state = 3663; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 259) { { - this.state = 3660; + this.state = 3662; this.match(PostgreSqlParser.KW_MATERIALIZED); } } - this.state = 3663; - this.match(PostgreSqlParser.KW_VIEW); this.state = 3665; + this.match(PostgreSqlParser.KW_VIEW); + this.state = 3667; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 421, this.context) ) { case 1: { - this.state = 3664; + this.state = 3666; this.ifExists(); } break; } - this.state = 3667; + this.state = 3669; this.viewName(); - this.state = 3672; + this.state = 3674; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3668; + this.state = 3670; this.match(PostgreSqlParser.COMMA); - this.state = 3669; + this.state = 3671; this.viewName(); } } - this.state = 3674; + this.state = 3676; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3676; + this.state = 3678; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 423, this.context) ) { case 1: { - this.state = 3675; + this.state = 3677; this.optDropBehavior(); } break; @@ -20053,38 +21239,38 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3678; - this.match(PostgreSqlParser.KW_DROP); this.state = 3680; + this.match(PostgreSqlParser.KW_DROP); + this.state = 3682; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 63) { { - this.state = 3679; + this.state = 3681; this.match(PostgreSqlParser.KW_FOREIGN); } } - this.state = 3682; - this.match(PostgreSqlParser.KW_TABLE); this.state = 3684; + this.match(PostgreSqlParser.KW_TABLE); + this.state = 3686; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 425, this.context) ) { case 1: { - this.state = 3683; + this.state = 3685; this.ifExists(); } break; } - this.state = 3686; - this.tableNameList(); this.state = 3688; + this.tableNameList(); + this.state = 3690; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 426, this.context) ) { case 1: { - this.state = 3687; + this.state = 3689; this.optDropBehavior(); } break; @@ -20094,28 +21280,28 @@ export class PostgreSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3690; + this.state = 3692; this.match(PostgreSqlParser.KW_DROP); - this.state = 3691; - this.match(PostgreSqlParser.KW_SCHEMA); this.state = 3693; + this.match(PostgreSqlParser.KW_SCHEMA); + this.state = 3695; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 427, this.context) ) { case 1: { - this.state = 3692; + this.state = 3694; this.ifExists(); } break; } - this.state = 3695; - this.schemaNameList(); this.state = 3697; + this.schemaNameList(); + this.state = 3699; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 428, this.context) ) { case 1: { - this.state = 3696; + this.state = 3698; this.optDropBehavior(); } break; @@ -20125,9 +21311,9 @@ export class PostgreSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3699; + this.state = 3701; this.match(PostgreSqlParser.KW_DROP); - this.state = 3700; + this.state = 3702; _la = this.tokenStream.LA(1); if(!(_la === 321 || _la === 357 || _la === 445)) { this.errorHandler.recoverInline(this); @@ -20136,28 +21322,28 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3702; + this.state = 3704; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 429, this.context) ) { case 1: { - this.state = 3701; + this.state = 3703; this.ifExists(); } break; } - this.state = 3704; + this.state = 3706; this.colId(); - this.state = 3705; + this.state = 3707; this.match(PostgreSqlParser.KW_ON); - this.state = 3706; - this.anyName(); this.state = 3708; + this.anyName(); + this.state = 3710; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 430, this.context) ) { case 1: { - this.state = 3707; + this.state = 3709; this.optDropBehavior(); } break; @@ -20167,9 +21353,9 @@ export class PostgreSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3710; + this.state = 3712; this.match(PostgreSqlParser.KW_DROP); - this.state = 3711; + this.state = 3713; _la = this.tokenStream.LA(1); if(!(_la === 189 || _la === 360)) { this.errorHandler.recoverInline(this); @@ -20178,40 +21364,40 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3713; + this.state = 3715; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 431, this.context) ) { case 1: { - this.state = 3712; + this.state = 3714; this.ifExists(); } break; } - this.state = 3715; + this.state = 3717; this.typename(); - this.state = 3720; + this.state = 3722; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3716; + this.state = 3718; this.match(PostgreSqlParser.COMMA); - this.state = 3717; + this.state = 3719; this.typename(); } } - this.state = 3722; + this.state = 3724; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3724; + this.state = 3726; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 433, this.context) ) { case 1: { - this.state = 3723; + this.state = 3725; this.optDropBehavior(); } break; @@ -20221,30 +21407,30 @@ export class PostgreSqlParser extends SQLParserBase { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3726; + this.state = 3728; this.match(PostgreSqlParser.KW_DROP); - this.state = 3727; + this.state = 3729; this.match(PostgreSqlParser.KW_INDEX); - this.state = 3728; - this.match(PostgreSqlParser.KW_CONCURRENTLY); this.state = 3730; + this.match(PostgreSqlParser.KW_CONCURRENTLY); + this.state = 3732; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 434, this.context) ) { case 1: { - this.state = 3729; + this.state = 3731; this.ifExists(); } break; } - this.state = 3732; - this.anyNameList(); this.state = 3734; + this.anyNameList(); + this.state = 3736; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 435, this.context) ) { case 1: { - this.state = 3733; + this.state = 3735; this.optDropBehavior(); } break; @@ -20254,36 +21440,36 @@ export class PostgreSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 3736; + this.state = 3738; this.match(PostgreSqlParser.KW_DROP); - this.state = 3737; - this.match(PostgreSqlParser.KW_CAST); this.state = 3739; + this.match(PostgreSqlParser.KW_CAST); + this.state = 3741; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 3738; + this.state = 3740; this.ifExists(); } } - this.state = 3741; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3742; - this.typename(); this.state = 3743; - this.match(PostgreSqlParser.KW_AS); + this.match(PostgreSqlParser.OPEN_PAREN); this.state = 3744; this.typename(); this.state = 3745; - this.match(PostgreSqlParser.CLOSE_PAREN); + this.match(PostgreSqlParser.KW_AS); + this.state = 3746; + this.typename(); this.state = 3747; + this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 3749; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 437, this.context) ) { case 1: { - this.state = 3746; + this.state = 3748; this.optDropBehavior(); } break; @@ -20293,11 +21479,11 @@ export class PostgreSqlParser extends SQLParserBase { case 9: this.enterOuterAlt(localContext, 9); { - this.state = 3749; + this.state = 3751; this.match(PostgreSqlParser.KW_DROP); - this.state = 3750; + this.state = 3752; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 3751; + this.state = 3753; _la = this.tokenStream.LA(1); if(!(_la === 156 || _la === 206)) { this.errorHandler.recoverInline(this); @@ -20306,26 +21492,26 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3753; + this.state = 3755; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 438, this.context) ) { case 1: { - this.state = 3752; + this.state = 3754; this.ifExists(); } break; } - this.state = 3755; + this.state = 3757; this.anyName(); - this.state = 3756; - this.tableAccessMethodClause(); this.state = 3758; + this.tableAccessMethodClause(); + this.state = 3760; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 439, this.context) ) { case 1: { - this.state = 3757; + this.state = 3759; this.optDropBehavior(); } break; @@ -20335,20 +21521,20 @@ export class PostgreSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 3760; + this.state = 3762; this.match(PostgreSqlParser.KW_DROP); - this.state = 3761; + this.state = 3763; this.match(PostgreSqlParser.KW_OWNED); - this.state = 3762; + this.state = 3764; this.match(PostgreSqlParser.KW_BY); - this.state = 3763; - this.roleList(); this.state = 3765; + this.roleList(); + this.state = 3767; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 440, this.context) ) { case 1: { - this.state = 3764; + this.state = 3766; this.optDropBehavior(); } break; @@ -20358,28 +21544,28 @@ export class PostgreSqlParser extends SQLParserBase { case 11: this.enterOuterAlt(localContext, 11); { - this.state = 3767; + this.state = 3769; this.match(PostgreSqlParser.KW_DROP); - this.state = 3768; - this.match(PostgreSqlParser.KW_SUBSCRIPTION); this.state = 3770; + this.match(PostgreSqlParser.KW_SUBSCRIPTION); + this.state = 3772; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 441, this.context) ) { case 1: { - this.state = 3769; + this.state = 3771; this.ifExists(); } break; } - this.state = 3772; - this.colId(); this.state = 3774; + this.colId(); + this.state = 3776; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 442, this.context) ) { case 1: { - this.state = 3773; + this.state = 3775; this.optDropBehavior(); } break; @@ -20389,55 +21575,55 @@ export class PostgreSqlParser extends SQLParserBase { case 12: this.enterOuterAlt(localContext, 12); { - this.state = 3776; + this.state = 3778; this.match(PostgreSqlParser.KW_DROP); - this.state = 3777; - this.match(PostgreSqlParser.KW_TABLESPACE); this.state = 3779; + this.match(PostgreSqlParser.KW_TABLESPACE); + this.state = 3781; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 443, this.context) ) { case 1: { - this.state = 3778; + this.state = 3780; this.ifExists(); } break; } - this.state = 3781; + this.state = 3783; this.tableSpaceName(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 3782; + this.state = 3784; this.match(PostgreSqlParser.KW_DROP); - this.state = 3783; - this.match(PostgreSqlParser.KW_TRANSFORM); this.state = 3785; + this.match(PostgreSqlParser.KW_TRANSFORM); + this.state = 3787; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 3784; + this.state = 3786; this.ifExists(); } } - this.state = 3787; + this.state = 3789; this.match(PostgreSqlParser.KW_FOR); - this.state = 3788; + this.state = 3790; this.typename(); - this.state = 3789; + this.state = 3791; this.match(PostgreSqlParser.KW_LANGUAGE); - this.state = 3790; - this.colId(); this.state = 3792; + this.colId(); + this.state = 3794; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 445, this.context) ) { case 1: { - this.state = 3791; + this.state = 3793; this.optDropBehavior(); } break; @@ -20447,9 +21633,9 @@ export class PostgreSqlParser extends SQLParserBase { case 14: this.enterOuterAlt(localContext, 14); { - this.state = 3794; + this.state = 3796; this.match(PostgreSqlParser.KW_DROP); - this.state = 3795; + this.state = 3797; _la = this.tokenStream.LA(1); if(!(_la === 66 || _la === 99 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -20458,42 +21644,42 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3797; + this.state = 3799; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 446, this.context) ) { case 1: { - this.state = 3796; + this.state = 3798; this.ifExists(); } break; } - this.state = 3799; + this.state = 3801; this.roleList(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 3800; + this.state = 3802; this.match(PostgreSqlParser.KW_DROP); - this.state = 3801; + this.state = 3803; this.match(PostgreSqlParser.KW_USER); - this.state = 3802; - this.match(PostgreSqlParser.KW_MAPPING); this.state = 3804; + this.match(PostgreSqlParser.KW_MAPPING); + this.state = 3806; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 3803; + this.state = 3805; this.ifExists(); } } - this.state = 3806; + this.state = 3808; this.match(PostgreSqlParser.KW_FOR); - this.state = 3809; + this.state = 3811; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CURRENT_ROLE: @@ -20915,81 +22101,81 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 3807; + this.state = 3809; this.roleSpec(); } break; case PostgreSqlParser.KW_USER: { - this.state = 3808; + this.state = 3810; this.match(PostgreSqlParser.KW_USER); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3811; + this.state = 3813; this.match(PostgreSqlParser.KW_SERVER); - this.state = 3812; + this.state = 3814; this.colId(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 3813; + this.state = 3815; this.match(PostgreSqlParser.KW_DROP); - this.state = 3814; - this.match(PostgreSqlParser.KW_DATABASE); this.state = 3816; + this.match(PostgreSqlParser.KW_DATABASE); + this.state = 3818; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 449, this.context) ) { case 1: { - this.state = 3815; + this.state = 3817; this.ifExists(); } break; } - this.state = 3818; + this.state = 3820; this.databaseName(); - this.state = 3832; + this.state = 3834; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 452, this.context) ) { case 1: { - this.state = 3820; + this.state = 3822; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 3819; + this.state = 3821; this.match(PostgreSqlParser.KW_WITH); } } { - this.state = 3822; + this.state = 3824; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 3823; + this.state = 3825; this.match(PostgreSqlParser.KW_FORCE); - this.state = 3828; + this.state = 3830; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3824; + this.state = 3826; this.match(PostgreSqlParser.COMMA); - this.state = 3825; + this.state = 3827; this.match(PostgreSqlParser.KW_FORCE); } } - this.state = 3830; + this.state = 3832; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3831; + this.state = 3833; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -21018,26 +22204,26 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 304, PostgreSqlParser.RULE_objectTypeAnyName); let _la: number; try { - this.state = 3852; + this.state = 3854; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FOREIGN: case PostgreSqlParser.KW_TABLE: this.enterOuterAlt(localContext, 1); { - this.state = 3837; + this.state = 3839; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 63) { { - this.state = 3836; + this.state = 3838; this.match(PostgreSqlParser.KW_FOREIGN); } } - this.state = 3839; + this.state = 3841; this.match(PostgreSqlParser.KW_TABLE); - this.state = 3840; + this.state = 3842; this.tableName(); } break; @@ -21045,19 +22231,19 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_VIEW: this.enterOuterAlt(localContext, 2); { - this.state = 3842; + this.state = 3844; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 259) { { - this.state = 3841; + this.state = 3843; this.match(PostgreSqlParser.KW_MATERIALIZED); } } - this.state = 3844; + this.state = 3846; this.match(PostgreSqlParser.KW_VIEW); - this.state = 3845; + this.state = 3847; this.viewName(); } break; @@ -21068,7 +22254,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_STATISTICS: this.enterOuterAlt(localContext, 3); { - this.state = 3846; + this.state = 3848; _la = this.tokenStream.LA(1); if(!(_la === 108 || _la === 168 || _la === 226 || _la === 328 || _la === 342)) { this.errorHandler.recoverInline(this); @@ -21077,18 +22263,18 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3847; + this.state = 3849; this.anyName(); } break; case PostgreSqlParser.KW_TEXT: this.enterOuterAlt(localContext, 4); { - this.state = 3848; + this.state = 3850; this.match(PostgreSqlParser.KW_TEXT); - this.state = 3849; + this.state = 3851; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 3850; + this.state = 3852; _la = this.tokenStream.LA(1); if(!(_la === 163 || _la === 185 || _la === 283 || _la === 353)) { this.errorHandler.recoverInline(this); @@ -21097,7 +22283,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3851; + this.state = 3853; this.anyName(); } break; @@ -21124,7 +22310,7 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 306, PostgreSqlParser.RULE_objectTypeName); let _la: number; try { - this.state = 3878; + this.state = 3880; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FOREIGN: @@ -21139,111 +22325,111 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_PUBLICATION: this.enterOuterAlt(localContext, 1); { - this.state = 3870; + this.state = 3872; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_EVENT: { - this.state = 3854; + this.state = 3856; this.match(PostgreSqlParser.KW_EVENT); - this.state = 3855; + this.state = 3857; this.match(PostgreSqlParser.KW_TRIGGER); } break; case PostgreSqlParser.KW_ACCESS: { - this.state = 3856; + this.state = 3858; this.match(PostgreSqlParser.KW_ACCESS); - this.state = 3857; + this.state = 3859; this.match(PostgreSqlParser.KW_METHOD); } break; case PostgreSqlParser.KW_EXTENSION: { - this.state = 3858; + this.state = 3860; this.match(PostgreSqlParser.KW_EXTENSION); } break; case PostgreSqlParser.KW_PUBLICATION: { - this.state = 3859; + this.state = 3861; this.match(PostgreSqlParser.KW_PUBLICATION); } break; case PostgreSqlParser.KW_SERVER: { - this.state = 3860; + this.state = 3862; this.match(PostgreSqlParser.KW_SERVER); } break; case PostgreSqlParser.KW_ROLE: { - this.state = 3861; + this.state = 3863; this.match(PostgreSqlParser.KW_ROLE); } break; case PostgreSqlParser.KW_SUBSCRIPTION: { - this.state = 3862; + this.state = 3864; this.match(PostgreSqlParser.KW_SUBSCRIPTION); } break; case PostgreSqlParser.KW_FOREIGN: { - this.state = 3863; + this.state = 3865; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 3864; + this.state = 3866; this.match(PostgreSqlParser.KW_DATA); - this.state = 3865; + this.state = 3867; this.match(PostgreSqlParser.KW_WRAPPER); } break; case PostgreSqlParser.KW_LANGUAGE: case PostgreSqlParser.KW_PROCEDURAL: { - this.state = 3867; + this.state = 3869; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 295) { { - this.state = 3866; + this.state = 3868; this.match(PostgreSqlParser.KW_PROCEDURAL); } } - this.state = 3869; + this.state = 3871; this.match(PostgreSqlParser.KW_LANGUAGE); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3872; + this.state = 3874; this.colId(); } break; case PostgreSqlParser.KW_SCHEMA: this.enterOuterAlt(localContext, 2); { - this.state = 3873; + this.state = 3875; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 3874; + this.state = 3876; this.schemaName(); } break; case PostgreSqlParser.KW_DATABASE: this.enterOuterAlt(localContext, 3); { - this.state = 3875; + this.state = 3877; this.match(PostgreSqlParser.KW_DATABASE); - this.state = 3876; + this.state = 3878; this.databaseName(); } break; case PostgreSqlParser.KW_TABLESPACE: this.enterOuterAlt(localContext, 4); { - this.state = 3877; + this.state = 3879; this.optTableSpace(); } break; @@ -21272,21 +22458,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3880; + this.state = 3882; this.anyName(); - this.state = 3885; + this.state = 3887; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3881; + this.state = 3883; this.match(PostgreSqlParser.COMMA); - this.state = 3882; + this.state = 3884; this.anyName(); } } - this.state = 3887; + this.state = 3889; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -21309,21 +22495,22 @@ export class PostgreSqlParser extends SQLParserBase { public anyName(): AnyNameContext { let localContext = new AnyNameContext(this.context, this.state); this.enterRule(localContext, 310, PostgreSqlParser.RULE_anyName); + let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 3888; - this.colId(); this.state = 3890; + this.colId(); + this.state = 3892; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 461, this.context) ) { - case 1: + _la = this.tokenStream.LA(1); + if (_la === 11) { { - this.state = 3889; + this.state = 3891; this.attrs(); } - break; } + } } catch (re) { @@ -21347,7 +22534,7 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3894; + this.state = 3896; this.errorHandler.sync(this); alternative = 1; do { @@ -21355,9 +22542,9 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 3892; + this.state = 3894; this.match(PostgreSqlParser.DOT); - this.state = 3893; + this.state = 3895; this.colLabel(); } } @@ -21365,7 +22552,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3896; + this.state = 3898; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 462, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -21392,42 +22579,42 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3898; - this.match(PostgreSqlParser.KW_TRUNCATE); this.state = 3900; + this.match(PostgreSqlParser.KW_TRUNCATE); + this.state = 3902; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 92) { { - this.state = 3899; + this.state = 3901; this.match(PostgreSqlParser.KW_TABLE); } } - this.state = 3902; + this.state = 3904; this.truncateTable(); - this.state = 3907; + this.state = 3909; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 3903; + this.state = 3905; this.match(PostgreSqlParser.COMMA); - this.state = 3904; + this.state = 3906; this.truncateTable(); } } - this.state = 3909; + this.state = 3911; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3912; + this.state = 3914; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 465, this.context) ) { case 1: { - this.state = 3910; + this.state = 3912; _la = this.tokenStream.LA(1); if(!(_la === 167 || _la === 314)) { this.errorHandler.recoverInline(this); @@ -21436,17 +22623,17 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3911; + this.state = 3913; this.match(PostgreSqlParser.KW_IDENTITY); } break; } - this.state = 3915; + this.state = 3917; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 466, this.context) ) { case 1: { - this.state = 3914; + this.state = 3916; this.optDropBehavior(); } break; @@ -21474,24 +22661,24 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3918; + this.state = 3920; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 81) { { - this.state = 3917; + this.state = 3919; this.match(PostgreSqlParser.KW_ONLY); } } - this.state = 3920; - this.tableName(); this.state = 3922; + this.tableName(); + this.state = 3924; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 3921; + this.state = 3923; this.match(PostgreSqlParser.STAR); } } @@ -21519,52 +22706,52 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3924; + this.state = 3926; this.match(PostgreSqlParser.KW_COMMENT); - this.state = 3925; + this.state = 3927; this.match(PostgreSqlParser.KW_ON); - this.state = 3984; + this.state = 3986; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 472, this.context) ) { case 1: { - this.state = 3926; + this.state = 3928; this.objectTypeAnyName(); } break; case 2: { - this.state = 3927; + this.state = 3929; this.objectTypeName(); } break; case 3: { - this.state = 3928; + this.state = 3930; this.match(PostgreSqlParser.KW_COLUMN); { - this.state = 3929; - this.colId(); this.state = 3931; + this.colId(); + this.state = 3933; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 469, this.context) ) { case 1: { - this.state = 3930; + this.state = 3932; this.attrs(); } break; } } - this.state = 3933; + this.state = 3935; this.match(PostgreSqlParser.DOT); - this.state = 3934; + this.state = 3936; this.columnName(); } break; case 4: { - this.state = 3936; + this.state = 3938; _la = this.tokenStream.LA(1); if(!(_la === 189 || _la === 360)) { this.errorHandler.recoverInline(this); @@ -21573,65 +22760,65 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3937; + this.state = 3939; this.typename(); } break; case 5: { - this.state = 3938; + this.state = 3940; this.match(PostgreSqlParser.KW_AGGREGATE); - this.state = 3939; + this.state = 3941; this.aggregateWithArgTypes(); } break; case 6: { - this.state = 3940; + this.state = 3942; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 3941; + this.state = 3943; this.functionWithArgTypes(); } break; case 7: { - this.state = 3942; + this.state = 3944; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 3943; + this.state = 3945; this.operatorWithArgTypes(); } break; case 8: { - this.state = 3944; + this.state = 3946; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 3945; + this.state = 3947; this.colId(); - this.state = 3946; + this.state = 3948; this.match(PostgreSqlParser.KW_ON); - this.state = 3952; + this.state = 3954; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 471, this.context) ) { case 1: { - this.state = 3947; + this.state = 3949; this.tableName(); } break; case 2: { { - this.state = 3949; + this.state = 3951; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 470, this.context) ) { case 1: { - this.state = 3948; + this.state = 3950; this.match(PostgreSqlParser.KW_DOMAIN); } break; } - this.state = 3951; + this.state = 3953; this.anyName(); } } @@ -21641,7 +22828,7 @@ export class PostgreSqlParser extends SQLParserBase { break; case 9: { - this.state = 3954; + this.state = 3956; _la = this.tokenStream.LA(1); if(!(_la === 321 || _la === 357 || _la === 445)) { this.errorHandler.recoverInline(this); @@ -21650,49 +22837,49 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3955; + this.state = 3957; this.colId(); - this.state = 3956; + this.state = 3958; this.match(PostgreSqlParser.KW_ON); - this.state = 3957; + this.state = 3959; this.anyName(); } break; case 10: { - this.state = 3959; + this.state = 3961; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 3960; + this.state = 3962; this.procedureWithArgTypes(); } break; case 11: { - this.state = 3961; + this.state = 3963; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 3962; + this.state = 3964; this.routineWithArgTypes(); } break; case 12: { - this.state = 3963; + this.state = 3965; this.match(PostgreSqlParser.KW_TRANSFORM); - this.state = 3964; + this.state = 3966; this.match(PostgreSqlParser.KW_FOR); - this.state = 3965; + this.state = 3967; this.typename(); - this.state = 3966; + this.state = 3968; this.match(PostgreSqlParser.KW_LANGUAGE); - this.state = 3967; + this.state = 3969; this.colId(); } break; case 13: { - this.state = 3969; + this.state = 3971; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 3970; + this.state = 3972; _la = this.tokenStream.LA(1); if(!(_la === 156 || _la === 206)) { this.errorHandler.recoverInline(this); @@ -21701,42 +22888,42 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3971; + this.state = 3973; this.anyName(); - this.state = 3972; + this.state = 3974; this.tableAccessMethodClause(); } break; case 14: { - this.state = 3974; + this.state = 3976; this.match(PostgreSqlParser.KW_LARGE); - this.state = 3975; + this.state = 3977; this.match(PostgreSqlParser.KW_OBJECT); - this.state = 3976; + this.state = 3978; this.numericOnly(); } break; case 15: { - this.state = 3977; - this.match(PostgreSqlParser.KW_CAST); - this.state = 3978; - this.match(PostgreSqlParser.OPEN_PAREN); this.state = 3979; - this.typename(); + this.match(PostgreSqlParser.KW_CAST); this.state = 3980; - this.match(PostgreSqlParser.KW_AS); + this.match(PostgreSqlParser.OPEN_PAREN); this.state = 3981; this.typename(); this.state = 3982; + this.match(PostgreSqlParser.KW_AS); + this.state = 3983; + this.typename(); + this.state = 3984; this.match(PostgreSqlParser.CLOSE_PAREN); } break; } - this.state = 3986; + this.state = 3988; this.match(PostgreSqlParser.KW_IS); - this.state = 3989; + this.state = 3991; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: @@ -21744,13 +22931,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 3987; + this.state = 3989; this.stringConst(); } break; case PostgreSqlParser.KW_NULL: { - this.state = 3988; + this.state = 3990; this.match(PostgreSqlParser.KW_NULL); } break; @@ -21780,30 +22967,30 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3991; + this.state = 3993; this.match(PostgreSqlParser.KW_SECURITY); - this.state = 3992; + this.state = 3994; this.match(PostgreSqlParser.KW_LABEL); - this.state = 3995; + this.state = 3997; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 3993; + this.state = 3995; this.match(PostgreSqlParser.KW_FOR); - this.state = 3994; + this.state = 3996; this.nonReservedWordOrStringConst(); } } - this.state = 3997; + this.state = 3999; this.match(PostgreSqlParser.KW_ON); - this.state = 4015; + this.state = 4017; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 475, this.context) ) { case 1: { - this.state = 3998; + this.state = 4000; _la = this.tokenStream.LA(1); if(!(_la === 189 || _la === 360)) { this.errorHandler.recoverInline(this); @@ -21812,76 +22999,76 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3999; + this.state = 4001; this.typename(); } break; case 2: { - this.state = 4000; + this.state = 4002; this.match(PostgreSqlParser.KW_AGGREGATE); - this.state = 4001; + this.state = 4003; this.aggregateWithArgTypes(); } break; case 3: { - this.state = 4002; + this.state = 4004; this.match(PostgreSqlParser.KW_COLUMN); - this.state = 4003; + this.state = 4005; this.columnName(); } break; case 4: { - this.state = 4004; + this.state = 4006; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 4005; + this.state = 4007; this.functionWithArgTypes(); } break; case 5: { - this.state = 4006; + this.state = 4008; this.match(PostgreSqlParser.KW_LARGE); - this.state = 4007; + this.state = 4009; this.match(PostgreSqlParser.KW_OBJECT); - this.state = 4008; + this.state = 4010; this.numericOnly(); } break; case 6: { - this.state = 4009; + this.state = 4011; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 4010; + this.state = 4012; this.procedureWithArgTypes(); } break; case 7: { - this.state = 4011; + this.state = 4013; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 4012; + this.state = 4014; this.routineWithArgTypes(); } break; case 8: { - this.state = 4013; + this.state = 4015; this.objectTypeAnyName(); } break; case 9: { - this.state = 4014; + this.state = 4016; this.objectTypeName(); } break; } - this.state = 4017; + this.state = 4019; this.match(PostgreSqlParser.KW_IS); - this.state = 4020; + this.state = 4022; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: @@ -21889,13 +23076,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 4018; + this.state = 4020; this.stringConst(); } break; case PostgreSqlParser.KW_NULL: { - this.state = 4019; + this.state = 4021; this.match(PostgreSqlParser.KW_NULL); } break; @@ -21925,7 +23112,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4022; + this.state = 4024; _la = this.tokenStream.LA(1); if(!(_la === 61 || _la === 265)) { this.errorHandler.recoverInline(this); @@ -21934,7 +23121,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4023; + this.state = 4025; this.fetch_args(); } } @@ -21957,18 +23144,18 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 324, PostgreSqlParser.RULE_fetch_args); let _la: number; try { - this.state = 4068; + this.state = 4070; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 488, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4026; + this.state = 4028; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 477, this.context) ) { case 1: { - this.state = 4025; + this.state = 4027; _la = this.tokenStream.LA(1); if(!(_la === 207 || _la === 249 || _la === 268 || _la === 293)) { this.errorHandler.recoverInline(this); @@ -21980,29 +23167,29 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 4029; + this.state = 4031; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 4028; + this.state = 4030; this.fromIn(); } } - this.state = 4031; + this.state = 4033; this.colId(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4033; + this.state = 4035; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 130 || _la === 307) { { - this.state = 4032; + this.state = 4034; _la = this.tokenStream.LA(1); if(!(_la === 130 || _la === 307)) { this.errorHandler.recoverInline(this); @@ -22014,86 +23201,86 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 4035; - this.signedConst(); this.state = 4037; + this.signedConst(); + this.state = 4039; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 4036; + this.state = 4038; this.fromIn(); } } - this.state = 4039; + this.state = 4041; this.colId(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4041; - this.match(PostgreSqlParser.KW_FORWARD); this.state = 4043; + this.match(PostgreSqlParser.KW_FORWARD); + this.state = 4045; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12 || _la === 13 || _la === 574) { { - this.state = 4042; + this.state = 4044; this.signedConst(); } } - this.state = 4046; + this.state = 4048; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 4045; + this.state = 4047; this.fromIn(); } } - this.state = 4048; + this.state = 4050; this.colId(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4050; + this.state = 4052; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 210) { { - this.state = 4049; + this.state = 4051; this.match(PostgreSqlParser.KW_FORWARD); } } - this.state = 4052; - this.match(PostgreSqlParser.KW_ALL); this.state = 4054; + this.match(PostgreSqlParser.KW_ALL); + this.state = 4056; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 4053; + this.state = 4055; this.fromIn(); } } - this.state = 4056; + this.state = 4058; this.colId(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4057; + this.state = 4059; this.match(PostgreSqlParser.KW_BACKWARD); - this.state = 4062; + this.state = 4064; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ALL: @@ -22494,12 +23681,12 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 4059; + this.state = 4061; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 30) { { - this.state = 4058; + this.state = 4060; this.match(PostgreSqlParser.KW_ALL); } } @@ -22510,24 +23697,24 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.MINUS: case PostgreSqlParser.Integral: { - this.state = 4061; + this.state = 4063; this.signedConst(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4065; + this.state = 4067; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 4064; + this.state = 4066; this.fromIn(); } } - this.state = 4067; + this.state = 4069; this.colId(); } break; @@ -22554,7 +23741,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4070; + this.state = 4072; _la = this.tokenStream.LA(1); if(!(_la === 64 || _la === 68)) { this.errorHandler.recoverInline(this); @@ -22585,28 +23772,28 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4072; + this.state = 4074; this.match(PostgreSqlParser.KW_GRANT); - this.state = 4073; + this.state = 4075; this.privileges(); - this.state = 4074; + this.state = 4076; this.match(PostgreSqlParser.KW_ON); - this.state = 4075; + this.state = 4077; this.privilegeTarget(); - this.state = 4076; + this.state = 4078; this.match(PostgreSqlParser.KW_TO); - this.state = 4077; + this.state = 4079; this.granteeList(); - this.state = 4081; + this.state = 4083; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 489, this.context) ) { case 1: { - this.state = 4078; + this.state = 4080; this.match(PostgreSqlParser.KW_WITH); - this.state = 4079; + this.state = 4081; this.match(PostgreSqlParser.KW_GRANT); - this.state = 4080; + this.state = 4082; this.match(PostgreSqlParser.KW_OPTION); } break; @@ -22634,38 +23821,38 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4083; + this.state = 4085; this.match(PostgreSqlParser.KW_REVOKE); - this.state = 4087; + this.state = 4089; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4084; + this.state = 4086; this.match(PostgreSqlParser.KW_GRANT); - this.state = 4085; + this.state = 4087; this.match(PostgreSqlParser.KW_OPTION); - this.state = 4086; + this.state = 4088; this.match(PostgreSqlParser.KW_FOR); } } - this.state = 4089; + this.state = 4091; this.privileges(); - this.state = 4090; + this.state = 4092; this.match(PostgreSqlParser.KW_ON); - this.state = 4091; + this.state = 4093; this.privilegeTarget(); - this.state = 4092; + this.state = 4094; this.match(PostgreSqlParser.KW_FROM); - this.state = 4093; - this.granteeList(); this.state = 4095; + this.granteeList(); + this.state = 4097; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 491, this.context) ) { case 1: { - this.state = 4094; + this.state = 4096; this.optDropBehavior(); } break; @@ -22691,27 +23878,27 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 332, PostgreSqlParser.RULE_privileges); let _la: number; try { - this.state = 4120; + this.state = 4122; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 496, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4097; + this.state = 4099; this.privilege(); - this.state = 4102; + this.state = 4104; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4098; + this.state = 4100; this.match(PostgreSqlParser.COMMA); - this.state = 4099; + this.state = 4101; this.privilege(); } } - this.state = 4104; + this.state = 4106; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22720,24 +23907,24 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4105; - this.match(PostgreSqlParser.KW_ALL); this.state = 4107; + this.match(PostgreSqlParser.KW_ALL); + this.state = 4109; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 294) { { - this.state = 4106; + this.state = 4108; this.match(PostgreSqlParser.KW_PRIVILEGES); } } - this.state = 4110; + this.state = 4112; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 4109; + this.state = 4111; this.optColumnList(); } } @@ -22747,21 +23934,21 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4112; + this.state = 4114; this.beforePrivilegeSelect(); - this.state = 4117; + this.state = 4119; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4113; + this.state = 4115; this.match(PostgreSqlParser.COMMA); - this.state = 4114; + this.state = 4116; this.beforePrivilegeSelect(); } } - this.state = 4119; + this.state = 4121; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -22790,7 +23977,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4122; + this.state = 4124; _la = this.tokenStream.LA(1); if(!(_la === 46 || _la === 88 || _la === 182 || _la === 202 || _la === 241 || ((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 131173) !== 0) || ((((_la - 521)) & ~0x1F) === 0 && ((1 << (_la - 521)) & 7) !== 0))) { this.errorHandler.recoverInline(this); @@ -22822,24 +24009,24 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4128; + this.state = 4130; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_SELECT: { - this.state = 4124; + this.state = 4126; this.match(PostgreSqlParser.KW_SELECT); } break; case PostgreSqlParser.KW_REFERENCES: { - this.state = 4125; + this.state = 4127; this.match(PostgreSqlParser.KW_REFERENCES); } break; case PostgreSqlParser.KW_CREATE: { - this.state = 4126; + this.state = 4128; this.match(PostgreSqlParser.KW_CREATE); } break; @@ -23238,19 +24425,19 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 4127; + this.state = 4129; this.colId(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4131; + this.state = 4133; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 4130; + this.state = 4132; this.optColumnList(); } } @@ -23276,59 +24463,59 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 338, PostgreSqlParser.RULE_privilegeTarget); let _la: number; try { - this.state = 4178; + this.state = 4180; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 503, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4133; + this.state = 4135; this.match(PostgreSqlParser.KW_TABLE); - this.state = 4134; + this.state = 4136; this.tableNameList(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4136; + this.state = 4138; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 499, this.context) ) { case 1: { - this.state = 4135; + this.state = 4137; this.match(PostgreSqlParser.KW_SEQUENCE); } break; } - this.state = 4138; + this.state = 4140; this.qualifiedNameList(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4146; + this.state = 4148; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FOREIGN: { - this.state = 4139; + this.state = 4141; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 4143; + this.state = 4145; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DATA: { - this.state = 4140; + this.state = 4142; this.match(PostgreSqlParser.KW_DATA); - this.state = 4141; + this.state = 4143; this.match(PostgreSqlParser.KW_WRAPPER); } break; case PostgreSqlParser.KW_SERVER: { - this.state = 4142; + this.state = 4144; this.match(PostgreSqlParser.KW_SERVER); } break; @@ -23339,57 +24526,57 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_LANGUAGE: { - this.state = 4145; + this.state = 4147; this.match(PostgreSqlParser.KW_LANGUAGE); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4148; + this.state = 4150; this.nameList(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4149; + this.state = 4151; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 4150; + this.state = 4152; this.functionWithArgTypesList(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4151; + this.state = 4153; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 4152; + this.state = 4154; this.procedureWithArgTypesList(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4153; + this.state = 4155; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 4154; + this.state = 4156; this.routineWithArgTypesList(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4155; + this.state = 4157; this.match(PostgreSqlParser.KW_DATABASE); - this.state = 4156; + this.state = 4158; this.databaseNameList(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4157; + this.state = 4159; _la = this.tokenStream.LA(1); if(!(_la === 189 || _la === 360)) { this.errorHandler.recoverInline(this); @@ -23398,32 +24585,32 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4158; + this.state = 4160; this.anyNameList(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 4159; + this.state = 4161; this.match(PostgreSqlParser.KW_LARGE); - this.state = 4160; + this.state = 4162; this.match(PostgreSqlParser.KW_OBJECT); - this.state = 4161; + this.state = 4163; this.numericOnly(); - this.state = 4166; + this.state = 4168; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4162; + this.state = 4164; this.match(PostgreSqlParser.COMMA); - this.state = 4163; + this.state = 4165; this.numericOnly(); } } - this.state = 4168; + this.state = 4170; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -23432,27 +24619,27 @@ export class PostgreSqlParser extends SQLParserBase { case 10: this.enterOuterAlt(localContext, 10); { - this.state = 4169; + this.state = 4171; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 4170; + this.state = 4172; this.schemaNameList(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 4171; + this.state = 4173; this.match(PostgreSqlParser.KW_TABLESPACE); - this.state = 4172; + this.state = 4174; this.tableSpaceNameList(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 4173; + this.state = 4175; this.match(PostgreSqlParser.KW_ALL); - this.state = 4174; + this.state = 4176; _la = this.tokenStream.LA(1); if(!(_la === 212 || _la === 329 || _la === 350 || _la === 455 || _la === 457)) { this.errorHandler.recoverInline(this); @@ -23461,11 +24648,11 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4175; + this.state = 4177; this.match(PostgreSqlParser.KW_IN); - this.state = 4176; + this.state = 4178; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 4177; + this.state = 4179; this.schemaNameList(); } break; @@ -23493,44 +24680,44 @@ export class PostgreSqlParser extends SQLParserBase { this.enterOuterAlt(localContext, 1); { { - this.state = 4181; + this.state = 4183; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 66) { { - this.state = 4180; + this.state = 4182; this.match(PostgreSqlParser.KW_GROUP); } } - this.state = 4183; + this.state = 4185; this.roleSpec(); } - this.state = 4192; + this.state = 4194; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4185; + this.state = 4187; this.match(PostgreSqlParser.COMMA); { - this.state = 4187; + this.state = 4189; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 66) { { - this.state = 4186; + this.state = 4188; this.match(PostgreSqlParser.KW_GROUP); } } - this.state = 4189; + this.state = 4191; this.roleSpec(); } } } - this.state = 4194; + this.state = 4196; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -23557,54 +24744,54 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4195; + this.state = 4197; this.match(PostgreSqlParser.KW_GRANT); - this.state = 4196; + this.state = 4198; this.privilege(); - this.state = 4201; + this.state = 4203; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4197; + this.state = 4199; this.match(PostgreSqlParser.COMMA); - this.state = 4198; + this.state = 4200; this.privilege(); } } - this.state = 4203; + this.state = 4205; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4204; + this.state = 4206; this.match(PostgreSqlParser.KW_TO); - this.state = 4205; + this.state = 4207; this.roleList(); - this.state = 4209; + this.state = 4211; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 508, this.context) ) { case 1: { - this.state = 4206; + this.state = 4208; this.match(PostgreSqlParser.KW_WITH); - this.state = 4207; + this.state = 4209; this.match(PostgreSqlParser.KW_ADMIN); - this.state = 4208; + this.state = 4210; this.match(PostgreSqlParser.KW_OPTION); } break; } - this.state = 4214; + this.state = 4216; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 509, this.context) ) { case 1: { - this.state = 4211; + this.state = 4213; this.match(PostgreSqlParser.KW_GRANTED); - this.state = 4212; + this.state = 4214; this.match(PostgreSqlParser.KW_BY); - this.state = 4213; + this.state = 4215; this.roleSpec(); } break; @@ -23632,64 +24819,64 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4216; + this.state = 4218; this.match(PostgreSqlParser.KW_REVOKE); - this.state = 4220; + this.state = 4222; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 510, this.context) ) { case 1: { - this.state = 4217; + this.state = 4219; this.match(PostgreSqlParser.KW_ADMIN); - this.state = 4218; + this.state = 4220; this.match(PostgreSqlParser.KW_OPTION); - this.state = 4219; + this.state = 4221; this.match(PostgreSqlParser.KW_FOR); } break; } - this.state = 4222; + this.state = 4224; this.privilege(); - this.state = 4227; + this.state = 4229; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4223; + this.state = 4225; this.match(PostgreSqlParser.COMMA); - this.state = 4224; + this.state = 4226; this.privilege(); } } - this.state = 4229; + this.state = 4231; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4230; + this.state = 4232; this.match(PostgreSqlParser.KW_FROM); - this.state = 4231; + this.state = 4233; this.roleList(); - this.state = 4235; + this.state = 4237; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 512, this.context) ) { case 1: { - this.state = 4232; + this.state = 4234; this.match(PostgreSqlParser.KW_GRANTED); - this.state = 4233; + this.state = 4235; this.match(PostgreSqlParser.KW_BY); - this.state = 4234; + this.state = 4236; this.roleSpec(); } break; } - this.state = 4238; + this.state = 4240; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 513, this.context) ) { case 1: { - this.state = 4237; + this.state = 4239; this.optDropBehavior(); } break; @@ -23717,35 +24904,35 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4240; + this.state = 4242; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4241; + this.state = 4243; this.match(PostgreSqlParser.KW_DEFAULT); - this.state = 4242; + this.state = 4244; this.match(PostgreSqlParser.KW_PRIVILEGES); - this.state = 4251; + this.state = 4253; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 62 || _la === 68) { { - this.state = 4249; + this.state = 4251; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_IN: { - this.state = 4243; + this.state = 4245; this.match(PostgreSqlParser.KW_IN); - this.state = 4244; + this.state = 4246; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 4245; + this.state = 4247; this.schemaNameList(); } break; case PostgreSqlParser.KW_FOR: { - this.state = 4246; + this.state = 4248; this.match(PostgreSqlParser.KW_FOR); - this.state = 4247; + this.state = 4249; _la = this.tokenStream.LA(1); if(!(_la === 99 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -23754,7 +24941,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4248; + this.state = 4250; this.roleList(); } break; @@ -23762,11 +24949,11 @@ export class PostgreSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 4253; + this.state = 4255; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4254; + this.state = 4256; this.defaclaction(); } } @@ -23789,34 +24976,34 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 348, PostgreSqlParser.RULE_defaclaction); let _la: number; try { - this.state = 4281; + this.state = 4283; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_GRANT: this.enterOuterAlt(localContext, 1); { - this.state = 4256; + this.state = 4258; this.match(PostgreSqlParser.KW_GRANT); - this.state = 4257; + this.state = 4259; this.privileges(); - this.state = 4258; + this.state = 4260; this.match(PostgreSqlParser.KW_ON); - this.state = 4259; + this.state = 4261; this.defaclPrivilegeTarget(); - this.state = 4260; + this.state = 4262; this.match(PostgreSqlParser.KW_TO); - this.state = 4261; + this.state = 4263; this.granteeList(); - this.state = 4265; + this.state = 4267; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 516, this.context) ) { case 1: { - this.state = 4262; + this.state = 4264; this.match(PostgreSqlParser.KW_WITH); - this.state = 4263; + this.state = 4265; this.match(PostgreSqlParser.KW_GRANT); - this.state = 4264; + this.state = 4266; this.match(PostgreSqlParser.KW_OPTION); } break; @@ -23826,38 +25013,38 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_REVOKE: this.enterOuterAlt(localContext, 2); { - this.state = 4267; + this.state = 4269; this.match(PostgreSqlParser.KW_REVOKE); - this.state = 4271; + this.state = 4273; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65) { { - this.state = 4268; + this.state = 4270; this.match(PostgreSqlParser.KW_GRANT); - this.state = 4269; + this.state = 4271; this.match(PostgreSqlParser.KW_OPTION); - this.state = 4270; + this.state = 4272; this.match(PostgreSqlParser.KW_FOR); } } - this.state = 4273; + this.state = 4275; this.privileges(); - this.state = 4274; + this.state = 4276; this.match(PostgreSqlParser.KW_ON); - this.state = 4275; + this.state = 4277; this.defaclPrivilegeTarget(); - this.state = 4276; + this.state = 4278; this.match(PostgreSqlParser.KW_FROM); - this.state = 4277; - this.granteeList(); this.state = 4279; + this.granteeList(); + this.state = 4281; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 518, this.context) ) { case 1: { - this.state = 4278; + this.state = 4280; this.optDropBehavior(); } break; @@ -23889,7 +25076,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4283; + this.state = 4285; _la = this.tokenStream.LA(1); if(!(_la === 212 || _la === 329 || _la === 350 || _la === 361 || _la === 455 || _la === 456)) { this.errorHandler.recoverInline(this); @@ -23921,126 +25108,126 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4285; - this.match(PostgreSqlParser.KW_CREATE); this.state = 4287; + this.match(PostgreSqlParser.KW_CREATE); + this.state = 4289; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 98) { { - this.state = 4286; + this.state = 4288; this.match(PostgreSqlParser.KW_UNIQUE); } } - this.state = 4289; - this.match(PostgreSqlParser.KW_INDEX); this.state = 4291; + this.match(PostgreSqlParser.KW_INDEX); + this.state = 4293; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 4290; + this.state = 4292; this.match(PostgreSqlParser.KW_CONCURRENTLY); } } - this.state = 4294; + this.state = 4296; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 522, this.context) ) { case 1: { - this.state = 4293; + this.state = 4295; this.ifNotExists(); } break; } - this.state = 4297; + this.state = 4299; 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)) & 3221570659) !== 0) || _la === 586) { { - this.state = 4296; + this.state = 4298; this.colId(); } } - this.state = 4299; + this.state = 4301; this.match(PostgreSqlParser.KW_ON); - this.state = 4300; - this.relationExpr(); this.state = 4302; + this.relationExpr(); + this.state = 4304; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 4301; + this.state = 4303; this.tableAccessMethodClause(); } } - this.state = 4304; + this.state = 4306; this.indexParams(); - this.state = 4307; + this.state = 4309; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 525, this.context) ) { case 1: { - this.state = 4305; + this.state = 4307; this.match(PostgreSqlParser.KW_INCLUDE); - this.state = 4306; + this.state = 4308; this.indexParams(); } break; } - this.state = 4314; + this.state = 4316; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 527, this.context) ) { case 1: { - this.state = 4309; - this.match(PostgreSqlParser.KW_NULLS); this.state = 4311; + this.match(PostgreSqlParser.KW_NULLS); + this.state = 4313; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 4310; + this.state = 4312; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 4313; + this.state = 4315; this.match(PostgreSqlParser.KW_DISTINCT); } break; } - this.state = 4317; + this.state = 4319; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 528, this.context) ) { case 1: { - this.state = 4316; + this.state = 4318; this.optRelOptions(); } break; } - this.state = 4320; + this.state = 4322; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 529, this.context) ) { case 1: { - this.state = 4319; + this.state = 4321; this.optTableSpace(); } break; } - this.state = 4323; + this.state = 4325; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 4322; + this.state = 4324; this.whereClause(); } } @@ -24068,27 +25255,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4325; + this.state = 4327; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4326; + this.state = 4328; this.indexElem(); - this.state = 4331; + this.state = 4333; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4327; + this.state = 4329; this.match(PostgreSqlParser.COMMA); - this.state = 4328; + this.state = 4330; this.indexElem(); } } - this.state = 4333; + this.state = 4335; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4334; + this.state = 4336; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -24113,53 +25300,53 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4342; + this.state = 4344; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 532, this.context) ) { case 1: { - this.state = 4336; + this.state = 4338; this.columnName(); } break; case 2: { - this.state = 4337; + this.state = 4339; this.funcExprWindowless(); } break; case 3: { - this.state = 4338; + this.state = 4340; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4339; + this.state = 4341; this.expression(); - this.state = 4340; + this.state = 4342; this.match(PostgreSqlParser.CLOSE_PAREN); } break; } - this.state = 4345; + this.state = 4347; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 43) { { - this.state = 4344; + this.state = 4346; this.collateClause(); } } - this.state = 4353; + this.state = 4355; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 535, this.context) ) { case 1: { - this.state = 4348; + this.state = 4350; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 534, this.context) ) { case 1: { - this.state = 4347; + this.state = 4349; this.anyName(); } break; @@ -24168,19 +25355,19 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 4350; + this.state = 4352; this.anyName(); - this.state = 4351; + this.state = 4353; this.relOptions(); } break; } - this.state = 4356; + this.state = 4358; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 37 || _la === 55) { { - this.state = 4355; + this.state = 4357; _la = this.tokenStream.LA(1); if(!(_la === 37 || _la === 55)) { this.errorHandler.recoverInline(this); @@ -24192,14 +25379,14 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 4360; + this.state = 4362; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 273) { { - this.state = 4358; + this.state = 4360; this.match(PostgreSqlParser.KW_NULLS); - this.state = 4359; + this.state = 4361; _la = this.tokenStream.LA(1); if(!(_la === 207 || _la === 249)) { this.errorHandler.recoverInline(this); @@ -24235,34 +25422,34 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4362; - this.match(PostgreSqlParser.KW_CREATE); this.state = 4364; + this.match(PostgreSqlParser.KW_CREATE); + this.state = 4366; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 4363; + this.state = 4365; this.orReplaceOpt(); } } - this.state = 4370; + this.state = 4372; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FUNCTION: { - this.state = 4366; + this.state = 4368; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 4367; + this.state = 4369; this.functionNameCreate(); } break; case PostgreSqlParser.KW_PROCEDURE: { - this.state = 4368; + this.state = 4370; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 4369; + this.state = 4371; this.procedureNameCreate(); } break; @@ -24270,45 +25457,45 @@ export class PostgreSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } { - this.state = 4372; + this.state = 4374; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4381; + this.state = 4383; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53 || _la === 68 || ((((_la - 101)) & ~0x1F) === 0 && ((1 << (_la - 101)) & 4294967265) !== 0) || ((((_la - 133)) & ~0x1F) === 0 && ((1 << (_la - 133)) & 4294967295) !== 0) || ((((_la - 165)) & ~0x1F) === 0 && ((1 << (_la - 165)) & 4294967295) !== 0) || ((((_la - 197)) & ~0x1F) === 0 && ((1 << (_la - 197)) & 4294967295) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 4373; + this.state = 4375; this.funcArgWithDefault(); - this.state = 4378; + this.state = 4380; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4374; + this.state = 4376; this.match(PostgreSqlParser.COMMA); - this.state = 4375; + this.state = 4377; this.funcArgWithDefault(); } } - this.state = 4380; + this.state = 4382; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 4383; + this.state = 4385; this.match(PostgreSqlParser.CLOSE_PAREN); } - this.state = 4401; + this.state = 4403; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 544, this.context) ) { case 1: { - this.state = 4385; + this.state = 4387; this.match(PostgreSqlParser.KW_RETURNS); - this.state = 4399; + this.state = 4401; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -24727,36 +25914,36 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 4386; + this.state = 4388; this.funcType(); } break; case PostgreSqlParser.KW_TABLE: { - this.state = 4387; + this.state = 4389; this.match(PostgreSqlParser.KW_TABLE); { - this.state = 4388; + this.state = 4390; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4389; + this.state = 4391; this.tableFuncColumn(); - this.state = 4394; + this.state = 4396; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4390; + this.state = 4392; this.match(PostgreSqlParser.COMMA); - this.state = 4391; + this.state = 4393; this.tableFuncColumn(); } } - this.state = 4396; + this.state = 4398; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4397; + this.state = 4399; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -24767,7 +25954,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 4404; + this.state = 4406; this.errorHandler.sync(this); alternative = 1; do { @@ -24775,7 +25962,7 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 4403; + this.state = 4405; this.createFuncOptItem(); } } @@ -24783,22 +25970,22 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 4406; + this.state = 4408; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 545, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); - this.state = 4413; + this.state = 4415; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 546, this.context) ) { case 1: { - this.state = 4408; + this.state = 4410; this.match(PostgreSqlParser.KW_WITH); - this.state = 4409; + this.state = 4411; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4410; + this.state = 4412; this.nameList(); - this.state = 4411; + this.state = 4413; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -24825,9 +26012,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4415; + this.state = 4417; this.match(PostgreSqlParser.KW_OR); - this.state = 4416; + this.state = 4418; this.match(PostgreSqlParser.KW_REPLACE); } } @@ -24852,19 +26039,19 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4418; - this.match(PostgreSqlParser.OPEN_PAREN); this.state = 4420; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 4422; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53 || _la === 68 || ((((_la - 101)) & ~0x1F) === 0 && ((1 << (_la - 101)) & 4294967265) !== 0) || ((((_la - 133)) & ~0x1F) === 0 && ((1 << (_la - 133)) & 4294967295) !== 0) || ((((_la - 165)) & ~0x1F) === 0 && ((1 << (_la - 165)) & 4294967295) !== 0) || ((((_la - 197)) & ~0x1F) === 0 && ((1 << (_la - 197)) & 4294967295) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 4419; + this.state = 4421; this.funcArgsList(); } } - this.state = 4422; + this.state = 4424; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -24889,21 +26076,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4424; + this.state = 4426; this.funcArg(); - this.state = 4429; + this.state = 4431; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4425; + this.state = 4427; this.match(PostgreSqlParser.COMMA); - this.state = 4426; + this.state = 4428; this.funcArg(); } } - this.state = 4431; + this.state = 4433; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -24930,21 +26117,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4432; + this.state = 4434; this.routineWithArgTypes(); - this.state = 4437; + this.state = 4439; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4433; + this.state = 4435; this.match(PostgreSqlParser.COMMA); - this.state = 4434; + this.state = 4436; this.routineWithArgTypes(); } } - this.state = 4439; + this.state = 4441; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -24968,116 +26155,116 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new RoutineWithArgTypesContext(this.context, this.state); this.enterRule(localContext, 368, PostgreSqlParser.RULE_routineWithArgTypes); try { - this.state = 4445; + this.state = 4447; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 550, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4440; + this.state = 4442; this.routineName(); - this.state = 4441; - this.funcArgs(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { this.state = 4443; - this.typeFuncNameKeyword(); - } - break; - case 3: - this.enterOuterAlt(localContext, 3); - { - this.state = 4444; - this.qualifiedName(); - } - break; - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public procedureWithArgTypesList(): ProcedureWithArgTypesListContext { - let localContext = new ProcedureWithArgTypesListContext(this.context, this.state); - this.enterRule(localContext, 370, PostgreSqlParser.RULE_procedureWithArgTypesList); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 4447; - this.procedureWithArgTypes(); - this.state = 4452; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 6) { - { - { - this.state = 4448; - this.match(PostgreSqlParser.COMMA); - this.state = 4449; - this.procedureWithArgTypes(); - } - } - this.state = 4454; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } - } - } - 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 procedureWithArgTypes(): ProcedureWithArgTypesContext { - let localContext = new ProcedureWithArgTypesContext(this.context, this.state); - this.enterRule(localContext, 372, PostgreSqlParser.RULE_procedureWithArgTypes); - try { - this.state = 4460; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 552, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 4455; - this.procedureName(); - this.state = 4456; this.funcArgs(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4458; + this.state = 4445; this.typeFuncNameKeyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4459; + this.state = 4446; + this.qualifiedName(); + } + break; + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public procedureWithArgTypesList(): ProcedureWithArgTypesListContext { + let localContext = new ProcedureWithArgTypesListContext(this.context, this.state); + this.enterRule(localContext, 370, PostgreSqlParser.RULE_procedureWithArgTypesList); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 4449; + this.procedureWithArgTypes(); + this.state = 4454; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 6) { + { + { + this.state = 4450; + this.match(PostgreSqlParser.COMMA); + this.state = 4451; + this.procedureWithArgTypes(); + } + } + this.state = 4456; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } + } + } + 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 procedureWithArgTypes(): ProcedureWithArgTypesContext { + let localContext = new ProcedureWithArgTypesContext(this.context, this.state); + this.enterRule(localContext, 372, PostgreSqlParser.RULE_procedureWithArgTypes); + try { + this.state = 4462; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 552, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 4457; + this.procedureName(); + this.state = 4458; + this.funcArgs(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 4460; + this.typeFuncNameKeyword(); + } + break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 4461; this.qualifiedName(); } break; @@ -25104,21 +26291,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4462; + this.state = 4464; this.functionWithArgTypes(); - this.state = 4467; + this.state = 4469; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4463; + this.state = 4465; this.match(PostgreSqlParser.COMMA); - this.state = 4464; + this.state = 4466; this.functionWithArgTypes(); } } - this.state = 4469; + this.state = 4471; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -25142,29 +26329,29 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new FunctionWithArgTypesContext(this.context, this.state); this.enterRule(localContext, 376, PostgreSqlParser.RULE_functionWithArgTypes); try { - this.state = 4475; + this.state = 4477; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 554, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4470; + this.state = 4472; this.functionName(); - this.state = 4471; + this.state = 4473; this.funcArgs(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4473; + this.state = 4475; this.typeFuncNameKeyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4474; + this.state = 4476; this.qualifiedName(); } break; @@ -25190,19 +26377,19 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4485; + this.state = 4487; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 557, this.context) ) { case 1: { - this.state = 4477; - this.argClass(); this.state = 4479; + this.argClass(); + this.state = 4481; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 555, this.context) ) { case 1: { - this.state = 4478; + this.state = 4480; this.typeFunctionName(); } break; @@ -25211,14 +26398,14 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 4481; - this.typeFunctionName(); this.state = 4483; + this.typeFunctionName(); + this.state = 4485; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 556, this.context) ) { case 1: { - this.state = 4482; + this.state = 4484; this.argClass(); } break; @@ -25226,7 +26413,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 4487; + this.state = 4489; this.funcType(); } } @@ -25248,20 +26435,20 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ArgClassContext(this.context, this.state); this.enterRule(localContext, 380, PostgreSqlParser.RULE_argClass); try { - this.state = 4496; + this.state = 4498; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_IN: this.enterOuterAlt(localContext, 1); { - this.state = 4489; - this.match(PostgreSqlParser.KW_IN); this.state = 4491; + this.match(PostgreSqlParser.KW_IN); + this.state = 4493; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 558, this.context) ) { case 1: { - this.state = 4490; + this.state = 4492; this.match(PostgreSqlParser.KW_OUT); } break; @@ -25271,21 +26458,21 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_OUT: this.enterOuterAlt(localContext, 2); { - this.state = 4493; + this.state = 4495; this.match(PostgreSqlParser.KW_OUT); } break; case PostgreSqlParser.KW_INOUT: this.enterOuterAlt(localContext, 3); { - this.state = 4494; + this.state = 4496; this.match(PostgreSqlParser.KW_INOUT); } break; case PostgreSqlParser.KW_VARIADIC: this.enterOuterAlt(localContext, 4); { - this.state = 4495; + this.state = 4497; this.match(PostgreSqlParser.KW_VARIADIC); } break; @@ -25312,36 +26499,36 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 382, PostgreSqlParser.RULE_funcType); let _la: number; try { - this.state = 4507; + this.state = 4509; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 561, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4498; + this.state = 4500; this.typename(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4500; + this.state = 4502; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 415) { { - this.state = 4499; + this.state = 4501; this.match(PostgreSqlParser.KW_SETOF); } } - this.state = 4502; + this.state = 4504; this.typeFunctionName(); - this.state = 4503; + this.state = 4505; this.attrs(); - this.state = 4504; + this.state = 4506; this.match(PostgreSqlParser.PERCENT); - this.state = 4505; + this.state = 4507; this.match(PostgreSqlParser.KW_TYPE); } break; @@ -25368,14 +26555,14 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4509; + this.state = 4511; this.funcArg(); - this.state = 4512; + this.state = 4514; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 53) { { - this.state = 4510; + this.state = 4512; _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 53)) { this.errorHandler.recoverInline(this); @@ -25384,7 +26571,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4511; + this.state = 4513; this.expression(); } } @@ -25412,14 +26599,14 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4514; + this.state = 4516; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4524; + this.state = 4526; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.STAR: { - this.state = 4515; + this.state = 4517; this.match(PostgreSqlParser.STAR); } break; @@ -25843,26 +27030,26 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 4517; + this.state = 4519; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53 || _la === 68 || ((((_la - 101)) & ~0x1F) === 0 && ((1 << (_la - 101)) & 4294967265) !== 0) || ((((_la - 133)) & ~0x1F) === 0 && ((1 << (_la - 133)) & 4294967295) !== 0) || ((((_la - 165)) & ~0x1F) === 0 && ((1 << (_la - 165)) & 4294967295) !== 0) || ((((_la - 197)) & ~0x1F) === 0 && ((1 << (_la - 197)) & 4294967295) !== 0) || ((((_la - 238)) & ~0x1F) === 0 && ((1 << (_la - 238)) & 4294967295) !== 0) || ((((_la - 270)) & ~0x1F) === 0 && ((1 << (_la - 270)) & 4294967295) !== 0) || ((((_la - 302)) & ~0x1F) === 0 && ((1 << (_la - 302)) & 4294967295) !== 0) || ((((_la - 334)) & ~0x1F) === 0 && ((1 << (_la - 334)) & 4294967295) !== 0) || ((((_la - 366)) & ~0x1F) === 0 && ((1 << (_la - 366)) & 4294967295) !== 0) || ((((_la - 398)) & ~0x1F) === 0 && ((1 << (_la - 398)) & 4294967295) !== 0) || ((((_la - 430)) & ~0x1F) === 0 && ((1 << (_la - 430)) & 4278190079) !== 0) || ((((_la - 462)) & ~0x1F) === 0 && ((1 << (_la - 462)) & 4294967295) !== 0) || ((((_la - 494)) & ~0x1F) === 0 && ((1 << (_la - 494)) & 1174402559) !== 0) || ((((_la - 547)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 4516; + this.state = 4518; this.funcArgsList(); } } - this.state = 4522; + this.state = 4524; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 83) { { - this.state = 4519; + this.state = 4521; this.match(PostgreSqlParser.KW_ORDER); - this.state = 4520; + this.state = 4522; this.match(PostgreSqlParser.KW_BY); - this.state = 4521; + this.state = 4523; this.funcArgsList(); } } @@ -25872,7 +27059,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 4526; + this.state = 4528; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -25896,9 +27083,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4528; + this.state = 4530; this.functionName(); - this.state = 4529; + this.state = 4531; this.aggregateArgs(); } } @@ -25921,66 +27108,66 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 390, PostgreSqlParser.RULE_commonFuncOptItem); let _la: number; try { - this.state = 4560; + this.state = 4562; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CALLED: case PostgreSqlParser.KW_RETURNS: this.enterOuterAlt(localContext, 1); { - this.state = 4534; + this.state = 4536; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_RETURNS: { - this.state = 4531; + this.state = 4533; this.match(PostgreSqlParser.KW_RETURNS); - this.state = 4532; + this.state = 4534; this.match(PostgreSqlParser.KW_NULL); } break; case PostgreSqlParser.KW_CALLED: { - this.state = 4533; + this.state = 4535; this.match(PostgreSqlParser.KW_CALLED); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4536; + this.state = 4538; this.match(PostgreSqlParser.KW_ON); - this.state = 4537; + this.state = 4539; this.match(PostgreSqlParser.KW_NULL); - this.state = 4538; + this.state = 4540; this.match(PostgreSqlParser.KW_INPUT); } break; case PostgreSqlParser.KW_STRICT: this.enterOuterAlt(localContext, 2); { - this.state = 4539; + this.state = 4541; this.match(PostgreSqlParser.KW_STRICT); } break; case PostgreSqlParser.KW_IMMUTABLE: this.enterOuterAlt(localContext, 3); { - this.state = 4540; + this.state = 4542; this.match(PostgreSqlParser.KW_IMMUTABLE); } break; case PostgreSqlParser.KW_STABLE: this.enterOuterAlt(localContext, 4); { - this.state = 4541; + this.state = 4543; this.match(PostgreSqlParser.KW_STABLE); } break; case PostgreSqlParser.KW_VOLATILE: this.enterOuterAlt(localContext, 5); { - this.state = 4542; + this.state = 4544; this.match(PostgreSqlParser.KW_VOLATILE); } break; @@ -25988,19 +27175,19 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_SECURITY: this.enterOuterAlt(localContext, 6); { - this.state = 4544; + this.state = 4546; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 205) { { - this.state = 4543; + this.state = 4545; this.match(PostgreSqlParser.KW_EXTERNAL); } } - this.state = 4546; + this.state = 4548; this.match(PostgreSqlParser.KW_SECURITY); - this.state = 4547; + this.state = 4549; _la = this.tokenStream.LA(1); if(!(_la === 181 || _la === 243)) { this.errorHandler.recoverInline(this); @@ -26014,16 +27201,16 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_LEAKPROOF: this.enterOuterAlt(localContext, 7); { - this.state = 4548; + this.state = 4550; this.match(PostgreSqlParser.KW_LEAKPROOF); } break; case PostgreSqlParser.KW_NOT: this.enterOuterAlt(localContext, 8); { - this.state = 4549; + this.state = 4551; this.match(PostgreSqlParser.KW_NOT); - this.state = 4550; + this.state = 4552; this.match(PostgreSqlParser.KW_LEAKPROOF); } break; @@ -26031,7 +27218,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_ROWS: this.enterOuterAlt(localContext, 9); { - this.state = 4551; + this.state = 4553; _la = this.tokenStream.LA(1); if(!(_la === 170 || _la === 320)) { this.errorHandler.recoverInline(this); @@ -26040,41 +27227,41 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4552; + this.state = 4554; this.numericOnly(); } break; case PostgreSqlParser.KW_SUPPORT: this.enterOuterAlt(localContext, 10); { - this.state = 4553; + this.state = 4555; this.match(PostgreSqlParser.KW_SUPPORT); - this.state = 4554; + this.state = 4556; this.anyName(); } break; case PostgreSqlParser.KW_SET: this.enterOuterAlt(localContext, 11); { - this.state = 4555; + this.state = 4557; this.match(PostgreSqlParser.KW_SET); - this.state = 4556; + this.state = 4558; this.setRestMore(); } break; case PostgreSqlParser.KW_RESET: this.enterOuterAlt(localContext, 12); { - this.state = 4557; + this.state = 4559; this.variableResetStmt(); } break; case PostgreSqlParser.KW_PARALLEL: this.enterOuterAlt(localContext, 13); { - this.state = 4558; + this.state = 4560; this.match(PostgreSqlParser.KW_PARALLEL); - this.state = 4559; + this.state = 4561; this.colId(); } break; @@ -26101,57 +27288,57 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 392, PostgreSqlParser.RULE_createFuncOptItem); let _la: number; try { - this.state = 4597; + this.state = 4599; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 571, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4562; + this.state = 4564; this.match(PostgreSqlParser.KW_AS); - this.state = 4563; + this.state = 4565; this.stringConst(); - this.state = 4564; + this.state = 4566; this.notifyPayload(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4566; + this.state = 4568; this.match(PostgreSqlParser.KW_LANGUAGE); - this.state = 4567; + this.state = 4569; this.nonReservedWordOrStringConst(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4568; + this.state = 4570; this.match(PostgreSqlParser.KW_TRANSFORM); - this.state = 4569; + this.state = 4571; this.match(PostgreSqlParser.KW_FOR); - this.state = 4570; + this.state = 4572; this.match(PostgreSqlParser.KW_TYPE); - this.state = 4571; + this.state = 4573; this.typename(); - this.state = 4578; + this.state = 4580; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4572; + this.state = 4574; this.match(PostgreSqlParser.COMMA); - this.state = 4573; + this.state = 4575; this.match(PostgreSqlParser.KW_FOR); - this.state = 4574; + this.state = 4576; this.match(PostgreSqlParser.KW_TYPE); - this.state = 4575; + this.state = 4577; this.typename(); } } - this.state = 4580; + this.state = 4582; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -26160,41 +27347,41 @@ export class PostgreSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4581; + this.state = 4583; this.match(PostgreSqlParser.KW_WINDOW); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4582; + this.state = 4584; this.match(PostgreSqlParser.KW_SET); - this.state = 4583; + this.state = 4585; this.colId(); - this.state = 4590; + this.state = 4592; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_TO: { - this.state = 4584; + this.state = 4586; this.match(PostgreSqlParser.KW_TO); - this.state = 4585; + this.state = 4587; this.colId(); } break; case PostgreSqlParser.EQUAL: { - this.state = 4586; + this.state = 4588; this.match(PostgreSqlParser.EQUAL); - this.state = 4587; + this.state = 4589; this.colId(); } break; case PostgreSqlParser.KW_FROM: { - this.state = 4588; + this.state = 4590; this.match(PostgreSqlParser.KW_FROM); - this.state = 4589; + this.state = 4591; this.match(PostgreSqlParser.KW_CURRENT); } break; @@ -26206,30 +27393,30 @@ export class PostgreSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4592; + this.state = 4594; this.match(PostgreSqlParser.KW_AS); - this.state = 4593; + this.state = 4595; this.colId(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4594; + this.state = 4596; this.stmt(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4595; + this.state = 4597; this.commonFuncOptItem(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 4596; + this.state = 4598; this.colId(); } break; @@ -26255,9 +27442,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4599; + this.state = 4601; this.match(PostgreSqlParser.KW_WITH); - this.state = 4600; + this.state = 4602; this.definition(); } } @@ -26281,9 +27468,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4602; + this.state = 4604; this.columnName(); - this.state = 4603; + this.state = 4605; this.funcType(); } } @@ -26308,39 +27495,39 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4605; + this.state = 4607; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4612; + this.state = 4614; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FUNCTION: { - this.state = 4606; + this.state = 4608; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 4607; + this.state = 4609; this.functionWithArgTypes(); } break; case PostgreSqlParser.KW_PROCEDURE: { - this.state = 4608; + this.state = 4610; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 4609; + this.state = 4611; this.procedureWithArgTypes(); } break; case PostgreSqlParser.KW_ROUTINE: { - this.state = 4610; + this.state = 4612; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 4611; + this.state = 4613; this.routineWithArgTypes(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4615; + this.state = 4617; this.errorHandler.sync(this); alternative = 1; do { @@ -26348,7 +27535,7 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 4614; + this.state = 4616; this.commonFuncOptItem(); } } @@ -26356,16 +27543,16 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 4617; + this.state = 4619; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 573, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); - this.state = 4620; + this.state = 4622; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 574, this.context) ) { case 1: { - this.state = 4619; + this.state = 4621; this.match(PostgreSqlParser.KW_RESTRICT); } break; @@ -26392,74 +27579,74 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4622; + this.state = 4624; this.match(PostgreSqlParser.KW_DROP); - this.state = 4638; + this.state = 4640; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FUNCTION: { - this.state = 4623; - this.match(PostgreSqlParser.KW_FUNCTION); this.state = 4625; + this.match(PostgreSqlParser.KW_FUNCTION); + this.state = 4627; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 575, this.context) ) { case 1: { - this.state = 4624; + this.state = 4626; this.ifExists(); } break; } - this.state = 4627; + this.state = 4629; this.functionWithArgTypesList(); } break; case PostgreSqlParser.KW_PROCEDURE: { - this.state = 4628; - this.match(PostgreSqlParser.KW_PROCEDURE); this.state = 4630; + this.match(PostgreSqlParser.KW_PROCEDURE); + this.state = 4632; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 576, this.context) ) { case 1: { - this.state = 4629; + this.state = 4631; this.ifExists(); } break; } - this.state = 4632; + this.state = 4634; this.procedureWithArgTypesList(); } break; case PostgreSqlParser.KW_ROUTINE: { - this.state = 4633; - this.match(PostgreSqlParser.KW_ROUTINE); this.state = 4635; + this.match(PostgreSqlParser.KW_ROUTINE); + this.state = 4637; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 577, this.context) ) { case 1: { - this.state = 4634; + this.state = 4636; this.ifExists(); } break; } - this.state = 4637; + this.state = 4639; this.routineWithArgTypesList(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4641; + this.state = 4643; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 579, this.context) ) { case 1: { - this.state = 4640; + this.state = 4642; this.optDropBehavior(); } break; @@ -26487,46 +27674,46 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4643; + this.state = 4645; this.match(PostgreSqlParser.KW_DROP); - this.state = 4644; - this.match(PostgreSqlParser.KW_AGGREGATE); this.state = 4646; + this.match(PostgreSqlParser.KW_AGGREGATE); + this.state = 4648; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 580, this.context) ) { case 1: { - this.state = 4645; + this.state = 4647; this.ifExists(); } break; } { - this.state = 4648; + this.state = 4650; this.aggregateWithArgTypes(); - this.state = 4653; + this.state = 4655; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4649; + this.state = 4651; this.match(PostgreSqlParser.COMMA); - this.state = 4650; + this.state = 4652; this.aggregateWithArgTypes(); } } - this.state = 4655; + this.state = 4657; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 4657; + this.state = 4659; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 582, this.context) ) { case 1: { - this.state = 4656; + this.state = 4658; this.optDropBehavior(); } break; @@ -26554,46 +27741,46 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4659; + this.state = 4661; this.match(PostgreSqlParser.KW_DROP); - this.state = 4660; - this.match(PostgreSqlParser.KW_OPERATOR); this.state = 4662; + this.match(PostgreSqlParser.KW_OPERATOR); + this.state = 4664; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 583, this.context) ) { case 1: { - this.state = 4661; + this.state = 4663; this.ifExists(); } break; } { - this.state = 4664; + this.state = 4666; this.operatorWithArgTypes(); - this.state = 4669; + this.state = 4671; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4665; + this.state = 4667; this.match(PostgreSqlParser.COMMA); - this.state = 4666; + this.state = 4668; this.operatorWithArgTypes(); } } - this.state = 4671; + this.state = 4673; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 4673; + this.state = 4675; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 585, this.context) ) { case 1: { - this.state = 4672; + this.state = 4674; this.optDropBehavior(); } break; @@ -26621,23 +27808,23 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4675; + this.state = 4677; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4688; + this.state = 4690; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 587, this.context) ) { case 1: { - this.state = 4676; + this.state = 4678; this.typename(); - this.state = 4679; + this.state = 4681; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 4677; + this.state = 4679; this.match(PostgreSqlParser.COMMA); - this.state = 4678; + this.state = 4680; this.typename(); } } @@ -26646,26 +27833,26 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 4681; + this.state = 4683; this.match(PostgreSqlParser.KW_NONE); - this.state = 4682; + this.state = 4684; this.match(PostgreSqlParser.COMMA); - this.state = 4683; + this.state = 4685; this.typename(); } break; case 3: { - this.state = 4684; + this.state = 4686; this.typename(); - this.state = 4685; + this.state = 4687; this.match(PostgreSqlParser.COMMA); - this.state = 4686; + this.state = 4688; this.match(PostgreSqlParser.KW_NONE); } break; } - this.state = 4690; + this.state = 4692; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -26690,23 +27877,23 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4697; + this.state = 4699; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_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)) & 3221570659) !== 0) || _la === 586) { { { - this.state = 4692; + this.state = 4694; this.colId(); - this.state = 4693; + this.state = 4695; this.match(PostgreSqlParser.DOT); } } - this.state = 4699; + this.state = 4701; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4700; + this.state = 4702; this.allOp(); } } @@ -26730,9 +27917,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4702; + this.state = 4704; this.anyOperator(); - this.state = 4703; + this.state = 4705; this.operatorArgTypes(); } } @@ -26757,16 +27944,16 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 4705; + this.state = 4707; this.match(PostgreSqlParser.KW_DO); - this.state = 4709; + this.state = 4711; this.errorHandler.sync(this); alternative = 1; do { switch (alternative) { case 1: { - this.state = 4709; + this.state = 4711; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: @@ -26774,15 +27961,15 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 4706; + this.state = 4708; this.stringConst(); } break; case PostgreSqlParser.KW_LANGUAGE: { - this.state = 4707; + this.state = 4709; this.match(PostgreSqlParser.KW_LANGUAGE); - this.state = 4708; + this.state = 4710; this.nonReservedWordOrStringConst(); } break; @@ -26794,7 +27981,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 4711; + this.state = 4713; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 590, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -26821,38 +28008,38 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4713; - this.match(PostgreSqlParser.KW_CREATE); - this.state = 4714; - this.match(PostgreSqlParser.KW_CAST); this.state = 4715; - this.match(PostgreSqlParser.OPEN_PAREN); + this.match(PostgreSqlParser.KW_CREATE); this.state = 4716; - this.typename(); + this.match(PostgreSqlParser.KW_CAST); this.state = 4717; - this.match(PostgreSqlParser.KW_AS); + this.match(PostgreSqlParser.OPEN_PAREN); this.state = 4718; this.typename(); this.state = 4719; + this.match(PostgreSqlParser.KW_AS); + this.state = 4720; + this.typename(); + this.state = 4721; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 4736; + this.state = 4738; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_WITHOUT: { { - this.state = 4720; + this.state = 4722; this.match(PostgreSqlParser.KW_WITHOUT); - this.state = 4721; + this.state = 4723; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 4724; + this.state = 4726; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 591, this.context) ) { case 1: { - this.state = 4722; + this.state = 4724; this.match(PostgreSqlParser.KW_AS); - this.state = 4723; + this.state = 4725; _la = this.tokenStream.LA(1); if(!(_la === 141 || _la === 223)) { this.errorHandler.recoverInline(this); @@ -26870,36 +28057,36 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_WITH: { { - this.state = 4726; + this.state = 4728; this.match(PostgreSqlParser.KW_WITH); - this.state = 4730; + this.state = 4732; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FUNCTION: { - this.state = 4727; + this.state = 4729; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 4728; + this.state = 4730; this.functionWithArgTypes(); } break; case PostgreSqlParser.KW_INOUT: { - this.state = 4729; + this.state = 4731; this.match(PostgreSqlParser.KW_INOUT); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4734; + this.state = 4736; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 593, this.context) ) { case 1: { - this.state = 4732; + this.state = 4734; this.match(PostgreSqlParser.KW_AS); - this.state = 4733; + this.state = 4735; _la = this.tokenStream.LA(1); if(!(_la === 141 || _la === 223)) { this.errorHandler.recoverInline(this); @@ -26939,9 +28126,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4738; + this.state = 4740; this.match(PostgreSqlParser.KW_IF); - this.state = 4739; + this.state = 4741; this.match(PostgreSqlParser.KW_EXISTS); } } @@ -26966,49 +28153,49 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4741; - this.match(PostgreSqlParser.KW_CREATE); this.state = 4743; + this.match(PostgreSqlParser.KW_CREATE); + this.state = 4745; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 4742; + this.state = 4744; this.orReplaceOpt(); } } - this.state = 4745; + this.state = 4747; this.match(PostgreSqlParser.KW_TRANSFORM); - this.state = 4746; + this.state = 4748; this.match(PostgreSqlParser.KW_FOR); - this.state = 4747; + this.state = 4749; this.typename(); - this.state = 4748; + this.state = 4750; this.match(PostgreSqlParser.KW_LANGUAGE); - this.state = 4749; + this.state = 4751; this.colId(); - this.state = 4750; + this.state = 4752; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4765; + this.state = 4767; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FROM: { - this.state = 4751; + this.state = 4753; this.match(PostgreSqlParser.KW_FROM); - this.state = 4752; + this.state = 4754; this.sqlWithFunction(); - this.state = 4756; + this.state = 4758; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 4753; + this.state = 4755; this.match(PostgreSqlParser.COMMA); - this.state = 4754; + this.state = 4756; this.match(PostgreSqlParser.KW_TO); - this.state = 4755; + this.state = 4757; this.sqlWithFunction(); } } @@ -27017,20 +28204,20 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_TO: { - this.state = 4758; + this.state = 4760; this.match(PostgreSqlParser.KW_TO); - this.state = 4759; + this.state = 4761; this.sqlWithFunction(); - this.state = 4763; + this.state = 4765; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 4760; + this.state = 4762; this.match(PostgreSqlParser.COMMA); - this.state = 4761; + this.state = 4763; this.match(PostgreSqlParser.KW_FROM); - this.state = 4762; + this.state = 4764; this.sqlWithFunction(); } } @@ -27040,7 +28227,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 4767; + this.state = 4769; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -27064,13 +28251,13 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4769; + this.state = 4771; this.match(PostgreSqlParser.KW_SQL); - this.state = 4770; + this.state = 4772; this.match(PostgreSqlParser.KW_WITH); - this.state = 4771; + this.state = 4773; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 4772; + this.state = 4774; this.functionWithArgTypes(); } } @@ -27095,129 +28282,129 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4774; + this.state = 4776; this.match(PostgreSqlParser.KW_REINDEX); - this.state = 4785; + this.state = 4787; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 4775; + this.state = 4777; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 4776; + this.state = 4778; this.match(PostgreSqlParser.KW_VERBOSE); - this.state = 4781; + this.state = 4783; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 4777; + this.state = 4779; this.match(PostgreSqlParser.COMMA); - this.state = 4778; + this.state = 4780; this.match(PostgreSqlParser.KW_VERBOSE); } } - this.state = 4783; + this.state = 4785; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 4784; + this.state = 4786; this.match(PostgreSqlParser.CLOSE_PAREN); } } { - this.state = 4812; + this.state = 4814; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_INDEX: { - this.state = 4787; - this.match(PostgreSqlParser.KW_INDEX); this.state = 4789; + this.match(PostgreSqlParser.KW_INDEX); + this.state = 4791; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 4788; + this.state = 4790; this.match(PostgreSqlParser.KW_CONCURRENTLY); } } - this.state = 4791; + this.state = 4793; this.qualifiedName(); } break; case PostgreSqlParser.KW_TABLE: { - this.state = 4792; - this.match(PostgreSqlParser.KW_TABLE); this.state = 4794; + this.match(PostgreSqlParser.KW_TABLE); + this.state = 4796; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 4793; + this.state = 4795; this.match(PostgreSqlParser.KW_CONCURRENTLY); } } - this.state = 4796; + this.state = 4798; this.tableName(); } break; case PostgreSqlParser.KW_SCHEMA: { - this.state = 4797; - this.match(PostgreSqlParser.KW_SCHEMA); this.state = 4799; + this.match(PostgreSqlParser.KW_SCHEMA); + this.state = 4801; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 4798; + this.state = 4800; this.match(PostgreSqlParser.KW_CONCURRENTLY); } } - this.state = 4801; + this.state = 4803; this.schemaName(); } break; case PostgreSqlParser.KW_SYSTEM: { - this.state = 4802; - this.match(PostgreSqlParser.KW_SYSTEM); this.state = 4804; + this.match(PostgreSqlParser.KW_SYSTEM); + this.state = 4806; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 4803; + this.state = 4805; this.match(PostgreSqlParser.KW_CONCURRENTLY); } } - this.state = 4806; + this.state = 4808; this.colId(); } break; case PostgreSqlParser.KW_DATABASE: { - this.state = 4807; - this.match(PostgreSqlParser.KW_DATABASE); this.state = 4809; + this.match(PostgreSqlParser.KW_DATABASE); + this.state = 4811; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 109) { { - this.state = 4808; + this.state = 4810; this.match(PostgreSqlParser.KW_CONCURRENTLY); } } - this.state = 4811; + this.state = 4813; this.databaseName(); } break; @@ -27248,11 +28435,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 4814; + this.state = 4816; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4815; + this.state = 4817; this.optTableSpace(); - this.state = 4816; + this.state = 4818; _la = this.tokenStream.LA(1); if(!(_la === 313 || _la === 333)) { this.errorHandler.recoverInline(this); @@ -27261,7 +28448,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4817; + this.state = 4819; this.relOptions(); } } @@ -27284,67 +28471,67 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 426, PostgreSqlParser.RULE_renameStmt); let _la: number; try { - this.state = 5026; + this.state = 5028; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 627, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 4819; + this.state = 4821; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4824; + this.state = 4826; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_AGGREGATE: { - this.state = 4820; + this.state = 4822; this.match(PostgreSqlParser.KW_AGGREGATE); - this.state = 4821; + this.state = 4823; this.aggregateWithArgTypes(); } break; case PostgreSqlParser.KW_ROUTINE: { - this.state = 4822; + this.state = 4824; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 4823; + this.state = 4825; this.routineWithArgTypes(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4826; + this.state = 4828; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4827; + this.state = 4829; this.match(PostgreSqlParser.KW_TO); - this.state = 4828; + this.state = 4830; this.colId(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 4830; + this.state = 4832; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4831; + this.state = 4833; this.match(PostgreSqlParser.KW_DATABASE); - this.state = 4832; + this.state = 4834; this.databaseName(); - this.state = 4833; + this.state = 4835; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4834; + this.state = 4836; this.match(PostgreSqlParser.KW_TO); - this.state = 4835; + this.state = 4837; this.databaseNameCreate(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 4837; + this.state = 4839; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4838; + this.state = 4840; _la = this.tokenStream.LA(1); if(!(_la === 108 || _la === 168 || _la === 189 || _la === 342 || _la === 360)) { this.errorHandler.recoverInline(this); @@ -27353,41 +28540,41 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4839; + this.state = 4841; this.anyName(); - this.state = 4840; + this.state = 4842; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4841; + this.state = 4843; this.match(PostgreSqlParser.KW_TO); - this.state = 4842; + this.state = 4844; this.colId(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 4844; + this.state = 4846; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4845; + this.state = 4847; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 4846; + this.state = 4848; this.functionWithArgTypes(); - this.state = 4847; + this.state = 4849; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4848; + this.state = 4850; this.match(PostgreSqlParser.KW_TO); - this.state = 4849; + this.state = 4851; this.functionNameCreate(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 4851; + this.state = 4853; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4852; + this.state = 4854; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 4853; + this.state = 4855; _la = this.tokenStream.LA(1); if(!(_la === 156 || _la === 206)) { this.errorHandler.recoverInline(this); @@ -27396,58 +28583,58 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4854; + this.state = 4856; this.anyName(); - this.state = 4855; + this.state = 4857; this.tableAccessMethodClause(); - this.state = 4856; + this.state = 4858; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4857; + this.state = 4859; this.match(PostgreSqlParser.KW_TO); - this.state = 4858; + this.state = 4860; this.colId(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 4860; + this.state = 4862; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4861; + this.state = 4863; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 4862; + this.state = 4864; this.procedureWithArgTypes(); - this.state = 4863; + this.state = 4865; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4864; + this.state = 4866; this.match(PostgreSqlParser.KW_TO); - this.state = 4865; + this.state = 4867; this.procedureNameCreate(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 4867; + this.state = 4869; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4868; + this.state = 4870; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 4869; + this.state = 4871; this.schemaName(); - this.state = 4870; + this.state = 4872; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4871; + this.state = 4873; this.match(PostgreSqlParser.KW_TO); - this.state = 4872; + this.state = 4874; this.schemaNameCreate(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 4874; + this.state = 4876; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4875; + this.state = 4877; _la = this.tokenStream.LA(1); if(!(_la === 226 || _la === 328)) { this.errorHandler.recoverInline(this); @@ -27456,269 +28643,269 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4877; + this.state = 4879; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 608, this.context) ) { case 1: { - this.state = 4876; + this.state = 4878; this.ifExists(); } break; } - this.state = 4879; + this.state = 4881; this.qualifiedName(); - this.state = 4880; + this.state = 4882; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4881; + this.state = 4883; this.match(PostgreSqlParser.KW_TO); - this.state = 4882; + this.state = 4884; this.colId(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 4884; - this.match(PostgreSqlParser.KW_ALTER); this.state = 4886; + this.match(PostgreSqlParser.KW_ALTER); + this.state = 4888; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 259) { { - this.state = 4885; + this.state = 4887; this.match(PostgreSqlParser.KW_MATERIALIZED); } } - this.state = 4888; - this.match(PostgreSqlParser.KW_VIEW); this.state = 4890; + this.match(PostgreSqlParser.KW_VIEW); + this.state = 4892; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 610, this.context) ) { case 1: { - this.state = 4889; + this.state = 4891; this.ifExists(); } break; } - this.state = 4892; + this.state = 4894; this.viewName(); - this.state = 4893; + this.state = 4895; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4894; + this.state = 4896; this.match(PostgreSqlParser.KW_TO); - this.state = 4895; + this.state = 4897; this.viewNameCreate(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 4897; - this.match(PostgreSqlParser.KW_ALTER); this.state = 4899; + this.match(PostgreSqlParser.KW_ALTER); + this.state = 4901; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 63) { { - this.state = 4898; + this.state = 4900; this.match(PostgreSqlParser.KW_FOREIGN); } } - this.state = 4901; - this.match(PostgreSqlParser.KW_TABLE); this.state = 4903; + this.match(PostgreSqlParser.KW_TABLE); + this.state = 4905; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 612, this.context) ) { case 1: { - this.state = 4902; + this.state = 4904; this.ifExists(); } break; } - this.state = 4905; + this.state = 4907; this.relationExpr(); - this.state = 4906; + this.state = 4908; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4907; + this.state = 4909; this.match(PostgreSqlParser.KW_TO); - this.state = 4908; + this.state = 4910; this.tableNameCreate(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 4910; + this.state = 4912; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4935; + this.state = 4937; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FOREIGN: case PostgreSqlParser.KW_TABLE: { - this.state = 4912; + this.state = 4914; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 63) { { - this.state = 4911; + this.state = 4913; this.match(PostgreSqlParser.KW_FOREIGN); } } - this.state = 4914; - this.match(PostgreSqlParser.KW_TABLE); this.state = 4916; + this.match(PostgreSqlParser.KW_TABLE); + this.state = 4918; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 614, this.context) ) { case 1: { - this.state = 4915; + this.state = 4917; this.ifExists(); } break; } - this.state = 4918; + this.state = 4920; this.relationExpr(); - this.state = 4919; - this.match(PostgreSqlParser.KW_RENAME); this.state = 4921; + this.match(PostgreSqlParser.KW_RENAME); + this.state = 4923; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 615, this.context) ) { - case 1: + _la = this.tokenStream.LA(1); + if (_la === 44) { { - this.state = 4920; + this.state = 4922; this.match(PostgreSqlParser.KW_COLUMN); } - break; } + } break; case PostgreSqlParser.KW_MATERIALIZED: case PostgreSqlParser.KW_VIEW: { - this.state = 4924; + this.state = 4926; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 259) { { - this.state = 4923; + this.state = 4925; this.match(PostgreSqlParser.KW_MATERIALIZED); } } - this.state = 4926; - this.match(PostgreSqlParser.KW_VIEW); this.state = 4928; + this.match(PostgreSqlParser.KW_VIEW); + this.state = 4930; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 617, this.context) ) { case 1: { - this.state = 4927; + this.state = 4929; this.ifExists(); } break; } - this.state = 4930; + this.state = 4932; this.viewName(); - this.state = 4931; - this.match(PostgreSqlParser.KW_RENAME); this.state = 4933; + this.match(PostgreSqlParser.KW_RENAME); + this.state = 4935; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 618, this.context) ) { - case 1: + _la = this.tokenStream.LA(1); + if (_la === 44) { { - this.state = 4932; + this.state = 4934; this.match(PostgreSqlParser.KW_COLUMN); } - break; } + } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4937; + this.state = 4939; this.columnName(); - this.state = 4938; + this.state = 4940; this.match(PostgreSqlParser.KW_TO); - this.state = 4939; + this.state = 4941; this.columnNameCreate(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 4941; + this.state = 4943; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4949; + this.state = 4951; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_TABLE: { - this.state = 4942; - this.match(PostgreSqlParser.KW_TABLE); this.state = 4944; + this.match(PostgreSqlParser.KW_TABLE); + this.state = 4946; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 620, this.context) ) { case 1: { - this.state = 4943; + this.state = 4945; this.ifExists(); } break; } - this.state = 4946; + this.state = 4948; this.relationExpr(); } break; case PostgreSqlParser.KW_DOMAIN: { - this.state = 4947; + this.state = 4949; this.match(PostgreSqlParser.KW_DOMAIN); - this.state = 4948; + this.state = 4950; this.anyName(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4951; + this.state = 4953; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4952; + this.state = 4954; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 4953; + this.state = 4955; this.colId(); - this.state = 4954; + this.state = 4956; this.match(PostgreSqlParser.KW_TO); - this.state = 4955; + this.state = 4957; this.colId(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 4957; + this.state = 4959; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4964; + this.state = 4966; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_POLICY: { { - this.state = 4958; - this.match(PostgreSqlParser.KW_POLICY); this.state = 4960; + this.match(PostgreSqlParser.KW_POLICY); + this.state = 4962; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 622, this.context) ) { case 1: { - this.state = 4959; + this.state = 4961; this.ifExists(); } break; @@ -27728,113 +28915,113 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_RULE: { - this.state = 4962; + this.state = 4964; this.match(PostgreSqlParser.KW_RULE); } break; case PostgreSqlParser.KW_TRIGGER: { - this.state = 4963; + this.state = 4965; this.match(PostgreSqlParser.KW_TRIGGER); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4966; + this.state = 4968; this.colId(); - this.state = 4967; + this.state = 4969; this.match(PostgreSqlParser.KW_ON); - this.state = 4968; + this.state = 4970; this.qualifiedName(); - this.state = 4969; + this.state = 4971; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4970; + this.state = 4972; this.match(PostgreSqlParser.KW_TO); - this.state = 4971; + this.state = 4973; this.colId(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 4973; + this.state = 4975; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4986; + this.state = 4988; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FOREIGN: { - this.state = 4974; + this.state = 4976; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 4975; + this.state = 4977; this.match(PostgreSqlParser.KW_DATA); - this.state = 4976; + this.state = 4978; this.match(PostgreSqlParser.KW_WRAPPER); } break; case PostgreSqlParser.KW_LANGUAGE: case PostgreSqlParser.KW_PROCEDURAL: { - this.state = 4978; + this.state = 4980; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 295) { { - this.state = 4977; + this.state = 4979; this.match(PostgreSqlParser.KW_PROCEDURAL); } } - this.state = 4980; + this.state = 4982; this.match(PostgreSqlParser.KW_LANGUAGE); } break; case PostgreSqlParser.KW_PUBLICATION: { - this.state = 4981; + this.state = 4983; this.match(PostgreSqlParser.KW_PUBLICATION); } break; case PostgreSqlParser.KW_SERVER: { - this.state = 4982; + this.state = 4984; this.match(PostgreSqlParser.KW_SERVER); } break; case PostgreSqlParser.KW_SUBSCRIPTION: { - this.state = 4983; + this.state = 4985; this.match(PostgreSqlParser.KW_SUBSCRIPTION); } break; case PostgreSqlParser.KW_EVENT: { - this.state = 4984; + this.state = 4986; this.match(PostgreSqlParser.KW_EVENT); - this.state = 4985; + this.state = 4987; this.match(PostgreSqlParser.KW_TRIGGER); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 4988; + this.state = 4990; this.colId(); - this.state = 4989; + this.state = 4991; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4990; + this.state = 4992; this.match(PostgreSqlParser.KW_TO); - this.state = 4991; + this.state = 4993; this.colId(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 4993; + this.state = 4995; this.match(PostgreSqlParser.KW_ALTER); - this.state = 4994; + this.state = 4996; _la = this.tokenStream.LA(1); if(!(_la === 66 || _la === 99 || _la === 318)) { this.errorHandler.recoverInline(this); @@ -27843,41 +29030,41 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 4995; + this.state = 4997; this.roleSpec(); - this.state = 4996; + this.state = 4998; this.match(PostgreSqlParser.KW_RENAME); - this.state = 4997; + this.state = 4999; this.match(PostgreSqlParser.KW_TO); - this.state = 4998; + this.state = 5000; this.roleSpec(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 5000; + this.state = 5002; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5001; + this.state = 5003; this.optTableSpace(); - this.state = 5002; + this.state = 5004; this.match(PostgreSqlParser.KW_RENAME); - this.state = 5003; + this.state = 5005; this.match(PostgreSqlParser.KW_TO); - this.state = 5004; + this.state = 5006; this.tableSpaceName(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 5006; + this.state = 5008; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5007; + this.state = 5009; this.match(PostgreSqlParser.KW_TEXT); - this.state = 5008; + this.state = 5010; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 5009; + this.state = 5011; _la = this.tokenStream.LA(1); if(!(_la === 163 || _la === 185 || _la === 283 || _la === 353)) { this.errorHandler.recoverInline(this); @@ -27886,41 +29073,41 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5010; + this.state = 5012; this.anyName(); - this.state = 5011; + this.state = 5013; this.match(PostgreSqlParser.KW_RENAME); - this.state = 5012; + this.state = 5014; this.match(PostgreSqlParser.KW_TO); - this.state = 5013; + this.state = 5015; this.colId(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 5015; - this.match(PostgreSqlParser.KW_ALTER); - this.state = 5016; - this.match(PostgreSqlParser.KW_TYPE); this.state = 5017; - this.anyName(); + this.match(PostgreSqlParser.KW_ALTER); this.state = 5018; - this.match(PostgreSqlParser.KW_RENAME); + this.match(PostgreSqlParser.KW_TYPE); this.state = 5019; - this.match(PostgreSqlParser.KW_ATTRIBUTE); + this.anyName(); this.state = 5020; - this.colId(); + this.match(PostgreSqlParser.KW_RENAME); this.state = 5021; - this.match(PostgreSqlParser.KW_TO); + this.match(PostgreSqlParser.KW_ATTRIBUTE); this.state = 5022; this.colId(); + this.state = 5023; + this.match(PostgreSqlParser.KW_TO); this.state = 5024; + this.colId(); + this.state = 5026; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 626, this.context) ) { case 1: { - this.state = 5023; + this.state = 5025; this.optDropBehavior(); } break; @@ -27950,85 +29137,85 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5028; + this.state = 5030; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5045; + this.state = 5047; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_FUNCTION: { - this.state = 5029; + this.state = 5031; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 5030; + this.state = 5032; this.functionWithArgTypes(); } break; case PostgreSqlParser.KW_PROCEDURE: { - this.state = 5031; + this.state = 5033; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 5032; + this.state = 5034; this.procedureWithArgTypes(); } break; case PostgreSqlParser.KW_ROUTINE: { - this.state = 5033; + this.state = 5035; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 5034; + this.state = 5036; this.routineWithArgTypes(); } break; case PostgreSqlParser.KW_TRIGGER: { - this.state = 5035; + this.state = 5037; this.match(PostgreSqlParser.KW_TRIGGER); - this.state = 5036; + this.state = 5038; this.colId(); - this.state = 5037; + this.state = 5039; this.match(PostgreSqlParser.KW_ON); - this.state = 5038; + this.state = 5040; this.qualifiedName(); } break; case PostgreSqlParser.KW_MATERIALIZED: { - this.state = 5040; + this.state = 5042; this.match(PostgreSqlParser.KW_MATERIALIZED); - this.state = 5041; + this.state = 5043; this.match(PostgreSqlParser.KW_VIEW); - this.state = 5042; + this.state = 5044; this.viewName(); } break; case PostgreSqlParser.KW_INDEX: { - this.state = 5043; + this.state = 5045; this.match(PostgreSqlParser.KW_INDEX); - this.state = 5044; + this.state = 5046; this.qualifiedName(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 5048; + this.state = 5050; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 5047; + this.state = 5049; this.match(PostgreSqlParser.KW_NO); } } - this.state = 5050; + this.state = 5052; this.match(PostgreSqlParser.KW_DEPENDS); - this.state = 5051; + this.state = 5053; this.match(PostgreSqlParser.KW_ON); - this.state = 5052; + this.state = 5054; this.match(PostgreSqlParser.KW_EXTENSION); - this.state = 5053; + this.state = 5055; this.colId(); } } @@ -28051,54 +29238,54 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 430, PostgreSqlParser.RULE_alterObjectSchemaStmt); let _la: number; try { - this.state = 5116; + this.state = 5118; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 637, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5055; + this.state = 5057; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5094; + this.state = 5096; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 635, this.context) ) { case 1: { - this.state = 5056; + this.state = 5058; this.match(PostgreSqlParser.KW_AGGREGATE); - this.state = 5057; + this.state = 5059; this.aggregateWithArgTypes(); } break; case 2: { - this.state = 5058; + this.state = 5060; this.match(PostgreSqlParser.KW_EXTENSION); - this.state = 5059; + this.state = 5061; this.colId(); } break; case 3: { - this.state = 5060; + this.state = 5062; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 5061; + this.state = 5063; this.functionWithArgTypes(); } break; case 4: { - this.state = 5062; + this.state = 5064; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 5063; + this.state = 5065; this.operatorWithArgTypes(); } break; case 5: { - this.state = 5064; + this.state = 5066; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 5065; + this.state = 5067; _la = this.tokenStream.LA(1); if(!(_la === 156 || _la === 206)) { this.errorHandler.recoverInline(this); @@ -28107,126 +29294,126 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5066; + this.state = 5068; this.anyName(); - this.state = 5067; + this.state = 5069; this.tableAccessMethodClause(); } break; case 6: { - this.state = 5069; + this.state = 5071; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 5070; + this.state = 5072; this.procedureWithArgTypes(); } break; case 7: { - this.state = 5071; + this.state = 5073; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 5072; + this.state = 5074; this.routineWithArgTypes(); } break; case 8: { - this.state = 5073; - this.match(PostgreSqlParser.KW_SEQUENCE); this.state = 5075; + this.match(PostgreSqlParser.KW_SEQUENCE); + this.state = 5077; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 630, this.context) ) { case 1: { - this.state = 5074; + this.state = 5076; this.ifExists(); } break; } - this.state = 5077; + this.state = 5079; this.qualifiedName(); } break; case 9: { - this.state = 5079; + this.state = 5081; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 259) { { - this.state = 5078; + this.state = 5080; this.match(PostgreSqlParser.KW_MATERIALIZED); } } - this.state = 5081; - this.match(PostgreSqlParser.KW_VIEW); this.state = 5083; + this.match(PostgreSqlParser.KW_VIEW); + this.state = 5085; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 632, this.context) ) { case 1: { - this.state = 5082; + this.state = 5084; this.ifExists(); } break; } - this.state = 5085; + this.state = 5087; this.viewName(); } break; case 10: { - this.state = 5087; + this.state = 5089; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 63) { { - this.state = 5086; + this.state = 5088; this.match(PostgreSqlParser.KW_FOREIGN); } } - this.state = 5089; - this.match(PostgreSqlParser.KW_TABLE); this.state = 5091; + this.match(PostgreSqlParser.KW_TABLE); + this.state = 5093; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 634, this.context) ) { case 1: { - this.state = 5090; + this.state = 5092; this.ifExists(); } break; } - this.state = 5093; + this.state = 5095; this.relationExpr(); } break; } - this.state = 5096; + this.state = 5098; this.match(PostgreSqlParser.KW_SET); - this.state = 5097; + this.state = 5099; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 5098; + this.state = 5100; this.schemaName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5100; + this.state = 5102; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5109; + this.state = 5111; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_TEXT: { - this.state = 5101; + this.state = 5103; this.match(PostgreSqlParser.KW_TEXT); - this.state = 5102; + this.state = 5104; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 5103; + this.state = 5105; _la = this.tokenStream.LA(1); if(!(_la === 163 || _la === 185 || _la === 283 || _la === 353)) { this.errorHandler.recoverInline(this); @@ -28239,44 +29426,44 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_COLLATION: { - this.state = 5104; + this.state = 5106; this.match(PostgreSqlParser.KW_COLLATION); } break; case PostgreSqlParser.KW_CONVERSION: { - this.state = 5105; + this.state = 5107; this.match(PostgreSqlParser.KW_CONVERSION); } break; case PostgreSqlParser.KW_DOMAIN: { - this.state = 5106; + this.state = 5108; this.match(PostgreSqlParser.KW_DOMAIN); } break; case PostgreSqlParser.KW_STATISTICS: { - this.state = 5107; + this.state = 5109; this.match(PostgreSqlParser.KW_STATISTICS); } break; case PostgreSqlParser.KW_TYPE: { - this.state = 5108; + this.state = 5110; this.match(PostgreSqlParser.KW_TYPE); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 5111; + this.state = 5113; this.anyName(); - this.state = 5112; + this.state = 5114; this.match(PostgreSqlParser.KW_SET); - this.state = 5113; + this.state = 5115; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 5114; + this.state = 5116; this.schemaName(); } break; @@ -28302,15 +29489,15 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5118; + this.state = 5120; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5119; + this.state = 5121; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 5120; + this.state = 5122; this.operatorWithArgTypes(); - this.state = 5121; + this.state = 5123; this.match(PostgreSqlParser.KW_SET); - this.state = 5122; + this.state = 5124; this.operatorDefList(); } } @@ -28335,27 +29522,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5124; + this.state = 5126; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5125; + this.state = 5127; this.operatorDefElem(); - this.state = 5130; + this.state = 5132; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5126; + this.state = 5128; this.match(PostgreSqlParser.COMMA); - this.state = 5127; + this.state = 5129; this.operatorDefElem(); } } - this.state = 5132; + this.state = 5134; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5133; + this.state = 5135; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -28379,46 +29566,46 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5135; + this.state = 5137; this.colLabel(); - this.state = 5136; + this.state = 5138; this.match(PostgreSqlParser.EQUAL); - this.state = 5143; + this.state = 5145; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 639, this.context) ) { case 1: { - this.state = 5137; + this.state = 5139; this.match(PostgreSqlParser.KW_NONE); } break; case 2: { - this.state = 5138; + this.state = 5140; this.funcType(); } break; case 3: { - this.state = 5139; + this.state = 5141; this.reservedKeyword(); } break; case 4: { - this.state = 5140; + this.state = 5142; this.qualAllOp(); } break; case 5: { - this.state = 5141; + this.state = 5143; this.numericOnly(); } break; case 6: { - this.state = 5142; + this.state = 5144; this.stringConst(); } break; @@ -28445,15 +29632,15 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5145; + this.state = 5147; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5146; + this.state = 5148; this.match(PostgreSqlParser.KW_TYPE); - this.state = 5147; + this.state = 5149; this.anyName(); - this.state = 5148; + this.state = 5150; this.match(PostgreSqlParser.KW_SET); - this.state = 5149; + this.state = 5151; this.operatorDefList(); } } @@ -28476,17 +29663,17 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 440, PostgreSqlParser.RULE_alterOwnerStmt); let _la: number; try { - this.state = 5225; + this.state = 5227; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 644, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5151; + this.state = 5153; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5152; + this.state = 5154; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 5153; + this.state = 5155; _la = this.tokenStream.LA(1); if(!(_la === 156 || _la === 206)) { this.errorHandler.recoverInline(this); @@ -28495,150 +29682,150 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5154; + this.state = 5156; this.anyName(); - this.state = 5155; + this.state = 5157; this.tableAccessMethodClause(); - this.state = 5156; + this.state = 5158; this.match(PostgreSqlParser.KW_OWNER); - this.state = 5157; + this.state = 5159; this.match(PostgreSqlParser.KW_TO); - this.state = 5158; + this.state = 5160; this.roleSpec(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5160; + this.state = 5162; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5187; + this.state = 5189; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 641, this.context) ) { case 1: { - this.state = 5161; + this.state = 5163; this.match(PostgreSqlParser.KW_AGGREGATE); - this.state = 5162; + this.state = 5164; this.aggregateWithArgTypes(); } break; case 2: { - this.state = 5163; + this.state = 5165; this.match(PostgreSqlParser.KW_DATABASE); - this.state = 5164; + this.state = 5166; this.databaseName(); } break; case 3: { - this.state = 5165; + this.state = 5167; this.match(PostgreSqlParser.KW_FUNCTION); - this.state = 5166; + this.state = 5168; this.functionWithArgTypes(); } break; case 4: { - this.state = 5168; + this.state = 5170; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 295) { { - this.state = 5167; + this.state = 5169; this.match(PostgreSqlParser.KW_PROCEDURAL); } } - this.state = 5170; + this.state = 5172; this.match(PostgreSqlParser.KW_LANGUAGE); - this.state = 5171; + this.state = 5173; this.colId(); } break; case 5: { - this.state = 5172; + this.state = 5174; this.match(PostgreSqlParser.KW_LARGE); - this.state = 5173; + this.state = 5175; this.match(PostgreSqlParser.KW_OBJECT); - this.state = 5174; + this.state = 5176; this.numericOnly(); } break; case 6: { - this.state = 5175; + this.state = 5177; this.match(PostgreSqlParser.KW_LARGE); - this.state = 5176; + this.state = 5178; this.match(PostgreSqlParser.KW_OBJECT); - this.state = 5177; + this.state = 5179; this.numericOnly(); } break; case 7: { - this.state = 5178; + this.state = 5180; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 5179; + this.state = 5181; this.operatorWithArgTypes(); } break; case 8: { - this.state = 5180; + this.state = 5182; this.match(PostgreSqlParser.KW_PROCEDURE); - this.state = 5181; + this.state = 5183; this.procedureWithArgTypes(); } break; case 9: { - this.state = 5182; + this.state = 5184; this.match(PostgreSqlParser.KW_ROUTINE); - this.state = 5183; + this.state = 5185; this.routineWithArgTypes(); } break; case 10: { - this.state = 5184; + this.state = 5186; this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 5185; + this.state = 5187; this.schemaName(); } break; case 11: { - this.state = 5186; + this.state = 5188; this.optTableSpace(); } break; } - this.state = 5189; + this.state = 5191; this.match(PostgreSqlParser.KW_OWNER); - this.state = 5190; + this.state = 5192; this.match(PostgreSqlParser.KW_TO); - this.state = 5191; + this.state = 5193; this.roleSpec(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5193; + this.state = 5195; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5202; + this.state = 5204; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_TEXT: { - this.state = 5194; + this.state = 5196; this.match(PostgreSqlParser.KW_TEXT); - this.state = 5195; + this.state = 5197; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 5196; + this.state = 5198; _la = this.tokenStream.LA(1); if(!(_la === 163 || _la === 185)) { this.errorHandler.recoverInline(this); @@ -28651,69 +29838,69 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_COLLATION: { - this.state = 5197; + this.state = 5199; this.match(PostgreSqlParser.KW_COLLATION); } break; case PostgreSqlParser.KW_CONVERSION: { - this.state = 5198; + this.state = 5200; this.match(PostgreSqlParser.KW_CONVERSION); } break; case PostgreSqlParser.KW_DOMAIN: { - this.state = 5199; + this.state = 5201; this.match(PostgreSqlParser.KW_DOMAIN); } break; case PostgreSqlParser.KW_TYPE: { - this.state = 5200; + this.state = 5202; this.match(PostgreSqlParser.KW_TYPE); } break; case PostgreSqlParser.KW_STATISTICS: { - this.state = 5201; + this.state = 5203; this.match(PostgreSqlParser.KW_STATISTICS); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 5204; + this.state = 5206; this.anyName(); - this.state = 5205; + this.state = 5207; this.match(PostgreSqlParser.KW_OWNER); - this.state = 5206; + this.state = 5208; this.match(PostgreSqlParser.KW_TO); - this.state = 5207; + this.state = 5209; this.roleSpec(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5209; + this.state = 5211; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5218; + this.state = 5220; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_SERVER: { - this.state = 5210; + this.state = 5212; this.match(PostgreSqlParser.KW_SERVER); } break; case PostgreSqlParser.KW_FOREIGN: { { - this.state = 5211; + this.state = 5213; this.match(PostgreSqlParser.KW_FOREIGN); - this.state = 5212; + this.state = 5214; this.match(PostgreSqlParser.KW_DATA); - this.state = 5213; + this.state = 5215; this.match(PostgreSqlParser.KW_WRAPPER); } } @@ -28721,35 +29908,35 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_EVENT: { { - this.state = 5214; + this.state = 5216; this.match(PostgreSqlParser.KW_EVENT); - this.state = 5215; + this.state = 5217; this.match(PostgreSqlParser.KW_TRIGGER); } } break; case PostgreSqlParser.KW_PUBLICATION: { - this.state = 5216; + this.state = 5218; this.match(PostgreSqlParser.KW_PUBLICATION); } break; case PostgreSqlParser.KW_SUBSCRIPTION: { - this.state = 5217; + this.state = 5219; this.match(PostgreSqlParser.KW_SUBSCRIPTION); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 5220; + this.state = 5222; this.colId(); - this.state = 5221; + this.state = 5223; this.match(PostgreSqlParser.KW_OWNER); - this.state = 5222; + this.state = 5224; this.match(PostgreSqlParser.KW_TO); - this.state = 5223; + this.state = 5225; this.roleSpec(); } break; @@ -28775,42 +29962,42 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5227; + this.state = 5229; this.match(PostgreSqlParser.KW_CREATE); - this.state = 5228; + this.state = 5230; this.match(PostgreSqlParser.KW_PUBLICATION); - this.state = 5229; + this.state = 5231; this.colId(); - this.state = 5236; + this.state = 5238; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 645, this.context) ) { case 1: { - this.state = 5230; + this.state = 5232; this.match(PostgreSqlParser.KW_FOR); - this.state = 5231; + this.state = 5233; this.match(PostgreSqlParser.KW_TABLE); - this.state = 5232; + this.state = 5234; this.relationExprList(); } break; case 2: { - this.state = 5233; + this.state = 5235; this.match(PostgreSqlParser.KW_FOR); - this.state = 5234; + this.state = 5236; this.match(PostgreSqlParser.KW_ALL); - this.state = 5235; + this.state = 5237; this.match(PostgreSqlParser.KW_TABLES); } break; } - this.state = 5239; + this.state = 5241; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 646, this.context) ) { case 1: { - this.state = 5238; + this.state = 5240; this.optDefinition(); } break; @@ -28838,23 +30025,23 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5241; + this.state = 5243; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5242; + this.state = 5244; this.match(PostgreSqlParser.KW_PUBLICATION); - this.state = 5243; + this.state = 5245; this.colId(); - this.state = 5261; + this.state = 5263; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 648, this.context) ) { case 1: { { - this.state = 5244; + this.state = 5246; this.match(PostgreSqlParser.KW_OWNER); - this.state = 5245; + this.state = 5247; this.match(PostgreSqlParser.KW_TO); - this.state = 5246; + this.state = 5248; this.roleSpec(); } } @@ -28862,9 +30049,9 @@ export class PostgreSqlParser extends SQLParserBase { case 2: { { - this.state = 5247; + this.state = 5249; this.match(PostgreSqlParser.KW_SET); - this.state = 5248; + this.state = 5250; this.definition(); } } @@ -28872,18 +30059,18 @@ export class PostgreSqlParser extends SQLParserBase { case 3: { { - this.state = 5249; + this.state = 5251; this.match(PostgreSqlParser.KW_RENAME); - this.state = 5250; + this.state = 5252; this.match(PostgreSqlParser.KW_TO); - this.state = 5251; + this.state = 5253; this.colId(); } } break; case 4: { - this.state = 5252; + this.state = 5254; _la = this.tokenStream.LA(1); if(!(_la === 133 || _la === 191 || _la === 333)) { this.errorHandler.recoverInline(this); @@ -28892,21 +30079,21 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5253; + this.state = 5255; this.publicationRelationExpr(); - this.state = 5258; + this.state = 5260; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5254; + this.state = 5256; this.match(PostgreSqlParser.COMMA); - this.state = 5255; + this.state = 5257; this.publicationRelationExpr(); } } - this.state = 5260; + this.state = 5262; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -28936,44 +30123,44 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5263; + this.state = 5265; this.match(PostgreSqlParser.KW_CREATE); - this.state = 5264; + this.state = 5266; this.match(PostgreSqlParser.KW_SUBSCRIPTION); - this.state = 5265; + this.state = 5267; this.colId(); - this.state = 5266; + this.state = 5268; this.match(PostgreSqlParser.KW_CONNECTION); - this.state = 5267; + this.state = 5269; this.stringConst(); - this.state = 5268; + this.state = 5270; this.match(PostgreSqlParser.KW_PUBLICATION); { - this.state = 5269; + this.state = 5271; this.colLabel(); - this.state = 5274; + this.state = 5276; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5270; + this.state = 5272; this.match(PostgreSqlParser.COMMA); - this.state = 5271; + this.state = 5273; this.colLabel(); } } - this.state = 5276; + this.state = 5278; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 5278; + this.state = 5280; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 650, this.context) ) { case 1: { - this.state = 5277; + this.state = 5279; this.optDefinition(); } break; @@ -28999,58 +30186,58 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 448, PostgreSqlParser.RULE_alterSubscriptionStmt); let _la: number; try { - this.state = 5336; + this.state = 5338; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 654, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5280; + this.state = 5282; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5281; + this.state = 5283; this.match(PostgreSqlParser.KW_SUBSCRIPTION); - this.state = 5282; + this.state = 5284; this.colId(); - this.state = 5283; + this.state = 5285; this.match(PostgreSqlParser.KW_SET); - this.state = 5284; + this.state = 5286; this.definition(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5286; + this.state = 5288; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5287; + this.state = 5289; this.match(PostgreSqlParser.KW_SUBSCRIPTION); - this.state = 5288; + this.state = 5290; this.colId(); - this.state = 5289; + this.state = 5291; this.match(PostgreSqlParser.KW_CONNECTION); - this.state = 5290; + this.state = 5292; this.stringConst(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5292; + this.state = 5294; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5293; + this.state = 5295; this.match(PostgreSqlParser.KW_SUBSCRIPTION); - this.state = 5294; + this.state = 5296; this.colId(); - this.state = 5295; + this.state = 5297; this.match(PostgreSqlParser.KW_REFRESH); - this.state = 5296; - this.match(PostgreSqlParser.KW_PUBLICATION); this.state = 5298; + this.match(PostgreSqlParser.KW_PUBLICATION); + this.state = 5300; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 651, this.context) ) { case 1: { - this.state = 5297; + this.state = 5299; this.optDefinition(); } break; @@ -29060,13 +30247,13 @@ export class PostgreSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5300; + this.state = 5302; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5301; + this.state = 5303; this.match(PostgreSqlParser.KW_SUBSCRIPTION); - this.state = 5302; + this.state = 5304; this.colId(); - this.state = 5303; + this.state = 5305; _la = this.tokenStream.LA(1); if(!(_la === 133 || _la === 191 || _la === 333)) { this.errorHandler.recoverInline(this); @@ -29075,34 +30262,34 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5304; + this.state = 5306; this.match(PostgreSqlParser.KW_PUBLICATION); { - this.state = 5305; + this.state = 5307; this.colLabel(); - this.state = 5310; + this.state = 5312; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5306; + this.state = 5308; this.match(PostgreSqlParser.COMMA); - this.state = 5307; + this.state = 5309; this.colLabel(); } } - this.state = 5312; + this.state = 5314; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 5314; + this.state = 5316; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 653, this.context) ) { case 1: { - this.state = 5313; + this.state = 5315; this.optDefinition(); } break; @@ -29112,13 +30299,13 @@ export class PostgreSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5316; + this.state = 5318; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5317; + this.state = 5319; this.match(PostgreSqlParser.KW_SUBSCRIPTION); - this.state = 5318; + this.state = 5320; this.colId(); - this.state = 5319; + this.state = 5321; _la = this.tokenStream.LA(1); if(!(_la === 186 || _la === 193)) { this.errorHandler.recoverInline(this); @@ -29132,36 +30319,36 @@ export class PostgreSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 5321; + this.state = 5323; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5322; + this.state = 5324; this.match(PostgreSqlParser.KW_SUBSCRIPTION); - this.state = 5323; + this.state = 5325; this.colId(); - this.state = 5324; + this.state = 5326; this.match(PostgreSqlParser.KW_SKIP); - this.state = 5325; + this.state = 5327; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5326; + this.state = 5328; this.oldAggregateElem(); - this.state = 5327; + this.state = 5329; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 5329; + this.state = 5331; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5330; + this.state = 5332; this.match(PostgreSqlParser.KW_SUBSCRIPTION); - this.state = 5331; + this.state = 5333; this.colId(); - this.state = 5332; + this.state = 5334; this.match(PostgreSqlParser.KW_OWNER); - this.state = 5333; + this.state = 5335; this.match(PostgreSqlParser.KW_TO); - this.state = 5334; + this.state = 5336; this.roleSpec(); } break; @@ -29188,27 +30375,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5338; - this.match(PostgreSqlParser.KW_CREATE); this.state = 5340; + this.match(PostgreSqlParser.KW_CREATE); + this.state = 5342; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 5339; + this.state = 5341; this.orReplaceOpt(); } } - this.state = 5342; + this.state = 5344; this.match(PostgreSqlParser.KW_RULE); - this.state = 5343; + this.state = 5345; this.colId(); - this.state = 5344; + this.state = 5346; this.match(PostgreSqlParser.KW_AS); - this.state = 5345; + this.state = 5347; this.match(PostgreSqlParser.KW_ON); - this.state = 5346; + this.state = 5348; _la = this.tokenStream.LA(1); if(!(_la === 88 || _la === 182 || _la === 241 || _la === 369)) { this.errorHandler.recoverInline(this); @@ -29217,28 +30404,28 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5347; + this.state = 5349; this.match(PostgreSqlParser.KW_TO); - this.state = 5348; - this.qualifiedName(); this.state = 5350; + this.qualifiedName(); + this.state = 5352; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 5349; + this.state = 5351; this.whereClause(); } } - this.state = 5352; - this.match(PostgreSqlParser.KW_DO); this.state = 5354; + this.match(PostgreSqlParser.KW_DO); + this.state = 5356; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 137 || _la === 242) { { - this.state = 5353; + this.state = 5355; _la = this.tokenStream.LA(1); if(!(_la === 137 || _la === 242)) { this.errorHandler.recoverInline(this); @@ -29250,62 +30437,62 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 5372; + this.state = 5374; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 661, this.context) ) { case 1: { - this.state = 5356; + this.state = 5358; this.match(PostgreSqlParser.KW_NOTHING); } break; case 2: { - this.state = 5357; + this.state = 5359; this.ruleActionStmt(); } break; case 3: { - this.state = 5358; + this.state = 5360; this.match(PostgreSqlParser.OPEN_PAREN); { - this.state = 5360; + this.state = 5362; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2 || ((((_la - 88)) & ~0x1F) === 0 && ((1 << (_la - 88)) & 131089) !== 0) || _la === 182 || _la === 241 || _la === 271 || _la === 369 || _la === 422) { { - this.state = 5359; + this.state = 5361; this.ruleActionStmt(); } } - this.state = 5368; + this.state = 5370; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 7) { { { - this.state = 5362; - this.match(PostgreSqlParser.SEMI); this.state = 5364; + this.match(PostgreSqlParser.SEMI); + this.state = 5366; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2 || ((((_la - 88)) & ~0x1F) === 0 && ((1 << (_la - 88)) & 131089) !== 0) || _la === 182 || _la === 241 || _la === 271 || _la === 369 || _la === 422) { { - this.state = 5363; + this.state = 5365; this.ruleActionStmt(); } } } } - this.state = 5370; + this.state = 5372; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 5371; + this.state = 5373; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -29330,41 +30517,41 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new RuleActionStmtContext(this.context, this.state); this.enterRule(localContext, 452, PostgreSqlParser.RULE_ruleActionStmt); try { - this.state = 5379; + this.state = 5381; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 662, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5374; + this.state = 5376; this.selectStmt(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5375; + this.state = 5377; this.insertStmt(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5376; + this.state = 5378; this.updateStmt(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5377; + this.state = 5379; this.deleteStmt(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5378; + this.state = 5380; this.notifyStmt(); } break; @@ -29391,16 +30578,16 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5381; + this.state = 5383; this.match(PostgreSqlParser.KW_NOTIFY); - this.state = 5382; - this.colId(); this.state = 5384; + this.colId(); + this.state = 5386; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 5383; + this.state = 5385; this.notifyPayload(); } } @@ -29427,9 +30614,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5386; + this.state = 5388; this.match(PostgreSqlParser.COMMA); - this.state = 5387; + this.state = 5389; this.stringConst(); } } @@ -29453,9 +30640,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5389; + this.state = 5391; this.match(PostgreSqlParser.KW_LISTEN); - this.state = 5390; + this.state = 5392; this.colId(); } } @@ -29479,9 +30666,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5392; + this.state = 5394; this.match(PostgreSqlParser.KW_UNLISTEN); - this.state = 5395; + this.state = 5397; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -29879,13 +31066,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 5393; + this.state = 5395; this.colId(); } break; case PostgreSqlParser.STAR: { - this.state = 5394; + this.state = 5396; this.match(PostgreSqlParser.STAR); } break; @@ -29913,30 +31100,30 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 462, PostgreSqlParser.RULE_transactionStmt); let _la: number; try { - this.state = 5442; + this.state = 5444; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 674, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5397; - this.match(PostgreSqlParser.KW_BEGIN); this.state = 5399; + this.match(PostgreSqlParser.KW_BEGIN); + this.state = 5401; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 665, this.context) ) { case 1: { - this.state = 5398; + this.state = 5400; this.optTransaction(); } break; } - this.state = 5402; + this.state = 5404; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 666, this.context) ) { case 1: { - this.state = 5401; + this.state = 5403; this.transactionModeList(); } break; @@ -29946,16 +31133,16 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5404; + this.state = 5406; this.match(PostgreSqlParser.KW_START); - this.state = 5405; - this.match(PostgreSqlParser.KW_TRANSACTION); this.state = 5407; + this.match(PostgreSqlParser.KW_TRANSACTION); + this.state = 5409; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 667, this.context) ) { case 1: { - this.state = 5406; + this.state = 5408; this.transactionModeList(); } break; @@ -29965,46 +31152,46 @@ export class PostgreSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5409; + this.state = 5411; this.match(PostgreSqlParser.KW_SAVEPOINT); - this.state = 5410; + this.state = 5412; this.colId(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5411; - this.match(PostgreSqlParser.KW_RELEASE); this.state = 5413; + this.match(PostgreSqlParser.KW_RELEASE); + this.state = 5415; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 668, this.context) ) { case 1: { - this.state = 5412; + this.state = 5414; this.match(PostgreSqlParser.KW_SAVEPOINT); } break; } - this.state = 5415; + this.state = 5417; this.colId(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5416; + this.state = 5418; this.match(PostgreSqlParser.KW_PREPARE); - this.state = 5417; + this.state = 5419; this.match(PostgreSqlParser.KW_TRANSACTION); - this.state = 5418; + this.state = 5420; this.stringConst(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 5419; + this.state = 5421; _la = this.tokenStream.LA(1); if(!(_la === 161 || _la === 319)) { this.errorHandler.recoverInline(this); @@ -30013,16 +31200,16 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5420; + this.state = 5422; this.match(PostgreSqlParser.KW_PREPARED); - this.state = 5421; + this.state = 5423; this.stringConst(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 5422; + this.state = 5424; _la = this.tokenStream.LA(1); if(!(_la === 129 || _la === 161 || _la === 319 || _la === 454)) { this.errorHandler.recoverInline(this); @@ -30031,34 +31218,34 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5424; + this.state = 5426; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 669, this.context) ) { case 1: { - this.state = 5423; + this.state = 5425; this.optTransaction(); } break; } - this.state = 5431; + this.state = 5433; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 33) { { - this.state = 5426; - this.match(PostgreSqlParser.KW_AND); this.state = 5428; + this.match(PostgreSqlParser.KW_AND); + this.state = 5430; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 5427; + this.state = 5429; this.match(PostgreSqlParser.KW_NO); } } - this.state = 5430; + this.state = 5432; this.match(PostgreSqlParser.KW_CHAIN); } } @@ -30068,31 +31255,31 @@ export class PostgreSqlParser extends SQLParserBase { case 8: this.enterOuterAlt(localContext, 8); { - this.state = 5433; - this.match(PostgreSqlParser.KW_ROLLBACK); this.state = 5435; + this.match(PostgreSqlParser.KW_ROLLBACK); + this.state = 5437; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 356 || _la === 380) { { - this.state = 5434; + this.state = 5436; this.optTransaction(); } } - this.state = 5437; - this.match(PostgreSqlParser.KW_TO); this.state = 5439; + this.match(PostgreSqlParser.KW_TO); + this.state = 5441; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 673, this.context) ) { case 1: { - this.state = 5438; + this.state = 5440; this.match(PostgreSqlParser.KW_SAVEPOINT); } break; } - this.state = 5441; + this.state = 5443; this.colId(); } break; @@ -30119,7 +31306,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5444; + this.state = 5446; _la = this.tokenStream.LA(1); if(!(_la === 356 || _la === 380)) { this.errorHandler.recoverInline(this); @@ -30149,26 +31336,26 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 466, PostgreSqlParser.RULE_transactionModeItem); let _la: number; try { - this.state = 5455; + this.state = 5457; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ISOLATION: this.enterOuterAlt(localContext, 1); { - this.state = 5446; + this.state = 5448; this.match(PostgreSqlParser.KW_ISOLATION); - this.state = 5447; + this.state = 5449; this.match(PostgreSqlParser.KW_LEVEL); - this.state = 5448; + this.state = 5450; this.isoLevel(); } break; case PostgreSqlParser.KW_READ: this.enterOuterAlt(localContext, 2); { - this.state = 5449; + this.state = 5451; this.match(PostgreSqlParser.KW_READ); - this.state = 5450; + this.state = 5452; _la = this.tokenStream.LA(1); if(!(_la === 81 || _la === 382)) { this.errorHandler.recoverInline(this); @@ -30183,17 +31370,17 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_NOT: this.enterOuterAlt(localContext, 3); { - this.state = 5452; + this.state = 5454; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 5451; + this.state = 5453; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 5454; + this.state = 5456; this.match(PostgreSqlParser.KW_DEFERRABLE); } break; @@ -30223,31 +31410,31 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5457; + this.state = 5459; this.transactionModeItem(); - this.state = 5464; + this.state = 5466; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 678, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 5459; + this.state = 5461; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 5458; + this.state = 5460; this.match(PostgreSqlParser.COMMA); } } - this.state = 5461; + this.state = 5463; this.transactionModeItem(); } } } - this.state = 5466; + this.state = 5468; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 678, this.context); } @@ -30275,55 +31462,55 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new CreateViewContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5467; + this.state = 5469; this.match(PostgreSqlParser.KW_CREATE); - this.state = 5470; + this.state = 5472; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 5468; + this.state = 5470; this.match(PostgreSqlParser.KW_OR); - this.state = 5469; + this.state = 5471; this.match(PostgreSqlParser.KW_REPLACE); } } - this.state = 5473; + this.state = 5475; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 213 || _la === 254 || ((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 32773) !== 0)) { { - this.state = 5472; + this.state = 5474; this.optTemp(); } } - this.state = 5490; + this.state = 5492; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_VIEW: { - this.state = 5475; + this.state = 5477; this.match(PostgreSqlParser.KW_VIEW); - this.state = 5476; - this.viewNameCreate(); this.state = 5478; + this.viewNameCreate(); + this.state = 5480; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 5477; + this.state = 5479; this.columnListCreate(); } } - this.state = 5481; + this.state = 5483; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 5480; + this.state = 5482; this.optRelOptions(); } } @@ -30332,20 +31519,20 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_RECURSIVE: { - this.state = 5483; + this.state = 5485; this.match(PostgreSqlParser.KW_RECURSIVE); - this.state = 5484; + this.state = 5486; this.match(PostgreSqlParser.KW_VIEW); - this.state = 5485; + this.state = 5487; this.viewNameCreate(); - this.state = 5486; - this.optColumnList(); this.state = 5488; + this.optColumnList(); + this.state = 5490; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 5487; + this.state = 5489; this.optRelOptions(); } } @@ -30355,23 +31542,23 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5492; + this.state = 5494; this.match(PostgreSqlParser.KW_AS); - this.state = 5493; + this.state = 5495; this.selectStmt(); - this.state = 5500; + this.state = 5502; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 686, this.context) ) { case 1: { - this.state = 5494; - this.match(PostgreSqlParser.KW_WITH); this.state = 5496; + this.match(PostgreSqlParser.KW_WITH); + this.state = 5498; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 151 || _la === 254) { { - this.state = 5495; + this.state = 5497; _la = this.tokenStream.LA(1); if(!(_la === 151 || _la === 254)) { this.errorHandler.recoverInline(this); @@ -30383,9 +31570,9 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 5498; + this.state = 5500; this.match(PostgreSqlParser.KW_CHECK); - this.state = 5499; + this.state = 5501; this.match(PostgreSqlParser.KW_OPTION); } break; @@ -30412,9 +31599,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5502; + this.state = 5504; this.match(PostgreSqlParser.KW_LOAD); - this.state = 5503; + this.state = 5505; this.stringConst(); } } @@ -30440,28 +31627,28 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new CreateDatabaseContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5505; + this.state = 5507; this.match(PostgreSqlParser.KW_CREATE); - this.state = 5506; + this.state = 5508; this.match(PostgreSqlParser.KW_DATABASE); - this.state = 5507; - this.databaseNameCreate(); this.state = 5509; + this.databaseNameCreate(); + this.state = 5511; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 687, this.context) ) { case 1: { - this.state = 5508; + this.state = 5510; this.match(PostgreSqlParser.KW_WITH); } break; } - this.state = 5516; + this.state = 5518; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 689, this.context) ) { case 1: { - this.state = 5512; + this.state = 5514; this.errorHandler.sync(this); alternative = 1; do { @@ -30469,7 +31656,7 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 5511; + this.state = 5513; this.createDbOptItem(); } } @@ -30477,7 +31664,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5514; + this.state = 5516; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 688, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -30507,82 +31694,82 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5526; + this.state = 5528; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 690, this.context) ) { case 1: { - this.state = 5518; + this.state = 5520; this.match(PostgreSqlParser.KW_CONNECTION); - this.state = 5519; + this.state = 5521; this.match(PostgreSqlParser.KW_LIMIT); } break; case 2: { - this.state = 5520; + this.state = 5522; this.match(PostgreSqlParser.KW_ENCODING); } break; case 3: { - this.state = 5521; + this.state = 5523; this.match(PostgreSqlParser.KW_LOCATION); } break; case 4: { - this.state = 5522; + this.state = 5524; this.match(PostgreSqlParser.KW_OWNER); } break; case 5: { - this.state = 5523; + this.state = 5525; this.match(PostgreSqlParser.KW_TABLESPACE); } break; case 6: { - this.state = 5524; + this.state = 5526; this.match(PostgreSqlParser.KW_TEMPLATE); } break; case 7: { - this.state = 5525; + this.state = 5527; this.identifier(); } break; } - this.state = 5529; + this.state = 5531; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10) { { - this.state = 5528; + this.state = 5530; this.match(PostgreSqlParser.EQUAL); } } - this.state = 5534; + this.state = 5536; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 692, this.context) ) { case 1: { - this.state = 5531; + this.state = 5533; this.signedConst(); } break; case 2: { - this.state = 5532; + this.state = 5534; this.booleanOrString(); } break; case 3: { - this.state = 5533; + this.state = 5535; this.match(PostgreSqlParser.KW_DEFAULT); } break; @@ -30611,27 +31798,27 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5536; + this.state = 5538; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5537; + this.state = 5539; this.match(PostgreSqlParser.KW_DATABASE); - this.state = 5538; + this.state = 5540; this.databaseName(); - this.state = 5554; + this.state = 5556; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 697, this.context) ) { case 1: { - this.state = 5542; + this.state = 5544; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 693, this.context) ) { case 1: { - this.state = 5539; + this.state = 5541; this.match(PostgreSqlParser.KW_SET); - this.state = 5540; + this.state = 5542; this.match(PostgreSqlParser.KW_TABLESPACE); - this.state = 5541; + this.state = 5543; this.tableSpaceName(); } break; @@ -30640,22 +31827,22 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 5552; + this.state = 5554; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 696, this.context) ) { case 1: { - this.state = 5545; + this.state = 5547; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 5544; + this.state = 5546; this.match(PostgreSqlParser.KW_WITH); } } - this.state = 5548; + this.state = 5550; this.errorHandler.sync(this); alternative = 1; do { @@ -30663,7 +31850,7 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 5547; + this.state = 5549; this.createDbOptItem(); } } @@ -30671,7 +31858,7 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 5550; + this.state = 5552; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 695, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); @@ -30703,18 +31890,18 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5556; + this.state = 5558; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5557; + this.state = 5559; this.match(PostgreSqlParser.KW_DATABASE); - this.state = 5558; - this.databaseName(); this.state = 5560; + this.databaseName(); + this.state = 5562; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 698, this.context) ) { case 1: { - this.state = 5559; + this.state = 5561; this.setOrResetClause(); } break; @@ -30741,15 +31928,15 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5562; + this.state = 5564; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5563; + this.state = 5565; this.match(PostgreSqlParser.KW_COLLATION); - this.state = 5564; + this.state = 5566; this.anyName(); - this.state = 5565; + this.state = 5567; this.match(PostgreSqlParser.KW_REFRESH); - this.state = 5566; + this.state = 5568; this.match(PostgreSqlParser.KW_VERSION); } } @@ -30774,11 +31961,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5568; + this.state = 5570; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5569; + this.state = 5571; this.match(PostgreSqlParser.KW_SYSTEM); - this.state = 5570; + this.state = 5572; _la = this.tokenStream.LA(1); if(!(_la === 313 || _la === 333)) { this.errorHandler.recoverInline(this); @@ -30787,7 +31974,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5571; + this.state = 5573; this.genericSet(); } } @@ -30813,37 +32000,37 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 5573; + this.state = 5575; this.match(PostgreSqlParser.KW_CREATE); - this.state = 5574; + this.state = 5576; this.match(PostgreSqlParser.KW_DOMAIN); - this.state = 5575; - this.anyName(); this.state = 5577; + this.anyName(); + this.state = 5579; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 5576; + this.state = 5578; this.match(PostgreSqlParser.KW_AS); } } - this.state = 5579; + this.state = 5581; this.typename(); - this.state = 5583; + this.state = 5585; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 700, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 5580; + this.state = 5582; this.colConstraint(); } } } - this.state = 5585; + this.state = 5587; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 700, this.context); } @@ -30870,24 +32057,24 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5586; + this.state = 5588; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5587; + this.state = 5589; this.match(PostgreSqlParser.KW_DOMAIN); - this.state = 5588; + this.state = 5590; this.anyName(); - this.state = 5611; + this.state = 5613; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 704, this.context) ) { case 1: { - this.state = 5589; + this.state = 5591; this.alterColumnDefault(); } break; case 2: { - this.state = 5590; + this.state = 5592; _la = this.tokenStream.LA(1); if(!(_la === 191 || _la === 333)) { this.errorHandler.recoverInline(this); @@ -30896,56 +32083,56 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5591; + this.state = 5593; this.match(PostgreSqlParser.KW_NOT); - this.state = 5592; + this.state = 5594; this.match(PostgreSqlParser.KW_NULL); } break; case 3: { - this.state = 5593; + this.state = 5595; this.match(PostgreSqlParser.KW_ADD); - this.state = 5596; + this.state = 5598; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 45) { { - this.state = 5594; + this.state = 5596; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 5595; + this.state = 5597; this.colId(); } } - this.state = 5598; + this.state = 5600; this.constraintElem(); } break; case 4: { - this.state = 5599; + this.state = 5601; this.match(PostgreSqlParser.KW_DROP); - this.state = 5600; - this.match(PostgreSqlParser.KW_CONSTRAINT); this.state = 5602; + this.match(PostgreSqlParser.KW_CONSTRAINT); + this.state = 5604; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 702, this.context) ) { case 1: { - this.state = 5601; + this.state = 5603; this.ifExists(); } break; } - this.state = 5604; - this.colId(); this.state = 5606; + this.colId(); + this.state = 5608; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 703, this.context) ) { case 1: { - this.state = 5605; + this.state = 5607; this.optDropBehavior(); } break; @@ -30954,11 +32141,11 @@ export class PostgreSqlParser extends SQLParserBase { break; case 5: { - this.state = 5608; + this.state = 5610; this.match(PostgreSqlParser.KW_VALIDATE); - this.state = 5609; + this.state = 5611; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 5610; + this.state = 5612; this.colId(); } break; @@ -30985,17 +32172,17 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5613; + this.state = 5615; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5614; + this.state = 5616; this.match(PostgreSqlParser.KW_TEXT); - this.state = 5615; + this.state = 5617; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 5616; + this.state = 5618; this.match(PostgreSqlParser.KW_DICTIONARY); - this.state = 5617; + this.state = 5619; this.anyName(); - this.state = 5618; + this.state = 5620; this.definition(); } } @@ -31018,23 +32205,23 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 492, PostgreSqlParser.RULE_alterSearchConfigurationStmt); let _la: number; try { - this.state = 5661; + this.state = 5663; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 707, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5620; + this.state = 5622; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5621; + this.state = 5623; this.match(PostgreSqlParser.KW_TEXT); - this.state = 5622; + this.state = 5624; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 5623; + this.state = 5625; this.match(PostgreSqlParser.KW_CONFIGURATION); - this.state = 5624; + this.state = 5626; this.anyName(); - this.state = 5625; + this.state = 5627; _la = this.tokenStream.LA(1); if(!(_la === 133 || _la === 138)) { this.errorHandler.recoverInline(this); @@ -31043,87 +32230,87 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5626; + this.state = 5628; this.match(PostgreSqlParser.KW_MAPPING); - this.state = 5627; + this.state = 5629; this.match(PostgreSqlParser.KW_FOR); - this.state = 5628; + this.state = 5630; this.nameList(); - this.state = 5629; + this.state = 5631; this.match(PostgreSqlParser.KW_WITH); - this.state = 5630; + this.state = 5632; this.anyNameList(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5632; + this.state = 5634; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5633; + this.state = 5635; this.match(PostgreSqlParser.KW_TEXT); - this.state = 5634; + this.state = 5636; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 5635; + this.state = 5637; this.match(PostgreSqlParser.KW_CONFIGURATION); - this.state = 5636; + this.state = 5638; this.anyName(); - this.state = 5637; + this.state = 5639; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5638; + this.state = 5640; this.match(PostgreSqlParser.KW_MAPPING); - this.state = 5641; + this.state = 5643; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 5639; + this.state = 5641; this.match(PostgreSqlParser.KW_FOR); - this.state = 5640; + this.state = 5642; this.nameList(); } } - this.state = 5643; + this.state = 5645; this.match(PostgreSqlParser.KW_REPLACE); - this.state = 5644; + this.state = 5646; this.anyName(); - this.state = 5645; + this.state = 5647; this.match(PostgreSqlParser.KW_WITH); - this.state = 5646; + this.state = 5648; this.anyName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5648; + this.state = 5650; this.match(PostgreSqlParser.KW_ALTER); - this.state = 5649; + this.state = 5651; this.match(PostgreSqlParser.KW_TEXT); - this.state = 5650; + this.state = 5652; this.match(PostgreSqlParser.KW_SEARCH); - this.state = 5651; + this.state = 5653; this.match(PostgreSqlParser.KW_CONFIGURATION); - this.state = 5652; + this.state = 5654; this.anyName(); - this.state = 5653; + this.state = 5655; this.match(PostgreSqlParser.KW_DROP); - this.state = 5654; - this.match(PostgreSqlParser.KW_MAPPING); this.state = 5656; + this.match(PostgreSqlParser.KW_MAPPING); + this.state = 5658; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 220) { { - this.state = 5655; + this.state = 5657; this.ifExists(); } } - this.state = 5658; + this.state = 5660; this.match(PostgreSqlParser.KW_FOR); - this.state = 5659; + this.state = 5661; this.nameList(); } break; @@ -31150,33 +32337,33 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5663; - this.match(PostgreSqlParser.KW_CREATE); this.state = 5665; + this.match(PostgreSqlParser.KW_CREATE); + this.state = 5667; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 5664; + this.state = 5666; this.match(PostgreSqlParser.KW_DEFAULT); } } - this.state = 5667; - this.match(PostgreSqlParser.KW_CONVERSION); - this.state = 5668; - this.anyName(); this.state = 5669; - this.match(PostgreSqlParser.KW_FOR); + this.match(PostgreSqlParser.KW_CONVERSION); this.state = 5670; - this.stringConst(); + this.anyName(); this.state = 5671; - this.match(PostgreSqlParser.KW_TO); + this.match(PostgreSqlParser.KW_FOR); this.state = 5672; this.stringConst(); this.state = 5673; - this.match(PostgreSqlParser.KW_FROM); + this.match(PostgreSqlParser.KW_TO); this.state = 5674; + this.stringConst(); + this.state = 5675; + this.match(PostgreSqlParser.KW_FROM); + this.state = 5676; this.anyName(); } } @@ -31199,37 +32386,37 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 496, PostgreSqlParser.RULE_clusterStmt); let _la: number; try { - this.state = 5701; + this.state = 5703; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 714, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5676; - this.match(PostgreSqlParser.KW_CLUSTER); this.state = 5678; + this.match(PostgreSqlParser.KW_CLUSTER); + this.state = 5680; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128) { { - this.state = 5677; + this.state = 5679; this.optVerbose(); } } - this.state = 5684; + this.state = 5686; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 711, this.context) ) { case 1: { - this.state = 5680; - this.tableName(); this.state = 5682; + this.tableName(); + this.state = 5684; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 5681; + this.state = 5683; this.tableAccessMethodClause(); } } @@ -31242,38 +32429,38 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5686; + this.state = 5688; this.match(PostgreSqlParser.KW_CLUSTER); - this.state = 5687; + this.state = 5689; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5688; + this.state = 5690; this.optVerbose(); - this.state = 5693; + this.state = 5695; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5689; + this.state = 5691; this.match(PostgreSqlParser.COMMA); - this.state = 5690; + this.state = 5692; this.optVerbose(); } } - this.state = 5695; + this.state = 5697; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5696; + this.state = 5698; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 5697; - this.tableName(); this.state = 5699; + this.tableName(); + this.state = 5701; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 5698; + this.state = 5700; this.tableAccessMethodClause(); } } @@ -31303,50 +32490,50 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5703; + this.state = 5705; this.match(PostgreSqlParser.KW_VACUUM); - this.state = 5719; + this.state = 5721; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 720, this.context) ) { case 1: { { - this.state = 5705; + this.state = 5707; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 113) { { - this.state = 5704; + this.state = 5706; this.match(PostgreSqlParser.KW_FULL); } } - this.state = 5708; + this.state = 5710; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 112) { { - this.state = 5707; + this.state = 5709; this.match(PostgreSqlParser.KW_FREEZE); } } - this.state = 5711; + this.state = 5713; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128) { { - this.state = 5710; + this.state = 5712; this.optVerbose(); } } - this.state = 5714; + this.state = 5716; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 718, this.context) ) { case 1: { - this.state = 5713; + this.state = 5715; this.analyzeKeyword(); } break; @@ -31356,12 +32543,12 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 5717; + this.state = 5719; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 719, this.context) ) { case 1: { - this.state = 5716; + this.state = 5718; this.explainOptionList(); } break; @@ -31369,12 +32556,12 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 5722; + this.state = 5724; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 721, this.context) ) { case 1: { - this.state = 5721; + this.state = 5723; this.vacuumRelationList(); } break; @@ -31402,19 +32589,19 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5724; + this.state = 5726; this.analyzeKeyword(); - this.state = 5739; + this.state = 5741; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 724, this.context) ) { case 1: { - this.state = 5726; + this.state = 5728; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128) { { - this.state = 5725; + this.state = 5727; this.optVerbose(); } } @@ -31423,37 +32610,37 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 5728; + this.state = 5730; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5729; + this.state = 5731; this.analyzeOptionElem(); - this.state = 5734; + this.state = 5736; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5730; + this.state = 5732; this.match(PostgreSqlParser.COMMA); - this.state = 5731; + this.state = 5733; this.analyzeOptionElem(); } } - this.state = 5736; + this.state = 5738; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5737; + this.state = 5739; this.match(PostgreSqlParser.CLOSE_PAREN); } break; } - this.state = 5742; + this.state = 5744; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 725, this.context) ) { case 1: { - this.state = 5741; + this.state = 5743; this.vacuumRelationList(); } break; @@ -31481,7 +32668,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5744; + this.state = 5746; _la = this.tokenStream.LA(1); if(!(_la === 31 || _la === 32)) { this.errorHandler.recoverInline(this); @@ -31512,7 +32699,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5748; + this.state = 5750; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -31931,21 +33118,21 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 5746; + this.state = 5748; this.nonReservedWord(); } break; case PostgreSqlParser.KW_ANALYSE: case PostgreSqlParser.KW_ANALYZE: { - this.state = 5747; + this.state = 5749; this.analyzeKeyword(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 5752; + this.state = 5754; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -32367,7 +33554,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 5750; + this.state = 5752; this.booleanOrString(); } break; @@ -32376,7 +33563,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.Integral: case PostgreSqlParser.Numeric: { - this.state = 5751; + this.state = 5753; this.numericOnly(); } break; @@ -32407,14 +33594,14 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 506, PostgreSqlParser.RULE_analyzeOptionElem); let _la: number; try { - this.state = 5763; + this.state = 5765; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_VERBOSE: case PostgreSqlParser.KW_SKIP_LOCKED: this.enterOuterAlt(localContext, 1); { - this.state = 5754; + this.state = 5756; _la = this.tokenStream.LA(1); if(!(_la === 128 || _la === 547)) { this.errorHandler.recoverInline(this); @@ -32423,12 +33610,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5756; + this.state = 5758; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 60 || _la === 96) { { - this.state = 5755; + this.state = 5757; _la = this.tokenStream.LA(1); if(!(_la === 60 || _la === 96)) { this.errorHandler.recoverInline(this); @@ -32445,9 +33632,9 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_BUFFER_USAGE_LIMIT: this.enterOuterAlt(localContext, 2); { - this.state = 5758; + this.state = 5760; this.match(PostgreSqlParser.KW_BUFFER_USAGE_LIMIT); - this.state = 5761; + this.state = 5763; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.PLUS: @@ -32455,7 +33642,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.Integral: case PostgreSqlParser.Numeric: { - this.state = 5759; + this.state = 5761; this.numericOnly(); } break; @@ -32464,7 +33651,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 5760; + this.state = 5762; this.stringConst(); } break; @@ -32498,14 +33685,14 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5765; - this.match(PostgreSqlParser.KW_VERBOSE); this.state = 5767; + this.match(PostgreSqlParser.KW_VERBOSE); + this.state = 5769; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 60 || _la === 96) { { - this.state = 5766; + this.state = 5768; _la = this.tokenStream.LA(1); if(!(_la === 60 || _la === 96)) { this.errorHandler.recoverInline(this); @@ -32539,14 +33726,14 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5769; - this.tableName(); this.state = 5771; + this.tableName(); + this.state = 5773; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 732, this.context) ) { case 1: { - this.state = 5770; + this.state = 5772; this.optColumnList(); } break; @@ -32574,21 +33761,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5773; + this.state = 5775; this.vacuumRelation(); - this.state = 5778; + this.state = 5780; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5774; + this.state = 5776; this.match(PostgreSqlParser.COMMA); - this.state = 5775; + this.state = 5777; this.vacuumRelation(); } } - this.state = 5780; + this.state = 5782; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -32615,25 +33802,25 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5781; + this.state = 5783; this.match(PostgreSqlParser.KW_EXPLAIN); - this.state = 5792; + this.state = 5794; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 737, this.context) ) { case 1: { - this.state = 5782; + this.state = 5784; this.explainOptionList(); } break; case 2: { - this.state = 5784; + this.state = 5786; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128) { { - this.state = 5783; + this.state = 5785; this.match(PostgreSqlParser.KW_VERBOSE); } } @@ -32642,19 +33829,19 @@ export class PostgreSqlParser extends SQLParserBase { break; case 3: { - this.state = 5790; + this.state = 5792; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 31 || _la === 32) { { - this.state = 5786; - this.analyzeKeyword(); this.state = 5788; + this.analyzeKeyword(); + this.state = 5790; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 128) { { - this.state = 5787; + this.state = 5789; this.optVerbose(); } } @@ -32665,7 +33852,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 5794; + this.state = 5796; this.explainableStmt(); } } @@ -32687,69 +33874,69 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ExplainableStmtContext(this.context, this.state); this.enterRule(localContext, 516, PostgreSqlParser.RULE_explainableStmt); try { - this.state = 5805; + this.state = 5807; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 738, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5796; + this.state = 5798; this.selectStmt(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5797; + this.state = 5799; this.insertStmt(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5798; + this.state = 5800; this.updateStmt(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5799; + this.state = 5801; this.deleteStmt(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5800; + this.state = 5802; this.declareCursorStmt(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 5801; + this.state = 5803; this.createAsStmt(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 5802; + this.state = 5804; this.createMaterializedViewStmt(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 5803; + this.state = 5805; this.refreshMaterializedViewStmt(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 5804; + this.state = 5806; this.executeStmt(); } break; @@ -32776,27 +33963,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5807; + this.state = 5809; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5808; + this.state = 5810; this.vacAnalyzeOptionElem(); - this.state = 5813; + this.state = 5815; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5809; + this.state = 5811; this.match(PostgreSqlParser.COMMA); - this.state = 5810; + this.state = 5812; this.vacAnalyzeOptionElem(); } } - this.state = 5815; + this.state = 5817; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5816; + this.state = 5818; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -32821,23 +34008,23 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5818; + this.state = 5820; this.match(PostgreSqlParser.KW_PREPARE); - this.state = 5819; - this.colId(); this.state = 5821; + this.colId(); + this.state = 5823; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 5820; + this.state = 5822; this.prepTypeClause(); } } - this.state = 5823; + this.state = 5825; this.match(PostgreSqlParser.KW_AS); - this.state = 5824; + this.state = 5826; this.preParableStmt(); } } @@ -32862,27 +34049,27 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5826; + this.state = 5828; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5827; + this.state = 5829; this.typename(); - this.state = 5832; + this.state = 5834; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5828; + this.state = 5830; this.match(PostgreSqlParser.COMMA); - this.state = 5829; + this.state = 5831; this.typename(); } } - this.state = 5834; + this.state = 5836; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 5835; + this.state = 5837; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -32904,41 +34091,41 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new PreParableStmtContext(this.context, this.state); this.enterRule(localContext, 524, PostgreSqlParser.RULE_preParableStmt); try { - this.state = 5842; + this.state = 5844; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 742, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 5837; + this.state = 5839; this.selectStmt(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 5838; + this.state = 5840; this.insertStmt(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 5839; + this.state = 5841; this.updateStmt(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 5840; + this.state = 5842; this.deleteStmt(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 5841; + this.state = 5843; this.mergeStmt(); } break; @@ -32963,22 +34150,22 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 526, PostgreSqlParser.RULE_executeStmt); let _la: number; try { - this.state = 5867; + this.state = 5869; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_EXECUTE: this.enterOuterAlt(localContext, 1); { - this.state = 5844; + this.state = 5846; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 5845; - this.colId(); this.state = 5847; + this.colId(); + this.state = 5849; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 743, this.context) ) { case 1: { - this.state = 5846; + this.state = 5848; this.executeParamClause(); } break; @@ -32988,54 +34175,54 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_CREATE: this.enterOuterAlt(localContext, 2); { - this.state = 5849; - this.match(PostgreSqlParser.KW_CREATE); this.state = 5851; + this.match(PostgreSqlParser.KW_CREATE); + this.state = 5853; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 213 || _la === 254 || ((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 32773) !== 0)) { { - this.state = 5850; + this.state = 5852; this.optTemp(); } } - this.state = 5853; - this.match(PostgreSqlParser.KW_TABLE); this.state = 5855; + this.match(PostgreSqlParser.KW_TABLE); + this.state = 5857; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 745, this.context) ) { case 1: { - this.state = 5854; + this.state = 5856; this.ifNotExists(); } break; } - this.state = 5857; + this.state = 5859; this.createAsTarget(); - this.state = 5858; + this.state = 5860; this.match(PostgreSqlParser.KW_AS); - this.state = 5859; + this.state = 5861; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 5860; - this.colId(); this.state = 5862; + this.colId(); + this.state = 5864; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 746, this.context) ) { case 1: { - this.state = 5861; + this.state = 5863; this.executeParamClause(); } break; } - this.state = 5865; + this.state = 5867; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 747, this.context) ) { case 1: { - this.state = 5864; + this.state = 5866; this.optWithData(); } break; @@ -33066,11 +34253,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5869; + this.state = 5871; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5870; + this.state = 5872; this.exprList(); - this.state = 5871; + this.state = 5873; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -33094,19 +34281,19 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5873; - this.match(PostgreSqlParser.KW_DEALLOCATE); this.state = 5875; + this.match(PostgreSqlParser.KW_DEALLOCATE); + this.state = 5877; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 749, this.context) ) { case 1: { - this.state = 5874; + this.state = 5876; this.match(PostgreSqlParser.KW_PREPARE); } break; } - this.state = 5879; + this.state = 5881; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -33504,13 +34691,13 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 5877; + this.state = 5879; this.colId(); } break; case PostgreSqlParser.KW_ALL: { - this.state = 5878; + this.state = 5880; this.match(PostgreSqlParser.KW_ALL); } break; @@ -33541,58 +34728,58 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new InsertStatementContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 5882; + this.state = 5884; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 5881; + this.state = 5883; this.withClause(); } } - this.state = 5884; + this.state = 5886; this.match(PostgreSqlParser.KW_INSERT); - this.state = 5885; + this.state = 5887; this.match(PostgreSqlParser.KW_INTO); - this.state = 5886; + this.state = 5888; this.tableName(); - this.state = 5889; + this.state = 5891; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 5887; + this.state = 5889; this.match(PostgreSqlParser.KW_AS); - this.state = 5888; + this.state = 5890; this.colId(); } } - this.state = 5891; + this.state = 5893; this.insertRest(); - this.state = 5913; + this.state = 5915; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 80) { { - this.state = 5892; + this.state = 5894; this.match(PostgreSqlParser.KW_ON); - this.state = 5893; + this.state = 5895; this.match(PostgreSqlParser.KW_CONFLICT); - this.state = 5901; + this.state = 5903; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: { - this.state = 5894; - this.indexParams(); this.state = 5896; + this.indexParams(); + this.state = 5898; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 5895; + this.state = 5897; this.whereClause(); } } @@ -33601,11 +34788,11 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_ON: { - this.state = 5898; + this.state = 5900; this.match(PostgreSqlParser.KW_ON); - this.state = 5899; + this.state = 5901; this.match(PostgreSqlParser.KW_CONSTRAINT); - this.state = 5900; + this.state = 5902; this.colId(); } break; @@ -33614,25 +34801,25 @@ export class PostgreSqlParser extends SQLParserBase { default: break; } - this.state = 5903; + this.state = 5905; this.match(PostgreSqlParser.KW_DO); - this.state = 5911; + this.state = 5913; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_UPDATE: { - this.state = 5904; + this.state = 5906; this.match(PostgreSqlParser.KW_UPDATE); - this.state = 5905; + this.state = 5907; this.match(PostgreSqlParser.KW_SET); - this.state = 5906; - this.setClauseList(); this.state = 5908; + this.setClauseList(); + this.state = 5910; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 5907; + this.state = 5909; this.whereClause(); } } @@ -33641,7 +34828,7 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_NOTHING: { - this.state = 5910; + this.state = 5912; this.match(PostgreSqlParser.KW_NOTHING); } break; @@ -33651,12 +34838,12 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 5916; + this.state = 5918; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 87) { { - this.state = 5915; + this.state = 5917; this.returningClause(); } } @@ -33684,28 +34871,28 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5922; + this.state = 5924; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 759, this.context) ) { case 1: { - this.state = 5918; + this.state = 5920; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 5919; + this.state = 5921; this.insertColumnList(); - this.state = 5920; + this.state = 5922; this.match(PostgreSqlParser.CLOSE_PAREN); } break; } - this.state = 5927; + this.state = 5929; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 463) { { - this.state = 5924; + this.state = 5926; this.match(PostgreSqlParser.KW_OVERRIDING); - this.state = 5925; + this.state = 5927; _la = this.tokenStream.LA(1); if(!(_la === 99 || _la === 349)) { this.errorHandler.recoverInline(this); @@ -33714,23 +34901,23 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 5926; + this.state = 5928; this.match(PostgreSqlParser.KW_VALUE); } } - this.state = 5931; + this.state = 5933; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 761, this.context) ) { case 1: { - this.state = 5929; + this.state = 5931; this.defaultValuesOrValues(); } break; case 2: { - this.state = 5930; + this.state = 5932; this.selectStmt(); } break; @@ -33758,21 +34945,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5933; + this.state = 5935; this.insertColumnItem(); - this.state = 5938; + this.state = 5940; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 5934; + this.state = 5936; this.match(PostgreSqlParser.COMMA); - this.state = 5935; + this.state = 5937; this.insertColumnItem(); } } - this.state = 5940; + this.state = 5942; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -33798,9 +34985,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5941; + this.state = 5943; this.columnName(); - this.state = 5942; + this.state = 5944; this.optIndirection(); } } @@ -33824,9 +35011,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5944; + this.state = 5946; this.match(PostgreSqlParser.KW_RETURNING); - this.state = 5945; + this.state = 5947; this.targetList(); } } @@ -33851,245 +35038,50 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 5948; + this.state = 5950; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 5947; + this.state = 5949; this.withClause(); } } - this.state = 5950; + this.state = 5952; this.match(PostgreSqlParser.KW_DELETE); - this.state = 5951; + this.state = 5953; this.match(PostgreSqlParser.KW_FROM); - this.state = 5952; + this.state = 5954; this.relationExprOptAlias(); - this.state = 5955; + this.state = 5957; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 5953; + this.state = 5955; this.match(PostgreSqlParser.KW_USING); - this.state = 5954; + this.state = 5956; this.fromList(); } } - this.state = 5958; + this.state = 5960; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 5957; + this.state = 5959; this.whereOrCurrentClause(); } } - this.state = 5961; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 87) { - { - this.state = 5960; - this.returningClause(); - } - } - - } - } - 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 lockStmt(): LockStmtContext { - let localContext = new LockStmtContext(this.context, this.state); - this.enterRule(localContext, 544, PostgreSqlParser.RULE_lockStmt); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { this.state = 5963; - this.match(PostgreSqlParser.KW_LOCK); - this.state = 5965; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 92) { - { - this.state = 5964; - this.match(PostgreSqlParser.KW_TABLE); - } - } - - this.state = 5967; - this.relationExprList(); - this.state = 5982; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 68) { - { - this.state = 5968; - this.match(PostgreSqlParser.KW_IN); - this.state = 5979; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.KW_ACCESS: - case PostgreSqlParser.KW_ROW: - { - this.state = 5969; - _la = this.tokenStream.LA(1); - if(!(_la === 131 || _la === 414)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 5970; - _la = this.tokenStream.LA(1); - if(!(_la === 201 || _la === 334)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - } - break; - case PostgreSqlParser.KW_SHARE: - { - this.state = 5971; - this.match(PostgreSqlParser.KW_SHARE); - this.state = 5976; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.KW_UPDATE: - { - this.state = 5972; - this.match(PostgreSqlParser.KW_UPDATE); - this.state = 5973; - this.match(PostgreSqlParser.KW_EXCLUSIVE); - } - break; - case PostgreSqlParser.KW_ROW: - { - this.state = 5974; - this.match(PostgreSqlParser.KW_ROW); - this.state = 5975; - this.match(PostgreSqlParser.KW_EXCLUSIVE); - } - break; - case PostgreSqlParser.KW_MODE: - break; - default: - break; - } - } - break; - case PostgreSqlParser.KW_EXCLUSIVE: - { - this.state = 5978; - this.match(PostgreSqlParser.KW_EXCLUSIVE); - } - break; - default: - throw new antlr.NoViableAltException(this); - } - this.state = 5981; - this.match(PostgreSqlParser.KW_MODE); - } - } - - this.state = 5985; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 771, this.context) ) { - case 1: - { - this.state = 5984; - this.match(PostgreSqlParser.KW_NOWAIT); - } - break; - } - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public updateStmt(): UpdateStmtContext { - let localContext = new UpdateStmtContext(this.context, this.state); - this.enterRule(localContext, 546, PostgreSqlParser.RULE_updateStmt); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 5988; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 105) { - { - this.state = 5987; - this.withClause(); - } - } - - this.state = 5990; - this.match(PostgreSqlParser.KW_UPDATE); - this.state = 5991; - this.relationExprOptAlias(); - this.state = 5992; - this.match(PostgreSqlParser.KW_SET); - this.state = 5993; - this.setClauseList(); - this.state = 5995; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 64) { - { - this.state = 5994; - this.fromClause(); - } - } - - this.state = 5998; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 103) { - { - this.state = 5997; - this.whereOrCurrentClause(); - } - } - - this.state = 6001; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 87) { { - this.state = 6000; + this.state = 5962; this.returningClause(); } } @@ -34110,290 +35102,114 @@ export class PostgreSqlParser extends SQLParserBase { } return localContext; } - public setClauseList(): SetClauseListContext { - let localContext = new SetClauseListContext(this.context, this.state); - this.enterRule(localContext, 548, PostgreSqlParser.RULE_setClauseList); + public lockStmt(): LockStmtContext { + let localContext = new LockStmtContext(this.context, this.state); + this.enterRule(localContext, 544, PostgreSqlParser.RULE_lockStmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6003; - this.setClause(); - this.state = 6008; + this.state = 5965; + this.match(PostgreSqlParser.KW_LOCK); + this.state = 5967; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 6) { - { + if (_la === 92) { { - this.state = 6004; - this.match(PostgreSqlParser.COMMA); - this.state = 6005; - this.setClause(); - } + this.state = 5966; + this.match(PostgreSqlParser.KW_TABLE); } - this.state = 6010; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } - } - } - 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 setClause(): SetClauseContext { - let localContext = new SetClauseContext(this.context, this.state); - this.enterRule(localContext, 550, PostgreSqlParser.RULE_setClause); - try { - this.state = 6029; + + this.state = 5969; + this.relationExprList(); + this.state = 5984; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 779, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 6011; - this.insertColumnItem(); - this.state = 6012; - this.match(PostgreSqlParser.EQUAL); - this.state = 6013; - this.expression(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); + _la = this.tokenStream.LA(1); + if (_la === 68) { { - this.state = 6015; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6016; - this.insertColumnList(); - this.state = 6017; - this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 6018; - this.match(PostgreSqlParser.EQUAL); - this.state = 6027; + this.state = 5970; + this.match(PostgreSqlParser.KW_IN); + this.state = 5981; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 778, this.context) ) { - case 1: + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.KW_ACCESS: + case PostgreSqlParser.KW_ROW: { - this.state = 6020; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 777, this.context) ) { - case 1: - { - this.state = 6019; - this.match(PostgreSqlParser.KW_ROW); - } - break; + this.state = 5971; + _la = this.tokenStream.LA(1); + if(!(_la === 131 || _la === 414)) { + this.errorHandler.recoverInline(this); } - this.state = 6022; - this.expression(); + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 5972; + _la = this.tokenStream.LA(1); + if(!(_la === 201 || _la === 334)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); } - break; - case 2: - { - this.state = 6023; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6024; - this.selectClause(); - this.state = 6025; - this.match(PostgreSqlParser.CLOSE_PAREN); } break; - } - } - break; - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public declareCursorStmt(): DeclareCursorStmtContext { - let localContext = new DeclareCursorStmtContext(this.context, this.state); - this.enterRule(localContext, 552, PostgreSqlParser.RULE_declareCursorStmt); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 6031; - this.match(PostgreSqlParser.KW_DECLARE); - this.state = 6032; - this.colId(); - { - this.state = 6041; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 107 || _la === 240 || _la === 269 || _la === 324) { - { - this.state = 6039; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.KW_NO: - case PostgreSqlParser.KW_SCROLL: - { + case PostgreSqlParser.KW_SHARE: { - this.state = 6034; + this.state = 5973; + this.match(PostgreSqlParser.KW_SHARE); + this.state = 5978; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 269) { + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.KW_UPDATE: { - this.state = 6033; - this.match(PostgreSqlParser.KW_NO); + this.state = 5974; + this.match(PostgreSqlParser.KW_UPDATE); + this.state = 5975; + this.match(PostgreSqlParser.KW_EXCLUSIVE); } + break; + case PostgreSqlParser.KW_ROW: + { + this.state = 5976; + this.match(PostgreSqlParser.KW_ROW); + this.state = 5977; + this.match(PostgreSqlParser.KW_EXCLUSIVE); + } + break; + case PostgreSqlParser.KW_MODE: + break; + default: + break; } - - this.state = 6036; - this.match(PostgreSqlParser.KW_SCROLL); - } - } - break; - case PostgreSqlParser.KW_BINARY: - { - this.state = 6037; - this.match(PostgreSqlParser.KW_BINARY); } break; - case PostgreSqlParser.KW_INSENSITIVE: + case PostgreSqlParser.KW_EXCLUSIVE: { - this.state = 6038; - this.match(PostgreSqlParser.KW_INSENSITIVE); + this.state = 5980; + this.match(PostgreSqlParser.KW_EXCLUSIVE); } break; default: throw new antlr.NoViableAltException(this); } - } - this.state = 6043; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } - } - this.state = 6044; - this.match(PostgreSqlParser.KW_CURSOR); - this.state = 6047; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 105 || _la === 379) { - { - this.state = 6045; - _la = this.tokenStream.LA(1); - if(!(_la === 105 || _la === 379)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 6046; - this.match(PostgreSqlParser.KW_HOLD); + this.state = 5983; + this.match(PostgreSqlParser.KW_MODE); } } - this.state = 6049; - this.match(PostgreSqlParser.KW_FOR); - this.state = 6050; - this.selectStmt(); - } - } - 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 selectStmt(): SelectStmtContext { - let localContext = new SelectStmtContext(this.context, this.state); - this.enterRule(localContext, 554, PostgreSqlParser.RULE_selectStmt); - try { - this.state = 6054; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 784, this.context) ) { - case 1: - localContext = new SelectStatementContext(localContext); - this.enterOuterAlt(localContext, 1); - { - this.state = 6052; - this.selectNoParens(); - } - break; - case 2: - localContext = new SelectStatementContext(localContext); - this.enterOuterAlt(localContext, 2); - { - this.state = 6053; - this.selectWithParens(); - } - break; - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public selectWithParens(): SelectWithParensContext { - let localContext = new SelectWithParensContext(this.context, this.state); - this.enterRule(localContext, 556, PostgreSqlParser.RULE_selectWithParens); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 6056; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6059; + this.state = 5987; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 785, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 771, this.context) ) { case 1: { - this.state = 6057; - this.selectNoParens(); - } - break; - case 2: - { - this.state = 6058; - this.selectWithParens(); + this.state = 5986; + this.match(PostgreSqlParser.KW_NOWAIT); } break; } - this.state = 6061; - this.match(PostgreSqlParser.CLOSE_PAREN); } } catch (re) { @@ -34410,108 +35226,61 @@ export class PostgreSqlParser extends SQLParserBase { } return localContext; } - public selectNoParens(): SelectNoParensContext { - let localContext = new SelectNoParensContext(this.context, this.state); - this.enterRule(localContext, 558, PostgreSqlParser.RULE_selectNoParens); + public updateStmt(): UpdateStmtContext { + let localContext = new UpdateStmtContext(this.context, this.state); + this.enterRule(localContext, 546, PostgreSqlParser.RULE_updateStmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6064; + this.state = 5990; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 6063; + this.state = 5989; this.withClause(); } } - this.state = 6066; - this.selectClause(); - this.state = 6068; + this.state = 5992; + this.match(PostgreSqlParser.KW_UPDATE); + this.state = 5993; + this.relationExprOptAlias(); + this.state = 5994; + this.match(PostgreSqlParser.KW_SET); + this.state = 5995; + this.setClauseList(); + this.state = 5997; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 83) { + if (_la === 64) { { - this.state = 6067; - this.sortClause(); + this.state = 5996; + this.fromClause(); } } - this.state = 6078; + this.state = 6000; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 790, this.context) ) { - case 1: - { - this.state = 6070; - this.forLockingClause(); - this.state = 6072; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 788, this.context) ) { - case 1: - { - this.state = 6071; - this.selectLimit(); - } - break; - } - } - break; - case 2: + _la = this.tokenStream.LA(1); + if (_la === 103) { { - this.state = 6074; - this.selectLimit(); - this.state = 6076; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 62) { - { - this.state = 6075; - this.forLockingClause(); - } - } - + this.state = 5999; + this.whereOrCurrentClause(); } - break; - } - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; } - } - finally { - this.exitRule(); - } - return localContext; - } - public selectClause(): SelectClauseContext { - let localContext = new SelectClauseContext(this.context, this.state); - this.enterRule(localContext, 560, PostgreSqlParser.RULE_selectClause); - try { - this.state = 6082; + + this.state = 6003; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 791, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 6080; - this.simpleSelect(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); + _la = this.tokenStream.LA(1); + if (_la === 87) { { - this.state = 6081; - this.selectWithParens(); + this.state = 6002; + this.returningClause(); } - break; + } + } } catch (re) { @@ -34528,138 +35297,30 @@ export class PostgreSqlParser extends SQLParserBase { } return localContext; } - public simpleSelect(): SimpleSelectContext { - let localContext = new SimpleSelectContext(this.context, this.state); - this.enterRule(localContext, 562, PostgreSqlParser.RULE_simpleSelect); + public setClauseList(): SetClauseListContext { + let localContext = new SetClauseListContext(this.context, this.state); + this.enterRule(localContext, 548, PostgreSqlParser.RULE_setClauseList); + let _la: number; try { - let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6106; + this.state = 6005; + this.setClause(); + this.state = 6010; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.KW_SELECT: - { - this.state = 6084; - this.match(PostgreSqlParser.KW_SELECT); - this.state = 6094; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 795, this.context) ) { - case 1: - { - this.state = 6086; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 792, this.context) ) { - case 1: - { - this.state = 6085; - this.match(PostgreSqlParser.KW_ALL); - } - break; - } - this.state = 6089; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 793, this.context) ) { - case 1: - { - this.state = 6088; - this.intoClause(); - } - break; - } - } - break; - case 2: - { - this.state = 6092; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 794, this.context) ) { - case 1: - { - this.state = 6091; - this.distinctClause(); - } - break; - } - } - break; - } - this.state = 6096; - this.sqlExpression(); - } - break; - case PostgreSqlParser.KW_VALUES: - { - this.state = 6097; - this.valuesClause(); - } - break; - case PostgreSqlParser.KW_TABLE: + _la = this.tokenStream.LA(1); + while (_la === 6) { { - this.state = 6098; - this.match(PostgreSqlParser.KW_TABLE); - this.state = 6099; - this.relationExpr(); - } - break; - case PostgreSqlParser.OPEN_PAREN: { - this.state = 6100; - this.selectWithParens(); - this.state = 6101; - this.setOperatorWithAllOrDistinct(); - this.state = 6104; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 796, this.context) ) { - case 1: - { - this.state = 6102; - this.simpleSelect(); - } - break; - case 2: - { - this.state = 6103; - this.selectWithParens(); - } - break; - } + this.state = 6006; + this.match(PostgreSqlParser.COMMA); + this.state = 6007; + this.setClause(); } - break; - default: - throw new antlr.NoViableAltException(this); - } - this.state = 6115; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 799, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - { - this.state = 6108; - this.setOperatorWithAllOrDistinct(); - this.state = 6111; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 798, this.context) ) { - case 1: - { - this.state = 6109; - this.simpleSelect(); - } - break; - case 2: - { - this.state = 6110; - this.selectWithParens(); - } - break; - } - } - } } - this.state = 6117; + this.state = 6012; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 799, this.context); + _la = this.tokenStream.LA(1); } } } @@ -34677,96 +35338,462 @@ export class PostgreSqlParser extends SQLParserBase { } return localContext; } - public setOperatorWithAllOrDistinct(): SetOperatorWithAllOrDistinctContext { - let localContext = new SetOperatorWithAllOrDistinctContext(this.context, this.state); - this.enterRule(localContext, 564, PostgreSqlParser.RULE_setOperatorWithAllOrDistinct); - let _la: number; + public setClause(): SetClauseContext { + let localContext = new SetClauseContext(this.context, this.state); + this.enterRule(localContext, 550, PostgreSqlParser.RULE_setClause); try { - this.enterOuterAlt(localContext, 1); - { - this.state = 6118; - _la = this.tokenStream.LA(1); - if(!(_la === 59 || _la === 70 || _la === 97)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 6120; + this.state = 6031; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 30 || _la === 56) { - { - this.state = 6119; - _la = this.tokenStream.LA(1); - if(!(_la === 30 || _la === 56)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - } - } - - } - } - 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 withClause(): WithClauseContext { - let localContext = new WithClauseContext(this.context, this.state); - this.enterRule(localContext, 566, PostgreSqlParser.RULE_withClause); - try { - let alternative: number; - this.enterOuterAlt(localContext, 1); - { - this.state = 6122; - this.match(PostgreSqlParser.KW_WITH); - this.state = 6124; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 801, this.context) ) { - case 1: + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.KW_DEFAULT: + case PostgreSqlParser.KW_IS: + case PostgreSqlParser.KW_OUTER: + case PostgreSqlParser.KW_OVER: + case PostgreSqlParser.KW_ABORT: + case PostgreSqlParser.KW_ABSOLUTE: + case PostgreSqlParser.KW_ACCESS: + case PostgreSqlParser.KW_ACTION: + case PostgreSqlParser.KW_ADD: + case PostgreSqlParser.KW_ADMIN: + case PostgreSqlParser.KW_AFTER: + case PostgreSqlParser.KW_AGGREGATE: + case PostgreSqlParser.KW_ALSO: + case PostgreSqlParser.KW_ALTER: + case PostgreSqlParser.KW_ALWAYS: + case PostgreSqlParser.KW_ASSERTION: + case PostgreSqlParser.KW_ASSIGNMENT: + case PostgreSqlParser.KW_AT: + case PostgreSqlParser.KW_ATTRIBUTE: + case PostgreSqlParser.KW_BACKWARD: + case PostgreSqlParser.KW_BEFORE: + case PostgreSqlParser.KW_BEGIN: + case PostgreSqlParser.KW_BY: + case PostgreSqlParser.KW_CACHE: + case PostgreSqlParser.KW_CALLED: + case PostgreSqlParser.KW_CASCADE: + case PostgreSqlParser.KW_CASCADED: + case PostgreSqlParser.KW_CATALOG: + case PostgreSqlParser.KW_CHAIN: + case PostgreSqlParser.KW_CHARACTERISTICS: + case PostgreSqlParser.KW_CHECKPOINT: + case PostgreSqlParser.KW_CLASS: + case PostgreSqlParser.KW_CLOSE: + case PostgreSqlParser.KW_CLUSTER: + case PostgreSqlParser.KW_COMMENT: + case PostgreSqlParser.KW_COMMENTS: + case PostgreSqlParser.KW_COMMIT: + case PostgreSqlParser.KW_COMMITTED: + case PostgreSqlParser.KW_CONFIGURATION: + case PostgreSqlParser.KW_CONNECTION: + case PostgreSqlParser.KW_CONSTRAINTS: + case PostgreSqlParser.KW_CONTENT: + case PostgreSqlParser.KW_CONTINUE: + case PostgreSqlParser.KW_CONVERSION: + case PostgreSqlParser.KW_COPY: + case PostgreSqlParser.KW_COST: + case PostgreSqlParser.KW_CSV: + case PostgreSqlParser.KW_CURSOR: + case PostgreSqlParser.KW_CYCLE: + case PostgreSqlParser.KW_DATA: + case PostgreSqlParser.KW_DATABASE: + case PostgreSqlParser.KW_DAY: + case PostgreSqlParser.KW_DEALLOCATE: + case PostgreSqlParser.KW_DECLARE: + case PostgreSqlParser.KW_DEFAULTS: + case PostgreSqlParser.KW_DEFERRED: + case PostgreSqlParser.KW_DEFINER: + case PostgreSqlParser.KW_DELETE: + case PostgreSqlParser.KW_DELIMITER: + case PostgreSqlParser.KW_DELIMITERS: + case PostgreSqlParser.KW_DICTIONARY: + case PostgreSqlParser.KW_DISABLE: + case PostgreSqlParser.KW_DISCARD: + case PostgreSqlParser.KW_DOCUMENT: + case PostgreSqlParser.KW_DOMAIN: + case PostgreSqlParser.KW_DOUBLE: + case PostgreSqlParser.KW_DROP: + case PostgreSqlParser.KW_EACH: + case PostgreSqlParser.KW_ENABLE: + case PostgreSqlParser.KW_ENCODING: + case PostgreSqlParser.KW_ENCRYPTED: + case PostgreSqlParser.KW_ENUM: + case PostgreSqlParser.KW_ESCAPE: + case PostgreSqlParser.KW_EVENT: + case PostgreSqlParser.KW_EXCLUDE: + case PostgreSqlParser.KW_EXCLUDING: + case PostgreSqlParser.KW_EXCLUSIVE: + case PostgreSqlParser.KW_EXECUTE: + case PostgreSqlParser.KW_EXPLAIN: + case PostgreSqlParser.KW_EXTENSION: + case PostgreSqlParser.KW_EXTERNAL: + case PostgreSqlParser.KW_FAMILY: + case PostgreSqlParser.KW_FIRST: + case PostgreSqlParser.KW_FOLLOWING: + case PostgreSqlParser.KW_FORCE: + case PostgreSqlParser.KW_FORWARD: + case PostgreSqlParser.KW_FUNCTION: + case PostgreSqlParser.KW_FUNCTIONS: + case PostgreSqlParser.KW_GLOBAL: + case PostgreSqlParser.KW_GRANTED: + case PostgreSqlParser.KW_HANDLER: + case PostgreSqlParser.KW_HEADER: + case PostgreSqlParser.KW_HOLD: + case PostgreSqlParser.KW_HOUR: + case PostgreSqlParser.KW_IDENTITY: + case PostgreSqlParser.KW_IF: + case PostgreSqlParser.KW_IMMEDIATE: + case PostgreSqlParser.KW_IMMUTABLE: + case PostgreSqlParser.KW_IMPLICIT: + case PostgreSqlParser.KW_INCLUDING: + case PostgreSqlParser.KW_INCREMENT: + case PostgreSqlParser.KW_INDEX: + case PostgreSqlParser.KW_INDEXES: + case PostgreSqlParser.KW_INHERIT: + case PostgreSqlParser.KW_INHERITS: + case PostgreSqlParser.KW_INLINE: + case PostgreSqlParser.KW_INSENSITIVE: + case PostgreSqlParser.KW_INSERT: + case PostgreSqlParser.KW_INSTEAD: + case PostgreSqlParser.KW_INVOKER: + case PostgreSqlParser.KW_ISOLATION: + case PostgreSqlParser.KW_KEY: + case PostgreSqlParser.KW_LABEL: + case PostgreSqlParser.KW_LANGUAGE: + case PostgreSqlParser.KW_LARGE: + case PostgreSqlParser.KW_LAST: + case PostgreSqlParser.KW_LEAKPROOF: + case PostgreSqlParser.KW_LEVEL: + case PostgreSqlParser.KW_LISTEN: + case PostgreSqlParser.KW_LOAD: + case PostgreSqlParser.KW_LOCAL: + case PostgreSqlParser.KW_LOCATION: + case PostgreSqlParser.KW_LOCK: + case PostgreSqlParser.KW_MAPPING: + case PostgreSqlParser.KW_MATCH: + case PostgreSqlParser.KW_MATERIALIZED: + case PostgreSqlParser.KW_MAXVALUE: + case PostgreSqlParser.KW_MINUTE: + case PostgreSqlParser.KW_MINVALUE: + case PostgreSqlParser.KW_MODE: + case PostgreSqlParser.KW_MONTH: + case PostgreSqlParser.KW_MOVE: + case PostgreSqlParser.KW_NAME: + case PostgreSqlParser.KW_NAMES: + case PostgreSqlParser.KW_NEXT: + case PostgreSqlParser.KW_NO: + case PostgreSqlParser.KW_NOTHING: + case PostgreSqlParser.KW_NOTIFY: + case PostgreSqlParser.KW_NOWAIT: + case PostgreSqlParser.KW_NULLS: + case PostgreSqlParser.KW_OBJECT: + case PostgreSqlParser.KW_OF: + case PostgreSqlParser.KW_OFF: + case PostgreSqlParser.KW_OIDS: + case PostgreSqlParser.KW_OPERATOR: + case PostgreSqlParser.KW_OPTION: + case PostgreSqlParser.KW_OPTIONS: + case PostgreSqlParser.KW_OWNED: + case PostgreSqlParser.KW_OWNER: + case PostgreSqlParser.KW_PARSER: + case PostgreSqlParser.KW_PARTIAL: + case PostgreSqlParser.KW_PARTITION: + case PostgreSqlParser.KW_PASSING: + case PostgreSqlParser.KW_PASSWORD: + case PostgreSqlParser.KW_PLANS: + case PostgreSqlParser.KW_PRECEDING: + case PostgreSqlParser.KW_PREPARE: + case PostgreSqlParser.KW_PREPARED: + case PostgreSqlParser.KW_PRESERVE: + case PostgreSqlParser.KW_PRIOR: + case PostgreSqlParser.KW_PRIVILEGES: + case PostgreSqlParser.KW_PROCEDURAL: + case PostgreSqlParser.KW_PROCEDURE: + case PostgreSqlParser.KW_PROGRAM: + case PostgreSqlParser.KW_QUOTE: + case PostgreSqlParser.KW_RANGE: + case PostgreSqlParser.KW_READ: + case PostgreSqlParser.KW_REASSIGN: + case PostgreSqlParser.KW_RECHECK: + case PostgreSqlParser.KW_RECURSIVE: + case PostgreSqlParser.KW_REF: + case PostgreSqlParser.KW_REFRESH: + case PostgreSqlParser.KW_REINDEX: + case PostgreSqlParser.KW_RELATIVE: + case PostgreSqlParser.KW_RELEASE: + case PostgreSqlParser.KW_RENAME: + case PostgreSqlParser.KW_REPEATABLE: + case PostgreSqlParser.KW_REPLACE: + case PostgreSqlParser.KW_REPLICA: + case PostgreSqlParser.KW_RESET: + case PostgreSqlParser.KW_RESTART: + case PostgreSqlParser.KW_RESTRICT: + case PostgreSqlParser.KW_RETURNS: + case PostgreSqlParser.KW_REVOKE: + case PostgreSqlParser.KW_ROLE: + case PostgreSqlParser.KW_ROLLBACK: + case PostgreSqlParser.KW_ROWS: + case PostgreSqlParser.KW_RULE: + case PostgreSqlParser.KW_SAVEPOINT: + case PostgreSqlParser.KW_SCHEMA: + case PostgreSqlParser.KW_SCROLL: + case PostgreSqlParser.KW_SEARCH: + case PostgreSqlParser.KW_SECOND: + case PostgreSqlParser.KW_SECURITY: + case PostgreSqlParser.KW_SEQUENCE: + case PostgreSqlParser.KW_SEQUENCES: + case PostgreSqlParser.KW_SERIALIZABLE: + case PostgreSqlParser.KW_SERVER: + case PostgreSqlParser.KW_SESSION: + case PostgreSqlParser.KW_SET: + case PostgreSqlParser.KW_SHARE: + case PostgreSqlParser.KW_SHOW: + case PostgreSqlParser.KW_SIMPLE: + case PostgreSqlParser.KW_SNAPSHOT: + case PostgreSqlParser.KW_STABLE: + case PostgreSqlParser.KW_STANDALONE: + case PostgreSqlParser.KW_START: + case PostgreSqlParser.KW_STATEMENT: + case PostgreSqlParser.KW_STATISTICS: + case PostgreSqlParser.KW_STDIN: + case PostgreSqlParser.KW_STDOUT: + case PostgreSqlParser.KW_STORAGE: + case PostgreSqlParser.KW_STRICT: + case PostgreSqlParser.KW_STRIP: + case PostgreSqlParser.KW_SYSID: + case PostgreSqlParser.KW_SYSTEM: + case PostgreSqlParser.KW_TABLES: + case PostgreSqlParser.KW_TABLESPACE: + case PostgreSqlParser.KW_TEMP: + case PostgreSqlParser.KW_TEMPLATE: + case PostgreSqlParser.KW_TEMPORARY: + case PostgreSqlParser.KW_TEXT: + case PostgreSqlParser.KW_TRANSACTION: + case PostgreSqlParser.KW_TRIGGER: + case PostgreSqlParser.KW_TRUNCATE: + case PostgreSqlParser.KW_TRUSTED: + case PostgreSqlParser.KW_TYPE: + case PostgreSqlParser.KW_TYPES: + case PostgreSqlParser.KW_UNBOUNDED: + case PostgreSqlParser.KW_UNCOMMITTED: + case PostgreSqlParser.KW_UNENCRYPTED: + case PostgreSqlParser.KW_UNKNOWN: + case PostgreSqlParser.KW_UNLISTEN: + case PostgreSqlParser.KW_UNLOGGED: + case PostgreSqlParser.KW_UNTIL: + case PostgreSqlParser.KW_UPDATE: + case PostgreSqlParser.KW_VACUUM: + case PostgreSqlParser.KW_VALID: + case PostgreSqlParser.KW_VALIDATE: + case PostgreSqlParser.KW_VALIDATOR: + case PostgreSqlParser.KW_VARYING: + case PostgreSqlParser.KW_VERSION: + case PostgreSqlParser.KW_VIEW: + case PostgreSqlParser.KW_VOLATILE: + case PostgreSqlParser.KW_WHITESPACE: + case PostgreSqlParser.KW_WITHOUT: + case PostgreSqlParser.KW_WORK: + case PostgreSqlParser.KW_WRAPPER: + case PostgreSqlParser.KW_WRITE: + case PostgreSqlParser.KW_XML: + case PostgreSqlParser.KW_YEAR: + case PostgreSqlParser.KW_YES: + case PostgreSqlParser.KW_ZONE: + case PostgreSqlParser.KW_BETWEEN: + case PostgreSqlParser.KW_BIGINT: + case PostgreSqlParser.KW_BIT: + case PostgreSqlParser.KW_BOOLEAN: + case PostgreSqlParser.KW_CHAR: + case PostgreSqlParser.KW_CHARACTER: + case PostgreSqlParser.KW_COALESCE: + case PostgreSqlParser.KW_DEC: + case PostgreSqlParser.KW_DECIMAL: + case PostgreSqlParser.KW_EXISTS: + case PostgreSqlParser.KW_EXTRACT: + case PostgreSqlParser.KW_FLOAT: + case PostgreSqlParser.KW_GREATEST: + case PostgreSqlParser.KW_INOUT: + case PostgreSqlParser.KW_INT: + case PostgreSqlParser.KW_INTEGER: + case PostgreSqlParser.KW_INTERVAL: + case PostgreSqlParser.KW_LEAST: + case PostgreSqlParser.KW_NATIONAL: + case PostgreSqlParser.KW_NCHAR: + case PostgreSqlParser.KW_NONE: + case PostgreSqlParser.KW_NULLIF: + case PostgreSqlParser.KW_NUMERIC: + case PostgreSqlParser.KW_OVERLAY: + case PostgreSqlParser.KW_POSITION: + case PostgreSqlParser.KW_PRECISION: + case PostgreSqlParser.KW_REAL: + case PostgreSqlParser.KW_ROW: + case PostgreSqlParser.KW_SETOF: + case PostgreSqlParser.KW_SMALLINT: + case PostgreSqlParser.KW_SUBSTRING: + case PostgreSqlParser.KW_TIME: + case PostgreSqlParser.KW_TIMESTAMP: + case PostgreSqlParser.KW_TREAT: + case PostgreSqlParser.KW_TRIM: + case PostgreSqlParser.KW_VALUES: + case PostgreSqlParser.KW_VARCHAR: + case PostgreSqlParser.KW_XMLATTRIBUTES: + case PostgreSqlParser.KW_XMLCONCAT: + case PostgreSqlParser.KW_XMLELEMENT: + case PostgreSqlParser.KW_XMLEXISTS: + case PostgreSqlParser.KW_XMLFOREST: + case PostgreSqlParser.KW_XMLPARSE: + case PostgreSqlParser.KW_XMLPI: + case PostgreSqlParser.KW_XMLROOT: + case PostgreSqlParser.KW_XMLSERIALIZE: + case PostgreSqlParser.KW_CALL: + case PostgreSqlParser.KW_CURRENT: + case PostgreSqlParser.KW_ATTACH: + case PostgreSqlParser.KW_DETACH: + case PostgreSqlParser.KW_EXPRESSION: + case PostgreSqlParser.KW_GENERATED: + case PostgreSqlParser.KW_LOGGED: + case PostgreSqlParser.KW_STORED: + case PostgreSqlParser.KW_INCLUDE: + case PostgreSqlParser.KW_ROUTINE: + case PostgreSqlParser.KW_TRANSFORM: + case PostgreSqlParser.KW_IMPORT: + case PostgreSqlParser.KW_POLICY: + case PostgreSqlParser.KW_METHOD: + case PostgreSqlParser.KW_REFERENCING: + case PostgreSqlParser.KW_NEW: + case PostgreSqlParser.KW_OLD: + case PostgreSqlParser.KW_VALUE: + case PostgreSqlParser.KW_SUBSCRIPTION: + case PostgreSqlParser.KW_PUBLICATION: + case PostgreSqlParser.KW_OUT: + case PostgreSqlParser.KW_ROUTINES: + case PostgreSqlParser.KW_SCHEMAS: + case PostgreSqlParser.KW_PROCEDURES: + case PostgreSqlParser.KW_INPUT: + case PostgreSqlParser.KW_SUPPORT: + case PostgreSqlParser.KW_PARALLEL: + case PostgreSqlParser.KW_SQL: + case PostgreSqlParser.KW_DEPENDS: + case PostgreSqlParser.KW_OVERRIDING: + case PostgreSqlParser.KW_CONFLICT: + case PostgreSqlParser.KW_SKIP: + case PostgreSqlParser.KW_LOCKED: + case PostgreSqlParser.KW_TIES: + case PostgreSqlParser.KW_ROLLUP: + case PostgreSqlParser.KW_CUBE: + case PostgreSqlParser.KW_GROUPING: + case PostgreSqlParser.KW_SETS: + case PostgreSqlParser.KW_ORDINALITY: + case PostgreSqlParser.KW_XMLTABLE: + case PostgreSqlParser.KW_COLUMNS: + case PostgreSqlParser.KW_XMLNAMESPACES: + case PostgreSqlParser.KW_ROWTYPE: + case PostgreSqlParser.KW_NORMALIZED: + case PostgreSqlParser.KW_WITHIN: + case PostgreSqlParser.KW_FILTER: + case PostgreSqlParser.KW_GROUPS: + case PostgreSqlParser.KW_OTHERS: + case PostgreSqlParser.KW_NFC: + case PostgreSqlParser.KW_NFD: + case PostgreSqlParser.KW_NFKC: + case PostgreSqlParser.KW_NFKD: + case PostgreSqlParser.KW_UESCAPE: + case PostgreSqlParser.KW_VIEWS: + case PostgreSqlParser.KW_NORMALIZE: + case PostgreSqlParser.KW_DUMP: + case PostgreSqlParser.KW_PRINT_STRICT_PARAMS: + case PostgreSqlParser.KW_VARIABLE_CONFLICT: + case PostgreSqlParser.KW_ERROR: + case PostgreSqlParser.KW_USE_VARIABLE: + case PostgreSqlParser.KW_USE_COLUMN: + case PostgreSqlParser.KW_ALIAS: + case PostgreSqlParser.KW_CONSTANT: + case PostgreSqlParser.KW_PERFORM: + case PostgreSqlParser.KW_GET: + case PostgreSqlParser.KW_DIAGNOSTICS: + case PostgreSqlParser.KW_STACKED: + case PostgreSqlParser.KW_ELSIF: + case PostgreSqlParser.KW_REVERSE: + case PostgreSqlParser.KW_SLICE: + case PostgreSqlParser.KW_EXIT: + case PostgreSqlParser.KW_RETURN: + case PostgreSqlParser.KW_QUERY: + case PostgreSqlParser.KW_RAISE: + case PostgreSqlParser.KW_SQLSTATE: + case PostgreSqlParser.KW_DEBUG: + case PostgreSqlParser.KW_LOG: + case PostgreSqlParser.KW_INFO: + case PostgreSqlParser.KW_NOTICE: + case PostgreSqlParser.KW_WARNING: + case PostgreSqlParser.KW_EXCEPTION: + case PostgreSqlParser.KW_ASSERT: + case PostgreSqlParser.KW_OPEN: + case PostgreSqlParser.KW_PUBLIC: + case PostgreSqlParser.KW_SKIP_LOCKED: + case PostgreSqlParser.KW_BUFFER_USAGE_LIMIT: + case PostgreSqlParser.Identifier: + case PostgreSqlParser.QuotedIdentifier: + case PostgreSqlParser.UnicodeQuotedIdentifier: + case PostgreSqlParser.StringConstant: + case PostgreSqlParser.UnicodeEscapeStringConstant: + case PostgreSqlParser.BeginDollarStringConstant: + case PostgreSqlParser.PLSQLVARIABLENAME: + case PostgreSqlParser.PLSQLIDENTIFIER: + case PostgreSqlParser.EscapeStringConstant: + this.enterOuterAlt(localContext, 1); { - this.state = 6123; - this.match(PostgreSqlParser.KW_RECURSIVE); + this.state = 6013; + this.insertColumnItem(); + this.state = 6014; + this.match(PostgreSqlParser.EQUAL); + this.state = 6015; + this.expression(); } break; - } - { - this.state = 6126; - this.commonTableExpr(); - this.state = 6131; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 802, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { + case PostgreSqlParser.OPEN_PAREN: + this.enterOuterAlt(localContext, 2); + { + this.state = 6017; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 6018; + this.insertColumnList(); + this.state = 6019; + this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 6020; + this.match(PostgreSqlParser.EQUAL); + this.state = 6029; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 778, this.context) ) { + case 1: { - this.state = 6127; - this.match(PostgreSqlParser.COMMA); - this.state = 6128; - this.commonTableExpr(); + this.state = 6022; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 777, this.context) ) { + case 1: + { + this.state = 6021; + this.match(PostgreSqlParser.KW_ROW); + } + break; + } + this.state = 6024; + this.expression(); } + break; + case 2: + { + this.state = 6025; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 6026; + this.selectClause(); + this.state = 6027; + this.match(PostgreSqlParser.CLOSE_PAREN); } + break; } - this.state = 6133; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 802, this.context); - } - } + } + break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -34783,73 +35810,91 @@ export class PostgreSqlParser extends SQLParserBase { } return localContext; } - public commonTableExpr(): CommonTableExprContext { - let localContext = new CommonTableExprContext(this.context, this.state); - this.enterRule(localContext, 568, PostgreSqlParser.RULE_commonTableExpr); + public declareCursorStmt(): DeclareCursorStmtContext { + let localContext = new DeclareCursorStmtContext(this.context, this.state); + this.enterRule(localContext, 552, PostgreSqlParser.RULE_declareCursorStmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6134; + this.state = 6033; + this.match(PostgreSqlParser.KW_DECLARE); + this.state = 6034; this.colId(); - this.state = 6136; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 2) { - { - this.state = 6135; - this.optColumnList(); - } - } - - this.state = 6138; - this.match(PostgreSqlParser.KW_AS); - this.state = 6143; + { + this.state = 6043; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 77 || _la === 259) { + while (_la === 107 || _la === 240 || _la === 269 || _la === 324) { { - this.state = 6140; + this.state = 6041; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 77) { + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.KW_NO: + case PostgreSqlParser.KW_SCROLL: { - this.state = 6139; - this.match(PostgreSqlParser.KW_NOT); - } - } - - this.state = 6142; - this.match(PostgreSqlParser.KW_MATERIALIZED); - } - } + { + this.state = 6036; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 269) { + { + this.state = 6035; + this.match(PostgreSqlParser.KW_NO); + } + } - this.state = 6145; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6146; - this.preParableStmt(); - this.state = 6147; - this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 6149; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 806, this.context) ) { - case 1: - { - this.state = 6148; - this.searchClause(); + this.state = 6038; + this.match(PostgreSqlParser.KW_SCROLL); + } + } + break; + case PostgreSqlParser.KW_BINARY: + { + this.state = 6039; + this.match(PostgreSqlParser.KW_BINARY); + } + break; + case PostgreSqlParser.KW_INSENSITIVE: + { + this.state = 6040; + this.match(PostgreSqlParser.KW_INSENSITIVE); + } + break; + default: + throw new antlr.NoViableAltException(this); } - break; + } + this.state = 6045; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); } - this.state = 6152; + } + this.state = 6046; + this.match(PostgreSqlParser.KW_CURSOR); + this.state = 6049; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 807, this.context) ) { - case 1: + _la = this.tokenStream.LA(1); + if (_la === 105 || _la === 379) { { - this.state = 6151; - this.cycleClause(); + this.state = 6047; + _la = this.tokenStream.LA(1); + if(!(_la === 105 || _la === 379)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 6048; + this.match(PostgreSqlParser.KW_HOLD); } - break; } + + this.state = 6051; + this.match(PostgreSqlParser.KW_FOR); + this.state = 6052; + this.selectStmt(); } } catch (re) { @@ -34866,34 +35911,29 @@ export class PostgreSqlParser extends SQLParserBase { } return localContext; } - public searchClause(): SearchClauseContext { - let localContext = new SearchClauseContext(this.context, this.state); - this.enterRule(localContext, 570, PostgreSqlParser.RULE_searchClause); - let _la: number; + public selectStmt(): SelectStmtContext { + let localContext = new SelectStmtContext(this.context, this.state); + this.enterRule(localContext, 554, PostgreSqlParser.RULE_selectStmt); try { - this.enterOuterAlt(localContext, 1); - { - this.state = 6154; - this.match(PostgreSqlParser.KW_SEARCH); - this.state = 6155; - _la = this.tokenStream.LA(1); - if(!(_la === 527 || _la === 528)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 6156; - this.match(PostgreSqlParser.KW_FIRST); - this.state = 6157; - this.match(PostgreSqlParser.KW_BY); - this.state = 6158; - this.columnList(); - this.state = 6159; - this.match(PostgreSqlParser.KW_SET); - this.state = 6160; - this.columnName(); + this.state = 6056; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 784, this.context) ) { + case 1: + localContext = new SelectStatementContext(localContext); + this.enterOuterAlt(localContext, 1); + { + this.state = 6054; + this.selectNoParens(); + } + break; + case 2: + localContext = new SelectStatementContext(localContext); + this.enterOuterAlt(localContext, 2); + { + this.state = 6055; + this.selectWithParens(); + } + break; } } catch (re) { @@ -34910,41 +35950,32 @@ export class PostgreSqlParser extends SQLParserBase { } return localContext; } - public cycleClause(): CycleClauseContext { - let localContext = new CycleClauseContext(this.context, this.state); - this.enterRule(localContext, 572, PostgreSqlParser.RULE_cycleClause); - let _la: number; + public selectWithParens(): SelectWithParensContext { + let localContext = new SelectWithParensContext(this.context, this.state); + this.enterRule(localContext, 556, PostgreSqlParser.RULE_selectWithParens); try { this.enterOuterAlt(localContext, 1); { - this.state = 6162; - this.match(PostgreSqlParser.KW_CYCLE); - this.state = 6163; - this.columnList(); - this.state = 6164; - this.match(PostgreSqlParser.KW_SET); - this.state = 6165; - this.columnName(); - this.state = 6171; + this.state = 6058; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 6061; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 94) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 785, this.context) ) { + case 1: { - this.state = 6166; - this.match(PostgreSqlParser.KW_TO); - this.state = 6167; - this.colId(); - this.state = 6168; - this.match(PostgreSqlParser.KW_DEFAULT); - this.state = 6169; - this.colId(); + this.state = 6059; + this.selectNoParens(); + } + break; + case 2: + { + this.state = 6060; + this.selectWithParens(); } + break; } - - this.state = 6173; - this.match(PostgreSqlParser.KW_USING); - this.state = 6174; - this.columnName(); + this.state = 6063; + this.match(PostgreSqlParser.CLOSE_PAREN); } } catch (re) { @@ -34961,37 +35992,68 @@ export class PostgreSqlParser extends SQLParserBase { } return localContext; } - public intoClause(): IntoClauseContext { - let localContext = new IntoClauseContext(this.context, this.state); - this.enterRule(localContext, 574, PostgreSqlParser.RULE_intoClause); + public selectNoParens(): SelectNoParensContext { + let localContext = new SelectNoParensContext(this.context, this.state); + this.enterRule(localContext, 558, PostgreSqlParser.RULE_selectNoParens); + let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6176; - this.match(PostgreSqlParser.KW_INTO); - this.state = 6182; + this.state = 6066; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 810, this.context) ) { + _la = this.tokenStream.LA(1); + if (_la === 105) { + { + this.state = 6065; + this.withClause(); + } + } + + this.state = 6068; + this.selectClause(); + this.state = 6070; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 83) { + { + this.state = 6069; + this.sortClause(); + } + } + + this.state = 6080; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 790, this.context) ) { case 1: { - this.state = 6178; + this.state = 6072; + this.forLockingClause(); + this.state = 6074; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 809, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 788, this.context) ) { case 1: { - this.state = 6177; - this.match(PostgreSqlParser.KW_STRICT); + this.state = 6073; + this.selectLimit(); } break; } - this.state = 6180; - this.optTempTableName(); } break; case 2: { - this.state = 6181; - this.exprList(); + this.state = 6076; + this.selectLimit(); + this.state = 6078; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 62) { + { + this.state = 6077; + this.forLockingClause(); + } + } + } break; } @@ -35011,84 +36073,176 @@ export class PostgreSqlParser extends SQLParserBase { } return localContext; } - public optTempTableName(): OptTempTableNameContext { - let localContext = new OptTempTableNameContext(this.context, this.state); - this.enterRule(localContext, 576, PostgreSqlParser.RULE_optTempTableName); - let _la: number; + public selectClause(): SelectClauseContext { + let localContext = new SelectClauseContext(this.context, this.state); + this.enterRule(localContext, 560, PostgreSqlParser.RULE_selectClause); try { - this.state = 6199; + this.state = 6084; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 815, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 791, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6185; + this.state = 6082; + this.simpleSelect(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 6083; + this.selectWithParens(); + } + break; + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public simpleSelect(): SimpleSelectContext { + let localContext = new SimpleSelectContext(this.context, this.state); + this.enterRule(localContext, 562, PostgreSqlParser.RULE_simpleSelect); + try { + let alternative: number; + this.enterOuterAlt(localContext, 1); + { + this.state = 6108; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.KW_SELECT: + { + this.state = 6086; + this.match(PostgreSqlParser.KW_SELECT); + this.state = 6096; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 213 || _la === 254) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 795, this.context) ) { + case 1: { - this.state = 6184; - _la = this.tokenStream.LA(1); - if(!(_la === 213 || _la === 254)) { - this.errorHandler.recoverInline(this); + this.state = 6088; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 792, this.context) ) { + case 1: + { + this.state = 6087; + this.match(PostgreSqlParser.KW_ALL); + } + break; } - else { - this.errorHandler.reportMatch(this); - this.consume(); + this.state = 6091; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 793, this.context) ) { + case 1: + { + this.state = 6090; + this.intoClause(); + } + break; } } - } - - this.state = 6187; - _la = this.tokenStream.LA(1); - if(!(_la === 352 || _la === 354)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 6189; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 92) { + break; + case 2: { - this.state = 6188; - this.match(PostgreSqlParser.KW_TABLE); + this.state = 6094; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 794, this.context) ) { + case 1: + { + this.state = 6093; + this.distinctClause(); + } + break; + } } + break; } - - this.state = 6191; - this.tableNameCreate(); + this.state = 6098; + this.sqlExpression(); } break; - case 2: - this.enterOuterAlt(localContext, 2); + case PostgreSqlParser.KW_VALUES: { - this.state = 6193; + this.state = 6099; + this.valuesClause(); + } + break; + case PostgreSqlParser.KW_TABLE: + { + this.state = 6100; + this.match(PostgreSqlParser.KW_TABLE); + this.state = 6101; + this.relationExpr(); + } + break; + case PostgreSqlParser.OPEN_PAREN: + { + this.state = 6102; + this.selectWithParens(); + this.state = 6103; + this.setOperatorWithAllOrDistinct(); + this.state = 6106; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 813, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 796, this.context) ) { case 1: { - this.state = 6192; - this.match(PostgreSqlParser.KW_UNLOGGED); + this.state = 6104; + this.simpleSelect(); } break; - } - this.state = 6196; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 92) { + case 2: { - this.state = 6195; - this.match(PostgreSqlParser.KW_TABLE); + this.state = 6105; + this.selectWithParens(); } + break; } - - this.state = 6198; - this.tableNameCreate(); } break; + default: + throw new antlr.NoViableAltException(this); + } + this.state = 6117; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 799, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 6110; + this.setOperatorWithAllOrDistinct(); + this.state = 6113; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 798, this.context) ) { + case 1: + { + this.state = 6111; + this.simpleSelect(); + } + break; + case 2: + { + this.state = 6112; + this.selectWithParens(); + } + break; + } + } + } + } + this.state = 6119; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 799, this.context); + } } } catch (re) { @@ -35105,26 +36259,39 @@ export class PostgreSqlParser extends SQLParserBase { } return localContext; } - public distinctClause(): DistinctClauseContext { - let localContext = new DistinctClauseContext(this.context, this.state); - this.enterRule(localContext, 578, PostgreSqlParser.RULE_distinctClause); + public setOperatorWithAllOrDistinct(): SetOperatorWithAllOrDistinctContext { + let localContext = new SetOperatorWithAllOrDistinctContext(this.context, this.state); + this.enterRule(localContext, 564, PostgreSqlParser.RULE_setOperatorWithAllOrDistinct); + let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6201; - this.match(PostgreSqlParser.KW_DISTINCT); - this.state = 6204; + this.state = 6120; + _la = this.tokenStream.LA(1); + if(!(_la === 59 || _la === 70 || _la === 97)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 6122; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 816, this.context) ) { - case 1: + _la = this.tokenStream.LA(1); + if (_la === 30 || _la === 56) { { - this.state = 6202; - this.match(PostgreSqlParser.KW_ON); - this.state = 6203; - this.executeParamClause(); + this.state = 6121; + _la = this.tokenStream.LA(1); + if(!(_la === 30 || _la === 56)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } } - break; } + } } catch (re) { @@ -35141,34 +36308,46 @@ export class PostgreSqlParser extends SQLParserBase { } return localContext; } - public sortClause(): SortClauseContext { - let localContext = new SortClauseContext(this.context, this.state); - this.enterRule(localContext, 580, PostgreSqlParser.RULE_sortClause); - let _la: number; + public withClause(): WithClauseContext { + let localContext = new WithClauseContext(this.context, this.state); + this.enterRule(localContext, 566, PostgreSqlParser.RULE_withClause); try { + let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6206; - this.match(PostgreSqlParser.KW_ORDER); - this.state = 6207; - this.match(PostgreSqlParser.KW_BY); - this.state = 6208; - this.sortBy(); - this.state = 6213; + this.state = 6124; + this.match(PostgreSqlParser.KW_WITH); + this.state = 6126; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 6) { - { + switch (this.interpreter.adaptivePredict(this.tokenStream, 801, this.context) ) { + case 1: { - this.state = 6209; - this.match(PostgreSqlParser.COMMA); - this.state = 6210; - this.sortBy(); + this.state = 6125; + this.match(PostgreSqlParser.KW_RECURSIVE); } + break; + } + { + this.state = 6128; + this.commonTableExpr(); + this.state = 6133; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 802, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 6129; + this.match(PostgreSqlParser.COMMA); + this.state = 6130; + this.commonTableExpr(); + } + } } - this.state = 6215; + this.state = 6135; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 802, this.context); + } } } } @@ -35186,56 +36365,70 @@ export class PostgreSqlParser extends SQLParserBase { } return localContext; } - public sortBy(): SortByContext { - let localContext = new SortByContext(this.context, this.state); - this.enterRule(localContext, 582, PostgreSqlParser.RULE_sortBy); + public commonTableExpr(): CommonTableExprContext { + let localContext = new CommonTableExprContext(this.context, this.state); + this.enterRule(localContext, 568, PostgreSqlParser.RULE_commonTableExpr); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6216; - this.columnExprNoParen(); - this.state = 6220; + this.state = 6136; + this.colId(); + this.state = 6138; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 818, this.context) ) { - case 1: + _la = this.tokenStream.LA(1); + if (_la === 2) { { - this.state = 6217; - this.match(PostgreSqlParser.KW_USING); - this.state = 6218; - this.qualAllOp(); + this.state = 6137; + this.optColumnList(); } - break; - case 2: + } + + this.state = 6140; + this.match(PostgreSqlParser.KW_AS); + this.state = 6145; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 77 || _la === 259) { { - this.state = 6219; + this.state = 6142; + this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if(!(_la === 37 || _la === 55)) { - this.errorHandler.recoverInline(this); + if (_la === 77) { + { + this.state = 6141; + this.match(PostgreSqlParser.KW_NOT); + } } - else { - this.errorHandler.reportMatch(this); - this.consume(); + + this.state = 6144; + this.match(PostgreSqlParser.KW_MATERIALIZED); } + } + + this.state = 6147; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 6148; + this.preParableStmt(); + this.state = 6149; + this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 6151; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 806, this.context) ) { + case 1: + { + this.state = 6150; + this.searchClause(); } break; } - this.state = 6224; + this.state = 6154; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 819, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 807, this.context) ) { case 1: { - this.state = 6222; - this.match(PostgreSqlParser.KW_NULLS); - this.state = 6223; - _la = this.tokenStream.LA(1); - if(!(_la === 207 || _la === 249)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } + this.state = 6153; + this.cycleClause(); } break; } @@ -35255,120 +36448,34 @@ export class PostgreSqlParser extends SQLParserBase { } return localContext; } - public selectLimit(): SelectLimitContext { - let localContext = new SelectLimitContext(this.context, this.state); - this.enterRule(localContext, 584, PostgreSqlParser.RULE_selectLimit); - let _la: number; - try { - this.state = 6237; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.KW_OFFSET: - this.enterOuterAlt(localContext, 1); - { - this.state = 6226; - this.offsetClause(); - this.state = 6228; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 820, this.context) ) { - case 1: - { - this.state = 6227; - this.fetchClause(); - } - break; - } - } - break; - case PostgreSqlParser.KW_FETCH: - case PostgreSqlParser.KW_LIMIT: - this.enterOuterAlt(localContext, 2); - { - this.state = 6232; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.KW_LIMIT: - { - this.state = 6230; - this.limitClause(); - } - break; - case PostgreSqlParser.KW_FETCH: - { - this.state = 6231; - this.fetchClause(); - } - break; - default: - throw new antlr.NoViableAltException(this); - } - this.state = 6235; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 79) { - { - this.state = 6234; - this.offsetClause(); - } - } - - } - break; - default: - throw new antlr.NoViableAltException(this); - } - } - 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 limitClause(): LimitClauseContext { - let localContext = new LimitClauseContext(this.context, this.state); - this.enterRule(localContext, 586, PostgreSqlParser.RULE_limitClause); + public searchClause(): SearchClauseContext { + let localContext = new SearchClauseContext(this.context, this.state); + this.enterRule(localContext, 570, PostgreSqlParser.RULE_searchClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6239; - this.match(PostgreSqlParser.KW_LIMIT); - this.state = 6242; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 824, this.context) ) { - case 1: - { - this.state = 6240; - this.expression(); - } - break; - case 2: - { - this.state = 6241; - this.match(PostgreSqlParser.KW_ALL); - } - break; - } - this.state = 6246; - this.errorHandler.sync(this); + this.state = 6156; + this.match(PostgreSqlParser.KW_SEARCH); + this.state = 6157; _la = this.tokenStream.LA(1); - if (_la === 6) { - { - this.state = 6244; - this.match(PostgreSqlParser.COMMA); - this.state = 6245; - this.expression(); - } + if(!(_la === 527 || _la === 528)) { + this.errorHandler.recoverInline(this); } - + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 6158; + this.match(PostgreSqlParser.KW_FIRST); + this.state = 6159; + this.match(PostgreSqlParser.KW_BY); + this.state = 6160; + this.columnList(); + this.state = 6161; + this.match(PostgreSqlParser.KW_SET); + this.state = 6162; + this.columnName(); } } catch (re) { @@ -35385,65 +36492,41 @@ export class PostgreSqlParser extends SQLParserBase { } return localContext; } - public fetchClause(): FetchClauseContext { - let localContext = new FetchClauseContext(this.context, this.state); - this.enterRule(localContext, 588, PostgreSqlParser.RULE_fetchClause); + public cycleClause(): CycleClauseContext { + let localContext = new CycleClauseContext(this.context, this.state); + this.enterRule(localContext, 572, PostgreSqlParser.RULE_cycleClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6248; - this.match(PostgreSqlParser.KW_FETCH); - this.state = 6249; - _la = this.tokenStream.LA(1); - if(!(_la === 207 || _la === 268)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - { - this.state = 6251; + this.state = 6164; + this.match(PostgreSqlParser.KW_CYCLE); + this.state = 6165; + this.columnList(); + this.state = 6166; + this.match(PostgreSqlParser.KW_SET); + this.state = 6167; + this.columnName(); + this.state = 6173; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 826, this.context) ) { - case 1: - { - this.state = 6250; - this.selectFetchFirstValue(); - } - break; - } - this.state = 6253; _la = this.tokenStream.LA(1); - if(!(_la === 320 || _la === 414)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 6257; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.KW_ONLY: - { - this.state = 6254; - this.match(PostgreSqlParser.KW_ONLY); - } - break; - case PostgreSqlParser.KW_WITH: + if (_la === 94) { { - this.state = 6255; - this.match(PostgreSqlParser.KW_WITH); - this.state = 6256; - this.match(PostgreSqlParser.KW_TIES); + this.state = 6168; + this.match(PostgreSqlParser.KW_TO); + this.state = 6169; + this.colId(); + this.state = 6170; + this.match(PostgreSqlParser.KW_DEFAULT); + this.state = 6171; + this.colId(); } - break; - default: - throw new antlr.NoViableAltException(this); - } } + + this.state = 6175; + this.match(PostgreSqlParser.KW_USING); + this.state = 6176; + this.columnName(); } } catch (re) { @@ -35460,37 +36543,37 @@ export class PostgreSqlParser extends SQLParserBase { } return localContext; } - public offsetClause(): OffsetClauseContext { - let localContext = new OffsetClauseContext(this.context, this.state); - this.enterRule(localContext, 590, PostgreSqlParser.RULE_offsetClause); - let _la: number; + public intoClause(): IntoClauseContext { + let localContext = new IntoClauseContext(this.context, this.state); + this.enterRule(localContext, 574, PostgreSqlParser.RULE_intoClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 6259; - this.match(PostgreSqlParser.KW_OFFSET); - this.state = 6264; + this.state = 6178; + this.match(PostgreSqlParser.KW_INTO); + this.state = 6184; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 828, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 810, this.context) ) { case 1: { - this.state = 6260; - this.selectFetchFirstValue(); - this.state = 6261; - _la = this.tokenStream.LA(1); - if(!(_la === 320 || _la === 414)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); + this.state = 6180; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 809, this.context) ) { + case 1: + { + this.state = 6179; + this.match(PostgreSqlParser.KW_STRICT); + } + break; } + this.state = 6182; + this.optTempTableName(); } break; case 2: { - this.state = 6263; - this.expression(); + this.state = 6183; + this.exprList(); } break; } @@ -35510,42 +36593,82 @@ export class PostgreSqlParser extends SQLParserBase { } return localContext; } - public selectFetchFirstValue(): SelectFetchFirstValueContext { - let localContext = new SelectFetchFirstValueContext(this.context, this.state); - this.enterRule(localContext, 592, PostgreSqlParser.RULE_selectFetchFirstValue); + public optTempTableName(): OptTempTableNameContext { + let localContext = new OptTempTableNameContext(this.context, this.state); + this.enterRule(localContext, 576, PostgreSqlParser.RULE_optTempTableName); let _la: number; try { - this.state = 6269; + this.state = 6201; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 829, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 815, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6266; + this.state = 6187; + this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if(!(_la === 12 || _la === 13)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); + if (_la === 213 || _la === 254) { + { + this.state = 6186; + _la = this.tokenStream.LA(1); + if(!(_la === 213 || _la === 254)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + } } - this.state = 6267; + + this.state = 6189; _la = this.tokenStream.LA(1); - if(!(_la === 574 || _la === 576)) { + if(!(_la === 352 || _la === 354)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } + this.state = 6191; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 92) { + { + this.state = 6190; + this.match(PostgreSqlParser.KW_TABLE); + } + } + + this.state = 6193; + this.tableNameCreate(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6268; - this.primaryExpression(0); + this.state = 6195; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 813, this.context) ) { + case 1: + { + this.state = 6194; + this.match(PostgreSqlParser.KW_UNLOGGED); + } + break; + } + this.state = 6198; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 92) { + { + this.state = 6197; + this.match(PostgreSqlParser.KW_TABLE); + } + } + + this.state = 6200; + this.tableNameCreate(); } break; } @@ -35564,36 +36687,26 @@ export class PostgreSqlParser extends SQLParserBase { } return localContext; } - public groupClause(): GroupClauseContext { - let localContext = new GroupClauseContext(this.context, this.state); - this.enterRule(localContext, 594, PostgreSqlParser.RULE_groupClause); - let _la: number; + public distinctClause(): DistinctClauseContext { + let localContext = new DistinctClauseContext(this.context, this.state); + this.enterRule(localContext, 578, PostgreSqlParser.RULE_distinctClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 6271; - this.match(PostgreSqlParser.KW_GROUP); - this.state = 6272; - this.match(PostgreSqlParser.KW_BY); - this.state = 6274; + this.state = 6203; + this.match(PostgreSqlParser.KW_DISTINCT); + this.state = 6206; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 830, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 816, this.context) ) { case 1: { - this.state = 6273; - _la = this.tokenStream.LA(1); - if(!(_la === 30 || _la === 56)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } + this.state = 6204; + this.match(PostgreSqlParser.KW_ON); + this.state = 6205; + this.executeParamClause(); } break; } - this.state = 6276; - this.groupByList(); } } catch (re) { @@ -35610,32 +36723,34 @@ export class PostgreSqlParser extends SQLParserBase { } return localContext; } - public groupByList(): GroupByListContext { - let localContext = new GroupByListContext(this.context, this.state); - this.enterRule(localContext, 596, PostgreSqlParser.RULE_groupByList); + public sortClause(): SortClauseContext { + let localContext = new SortClauseContext(this.context, this.state); + this.enterRule(localContext, 580, PostgreSqlParser.RULE_sortClause); + let _la: number; try { - let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6278; - this.groupByItem(); - this.state = 6283; + this.state = 6208; + this.match(PostgreSqlParser.KW_ORDER); + this.state = 6209; + this.match(PostgreSqlParser.KW_BY); + this.state = 6210; + this.sortBy(); + this.state = 6215; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 831, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - { - this.state = 6279; - this.match(PostgreSqlParser.COMMA); - this.state = 6280; - this.groupByItem(); - } - } + _la = this.tokenStream.LA(1); + while (_la === 6) { + { + { + this.state = 6211; + this.match(PostgreSqlParser.COMMA); + this.state = 6212; + this.sortBy(); + } } - this.state = 6285; + this.state = 6217; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 831, this.context); + _la = this.tokenStream.LA(1); } } } @@ -35653,218 +36768,486 @@ export class PostgreSqlParser extends SQLParserBase { } return localContext; } - public groupByItem(): GroupByItemContext { - let localContext = new GroupByItemContext(this.context, this.state); - this.enterRule(localContext, 598, PostgreSqlParser.RULE_groupByItem); + public sortBy(): SortByContext { + let localContext = new SortByContext(this.context, this.state); + this.enterRule(localContext, 582, PostgreSqlParser.RULE_sortBy); let _la: number; try { - this.state = 6309; + this.enterOuterAlt(localContext, 1); + { + this.state = 6218; + this.columnExprNoParen(); + this.state = 6222; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 834, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 6286; - this.columnExprNoParen(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.KW_USING: { - this.state = 6287; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6288; - this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 6219; + this.match(PostgreSqlParser.KW_USING); + this.state = 6220; + this.qualAllOp(); } break; - case 3: - this.enterOuterAlt(localContext, 3); - { - this.state = 6290; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 468 || _la === 469) { - { - this.state = 6289; - _la = this.tokenStream.LA(1); - if(!(_la === 468 || _la === 469)) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - } - } - - this.state = 6292; - this.match(PostgreSqlParser.OPEN_PAREN); + case PostgreSqlParser.KW_ASC: + case PostgreSqlParser.KW_DESC: { - this.state = 6293; - this.columnExprNoParen(); - this.state = 6298; - this.errorHandler.sync(this); + this.state = 6221; _la = this.tokenStream.LA(1); - while (_la === 6) { - { - { - this.state = 6294; - this.match(PostgreSqlParser.COMMA); - this.state = 6295; - this.columnExprNoParen(); - } - } - this.state = 6300; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } + if(!(_la === 37 || _la === 55)) { + this.errorHandler.recoverInline(this); } - this.state = 6301; - this.match(PostgreSqlParser.CLOSE_PAREN); + else { + this.errorHandler.reportMatch(this); + this.consume(); } - break; - case 4: - this.enterOuterAlt(localContext, 4); - { - this.state = 6303; - this.match(PostgreSqlParser.KW_GROUPING); - this.state = 6304; - this.match(PostgreSqlParser.KW_SETS); - this.state = 6305; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6306; - this.groupByList(); - this.state = 6307; - this.match(PostgreSqlParser.CLOSE_PAREN); } break; - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public forLockingClause(): ForLockingClauseContext { - let localContext = new ForLockingClauseContext(this.context, this.state); - this.enterRule(localContext, 600, PostgreSqlParser.RULE_forLockingClause); - let _la: number; - try { - this.state = 6339; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 841, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 6332; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - do { - { - { - this.state = 6311; - this.match(PostgreSqlParser.KW_FOR); - this.state = 6321; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.KW_NO: - case PostgreSqlParser.KW_UPDATE: - { - this.state = 6314; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 269) { - { - this.state = 6312; - this.match(PostgreSqlParser.KW_NO); - this.state = 6313; - this.match(PostgreSqlParser.KW_KEY); - } - } - - this.state = 6316; - this.match(PostgreSqlParser.KW_UPDATE); - } - break; - case PostgreSqlParser.KW_KEY: - case PostgreSqlParser.KW_SHARE: - { - this.state = 6318; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 245) { - { - this.state = 6317; - this.match(PostgreSqlParser.KW_KEY); - } - } - - this.state = 6320; - this.match(PostgreSqlParser.KW_SHARE); - } - break; - default: - throw new antlr.NoViableAltException(this); - } - this.state = 6325; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 838, this.context) ) { - case 1: - { - this.state = 6323; - this.match(PostgreSqlParser.KW_OF); - this.state = 6324; - this.qualifiedNameList(); - } - break; - } - this.state = 6330; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 839, this.context) ) { - case 1: - { - this.state = 6327; - this.match(PostgreSqlParser.KW_NOWAIT); - } - break; - case 2: - { - this.state = 6328; - this.match(PostgreSqlParser.KW_SKIP); - this.state = 6329; - this.match(PostgreSqlParser.KW_LOCKED); - } - break; - } - } - } - this.state = 6334; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } while (_la === 62); - } + case PostgreSqlParser.EOF: + case PostgreSqlParser.OPEN_PAREN: + case PostgreSqlParser.CLOSE_PAREN: + case PostgreSqlParser.COMMA: + case PostgreSqlParser.SEMI: + case PostgreSqlParser.KW_ANALYSE: + case PostgreSqlParser.KW_ANALYZE: + case PostgreSqlParser.KW_AS: + case PostgreSqlParser.KW_CREATE: + case PostgreSqlParser.KW_DEFAULT: + case PostgreSqlParser.KW_DO: + case PostgreSqlParser.KW_FETCH: + case PostgreSqlParser.KW_FOR: + case PostgreSqlParser.KW_GRANT: + case PostgreSqlParser.KW_INTO: + case PostgreSqlParser.KW_LIMIT: + case PostgreSqlParser.KW_NOT: + case PostgreSqlParser.KW_OFFSET: + case PostgreSqlParser.KW_ON: + case PostgreSqlParser.KW_RETURNING: + case PostgreSqlParser.KW_SELECT: + case PostgreSqlParser.KW_TABLE: + case PostgreSqlParser.KW_WHEN: + case PostgreSqlParser.KW_WINDOW: + case PostgreSqlParser.KW_WITH: + case PostgreSqlParser.KW_IS: + case PostgreSqlParser.KW_OUTER: + case PostgreSqlParser.KW_OVER: + case PostgreSqlParser.KW_ABORT: + case PostgreSqlParser.KW_ABSOLUTE: + case PostgreSqlParser.KW_ACCESS: + case PostgreSqlParser.KW_ACTION: + case PostgreSqlParser.KW_ADD: + case PostgreSqlParser.KW_ADMIN: + case PostgreSqlParser.KW_AFTER: + case PostgreSqlParser.KW_AGGREGATE: + case PostgreSqlParser.KW_ALSO: + case PostgreSqlParser.KW_ALTER: + case PostgreSqlParser.KW_ALWAYS: + case PostgreSqlParser.KW_ASSERTION: + case PostgreSqlParser.KW_ASSIGNMENT: + case PostgreSqlParser.KW_AT: + case PostgreSqlParser.KW_ATTRIBUTE: + case PostgreSqlParser.KW_BACKWARD: + case PostgreSqlParser.KW_BEFORE: + case PostgreSqlParser.KW_BEGIN: + case PostgreSqlParser.KW_BY: + case PostgreSqlParser.KW_CACHE: + case PostgreSqlParser.KW_CALLED: + case PostgreSqlParser.KW_CASCADE: + case PostgreSqlParser.KW_CASCADED: + case PostgreSqlParser.KW_CATALOG: + case PostgreSqlParser.KW_CHAIN: + case PostgreSqlParser.KW_CHARACTERISTICS: + case PostgreSqlParser.KW_CHECKPOINT: + case PostgreSqlParser.KW_CLASS: + case PostgreSqlParser.KW_CLOSE: + case PostgreSqlParser.KW_CLUSTER: + case PostgreSqlParser.KW_COMMENT: + case PostgreSqlParser.KW_COMMENTS: + case PostgreSqlParser.KW_COMMIT: + case PostgreSqlParser.KW_COMMITTED: + case PostgreSqlParser.KW_CONFIGURATION: + case PostgreSqlParser.KW_CONNECTION: + case PostgreSqlParser.KW_CONSTRAINTS: + case PostgreSqlParser.KW_CONTENT: + case PostgreSqlParser.KW_CONTINUE: + case PostgreSqlParser.KW_CONVERSION: + case PostgreSqlParser.KW_COPY: + case PostgreSqlParser.KW_COST: + case PostgreSqlParser.KW_CSV: + case PostgreSqlParser.KW_CURSOR: + case PostgreSqlParser.KW_CYCLE: + case PostgreSqlParser.KW_DATA: + case PostgreSqlParser.KW_DATABASE: + case PostgreSqlParser.KW_DAY: + case PostgreSqlParser.KW_DEALLOCATE: + case PostgreSqlParser.KW_DECLARE: + case PostgreSqlParser.KW_DEFAULTS: + case PostgreSqlParser.KW_DEFERRED: + case PostgreSqlParser.KW_DEFINER: + case PostgreSqlParser.KW_DELETE: + case PostgreSqlParser.KW_DELIMITER: + case PostgreSqlParser.KW_DELIMITERS: + case PostgreSqlParser.KW_DICTIONARY: + case PostgreSqlParser.KW_DISABLE: + case PostgreSqlParser.KW_DISCARD: + case PostgreSqlParser.KW_DOCUMENT: + case PostgreSqlParser.KW_DOMAIN: + case PostgreSqlParser.KW_DOUBLE: + case PostgreSqlParser.KW_DROP: + case PostgreSqlParser.KW_EACH: + case PostgreSqlParser.KW_ENABLE: + case PostgreSqlParser.KW_ENCODING: + case PostgreSqlParser.KW_ENCRYPTED: + case PostgreSqlParser.KW_ENUM: + case PostgreSqlParser.KW_ESCAPE: + case PostgreSqlParser.KW_EVENT: + case PostgreSqlParser.KW_EXCLUDE: + case PostgreSqlParser.KW_EXCLUDING: + case PostgreSqlParser.KW_EXCLUSIVE: + case PostgreSqlParser.KW_EXECUTE: + case PostgreSqlParser.KW_EXPLAIN: + case PostgreSqlParser.KW_EXTENSION: + case PostgreSqlParser.KW_EXTERNAL: + case PostgreSqlParser.KW_FAMILY: + case PostgreSqlParser.KW_FIRST: + case PostgreSqlParser.KW_FOLLOWING: + case PostgreSqlParser.KW_FORCE: + case PostgreSqlParser.KW_FORWARD: + case PostgreSqlParser.KW_FUNCTION: + case PostgreSqlParser.KW_FUNCTIONS: + case PostgreSqlParser.KW_GLOBAL: + case PostgreSqlParser.KW_GRANTED: + case PostgreSqlParser.KW_HANDLER: + case PostgreSqlParser.KW_HEADER: + case PostgreSqlParser.KW_HOLD: + case PostgreSqlParser.KW_HOUR: + case PostgreSqlParser.KW_IDENTITY: + case PostgreSqlParser.KW_IF: + case PostgreSqlParser.KW_IMMEDIATE: + case PostgreSqlParser.KW_IMMUTABLE: + case PostgreSqlParser.KW_IMPLICIT: + case PostgreSqlParser.KW_INCLUDING: + case PostgreSqlParser.KW_INCREMENT: + case PostgreSqlParser.KW_INDEX: + case PostgreSqlParser.KW_INDEXES: + case PostgreSqlParser.KW_INHERIT: + case PostgreSqlParser.KW_INHERITS: + case PostgreSqlParser.KW_INLINE: + case PostgreSqlParser.KW_INSENSITIVE: + case PostgreSqlParser.KW_INSERT: + case PostgreSqlParser.KW_INSTEAD: + case PostgreSqlParser.KW_INVOKER: + case PostgreSqlParser.KW_ISOLATION: + case PostgreSqlParser.KW_KEY: + case PostgreSqlParser.KW_LABEL: + case PostgreSqlParser.KW_LANGUAGE: + case PostgreSqlParser.KW_LARGE: + case PostgreSqlParser.KW_LAST: + case PostgreSqlParser.KW_LEAKPROOF: + case PostgreSqlParser.KW_LEVEL: + case PostgreSqlParser.KW_LISTEN: + case PostgreSqlParser.KW_LOAD: + case PostgreSqlParser.KW_LOCAL: + case PostgreSqlParser.KW_LOCATION: + case PostgreSqlParser.KW_LOCK: + case PostgreSqlParser.KW_MAPPING: + case PostgreSqlParser.KW_MATCH: + case PostgreSqlParser.KW_MATERIALIZED: + case PostgreSqlParser.KW_MAXVALUE: + case PostgreSqlParser.KW_MINUTE: + case PostgreSqlParser.KW_MINVALUE: + case PostgreSqlParser.KW_MODE: + case PostgreSqlParser.KW_MONTH: + case PostgreSqlParser.KW_MOVE: + case PostgreSqlParser.KW_NAME: + case PostgreSqlParser.KW_NAMES: + case PostgreSqlParser.KW_NEXT: + case PostgreSqlParser.KW_NO: + case PostgreSqlParser.KW_NOTHING: + case PostgreSqlParser.KW_NOTIFY: + case PostgreSqlParser.KW_NOWAIT: + case PostgreSqlParser.KW_NULLS: + case PostgreSqlParser.KW_OBJECT: + case PostgreSqlParser.KW_OF: + case PostgreSqlParser.KW_OFF: + case PostgreSqlParser.KW_OIDS: + case PostgreSqlParser.KW_OPERATOR: + case PostgreSqlParser.KW_OPTION: + case PostgreSqlParser.KW_OPTIONS: + case PostgreSqlParser.KW_OWNED: + case PostgreSqlParser.KW_OWNER: + case PostgreSqlParser.KW_PARSER: + case PostgreSqlParser.KW_PARTIAL: + case PostgreSqlParser.KW_PARTITION: + case PostgreSqlParser.KW_PASSING: + case PostgreSqlParser.KW_PASSWORD: + case PostgreSqlParser.KW_PLANS: + case PostgreSqlParser.KW_PRECEDING: + case PostgreSqlParser.KW_PREPARE: + case PostgreSqlParser.KW_PREPARED: + case PostgreSqlParser.KW_PRESERVE: + case PostgreSqlParser.KW_PRIOR: + case PostgreSqlParser.KW_PRIVILEGES: + case PostgreSqlParser.KW_PROCEDURAL: + case PostgreSqlParser.KW_PROCEDURE: + case PostgreSqlParser.KW_PROGRAM: + case PostgreSqlParser.KW_QUOTE: + case PostgreSqlParser.KW_RANGE: + case PostgreSqlParser.KW_READ: + case PostgreSqlParser.KW_REASSIGN: + case PostgreSqlParser.KW_RECHECK: + case PostgreSqlParser.KW_RECURSIVE: + case PostgreSqlParser.KW_REF: + case PostgreSqlParser.KW_REFRESH: + case PostgreSqlParser.KW_REINDEX: + case PostgreSqlParser.KW_RELATIVE: + case PostgreSqlParser.KW_RELEASE: + case PostgreSqlParser.KW_RENAME: + case PostgreSqlParser.KW_REPEATABLE: + case PostgreSqlParser.KW_REPLACE: + case PostgreSqlParser.KW_REPLICA: + case PostgreSqlParser.KW_RESET: + case PostgreSqlParser.KW_RESTART: + case PostgreSqlParser.KW_RESTRICT: + case PostgreSqlParser.KW_RETURNS: + case PostgreSqlParser.KW_REVOKE: + case PostgreSqlParser.KW_ROLE: + case PostgreSqlParser.KW_ROLLBACK: + case PostgreSqlParser.KW_ROWS: + case PostgreSqlParser.KW_RULE: + case PostgreSqlParser.KW_SAVEPOINT: + case PostgreSqlParser.KW_SCHEMA: + case PostgreSqlParser.KW_SCROLL: + case PostgreSqlParser.KW_SEARCH: + case PostgreSqlParser.KW_SECOND: + case PostgreSqlParser.KW_SECURITY: + case PostgreSqlParser.KW_SEQUENCE: + case PostgreSqlParser.KW_SEQUENCES: + case PostgreSqlParser.KW_SERIALIZABLE: + case PostgreSqlParser.KW_SERVER: + case PostgreSqlParser.KW_SESSION: + case PostgreSqlParser.KW_SET: + case PostgreSqlParser.KW_SHARE: + case PostgreSqlParser.KW_SHOW: + case PostgreSqlParser.KW_SIMPLE: + case PostgreSqlParser.KW_SNAPSHOT: + case PostgreSqlParser.KW_STABLE: + case PostgreSqlParser.KW_STANDALONE: + case PostgreSqlParser.KW_START: + case PostgreSqlParser.KW_STATEMENT: + case PostgreSqlParser.KW_STATISTICS: + case PostgreSqlParser.KW_STDIN: + case PostgreSqlParser.KW_STDOUT: + case PostgreSqlParser.KW_STORAGE: + case PostgreSqlParser.KW_STRICT: + case PostgreSqlParser.KW_STRIP: + case PostgreSqlParser.KW_SYSID: + case PostgreSqlParser.KW_SYSTEM: + case PostgreSqlParser.KW_TABLES: + case PostgreSqlParser.KW_TABLESPACE: + case PostgreSqlParser.KW_TEMP: + case PostgreSqlParser.KW_TEMPLATE: + case PostgreSqlParser.KW_TEMPORARY: + case PostgreSqlParser.KW_TEXT: + case PostgreSqlParser.KW_TRANSACTION: + case PostgreSqlParser.KW_TRIGGER: + case PostgreSqlParser.KW_TRUNCATE: + case PostgreSqlParser.KW_TRUSTED: + case PostgreSqlParser.KW_TYPE: + case PostgreSqlParser.KW_TYPES: + case PostgreSqlParser.KW_UNBOUNDED: + case PostgreSqlParser.KW_UNCOMMITTED: + case PostgreSqlParser.KW_UNENCRYPTED: + case PostgreSqlParser.KW_UNKNOWN: + case PostgreSqlParser.KW_UNLISTEN: + case PostgreSqlParser.KW_UNLOGGED: + case PostgreSqlParser.KW_UNTIL: + case PostgreSqlParser.KW_UPDATE: + case PostgreSqlParser.KW_VACUUM: + case PostgreSqlParser.KW_VALID: + case PostgreSqlParser.KW_VALIDATE: + case PostgreSqlParser.KW_VALIDATOR: + case PostgreSqlParser.KW_VARYING: + case PostgreSqlParser.KW_VERSION: + case PostgreSqlParser.KW_VIEW: + case PostgreSqlParser.KW_VOLATILE: + case PostgreSqlParser.KW_WHITESPACE: + case PostgreSqlParser.KW_WITHOUT: + case PostgreSqlParser.KW_WORK: + case PostgreSqlParser.KW_WRAPPER: + case PostgreSqlParser.KW_WRITE: + case PostgreSqlParser.KW_XML: + case PostgreSqlParser.KW_YEAR: + case PostgreSqlParser.KW_YES: + case PostgreSqlParser.KW_ZONE: + case PostgreSqlParser.KW_BETWEEN: + case PostgreSqlParser.KW_BIGINT: + case PostgreSqlParser.KW_BIT: + case PostgreSqlParser.KW_BOOLEAN: + case PostgreSqlParser.KW_CHAR: + case PostgreSqlParser.KW_CHARACTER: + case PostgreSqlParser.KW_COALESCE: + case PostgreSqlParser.KW_DEC: + case PostgreSqlParser.KW_DECIMAL: + case PostgreSqlParser.KW_EXISTS: + case PostgreSqlParser.KW_EXTRACT: + case PostgreSqlParser.KW_FLOAT: + case PostgreSqlParser.KW_GREATEST: + case PostgreSqlParser.KW_INOUT: + case PostgreSqlParser.KW_INT: + case PostgreSqlParser.KW_INTEGER: + case PostgreSqlParser.KW_INTERVAL: + case PostgreSqlParser.KW_LEAST: + case PostgreSqlParser.KW_NATIONAL: + case PostgreSqlParser.KW_NCHAR: + case PostgreSqlParser.KW_NONE: + case PostgreSqlParser.KW_NULLIF: + case PostgreSqlParser.KW_NUMERIC: + case PostgreSqlParser.KW_OVERLAY: + case PostgreSqlParser.KW_POSITION: + case PostgreSqlParser.KW_PRECISION: + case PostgreSqlParser.KW_REAL: + case PostgreSqlParser.KW_ROW: + case PostgreSqlParser.KW_SETOF: + case PostgreSqlParser.KW_SMALLINT: + case PostgreSqlParser.KW_SUBSTRING: + case PostgreSqlParser.KW_TIME: + case PostgreSqlParser.KW_TIMESTAMP: + case PostgreSqlParser.KW_TREAT: + case PostgreSqlParser.KW_TRIM: + case PostgreSqlParser.KW_VALUES: + case PostgreSqlParser.KW_VARCHAR: + case PostgreSqlParser.KW_XMLATTRIBUTES: + case PostgreSqlParser.KW_XMLCONCAT: + case PostgreSqlParser.KW_XMLELEMENT: + case PostgreSqlParser.KW_XMLEXISTS: + case PostgreSqlParser.KW_XMLFOREST: + case PostgreSqlParser.KW_XMLPARSE: + case PostgreSqlParser.KW_XMLPI: + case PostgreSqlParser.KW_XMLROOT: + case PostgreSqlParser.KW_XMLSERIALIZE: + case PostgreSqlParser.KW_CALL: + case PostgreSqlParser.KW_CURRENT: + case PostgreSqlParser.KW_ATTACH: + case PostgreSqlParser.KW_DETACH: + case PostgreSqlParser.KW_EXPRESSION: + case PostgreSqlParser.KW_GENERATED: + case PostgreSqlParser.KW_LOGGED: + case PostgreSqlParser.KW_STORED: + case PostgreSqlParser.KW_INCLUDE: + case PostgreSqlParser.KW_ROUTINE: + case PostgreSqlParser.KW_TRANSFORM: + case PostgreSqlParser.KW_IMPORT: + case PostgreSqlParser.KW_POLICY: + case PostgreSqlParser.KW_METHOD: + case PostgreSqlParser.KW_REFERENCING: + case PostgreSqlParser.KW_NEW: + case PostgreSqlParser.KW_OLD: + case PostgreSqlParser.KW_VALUE: + case PostgreSqlParser.KW_SUBSCRIPTION: + case PostgreSqlParser.KW_PUBLICATION: + case PostgreSqlParser.KW_OUT: + case PostgreSqlParser.KW_END: + case PostgreSqlParser.KW_ROUTINES: + case PostgreSqlParser.KW_SCHEMAS: + case PostgreSqlParser.KW_PROCEDURES: + case PostgreSqlParser.KW_INPUT: + case PostgreSqlParser.KW_SUPPORT: + case PostgreSqlParser.KW_PARALLEL: + case PostgreSqlParser.KW_SQL: + case PostgreSqlParser.KW_DEPENDS: + case PostgreSqlParser.KW_OVERRIDING: + case PostgreSqlParser.KW_CONFLICT: + case PostgreSqlParser.KW_SKIP: + case PostgreSqlParser.KW_LOCKED: + case PostgreSqlParser.KW_TIES: + case PostgreSqlParser.KW_ROLLUP: + case PostgreSqlParser.KW_CUBE: + case PostgreSqlParser.KW_GROUPING: + case PostgreSqlParser.KW_SETS: + case PostgreSqlParser.KW_ORDINALITY: + case PostgreSqlParser.KW_XMLTABLE: + case PostgreSqlParser.KW_COLUMNS: + case PostgreSqlParser.KW_XMLNAMESPACES: + case PostgreSqlParser.KW_ROWTYPE: + case PostgreSqlParser.KW_NORMALIZED: + case PostgreSqlParser.KW_WITHIN: + case PostgreSqlParser.KW_FILTER: + case PostgreSqlParser.KW_GROUPS: + case PostgreSqlParser.KW_OTHERS: + case PostgreSqlParser.KW_NFC: + case PostgreSqlParser.KW_NFD: + case PostgreSqlParser.KW_NFKC: + case PostgreSqlParser.KW_NFKD: + case PostgreSqlParser.KW_UESCAPE: + case PostgreSqlParser.KW_VIEWS: + case PostgreSqlParser.KW_NORMALIZE: + case PostgreSqlParser.KW_DUMP: + case PostgreSqlParser.KW_PRINT_STRICT_PARAMS: + case PostgreSqlParser.KW_VARIABLE_CONFLICT: + case PostgreSqlParser.KW_ERROR: + case PostgreSqlParser.KW_USE_VARIABLE: + case PostgreSqlParser.KW_USE_COLUMN: + case PostgreSqlParser.KW_ALIAS: + case PostgreSqlParser.KW_CONSTANT: + case PostgreSqlParser.KW_PERFORM: + case PostgreSqlParser.KW_GET: + case PostgreSqlParser.KW_DIAGNOSTICS: + case PostgreSqlParser.KW_STACKED: + case PostgreSqlParser.KW_ELSIF: + case PostgreSqlParser.KW_REVERSE: + case PostgreSqlParser.KW_SLICE: + case PostgreSqlParser.KW_EXIT: + case PostgreSqlParser.KW_RETURN: + case PostgreSqlParser.KW_QUERY: + case PostgreSqlParser.KW_RAISE: + case PostgreSqlParser.KW_SQLSTATE: + case PostgreSqlParser.KW_DEBUG: + case PostgreSqlParser.KW_LOG: + case PostgreSqlParser.KW_INFO: + case PostgreSqlParser.KW_NOTICE: + case PostgreSqlParser.KW_WARNING: + case PostgreSqlParser.KW_EXCEPTION: + case PostgreSqlParser.KW_ASSERT: + case PostgreSqlParser.KW_LOOP: + case PostgreSqlParser.KW_OPEN: + case PostgreSqlParser.KW_PUBLIC: + case PostgreSqlParser.KW_MERGE: + case PostgreSqlParser.KW_SKIP_LOCKED: + case PostgreSqlParser.KW_BUFFER_USAGE_LIMIT: + case PostgreSqlParser.Identifier: + case PostgreSqlParser.QuotedIdentifier: + case PostgreSqlParser.UnicodeQuotedIdentifier: + case PostgreSqlParser.StringConstant: + case PostgreSqlParser.UnicodeEscapeStringConstant: + case PostgreSqlParser.BeginDollarStringConstant: + case PostgreSqlParser.PLSQLVARIABLENAME: + case PostgreSqlParser.PLSQLIDENTIFIER: + case PostgreSqlParser.MetaCommand: + case PostgreSqlParser.EscapeStringConstant: break; - case 2: - this.enterOuterAlt(localContext, 2); + default: + break; + } + this.state = 6226; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 819, this.context) ) { + case 1: { - this.state = 6336; - this.match(PostgreSqlParser.KW_FOR); - this.state = 6337; - this.match(PostgreSqlParser.KW_READ); - this.state = 6338; - this.match(PostgreSqlParser.KW_ONLY); + this.state = 6224; + this.match(PostgreSqlParser.KW_NULLS); + this.state = 6225; + _la = this.tokenStream.LA(1); + if(!(_la === 207 || _la === 249)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } } break; } + } } catch (re) { if (re instanceof antlr.RecognitionException) { @@ -35880,33 +37263,67 @@ export class PostgreSqlParser extends SQLParserBase { } return localContext; } - public valuesClause(): ValuesClauseContext { - let localContext = new ValuesClauseContext(this.context, this.state); - this.enterRule(localContext, 602, PostgreSqlParser.RULE_valuesClause); + public selectLimit(): SelectLimitContext { + let localContext = new SelectLimitContext(this.context, this.state); + this.enterRule(localContext, 584, PostgreSqlParser.RULE_selectLimit); let _la: number; try { - this.enterOuterAlt(localContext, 1); - { - this.state = 6341; - this.match(PostgreSqlParser.KW_VALUES); - this.state = 6342; - this.executeParamClause(); - this.state = 6347; + this.state = 6239; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 6) { - { + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.KW_OFFSET: + this.enterOuterAlt(localContext, 1); { - this.state = 6343; - this.match(PostgreSqlParser.COMMA); - this.state = 6344; - this.executeParamClause(); + this.state = 6228; + this.offsetClause(); + this.state = 6230; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 820, this.context) ) { + case 1: + { + this.state = 6229; + this.fetchClause(); + } + break; + } } + break; + case PostgreSqlParser.KW_FETCH: + case PostgreSqlParser.KW_LIMIT: + this.enterOuterAlt(localContext, 2); + { + this.state = 6234; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.KW_LIMIT: + { + this.state = 6232; + this.limitClause(); + } + break; + case PostgreSqlParser.KW_FETCH: + { + this.state = 6233; + this.fetchClause(); + } + break; + default: + throw new antlr.NoViableAltException(this); } - this.state = 6349; + this.state = 6237; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - } + if (_la === 79) { + { + this.state = 6236; + this.offsetClause(); + } + } + + } + break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -35923,59 +37340,486 @@ export class PostgreSqlParser extends SQLParserBase { } return localContext; } - public fromClause(): FromClauseContext { - let localContext = new FromClauseContext(this.context, this.state); - this.enterRule(localContext, 604, PostgreSqlParser.RULE_fromClause); + public limitClause(): LimitClauseContext { + let localContext = new LimitClauseContext(this.context, this.state); + this.enterRule(localContext, 586, PostgreSqlParser.RULE_limitClause); + let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6350; - this.match(PostgreSqlParser.KW_FROM); - this.state = 6351; - this.fromList(); - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; + this.state = 6241; + this.match(PostgreSqlParser.KW_LIMIT); + this.state = 6244; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.OPEN_PAREN: + case PostgreSqlParser.PLUS: + case PostgreSqlParser.MINUS: + case PostgreSqlParser.PARAM: + case PostgreSqlParser.Operator: + case PostgreSqlParser.KW_ARRAY: + case PostgreSqlParser.KW_CASE: + case PostgreSqlParser.KW_CAST: + case PostgreSqlParser.KW_CURRENT_CATALOG: + case PostgreSqlParser.KW_CURRENT_DATE: + case PostgreSqlParser.KW_CURRENT_ROLE: + case PostgreSqlParser.KW_CURRENT_TIME: + case PostgreSqlParser.KW_CURRENT_TIMESTAMP: + case PostgreSqlParser.KW_CURRENT_USER: + case PostgreSqlParser.KW_DEFAULT: + case PostgreSqlParser.KW_FALSE: + case PostgreSqlParser.KW_LOCALTIME: + case PostgreSqlParser.KW_LOCALTIMESTAMP: + case PostgreSqlParser.KW_NOT: + case PostgreSqlParser.KW_NULL: + case PostgreSqlParser.KW_SESSION_USER: + case PostgreSqlParser.KW_TRUE: + case PostgreSqlParser.KW_UNIQUE: + case PostgreSqlParser.KW_USER: + case PostgreSqlParser.KW_AUTHORIZATION: + case PostgreSqlParser.KW_BINARY: + case PostgreSqlParser.KW_COLLATION: + case PostgreSqlParser.KW_CONCURRENTLY: + case PostgreSqlParser.KW_CROSS: + case PostgreSqlParser.KW_CURRENT_SCHEMA: + case PostgreSqlParser.KW_FREEZE: + case PostgreSqlParser.KW_FULL: + case PostgreSqlParser.KW_ILIKE: + case PostgreSqlParser.KW_INNER: + case PostgreSqlParser.KW_IS: + case PostgreSqlParser.KW_ISNULL: + case PostgreSqlParser.KW_JOIN: + case PostgreSqlParser.KW_LEFT: + case PostgreSqlParser.KW_LIKE: + case PostgreSqlParser.KW_NATURAL: + case PostgreSqlParser.KW_NOTNULL: + case PostgreSqlParser.KW_OUTER: + case PostgreSqlParser.KW_OVER: + case PostgreSqlParser.KW_OVERLAPS: + case PostgreSqlParser.KW_RIGHT: + case PostgreSqlParser.KW_SIMILAR: + case PostgreSqlParser.KW_VERBOSE: + case PostgreSqlParser.KW_ABORT: + case PostgreSqlParser.KW_ABSOLUTE: + case PostgreSqlParser.KW_ACCESS: + case PostgreSqlParser.KW_ACTION: + case PostgreSqlParser.KW_ADD: + case PostgreSqlParser.KW_ADMIN: + case PostgreSqlParser.KW_AFTER: + case PostgreSqlParser.KW_AGGREGATE: + case PostgreSqlParser.KW_ALSO: + case PostgreSqlParser.KW_ALTER: + case PostgreSqlParser.KW_ALWAYS: + case PostgreSqlParser.KW_ASSERTION: + case PostgreSqlParser.KW_ASSIGNMENT: + case PostgreSqlParser.KW_AT: + case PostgreSqlParser.KW_ATTRIBUTE: + case PostgreSqlParser.KW_BACKWARD: + case PostgreSqlParser.KW_BEFORE: + case PostgreSqlParser.KW_BEGIN: + case PostgreSqlParser.KW_BY: + case PostgreSqlParser.KW_CACHE: + case PostgreSqlParser.KW_CALLED: + case PostgreSqlParser.KW_CASCADE: + case PostgreSqlParser.KW_CASCADED: + case PostgreSqlParser.KW_CATALOG: + case PostgreSqlParser.KW_CHAIN: + case PostgreSqlParser.KW_CHARACTERISTICS: + case PostgreSqlParser.KW_CHECKPOINT: + case PostgreSqlParser.KW_CLASS: + case PostgreSqlParser.KW_CLOSE: + case PostgreSqlParser.KW_CLUSTER: + case PostgreSqlParser.KW_COMMENT: + case PostgreSqlParser.KW_COMMENTS: + case PostgreSqlParser.KW_COMMIT: + case PostgreSqlParser.KW_COMMITTED: + case PostgreSqlParser.KW_CONFIGURATION: + case PostgreSqlParser.KW_CONNECTION: + case PostgreSqlParser.KW_CONSTRAINTS: + case PostgreSqlParser.KW_CONTENT: + case PostgreSqlParser.KW_CONTINUE: + case PostgreSqlParser.KW_CONVERSION: + case PostgreSqlParser.KW_COPY: + case PostgreSqlParser.KW_COST: + case PostgreSqlParser.KW_CSV: + case PostgreSqlParser.KW_CURSOR: + case PostgreSqlParser.KW_CYCLE: + case PostgreSqlParser.KW_DATA: + case PostgreSqlParser.KW_DATABASE: + case PostgreSqlParser.KW_DAY: + case PostgreSqlParser.KW_DEALLOCATE: + case PostgreSqlParser.KW_DECLARE: + case PostgreSqlParser.KW_DEFAULTS: + case PostgreSqlParser.KW_DEFERRED: + case PostgreSqlParser.KW_DEFINER: + case PostgreSqlParser.KW_DELETE: + case PostgreSqlParser.KW_DELIMITER: + case PostgreSqlParser.KW_DELIMITERS: + case PostgreSqlParser.KW_DICTIONARY: + case PostgreSqlParser.KW_DISABLE: + case PostgreSqlParser.KW_DISCARD: + case PostgreSqlParser.KW_DOCUMENT: + case PostgreSqlParser.KW_DOMAIN: + case PostgreSqlParser.KW_DOUBLE: + case PostgreSqlParser.KW_DROP: + case PostgreSqlParser.KW_EACH: + case PostgreSqlParser.KW_ENABLE: + case PostgreSqlParser.KW_ENCODING: + case PostgreSqlParser.KW_ENCRYPTED: + case PostgreSqlParser.KW_ENUM: + case PostgreSqlParser.KW_ESCAPE: + case PostgreSqlParser.KW_EVENT: + case PostgreSqlParser.KW_EXCLUDE: + case PostgreSqlParser.KW_EXCLUDING: + case PostgreSqlParser.KW_EXCLUSIVE: + case PostgreSqlParser.KW_EXECUTE: + case PostgreSqlParser.KW_EXPLAIN: + case PostgreSqlParser.KW_EXTENSION: + case PostgreSqlParser.KW_EXTERNAL: + case PostgreSqlParser.KW_FAMILY: + case PostgreSqlParser.KW_FIRST: + case PostgreSqlParser.KW_FOLLOWING: + case PostgreSqlParser.KW_FORCE: + case PostgreSqlParser.KW_FORWARD: + case PostgreSqlParser.KW_FUNCTION: + case PostgreSqlParser.KW_FUNCTIONS: + case PostgreSqlParser.KW_GLOBAL: + case PostgreSqlParser.KW_GRANTED: + case PostgreSqlParser.KW_HANDLER: + case PostgreSqlParser.KW_HEADER: + case PostgreSqlParser.KW_HOLD: + case PostgreSqlParser.KW_HOUR: + case PostgreSqlParser.KW_IDENTITY: + case PostgreSqlParser.KW_IF: + case PostgreSqlParser.KW_IMMEDIATE: + case PostgreSqlParser.KW_IMMUTABLE: + case PostgreSqlParser.KW_IMPLICIT: + case PostgreSqlParser.KW_INCLUDING: + case PostgreSqlParser.KW_INCREMENT: + case PostgreSqlParser.KW_INDEX: + case PostgreSqlParser.KW_INDEXES: + case PostgreSqlParser.KW_INHERIT: + case PostgreSqlParser.KW_INHERITS: + case PostgreSqlParser.KW_INLINE: + case PostgreSqlParser.KW_INSENSITIVE: + case PostgreSqlParser.KW_INSERT: + case PostgreSqlParser.KW_INSTEAD: + case PostgreSqlParser.KW_INVOKER: + case PostgreSqlParser.KW_ISOLATION: + case PostgreSqlParser.KW_KEY: + case PostgreSqlParser.KW_LABEL: + case PostgreSqlParser.KW_LANGUAGE: + case PostgreSqlParser.KW_LARGE: + case PostgreSqlParser.KW_LAST: + case PostgreSqlParser.KW_LEAKPROOF: + case PostgreSqlParser.KW_LEVEL: + case PostgreSqlParser.KW_LISTEN: + case PostgreSqlParser.KW_LOAD: + case PostgreSqlParser.KW_LOCAL: + case PostgreSqlParser.KW_LOCATION: + case PostgreSqlParser.KW_LOCK: + case PostgreSqlParser.KW_MAPPING: + case PostgreSqlParser.KW_MATCH: + case PostgreSqlParser.KW_MATERIALIZED: + case PostgreSqlParser.KW_MAXVALUE: + case PostgreSqlParser.KW_MINUTE: + case PostgreSqlParser.KW_MINVALUE: + case PostgreSqlParser.KW_MODE: + case PostgreSqlParser.KW_MONTH: + case PostgreSqlParser.KW_MOVE: + case PostgreSqlParser.KW_NAME: + case PostgreSqlParser.KW_NAMES: + case PostgreSqlParser.KW_NEXT: + case PostgreSqlParser.KW_NO: + case PostgreSqlParser.KW_NOTHING: + case PostgreSqlParser.KW_NOTIFY: + case PostgreSqlParser.KW_NOWAIT: + case PostgreSqlParser.KW_NULLS: + case PostgreSqlParser.KW_OBJECT: + case PostgreSqlParser.KW_OF: + case PostgreSqlParser.KW_OFF: + case PostgreSqlParser.KW_OIDS: + case PostgreSqlParser.KW_OPERATOR: + case PostgreSqlParser.KW_OPTION: + case PostgreSqlParser.KW_OPTIONS: + case PostgreSqlParser.KW_OWNED: + case PostgreSqlParser.KW_OWNER: + case PostgreSqlParser.KW_PARSER: + case PostgreSqlParser.KW_PARTIAL: + case PostgreSqlParser.KW_PARTITION: + case PostgreSqlParser.KW_PASSING: + case PostgreSqlParser.KW_PASSWORD: + case PostgreSqlParser.KW_PLANS: + case PostgreSqlParser.KW_PRECEDING: + case PostgreSqlParser.KW_PREPARE: + case PostgreSqlParser.KW_PREPARED: + case PostgreSqlParser.KW_PRESERVE: + case PostgreSqlParser.KW_PRIOR: + case PostgreSqlParser.KW_PRIVILEGES: + case PostgreSqlParser.KW_PROCEDURAL: + case PostgreSqlParser.KW_PROCEDURE: + case PostgreSqlParser.KW_PROGRAM: + case PostgreSqlParser.KW_QUOTE: + case PostgreSqlParser.KW_RANGE: + case PostgreSqlParser.KW_READ: + case PostgreSqlParser.KW_REASSIGN: + case PostgreSqlParser.KW_RECHECK: + case PostgreSqlParser.KW_RECURSIVE: + case PostgreSqlParser.KW_REF: + case PostgreSqlParser.KW_REFRESH: + case PostgreSqlParser.KW_REINDEX: + case PostgreSqlParser.KW_RELATIVE: + case PostgreSqlParser.KW_RELEASE: + case PostgreSqlParser.KW_RENAME: + case PostgreSqlParser.KW_REPEATABLE: + case PostgreSqlParser.KW_REPLACE: + case PostgreSqlParser.KW_REPLICA: + case PostgreSqlParser.KW_RESET: + case PostgreSqlParser.KW_RESTART: + case PostgreSqlParser.KW_RESTRICT: + case PostgreSqlParser.KW_RETURNS: + case PostgreSqlParser.KW_REVOKE: + case PostgreSqlParser.KW_ROLE: + case PostgreSqlParser.KW_ROLLBACK: + case PostgreSqlParser.KW_ROWS: + case PostgreSqlParser.KW_RULE: + case PostgreSqlParser.KW_SAVEPOINT: + case PostgreSqlParser.KW_SCHEMA: + case PostgreSqlParser.KW_SCROLL: + case PostgreSqlParser.KW_SEARCH: + case PostgreSqlParser.KW_SECOND: + case PostgreSqlParser.KW_SECURITY: + case PostgreSqlParser.KW_SEQUENCE: + case PostgreSqlParser.KW_SEQUENCES: + case PostgreSqlParser.KW_SERIALIZABLE: + case PostgreSqlParser.KW_SERVER: + case PostgreSqlParser.KW_SESSION: + case PostgreSqlParser.KW_SET: + case PostgreSqlParser.KW_SHARE: + case PostgreSqlParser.KW_SHOW: + case PostgreSqlParser.KW_SIMPLE: + case PostgreSqlParser.KW_SNAPSHOT: + case PostgreSqlParser.KW_STABLE: + case PostgreSqlParser.KW_STANDALONE: + case PostgreSqlParser.KW_START: + case PostgreSqlParser.KW_STATEMENT: + case PostgreSqlParser.KW_STATISTICS: + case PostgreSqlParser.KW_STDIN: + case PostgreSqlParser.KW_STDOUT: + case PostgreSqlParser.KW_STORAGE: + case PostgreSqlParser.KW_STRICT: + case PostgreSqlParser.KW_STRIP: + case PostgreSqlParser.KW_SYSID: + case PostgreSqlParser.KW_SYSTEM: + case PostgreSqlParser.KW_TABLES: + case PostgreSqlParser.KW_TABLESPACE: + case PostgreSqlParser.KW_TEMP: + case PostgreSqlParser.KW_TEMPLATE: + case PostgreSqlParser.KW_TEMPORARY: + case PostgreSqlParser.KW_TEXT: + case PostgreSqlParser.KW_TRANSACTION: + case PostgreSqlParser.KW_TRIGGER: + case PostgreSqlParser.KW_TRUNCATE: + case PostgreSqlParser.KW_TRUSTED: + case PostgreSqlParser.KW_TYPE: + case PostgreSqlParser.KW_TYPES: + case PostgreSqlParser.KW_UNBOUNDED: + case PostgreSqlParser.KW_UNCOMMITTED: + case PostgreSqlParser.KW_UNENCRYPTED: + case PostgreSqlParser.KW_UNKNOWN: + case PostgreSqlParser.KW_UNLISTEN: + case PostgreSqlParser.KW_UNLOGGED: + case PostgreSqlParser.KW_UNTIL: + case PostgreSqlParser.KW_UPDATE: + case PostgreSqlParser.KW_VACUUM: + case PostgreSqlParser.KW_VALID: + case PostgreSqlParser.KW_VALIDATE: + case PostgreSqlParser.KW_VALIDATOR: + case PostgreSqlParser.KW_VARYING: + case PostgreSqlParser.KW_VERSION: + case PostgreSqlParser.KW_VIEW: + case PostgreSqlParser.KW_VOLATILE: + case PostgreSqlParser.KW_WHITESPACE: + case PostgreSqlParser.KW_WITHOUT: + case PostgreSqlParser.KW_WORK: + case PostgreSqlParser.KW_WRAPPER: + case PostgreSqlParser.KW_WRITE: + case PostgreSqlParser.KW_XML: + case PostgreSqlParser.KW_YEAR: + case PostgreSqlParser.KW_YES: + case PostgreSqlParser.KW_ZONE: + case PostgreSqlParser.KW_BETWEEN: + case PostgreSqlParser.KW_BIGINT: + case PostgreSqlParser.KW_BIT: + case PostgreSqlParser.KW_BOOLEAN: + case PostgreSqlParser.KW_CHAR: + case PostgreSqlParser.KW_CHARACTER: + case PostgreSqlParser.KW_COALESCE: + case PostgreSqlParser.KW_DEC: + case PostgreSqlParser.KW_DECIMAL: + case PostgreSqlParser.KW_EXISTS: + case PostgreSqlParser.KW_EXTRACT: + case PostgreSqlParser.KW_FLOAT: + case PostgreSqlParser.KW_GREATEST: + case PostgreSqlParser.KW_INOUT: + case PostgreSqlParser.KW_INT: + case PostgreSqlParser.KW_INTEGER: + case PostgreSqlParser.KW_INTERVAL: + case PostgreSqlParser.KW_LEAST: + case PostgreSqlParser.KW_NATIONAL: + case PostgreSqlParser.KW_NCHAR: + case PostgreSqlParser.KW_NONE: + case PostgreSqlParser.KW_NULLIF: + case PostgreSqlParser.KW_NUMERIC: + case PostgreSqlParser.KW_OVERLAY: + case PostgreSqlParser.KW_POSITION: + case PostgreSqlParser.KW_PRECISION: + case PostgreSqlParser.KW_REAL: + case PostgreSqlParser.KW_ROW: + case PostgreSqlParser.KW_SETOF: + case PostgreSqlParser.KW_SMALLINT: + case PostgreSqlParser.KW_SUBSTRING: + case PostgreSqlParser.KW_TIME: + case PostgreSqlParser.KW_TIMESTAMP: + case PostgreSqlParser.KW_TREAT: + case PostgreSqlParser.KW_TRIM: + case PostgreSqlParser.KW_VALUES: + case PostgreSqlParser.KW_VARCHAR: + case PostgreSqlParser.KW_XMLATTRIBUTES: + case PostgreSqlParser.KW_XMLCONCAT: + case PostgreSqlParser.KW_XMLELEMENT: + case PostgreSqlParser.KW_XMLEXISTS: + case PostgreSqlParser.KW_XMLFOREST: + case PostgreSqlParser.KW_XMLPARSE: + case PostgreSqlParser.KW_XMLPI: + case PostgreSqlParser.KW_XMLROOT: + case PostgreSqlParser.KW_XMLSERIALIZE: + case PostgreSqlParser.KW_CALL: + case PostgreSqlParser.KW_CURRENT: + case PostgreSqlParser.KW_ATTACH: + case PostgreSqlParser.KW_DETACH: + case PostgreSqlParser.KW_EXPRESSION: + case PostgreSqlParser.KW_GENERATED: + case PostgreSqlParser.KW_LOGGED: + case PostgreSqlParser.KW_STORED: + case PostgreSqlParser.KW_INCLUDE: + case PostgreSqlParser.KW_ROUTINE: + case PostgreSqlParser.KW_TRANSFORM: + case PostgreSqlParser.KW_IMPORT: + case PostgreSqlParser.KW_POLICY: + case PostgreSqlParser.KW_METHOD: + case PostgreSqlParser.KW_REFERENCING: + case PostgreSqlParser.KW_NEW: + case PostgreSqlParser.KW_OLD: + case PostgreSqlParser.KW_VALUE: + case PostgreSqlParser.KW_SUBSCRIPTION: + case PostgreSqlParser.KW_PUBLICATION: + case PostgreSqlParser.KW_OUT: + case PostgreSqlParser.KW_ROUTINES: + case PostgreSqlParser.KW_SCHEMAS: + case PostgreSqlParser.KW_PROCEDURES: + case PostgreSqlParser.KW_INPUT: + case PostgreSqlParser.KW_SUPPORT: + case PostgreSqlParser.KW_PARALLEL: + case PostgreSqlParser.KW_SQL: + case PostgreSqlParser.KW_DEPENDS: + case PostgreSqlParser.KW_OVERRIDING: + case PostgreSqlParser.KW_CONFLICT: + case PostgreSqlParser.KW_SKIP: + case PostgreSqlParser.KW_LOCKED: + case PostgreSqlParser.KW_TIES: + case PostgreSqlParser.KW_ROLLUP: + case PostgreSqlParser.KW_CUBE: + case PostgreSqlParser.KW_GROUPING: + case PostgreSqlParser.KW_SETS: + case PostgreSqlParser.KW_TABLESAMPLE: + case PostgreSqlParser.KW_ORDINALITY: + case PostgreSqlParser.KW_XMLTABLE: + case PostgreSqlParser.KW_COLUMNS: + case PostgreSqlParser.KW_XMLNAMESPACES: + case PostgreSqlParser.KW_ROWTYPE: + case PostgreSqlParser.KW_NORMALIZED: + case PostgreSqlParser.KW_WITHIN: + case PostgreSqlParser.KW_FILTER: + case PostgreSqlParser.KW_GROUPS: + case PostgreSqlParser.KW_OTHERS: + case PostgreSqlParser.KW_NFC: + case PostgreSqlParser.KW_NFD: + case PostgreSqlParser.KW_NFKC: + case PostgreSqlParser.KW_NFKD: + case PostgreSqlParser.KW_UESCAPE: + case PostgreSqlParser.KW_VIEWS: + case PostgreSqlParser.KW_NORMALIZE: + case PostgreSqlParser.KW_DUMP: + case PostgreSqlParser.KW_PRINT_STRICT_PARAMS: + case PostgreSqlParser.KW_VARIABLE_CONFLICT: + case PostgreSqlParser.KW_ERROR: + case PostgreSqlParser.KW_USE_VARIABLE: + case PostgreSqlParser.KW_USE_COLUMN: + case PostgreSqlParser.KW_ALIAS: + case PostgreSqlParser.KW_CONSTANT: + case PostgreSqlParser.KW_PERFORM: + case PostgreSqlParser.KW_GET: + case PostgreSqlParser.KW_DIAGNOSTICS: + case PostgreSqlParser.KW_STACKED: + case PostgreSqlParser.KW_ELSIF: + case PostgreSqlParser.KW_REVERSE: + case PostgreSqlParser.KW_SLICE: + case PostgreSqlParser.KW_EXIT: + case PostgreSqlParser.KW_RETURN: + case PostgreSqlParser.KW_QUERY: + case PostgreSqlParser.KW_RAISE: + case PostgreSqlParser.KW_SQLSTATE: + case PostgreSqlParser.KW_DEBUG: + case PostgreSqlParser.KW_LOG: + case PostgreSqlParser.KW_INFO: + case PostgreSqlParser.KW_NOTICE: + case PostgreSqlParser.KW_WARNING: + case PostgreSqlParser.KW_EXCEPTION: + case PostgreSqlParser.KW_ASSERT: + case PostgreSqlParser.KW_OPEN: + case PostgreSqlParser.KW_PUBLIC: + case PostgreSqlParser.KW_SKIP_LOCKED: + case PostgreSqlParser.KW_BUFFER_USAGE_LIMIT: + case PostgreSqlParser.Identifier: + case PostgreSqlParser.QuotedIdentifier: + case PostgreSqlParser.UnicodeQuotedIdentifier: + case PostgreSqlParser.StringConstant: + case PostgreSqlParser.UnicodeEscapeStringConstant: + case PostgreSqlParser.BeginDollarStringConstant: + case PostgreSqlParser.BinaryStringConstant: + case PostgreSqlParser.HexadecimalStringConstant: + case PostgreSqlParser.Integral: + case PostgreSqlParser.Numeric: + case PostgreSqlParser.PLSQLVARIABLENAME: + case PostgreSqlParser.PLSQLIDENTIFIER: + case PostgreSqlParser.EscapeStringConstant: + { + this.state = 6242; + this.expression(); + } + break; + case PostgreSqlParser.KW_ALL: + { + this.state = 6243; + this.match(PostgreSqlParser.KW_ALL); + } + break; + default: + throw new antlr.NoViableAltException(this); } - } - finally { - this.exitRule(); - } - return localContext; - } - public fromList(): FromListContext { - let localContext = new FromListContext(this.context, this.state); - this.enterRule(localContext, 606, PostgreSqlParser.RULE_fromList); - try { - let alternative: number; - this.enterOuterAlt(localContext, 1); - { - this.state = 6353; - this.tableRef(); - this.state = 6358; + this.state = 6248; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 843, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - { - this.state = 6354; - this.match(PostgreSqlParser.COMMA); - this.state = 6355; - this.tableRef(); - } - } + _la = this.tokenStream.LA(1); + if (_la === 6) { + { + this.state = 6246; + this.match(PostgreSqlParser.COMMA); + this.state = 6247; + this.expression(); } - this.state = 6360; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 843, this.context); } + } } catch (re) { @@ -35992,269 +37836,114 @@ export class PostgreSqlParser extends SQLParserBase { } return localContext; } - public tableRef(): TableRefContext { - let localContext = new TableRefContext(this.context, this.state); - this.enterRule(localContext, 608, PostgreSqlParser.RULE_tableRef); + public fetchClause(): FetchClauseContext { + let localContext = new FetchClauseContext(this.context, this.state); + this.enterRule(localContext, 588, PostgreSqlParser.RULE_fetchClause); let _la: number; try { - let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6411; + this.state = 6250; + this.match(PostgreSqlParser.KW_FETCH); + this.state = 6251; + _la = this.tokenStream.LA(1); + if(!(_la === 207 || _la === 268)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + { + this.state = 6253; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 856, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 826, this.context) ) { case 1: { - this.state = 6375; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 848, this.context) ) { - case 1: - { - this.state = 6361; - this.relationExpr(); - } - break; - case 2: - { - { - this.state = 6363; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 81) { - { - this.state = 6362; - this.match(PostgreSqlParser.KW_ONLY); - } - } - - this.state = 6365; - this.viewName(); - this.state = 6367; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 845, this.context) ) { - case 1: - { - this.state = 6366; - this.match(PostgreSqlParser.STAR); - } - break; - } - this.state = 6370; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 846, this.context) ) { - case 1: - { - this.state = 6369; - this.columnList(); - } - break; - } - this.state = 6373; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 847, this.context) ) { - case 1: - { - this.state = 6372; - this.whereClause(); - } - break; - } - } - } - break; - } - this.state = 6378; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 849, this.context) ) { - case 1: - { - this.state = 6377; - this.aliasClause(); - } - break; - } - this.state = 6381; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 472) { - { - this.state = 6380; - this.tableSampleClause(); - } - } - + this.state = 6252; + this.selectFetchFirstValue(); } break; - case 2: + } + this.state = 6255; + _la = this.tokenStream.LA(1); + if(!(_la === 320 || _la === 414)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 6259; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.KW_ONLY: { - this.state = 6384; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 72) { - { - this.state = 6383; - this.match(PostgreSqlParser.KW_LATERAL); - } + this.state = 6256; + this.match(PostgreSqlParser.KW_ONLY); } - - this.state = 6386; - this.expressionTable(); + break; + case PostgreSqlParser.KW_WITH: + { + this.state = 6257; + this.match(PostgreSqlParser.KW_WITH); + this.state = 6258; + this.match(PostgreSqlParser.KW_TIES); } break; - case 3: + default: + throw new antlr.NoViableAltException(this); + } + } + } + } + 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 offsetClause(): OffsetClauseContext { + let localContext = new OffsetClauseContext(this.context, this.state); + this.enterRule(localContext, 590, PostgreSqlParser.RULE_offsetClause); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 6261; + this.match(PostgreSqlParser.KW_OFFSET); + this.state = 6266; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 828, this.context) ) { + case 1: { - this.state = 6387; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6388; - this.tableRef(); - this.state = 6405; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.KW_CROSS: - { - this.state = 6389; - this.match(PostgreSqlParser.KW_CROSS); - this.state = 6390; - this.match(PostgreSqlParser.KW_JOIN); - this.state = 6391; - this.tableRef(); - } - break; - case PostgreSqlParser.KW_NATURAL: - { - this.state = 6392; - this.match(PostgreSqlParser.KW_NATURAL); - this.state = 6394; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 8261) !== 0)) { - { - this.state = 6393; - this.joinType(); - } - } - - this.state = 6396; - this.match(PostgreSqlParser.KW_JOIN); - this.state = 6397; - this.tableRef(); - } - break; - case PostgreSqlParser.KW_FULL: - case PostgreSqlParser.KW_INNER: - case PostgreSqlParser.KW_JOIN: - case PostgreSqlParser.KW_LEFT: - case PostgreSqlParser.KW_RIGHT: - { - this.state = 6399; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 8261) !== 0)) { - { - this.state = 6398; - this.joinType(); - } - } - - this.state = 6401; - this.match(PostgreSqlParser.KW_JOIN); - this.state = 6402; - this.tableRef(); - this.state = 6403; - this.joinQual(); - } - break; - case PostgreSqlParser.CLOSE_PAREN: - break; - default: - break; + this.state = 6262; + this.selectFetchFirstValue(); + this.state = 6263; + _la = this.tokenStream.LA(1); + if(!(_la === 320 || _la === 414)) { + this.errorHandler.recoverInline(this); } - this.state = 6407; - this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 6409; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 855, this.context) ) { - case 1: - { - this.state = 6408; - this.aliasClause(); - } - break; + else { + this.errorHandler.reportMatch(this); + this.consume(); } } break; - } - this.state = 6431; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 860, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - { - this.state = 6429; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.KW_CROSS: - { - this.state = 6413; - this.match(PostgreSqlParser.KW_CROSS); - this.state = 6414; - this.match(PostgreSqlParser.KW_JOIN); - this.state = 6415; - this.tableRef(); - } - break; - case PostgreSqlParser.KW_NATURAL: - { - this.state = 6416; - this.match(PostgreSqlParser.KW_NATURAL); - this.state = 6418; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 8261) !== 0)) { - { - this.state = 6417; - this.joinType(); - } - } - - this.state = 6420; - this.match(PostgreSqlParser.KW_JOIN); - this.state = 6421; - this.tableRef(); - } - break; - case PostgreSqlParser.KW_FULL: - case PostgreSqlParser.KW_INNER: - case PostgreSqlParser.KW_JOIN: - case PostgreSqlParser.KW_LEFT: - case PostgreSqlParser.KW_RIGHT: - { - this.state = 6423; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 8261) !== 0)) { - { - this.state = 6422; - this.joinType(); - } - } - - this.state = 6425; - this.match(PostgreSqlParser.KW_JOIN); - this.state = 6426; - this.tableRef(); - this.state = 6427; - this.joinQual(); - } - break; - default: - throw new antlr.NoViableAltException(this); - } - } + case 2: + { + this.state = 6265; + this.expression(); } - this.state = 6433; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 860, this.context); + break; } } } @@ -36272,62 +37961,42 @@ export class PostgreSqlParser extends SQLParserBase { } return localContext; } - public expressionTable(): ExpressionTableContext { - let localContext = new ExpressionTableContext(this.context, this.state); - this.enterRule(localContext, 610, PostgreSqlParser.RULE_expressionTable); + public selectFetchFirstValue(): SelectFetchFirstValueContext { + let localContext = new SelectFetchFirstValueContext(this.context, this.state); + this.enterRule(localContext, 592, PostgreSqlParser.RULE_selectFetchFirstValue); + let _la: number; try { - this.state = 6446; + this.state = 6271; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 864, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 829, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6434; - this.xmlTable(); - this.state = 6436; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 861, this.context) ) { - case 1: - { - this.state = 6435; - this.aliasClause(); - } - break; + this.state = 6268; + _la = this.tokenStream.LA(1); + if(!(_la === 12 || _la === 13)) { + this.errorHandler.recoverInline(this); } + else { + this.errorHandler.reportMatch(this); + this.consume(); } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 6438; - this.funcTable(); - this.state = 6440; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 862, this.context) ) { - case 1: - { - this.state = 6439; - this.funcAliasClause(); - } - break; + this.state = 6269; + _la = this.tokenStream.LA(1); + if(!(_la === 574 || _la === 576)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); } } break; - case 3: - this.enterOuterAlt(localContext, 3); + case 2: + this.enterOuterAlt(localContext, 2); { - this.state = 6442; - this.selectWithParens(); - this.state = 6444; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 863, this.context) ) { - case 1: - { - this.state = 6443; - this.aliasClause(); - } - break; - } + this.state = 6270; + this.primaryExpression(0); } break; } @@ -36346,38 +38015,78 @@ export class PostgreSqlParser extends SQLParserBase { } return localContext; } - public aliasClause(): AliasClauseContext { - let localContext = new AliasClauseContext(this.context, this.state); - this.enterRule(localContext, 612, PostgreSqlParser.RULE_aliasClause); + public groupClause(): GroupClauseContext { + let localContext = new GroupClauseContext(this.context, this.state); + this.enterRule(localContext, 594, PostgreSqlParser.RULE_groupClause); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6449; + this.state = 6273; + this.match(PostgreSqlParser.KW_GROUP); + this.state = 6274; + this.match(PostgreSqlParser.KW_BY); + this.state = 6276; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 36) { + if (_la === 30 || _la === 56) { { - this.state = 6448; - this.match(PostgreSqlParser.KW_AS); + this.state = 6275; + _la = this.tokenStream.LA(1); + if(!(_la === 30 || _la === 56)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } } } - this.state = 6451; - localContext._alias = this.colId(); - this.state = 6456; + this.state = 6278; + this.groupByList(); + } + } + 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 groupByList(): GroupByListContext { + let localContext = new GroupByListContext(this.context, this.state); + this.enterRule(localContext, 596, PostgreSqlParser.RULE_groupByList); + try { + let alternative: number; + this.enterOuterAlt(localContext, 1); + { + this.state = 6280; + this.groupByItem(); + this.state = 6285; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 866, this.context) ) { - case 1: - { - this.state = 6452; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6453; - this.nameList(); - this.state = 6454; - this.match(PostgreSqlParser.CLOSE_PAREN); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 831, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 6281; + this.match(PostgreSqlParser.COMMA); + this.state = 6282; + this.groupByItem(); + } + } } - break; + this.state = 6287; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 831, this.context); } } } @@ -36395,450 +38104,88 @@ export class PostgreSqlParser extends SQLParserBase { } return localContext; } - public funcAliasClause(): FuncAliasClauseContext { - let localContext = new FuncAliasClauseContext(this.context, this.state); - this.enterRule(localContext, 614, PostgreSqlParser.RULE_funcAliasClause); + public groupByItem(): GroupByItemContext { + let localContext = new GroupByItemContext(this.context, this.state); + this.enterRule(localContext, 598, PostgreSqlParser.RULE_groupByItem); let _la: number; try { - this.state = 6470; + this.state = 6311; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 869, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 834, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6458; - this.aliasClause(); + this.state = 6288; + this.columnExprNoParen(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6464; + this.state = 6289; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 6290; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 6292; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.KW_AS: + _la = this.tokenStream.LA(1); + if (_la === 468 || _la === 469) { { - this.state = 6459; - this.match(PostgreSqlParser.KW_AS); - this.state = 6461; - this.errorHandler.sync(this); + this.state = 6291; _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)) & 3221570659) !== 0) || _la === 586) { - { - this.state = 6460; - localContext._alias = this.colId(); - } + if(!(_la === 468 || _la === 469)) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); } + } + } + this.state = 6294; + this.match(PostgreSqlParser.OPEN_PAREN); + { + this.state = 6295; + this.columnExprNoParen(); + this.state = 6300; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 6) { + { + { + this.state = 6296; + this.match(PostgreSqlParser.COMMA); + this.state = 6297; + this.columnExprNoParen(); } - break; - case PostgreSqlParser.KW_DEFAULT: - case PostgreSqlParser.KW_IS: - case PostgreSqlParser.KW_OUTER: - case PostgreSqlParser.KW_OVER: - case PostgreSqlParser.KW_ABORT: - case PostgreSqlParser.KW_ABSOLUTE: - case PostgreSqlParser.KW_ACCESS: - case PostgreSqlParser.KW_ACTION: - case PostgreSqlParser.KW_ADD: - case PostgreSqlParser.KW_ADMIN: - case PostgreSqlParser.KW_AFTER: - case PostgreSqlParser.KW_AGGREGATE: - case PostgreSqlParser.KW_ALSO: - case PostgreSqlParser.KW_ALTER: - case PostgreSqlParser.KW_ALWAYS: - case PostgreSqlParser.KW_ASSERTION: - case PostgreSqlParser.KW_ASSIGNMENT: - case PostgreSqlParser.KW_AT: - case PostgreSqlParser.KW_ATTRIBUTE: - case PostgreSqlParser.KW_BACKWARD: - case PostgreSqlParser.KW_BEFORE: - case PostgreSqlParser.KW_BEGIN: - case PostgreSqlParser.KW_BY: - case PostgreSqlParser.KW_CACHE: - case PostgreSqlParser.KW_CALLED: - case PostgreSqlParser.KW_CASCADE: - case PostgreSqlParser.KW_CASCADED: - case PostgreSqlParser.KW_CATALOG: - case PostgreSqlParser.KW_CHAIN: - case PostgreSqlParser.KW_CHARACTERISTICS: - case PostgreSqlParser.KW_CHECKPOINT: - case PostgreSqlParser.KW_CLASS: - case PostgreSqlParser.KW_CLOSE: - case PostgreSqlParser.KW_CLUSTER: - case PostgreSqlParser.KW_COMMENT: - case PostgreSqlParser.KW_COMMENTS: - case PostgreSqlParser.KW_COMMIT: - case PostgreSqlParser.KW_COMMITTED: - case PostgreSqlParser.KW_CONFIGURATION: - case PostgreSqlParser.KW_CONNECTION: - case PostgreSqlParser.KW_CONSTRAINTS: - case PostgreSqlParser.KW_CONTENT: - case PostgreSqlParser.KW_CONTINUE: - case PostgreSqlParser.KW_CONVERSION: - case PostgreSqlParser.KW_COPY: - case PostgreSqlParser.KW_COST: - case PostgreSqlParser.KW_CSV: - case PostgreSqlParser.KW_CURSOR: - case PostgreSqlParser.KW_CYCLE: - case PostgreSqlParser.KW_DATA: - case PostgreSqlParser.KW_DATABASE: - case PostgreSqlParser.KW_DAY: - case PostgreSqlParser.KW_DEALLOCATE: - case PostgreSqlParser.KW_DECLARE: - case PostgreSqlParser.KW_DEFAULTS: - case PostgreSqlParser.KW_DEFERRED: - case PostgreSqlParser.KW_DEFINER: - case PostgreSqlParser.KW_DELETE: - case PostgreSqlParser.KW_DELIMITER: - case PostgreSqlParser.KW_DELIMITERS: - case PostgreSqlParser.KW_DICTIONARY: - case PostgreSqlParser.KW_DISABLE: - case PostgreSqlParser.KW_DISCARD: - case PostgreSqlParser.KW_DOCUMENT: - case PostgreSqlParser.KW_DOMAIN: - case PostgreSqlParser.KW_DOUBLE: - case PostgreSqlParser.KW_DROP: - case PostgreSqlParser.KW_EACH: - case PostgreSqlParser.KW_ENABLE: - case PostgreSqlParser.KW_ENCODING: - case PostgreSqlParser.KW_ENCRYPTED: - case PostgreSqlParser.KW_ENUM: - case PostgreSqlParser.KW_ESCAPE: - case PostgreSqlParser.KW_EVENT: - case PostgreSqlParser.KW_EXCLUDE: - case PostgreSqlParser.KW_EXCLUDING: - case PostgreSqlParser.KW_EXCLUSIVE: - case PostgreSqlParser.KW_EXECUTE: - case PostgreSqlParser.KW_EXPLAIN: - case PostgreSqlParser.KW_EXTENSION: - case PostgreSqlParser.KW_EXTERNAL: - case PostgreSqlParser.KW_FAMILY: - case PostgreSqlParser.KW_FIRST: - case PostgreSqlParser.KW_FOLLOWING: - case PostgreSqlParser.KW_FORCE: - case PostgreSqlParser.KW_FORWARD: - case PostgreSqlParser.KW_FUNCTION: - case PostgreSqlParser.KW_FUNCTIONS: - case PostgreSqlParser.KW_GLOBAL: - case PostgreSqlParser.KW_GRANTED: - case PostgreSqlParser.KW_HANDLER: - case PostgreSqlParser.KW_HEADER: - case PostgreSqlParser.KW_HOLD: - case PostgreSqlParser.KW_HOUR: - case PostgreSqlParser.KW_IDENTITY: - case PostgreSqlParser.KW_IF: - case PostgreSqlParser.KW_IMMEDIATE: - case PostgreSqlParser.KW_IMMUTABLE: - case PostgreSqlParser.KW_IMPLICIT: - case PostgreSqlParser.KW_INCLUDING: - case PostgreSqlParser.KW_INCREMENT: - case PostgreSqlParser.KW_INDEX: - case PostgreSqlParser.KW_INDEXES: - case PostgreSqlParser.KW_INHERIT: - case PostgreSqlParser.KW_INHERITS: - case PostgreSqlParser.KW_INLINE: - case PostgreSqlParser.KW_INSENSITIVE: - case PostgreSqlParser.KW_INSERT: - case PostgreSqlParser.KW_INSTEAD: - case PostgreSqlParser.KW_INVOKER: - case PostgreSqlParser.KW_ISOLATION: - case PostgreSqlParser.KW_KEY: - case PostgreSqlParser.KW_LABEL: - case PostgreSqlParser.KW_LANGUAGE: - case PostgreSqlParser.KW_LARGE: - case PostgreSqlParser.KW_LAST: - case PostgreSqlParser.KW_LEAKPROOF: - case PostgreSqlParser.KW_LEVEL: - case PostgreSqlParser.KW_LISTEN: - case PostgreSqlParser.KW_LOAD: - case PostgreSqlParser.KW_LOCAL: - case PostgreSqlParser.KW_LOCATION: - case PostgreSqlParser.KW_LOCK: - case PostgreSqlParser.KW_MAPPING: - case PostgreSqlParser.KW_MATCH: - case PostgreSqlParser.KW_MATERIALIZED: - case PostgreSqlParser.KW_MAXVALUE: - case PostgreSqlParser.KW_MINUTE: - case PostgreSqlParser.KW_MINVALUE: - case PostgreSqlParser.KW_MODE: - case PostgreSqlParser.KW_MONTH: - case PostgreSqlParser.KW_MOVE: - case PostgreSqlParser.KW_NAME: - case PostgreSqlParser.KW_NAMES: - case PostgreSqlParser.KW_NEXT: - case PostgreSqlParser.KW_NO: - case PostgreSqlParser.KW_NOTHING: - case PostgreSqlParser.KW_NOTIFY: - case PostgreSqlParser.KW_NOWAIT: - case PostgreSqlParser.KW_NULLS: - case PostgreSqlParser.KW_OBJECT: - case PostgreSqlParser.KW_OF: - case PostgreSqlParser.KW_OFF: - case PostgreSqlParser.KW_OIDS: - case PostgreSqlParser.KW_OPERATOR: - case PostgreSqlParser.KW_OPTION: - case PostgreSqlParser.KW_OPTIONS: - case PostgreSqlParser.KW_OWNED: - case PostgreSqlParser.KW_OWNER: - case PostgreSqlParser.KW_PARSER: - case PostgreSqlParser.KW_PARTIAL: - case PostgreSqlParser.KW_PARTITION: - case PostgreSqlParser.KW_PASSING: - case PostgreSqlParser.KW_PASSWORD: - case PostgreSqlParser.KW_PLANS: - case PostgreSqlParser.KW_PRECEDING: - case PostgreSqlParser.KW_PREPARE: - case PostgreSqlParser.KW_PREPARED: - case PostgreSqlParser.KW_PRESERVE: - case PostgreSqlParser.KW_PRIOR: - case PostgreSqlParser.KW_PRIVILEGES: - case PostgreSqlParser.KW_PROCEDURAL: - case PostgreSqlParser.KW_PROCEDURE: - case PostgreSqlParser.KW_PROGRAM: - case PostgreSqlParser.KW_QUOTE: - case PostgreSqlParser.KW_RANGE: - case PostgreSqlParser.KW_READ: - case PostgreSqlParser.KW_REASSIGN: - case PostgreSqlParser.KW_RECHECK: - case PostgreSqlParser.KW_RECURSIVE: - case PostgreSqlParser.KW_REF: - case PostgreSqlParser.KW_REFRESH: - case PostgreSqlParser.KW_REINDEX: - case PostgreSqlParser.KW_RELATIVE: - case PostgreSqlParser.KW_RELEASE: - case PostgreSqlParser.KW_RENAME: - case PostgreSqlParser.KW_REPEATABLE: - case PostgreSqlParser.KW_REPLACE: - case PostgreSqlParser.KW_REPLICA: - case PostgreSqlParser.KW_RESET: - case PostgreSqlParser.KW_RESTART: - case PostgreSqlParser.KW_RESTRICT: - case PostgreSqlParser.KW_RETURNS: - case PostgreSqlParser.KW_REVOKE: - case PostgreSqlParser.KW_ROLE: - case PostgreSqlParser.KW_ROLLBACK: - case PostgreSqlParser.KW_ROWS: - case PostgreSqlParser.KW_RULE: - case PostgreSqlParser.KW_SAVEPOINT: - case PostgreSqlParser.KW_SCHEMA: - case PostgreSqlParser.KW_SCROLL: - case PostgreSqlParser.KW_SEARCH: - case PostgreSqlParser.KW_SECOND: - case PostgreSqlParser.KW_SECURITY: - case PostgreSqlParser.KW_SEQUENCE: - case PostgreSqlParser.KW_SEQUENCES: - case PostgreSqlParser.KW_SERIALIZABLE: - case PostgreSqlParser.KW_SERVER: - case PostgreSqlParser.KW_SESSION: - case PostgreSqlParser.KW_SET: - case PostgreSqlParser.KW_SHARE: - case PostgreSqlParser.KW_SHOW: - case PostgreSqlParser.KW_SIMPLE: - case PostgreSqlParser.KW_SNAPSHOT: - case PostgreSqlParser.KW_STABLE: - case PostgreSqlParser.KW_STANDALONE: - case PostgreSqlParser.KW_START: - case PostgreSqlParser.KW_STATEMENT: - case PostgreSqlParser.KW_STATISTICS: - case PostgreSqlParser.KW_STDIN: - case PostgreSqlParser.KW_STDOUT: - case PostgreSqlParser.KW_STORAGE: - case PostgreSqlParser.KW_STRICT: - case PostgreSqlParser.KW_STRIP: - case PostgreSqlParser.KW_SYSID: - case PostgreSqlParser.KW_SYSTEM: - case PostgreSqlParser.KW_TABLES: - case PostgreSqlParser.KW_TABLESPACE: - case PostgreSqlParser.KW_TEMP: - case PostgreSqlParser.KW_TEMPLATE: - case PostgreSqlParser.KW_TEMPORARY: - case PostgreSqlParser.KW_TEXT: - case PostgreSqlParser.KW_TRANSACTION: - case PostgreSqlParser.KW_TRIGGER: - case PostgreSqlParser.KW_TRUNCATE: - case PostgreSqlParser.KW_TRUSTED: - case PostgreSqlParser.KW_TYPE: - case PostgreSqlParser.KW_TYPES: - case PostgreSqlParser.KW_UNBOUNDED: - case PostgreSqlParser.KW_UNCOMMITTED: - case PostgreSqlParser.KW_UNENCRYPTED: - case PostgreSqlParser.KW_UNKNOWN: - case PostgreSqlParser.KW_UNLISTEN: - case PostgreSqlParser.KW_UNLOGGED: - case PostgreSqlParser.KW_UNTIL: - case PostgreSqlParser.KW_UPDATE: - case PostgreSqlParser.KW_VACUUM: - case PostgreSqlParser.KW_VALID: - case PostgreSqlParser.KW_VALIDATE: - case PostgreSqlParser.KW_VALIDATOR: - case PostgreSqlParser.KW_VARYING: - case PostgreSqlParser.KW_VERSION: - case PostgreSqlParser.KW_VIEW: - case PostgreSqlParser.KW_VOLATILE: - case PostgreSqlParser.KW_WHITESPACE: - case PostgreSqlParser.KW_WITHOUT: - case PostgreSqlParser.KW_WORK: - case PostgreSqlParser.KW_WRAPPER: - case PostgreSqlParser.KW_WRITE: - case PostgreSqlParser.KW_XML: - case PostgreSqlParser.KW_YEAR: - case PostgreSqlParser.KW_YES: - case PostgreSqlParser.KW_ZONE: - case PostgreSqlParser.KW_BETWEEN: - case PostgreSqlParser.KW_BIGINT: - case PostgreSqlParser.KW_BIT: - case PostgreSqlParser.KW_BOOLEAN: - case PostgreSqlParser.KW_CHAR: - case PostgreSqlParser.KW_CHARACTER: - case PostgreSqlParser.KW_COALESCE: - case PostgreSqlParser.KW_DEC: - case PostgreSqlParser.KW_DECIMAL: - case PostgreSqlParser.KW_EXISTS: - case PostgreSqlParser.KW_EXTRACT: - case PostgreSqlParser.KW_FLOAT: - case PostgreSqlParser.KW_GREATEST: - case PostgreSqlParser.KW_INOUT: - case PostgreSqlParser.KW_INT: - case PostgreSqlParser.KW_INTEGER: - case PostgreSqlParser.KW_INTERVAL: - case PostgreSqlParser.KW_LEAST: - case PostgreSqlParser.KW_NATIONAL: - case PostgreSqlParser.KW_NCHAR: - case PostgreSqlParser.KW_NONE: - case PostgreSqlParser.KW_NULLIF: - case PostgreSqlParser.KW_NUMERIC: - case PostgreSqlParser.KW_OVERLAY: - case PostgreSqlParser.KW_POSITION: - case PostgreSqlParser.KW_PRECISION: - case PostgreSqlParser.KW_REAL: - case PostgreSqlParser.KW_ROW: - case PostgreSqlParser.KW_SETOF: - case PostgreSqlParser.KW_SMALLINT: - case PostgreSqlParser.KW_SUBSTRING: - case PostgreSqlParser.KW_TIME: - case PostgreSqlParser.KW_TIMESTAMP: - case PostgreSqlParser.KW_TREAT: - case PostgreSqlParser.KW_TRIM: - case PostgreSqlParser.KW_VALUES: - case PostgreSqlParser.KW_VARCHAR: - case PostgreSqlParser.KW_XMLATTRIBUTES: - case PostgreSqlParser.KW_XMLCONCAT: - case PostgreSqlParser.KW_XMLELEMENT: - case PostgreSqlParser.KW_XMLEXISTS: - case PostgreSqlParser.KW_XMLFOREST: - case PostgreSqlParser.KW_XMLPARSE: - case PostgreSqlParser.KW_XMLPI: - case PostgreSqlParser.KW_XMLROOT: - case PostgreSqlParser.KW_XMLSERIALIZE: - case PostgreSqlParser.KW_CALL: - case PostgreSqlParser.KW_CURRENT: - case PostgreSqlParser.KW_ATTACH: - case PostgreSqlParser.KW_DETACH: - case PostgreSqlParser.KW_EXPRESSION: - case PostgreSqlParser.KW_GENERATED: - case PostgreSqlParser.KW_LOGGED: - case PostgreSqlParser.KW_STORED: - case PostgreSqlParser.KW_INCLUDE: - case PostgreSqlParser.KW_ROUTINE: - case PostgreSqlParser.KW_TRANSFORM: - case PostgreSqlParser.KW_IMPORT: - case PostgreSqlParser.KW_POLICY: - case PostgreSqlParser.KW_METHOD: - case PostgreSqlParser.KW_REFERENCING: - case PostgreSqlParser.KW_NEW: - case PostgreSqlParser.KW_OLD: - case PostgreSqlParser.KW_VALUE: - case PostgreSqlParser.KW_SUBSCRIPTION: - case PostgreSqlParser.KW_PUBLICATION: - case PostgreSqlParser.KW_OUT: - case PostgreSqlParser.KW_ROUTINES: - case PostgreSqlParser.KW_SCHEMAS: - case PostgreSqlParser.KW_PROCEDURES: - case PostgreSqlParser.KW_INPUT: - case PostgreSqlParser.KW_SUPPORT: - case PostgreSqlParser.KW_PARALLEL: - case PostgreSqlParser.KW_SQL: - case PostgreSqlParser.KW_DEPENDS: - case PostgreSqlParser.KW_OVERRIDING: - case PostgreSqlParser.KW_CONFLICT: - case PostgreSqlParser.KW_SKIP: - case PostgreSqlParser.KW_LOCKED: - case PostgreSqlParser.KW_TIES: - case PostgreSqlParser.KW_ROLLUP: - case PostgreSqlParser.KW_CUBE: - case PostgreSqlParser.KW_GROUPING: - case PostgreSqlParser.KW_SETS: - case PostgreSqlParser.KW_ORDINALITY: - case PostgreSqlParser.KW_XMLTABLE: - case PostgreSqlParser.KW_COLUMNS: - case PostgreSqlParser.KW_XMLNAMESPACES: - case PostgreSqlParser.KW_ROWTYPE: - case PostgreSqlParser.KW_NORMALIZED: - case PostgreSqlParser.KW_WITHIN: - case PostgreSqlParser.KW_FILTER: - case PostgreSqlParser.KW_GROUPS: - case PostgreSqlParser.KW_OTHERS: - case PostgreSqlParser.KW_NFC: - case PostgreSqlParser.KW_NFD: - case PostgreSqlParser.KW_NFKC: - case PostgreSqlParser.KW_NFKD: - case PostgreSqlParser.KW_UESCAPE: - case PostgreSqlParser.KW_VIEWS: - case PostgreSqlParser.KW_NORMALIZE: - case PostgreSqlParser.KW_DUMP: - case PostgreSqlParser.KW_PRINT_STRICT_PARAMS: - case PostgreSqlParser.KW_VARIABLE_CONFLICT: - case PostgreSqlParser.KW_ERROR: - case PostgreSqlParser.KW_USE_VARIABLE: - case PostgreSqlParser.KW_USE_COLUMN: - case PostgreSqlParser.KW_ALIAS: - case PostgreSqlParser.KW_CONSTANT: - case PostgreSqlParser.KW_PERFORM: - case PostgreSqlParser.KW_GET: - case PostgreSqlParser.KW_DIAGNOSTICS: - case PostgreSqlParser.KW_STACKED: - case PostgreSqlParser.KW_ELSIF: - case PostgreSqlParser.KW_REVERSE: - case PostgreSqlParser.KW_SLICE: - case PostgreSqlParser.KW_EXIT: - case PostgreSqlParser.KW_RETURN: - case PostgreSqlParser.KW_QUERY: - case PostgreSqlParser.KW_RAISE: - case PostgreSqlParser.KW_SQLSTATE: - case PostgreSqlParser.KW_DEBUG: - case PostgreSqlParser.KW_LOG: - case PostgreSqlParser.KW_INFO: - case PostgreSqlParser.KW_NOTICE: - case PostgreSqlParser.KW_WARNING: - case PostgreSqlParser.KW_EXCEPTION: - case PostgreSqlParser.KW_ASSERT: - case PostgreSqlParser.KW_OPEN: - case PostgreSqlParser.KW_PUBLIC: - case PostgreSqlParser.KW_SKIP_LOCKED: - case PostgreSqlParser.KW_BUFFER_USAGE_LIMIT: - case PostgreSqlParser.Identifier: - case PostgreSqlParser.QuotedIdentifier: - case PostgreSqlParser.UnicodeQuotedIdentifier: - case PostgreSqlParser.StringConstant: - case PostgreSqlParser.UnicodeEscapeStringConstant: - case PostgreSqlParser.BeginDollarStringConstant: - case PostgreSqlParser.PLSQLVARIABLENAME: - case PostgreSqlParser.PLSQLIDENTIFIER: - case PostgreSqlParser.EscapeStringConstant: - { - this.state = 6463; - localContext._alias = this.colId(); } - break; - default: - throw new antlr.NoViableAltException(this); + this.state = 6302; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); } - this.state = 6466; + } + this.state = 6303; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + break; + case 4: + this.enterOuterAlt(localContext, 4); + { + this.state = 6305; + this.match(PostgreSqlParser.KW_GROUPING); + this.state = 6306; + this.match(PostgreSqlParser.KW_SETS); + this.state = 6307; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6467; - this.tableFuncElementList(); - this.state = 6468; + this.state = 6308; + this.groupByList(); + this.state = 6309; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -36858,32 +38205,116 @@ export class PostgreSqlParser extends SQLParserBase { } return localContext; } - public joinType(): JoinTypeContext { - let localContext = new JoinTypeContext(this.context, this.state); - this.enterRule(localContext, 616, PostgreSqlParser.RULE_joinType); + public forLockingClause(): ForLockingClauseContext { + let localContext = new ForLockingClauseContext(this.context, this.state); + this.enterRule(localContext, 600, PostgreSqlParser.RULE_forLockingClause); let _la: number; try { - this.enterOuterAlt(localContext, 1); - { - this.state = 6472; - _la = this.tokenStream.LA(1); - if(!(((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 8261) !== 0))) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 6474; + this.state = 6341; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 123) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 841, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); { - this.state = 6473; - this.match(PostgreSqlParser.KW_OUTER); - } - } + this.state = 6334; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + do { + { + { + this.state = 6313; + this.match(PostgreSqlParser.KW_FOR); + this.state = 6323; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.KW_NO: + case PostgreSqlParser.KW_UPDATE: + { + this.state = 6316; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 269) { + { + this.state = 6314; + this.match(PostgreSqlParser.KW_NO); + this.state = 6315; + this.match(PostgreSqlParser.KW_KEY); + } + } + + this.state = 6318; + this.match(PostgreSqlParser.KW_UPDATE); + } + break; + case PostgreSqlParser.KW_KEY: + case PostgreSqlParser.KW_SHARE: + { + this.state = 6320; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 245) { + { + this.state = 6319; + this.match(PostgreSqlParser.KW_KEY); + } + } + this.state = 6322; + this.match(PostgreSqlParser.KW_SHARE); + } + break; + default: + throw new antlr.NoViableAltException(this); + } + this.state = 6327; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 838, this.context) ) { + case 1: + { + this.state = 6325; + this.match(PostgreSqlParser.KW_OF); + this.state = 6326; + this.qualifiedNameList(); + } + break; + } + this.state = 6332; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 839, this.context) ) { + case 1: + { + this.state = 6329; + this.match(PostgreSqlParser.KW_NOWAIT); + } + break; + case 2: + { + this.state = 6330; + this.match(PostgreSqlParser.KW_SKIP); + this.state = 6331; + this.match(PostgreSqlParser.KW_LOCKED); + } + break; + } + } + } + this.state = 6336; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } while (_la === 62); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 6338; + this.match(PostgreSqlParser.KW_FOR); + this.state = 6339; + this.match(PostgreSqlParser.KW_READ); + this.state = 6340; + this.match(PostgreSqlParser.KW_ONLY); + } + break; } } catch (re) { @@ -36900,33 +38331,33 @@ export class PostgreSqlParser extends SQLParserBase { } return localContext; } - public joinQual(): JoinQualContext { - let localContext = new JoinQualContext(this.context, this.state); - this.enterRule(localContext, 618, PostgreSqlParser.RULE_joinQual); + public valuesClause(): ValuesClauseContext { + let localContext = new ValuesClauseContext(this.context, this.state); + this.enterRule(localContext, 602, PostgreSqlParser.RULE_valuesClause); + let _la: number; try { - this.state = 6480; + this.enterOuterAlt(localContext, 1); + { + this.state = 6343; + this.match(PostgreSqlParser.KW_VALUES); + this.state = 6344; + this.executeParamClause(); + this.state = 6349; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.KW_USING: - this.enterOuterAlt(localContext, 1); + _la = this.tokenStream.LA(1); + while (_la === 6) { { - this.state = 6476; - this.match(PostgreSqlParser.KW_USING); - this.state = 6477; - this.optColumnList(); - } - break; - case PostgreSqlParser.KW_ON: - this.enterOuterAlt(localContext, 2); { - this.state = 6478; - this.match(PostgreSqlParser.KW_ON); - this.state = 6479; - this.expression(); + this.state = 6345; + this.match(PostgreSqlParser.COMMA); + this.state = 6346; + this.executeParamClause(); } - break; - default: - throw new antlr.NoViableAltException(this); + } + this.state = 6351; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } } } catch (re) { @@ -36943,28 +38374,515 @@ export class PostgreSqlParser extends SQLParserBase { } return localContext; } - public relationExpr(): RelationExprContext { - let localContext = new RelationExprContext(this.context, this.state); - this.enterRule(localContext, 620, PostgreSqlParser.RULE_relationExpr); + public fromClause(): FromClauseContext { + let localContext = new FromClauseContext(this.context, this.state); + this.enterRule(localContext, 604, PostgreSqlParser.RULE_fromClause); try { - this.state = 6497; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 874, this.context) ) { + this.enterOuterAlt(localContext, 1); + { + this.state = 6352; + this.match(PostgreSqlParser.KW_FROM); + this.state = 6353; + this.fromList(); + } + } + 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 fromList(): FromListContext { + let localContext = new FromListContext(this.context, this.state); + this.enterRule(localContext, 606, PostgreSqlParser.RULE_fromList); + try { + let alternative: number; + this.enterOuterAlt(localContext, 1); + { + this.state = 6355; + this.tableRef(); + this.state = 6360; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 843, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + { + this.state = 6356; + this.match(PostgreSqlParser.COMMA); + this.state = 6357; + this.tableRef(); + } + } + } + this.state = 6362; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 843, this.context); + } + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public tableRef(): TableRefContext { + let localContext = new TableRefContext(this.context, this.state); + this.enterRule(localContext, 608, PostgreSqlParser.RULE_tableRef); + let _la: number; + try { + let alternative: number; + this.enterOuterAlt(localContext, 1); + { + this.state = 6413; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 856, this.context) ) { + case 1: + { + this.state = 6377; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 848, this.context) ) { + case 1: + { + this.state = 6363; + this.relationExpr(); + } + break; + case 2: + { + { + this.state = 6365; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 81) { + { + this.state = 6364; + this.match(PostgreSqlParser.KW_ONLY); + } + } + + this.state = 6367; + this.viewName(); + this.state = 6369; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 9) { + { + this.state = 6368; + this.match(PostgreSqlParser.STAR); + } + } + + this.state = 6372; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 846, this.context) ) { + case 1: + { + this.state = 6371; + this.columnList(); + } + break; + } + this.state = 6375; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 847, this.context) ) { + case 1: + { + this.state = 6374; + this.whereClause(); + } + break; + } + } + } + break; + } + this.state = 6380; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 849, this.context) ) { + case 1: + { + this.state = 6379; + this.aliasClause(); + } + break; + } + this.state = 6383; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 472) { + { + this.state = 6382; + this.tableSampleClause(); + } + } + + } + break; + case 2: + { + this.state = 6386; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 72) { + { + this.state = 6385; + this.match(PostgreSqlParser.KW_LATERAL); + } + } + + this.state = 6388; + this.expressionTable(); + } + break; + case 3: + { + this.state = 6389; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 6390; + this.tableRef(); + this.state = 6407; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.KW_CROSS: + { + this.state = 6391; + this.match(PostgreSqlParser.KW_CROSS); + this.state = 6392; + this.match(PostgreSqlParser.KW_JOIN); + this.state = 6393; + this.tableRef(); + } + break; + case PostgreSqlParser.KW_NATURAL: + { + this.state = 6394; + this.match(PostgreSqlParser.KW_NATURAL); + this.state = 6396; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 8261) !== 0)) { + { + this.state = 6395; + this.joinType(); + } + } + + this.state = 6398; + this.match(PostgreSqlParser.KW_JOIN); + this.state = 6399; + this.tableRef(); + } + break; + case PostgreSqlParser.KW_FULL: + case PostgreSqlParser.KW_INNER: + case PostgreSqlParser.KW_JOIN: + case PostgreSqlParser.KW_LEFT: + case PostgreSqlParser.KW_RIGHT: + { + this.state = 6401; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 8261) !== 0)) { + { + this.state = 6400; + this.joinType(); + } + } + + this.state = 6403; + this.match(PostgreSqlParser.KW_JOIN); + this.state = 6404; + this.tableRef(); + this.state = 6405; + this.joinQual(); + } + break; + case PostgreSqlParser.CLOSE_PAREN: + break; + default: + break; + } + this.state = 6409; + this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 6411; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 855, this.context) ) { + case 1: + { + this.state = 6410; + this.aliasClause(); + } + break; + } + } + break; + } + this.state = 6433; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 860, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + { + this.state = 6431; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.KW_CROSS: + { + this.state = 6415; + this.match(PostgreSqlParser.KW_CROSS); + this.state = 6416; + this.match(PostgreSqlParser.KW_JOIN); + this.state = 6417; + this.tableRef(); + } + break; + case PostgreSqlParser.KW_NATURAL: + { + this.state = 6418; + this.match(PostgreSqlParser.KW_NATURAL); + this.state = 6420; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 8261) !== 0)) { + { + this.state = 6419; + this.joinType(); + } + } + + this.state = 6422; + this.match(PostgreSqlParser.KW_JOIN); + this.state = 6423; + this.tableRef(); + } + break; + case PostgreSqlParser.KW_FULL: + case PostgreSqlParser.KW_INNER: + case PostgreSqlParser.KW_JOIN: + case PostgreSqlParser.KW_LEFT: + case PostgreSqlParser.KW_RIGHT: + { + this.state = 6425; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 8261) !== 0)) { + { + this.state = 6424; + this.joinType(); + } + } + + this.state = 6427; + this.match(PostgreSqlParser.KW_JOIN); + this.state = 6428; + this.tableRef(); + this.state = 6429; + this.joinQual(); + } + break; + default: + throw new antlr.NoViableAltException(this); + } + } + } + this.state = 6435; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 860, this.context); + } + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public expressionTable(): ExpressionTableContext { + let localContext = new ExpressionTableContext(this.context, this.state); + this.enterRule(localContext, 610, PostgreSqlParser.RULE_expressionTable); + try { + this.state = 6448; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 864, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6482; - this.truncateTable(); + this.state = 6436; + this.xmlTable(); + this.state = 6438; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 861, this.context) ) { + case 1: + { + this.state = 6437; + this.aliasClause(); + } + break; + } } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6483; - this.match(PostgreSqlParser.KW_ONLY); - this.state = 6489; + this.state = 6440; + this.funcTable(); + this.state = 6442; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 862, this.context) ) { + case 1: + { + this.state = 6441; + this.funcAliasClause(); + } + break; + } + } + break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 6444; + this.selectWithParens(); + this.state = 6446; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 863, this.context) ) { + case 1: + { + this.state = 6445; + this.aliasClause(); + } + break; + } + } + break; + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public aliasClause(): AliasClauseContext { + let localContext = new AliasClauseContext(this.context, this.state); + this.enterRule(localContext, 612, PostgreSqlParser.RULE_aliasClause); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 6451; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 36) { + { + this.state = 6450; + this.match(PostgreSqlParser.KW_AS); + } + } + + this.state = 6453; + localContext._alias = this.colId(); + this.state = 6458; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 866, this.context) ) { + case 1: + { + this.state = 6454; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 6455; + this.nameList(); + this.state = 6456; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + break; + } + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public funcAliasClause(): FuncAliasClauseContext { + let localContext = new FuncAliasClauseContext(this.context, this.state); + this.enterRule(localContext, 614, PostgreSqlParser.RULE_funcAliasClause); + let _la: number; + try { + this.state = 6472; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 869, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 6460; + this.aliasClause(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 6466; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.KW_AS: + { + this.state = 6461; + this.match(PostgreSqlParser.KW_AS); + this.state = 6463; + 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)) & 3221570659) !== 0) || _la === 586) { + { + this.state = 6462; + localContext._alias = this.colId(); + } + } + + } + break; case PostgreSqlParser.KW_DEFAULT: case PostgreSqlParser.KW_IS: case PostgreSqlParser.KW_OUTER: @@ -37360,45 +39278,154 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 6484; - this.tableName(); - } - break; - case PostgreSqlParser.OPEN_PAREN: - { - this.state = 6485; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6486; - this.tableName(); - this.state = 6487; - this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 6465; + localContext._alias = this.colId(); } break; default: throw new antlr.NoViableAltException(this); } + this.state = 6468; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 6469; + this.tableFuncElementList(); + this.state = 6470; + this.match(PostgreSqlParser.CLOSE_PAREN); } break; - case 3: - this.enterOuterAlt(localContext, 3); + } + } + 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 joinType(): JoinTypeContext { + let localContext = new JoinTypeContext(this.context, this.state); + this.enterRule(localContext, 616, PostgreSqlParser.RULE_joinType); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 6474; + _la = this.tokenStream.LA(1); + if(!(((((_la - 113)) & ~0x1F) === 0 && ((1 << (_la - 113)) & 8261) !== 0))) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 6476; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 123) { { - this.state = 6491; - this.match(PostgreSqlParser.KW_IN); - this.state = 6492; - this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 6495; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.KW_DEFAULT: - case PostgreSqlParser.KW_IS: - case PostgreSqlParser.KW_OUTER: - case PostgreSqlParser.KW_OVER: - case PostgreSqlParser.KW_ABORT: - case PostgreSqlParser.KW_ABSOLUTE: - case PostgreSqlParser.KW_ACCESS: - case PostgreSqlParser.KW_ACTION: - case PostgreSqlParser.KW_ADD: - case PostgreSqlParser.KW_ADMIN: + this.state = 6475; + this.match(PostgreSqlParser.KW_OUTER); + } + } + + } + } + 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 joinQual(): JoinQualContext { + let localContext = new JoinQualContext(this.context, this.state); + this.enterRule(localContext, 618, PostgreSqlParser.RULE_joinQual); + try { + this.state = 6482; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.KW_USING: + this.enterOuterAlt(localContext, 1); + { + this.state = 6478; + this.match(PostgreSqlParser.KW_USING); + this.state = 6479; + this.optColumnList(); + } + break; + case PostgreSqlParser.KW_ON: + this.enterOuterAlt(localContext, 2); + { + this.state = 6480; + this.match(PostgreSqlParser.KW_ON); + this.state = 6481; + this.expression(); + } + break; + default: + throw new antlr.NoViableAltException(this); + } + } + 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 relationExpr(): RelationExprContext { + let localContext = new RelationExprContext(this.context, this.state); + this.enterRule(localContext, 620, PostgreSqlParser.RULE_relationExpr); + try { + this.state = 6499; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 874, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 6484; + this.truncateTable(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 6485; + this.match(PostgreSqlParser.KW_ONLY); + this.state = 6491; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.KW_DEFAULT: + case PostgreSqlParser.KW_IS: + case PostgreSqlParser.KW_OUTER: + case PostgreSqlParser.KW_OVER: + case PostgreSqlParser.KW_ABORT: + case PostgreSqlParser.KW_ABSOLUTE: + case PostgreSqlParser.KW_ACCESS: + case PostgreSqlParser.KW_ACTION: + case PostgreSqlParser.KW_ADD: + case PostgreSqlParser.KW_ADMIN: case PostgreSqlParser.KW_AFTER: case PostgreSqlParser.KW_AGGREGATE: case PostgreSqlParser.KW_ALSO: @@ -37784,14 +39811,18 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 6493; - this.schemaName(); + this.state = 6486; + this.tableName(); } break; - case PostgreSqlParser.KW_CURRENT_SCHEMA: + case PostgreSqlParser.OPEN_PAREN: { - this.state = 6494; - this.match(PostgreSqlParser.KW_CURRENT_SCHEMA); + this.state = 6487; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 6488; + this.tableName(); + this.state = 6489; + this.match(PostgreSqlParser.CLOSE_PAREN); } break; default: @@ -37799,67 +39830,14 @@ export class PostgreSqlParser extends SQLParserBase { } } break; - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public publicationRelationExpr(): PublicationRelationExprContext { - let localContext = new PublicationRelationExprContext(this.context, this.state); - this.enterRule(localContext, 622, PostgreSqlParser.RULE_publicationRelationExpr); - let _la: number; - try { - this.state = 6523; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 879, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 6499; - this.match(PostgreSqlParser.KW_TABLE); - this.state = 6500; - this.truncateTable(); - this.state = 6502; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 875, this.context) ) { - case 1: - { - this.state = 6501; - this.optColumnList(); - } - break; - } - this.state = 6505; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 103) { - { - this.state = 6504; - this.whereClause(); - } - } - - } - break; - case 2: - this.enterOuterAlt(localContext, 2); + case 3: + this.enterOuterAlt(localContext, 3); { - this.state = 6507; - this.match(PostgreSqlParser.KW_TABLE); - this.state = 6508; - this.match(PostgreSqlParser.KW_ONLY); - this.state = 6514; + this.state = 6493; + this.match(PostgreSqlParser.KW_IN); + this.state = 6494; + this.match(PostgreSqlParser.KW_SCHEMA); + this.state = 6497; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -38257,18 +40235,14 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 6509; - this.tableName(); + this.state = 6495; + this.schemaName(); } break; - case PostgreSqlParser.OPEN_PAREN: + case PostgreSqlParser.KW_CURRENT_SCHEMA: { - this.state = 6510; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6511; - this.tableName(); - this.state = 6512; - this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 6496; + this.match(PostgreSqlParser.KW_CURRENT_SCHEMA); } break; default: @@ -38276,16 +40250,67 @@ export class PostgreSqlParser extends SQLParserBase { } } break; - case 3: - this.enterOuterAlt(localContext, 3); + } + } + 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 publicationRelationExpr(): PublicationRelationExprContext { + let localContext = new PublicationRelationExprContext(this.context, this.state); + this.enterRule(localContext, 622, PostgreSqlParser.RULE_publicationRelationExpr); + let _la: number; + try { + this.state = 6525; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 879, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 6501; + this.match(PostgreSqlParser.KW_TABLE); + this.state = 6502; + this.truncateTable(); + this.state = 6504; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 875, this.context) ) { + case 1: + { + this.state = 6503; + this.optColumnList(); + } + break; + } + this.state = 6507; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 103) { + { + this.state = 6506; + this.whereClause(); + } + } + + } + break; + case 2: + this.enterOuterAlt(localContext, 2); { + this.state = 6509; + this.match(PostgreSqlParser.KW_TABLE); + this.state = 6510; + this.match(PostgreSqlParser.KW_ONLY); this.state = 6516; - this.match(PostgreSqlParser.KW_TABLES); - this.state = 6517; - this.match(PostgreSqlParser.KW_IN); - this.state = 6518; - this.match(PostgreSqlParser.KW_SCHEMA); - this.state = 6521; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -38683,14 +40708,18 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 6519; - this.schemaName(); + this.state = 6511; + this.tableName(); } break; - case PostgreSqlParser.KW_CURRENT_SCHEMA: + case PostgreSqlParser.OPEN_PAREN: { - this.state = 6520; - this.match(PostgreSqlParser.KW_CURRENT_SCHEMA); + this.state = 6512; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 6513; + this.tableName(); + this.state = 6514; + this.match(PostgreSqlParser.CLOSE_PAREN); } break; default: @@ -38698,325 +40727,429 @@ export class PostgreSqlParser extends SQLParserBase { } } break; - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public relationExprList(): RelationExprListContext { - let localContext = new RelationExprListContext(this.context, this.state); - this.enterRule(localContext, 624, PostgreSqlParser.RULE_relationExprList); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 6525; - this.relationExpr(); - this.state = 6530; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 6) { - { - { - this.state = 6526; - this.match(PostgreSqlParser.COMMA); - this.state = 6527; - this.relationExpr(); - } - } - this.state = 6532; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } - } - } - 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 relationExprOptAlias(): RelationExprOptAliasContext { - let localContext = new RelationExprOptAliasContext(this.context, this.state); - this.enterRule(localContext, 626, PostgreSqlParser.RULE_relationExprOptAlias); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 6533; - this.relationExpr(); - this.state = 6538; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 882, this.context) ) { - case 1: - { - this.state = 6535; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 36) { - { - this.state = 6534; - this.match(PostgreSqlParser.KW_AS); - } - } - - this.state = 6537; - this.colId(); - } - break; - } - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public tableSampleClause(): TableSampleClauseContext { - let localContext = new TableSampleClauseContext(this.context, this.state); - this.enterRule(localContext, 628, PostgreSqlParser.RULE_tableSampleClause); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 6540; - this.match(PostgreSqlParser.KW_TABLESAMPLE); - this.state = 6541; - this.functionName(); - this.state = 6542; - this.executeParamClause(); - this.state = 6548; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 883, this.context) ) { - case 1: - { - this.state = 6543; - this.match(PostgreSqlParser.KW_REPEATABLE); - this.state = 6544; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6545; - this.expression(); - this.state = 6546; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - break; - } - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public funcTable(): FuncTableContext { - let localContext = new FuncTableContext(this.context, this.state); - this.enterRule(localContext, 630, PostgreSqlParser.RULE_funcTable); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 6564; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 885, this.context) ) { - case 1: - { - this.state = 6550; - this.funcExprWindowless(); - } - break; - case 2: - { + case 3: + this.enterOuterAlt(localContext, 3); { - this.state = 6551; - this.match(PostgreSqlParser.KW_ROWS); - this.state = 6552; - this.match(PostgreSqlParser.KW_FROM); - this.state = 6553; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6554; - this.rowsFromItem(); - this.state = 6559; + this.state = 6518; + this.match(PostgreSqlParser.KW_TABLES); + this.state = 6519; + this.match(PostgreSqlParser.KW_IN); + this.state = 6520; + this.match(PostgreSqlParser.KW_SCHEMA); + this.state = 6523; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 6) { - { - { - this.state = 6555; - this.match(PostgreSqlParser.COMMA); - this.state = 6556; - this.rowsFromItem(); - } - } - this.state = 6561; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } - this.state = 6562; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - } - break; - } - this.state = 6568; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 886, this.context) ) { - case 1: - { - this.state = 6566; - this.match(PostgreSqlParser.KW_WITH); - this.state = 6567; - this.match(PostgreSqlParser.KW_ORDINALITY); - } - break; - } - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public rowsFromItem(): RowsFromItemContext { - let localContext = new RowsFromItemContext(this.context, this.state); - this.enterRule(localContext, 632, PostgreSqlParser.RULE_rowsFromItem); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 6570; - this.funcExprWindowless(); - this.state = 6576; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 36) { - { - this.state = 6571; - this.match(PostgreSqlParser.KW_AS); - this.state = 6572; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6573; - this.tableFuncElementList(); - this.state = 6574; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - } - - } - } - 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 whereClause(): WhereClauseContext { - let localContext = new WhereClauseContext(this.context, this.state); - this.enterRule(localContext, 634, PostgreSqlParser.RULE_whereClause); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 6578; - this.match(PostgreSqlParser.KW_WHERE); - this.state = 6579; - this.columnExprNoParen(); - } - } - 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 whereOrCurrentClause(): WhereOrCurrentClauseContext { - let localContext = new WhereOrCurrentClauseContext(this.context, this.state); - this.enterRule(localContext, 636, PostgreSqlParser.RULE_whereOrCurrentClause); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 6581; - this.match(PostgreSqlParser.KW_WHERE); - this.state = 6586; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 888, this.context) ) { - case 1: - { - this.state = 6582; - this.match(PostgreSqlParser.KW_CURRENT); - this.state = 6583; - this.match(PostgreSqlParser.KW_OF); - this.state = 6584; - this.colId(); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.KW_DEFAULT: + case PostgreSqlParser.KW_IS: + case PostgreSqlParser.KW_OUTER: + case PostgreSqlParser.KW_OVER: + case PostgreSqlParser.KW_ABORT: + case PostgreSqlParser.KW_ABSOLUTE: + case PostgreSqlParser.KW_ACCESS: + case PostgreSqlParser.KW_ACTION: + case PostgreSqlParser.KW_ADD: + case PostgreSqlParser.KW_ADMIN: + case PostgreSqlParser.KW_AFTER: + case PostgreSqlParser.KW_AGGREGATE: + case PostgreSqlParser.KW_ALSO: + case PostgreSqlParser.KW_ALTER: + case PostgreSqlParser.KW_ALWAYS: + case PostgreSqlParser.KW_ASSERTION: + case PostgreSqlParser.KW_ASSIGNMENT: + case PostgreSqlParser.KW_AT: + case PostgreSqlParser.KW_ATTRIBUTE: + case PostgreSqlParser.KW_BACKWARD: + case PostgreSqlParser.KW_BEFORE: + case PostgreSqlParser.KW_BEGIN: + case PostgreSqlParser.KW_BY: + case PostgreSqlParser.KW_CACHE: + case PostgreSqlParser.KW_CALLED: + case PostgreSqlParser.KW_CASCADE: + case PostgreSqlParser.KW_CASCADED: + case PostgreSqlParser.KW_CATALOG: + case PostgreSqlParser.KW_CHAIN: + case PostgreSqlParser.KW_CHARACTERISTICS: + case PostgreSqlParser.KW_CHECKPOINT: + case PostgreSqlParser.KW_CLASS: + case PostgreSqlParser.KW_CLOSE: + case PostgreSqlParser.KW_CLUSTER: + case PostgreSqlParser.KW_COMMENT: + case PostgreSqlParser.KW_COMMENTS: + case PostgreSqlParser.KW_COMMIT: + case PostgreSqlParser.KW_COMMITTED: + case PostgreSqlParser.KW_CONFIGURATION: + case PostgreSqlParser.KW_CONNECTION: + case PostgreSqlParser.KW_CONSTRAINTS: + case PostgreSqlParser.KW_CONTENT: + case PostgreSqlParser.KW_CONTINUE: + case PostgreSqlParser.KW_CONVERSION: + case PostgreSqlParser.KW_COPY: + case PostgreSqlParser.KW_COST: + case PostgreSqlParser.KW_CSV: + case PostgreSqlParser.KW_CURSOR: + case PostgreSqlParser.KW_CYCLE: + case PostgreSqlParser.KW_DATA: + case PostgreSqlParser.KW_DATABASE: + case PostgreSqlParser.KW_DAY: + case PostgreSqlParser.KW_DEALLOCATE: + case PostgreSqlParser.KW_DECLARE: + case PostgreSqlParser.KW_DEFAULTS: + case PostgreSqlParser.KW_DEFERRED: + case PostgreSqlParser.KW_DEFINER: + case PostgreSqlParser.KW_DELETE: + case PostgreSqlParser.KW_DELIMITER: + case PostgreSqlParser.KW_DELIMITERS: + case PostgreSqlParser.KW_DICTIONARY: + case PostgreSqlParser.KW_DISABLE: + case PostgreSqlParser.KW_DISCARD: + case PostgreSqlParser.KW_DOCUMENT: + case PostgreSqlParser.KW_DOMAIN: + case PostgreSqlParser.KW_DOUBLE: + case PostgreSqlParser.KW_DROP: + case PostgreSqlParser.KW_EACH: + case PostgreSqlParser.KW_ENABLE: + case PostgreSqlParser.KW_ENCODING: + case PostgreSqlParser.KW_ENCRYPTED: + case PostgreSqlParser.KW_ENUM: + case PostgreSqlParser.KW_ESCAPE: + case PostgreSqlParser.KW_EVENT: + case PostgreSqlParser.KW_EXCLUDE: + case PostgreSqlParser.KW_EXCLUDING: + case PostgreSqlParser.KW_EXCLUSIVE: + case PostgreSqlParser.KW_EXECUTE: + case PostgreSqlParser.KW_EXPLAIN: + case PostgreSqlParser.KW_EXTENSION: + case PostgreSqlParser.KW_EXTERNAL: + case PostgreSqlParser.KW_FAMILY: + case PostgreSqlParser.KW_FIRST: + case PostgreSqlParser.KW_FOLLOWING: + case PostgreSqlParser.KW_FORCE: + case PostgreSqlParser.KW_FORWARD: + case PostgreSqlParser.KW_FUNCTION: + case PostgreSqlParser.KW_FUNCTIONS: + case PostgreSqlParser.KW_GLOBAL: + case PostgreSqlParser.KW_GRANTED: + case PostgreSqlParser.KW_HANDLER: + case PostgreSqlParser.KW_HEADER: + case PostgreSqlParser.KW_HOLD: + case PostgreSqlParser.KW_HOUR: + case PostgreSqlParser.KW_IDENTITY: + case PostgreSqlParser.KW_IF: + case PostgreSqlParser.KW_IMMEDIATE: + case PostgreSqlParser.KW_IMMUTABLE: + case PostgreSqlParser.KW_IMPLICIT: + case PostgreSqlParser.KW_INCLUDING: + case PostgreSqlParser.KW_INCREMENT: + case PostgreSqlParser.KW_INDEX: + case PostgreSqlParser.KW_INDEXES: + case PostgreSqlParser.KW_INHERIT: + case PostgreSqlParser.KW_INHERITS: + case PostgreSqlParser.KW_INLINE: + case PostgreSqlParser.KW_INSENSITIVE: + case PostgreSqlParser.KW_INSERT: + case PostgreSqlParser.KW_INSTEAD: + case PostgreSqlParser.KW_INVOKER: + case PostgreSqlParser.KW_ISOLATION: + case PostgreSqlParser.KW_KEY: + case PostgreSqlParser.KW_LABEL: + case PostgreSqlParser.KW_LANGUAGE: + case PostgreSqlParser.KW_LARGE: + case PostgreSqlParser.KW_LAST: + case PostgreSqlParser.KW_LEAKPROOF: + case PostgreSqlParser.KW_LEVEL: + case PostgreSqlParser.KW_LISTEN: + case PostgreSqlParser.KW_LOAD: + case PostgreSqlParser.KW_LOCAL: + case PostgreSqlParser.KW_LOCATION: + case PostgreSqlParser.KW_LOCK: + case PostgreSqlParser.KW_MAPPING: + case PostgreSqlParser.KW_MATCH: + case PostgreSqlParser.KW_MATERIALIZED: + case PostgreSqlParser.KW_MAXVALUE: + case PostgreSqlParser.KW_MINUTE: + case PostgreSqlParser.KW_MINVALUE: + case PostgreSqlParser.KW_MODE: + case PostgreSqlParser.KW_MONTH: + case PostgreSqlParser.KW_MOVE: + case PostgreSqlParser.KW_NAME: + case PostgreSqlParser.KW_NAMES: + case PostgreSqlParser.KW_NEXT: + case PostgreSqlParser.KW_NO: + case PostgreSqlParser.KW_NOTHING: + case PostgreSqlParser.KW_NOTIFY: + case PostgreSqlParser.KW_NOWAIT: + case PostgreSqlParser.KW_NULLS: + case PostgreSqlParser.KW_OBJECT: + case PostgreSqlParser.KW_OF: + case PostgreSqlParser.KW_OFF: + case PostgreSqlParser.KW_OIDS: + case PostgreSqlParser.KW_OPERATOR: + case PostgreSqlParser.KW_OPTION: + case PostgreSqlParser.KW_OPTIONS: + case PostgreSqlParser.KW_OWNED: + case PostgreSqlParser.KW_OWNER: + case PostgreSqlParser.KW_PARSER: + case PostgreSqlParser.KW_PARTIAL: + case PostgreSqlParser.KW_PARTITION: + case PostgreSqlParser.KW_PASSING: + case PostgreSqlParser.KW_PASSWORD: + case PostgreSqlParser.KW_PLANS: + case PostgreSqlParser.KW_PRECEDING: + case PostgreSqlParser.KW_PREPARE: + case PostgreSqlParser.KW_PREPARED: + case PostgreSqlParser.KW_PRESERVE: + case PostgreSqlParser.KW_PRIOR: + case PostgreSqlParser.KW_PRIVILEGES: + case PostgreSqlParser.KW_PROCEDURAL: + case PostgreSqlParser.KW_PROCEDURE: + case PostgreSqlParser.KW_PROGRAM: + case PostgreSqlParser.KW_QUOTE: + case PostgreSqlParser.KW_RANGE: + case PostgreSqlParser.KW_READ: + case PostgreSqlParser.KW_REASSIGN: + case PostgreSqlParser.KW_RECHECK: + case PostgreSqlParser.KW_RECURSIVE: + case PostgreSqlParser.KW_REF: + case PostgreSqlParser.KW_REFRESH: + case PostgreSqlParser.KW_REINDEX: + case PostgreSqlParser.KW_RELATIVE: + case PostgreSqlParser.KW_RELEASE: + case PostgreSqlParser.KW_RENAME: + case PostgreSqlParser.KW_REPEATABLE: + case PostgreSqlParser.KW_REPLACE: + case PostgreSqlParser.KW_REPLICA: + case PostgreSqlParser.KW_RESET: + case PostgreSqlParser.KW_RESTART: + case PostgreSqlParser.KW_RESTRICT: + case PostgreSqlParser.KW_RETURNS: + case PostgreSqlParser.KW_REVOKE: + case PostgreSqlParser.KW_ROLE: + case PostgreSqlParser.KW_ROLLBACK: + case PostgreSqlParser.KW_ROWS: + case PostgreSqlParser.KW_RULE: + case PostgreSqlParser.KW_SAVEPOINT: + case PostgreSqlParser.KW_SCHEMA: + case PostgreSqlParser.KW_SCROLL: + case PostgreSqlParser.KW_SEARCH: + case PostgreSqlParser.KW_SECOND: + case PostgreSqlParser.KW_SECURITY: + case PostgreSqlParser.KW_SEQUENCE: + case PostgreSqlParser.KW_SEQUENCES: + case PostgreSqlParser.KW_SERIALIZABLE: + case PostgreSqlParser.KW_SERVER: + case PostgreSqlParser.KW_SESSION: + case PostgreSqlParser.KW_SET: + case PostgreSqlParser.KW_SHARE: + case PostgreSqlParser.KW_SHOW: + case PostgreSqlParser.KW_SIMPLE: + case PostgreSqlParser.KW_SNAPSHOT: + case PostgreSqlParser.KW_STABLE: + case PostgreSqlParser.KW_STANDALONE: + case PostgreSqlParser.KW_START: + case PostgreSqlParser.KW_STATEMENT: + case PostgreSqlParser.KW_STATISTICS: + case PostgreSqlParser.KW_STDIN: + case PostgreSqlParser.KW_STDOUT: + case PostgreSqlParser.KW_STORAGE: + case PostgreSqlParser.KW_STRICT: + case PostgreSqlParser.KW_STRIP: + case PostgreSqlParser.KW_SYSID: + case PostgreSqlParser.KW_SYSTEM: + case PostgreSqlParser.KW_TABLES: + case PostgreSqlParser.KW_TABLESPACE: + case PostgreSqlParser.KW_TEMP: + case PostgreSqlParser.KW_TEMPLATE: + case PostgreSqlParser.KW_TEMPORARY: + case PostgreSqlParser.KW_TEXT: + case PostgreSqlParser.KW_TRANSACTION: + case PostgreSqlParser.KW_TRIGGER: + case PostgreSqlParser.KW_TRUNCATE: + case PostgreSqlParser.KW_TRUSTED: + case PostgreSqlParser.KW_TYPE: + case PostgreSqlParser.KW_TYPES: + case PostgreSqlParser.KW_UNBOUNDED: + case PostgreSqlParser.KW_UNCOMMITTED: + case PostgreSqlParser.KW_UNENCRYPTED: + case PostgreSqlParser.KW_UNKNOWN: + case PostgreSqlParser.KW_UNLISTEN: + case PostgreSqlParser.KW_UNLOGGED: + case PostgreSqlParser.KW_UNTIL: + case PostgreSqlParser.KW_UPDATE: + case PostgreSqlParser.KW_VACUUM: + case PostgreSqlParser.KW_VALID: + case PostgreSqlParser.KW_VALIDATE: + case PostgreSqlParser.KW_VALIDATOR: + case PostgreSqlParser.KW_VARYING: + case PostgreSqlParser.KW_VERSION: + case PostgreSqlParser.KW_VIEW: + case PostgreSqlParser.KW_VOLATILE: + case PostgreSqlParser.KW_WHITESPACE: + case PostgreSqlParser.KW_WITHOUT: + case PostgreSqlParser.KW_WORK: + case PostgreSqlParser.KW_WRAPPER: + case PostgreSqlParser.KW_WRITE: + case PostgreSqlParser.KW_XML: + case PostgreSqlParser.KW_YEAR: + case PostgreSqlParser.KW_YES: + case PostgreSqlParser.KW_ZONE: + case PostgreSqlParser.KW_BETWEEN: + case PostgreSqlParser.KW_BIGINT: + case PostgreSqlParser.KW_BIT: + case PostgreSqlParser.KW_BOOLEAN: + case PostgreSqlParser.KW_CHAR: + case PostgreSqlParser.KW_CHARACTER: + case PostgreSqlParser.KW_COALESCE: + case PostgreSqlParser.KW_DEC: + case PostgreSqlParser.KW_DECIMAL: + case PostgreSqlParser.KW_EXISTS: + case PostgreSqlParser.KW_EXTRACT: + case PostgreSqlParser.KW_FLOAT: + case PostgreSqlParser.KW_GREATEST: + case PostgreSqlParser.KW_INOUT: + case PostgreSqlParser.KW_INT: + case PostgreSqlParser.KW_INTEGER: + case PostgreSqlParser.KW_INTERVAL: + case PostgreSqlParser.KW_LEAST: + case PostgreSqlParser.KW_NATIONAL: + case PostgreSqlParser.KW_NCHAR: + case PostgreSqlParser.KW_NONE: + case PostgreSqlParser.KW_NULLIF: + case PostgreSqlParser.KW_NUMERIC: + case PostgreSqlParser.KW_OVERLAY: + case PostgreSqlParser.KW_POSITION: + case PostgreSqlParser.KW_PRECISION: + case PostgreSqlParser.KW_REAL: + case PostgreSqlParser.KW_ROW: + case PostgreSqlParser.KW_SETOF: + case PostgreSqlParser.KW_SMALLINT: + case PostgreSqlParser.KW_SUBSTRING: + case PostgreSqlParser.KW_TIME: + case PostgreSqlParser.KW_TIMESTAMP: + case PostgreSqlParser.KW_TREAT: + case PostgreSqlParser.KW_TRIM: + case PostgreSqlParser.KW_VALUES: + case PostgreSqlParser.KW_VARCHAR: + case PostgreSqlParser.KW_XMLATTRIBUTES: + case PostgreSqlParser.KW_XMLCONCAT: + case PostgreSqlParser.KW_XMLELEMENT: + case PostgreSqlParser.KW_XMLEXISTS: + case PostgreSqlParser.KW_XMLFOREST: + case PostgreSqlParser.KW_XMLPARSE: + case PostgreSqlParser.KW_XMLPI: + case PostgreSqlParser.KW_XMLROOT: + case PostgreSqlParser.KW_XMLSERIALIZE: + case PostgreSqlParser.KW_CALL: + case PostgreSqlParser.KW_CURRENT: + case PostgreSqlParser.KW_ATTACH: + case PostgreSqlParser.KW_DETACH: + case PostgreSqlParser.KW_EXPRESSION: + case PostgreSqlParser.KW_GENERATED: + case PostgreSqlParser.KW_LOGGED: + case PostgreSqlParser.KW_STORED: + case PostgreSqlParser.KW_INCLUDE: + case PostgreSqlParser.KW_ROUTINE: + case PostgreSqlParser.KW_TRANSFORM: + case PostgreSqlParser.KW_IMPORT: + case PostgreSqlParser.KW_POLICY: + case PostgreSqlParser.KW_METHOD: + case PostgreSqlParser.KW_REFERENCING: + case PostgreSqlParser.KW_NEW: + case PostgreSqlParser.KW_OLD: + case PostgreSqlParser.KW_VALUE: + case PostgreSqlParser.KW_SUBSCRIPTION: + case PostgreSqlParser.KW_PUBLICATION: + case PostgreSqlParser.KW_OUT: + case PostgreSqlParser.KW_ROUTINES: + case PostgreSqlParser.KW_SCHEMAS: + case PostgreSqlParser.KW_PROCEDURES: + case PostgreSqlParser.KW_INPUT: + case PostgreSqlParser.KW_SUPPORT: + case PostgreSqlParser.KW_PARALLEL: + case PostgreSqlParser.KW_SQL: + case PostgreSqlParser.KW_DEPENDS: + case PostgreSqlParser.KW_OVERRIDING: + case PostgreSqlParser.KW_CONFLICT: + case PostgreSqlParser.KW_SKIP: + case PostgreSqlParser.KW_LOCKED: + case PostgreSqlParser.KW_TIES: + case PostgreSqlParser.KW_ROLLUP: + case PostgreSqlParser.KW_CUBE: + case PostgreSqlParser.KW_GROUPING: + case PostgreSqlParser.KW_SETS: + case PostgreSqlParser.KW_ORDINALITY: + case PostgreSqlParser.KW_XMLTABLE: + case PostgreSqlParser.KW_COLUMNS: + case PostgreSqlParser.KW_XMLNAMESPACES: + case PostgreSqlParser.KW_ROWTYPE: + case PostgreSqlParser.KW_NORMALIZED: + case PostgreSqlParser.KW_WITHIN: + case PostgreSqlParser.KW_FILTER: + case PostgreSqlParser.KW_GROUPS: + case PostgreSqlParser.KW_OTHERS: + case PostgreSqlParser.KW_NFC: + case PostgreSqlParser.KW_NFD: + case PostgreSqlParser.KW_NFKC: + case PostgreSqlParser.KW_NFKD: + case PostgreSqlParser.KW_UESCAPE: + case PostgreSqlParser.KW_VIEWS: + case PostgreSqlParser.KW_NORMALIZE: + case PostgreSqlParser.KW_DUMP: + case PostgreSqlParser.KW_PRINT_STRICT_PARAMS: + case PostgreSqlParser.KW_VARIABLE_CONFLICT: + case PostgreSqlParser.KW_ERROR: + case PostgreSqlParser.KW_USE_VARIABLE: + case PostgreSqlParser.KW_USE_COLUMN: + case PostgreSqlParser.KW_ALIAS: + case PostgreSqlParser.KW_CONSTANT: + case PostgreSqlParser.KW_PERFORM: + case PostgreSqlParser.KW_GET: + case PostgreSqlParser.KW_DIAGNOSTICS: + case PostgreSqlParser.KW_STACKED: + case PostgreSqlParser.KW_ELSIF: + case PostgreSqlParser.KW_REVERSE: + case PostgreSqlParser.KW_SLICE: + case PostgreSqlParser.KW_EXIT: + case PostgreSqlParser.KW_RETURN: + case PostgreSqlParser.KW_QUERY: + case PostgreSqlParser.KW_RAISE: + case PostgreSqlParser.KW_SQLSTATE: + case PostgreSqlParser.KW_DEBUG: + case PostgreSqlParser.KW_LOG: + case PostgreSqlParser.KW_INFO: + case PostgreSqlParser.KW_NOTICE: + case PostgreSqlParser.KW_WARNING: + case PostgreSqlParser.KW_EXCEPTION: + case PostgreSqlParser.KW_ASSERT: + case PostgreSqlParser.KW_OPEN: + case PostgreSqlParser.KW_PUBLIC: + case PostgreSqlParser.KW_SKIP_LOCKED: + case PostgreSqlParser.KW_BUFFER_USAGE_LIMIT: + case PostgreSqlParser.Identifier: + case PostgreSqlParser.QuotedIdentifier: + case PostgreSqlParser.UnicodeQuotedIdentifier: + case PostgreSqlParser.StringConstant: + case PostgreSqlParser.UnicodeEscapeStringConstant: + case PostgreSqlParser.BeginDollarStringConstant: + case PostgreSqlParser.PLSQLVARIABLENAME: + case PostgreSqlParser.PLSQLIDENTIFIER: + case PostgreSqlParser.EscapeStringConstant: + { + this.state = 6521; + this.schemaName(); + } + break; + case PostgreSqlParser.KW_CURRENT_SCHEMA: + { + this.state = 6522; + this.match(PostgreSqlParser.KW_CURRENT_SCHEMA); + } + break; + default: + throw new antlr.NoViableAltException(this); } - break; - case 2: - { - this.state = 6585; - this.expression(); } break; } - } } catch (re) { if (re instanceof antlr.RecognitionException) { @@ -39032,28 +41165,28 @@ export class PostgreSqlParser extends SQLParserBase { } return localContext; } - public tableFuncElementList(): TableFuncElementListContext { - let localContext = new TableFuncElementListContext(this.context, this.state); - this.enterRule(localContext, 638, PostgreSqlParser.RULE_tableFuncElementList); + public relationExprList(): RelationExprListContext { + let localContext = new RelationExprListContext(this.context, this.state); + this.enterRule(localContext, 624, PostgreSqlParser.RULE_relationExprList); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6588; - this.tableFuncElement(); - this.state = 6593; + this.state = 6527; + this.relationExpr(); + this.state = 6532; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 6589; + this.state = 6528; this.match(PostgreSqlParser.COMMA); - this.state = 6590; - this.tableFuncElement(); + this.state = 6529; + this.relationExpr(); } } - this.state = 6595; + this.state = 6534; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -39073,27 +41206,35 @@ export class PostgreSqlParser extends SQLParserBase { } return localContext; } - public tableFuncElement(): TableFuncElementContext { - let localContext = new TableFuncElementContext(this.context, this.state); - this.enterRule(localContext, 640, PostgreSqlParser.RULE_tableFuncElement); + public relationExprOptAlias(): RelationExprOptAliasContext { + let localContext = new RelationExprOptAliasContext(this.context, this.state); + this.enterRule(localContext, 626, PostgreSqlParser.RULE_relationExprOptAlias); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 6596; - this.colId(); - this.state = 6597; - this.typename(); - this.state = 6599; + this.state = 6535; + this.relationExpr(); + this.state = 6540; this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 43) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 882, this.context) ) { + case 1: { - this.state = 6598; - this.collateClause(); + this.state = 6537; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 36) { + { + this.state = 6536; + this.match(PostgreSqlParser.KW_AS); + } } - } + this.state = 6539; + this.colId(); + } + break; + } } } catch (re) { @@ -39110,78 +41251,388 @@ export class PostgreSqlParser extends SQLParserBase { } return localContext; } - public xmlTable(): XmlTableContext { - let localContext = new XmlTableContext(this.context, this.state); - this.enterRule(localContext, 642, PostgreSqlParser.RULE_xmlTable); - let _la: number; + public tableSampleClause(): TableSampleClauseContext { + let localContext = new TableSampleClauseContext(this.context, this.state); + this.enterRule(localContext, 628, PostgreSqlParser.RULE_tableSampleClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 6601; - this.match(PostgreSqlParser.KW_XMLTABLE); - this.state = 6602; - this.match(PostgreSqlParser.OPEN_PAREN); - { - this.state = 6616; + this.state = 6542; + this.match(PostgreSqlParser.KW_TABLESAMPLE); + this.state = 6543; + this.functionName(); + this.state = 6544; + this.executeParamClause(); + this.state = 6550; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 892, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 883, this.context) ) { case 1: { - this.state = 6603; - this.match(PostgreSqlParser.KW_XMLNAMESPACES); - this.state = 6604; + this.state = 6545; + this.match(PostgreSqlParser.KW_REPEATABLE); + this.state = 6546; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6605; - this.xmlNamespaceEle(); - this.state = 6610; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 6) { - { - { - this.state = 6606; - this.match(PostgreSqlParser.COMMA); - this.state = 6607; - this.xmlNamespaceEle(); - } - } - this.state = 6612; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } - this.state = 6613; + this.state = 6547; + this.expression(); + this.state = 6548; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 6614; - this.match(PostgreSqlParser.COMMA); } break; } - this.state = 6618; - this.primaryExpression(0); - this.state = 6619; - this.xmlExistsArgument(); - this.state = 6620; - this.match(PostgreSqlParser.KW_COLUMNS); - this.state = 6621; - this.xmlTableColumnEl(); - this.state = 6626; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 6) { - { - { - this.state = 6622; - this.match(PostgreSqlParser.COMMA); - this.state = 6623; - this.xmlTableColumnEl(); - } - } - this.state = 6628; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } } - this.state = 6629; + } + 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 funcTable(): FuncTableContext { + let localContext = new FuncTableContext(this.context, this.state); + this.enterRule(localContext, 630, PostgreSqlParser.RULE_funcTable); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 6566; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 885, this.context) ) { + case 1: + { + this.state = 6552; + this.funcExprWindowless(); + } + break; + case 2: + { + { + this.state = 6553; + this.match(PostgreSqlParser.KW_ROWS); + this.state = 6554; + this.match(PostgreSqlParser.KW_FROM); + this.state = 6555; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 6556; + this.rowsFromItem(); + this.state = 6561; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 6) { + { + { + this.state = 6557; + this.match(PostgreSqlParser.COMMA); + this.state = 6558; + this.rowsFromItem(); + } + } + this.state = 6563; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } + this.state = 6564; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + } + break; + } + this.state = 6570; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 886, this.context) ) { + case 1: + { + this.state = 6568; + this.match(PostgreSqlParser.KW_WITH); + this.state = 6569; + this.match(PostgreSqlParser.KW_ORDINALITY); + } + break; + } + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public rowsFromItem(): RowsFromItemContext { + let localContext = new RowsFromItemContext(this.context, this.state); + this.enterRule(localContext, 632, PostgreSqlParser.RULE_rowsFromItem); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 6572; + this.funcExprWindowless(); + this.state = 6578; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 36) { + { + this.state = 6573; + this.match(PostgreSqlParser.KW_AS); + this.state = 6574; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 6575; + this.tableFuncElementList(); + this.state = 6576; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + } + + } + } + 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 whereClause(): WhereClauseContext { + let localContext = new WhereClauseContext(this.context, this.state); + this.enterRule(localContext, 634, PostgreSqlParser.RULE_whereClause); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 6580; + this.match(PostgreSqlParser.KW_WHERE); + this.state = 6581; + this.columnExprNoParen(); + } + } + 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 whereOrCurrentClause(): WhereOrCurrentClauseContext { + let localContext = new WhereOrCurrentClauseContext(this.context, this.state); + this.enterRule(localContext, 636, PostgreSqlParser.RULE_whereOrCurrentClause); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 6583; + this.match(PostgreSqlParser.KW_WHERE); + this.state = 6588; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 888, this.context) ) { + case 1: + { + this.state = 6584; + this.match(PostgreSqlParser.KW_CURRENT); + this.state = 6585; + this.match(PostgreSqlParser.KW_OF); + this.state = 6586; + this.colId(); + } + break; + case 2: + { + this.state = 6587; + this.expression(); + } + break; + } + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public tableFuncElementList(): TableFuncElementListContext { + let localContext = new TableFuncElementListContext(this.context, this.state); + this.enterRule(localContext, 638, PostgreSqlParser.RULE_tableFuncElementList); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 6590; + this.tableFuncElement(); + this.state = 6595; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 6) { + { + { + this.state = 6591; + this.match(PostgreSqlParser.COMMA); + this.state = 6592; + this.tableFuncElement(); + } + } + this.state = 6597; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } + } + } + 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 tableFuncElement(): TableFuncElementContext { + let localContext = new TableFuncElementContext(this.context, this.state); + this.enterRule(localContext, 640, PostgreSqlParser.RULE_tableFuncElement); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 6598; + this.colId(); + this.state = 6599; + this.typename(); + this.state = 6601; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 43) { + { + this.state = 6600; + this.collateClause(); + } + } + + } + } + 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 xmlTable(): XmlTableContext { + let localContext = new XmlTableContext(this.context, this.state); + this.enterRule(localContext, 642, PostgreSqlParser.RULE_xmlTable); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 6603; + this.match(PostgreSqlParser.KW_XMLTABLE); + this.state = 6604; + this.match(PostgreSqlParser.OPEN_PAREN); + { + this.state = 6618; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 892, this.context) ) { + case 1: + { + this.state = 6605; + this.match(PostgreSqlParser.KW_XMLNAMESPACES); + this.state = 6606; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 6607; + this.xmlNamespaceEle(); + this.state = 6612; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 6) { + { + { + this.state = 6608; + this.match(PostgreSqlParser.COMMA); + this.state = 6609; + this.xmlNamespaceEle(); + } + } + this.state = 6614; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } + this.state = 6615; + this.match(PostgreSqlParser.CLOSE_PAREN); + this.state = 6616; + this.match(PostgreSqlParser.COMMA); + } + break; + } + this.state = 6620; + this.primaryExpression(0); + this.state = 6621; + this.xmlExistsArgument(); + this.state = 6622; + this.match(PostgreSqlParser.KW_COLUMNS); + this.state = 6623; + this.xmlTableColumnEl(); + this.state = 6628; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 6) { + { + { + this.state = 6624; + this.match(PostgreSqlParser.COMMA); + this.state = 6625; + this.xmlTableColumnEl(); + } + } + this.state = 6630; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } + } + this.state = 6631; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -39206,9 +41657,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6631; + this.state = 6633; this.colId(); - this.state = 6650; + this.state = 6652; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -39627,19 +42078,19 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 6632; + this.state = 6634; this.typename(); - this.state = 6646; + this.state = 6648; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (((((_la - 53)) & ~0x1F) === 0 && ((1 << (_la - 53)) & 50331649) !== 0) || ((((_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)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 6642; + this.state = 6644; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { - this.state = 6642; + this.state = 6644; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -39986,40 +42437,40 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 6635; + this.state = 6637; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 894, this.context) ) { case 1: { - this.state = 6633; + this.state = 6635; this.match(PostgreSqlParser.KW_DEFAULT); } break; case 2: { - this.state = 6634; + this.state = 6636; this.identifier(); } break; } - this.state = 6637; + this.state = 6639; this.expression(); } break; case PostgreSqlParser.KW_NOT: case PostgreSqlParser.KW_NULL: { - this.state = 6639; + this.state = 6641; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 6638; + this.state = 6640; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 6641; + this.state = 6643; this.match(PostgreSqlParser.KW_NULL); } break; @@ -40027,7 +42478,7 @@ export class PostgreSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } } - this.state = 6644; + this.state = 6646; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (((((_la - 53)) & ~0x1F) === 0 && ((1 << (_la - 53)) & 50331649) !== 0) || ((((_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)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586); @@ -40038,9 +42489,9 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_FOR: { - this.state = 6648; + this.state = 6650; this.match(PostgreSqlParser.KW_FOR); - this.state = 6649; + this.state = 6651; this.match(PostgreSqlParser.KW_ORDINALITY); } break; @@ -40067,26 +42518,26 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new XmlNamespaceEleContext(this.context, this.state); this.enterRule(localContext, 646, PostgreSqlParser.RULE_xmlNamespaceEle); try { - this.state = 6658; + this.state = 6660; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 900, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6652; + this.state = 6654; this.primaryExpression(0); - this.state = 6653; + this.state = 6655; this.match(PostgreSqlParser.KW_AS); - this.state = 6654; + this.state = 6656; this.colLabel(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6656; + this.state = 6658; this.match(PostgreSqlParser.KW_DEFAULT); - this.state = 6657; + this.state = 6659; this.primaryExpression(0); } break; @@ -40112,55 +42563,55 @@ export class PostgreSqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 6686; + this.state = 6688; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 906, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6661; + this.state = 6663; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 415) { { - this.state = 6660; + this.state = 6662; this.match(PostgreSqlParser.KW_SETOF); } } - this.state = 6663; + this.state = 6665; this.simpleTypeName(); - this.state = 6680; + this.state = 6682; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 905, this.context) ) { case 1: { { - this.state = 6671; + this.state = 6673; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 903, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 6664; - this.match(PostgreSqlParser.OPEN_BRACKET); this.state = 6666; + this.match(PostgreSqlParser.OPEN_BRACKET); + this.state = 6668; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 574) { { - this.state = 6665; + this.state = 6667; this.match(PostgreSqlParser.Integral); } } - this.state = 6668; + this.state = 6670; this.match(PostgreSqlParser.CLOSE_BRACKET); } } } - this.state = 6673; + this.state = 6675; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 903, this.context); } @@ -40169,18 +42620,18 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 6674; + this.state = 6676; this.match(PostgreSqlParser.KW_ARRAY); - this.state = 6678; + this.state = 6680; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 904, this.context) ) { case 1: { - this.state = 6675; + this.state = 6677; this.match(PostgreSqlParser.OPEN_BRACKET); - this.state = 6676; + this.state = 6678; this.match(PostgreSqlParser.Integral); - this.state = 6677; + this.state = 6679; this.match(PostgreSqlParser.CLOSE_BRACKET); } break; @@ -40193,11 +42644,11 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6682; + this.state = 6684; this.qualifiedName(); - this.state = 6683; + this.state = 6685; this.match(PostgreSqlParser.PERCENT); - this.state = 6684; + this.state = 6686; _la = this.tokenStream.LA(1); if(!(_la === 360 || _la === 477)) { this.errorHandler.recoverInline(this); @@ -40228,30 +42679,30 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new SimpleTypeNameContext(this.context, this.state); this.enterRule(localContext, 650, PostgreSqlParser.RULE_simpleTypeName); try { - this.state = 6703; + this.state = 6705; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 911, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 6688; - this.typeFunctionName(); this.state = 6690; + this.typeFunctionName(); + this.state = 6692; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 907, this.context) ) { case 1: { - this.state = 6689; + this.state = 6691; this.attrs(); } break; } - this.state = 6693; + this.state = 6695; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 908, this.context) ) { case 1: { - this.state = 6692; + this.state = 6694; this.executeParamClause(); } break; @@ -40261,26 +42712,26 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 6695; + this.state = 6697; this.constTypeName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 6696; + this.state = 6698; this.match(PostgreSqlParser.KW_INTERVAL); - this.state = 6701; + this.state = 6703; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 910, this.context) ) { case 1: { - this.state = 6698; + this.state = 6700; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 909, this.context) ) { case 1: { - this.state = 6697; + this.state = 6699; this.optInterval(); } break; @@ -40289,7 +42740,7 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 6700; + this.state = 6702; this.optFloat(); } break; @@ -40316,7 +42767,7 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ConstTypeNameContext(this.context, this.state); this.enterRule(localContext, 652, PostgreSqlParser.RULE_constTypeName); try { - this.state = 6709; + this.state = 6711; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DOUBLE: @@ -40332,14 +42783,14 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_SMALLINT: this.enterOuterAlt(localContext, 1); { - this.state = 6705; + this.state = 6707; this.numeric(); } break; case PostgreSqlParser.KW_BIT: this.enterOuterAlt(localContext, 2); { - this.state = 6706; + this.state = 6708; this.bit(); } break; @@ -40350,7 +42801,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_VARCHAR: this.enterOuterAlt(localContext, 3); { - this.state = 6707; + this.state = 6709; this.character(); } break; @@ -40358,7 +42809,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_TIMESTAMP: this.enterOuterAlt(localContext, 4); { - this.state = 6708; + this.state = 6710; this.constDatetime(); } break; @@ -40385,55 +42836,55 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 654, PostgreSqlParser.RULE_numeric); let _la: number; try { - this.state = 6727; + this.state = 6729; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_INT: this.enterOuterAlt(localContext, 1); { - this.state = 6711; + this.state = 6713; this.match(PostgreSqlParser.KW_INT); } break; case PostgreSqlParser.KW_INTEGER: this.enterOuterAlt(localContext, 2); { - this.state = 6712; + this.state = 6714; this.match(PostgreSqlParser.KW_INTEGER); } break; case PostgreSqlParser.KW_SMALLINT: this.enterOuterAlt(localContext, 3); { - this.state = 6713; + this.state = 6715; this.match(PostgreSqlParser.KW_SMALLINT); } break; case PostgreSqlParser.KW_BIGINT: this.enterOuterAlt(localContext, 4); { - this.state = 6714; + this.state = 6716; this.match(PostgreSqlParser.KW_BIGINT); } break; case PostgreSqlParser.KW_REAL: this.enterOuterAlt(localContext, 5); { - this.state = 6715; + this.state = 6717; this.match(PostgreSqlParser.KW_REAL); } break; case PostgreSqlParser.KW_FLOAT: this.enterOuterAlt(localContext, 6); { - this.state = 6716; - this.match(PostgreSqlParser.KW_FLOAT); this.state = 6718; + this.match(PostgreSqlParser.KW_FLOAT); + this.state = 6720; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 913, this.context) ) { case 1: { - this.state = 6717; + this.state = 6719; this.optFloat(); } break; @@ -40443,9 +42894,9 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_DOUBLE: this.enterOuterAlt(localContext, 7); { - this.state = 6720; + this.state = 6722; this.match(PostgreSqlParser.KW_DOUBLE); - this.state = 6721; + this.state = 6723; this.match(PostgreSqlParser.KW_PRECISION); } break; @@ -40454,7 +42905,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_NUMERIC: this.enterOuterAlt(localContext, 8); { - this.state = 6722; + this.state = 6724; _la = this.tokenStream.LA(1); if(!(((((_la - 394)) & ~0x1F) === 0 && ((1 << (_la - 394)) & 32771) !== 0))) { this.errorHandler.recoverInline(this); @@ -40463,12 +42914,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6724; + this.state = 6726; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 914, this.context) ) { case 1: { - this.state = 6723; + this.state = 6725; this.executeParamClause(); } break; @@ -40478,7 +42929,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_BOOLEAN: this.enterOuterAlt(localContext, 9); { - this.state = 6726; + this.state = 6728; this.match(PostgreSqlParser.KW_BOOLEAN); } break; @@ -40506,11 +42957,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6729; + this.state = 6731; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6730; + this.state = 6732; this.match(PostgreSqlParser.Integral); - this.state = 6731; + this.state = 6733; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -40534,24 +42985,24 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6733; - this.match(PostgreSqlParser.KW_BIT); this.state = 6735; + this.match(PostgreSqlParser.KW_BIT); + this.state = 6737; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 916, this.context) ) { case 1: { - this.state = 6734; + this.state = 6736; this.match(PostgreSqlParser.KW_VARYING); } break; } - this.state = 6738; + this.state = 6740; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 917, this.context) ) { case 1: { - this.state = 6737; + this.state = 6739; this.executeParamClause(); } break; @@ -40579,14 +43030,14 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6750; + this.state = 6752; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CHAR: case PostgreSqlParser.KW_CHARACTER: case PostgreSqlParser.KW_NCHAR: { - this.state = 6740; + this.state = 6742; _la = this.tokenStream.LA(1); if(!(((((_la - 391)) & ~0x1F) === 0 && ((1 << (_la - 391)) & 32771) !== 0))) { this.errorHandler.recoverInline(this); @@ -40595,12 +43046,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6742; + this.state = 6744; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 918, this.context) ) { case 1: { - this.state = 6741; + this.state = 6743; this.match(PostgreSqlParser.KW_VARYING); } break; @@ -40609,15 +43060,15 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.KW_VARCHAR: { - this.state = 6744; + this.state = 6746; this.match(PostgreSqlParser.KW_VARCHAR); } break; case PostgreSqlParser.KW_NATIONAL: { - this.state = 6745; + this.state = 6747; this.match(PostgreSqlParser.KW_NATIONAL); - this.state = 6746; + this.state = 6748; _la = this.tokenStream.LA(1); if(!(_la === 391 || _la === 392)) { this.errorHandler.recoverInline(this); @@ -40626,12 +43077,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6748; + this.state = 6750; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 919, this.context) ) { case 1: { - this.state = 6747; + this.state = 6749; this.match(PostgreSqlParser.KW_VARYING); } break; @@ -40641,12 +43092,12 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 6753; + this.state = 6755; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 921, this.context) ) { case 1: { - this.state = 6752; + this.state = 6754; this.optFloat(); } break; @@ -40674,7 +43125,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6755; + this.state = 6757; _la = this.tokenStream.LA(1); if(!(_la === 418 || _la === 419)) { this.errorHandler.recoverInline(this); @@ -40683,22 +43134,22 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6757; + this.state = 6759; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 922, this.context) ) { case 1: { - this.state = 6756; + this.state = 6758; this.optFloat(); } break; } - this.state = 6762; + this.state = 6764; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 923, this.context) ) { case 1: { - this.state = 6759; + this.state = 6761; _la = this.tokenStream.LA(1); if(!(_la === 105 || _la === 379)) { this.errorHandler.recoverInline(this); @@ -40707,9 +43158,9 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6760; + this.state = 6762; this.match(PostgreSqlParser.KW_TIME); - this.state = 6761; + this.state = 6763; this.match(PostgreSqlParser.KW_ZONE); } break; @@ -40734,36 +43185,36 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new OptIntervalContext(this.context, this.state); this.enterRule(localContext, 664, PostgreSqlParser.RULE_optInterval); try { - this.state = 6793; + this.state = 6795; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_MONTH: this.enterOuterAlt(localContext, 1); { - this.state = 6764; + this.state = 6766; this.match(PostgreSqlParser.KW_MONTH); } break; case PostgreSqlParser.KW_SECOND: this.enterOuterAlt(localContext, 2); { - this.state = 6765; + this.state = 6767; this.intervalSecond(); } break; case PostgreSqlParser.KW_YEAR: this.enterOuterAlt(localContext, 3); { - this.state = 6766; + this.state = 6768; this.match(PostgreSqlParser.KW_YEAR); - this.state = 6769; + this.state = 6771; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 924, this.context) ) { case 1: { - this.state = 6767; + this.state = 6769; this.match(PostgreSqlParser.KW_TO); - this.state = 6768; + this.state = 6770; this.match(PostgreSqlParser.KW_MONTH); } break; @@ -40773,33 +43224,33 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_DAY: this.enterOuterAlt(localContext, 4); { - this.state = 6771; + this.state = 6773; this.match(PostgreSqlParser.KW_DAY); - this.state = 6778; + this.state = 6780; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 926, this.context) ) { case 1: { - this.state = 6772; + this.state = 6774; this.match(PostgreSqlParser.KW_TO); - this.state = 6776; + this.state = 6778; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_HOUR: { - this.state = 6773; + this.state = 6775; this.match(PostgreSqlParser.KW_HOUR); } break; case PostgreSqlParser.KW_MINUTE: { - this.state = 6774; + this.state = 6776; this.match(PostgreSqlParser.KW_MINUTE); } break; case PostgreSqlParser.KW_SECOND: { - this.state = 6775; + this.state = 6777; this.intervalSecond(); } break; @@ -40814,27 +43265,27 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_HOUR: this.enterOuterAlt(localContext, 5); { - this.state = 6780; + this.state = 6782; this.match(PostgreSqlParser.KW_HOUR); - this.state = 6786; + this.state = 6788; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 928, this.context) ) { case 1: { - this.state = 6781; + this.state = 6783; this.match(PostgreSqlParser.KW_TO); - this.state = 6784; + this.state = 6786; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_MINUTE: { - this.state = 6782; + this.state = 6784; this.match(PostgreSqlParser.KW_MINUTE); } break; case PostgreSqlParser.KW_SECOND: { - this.state = 6783; + this.state = 6785; this.intervalSecond(); } break; @@ -40849,16 +43300,16 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_MINUTE: this.enterOuterAlt(localContext, 6); { - this.state = 6788; + this.state = 6790; this.match(PostgreSqlParser.KW_MINUTE); - this.state = 6791; + this.state = 6793; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 929, this.context) ) { case 1: { - this.state = 6789; + this.state = 6791; this.match(PostgreSqlParser.KW_TO); - this.state = 6790; + this.state = 6792; this.intervalSecond(); } break; @@ -40889,14 +43340,14 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6795; - this.match(PostgreSqlParser.KW_SECOND); this.state = 6797; + this.match(PostgreSqlParser.KW_SECOND); + this.state = 6799; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 931, this.context) ) { case 1: { - this.state = 6796; + this.state = 6798; this.optFloat(); } break; @@ -40924,7 +43375,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6799; + this.state = 6801; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 44237824) !== 0))) { this.errorHandler.recoverInline(this); @@ -40955,7 +43406,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 6801; + this.state = 6803; this.booleanExpression(0); } } @@ -40991,498 +43442,940 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 6810; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 933, this.context) ) { - case 1: - { - localContext = new PredicatedContext(localContext); - this.context = localContext; - previousContext = localContext; - - this.state = 6804; - (localContext as PredicatedContext)._valueExpression = this.valueExpression(0); - this.state = 6806; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 932, this.context) ) { - case 1: - { - this.state = 6805; - this.predicate((localContext as PredicatedContext)._valueExpression); - } - break; - } - } - break; - case 2: - { - localContext = new LogicalNotContext(localContext); - this.context = localContext; - previousContext = localContext; - this.state = 6808; - this.match(PostgreSqlParser.KW_NOT); - this.state = 6809; - this.booleanExpression(3); - } - break; - } - this.context!.stop = this.tokenStream.LT(-1); - this.state = 6820; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 935, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - if (this._parseListeners != null) { - this.triggerExitRuleEvent(); - } - previousContext = localContext; - { - this.state = 6818; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 934, this.context) ) { - case 1: - { - localContext = new LogicalBinaryContext(new BooleanExpressionContext(parentContext, parentState)); - (localContext as LogicalBinaryContext)._left = previousContext; - this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_booleanExpression); - this.state = 6812; - if (!(this.precpred(this.context, 2))) { - throw this.createFailedPredicateException("this.precpred(this.context, 2)"); - } - this.state = 6813; - (localContext as LogicalBinaryContext)._operator = this.match(PostgreSqlParser.KW_AND); - this.state = 6814; - (localContext as LogicalBinaryContext)._right = this.booleanExpression(3); - } - break; - case 2: - { - localContext = new LogicalBinaryContext(new BooleanExpressionContext(parentContext, parentState)); - (localContext as LogicalBinaryContext)._left = previousContext; - this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_booleanExpression); - this.state = 6815; - if (!(this.precpred(this.context, 1))) { - throw this.createFailedPredicateException("this.precpred(this.context, 1)"); - } - this.state = 6816; - (localContext as LogicalBinaryContext)._operator = this.match(PostgreSqlParser.KW_OR); - this.state = 6817; - (localContext as LogicalBinaryContext)._right = this.booleanExpression(2); - } - break; - } - } - } - this.state = 6822; - this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 935, this.context); - } - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.unrollRecursionContexts(parentContext); - } - return localContext; - } - public predicate(value: antlr.ParserRuleContext): PredicateContext { - let localContext = new PredicateContext(this.context, this.state, value); - this.enterRule(localContext, 674, PostgreSqlParser.RULE_predicate); - let _la: number; - try { - this.state = 6894; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 947, this.context) ) { - case 1: - localContext = new ComparisonContext(localContext); - this.enterOuterAlt(localContext, 1); - { - this.state = 6823; - this.comparisonOperator(); - this.state = 6824; - (localContext as ComparisonContext)._right = this.valueExpression(0); - } - break; - case 2: - localContext = new QuantifiedComparisonContext(localContext); - this.enterOuterAlt(localContext, 2); - { - this.state = 6826; - this.comparisonOperator(); - this.state = 6827; - this.subqueryOperator(); - this.state = 6828; - this.subType(); - this.state = 6834; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 936, this.context) ) { - case 1: - { - this.state = 6829; - this.selectWithParens(); - } - break; - case 2: - { - this.state = 6830; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6831; - this.expression(); - this.state = 6832; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - break; - } - } - break; - case 3: - localContext = new BetweenContext(localContext); - this.enterOuterAlt(localContext, 3); - { - this.state = 6837; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 77) { - { - this.state = 6836; - this.match(PostgreSqlParser.KW_NOT); - } - } - - this.state = 6839; - this.match(PostgreSqlParser.KW_BETWEEN); - this.state = 6840; - (localContext as BetweenContext)._lower = this.valueExpression(0); - this.state = 6841; - this.match(PostgreSqlParser.KW_AND); - this.state = 6842; - (localContext as BetweenContext)._upper = this.valueExpression(0); - } - break; - case 4: - localContext = new InListContext(localContext); - this.enterOuterAlt(localContext, 4); - { - this.state = 6845; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 77) { - { - this.state = 6844; - this.match(PostgreSqlParser.KW_NOT); - } - } - - this.state = 6847; - this.match(PostgreSqlParser.KW_IN); - this.state = 6848; - this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6849; - this.expression(); - this.state = 6854; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 6) { - { - { - this.state = 6850; - this.match(PostgreSqlParser.COMMA); - this.state = 6851; - this.expression(); - } - } - this.state = 6856; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } - this.state = 6857; - this.match(PostgreSqlParser.CLOSE_PAREN); - } - break; - case 5: - localContext = new InSubqueryContext(localContext); - this.enterOuterAlt(localContext, 5); - { - this.state = 6860; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 77) { - { - this.state = 6859; - this.match(PostgreSqlParser.KW_NOT); - } - } - - this.state = 6862; - this.match(PostgreSqlParser.KW_IN); - this.state = 6863; - this.selectWithParens(); - } - break; - case 6: - localContext = new LikeContext(localContext); - this.enterOuterAlt(localContext, 6); - { - this.state = 6865; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 77) { - { - this.state = 6864; - this.match(PostgreSqlParser.KW_NOT); - } - } - - this.state = 6875; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.KW_LIKE: - { - this.state = 6867; - this.match(PostgreSqlParser.KW_LIKE); - } - break; - case PostgreSqlParser.KW_ILIKE: - { - this.state = 6868; - this.match(PostgreSqlParser.KW_ILIKE); - } - break; - case PostgreSqlParser.KW_SIMILAR: - { - this.state = 6869; - this.match(PostgreSqlParser.KW_SIMILAR); - this.state = 6870; - this.match(PostgreSqlParser.KW_TO); - } - break; - case PostgreSqlParser.KW_BETWEEN: - { - this.state = 6871; - this.match(PostgreSqlParser.KW_BETWEEN); - this.state = 6873; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 942, this.context) ) { - case 1: - { - this.state = 6872; - this.match(PostgreSqlParser.KW_SYMMETRIC); - } - break; - } - } - break; - default: - throw new antlr.NoViableAltException(this); - } - this.state = 6877; - (localContext as LikeContext)._pattern = this.valueExpression(0); - this.state = 6880; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 944, this.context) ) { - case 1: - { - this.state = 6878; - this.match(PostgreSqlParser.KW_ESCAPE); - this.state = 6879; - (localContext as LikeContext)._escape = this.valueExpression(0); - } - break; - } - } - break; - case 7: - localContext = new NullPredicateContext(localContext); - this.enterOuterAlt(localContext, 7); - { - this.state = 6882; - this.match(PostgreSqlParser.KW_IS); - this.state = 6884; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 77) { - { - this.state = 6883; - this.match(PostgreSqlParser.KW_NOT); - } - } - - this.state = 6886; - this.match(PostgreSqlParser.KW_NULL); - } - break; - case 8: - localContext = new DistinctFromContext(localContext); - this.enterOuterAlt(localContext, 8); - { - this.state = 6887; - this.match(PostgreSqlParser.KW_IS); - this.state = 6889; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 77) { - { - this.state = 6888; - this.match(PostgreSqlParser.KW_NOT); - } - } - - this.state = 6891; - this.match(PostgreSqlParser.KW_DISTINCT); - this.state = 6892; - this.match(PostgreSqlParser.KW_FROM); - this.state = 6893; - (localContext as DistinctFromContext)._right = this.valueExpression(0); - } - break; - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - - public valueExpression(): ValueExpressionContext; - public valueExpression(_p: number): ValueExpressionContext; - public valueExpression(_p?: number): ValueExpressionContext { - if (_p === undefined) { - _p = 0; - } - - let parentContext = this.context; - let parentState = this.state; - let localContext = new ValueExpressionContext(this.context, parentState); - let previousContext = localContext; - let _startState = 676; - this.enterRecursionRule(localContext, 676, PostgreSqlParser.RULE_valueExpression, _p); - let _la: number; - try { - let alternative: number; - this.enterOuterAlt(localContext, 1); - { - this.state = 6900; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 948, this.context) ) { - case 1: - { - localContext = new ValueExpressionDefaultContext(localContext); - this.context = localContext; - previousContext = localContext; - - this.state = 6897; - this.primaryExpression(0); - } - break; - case 2: - { - localContext = new ArithmeticUnaryContext(localContext); - this.context = localContext; - previousContext = localContext; - this.state = 6898; - (localContext as ArithmeticUnaryContext)._operator = this.tokenStream.LT(1); - _la = this.tokenStream.LA(1); - if(!(_la === 12 || _la === 13)) { - (localContext as ArithmeticUnaryContext)._operator = this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 6899; - this.valueExpression(4); - } - break; - } - this.context!.stop = this.tokenStream.LT(-1); - this.state = 6918; + this.state = 6812; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 950, this.context); - while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { - if (alternative === 1) { - if (this._parseListeners != null) { - this.triggerExitRuleEvent(); - } - previousContext = localContext; - { - this.state = 6916; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 949, this.context) ) { - case 1: - { - localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); - (localContext as ArithmeticBinaryContext)._left = previousContext; - this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_valueExpression); - this.state = 6902; - if (!(this.precpred(this.context, 3))) { - throw this.createFailedPredicateException("this.precpred(this.context, 3)"); - } - this.state = 6903; - (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); - _la = this.tokenStream.LA(1); - if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 134234624) !== 0))) { - (localContext as ArithmeticBinaryContext)._operator = this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - this.state = 6904; - (localContext as ArithmeticBinaryContext)._right = this.valueExpression(4); - } - break; - case 2: - { - localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); - (localContext as ArithmeticBinaryContext)._left = previousContext; - this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_valueExpression); - this.state = 6905; - if (!(this.precpred(this.context, 2))) { - throw this.createFailedPredicateException("this.precpred(this.context, 2)"); - } - this.state = 6906; - (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); - _la = this.tokenStream.LA(1); - if(!(_la === 12 || _la === 13)) { - (localContext as ArithmeticBinaryContext)._operator = this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.OPEN_PAREN: + case PostgreSqlParser.PLUS: + case PostgreSqlParser.MINUS: + case PostgreSqlParser.PARAM: + case PostgreSqlParser.Operator: + case PostgreSqlParser.KW_ARRAY: + case PostgreSqlParser.KW_CASE: + case PostgreSqlParser.KW_CAST: + case PostgreSqlParser.KW_CURRENT_CATALOG: + case PostgreSqlParser.KW_CURRENT_DATE: + case PostgreSqlParser.KW_CURRENT_ROLE: + case PostgreSqlParser.KW_CURRENT_TIME: + case PostgreSqlParser.KW_CURRENT_TIMESTAMP: + case PostgreSqlParser.KW_CURRENT_USER: + case PostgreSqlParser.KW_DEFAULT: + case PostgreSqlParser.KW_FALSE: + case PostgreSqlParser.KW_LOCALTIME: + case PostgreSqlParser.KW_LOCALTIMESTAMP: + case PostgreSqlParser.KW_NULL: + case PostgreSqlParser.KW_SESSION_USER: + case PostgreSqlParser.KW_TRUE: + case PostgreSqlParser.KW_UNIQUE: + case PostgreSqlParser.KW_USER: + case PostgreSqlParser.KW_AUTHORIZATION: + case PostgreSqlParser.KW_BINARY: + case PostgreSqlParser.KW_COLLATION: + case PostgreSqlParser.KW_CONCURRENTLY: + case PostgreSqlParser.KW_CROSS: + case PostgreSqlParser.KW_CURRENT_SCHEMA: + case PostgreSqlParser.KW_FREEZE: + case PostgreSqlParser.KW_FULL: + case PostgreSqlParser.KW_ILIKE: + case PostgreSqlParser.KW_INNER: + case PostgreSqlParser.KW_IS: + case PostgreSqlParser.KW_ISNULL: + case PostgreSqlParser.KW_JOIN: + case PostgreSqlParser.KW_LEFT: + case PostgreSqlParser.KW_LIKE: + case PostgreSqlParser.KW_NATURAL: + case PostgreSqlParser.KW_NOTNULL: + case PostgreSqlParser.KW_OUTER: + case PostgreSqlParser.KW_OVER: + case PostgreSqlParser.KW_OVERLAPS: + case PostgreSqlParser.KW_RIGHT: + case PostgreSqlParser.KW_SIMILAR: + case PostgreSqlParser.KW_VERBOSE: + case PostgreSqlParser.KW_ABORT: + case PostgreSqlParser.KW_ABSOLUTE: + case PostgreSqlParser.KW_ACCESS: + case PostgreSqlParser.KW_ACTION: + case PostgreSqlParser.KW_ADD: + case PostgreSqlParser.KW_ADMIN: + case PostgreSqlParser.KW_AFTER: + case PostgreSqlParser.KW_AGGREGATE: + case PostgreSqlParser.KW_ALSO: + case PostgreSqlParser.KW_ALTER: + case PostgreSqlParser.KW_ALWAYS: + case PostgreSqlParser.KW_ASSERTION: + case PostgreSqlParser.KW_ASSIGNMENT: + case PostgreSqlParser.KW_AT: + case PostgreSqlParser.KW_ATTRIBUTE: + case PostgreSqlParser.KW_BACKWARD: + case PostgreSqlParser.KW_BEFORE: + case PostgreSqlParser.KW_BEGIN: + case PostgreSqlParser.KW_BY: + case PostgreSqlParser.KW_CACHE: + case PostgreSqlParser.KW_CALLED: + case PostgreSqlParser.KW_CASCADE: + case PostgreSqlParser.KW_CASCADED: + case PostgreSqlParser.KW_CATALOG: + case PostgreSqlParser.KW_CHAIN: + case PostgreSqlParser.KW_CHARACTERISTICS: + case PostgreSqlParser.KW_CHECKPOINT: + case PostgreSqlParser.KW_CLASS: + case PostgreSqlParser.KW_CLOSE: + case PostgreSqlParser.KW_CLUSTER: + case PostgreSqlParser.KW_COMMENT: + case PostgreSqlParser.KW_COMMENTS: + case PostgreSqlParser.KW_COMMIT: + case PostgreSqlParser.KW_COMMITTED: + case PostgreSqlParser.KW_CONFIGURATION: + case PostgreSqlParser.KW_CONNECTION: + case PostgreSqlParser.KW_CONSTRAINTS: + case PostgreSqlParser.KW_CONTENT: + case PostgreSqlParser.KW_CONTINUE: + case PostgreSqlParser.KW_CONVERSION: + case PostgreSqlParser.KW_COPY: + case PostgreSqlParser.KW_COST: + case PostgreSqlParser.KW_CSV: + case PostgreSqlParser.KW_CURSOR: + case PostgreSqlParser.KW_CYCLE: + case PostgreSqlParser.KW_DATA: + case PostgreSqlParser.KW_DATABASE: + case PostgreSqlParser.KW_DAY: + case PostgreSqlParser.KW_DEALLOCATE: + case PostgreSqlParser.KW_DECLARE: + case PostgreSqlParser.KW_DEFAULTS: + case PostgreSqlParser.KW_DEFERRED: + case PostgreSqlParser.KW_DEFINER: + case PostgreSqlParser.KW_DELETE: + case PostgreSqlParser.KW_DELIMITER: + case PostgreSqlParser.KW_DELIMITERS: + case PostgreSqlParser.KW_DICTIONARY: + case PostgreSqlParser.KW_DISABLE: + case PostgreSqlParser.KW_DISCARD: + case PostgreSqlParser.KW_DOCUMENT: + case PostgreSqlParser.KW_DOMAIN: + case PostgreSqlParser.KW_DOUBLE: + case PostgreSqlParser.KW_DROP: + case PostgreSqlParser.KW_EACH: + case PostgreSqlParser.KW_ENABLE: + case PostgreSqlParser.KW_ENCODING: + case PostgreSqlParser.KW_ENCRYPTED: + case PostgreSqlParser.KW_ENUM: + case PostgreSqlParser.KW_ESCAPE: + case PostgreSqlParser.KW_EVENT: + case PostgreSqlParser.KW_EXCLUDE: + case PostgreSqlParser.KW_EXCLUDING: + case PostgreSqlParser.KW_EXCLUSIVE: + case PostgreSqlParser.KW_EXECUTE: + case PostgreSqlParser.KW_EXPLAIN: + case PostgreSqlParser.KW_EXTENSION: + case PostgreSqlParser.KW_EXTERNAL: + case PostgreSqlParser.KW_FAMILY: + case PostgreSqlParser.KW_FIRST: + case PostgreSqlParser.KW_FOLLOWING: + case PostgreSqlParser.KW_FORCE: + case PostgreSqlParser.KW_FORWARD: + case PostgreSqlParser.KW_FUNCTION: + case PostgreSqlParser.KW_FUNCTIONS: + case PostgreSqlParser.KW_GLOBAL: + case PostgreSqlParser.KW_GRANTED: + case PostgreSqlParser.KW_HANDLER: + case PostgreSqlParser.KW_HEADER: + case PostgreSqlParser.KW_HOLD: + case PostgreSqlParser.KW_HOUR: + case PostgreSqlParser.KW_IDENTITY: + case PostgreSqlParser.KW_IF: + case PostgreSqlParser.KW_IMMEDIATE: + case PostgreSqlParser.KW_IMMUTABLE: + case PostgreSqlParser.KW_IMPLICIT: + case PostgreSqlParser.KW_INCLUDING: + case PostgreSqlParser.KW_INCREMENT: + case PostgreSqlParser.KW_INDEX: + case PostgreSqlParser.KW_INDEXES: + case PostgreSqlParser.KW_INHERIT: + case PostgreSqlParser.KW_INHERITS: + case PostgreSqlParser.KW_INLINE: + case PostgreSqlParser.KW_INSENSITIVE: + case PostgreSqlParser.KW_INSERT: + case PostgreSqlParser.KW_INSTEAD: + case PostgreSqlParser.KW_INVOKER: + case PostgreSqlParser.KW_ISOLATION: + case PostgreSqlParser.KW_KEY: + case PostgreSqlParser.KW_LABEL: + case PostgreSqlParser.KW_LANGUAGE: + case PostgreSqlParser.KW_LARGE: + case PostgreSqlParser.KW_LAST: + case PostgreSqlParser.KW_LEAKPROOF: + case PostgreSqlParser.KW_LEVEL: + case PostgreSqlParser.KW_LISTEN: + case PostgreSqlParser.KW_LOAD: + case PostgreSqlParser.KW_LOCAL: + case PostgreSqlParser.KW_LOCATION: + case PostgreSqlParser.KW_LOCK: + case PostgreSqlParser.KW_MAPPING: + case PostgreSqlParser.KW_MATCH: + case PostgreSqlParser.KW_MATERIALIZED: + case PostgreSqlParser.KW_MAXVALUE: + case PostgreSqlParser.KW_MINUTE: + case PostgreSqlParser.KW_MINVALUE: + case PostgreSqlParser.KW_MODE: + case PostgreSqlParser.KW_MONTH: + case PostgreSqlParser.KW_MOVE: + case PostgreSqlParser.KW_NAME: + case PostgreSqlParser.KW_NAMES: + case PostgreSqlParser.KW_NEXT: + case PostgreSqlParser.KW_NO: + case PostgreSqlParser.KW_NOTHING: + case PostgreSqlParser.KW_NOTIFY: + case PostgreSqlParser.KW_NOWAIT: + case PostgreSqlParser.KW_NULLS: + case PostgreSqlParser.KW_OBJECT: + case PostgreSqlParser.KW_OF: + case PostgreSqlParser.KW_OFF: + case PostgreSqlParser.KW_OIDS: + case PostgreSqlParser.KW_OPERATOR: + case PostgreSqlParser.KW_OPTION: + case PostgreSqlParser.KW_OPTIONS: + case PostgreSqlParser.KW_OWNED: + case PostgreSqlParser.KW_OWNER: + case PostgreSqlParser.KW_PARSER: + case PostgreSqlParser.KW_PARTIAL: + case PostgreSqlParser.KW_PARTITION: + case PostgreSqlParser.KW_PASSING: + case PostgreSqlParser.KW_PASSWORD: + case PostgreSqlParser.KW_PLANS: + case PostgreSqlParser.KW_PRECEDING: + case PostgreSqlParser.KW_PREPARE: + case PostgreSqlParser.KW_PREPARED: + case PostgreSqlParser.KW_PRESERVE: + case PostgreSqlParser.KW_PRIOR: + case PostgreSqlParser.KW_PRIVILEGES: + case PostgreSqlParser.KW_PROCEDURAL: + case PostgreSqlParser.KW_PROCEDURE: + case PostgreSqlParser.KW_PROGRAM: + case PostgreSqlParser.KW_QUOTE: + case PostgreSqlParser.KW_RANGE: + case PostgreSqlParser.KW_READ: + case PostgreSqlParser.KW_REASSIGN: + case PostgreSqlParser.KW_RECHECK: + case PostgreSqlParser.KW_RECURSIVE: + case PostgreSqlParser.KW_REF: + case PostgreSqlParser.KW_REFRESH: + case PostgreSqlParser.KW_REINDEX: + case PostgreSqlParser.KW_RELATIVE: + case PostgreSqlParser.KW_RELEASE: + case PostgreSqlParser.KW_RENAME: + case PostgreSqlParser.KW_REPEATABLE: + case PostgreSqlParser.KW_REPLACE: + case PostgreSqlParser.KW_REPLICA: + case PostgreSqlParser.KW_RESET: + case PostgreSqlParser.KW_RESTART: + case PostgreSqlParser.KW_RESTRICT: + case PostgreSqlParser.KW_RETURNS: + case PostgreSqlParser.KW_REVOKE: + case PostgreSqlParser.KW_ROLE: + case PostgreSqlParser.KW_ROLLBACK: + case PostgreSqlParser.KW_ROWS: + case PostgreSqlParser.KW_RULE: + case PostgreSqlParser.KW_SAVEPOINT: + case PostgreSqlParser.KW_SCHEMA: + case PostgreSqlParser.KW_SCROLL: + case PostgreSqlParser.KW_SEARCH: + case PostgreSqlParser.KW_SECOND: + case PostgreSqlParser.KW_SECURITY: + case PostgreSqlParser.KW_SEQUENCE: + case PostgreSqlParser.KW_SEQUENCES: + case PostgreSqlParser.KW_SERIALIZABLE: + case PostgreSqlParser.KW_SERVER: + case PostgreSqlParser.KW_SESSION: + case PostgreSqlParser.KW_SET: + case PostgreSqlParser.KW_SHARE: + case PostgreSqlParser.KW_SHOW: + case PostgreSqlParser.KW_SIMPLE: + case PostgreSqlParser.KW_SNAPSHOT: + case PostgreSqlParser.KW_STABLE: + case PostgreSqlParser.KW_STANDALONE: + case PostgreSqlParser.KW_START: + case PostgreSqlParser.KW_STATEMENT: + case PostgreSqlParser.KW_STATISTICS: + case PostgreSqlParser.KW_STDIN: + case PostgreSqlParser.KW_STDOUT: + case PostgreSqlParser.KW_STORAGE: + case PostgreSqlParser.KW_STRICT: + case PostgreSqlParser.KW_STRIP: + case PostgreSqlParser.KW_SYSID: + case PostgreSqlParser.KW_SYSTEM: + case PostgreSqlParser.KW_TABLES: + case PostgreSqlParser.KW_TABLESPACE: + case PostgreSqlParser.KW_TEMP: + case PostgreSqlParser.KW_TEMPLATE: + case PostgreSqlParser.KW_TEMPORARY: + case PostgreSqlParser.KW_TEXT: + case PostgreSqlParser.KW_TRANSACTION: + case PostgreSqlParser.KW_TRIGGER: + case PostgreSqlParser.KW_TRUNCATE: + case PostgreSqlParser.KW_TRUSTED: + case PostgreSqlParser.KW_TYPE: + case PostgreSqlParser.KW_TYPES: + case PostgreSqlParser.KW_UNBOUNDED: + case PostgreSqlParser.KW_UNCOMMITTED: + case PostgreSqlParser.KW_UNENCRYPTED: + case PostgreSqlParser.KW_UNKNOWN: + case PostgreSqlParser.KW_UNLISTEN: + case PostgreSqlParser.KW_UNLOGGED: + case PostgreSqlParser.KW_UNTIL: + case PostgreSqlParser.KW_UPDATE: + case PostgreSqlParser.KW_VACUUM: + case PostgreSqlParser.KW_VALID: + case PostgreSqlParser.KW_VALIDATE: + case PostgreSqlParser.KW_VALIDATOR: + case PostgreSqlParser.KW_VARYING: + case PostgreSqlParser.KW_VERSION: + case PostgreSqlParser.KW_VIEW: + case PostgreSqlParser.KW_VOLATILE: + case PostgreSqlParser.KW_WHITESPACE: + case PostgreSqlParser.KW_WITHOUT: + case PostgreSqlParser.KW_WORK: + case PostgreSqlParser.KW_WRAPPER: + case PostgreSqlParser.KW_WRITE: + case PostgreSqlParser.KW_XML: + case PostgreSqlParser.KW_YEAR: + case PostgreSqlParser.KW_YES: + case PostgreSqlParser.KW_ZONE: + case PostgreSqlParser.KW_BETWEEN: + case PostgreSqlParser.KW_BIGINT: + case PostgreSqlParser.KW_BIT: + case PostgreSqlParser.KW_BOOLEAN: + case PostgreSqlParser.KW_CHAR: + case PostgreSqlParser.KW_CHARACTER: + case PostgreSqlParser.KW_COALESCE: + case PostgreSqlParser.KW_DEC: + case PostgreSqlParser.KW_DECIMAL: + case PostgreSqlParser.KW_EXISTS: + case PostgreSqlParser.KW_EXTRACT: + case PostgreSqlParser.KW_FLOAT: + case PostgreSqlParser.KW_GREATEST: + case PostgreSqlParser.KW_INOUT: + case PostgreSqlParser.KW_INT: + case PostgreSqlParser.KW_INTEGER: + case PostgreSqlParser.KW_INTERVAL: + case PostgreSqlParser.KW_LEAST: + case PostgreSqlParser.KW_NATIONAL: + case PostgreSqlParser.KW_NCHAR: + case PostgreSqlParser.KW_NONE: + case PostgreSqlParser.KW_NULLIF: + case PostgreSqlParser.KW_NUMERIC: + case PostgreSqlParser.KW_OVERLAY: + case PostgreSqlParser.KW_POSITION: + case PostgreSqlParser.KW_PRECISION: + case PostgreSqlParser.KW_REAL: + case PostgreSqlParser.KW_ROW: + case PostgreSqlParser.KW_SETOF: + case PostgreSqlParser.KW_SMALLINT: + case PostgreSqlParser.KW_SUBSTRING: + case PostgreSqlParser.KW_TIME: + case PostgreSqlParser.KW_TIMESTAMP: + case PostgreSqlParser.KW_TREAT: + case PostgreSqlParser.KW_TRIM: + case PostgreSqlParser.KW_VALUES: + case PostgreSqlParser.KW_VARCHAR: + case PostgreSqlParser.KW_XMLATTRIBUTES: + case PostgreSqlParser.KW_XMLCONCAT: + case PostgreSqlParser.KW_XMLELEMENT: + case PostgreSqlParser.KW_XMLEXISTS: + case PostgreSqlParser.KW_XMLFOREST: + case PostgreSqlParser.KW_XMLPARSE: + case PostgreSqlParser.KW_XMLPI: + case PostgreSqlParser.KW_XMLROOT: + case PostgreSqlParser.KW_XMLSERIALIZE: + case PostgreSqlParser.KW_CALL: + case PostgreSqlParser.KW_CURRENT: + case PostgreSqlParser.KW_ATTACH: + case PostgreSqlParser.KW_DETACH: + case PostgreSqlParser.KW_EXPRESSION: + case PostgreSqlParser.KW_GENERATED: + case PostgreSqlParser.KW_LOGGED: + case PostgreSqlParser.KW_STORED: + case PostgreSqlParser.KW_INCLUDE: + case PostgreSqlParser.KW_ROUTINE: + case PostgreSqlParser.KW_TRANSFORM: + case PostgreSqlParser.KW_IMPORT: + case PostgreSqlParser.KW_POLICY: + case PostgreSqlParser.KW_METHOD: + case PostgreSqlParser.KW_REFERENCING: + case PostgreSqlParser.KW_NEW: + case PostgreSqlParser.KW_OLD: + case PostgreSqlParser.KW_VALUE: + case PostgreSqlParser.KW_SUBSCRIPTION: + case PostgreSqlParser.KW_PUBLICATION: + case PostgreSqlParser.KW_OUT: + case PostgreSqlParser.KW_ROUTINES: + case PostgreSqlParser.KW_SCHEMAS: + case PostgreSqlParser.KW_PROCEDURES: + case PostgreSqlParser.KW_INPUT: + case PostgreSqlParser.KW_SUPPORT: + case PostgreSqlParser.KW_PARALLEL: + case PostgreSqlParser.KW_SQL: + case PostgreSqlParser.KW_DEPENDS: + case PostgreSqlParser.KW_OVERRIDING: + case PostgreSqlParser.KW_CONFLICT: + case PostgreSqlParser.KW_SKIP: + case PostgreSqlParser.KW_LOCKED: + case PostgreSqlParser.KW_TIES: + case PostgreSqlParser.KW_ROLLUP: + case PostgreSqlParser.KW_CUBE: + case PostgreSqlParser.KW_GROUPING: + case PostgreSqlParser.KW_SETS: + case PostgreSqlParser.KW_TABLESAMPLE: + case PostgreSqlParser.KW_ORDINALITY: + case PostgreSqlParser.KW_XMLTABLE: + case PostgreSqlParser.KW_COLUMNS: + case PostgreSqlParser.KW_XMLNAMESPACES: + case PostgreSqlParser.KW_ROWTYPE: + case PostgreSqlParser.KW_NORMALIZED: + case PostgreSqlParser.KW_WITHIN: + case PostgreSqlParser.KW_FILTER: + case PostgreSqlParser.KW_GROUPS: + case PostgreSqlParser.KW_OTHERS: + case PostgreSqlParser.KW_NFC: + case PostgreSqlParser.KW_NFD: + case PostgreSqlParser.KW_NFKC: + case PostgreSqlParser.KW_NFKD: + case PostgreSqlParser.KW_UESCAPE: + case PostgreSqlParser.KW_VIEWS: + case PostgreSqlParser.KW_NORMALIZE: + case PostgreSqlParser.KW_DUMP: + case PostgreSqlParser.KW_PRINT_STRICT_PARAMS: + case PostgreSqlParser.KW_VARIABLE_CONFLICT: + case PostgreSqlParser.KW_ERROR: + case PostgreSqlParser.KW_USE_VARIABLE: + case PostgreSqlParser.KW_USE_COLUMN: + case PostgreSqlParser.KW_ALIAS: + case PostgreSqlParser.KW_CONSTANT: + case PostgreSqlParser.KW_PERFORM: + case PostgreSqlParser.KW_GET: + case PostgreSqlParser.KW_DIAGNOSTICS: + case PostgreSqlParser.KW_STACKED: + case PostgreSqlParser.KW_ELSIF: + case PostgreSqlParser.KW_REVERSE: + case PostgreSqlParser.KW_SLICE: + case PostgreSqlParser.KW_EXIT: + case PostgreSqlParser.KW_RETURN: + case PostgreSqlParser.KW_QUERY: + case PostgreSqlParser.KW_RAISE: + case PostgreSqlParser.KW_SQLSTATE: + case PostgreSqlParser.KW_DEBUG: + case PostgreSqlParser.KW_LOG: + case PostgreSqlParser.KW_INFO: + case PostgreSqlParser.KW_NOTICE: + case PostgreSqlParser.KW_WARNING: + case PostgreSqlParser.KW_EXCEPTION: + case PostgreSqlParser.KW_ASSERT: + case PostgreSqlParser.KW_OPEN: + case PostgreSqlParser.KW_PUBLIC: + case PostgreSqlParser.KW_SKIP_LOCKED: + case PostgreSqlParser.KW_BUFFER_USAGE_LIMIT: + case PostgreSqlParser.Identifier: + case PostgreSqlParser.QuotedIdentifier: + case PostgreSqlParser.UnicodeQuotedIdentifier: + case PostgreSqlParser.StringConstant: + case PostgreSqlParser.UnicodeEscapeStringConstant: + case PostgreSqlParser.BeginDollarStringConstant: + case PostgreSqlParser.BinaryStringConstant: + case PostgreSqlParser.HexadecimalStringConstant: + case PostgreSqlParser.Integral: + case PostgreSqlParser.Numeric: + case PostgreSqlParser.PLSQLVARIABLENAME: + case PostgreSqlParser.PLSQLIDENTIFIER: + case PostgreSqlParser.EscapeStringConstant: + { + localContext = new PredicatedContext(localContext); + this.context = localContext; + previousContext = localContext; + + this.state = 6806; + (localContext as PredicatedContext)._valueExpression = this.valueExpression(0); + this.state = 6808; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 932, this.context) ) { + case 1: + { + this.state = 6807; + this.predicate((localContext as PredicatedContext)._valueExpression); + } + break; + } + } + break; + case PostgreSqlParser.KW_NOT: + { + localContext = new LogicalNotContext(localContext); + this.context = localContext; + previousContext = localContext; + this.state = 6810; + this.match(PostgreSqlParser.KW_NOT); + this.state = 6811; + this.booleanExpression(3); + } + break; + default: + throw new antlr.NoViableAltException(this); + } + this.context!.stop = this.tokenStream.LT(-1); + this.state = 6822; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 935, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + if (this._parseListeners != null) { + this.triggerExitRuleEvent(); + } + previousContext = localContext; + { + this.state = 6820; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 934, this.context) ) { + case 1: + { + localContext = new LogicalBinaryContext(new BooleanExpressionContext(parentContext, parentState)); + (localContext as LogicalBinaryContext)._left = previousContext; + this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_booleanExpression); + this.state = 6814; + if (!(this.precpred(this.context, 2))) { + throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 6907; - (localContext as ArithmeticBinaryContext)._right = this.valueExpression(3); + this.state = 6815; + (localContext as LogicalBinaryContext)._operator = this.match(PostgreSqlParser.KW_AND); + this.state = 6816; + (localContext as LogicalBinaryContext)._right = this.booleanExpression(3); } break; - case 3: + case 2: { - localContext = new ConcatenationContext(new ValueExpressionContext(parentContext, parentState)); - (localContext as ConcatenationContext)._left = previousContext; - this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_valueExpression); - this.state = 6908; + localContext = new LogicalBinaryContext(new BooleanExpressionContext(parentContext, parentState)); + (localContext as LogicalBinaryContext)._left = previousContext; + this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_booleanExpression); + this.state = 6817; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } + this.state = 6818; + (localContext as LogicalBinaryContext)._operator = this.match(PostgreSqlParser.KW_OR); + this.state = 6819; + (localContext as LogicalBinaryContext)._right = this.booleanExpression(2); + } + break; + } + } + } + this.state = 6824; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 935, this.context); + } + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.unrollRecursionContexts(parentContext); + } + return localContext; + } + public predicate(value: antlr.ParserRuleContext): PredicateContext { + let localContext = new PredicateContext(this.context, this.state, value); + this.enterRule(localContext, 674, PostgreSqlParser.RULE_predicate); + let _la: number; + try { + this.state = 6896; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 947, this.context) ) { + case 1: + localContext = new ComparisonContext(localContext); + this.enterOuterAlt(localContext, 1); + { + this.state = 6825; + this.comparisonOperator(); + this.state = 6826; + (localContext as ComparisonContext)._right = this.valueExpression(0); + } + break; + case 2: + localContext = new QuantifiedComparisonContext(localContext); + this.enterOuterAlt(localContext, 2); + { + this.state = 6828; + this.comparisonOperator(); + this.state = 6829; + this.subqueryOperator(); + this.state = 6830; + this.subType(); + this.state = 6836; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 936, this.context) ) { + case 1: + { + this.state = 6831; + this.selectWithParens(); + } + break; + case 2: + { + this.state = 6832; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 6833; + this.expression(); + this.state = 6834; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + break; + } + } + break; + case 3: + localContext = new BetweenContext(localContext); + this.enterOuterAlt(localContext, 3); + { + this.state = 6839; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 77) { + { + this.state = 6838; + this.match(PostgreSqlParser.KW_NOT); + } + } + + this.state = 6841; + this.match(PostgreSqlParser.KW_BETWEEN); + this.state = 6842; + (localContext as BetweenContext)._lower = this.valueExpression(0); + this.state = 6843; + this.match(PostgreSqlParser.KW_AND); + this.state = 6844; + (localContext as BetweenContext)._upper = this.valueExpression(0); + } + break; + case 4: + localContext = new InListContext(localContext); + this.enterOuterAlt(localContext, 4); + { + this.state = 6847; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 77) { + { + this.state = 6846; + this.match(PostgreSqlParser.KW_NOT); + } + } + + this.state = 6849; + this.match(PostgreSqlParser.KW_IN); + this.state = 6850; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 6851; + this.expression(); + this.state = 6856; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 6) { + { + { + this.state = 6852; + this.match(PostgreSqlParser.COMMA); + this.state = 6853; + this.expression(); + } + } + this.state = 6858; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } + this.state = 6859; + this.match(PostgreSqlParser.CLOSE_PAREN); + } + break; + case 5: + localContext = new InSubqueryContext(localContext); + this.enterOuterAlt(localContext, 5); + { + this.state = 6862; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 77) { + { + this.state = 6861; + this.match(PostgreSqlParser.KW_NOT); + } + } + + this.state = 6864; + this.match(PostgreSqlParser.KW_IN); + this.state = 6865; + this.selectWithParens(); + } + break; + case 6: + localContext = new LikeContext(localContext); + this.enterOuterAlt(localContext, 6); + { + this.state = 6867; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 77) { + { + this.state = 6866; + this.match(PostgreSqlParser.KW_NOT); + } + } + + this.state = 6877; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.KW_LIKE: + { + this.state = 6869; + this.match(PostgreSqlParser.KW_LIKE); + } + break; + case PostgreSqlParser.KW_ILIKE: + { + this.state = 6870; + this.match(PostgreSqlParser.KW_ILIKE); + } + break; + case PostgreSqlParser.KW_SIMILAR: + { + this.state = 6871; + this.match(PostgreSqlParser.KW_SIMILAR); + this.state = 6872; + this.match(PostgreSqlParser.KW_TO); + } + break; + case PostgreSqlParser.KW_BETWEEN: + { + this.state = 6873; + this.match(PostgreSqlParser.KW_BETWEEN); + this.state = 6875; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 91) { + { + this.state = 6874; + this.match(PostgreSqlParser.KW_SYMMETRIC); + } + } + + } + break; + default: + throw new antlr.NoViableAltException(this); + } + this.state = 6879; + (localContext as LikeContext)._pattern = this.valueExpression(0); + this.state = 6882; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 944, this.context) ) { + case 1: + { + this.state = 6880; + this.match(PostgreSqlParser.KW_ESCAPE); + this.state = 6881; + (localContext as LikeContext)._escape = this.valueExpression(0); + } + break; + } + } + break; + case 7: + localContext = new NullPredicateContext(localContext); + this.enterOuterAlt(localContext, 7); + { + this.state = 6884; + this.match(PostgreSqlParser.KW_IS); + this.state = 6886; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 77) { + { + this.state = 6885; + this.match(PostgreSqlParser.KW_NOT); + } + } + + this.state = 6888; + this.match(PostgreSqlParser.KW_NULL); + } + break; + case 8: + localContext = new DistinctFromContext(localContext); + this.enterOuterAlt(localContext, 8); + { + this.state = 6889; + this.match(PostgreSqlParser.KW_IS); + this.state = 6891; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 77) { + { + this.state = 6890; + this.match(PostgreSqlParser.KW_NOT); + } + } + + this.state = 6893; + this.match(PostgreSqlParser.KW_DISTINCT); + this.state = 6894; + this.match(PostgreSqlParser.KW_FROM); + this.state = 6895; + (localContext as DistinctFromContext)._right = this.valueExpression(0); + } + break; + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + + public valueExpression(): ValueExpressionContext; + public valueExpression(_p: number): ValueExpressionContext; + public valueExpression(_p?: number): ValueExpressionContext { + if (_p === undefined) { + _p = 0; + } + + let parentContext = this.context; + let parentState = this.state; + let localContext = new ValueExpressionContext(this.context, parentState); + let previousContext = localContext; + let _startState = 676; + this.enterRecursionRule(localContext, 676, PostgreSqlParser.RULE_valueExpression, _p); + let _la: number; + try { + let alternative: number; + this.enterOuterAlt(localContext, 1); + { + this.state = 6902; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 948, this.context) ) { + case 1: + { + localContext = new ValueExpressionDefaultContext(localContext); + this.context = localContext; + previousContext = localContext; + + this.state = 6899; + this.primaryExpression(0); + } + break; + case 2: + { + localContext = new ArithmeticUnaryContext(localContext); + this.context = localContext; + previousContext = localContext; + this.state = 6900; + (localContext as ArithmeticUnaryContext)._operator = this.tokenStream.LT(1); + _la = this.tokenStream.LA(1); + if(!(_la === 12 || _la === 13)) { + (localContext as ArithmeticUnaryContext)._operator = this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 6901; + this.valueExpression(4); + } + break; + } + this.context!.stop = this.tokenStream.LT(-1); + this.state = 6920; + this.errorHandler.sync(this); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 950, this.context); + while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { + if (alternative === 1) { + if (this._parseListeners != null) { + this.triggerExitRuleEvent(); + } + previousContext = localContext; + { + this.state = 6918; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 949, this.context) ) { + case 1: + { + localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); + (localContext as ArithmeticBinaryContext)._left = previousContext; + this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_valueExpression); + this.state = 6904; + if (!(this.precpred(this.context, 3))) { + throw this.createFailedPredicateException("this.precpred(this.context, 3)"); + } + this.state = 6905; + (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); + _la = this.tokenStream.LA(1); + if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 134234624) !== 0))) { + (localContext as ArithmeticBinaryContext)._operator = this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + this.state = 6906; + (localContext as ArithmeticBinaryContext)._right = this.valueExpression(4); + } + break; + case 2: + { + localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); + (localContext as ArithmeticBinaryContext)._left = previousContext; + this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_valueExpression); + this.state = 6907; + if (!(this.precpred(this.context, 2))) { + throw this.createFailedPredicateException("this.precpred(this.context, 2)"); + } + this.state = 6908; + (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); + _la = this.tokenStream.LA(1); + if(!(_la === 12 || _la === 13)) { + (localContext as ArithmeticBinaryContext)._operator = this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } this.state = 6909; - this.match(PostgreSqlParser.CARET); + (localContext as ArithmeticBinaryContext)._right = this.valueExpression(3); + } + break; + case 3: + { + localContext = new ConcatenationContext(new ValueExpressionContext(parentContext, parentState)); + (localContext as ConcatenationContext)._left = previousContext; + this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_valueExpression); this.state = 6910; + if (!(this.precpred(this.context, 1))) { + throw this.createFailedPredicateException("this.precpred(this.context, 1)"); + } + this.state = 6911; + this.match(PostgreSqlParser.CARET); + this.state = 6912; (localContext as ConcatenationContext)._right = this.valueExpression(2); } break; @@ -41490,24 +44383,24 @@ export class PostgreSqlParser extends SQLParserBase { { localContext = new AtTimeZoneContext(new ValueExpressionContext(parentContext, parentState)); this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_valueExpression); - this.state = 6911; + this.state = 6913; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 6912; + this.state = 6914; this.match(PostgreSqlParser.KW_AT); - this.state = 6913; + this.state = 6915; this.match(PostgreSqlParser.KW_TIME); - this.state = 6914; + this.state = 6916; this.match(PostgreSqlParser.KW_ZONE); - this.state = 6915; + this.state = 6917; this.expression(); } break; } } } - this.state = 6920; + this.state = 6922; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 950, this.context); } @@ -41546,12 +44439,12 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7009; + this.state = 7011; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 961, this.context) ) { case 1: { - this.state = 6922; + this.state = 6924; _la = this.tokenStream.LA(1); if(!(_la === 98 || _la === 396)) { this.errorHandler.recoverInline(this); @@ -41560,26 +44453,26 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 6923; + this.state = 6925; this.selectWithParens(); } break; case 2: { - this.state = 6924; + this.state = 6926; this.match(PostgreSqlParser.KW_ARRAY); - this.state = 6927; + this.state = 6929; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: { - this.state = 6925; + this.state = 6927; this.selectWithParens(); } break; case PostgreSqlParser.OPEN_BRACKET: { - this.state = 6926; + this.state = 6928; this.arrayExpr(); } break; @@ -41590,49 +44483,49 @@ export class PostgreSqlParser extends SQLParserBase { break; case 3: { - this.state = 6929; + this.state = 6931; this.match(PostgreSqlParser.PARAM); - this.state = 6930; + this.state = 6932; this.optIndirection(); } break; case 4: { - this.state = 6931; + this.state = 6933; this.match(PostgreSqlParser.KW_GROUPING); - this.state = 6932; + this.state = 6934; this.executeParamClause(); } break; case 5: { - this.state = 6933; + this.state = 6935; this.match(PostgreSqlParser.Integral); } break; case 6: { - this.state = 6934; + this.state = 6936; this.match(PostgreSqlParser.Numeric); } break; case 7: { - this.state = 6935; + this.state = 6937; this.match(PostgreSqlParser.BinaryStringConstant); } break; case 8: { - this.state = 6936; + this.state = 6938; this.match(PostgreSqlParser.HexadecimalStringConstant); } break; case 9: { - this.state = 6937; + this.state = 6939; this.functionName(); - this.state = 6947; + this.state = 6949; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: @@ -41640,29 +44533,29 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 6938; + this.state = 6940; this.stringConst(); } break; case PostgreSqlParser.OPEN_PAREN: { - this.state = 6939; + this.state = 6941; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6940; - this.funcArgList(); this.state = 6942; + this.funcArgList(); + this.state = 6944; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 83) { { - this.state = 6941; + this.state = 6943; this.sortClause(); } } - this.state = 6944; + this.state = 6946; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 6945; + this.state = 6947; this.stringConst(); } break; @@ -41673,25 +44566,25 @@ export class PostgreSqlParser extends SQLParserBase { break; case 10: { - this.state = 6950; + this.state = 6952; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 190 || ((((_la - 388)) & ~0x1F) === 0 && ((1 << (_la - 388)) & 3525731551) !== 0) || _la === 423) { { - this.state = 6949; + this.state = 6951; this.constTypeName(); } } - this.state = 6952; + this.state = 6954; this.stringConst(); } break; case 11: { - this.state = 6953; + this.state = 6955; this.match(PostgreSqlParser.KW_INTERVAL); - this.state = 6961; + this.state = 6963; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: @@ -41699,14 +44592,14 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.BeginDollarStringConstant: case PostgreSqlParser.EscapeStringConstant: { - this.state = 6954; - this.stringConst(); this.state = 6956; + this.stringConst(); + this.state = 6958; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 955, this.context) ) { case 1: { - this.state = 6955; + this.state = 6957; this.optInterval(); } break; @@ -41715,9 +44608,9 @@ export class PostgreSqlParser extends SQLParserBase { break; case PostgreSqlParser.OPEN_PAREN: { - this.state = 6958; + this.state = 6960; this.optFloat(); - this.state = 6959; + this.state = 6961; this.stringConst(); } break; @@ -41728,100 +44621,100 @@ export class PostgreSqlParser extends SQLParserBase { break; case 12: { - this.state = 6963; + this.state = 6965; this.match(PostgreSqlParser.KW_TRUE); } break; case 13: { - this.state = 6964; + this.state = 6966; this.match(PostgreSqlParser.KW_FALSE); } break; case 14: { - this.state = 6965; + this.state = 6967; this.match(PostgreSqlParser.KW_NULL); } break; case 15: { - this.state = 6966; + this.state = 6968; this.match(PostgreSqlParser.PLSQLVARIABLENAME); } break; case 16: { - this.state = 6967; + this.state = 6969; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6968; + this.state = 6970; localContext._a_expr_in_parens = this.expression(); - this.state = 6969; + this.state = 6971; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 6970; + this.state = 6972; this.optIndirection(); } break; case 17: { - this.state = 6972; - this.match(PostgreSqlParser.KW_CASE); this.state = 6974; + this.match(PostgreSqlParser.KW_CASE); + this.state = 6976; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 957, this.context) ) { - case 1: + _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)) & 3901572195) !== 0) || _la === 586) { { - this.state = 6973; + this.state = 6975; this.expression(); } - break; } - this.state = 6977; + + this.state = 6979; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 6976; + this.state = 6978; this.when_clause(); } } - this.state = 6979; + this.state = 6981; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 102); - this.state = 6983; + this.state = 6985; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 58) { { - this.state = 6981; + this.state = 6983; this.match(PostgreSqlParser.KW_ELSE); - this.state = 6982; + this.state = 6984; this.expression(); } } - this.state = 6985; + this.state = 6987; this.match(PostgreSqlParser.KW_END); } break; case 18: { - this.state = 6987; + this.state = 6989; this.func_expr(); } break; case 19: { - this.state = 6988; - this.selectWithParens(); this.state = 6990; + this.selectWithParens(); + this.state = 6992; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 960, this.context) ) { case 1: { - this.state = 6989; + this.state = 6991; this.indirection(); } break; @@ -41830,43 +44723,43 @@ export class PostgreSqlParser extends SQLParserBase { break; case 20: { - this.state = 6992; + this.state = 6994; this.explicitRow(); } break; case 21: { - this.state = 6993; + this.state = 6995; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 6994; + this.state = 6996; this.expression(); - this.state = 6995; + this.state = 6997; this.match(PostgreSqlParser.COMMA); - this.state = 6996; + this.state = 6998; this.exprList(); - this.state = 6997; + this.state = 6999; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case 22: { - this.state = 6999; + this.state = 7001; this.row(); - this.state = 7000; + this.state = 7002; this.match(PostgreSqlParser.KW_OVERLAPS); - this.state = 7001; + this.state = 7003; this.row(); } break; case 23: { - this.state = 7003; + this.state = 7005; this.columnNamePath(); } break; case 24: { - this.state = 7004; + this.state = 7006; _la = this.tokenStream.LA(1); if(!(_la === 12 || _la === 13)) { this.errorHandler.recoverInline(this); @@ -41875,21 +44768,21 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7005; + this.state = 7007; this.primaryExpression(5); } break; case 25: { - this.state = 7006; + this.state = 7008; this.qualOp(); - this.state = 7007; + this.state = 7009; this.primaryExpression(2); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 7038; + this.state = 7040; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 966, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -41899,20 +44792,20 @@ export class PostgreSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 7036; + this.state = 7038; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 965, this.context) ) { case 1: { localContext = new PrimaryExpressionContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_primaryExpression); - this.state = 7011; + this.state = 7013; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 7012; + this.state = 7014; this.mathOp(); - this.state = 7013; + this.state = 7015; this.primaryExpression(4); } break; @@ -41920,13 +44813,13 @@ export class PostgreSqlParser extends SQLParserBase { { localContext = new PrimaryExpressionContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_primaryExpression); - this.state = 7015; + this.state = 7017; if (!(this.precpred(this.context, 6))) { throw this.createFailedPredicateException("this.precpred(this.context, 6)"); } - this.state = 7016; + this.state = 7018; this.match(PostgreSqlParser.TYPECAST); - this.state = 7017; + this.state = 7019; this.typename(); } break; @@ -41934,18 +44827,18 @@ export class PostgreSqlParser extends SQLParserBase { { localContext = new PrimaryExpressionContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_primaryExpression); - this.state = 7018; + this.state = 7020; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 7019; - this.qualOp(); this.state = 7021; + this.qualOp(); + this.state = 7023; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 962, this.context) ) { case 1: { - this.state = 7020; + this.state = 7022; this.primaryExpression(0); } break; @@ -41956,46 +44849,46 @@ export class PostgreSqlParser extends SQLParserBase { { localContext = new PrimaryExpressionContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, PostgreSqlParser.RULE_primaryExpression); - this.state = 7023; + this.state = 7025; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 7024; - this.match(PostgreSqlParser.KW_IS); this.state = 7026; + this.match(PostgreSqlParser.KW_IS); + this.state = 7028; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 7025; + this.state = 7027; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 7034; + this.state = 7036; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DISTINCT: { - this.state = 7028; + this.state = 7030; this.match(PostgreSqlParser.KW_DISTINCT); - this.state = 7029; + this.state = 7031; this.match(PostgreSqlParser.KW_FROM); - this.state = 7030; + this.state = 7032; this.primaryExpression(0); } break; case PostgreSqlParser.KW_OF: { - this.state = 7031; + this.state = 7033; this.match(PostgreSqlParser.KW_OF); - this.state = 7032; + this.state = 7034; this.prepTypeClause(); } break; case PostgreSqlParser.KW_DOCUMENT: { - this.state = 7033; + this.state = 7035; this.match(PostgreSqlParser.KW_DOCUMENT); } break; @@ -42007,7 +44900,7 @@ export class PostgreSqlParser extends SQLParserBase { } } } - this.state = 7040; + this.state = 7042; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 966, this.context); } @@ -42034,64 +44927,506 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7041; + this.state = 7043; this.functionName(); - this.state = 7042; + this.state = 7044; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7063; + this.state = 7065; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 971, this.context) ) { - case 1: - { - this.state = 7043; - this.funcArgList(); - this.state = 7047; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 6) { - { - this.state = 7044; - this.match(PostgreSqlParser.COMMA); - this.state = 7045; - this.match(PostgreSqlParser.KW_VARIADIC); - this.state = 7046; - this.funcArgExpr(); - } - } - - this.state = 7050; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 83) { - { - this.state = 7049; + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.OPEN_PAREN: + case PostgreSqlParser.PLUS: + case PostgreSqlParser.MINUS: + case PostgreSqlParser.PARAM: + case PostgreSqlParser.Operator: + case PostgreSqlParser.KW_ARRAY: + case PostgreSqlParser.KW_CASE: + case PostgreSqlParser.KW_CAST: + case PostgreSqlParser.KW_CURRENT_CATALOG: + case PostgreSqlParser.KW_CURRENT_DATE: + case PostgreSqlParser.KW_CURRENT_ROLE: + case PostgreSqlParser.KW_CURRENT_TIME: + case PostgreSqlParser.KW_CURRENT_TIMESTAMP: + case PostgreSqlParser.KW_CURRENT_USER: + case PostgreSqlParser.KW_DEFAULT: + case PostgreSqlParser.KW_FALSE: + case PostgreSqlParser.KW_LOCALTIME: + case PostgreSqlParser.KW_LOCALTIMESTAMP: + case PostgreSqlParser.KW_NOT: + case PostgreSqlParser.KW_NULL: + case PostgreSqlParser.KW_SESSION_USER: + case PostgreSqlParser.KW_TRUE: + case PostgreSqlParser.KW_UNIQUE: + case PostgreSqlParser.KW_USER: + case PostgreSqlParser.KW_AUTHORIZATION: + case PostgreSqlParser.KW_BINARY: + case PostgreSqlParser.KW_COLLATION: + case PostgreSqlParser.KW_CONCURRENTLY: + case PostgreSqlParser.KW_CROSS: + case PostgreSqlParser.KW_CURRENT_SCHEMA: + case PostgreSqlParser.KW_FREEZE: + case PostgreSqlParser.KW_FULL: + case PostgreSqlParser.KW_ILIKE: + case PostgreSqlParser.KW_INNER: + case PostgreSqlParser.KW_IS: + case PostgreSqlParser.KW_ISNULL: + case PostgreSqlParser.KW_JOIN: + case PostgreSqlParser.KW_LEFT: + case PostgreSqlParser.KW_LIKE: + case PostgreSqlParser.KW_NATURAL: + case PostgreSqlParser.KW_NOTNULL: + case PostgreSqlParser.KW_OUTER: + case PostgreSqlParser.KW_OVER: + case PostgreSqlParser.KW_OVERLAPS: + case PostgreSqlParser.KW_RIGHT: + case PostgreSqlParser.KW_SIMILAR: + case PostgreSqlParser.KW_VERBOSE: + case PostgreSqlParser.KW_ABORT: + case PostgreSqlParser.KW_ABSOLUTE: + case PostgreSqlParser.KW_ACCESS: + case PostgreSqlParser.KW_ACTION: + case PostgreSqlParser.KW_ADD: + case PostgreSqlParser.KW_ADMIN: + case PostgreSqlParser.KW_AFTER: + case PostgreSqlParser.KW_AGGREGATE: + case PostgreSqlParser.KW_ALSO: + case PostgreSqlParser.KW_ALTER: + case PostgreSqlParser.KW_ALWAYS: + case PostgreSqlParser.KW_ASSERTION: + case PostgreSqlParser.KW_ASSIGNMENT: + case PostgreSqlParser.KW_AT: + case PostgreSqlParser.KW_ATTRIBUTE: + case PostgreSqlParser.KW_BACKWARD: + case PostgreSqlParser.KW_BEFORE: + case PostgreSqlParser.KW_BEGIN: + case PostgreSqlParser.KW_BY: + case PostgreSqlParser.KW_CACHE: + case PostgreSqlParser.KW_CALLED: + case PostgreSqlParser.KW_CASCADE: + case PostgreSqlParser.KW_CASCADED: + case PostgreSqlParser.KW_CATALOG: + case PostgreSqlParser.KW_CHAIN: + case PostgreSqlParser.KW_CHARACTERISTICS: + case PostgreSqlParser.KW_CHECKPOINT: + case PostgreSqlParser.KW_CLASS: + case PostgreSqlParser.KW_CLOSE: + case PostgreSqlParser.KW_CLUSTER: + case PostgreSqlParser.KW_COMMENT: + case PostgreSqlParser.KW_COMMENTS: + case PostgreSqlParser.KW_COMMIT: + case PostgreSqlParser.KW_COMMITTED: + case PostgreSqlParser.KW_CONFIGURATION: + case PostgreSqlParser.KW_CONNECTION: + case PostgreSqlParser.KW_CONSTRAINTS: + case PostgreSqlParser.KW_CONTENT: + case PostgreSqlParser.KW_CONTINUE: + case PostgreSqlParser.KW_CONVERSION: + case PostgreSqlParser.KW_COPY: + case PostgreSqlParser.KW_COST: + case PostgreSqlParser.KW_CSV: + case PostgreSqlParser.KW_CURSOR: + case PostgreSqlParser.KW_CYCLE: + case PostgreSqlParser.KW_DATA: + case PostgreSqlParser.KW_DATABASE: + case PostgreSqlParser.KW_DAY: + case PostgreSqlParser.KW_DEALLOCATE: + case PostgreSqlParser.KW_DECLARE: + case PostgreSqlParser.KW_DEFAULTS: + case PostgreSqlParser.KW_DEFERRED: + case PostgreSqlParser.KW_DEFINER: + case PostgreSqlParser.KW_DELETE: + case PostgreSqlParser.KW_DELIMITER: + case PostgreSqlParser.KW_DELIMITERS: + case PostgreSqlParser.KW_DICTIONARY: + case PostgreSqlParser.KW_DISABLE: + case PostgreSqlParser.KW_DISCARD: + case PostgreSqlParser.KW_DOCUMENT: + case PostgreSqlParser.KW_DOMAIN: + case PostgreSqlParser.KW_DOUBLE: + case PostgreSqlParser.KW_DROP: + case PostgreSqlParser.KW_EACH: + case PostgreSqlParser.KW_ENABLE: + case PostgreSqlParser.KW_ENCODING: + case PostgreSqlParser.KW_ENCRYPTED: + case PostgreSqlParser.KW_ENUM: + case PostgreSqlParser.KW_ESCAPE: + case PostgreSqlParser.KW_EVENT: + case PostgreSqlParser.KW_EXCLUDE: + case PostgreSqlParser.KW_EXCLUDING: + case PostgreSqlParser.KW_EXCLUSIVE: + case PostgreSqlParser.KW_EXECUTE: + case PostgreSqlParser.KW_EXPLAIN: + case PostgreSqlParser.KW_EXTENSION: + case PostgreSqlParser.KW_EXTERNAL: + case PostgreSqlParser.KW_FAMILY: + case PostgreSqlParser.KW_FIRST: + case PostgreSqlParser.KW_FOLLOWING: + case PostgreSqlParser.KW_FORCE: + case PostgreSqlParser.KW_FORWARD: + case PostgreSqlParser.KW_FUNCTION: + case PostgreSqlParser.KW_FUNCTIONS: + case PostgreSqlParser.KW_GLOBAL: + case PostgreSqlParser.KW_GRANTED: + case PostgreSqlParser.KW_HANDLER: + case PostgreSqlParser.KW_HEADER: + case PostgreSqlParser.KW_HOLD: + case PostgreSqlParser.KW_HOUR: + case PostgreSqlParser.KW_IDENTITY: + case PostgreSqlParser.KW_IF: + case PostgreSqlParser.KW_IMMEDIATE: + case PostgreSqlParser.KW_IMMUTABLE: + case PostgreSqlParser.KW_IMPLICIT: + case PostgreSqlParser.KW_INCLUDING: + case PostgreSqlParser.KW_INCREMENT: + case PostgreSqlParser.KW_INDEX: + case PostgreSqlParser.KW_INDEXES: + case PostgreSqlParser.KW_INHERIT: + case PostgreSqlParser.KW_INHERITS: + case PostgreSqlParser.KW_INLINE: + case PostgreSqlParser.KW_INSENSITIVE: + case PostgreSqlParser.KW_INSERT: + case PostgreSqlParser.KW_INSTEAD: + case PostgreSqlParser.KW_INVOKER: + case PostgreSqlParser.KW_ISOLATION: + case PostgreSqlParser.KW_KEY: + case PostgreSqlParser.KW_LABEL: + case PostgreSqlParser.KW_LANGUAGE: + case PostgreSqlParser.KW_LARGE: + case PostgreSqlParser.KW_LAST: + case PostgreSqlParser.KW_LEAKPROOF: + case PostgreSqlParser.KW_LEVEL: + case PostgreSqlParser.KW_LISTEN: + case PostgreSqlParser.KW_LOAD: + case PostgreSqlParser.KW_LOCAL: + case PostgreSqlParser.KW_LOCATION: + case PostgreSqlParser.KW_LOCK: + case PostgreSqlParser.KW_MAPPING: + case PostgreSqlParser.KW_MATCH: + case PostgreSqlParser.KW_MATERIALIZED: + case PostgreSqlParser.KW_MAXVALUE: + case PostgreSqlParser.KW_MINUTE: + case PostgreSqlParser.KW_MINVALUE: + case PostgreSqlParser.KW_MODE: + case PostgreSqlParser.KW_MONTH: + case PostgreSqlParser.KW_MOVE: + case PostgreSqlParser.KW_NAME: + case PostgreSqlParser.KW_NAMES: + case PostgreSqlParser.KW_NEXT: + case PostgreSqlParser.KW_NO: + case PostgreSqlParser.KW_NOTHING: + case PostgreSqlParser.KW_NOTIFY: + case PostgreSqlParser.KW_NOWAIT: + case PostgreSqlParser.KW_NULLS: + case PostgreSqlParser.KW_OBJECT: + case PostgreSqlParser.KW_OF: + case PostgreSqlParser.KW_OFF: + case PostgreSqlParser.KW_OIDS: + case PostgreSqlParser.KW_OPERATOR: + case PostgreSqlParser.KW_OPTION: + case PostgreSqlParser.KW_OPTIONS: + case PostgreSqlParser.KW_OWNED: + case PostgreSqlParser.KW_OWNER: + case PostgreSqlParser.KW_PARSER: + case PostgreSqlParser.KW_PARTIAL: + case PostgreSqlParser.KW_PARTITION: + case PostgreSqlParser.KW_PASSING: + case PostgreSqlParser.KW_PASSWORD: + case PostgreSqlParser.KW_PLANS: + case PostgreSqlParser.KW_PRECEDING: + case PostgreSqlParser.KW_PREPARE: + case PostgreSqlParser.KW_PREPARED: + case PostgreSqlParser.KW_PRESERVE: + case PostgreSqlParser.KW_PRIOR: + case PostgreSqlParser.KW_PRIVILEGES: + case PostgreSqlParser.KW_PROCEDURAL: + case PostgreSqlParser.KW_PROCEDURE: + case PostgreSqlParser.KW_PROGRAM: + case PostgreSqlParser.KW_QUOTE: + case PostgreSqlParser.KW_RANGE: + case PostgreSqlParser.KW_READ: + case PostgreSqlParser.KW_REASSIGN: + case PostgreSqlParser.KW_RECHECK: + case PostgreSqlParser.KW_RECURSIVE: + case PostgreSqlParser.KW_REF: + case PostgreSqlParser.KW_REFRESH: + case PostgreSqlParser.KW_REINDEX: + case PostgreSqlParser.KW_RELATIVE: + case PostgreSqlParser.KW_RELEASE: + case PostgreSqlParser.KW_RENAME: + case PostgreSqlParser.KW_REPEATABLE: + case PostgreSqlParser.KW_REPLACE: + case PostgreSqlParser.KW_REPLICA: + case PostgreSqlParser.KW_RESET: + case PostgreSqlParser.KW_RESTART: + case PostgreSqlParser.KW_RESTRICT: + case PostgreSqlParser.KW_RETURNS: + case PostgreSqlParser.KW_REVOKE: + case PostgreSqlParser.KW_ROLE: + case PostgreSqlParser.KW_ROLLBACK: + case PostgreSqlParser.KW_ROWS: + case PostgreSqlParser.KW_RULE: + case PostgreSqlParser.KW_SAVEPOINT: + case PostgreSqlParser.KW_SCHEMA: + case PostgreSqlParser.KW_SCROLL: + case PostgreSqlParser.KW_SEARCH: + case PostgreSqlParser.KW_SECOND: + case PostgreSqlParser.KW_SECURITY: + case PostgreSqlParser.KW_SEQUENCE: + case PostgreSqlParser.KW_SEQUENCES: + case PostgreSqlParser.KW_SERIALIZABLE: + case PostgreSqlParser.KW_SERVER: + case PostgreSqlParser.KW_SESSION: + case PostgreSqlParser.KW_SET: + case PostgreSqlParser.KW_SHARE: + case PostgreSqlParser.KW_SHOW: + case PostgreSqlParser.KW_SIMPLE: + case PostgreSqlParser.KW_SNAPSHOT: + case PostgreSqlParser.KW_STABLE: + case PostgreSqlParser.KW_STANDALONE: + case PostgreSqlParser.KW_START: + case PostgreSqlParser.KW_STATEMENT: + case PostgreSqlParser.KW_STATISTICS: + case PostgreSqlParser.KW_STDIN: + case PostgreSqlParser.KW_STDOUT: + case PostgreSqlParser.KW_STORAGE: + case PostgreSqlParser.KW_STRICT: + case PostgreSqlParser.KW_STRIP: + case PostgreSqlParser.KW_SYSID: + case PostgreSqlParser.KW_SYSTEM: + case PostgreSqlParser.KW_TABLES: + case PostgreSqlParser.KW_TABLESPACE: + case PostgreSqlParser.KW_TEMP: + case PostgreSqlParser.KW_TEMPLATE: + case PostgreSqlParser.KW_TEMPORARY: + case PostgreSqlParser.KW_TEXT: + case PostgreSqlParser.KW_TRANSACTION: + case PostgreSqlParser.KW_TRIGGER: + case PostgreSqlParser.KW_TRUNCATE: + case PostgreSqlParser.KW_TRUSTED: + case PostgreSqlParser.KW_TYPE: + case PostgreSqlParser.KW_TYPES: + case PostgreSqlParser.KW_UNBOUNDED: + case PostgreSqlParser.KW_UNCOMMITTED: + case PostgreSqlParser.KW_UNENCRYPTED: + case PostgreSqlParser.KW_UNKNOWN: + case PostgreSqlParser.KW_UNLISTEN: + case PostgreSqlParser.KW_UNLOGGED: + case PostgreSqlParser.KW_UNTIL: + case PostgreSqlParser.KW_UPDATE: + case PostgreSqlParser.KW_VACUUM: + case PostgreSqlParser.KW_VALID: + case PostgreSqlParser.KW_VALIDATE: + case PostgreSqlParser.KW_VALIDATOR: + case PostgreSqlParser.KW_VARYING: + case PostgreSqlParser.KW_VERSION: + case PostgreSqlParser.KW_VIEW: + case PostgreSqlParser.KW_VOLATILE: + case PostgreSqlParser.KW_WHITESPACE: + case PostgreSqlParser.KW_WITHOUT: + case PostgreSqlParser.KW_WORK: + case PostgreSqlParser.KW_WRAPPER: + case PostgreSqlParser.KW_WRITE: + case PostgreSqlParser.KW_XML: + case PostgreSqlParser.KW_YEAR: + case PostgreSqlParser.KW_YES: + case PostgreSqlParser.KW_ZONE: + case PostgreSqlParser.KW_BETWEEN: + case PostgreSqlParser.KW_BIGINT: + case PostgreSqlParser.KW_BIT: + case PostgreSqlParser.KW_BOOLEAN: + case PostgreSqlParser.KW_CHAR: + case PostgreSqlParser.KW_CHARACTER: + case PostgreSqlParser.KW_COALESCE: + case PostgreSqlParser.KW_DEC: + case PostgreSqlParser.KW_DECIMAL: + case PostgreSqlParser.KW_EXISTS: + case PostgreSqlParser.KW_EXTRACT: + case PostgreSqlParser.KW_FLOAT: + case PostgreSqlParser.KW_GREATEST: + case PostgreSqlParser.KW_INOUT: + case PostgreSqlParser.KW_INT: + case PostgreSqlParser.KW_INTEGER: + case PostgreSqlParser.KW_INTERVAL: + case PostgreSqlParser.KW_LEAST: + case PostgreSqlParser.KW_NATIONAL: + case PostgreSqlParser.KW_NCHAR: + case PostgreSqlParser.KW_NONE: + case PostgreSqlParser.KW_NULLIF: + case PostgreSqlParser.KW_NUMERIC: + case PostgreSqlParser.KW_OVERLAY: + case PostgreSqlParser.KW_POSITION: + case PostgreSqlParser.KW_PRECISION: + case PostgreSqlParser.KW_REAL: + case PostgreSqlParser.KW_ROW: + case PostgreSqlParser.KW_SETOF: + case PostgreSqlParser.KW_SMALLINT: + case PostgreSqlParser.KW_SUBSTRING: + case PostgreSqlParser.KW_TIME: + case PostgreSqlParser.KW_TIMESTAMP: + case PostgreSqlParser.KW_TREAT: + case PostgreSqlParser.KW_TRIM: + case PostgreSqlParser.KW_VALUES: + case PostgreSqlParser.KW_VARCHAR: + case PostgreSqlParser.KW_XMLATTRIBUTES: + case PostgreSqlParser.KW_XMLCONCAT: + case PostgreSqlParser.KW_XMLELEMENT: + case PostgreSqlParser.KW_XMLEXISTS: + case PostgreSqlParser.KW_XMLFOREST: + case PostgreSqlParser.KW_XMLPARSE: + case PostgreSqlParser.KW_XMLPI: + case PostgreSqlParser.KW_XMLROOT: + case PostgreSqlParser.KW_XMLSERIALIZE: + case PostgreSqlParser.KW_CALL: + case PostgreSqlParser.KW_CURRENT: + case PostgreSqlParser.KW_ATTACH: + case PostgreSqlParser.KW_DETACH: + case PostgreSqlParser.KW_EXPRESSION: + case PostgreSqlParser.KW_GENERATED: + case PostgreSqlParser.KW_LOGGED: + case PostgreSqlParser.KW_STORED: + case PostgreSqlParser.KW_INCLUDE: + case PostgreSqlParser.KW_ROUTINE: + case PostgreSqlParser.KW_TRANSFORM: + case PostgreSqlParser.KW_IMPORT: + case PostgreSqlParser.KW_POLICY: + case PostgreSqlParser.KW_METHOD: + case PostgreSqlParser.KW_REFERENCING: + case PostgreSqlParser.KW_NEW: + case PostgreSqlParser.KW_OLD: + case PostgreSqlParser.KW_VALUE: + case PostgreSqlParser.KW_SUBSCRIPTION: + case PostgreSqlParser.KW_PUBLICATION: + case PostgreSqlParser.KW_OUT: + case PostgreSqlParser.KW_ROUTINES: + case PostgreSqlParser.KW_SCHEMAS: + case PostgreSqlParser.KW_PROCEDURES: + case PostgreSqlParser.KW_INPUT: + case PostgreSqlParser.KW_SUPPORT: + case PostgreSqlParser.KW_PARALLEL: + case PostgreSqlParser.KW_SQL: + case PostgreSqlParser.KW_DEPENDS: + case PostgreSqlParser.KW_OVERRIDING: + case PostgreSqlParser.KW_CONFLICT: + case PostgreSqlParser.KW_SKIP: + case PostgreSqlParser.KW_LOCKED: + case PostgreSqlParser.KW_TIES: + case PostgreSqlParser.KW_ROLLUP: + case PostgreSqlParser.KW_CUBE: + case PostgreSqlParser.KW_GROUPING: + case PostgreSqlParser.KW_SETS: + case PostgreSqlParser.KW_TABLESAMPLE: + case PostgreSqlParser.KW_ORDINALITY: + case PostgreSqlParser.KW_XMLTABLE: + case PostgreSqlParser.KW_COLUMNS: + case PostgreSqlParser.KW_XMLNAMESPACES: + case PostgreSqlParser.KW_ROWTYPE: + case PostgreSqlParser.KW_NORMALIZED: + case PostgreSqlParser.KW_WITHIN: + case PostgreSqlParser.KW_FILTER: + case PostgreSqlParser.KW_GROUPS: + case PostgreSqlParser.KW_OTHERS: + case PostgreSqlParser.KW_NFC: + case PostgreSqlParser.KW_NFD: + case PostgreSqlParser.KW_NFKC: + case PostgreSqlParser.KW_NFKD: + case PostgreSqlParser.KW_UESCAPE: + case PostgreSqlParser.KW_VIEWS: + case PostgreSqlParser.KW_NORMALIZE: + case PostgreSqlParser.KW_DUMP: + case PostgreSqlParser.KW_PRINT_STRICT_PARAMS: + case PostgreSqlParser.KW_VARIABLE_CONFLICT: + case PostgreSqlParser.KW_ERROR: + case PostgreSqlParser.KW_USE_VARIABLE: + case PostgreSqlParser.KW_USE_COLUMN: + case PostgreSqlParser.KW_ALIAS: + case PostgreSqlParser.KW_CONSTANT: + case PostgreSqlParser.KW_PERFORM: + case PostgreSqlParser.KW_GET: + case PostgreSqlParser.KW_DIAGNOSTICS: + case PostgreSqlParser.KW_STACKED: + case PostgreSqlParser.KW_ELSIF: + case PostgreSqlParser.KW_REVERSE: + case PostgreSqlParser.KW_SLICE: + case PostgreSqlParser.KW_EXIT: + case PostgreSqlParser.KW_RETURN: + case PostgreSqlParser.KW_QUERY: + case PostgreSqlParser.KW_RAISE: + case PostgreSqlParser.KW_SQLSTATE: + case PostgreSqlParser.KW_DEBUG: + case PostgreSqlParser.KW_LOG: + case PostgreSqlParser.KW_INFO: + case PostgreSqlParser.KW_NOTICE: + case PostgreSqlParser.KW_WARNING: + case PostgreSqlParser.KW_EXCEPTION: + case PostgreSqlParser.KW_ASSERT: + case PostgreSqlParser.KW_OPEN: + case PostgreSqlParser.KW_PUBLIC: + case PostgreSqlParser.KW_SKIP_LOCKED: + case PostgreSqlParser.KW_BUFFER_USAGE_LIMIT: + case PostgreSqlParser.Identifier: + case PostgreSqlParser.QuotedIdentifier: + case PostgreSqlParser.UnicodeQuotedIdentifier: + case PostgreSqlParser.StringConstant: + case PostgreSqlParser.UnicodeEscapeStringConstant: + case PostgreSqlParser.BeginDollarStringConstant: + case PostgreSqlParser.BinaryStringConstant: + case PostgreSqlParser.HexadecimalStringConstant: + case PostgreSqlParser.Integral: + case PostgreSqlParser.Numeric: + case PostgreSqlParser.PLSQLVARIABLENAME: + case PostgreSqlParser.PLSQLIDENTIFIER: + case PostgreSqlParser.EscapeStringConstant: + { + this.state = 7045; + this.funcArgList(); + this.state = 7049; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 6) { + { + this.state = 7046; + this.match(PostgreSqlParser.COMMA); + this.state = 7047; + this.match(PostgreSqlParser.KW_VARIADIC); + this.state = 7048; + this.funcArgExpr(); + } + } + + this.state = 7052; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 83) { + { + this.state = 7051; this.sortClause(); } } } break; - case 2: + case PostgreSqlParser.KW_VARIADIC: { - this.state = 7052; + this.state = 7054; this.match(PostgreSqlParser.KW_VARIADIC); - this.state = 7053; - this.funcArgExpr(); this.state = 7055; + this.funcArgExpr(); + this.state = 7057; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 83) { { - this.state = 7054; + this.state = 7056; this.sortClause(); } } } break; - case 3: + case PostgreSqlParser.KW_ALL: + case PostgreSqlParser.KW_DISTINCT: { - this.state = 7057; + this.state = 7059; _la = this.tokenStream.LA(1); if(!(_la === 30 || _la === 56)) { this.errorHandler.recoverInline(this); @@ -42100,28 +45435,32 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7058; - this.funcArgList(); this.state = 7060; + this.funcArgList(); + this.state = 7062; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 83) { { - this.state = 7059; + this.state = 7061; this.sortClause(); } } } break; - case 4: + case PostgreSqlParser.STAR: { - this.state = 7062; + this.state = 7064; this.match(PostgreSqlParser.STAR); } break; + case PostgreSqlParser.CLOSE_PAREN: + break; + default: + break; } - this.state = 7065; + this.state = 7067; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -42143,63 +45482,63 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new Func_exprContext(this.context, this.state); this.enterRule(localContext, 682, PostgreSqlParser.RULE_func_expr); try { - this.state = 7092; + this.state = 7094; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 976, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7067; + this.state = 7069; this.funcApplication(); - this.state = 7074; + this.state = 7076; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 972, this.context) ) { case 1: { - this.state = 7068; + this.state = 7070; this.match(PostgreSqlParser.KW_WITHIN); - this.state = 7069; + this.state = 7071; this.match(PostgreSqlParser.KW_GROUP); - this.state = 7070; + this.state = 7072; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7071; + this.state = 7073; this.sortClause(); - this.state = 7072; + this.state = 7074; this.match(PostgreSqlParser.CLOSE_PAREN); } break; } - this.state = 7082; + this.state = 7084; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 973, this.context) ) { case 1: { - this.state = 7076; + this.state = 7078; this.match(PostgreSqlParser.KW_FILTER); - this.state = 7077; + this.state = 7079; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7078; + this.state = 7080; this.match(PostgreSqlParser.KW_WHERE); - this.state = 7079; + this.state = 7081; this.expression(); - this.state = 7080; + this.state = 7082; this.match(PostgreSqlParser.CLOSE_PAREN); } break; } - this.state = 7089; + this.state = 7091; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 975, this.context) ) { case 1: { - this.state = 7084; + this.state = 7086; this.match(PostgreSqlParser.KW_OVER); - this.state = 7087; + this.state = 7089; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: { - this.state = 7085; + this.state = 7087; this.windowSpecification(); } break; @@ -42598,7 +45937,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 7086; + this.state = 7088; this.colId(); } break; @@ -42613,7 +45952,7 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7091; + this.state = 7093; this.funcExprCommonSubExpr(); } break; @@ -42637,20 +45976,20 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new FuncExprWindowlessContext(this.context, this.state); this.enterRule(localContext, 684, PostgreSqlParser.RULE_funcExprWindowless); try { - this.state = 7096; + this.state = 7098; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 977, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7094; + this.state = 7096; this.funcApplication(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7095; + this.state = 7097; this.funcExprCommonSubExpr(); } break; @@ -42675,28 +46014,28 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 686, PostgreSqlParser.RULE_funcExprCommonSubExpr); let _la: number; try { - this.state = 7272; + this.state = 7274; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_COLLATION: this.enterOuterAlt(localContext, 1); { - this.state = 7098; + this.state = 7100; this.match(PostgreSqlParser.KW_COLLATION); - this.state = 7099; + this.state = 7101; this.match(PostgreSqlParser.KW_FOR); - this.state = 7100; + this.state = 7102; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7101; + this.state = 7103; this.expression(); - this.state = 7102; + this.state = 7104; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_CURRENT_DATE: this.enterOuterAlt(localContext, 2); { - this.state = 7104; + this.state = 7106; this.match(PostgreSqlParser.KW_CURRENT_DATE); } break; @@ -42706,7 +46045,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_LOCALTIMESTAMP: this.enterOuterAlt(localContext, 3); { - this.state = 7105; + this.state = 7107; _la = this.tokenStream.LA(1); if(!(((((_la - 50)) & ~0x1F) === 0 && ((1 << (_la - 50)) & 100663299) !== 0))) { this.errorHandler.recoverInline(this); @@ -42715,12 +46054,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7107; + this.state = 7109; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 978, this.context) ) { case 1: { - this.state = 7106; + this.state = 7108; this.optFloat(); } break; @@ -42730,42 +46069,42 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_CURRENT_ROLE: this.enterOuterAlt(localContext, 4); { - this.state = 7109; + this.state = 7111; this.match(PostgreSqlParser.KW_CURRENT_ROLE); } break; case PostgreSqlParser.KW_CURRENT_USER: this.enterOuterAlt(localContext, 5); { - this.state = 7110; + this.state = 7112; this.match(PostgreSqlParser.KW_CURRENT_USER); } break; case PostgreSqlParser.KW_SESSION_USER: this.enterOuterAlt(localContext, 6); { - this.state = 7111; + this.state = 7113; this.match(PostgreSqlParser.KW_SESSION_USER); } break; case PostgreSqlParser.KW_USER: this.enterOuterAlt(localContext, 7); { - this.state = 7112; + this.state = 7114; this.match(PostgreSqlParser.KW_USER); } break; case PostgreSqlParser.KW_CURRENT_CATALOG: this.enterOuterAlt(localContext, 8); { - this.state = 7113; + this.state = 7115; this.match(PostgreSqlParser.KW_CURRENT_CATALOG); } break; case PostgreSqlParser.KW_CURRENT_SCHEMA: this.enterOuterAlt(localContext, 9); { - this.state = 7114; + this.state = 7116; this.match(PostgreSqlParser.KW_CURRENT_SCHEMA); } break; @@ -42773,7 +46112,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_TREAT: this.enterOuterAlt(localContext, 10); { - this.state = 7115; + this.state = 7117; _la = this.tokenStream.LA(1); if(!(_la === 41 || _la === 420)) { this.errorHandler.recoverInline(this); @@ -42782,162 +46121,162 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7116; + this.state = 7118; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7117; + this.state = 7119; this.expression(); - this.state = 7118; + this.state = 7120; this.match(PostgreSqlParser.KW_AS); - this.state = 7119; + this.state = 7121; this.typename(); - this.state = 7120; + this.state = 7122; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_EXTRACT: this.enterOuterAlt(localContext, 11); { - this.state = 7122; + this.state = 7124; this.match(PostgreSqlParser.KW_EXTRACT); - this.state = 7123; + this.state = 7125; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7128; + this.state = 7130; 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)) & 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)) & ~0x1F) === 0 && ((1 << (_la - 547)) & 3221570659) !== 0) || _la === 586) { { - this.state = 7124; + this.state = 7126; this.extractArg(); - this.state = 7125; + this.state = 7127; this.match(PostgreSqlParser.KW_FROM); - this.state = 7126; + this.state = 7128; this.expression(); } } - this.state = 7130; + this.state = 7132; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_NORMALIZE: this.enterOuterAlt(localContext, 12); { - this.state = 7131; + this.state = 7133; this.match(PostgreSqlParser.KW_NORMALIZE); - this.state = 7132; + this.state = 7134; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7133; + this.state = 7135; this.expression(); - this.state = 7136; + this.state = 7138; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 7134; + this.state = 7136; this.match(PostgreSqlParser.COMMA); - this.state = 7135; + this.state = 7137; this.unicodeNormalForm(); } } - this.state = 7138; + this.state = 7140; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_OVERLAY: this.enterOuterAlt(localContext, 13); { - this.state = 7140; + this.state = 7142; this.match(PostgreSqlParser.KW_OVERLAY); - this.state = 7141; + this.state = 7143; this.match(PostgreSqlParser.OPEN_PAREN); { - this.state = 7142; - this.expression(); - this.state = 7143; - this.match(PostgreSqlParser.KW_PLACING); this.state = 7144; this.expression(); this.state = 7145; - this.match(PostgreSqlParser.KW_FROM); + this.match(PostgreSqlParser.KW_PLACING); this.state = 7146; this.expression(); - this.state = 7149; + this.state = 7147; + this.match(PostgreSqlParser.KW_FROM); + this.state = 7148; + this.expression(); + this.state = 7151; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 62) { { - this.state = 7147; + this.state = 7149; this.match(PostgreSqlParser.KW_FOR); - this.state = 7148; + this.state = 7150; this.expression(); } } } - this.state = 7151; + this.state = 7153; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_POSITION: this.enterOuterAlt(localContext, 14); { - this.state = 7153; + this.state = 7155; this.match(PostgreSqlParser.KW_POSITION); - this.state = 7154; + this.state = 7156; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7159; + this.state = 7161; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 982, this.context) ) { - case 1: + _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)) & 2174763019) !== 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)) & 3901572195) !== 0) || _la === 586) { { - this.state = 7155; + this.state = 7157; this.primaryExpression(0); - this.state = 7156; + this.state = 7158; this.match(PostgreSqlParser.KW_IN); - this.state = 7157; + this.state = 7159; this.primaryExpression(0); } - break; } - this.state = 7161; + + this.state = 7163; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_SUBSTRING: this.enterOuterAlt(localContext, 15); { - this.state = 7162; + this.state = 7164; this.match(PostgreSqlParser.KW_SUBSTRING); - this.state = 7163; - this.match(PostgreSqlParser.OPEN_PAREN); this.state = 7165; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 7167; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 983, this.context) ) { - case 1: + _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)) & 3901572195) !== 0) || _la === 586) { { - this.state = 7164; + this.state = 7166; this.substrList(); } - break; } - this.state = 7167; + + this.state = 7169; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_TRIM: this.enterOuterAlt(localContext, 16); { - this.state = 7168; + this.state = 7170; this.match(PostgreSqlParser.KW_TRIM); - this.state = 7169; - this.match(PostgreSqlParser.OPEN_PAREN); this.state = 7171; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 7173; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 984, this.context) ) { - case 1: + _la = this.tokenStream.LA(1); + if (_la === 39 || _la === 73 || _la === 95) { { - this.state = 7170; + this.state = 7172; _la = this.tokenStream.LA(1); if(!(_la === 39 || _la === 73 || _la === 95)) { this.errorHandler.recoverInline(this); @@ -42947,50 +46286,50 @@ export class PostgreSqlParser extends SQLParserBase { this.consume(); } } - break; } + { - this.state = 7177; + this.state = 7179; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 986, this.context) ) { case 1: { - this.state = 7174; + this.state = 7176; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 985, this.context) ) { - case 1: + _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)) & 3901572195) !== 0) || _la === 586) { { - this.state = 7173; + this.state = 7175; this.expression(); } - break; } - this.state = 7176; + + this.state = 7178; this.match(PostgreSqlParser.KW_FROM); } break; } - this.state = 7179; + this.state = 7181; this.exprList(); } - this.state = 7181; + this.state = 7183; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_NULLIF: this.enterOuterAlt(localContext, 17); { - this.state = 7183; - this.match(PostgreSqlParser.KW_NULLIF); - this.state = 7184; - this.match(PostgreSqlParser.OPEN_PAREN); this.state = 7185; - this.expression(); + this.match(PostgreSqlParser.KW_NULLIF); this.state = 7186; - this.match(PostgreSqlParser.COMMA); + this.match(PostgreSqlParser.OPEN_PAREN); this.state = 7187; this.expression(); this.state = 7188; + this.match(PostgreSqlParser.COMMA); + this.state = 7189; + this.expression(); + this.state = 7190; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -43000,7 +46339,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_XMLCONCAT: this.enterOuterAlt(localContext, 18); { - this.state = 7190; + this.state = 7192; _la = this.tokenStream.LA(1); if(!(((((_la - 393)) & ~0x1F) === 0 && ((1 << (_la - 393)) & 2113) !== 0) || _la === 425)) { this.errorHandler.recoverInline(this); @@ -43009,48 +46348,48 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7191; + this.state = 7193; this.executeParamClause(); } break; case PostgreSqlParser.KW_XMLELEMENT: this.enterOuterAlt(localContext, 19); { - this.state = 7192; + this.state = 7194; this.match(PostgreSqlParser.KW_XMLELEMENT); - this.state = 7193; + this.state = 7195; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7194; + this.state = 7196; this.match(PostgreSqlParser.KW_NAME); - this.state = 7195; + this.state = 7197; this.colLabel(); - this.state = 7205; + this.state = 7207; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 7196; + this.state = 7198; this.match(PostgreSqlParser.COMMA); - this.state = 7203; + this.state = 7205; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 987, this.context) ) { case 1: { { - this.state = 7197; + this.state = 7199; this.match(PostgreSqlParser.KW_XMLATTRIBUTES); - this.state = 7198; + this.state = 7200; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7199; + this.state = 7201; this.xmlAttributeList(); - this.state = 7200; + this.state = 7202; this.match(PostgreSqlParser.CLOSE_PAREN); } } break; case 2: { - this.state = 7202; + this.state = 7204; this.exprList(); } break; @@ -43058,55 +46397,55 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 7207; + this.state = 7209; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_XMLEXISTS: this.enterOuterAlt(localContext, 20); { - this.state = 7209; + this.state = 7211; this.match(PostgreSqlParser.KW_XMLEXISTS); - this.state = 7210; + this.state = 7212; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7211; + this.state = 7213; this.primaryExpression(0); - this.state = 7212; + this.state = 7214; this.xmlExistsArgument(); - this.state = 7213; + this.state = 7215; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_XMLFOREST: this.enterOuterAlt(localContext, 21); { - this.state = 7215; + this.state = 7217; this.match(PostgreSqlParser.KW_XMLFOREST); - this.state = 7216; + this.state = 7218; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7217; + this.state = 7219; this.xmlAttributeList(); - this.state = 7218; + this.state = 7220; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_XMLPARSE: this.enterOuterAlt(localContext, 22); { - this.state = 7220; + this.state = 7222; this.match(PostgreSqlParser.KW_XMLPARSE); - this.state = 7221; + this.state = 7223; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7222; + this.state = 7224; this.documentOrContent(); - this.state = 7223; + this.state = 7225; this.expression(); - this.state = 7226; + this.state = 7228; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 292 || _la === 347) { { - this.state = 7224; + this.state = 7226; _la = this.tokenStream.LA(1); if(!(_la === 292 || _la === 347)) { this.errorHandler.recoverInline(this); @@ -43115,111 +46454,111 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7225; + this.state = 7227; this.match(PostgreSqlParser.KW_WHITESPACE); } } - this.state = 7228; + this.state = 7230; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_XMLPI: this.enterOuterAlt(localContext, 23); { - this.state = 7230; + this.state = 7232; this.match(PostgreSqlParser.KW_XMLPI); - this.state = 7231; + this.state = 7233; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7232; + this.state = 7234; this.match(PostgreSqlParser.KW_NAME); - this.state = 7233; + this.state = 7235; this.colLabel(); - this.state = 7236; + this.state = 7238; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 7234; + this.state = 7236; this.match(PostgreSqlParser.COMMA); - this.state = 7235; + this.state = 7237; this.expression(); } } - this.state = 7238; + this.state = 7240; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_XMLROOT: this.enterOuterAlt(localContext, 24); { - this.state = 7240; + this.state = 7242; this.match(PostgreSqlParser.KW_XMLROOT); - this.state = 7241; + this.state = 7243; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7242; + this.state = 7244; this.match(PostgreSqlParser.KW_XML); - this.state = 7243; + this.state = 7245; this.expression(); - this.state = 7244; + this.state = 7246; this.match(PostgreSqlParser.COMMA); - this.state = 7245; + this.state = 7247; this.match(PostgreSqlParser.KW_VERSION); - this.state = 7249; + this.state = 7251; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 991, this.context) ) { case 1: { { - this.state = 7246; + this.state = 7248; this.match(PostgreSqlParser.KW_NO); - this.state = 7247; + this.state = 7249; this.match(PostgreSqlParser.KW_VALUE); } } break; case 2: { - this.state = 7248; + this.state = 7250; this.expression(); } break; } - this.state = 7260; + this.state = 7262; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 7251; + this.state = 7253; this.match(PostgreSqlParser.COMMA); - this.state = 7252; + this.state = 7254; this.match(PostgreSqlParser.KW_STANDALONE); - this.state = 7258; + this.state = 7260; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_NO: case PostgreSqlParser.KW_VALUE: { { - this.state = 7254; + this.state = 7256; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 7253; + this.state = 7255; this.match(PostgreSqlParser.KW_NO); } } - this.state = 7256; + this.state = 7258; this.match(PostgreSqlParser.KW_VALUE); } } break; case PostgreSqlParser.KW_YES: { - this.state = 7257; + this.state = 7259; this.match(PostgreSqlParser.KW_YES); } break; @@ -43229,26 +46568,26 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 7262; + this.state = 7264; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_XMLSERIALIZE: this.enterOuterAlt(localContext, 25); { - this.state = 7264; + this.state = 7266; this.match(PostgreSqlParser.KW_XMLSERIALIZE); - this.state = 7265; + this.state = 7267; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7266; + this.state = 7268; this.documentOrContent(); - this.state = 7267; + this.state = 7269; this.expression(); - this.state = 7268; + this.state = 7270; this.match(PostgreSqlParser.KW_AS); - this.state = 7269; + this.state = 7271; this.simpleTypeName(); - this.state = 7270; + this.state = 7272; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -43277,21 +46616,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7274; + this.state = 7276; this.xmlAttributeEl(); - this.state = 7279; + this.state = 7281; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7275; + this.state = 7277; this.match(PostgreSqlParser.COMMA); - this.state = 7276; + this.state = 7278; this.xmlAttributeEl(); } } - this.state = 7281; + this.state = 7283; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -43318,16 +46657,16 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7282; + this.state = 7284; this.expression(); - this.state = 7285; + this.state = 7287; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 7283; + this.state = 7285; this.match(PostgreSqlParser.KW_AS); - this.state = 7284; + this.state = 7286; this.colLabel(); } } @@ -43355,7 +46694,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7287; + this.state = 7289; _la = this.tokenStream.LA(1); if(!(_la === 166 || _la === 188)) { this.errorHandler.recoverInline(this); @@ -43387,26 +46726,26 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7289; - this.match(PostgreSqlParser.KW_PASSING); this.state = 7291; + this.match(PostgreSqlParser.KW_PASSING); + this.state = 7293; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 998, this.context) ) { case 1: { - this.state = 7290; + this.state = 7292; this.xmlPassingMech(); } break; } - this.state = 7293; - this.primaryExpression(0); this.state = 7295; + this.primaryExpression(0); + this.state = 7297; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 147) { { - this.state = 7294; + this.state = 7296; this.xmlPassingMech(); } } @@ -43434,9 +46773,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7297; + this.state = 7299; this.match(PostgreSqlParser.KW_BY); - this.state = 7298; + this.state = 7300; _la = this.tokenStream.LA(1); if(!(_la === 304 || _la === 450)) { this.errorHandler.recoverInline(this); @@ -43468,25 +46807,25 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7300; + this.state = 7302; this.match(PostgreSqlParser.KW_WINDOW); - this.state = 7301; + this.state = 7303; this.windowDefinition(); - this.state = 7306; + this.state = 7308; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1000, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7302; + this.state = 7304; this.match(PostgreSqlParser.COMMA); - this.state = 7303; + this.state = 7305; this.windowDefinition(); } } } - this.state = 7308; + this.state = 7310; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1000, this.context); } @@ -43512,9 +46851,9 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7309; + this.state = 7311; this.match(PostgreSqlParser.KW_HAVING); - this.state = 7310; + this.state = 7312; this.expression(); } } @@ -43538,11 +46877,11 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7312; + this.state = 7314; this.colId(); - this.state = 7313; + this.state = 7315; this.match(PostgreSqlParser.KW_AS); - this.state = 7314; + this.state = 7316; this.windowSpecification(); } } @@ -43566,14 +46905,14 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7316; + this.state = 7318; this.match(PostgreSqlParser.KW_OVER); - this.state = 7319; + this.state = 7321; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: { - this.state = 7317; + this.state = 7319; this.windowSpecification(); } break; @@ -43972,7 +47311,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 7318; + this.state = 7320; this.colId(); } break; @@ -44002,53 +47341,53 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7321; - this.match(PostgreSqlParser.OPEN_PAREN); this.state = 7323; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 7325; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1002, this.context) ) { case 1: { - this.state = 7322; + this.state = 7324; this.colId(); } break; } - this.state = 7328; + this.state = 7330; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 285) { { - this.state = 7325; + this.state = 7327; this.match(PostgreSqlParser.KW_PARTITION); - this.state = 7326; + this.state = 7328; this.match(PostgreSqlParser.KW_BY); - this.state = 7327; + this.state = 7329; this.exprList(); } } - this.state = 7331; + this.state = 7333; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 83) { { - this.state = 7330; + this.state = 7332; this.sortClause(); } } - this.state = 7334; + this.state = 7336; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 299 || _la === 320 || _la === 481) { { - this.state = 7333; + this.state = 7335; this.optFrameClause(); } } - this.state = 7336; + this.state = 7338; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -44073,7 +47412,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7338; + this.state = 7340; _la = this.tokenStream.LA(1); if(!(_la === 299 || _la === 320 || _la === 481)) { this.errorHandler.recoverInline(this); @@ -44083,58 +47422,58 @@ export class PostgreSqlParser extends SQLParserBase { this.consume(); } { - this.state = 7343; + this.state = 7345; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1006, this.context) ) { case 1: { - this.state = 7339; + this.state = 7341; this.match(PostgreSqlParser.KW_BETWEEN); - this.state = 7340; + this.state = 7342; this.frameBound(); - this.state = 7341; + this.state = 7343; this.match(PostgreSqlParser.KW_AND); } break; } - this.state = 7345; + this.state = 7347; this.frameBound(); } - this.state = 7356; + this.state = 7358; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 199) { { - this.state = 7347; + this.state = 7349; this.match(PostgreSqlParser.KW_EXCLUDE); - this.state = 7354; + this.state = 7356; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CURRENT: { - this.state = 7348; + this.state = 7350; this.match(PostgreSqlParser.KW_CURRENT); - this.state = 7349; + this.state = 7351; this.match(PostgreSqlParser.KW_ROW); } break; case PostgreSqlParser.KW_GROUP: { - this.state = 7350; + this.state = 7352; this.match(PostgreSqlParser.KW_GROUP); } break; case PostgreSqlParser.KW_TIES: { - this.state = 7351; + this.state = 7353; this.match(PostgreSqlParser.KW_TIES); } break; case PostgreSqlParser.KW_NO: { - this.state = 7352; + this.state = 7354; this.match(PostgreSqlParser.KW_NO); - this.state = 7353; + this.state = 7355; this.match(PostgreSqlParser.KW_OTHERS); } break; @@ -44165,29 +47504,29 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 710, PostgreSqlParser.RULE_frameBound); let _la: number; try { - this.state = 7365; + this.state = 7367; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1010, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7360; + this.state = 7362; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1009, this.context) ) { case 1: { - this.state = 7358; + this.state = 7360; this.match(PostgreSqlParser.KW_UNBOUNDED); } break; case 2: { - this.state = 7359; + this.state = 7361; this.expression(); } break; } - this.state = 7362; + this.state = 7364; _la = this.tokenStream.LA(1); if(!(_la === 208 || _la === 289)) { this.errorHandler.recoverInline(this); @@ -44201,9 +47540,9 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7363; + this.state = 7365; this.match(PostgreSqlParser.KW_CURRENT); - this.state = 7364; + this.state = 7366; this.match(PostgreSqlParser.KW_ROW); } break; @@ -44227,28 +47566,28 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new RowContext(this.context, this.state); this.enterRule(localContext, 712, PostgreSqlParser.RULE_row); try { - this.state = 7374; + this.state = 7376; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_ROW: this.enterOuterAlt(localContext, 1); { - this.state = 7367; + this.state = 7369; this.explicitRow(); } break; case PostgreSqlParser.OPEN_PAREN: this.enterOuterAlt(localContext, 2); { - this.state = 7368; + this.state = 7370; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7369; + this.state = 7371; this.exprList(); - this.state = 7370; + this.state = 7372; this.match(PostgreSqlParser.COMMA); - this.state = 7371; + this.state = 7373; this.expression(); - this.state = 7372; + this.state = 7374; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -44273,24 +47612,25 @@ export class PostgreSqlParser extends SQLParserBase { public explicitRow(): ExplicitRowContext { let localContext = new ExplicitRowContext(this.context, this.state); this.enterRule(localContext, 714, PostgreSqlParser.RULE_explicitRow); + let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7376; + this.state = 7378; this.match(PostgreSqlParser.KW_ROW); - this.state = 7377; - this.match(PostgreSqlParser.OPEN_PAREN); this.state = 7379; + this.match(PostgreSqlParser.OPEN_PAREN); + this.state = 7381; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1012, this.context) ) { - case 1: + _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)) & 3901572195) !== 0) || _la === 586) { { - this.state = 7378; + this.state = 7380; this.exprList(); } - break; } - this.state = 7381; + + this.state = 7383; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -44315,7 +47655,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7383; + this.state = 7385; _la = this.tokenStream.LA(1); if(!(_la === 30 || _la === 34 || _la === 90)) { this.errorHandler.recoverInline(this); @@ -44344,13 +47684,13 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new AllOpContext(this.context, this.state); this.enterRule(localContext, 718, PostgreSqlParser.RULE_allOp); try { - this.state = 7387; + this.state = 7389; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.Operator: this.enterOuterAlt(localContext, 1); { - this.state = 7385; + this.state = 7387; this.match(PostgreSqlParser.Operator); } break; @@ -44368,7 +47708,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PERCENT: this.enterOuterAlt(localContext, 2); { - this.state = 7386; + this.state = 7388; this.mathOp(); } break; @@ -44397,7 +47737,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7389; + this.state = 7391; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 178517504) !== 0))) { this.errorHandler.recoverInline(this); @@ -44426,26 +47766,26 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new QualOpContext(this.context, this.state); this.enterRule(localContext, 722, PostgreSqlParser.RULE_qualOp); try { - this.state = 7397; + this.state = 7399; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.Operator: this.enterOuterAlt(localContext, 1); { - this.state = 7391; + this.state = 7393; this.match(PostgreSqlParser.Operator); } break; case PostgreSqlParser.KW_OPERATOR: this.enterOuterAlt(localContext, 2); { - this.state = 7392; + this.state = 7394; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 7393; + this.state = 7395; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7394; + this.state = 7396; this.anyOperator(); - this.state = 7395; + this.state = 7397; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -44471,7 +47811,7 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new QualAllOpContext(this.context, this.state); this.enterRule(localContext, 724, PostgreSqlParser.RULE_qualAllOp); try { - this.state = 7405; + this.state = 7407; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.STAR: @@ -44489,20 +47829,20 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.Operator: this.enterOuterAlt(localContext, 1); { - this.state = 7399; + this.state = 7401; this.allOp(); } break; case PostgreSqlParser.KW_OPERATOR: this.enterOuterAlt(localContext, 2); { - this.state = 7400; + this.state = 7402; this.match(PostgreSqlParser.KW_OPERATOR); - this.state = 7401; + this.state = 7403; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7402; + this.state = 7404; this.anyOperator(); - this.state = 7403; + this.state = 7405; this.match(PostgreSqlParser.CLOSE_PAREN); } break; @@ -44529,7 +47869,7 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 726, PostgreSqlParser.RULE_subqueryOperator); let _la: number; try { - this.state = 7412; + this.state = 7414; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.STAR: @@ -44548,7 +47888,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_OPERATOR: this.enterOuterAlt(localContext, 1); { - this.state = 7407; + this.state = 7409; this.qualAllOp(); } break; @@ -44557,17 +47897,17 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_LIKE: this.enterOuterAlt(localContext, 2); { - this.state = 7409; + this.state = 7411; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 7408; + this.state = 7410; this.match(PostgreSqlParser.KW_NOT); } } - this.state = 7411; + this.state = 7413; _la = this.tokenStream.LA(1); if(!(_la === 114 || _la === 120)) { this.errorHandler.recoverInline(this); @@ -44603,23 +47943,23 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7414; + this.state = 7416; this.expression(); - this.state = 7419; + this.state = 7421; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1018, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7415; + this.state = 7417; this.match(PostgreSqlParser.COMMA); - this.state = 7416; + this.state = 7418; this.expression(); } } } - this.state = 7421; + this.state = 7423; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1018, this.context); } @@ -44645,7 +47985,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7422; + this.state = 7424; this.expression(); } } @@ -44669,7 +48009,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7424; + this.state = 7426; this.columnName(); } } @@ -44691,29 +48031,424 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ColumnExprContext(this.context, this.state); this.enterRule(localContext, 734, PostgreSqlParser.RULE_columnExpr); try { - this.state = 7431; + this.state = 7433; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1019, this.context) ) { - case 1: + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.OPEN_PAREN: this.enterOuterAlt(localContext, 1); { { - this.state = 7426; + this.state = 7428; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7427; + this.state = 7429; this.expression(); - this.state = 7428; + this.state = 7430; this.match(PostgreSqlParser.CLOSE_PAREN); } } break; - case 2: + case PostgreSqlParser.KW_DEFAULT: + case PostgreSqlParser.KW_IS: + case PostgreSqlParser.KW_OUTER: + case PostgreSqlParser.KW_OVER: + case PostgreSqlParser.KW_ABORT: + case PostgreSqlParser.KW_ABSOLUTE: + case PostgreSqlParser.KW_ACCESS: + case PostgreSqlParser.KW_ACTION: + case PostgreSqlParser.KW_ADD: + case PostgreSqlParser.KW_ADMIN: + case PostgreSqlParser.KW_AFTER: + case PostgreSqlParser.KW_AGGREGATE: + case PostgreSqlParser.KW_ALSO: + case PostgreSqlParser.KW_ALTER: + case PostgreSqlParser.KW_ALWAYS: + case PostgreSqlParser.KW_ASSERTION: + case PostgreSqlParser.KW_ASSIGNMENT: + case PostgreSqlParser.KW_AT: + case PostgreSqlParser.KW_ATTRIBUTE: + case PostgreSqlParser.KW_BACKWARD: + case PostgreSqlParser.KW_BEFORE: + case PostgreSqlParser.KW_BEGIN: + case PostgreSqlParser.KW_BY: + case PostgreSqlParser.KW_CACHE: + case PostgreSqlParser.KW_CALLED: + case PostgreSqlParser.KW_CASCADE: + case PostgreSqlParser.KW_CASCADED: + case PostgreSqlParser.KW_CATALOG: + case PostgreSqlParser.KW_CHAIN: + case PostgreSqlParser.KW_CHARACTERISTICS: + case PostgreSqlParser.KW_CHECKPOINT: + case PostgreSqlParser.KW_CLASS: + case PostgreSqlParser.KW_CLOSE: + case PostgreSqlParser.KW_CLUSTER: + case PostgreSqlParser.KW_COMMENT: + case PostgreSqlParser.KW_COMMENTS: + case PostgreSqlParser.KW_COMMIT: + case PostgreSqlParser.KW_COMMITTED: + case PostgreSqlParser.KW_CONFIGURATION: + case PostgreSqlParser.KW_CONNECTION: + case PostgreSqlParser.KW_CONSTRAINTS: + case PostgreSqlParser.KW_CONTENT: + case PostgreSqlParser.KW_CONTINUE: + case PostgreSqlParser.KW_CONVERSION: + case PostgreSqlParser.KW_COPY: + case PostgreSqlParser.KW_COST: + case PostgreSqlParser.KW_CSV: + case PostgreSqlParser.KW_CURSOR: + case PostgreSqlParser.KW_CYCLE: + case PostgreSqlParser.KW_DATA: + case PostgreSqlParser.KW_DATABASE: + case PostgreSqlParser.KW_DAY: + case PostgreSqlParser.KW_DEALLOCATE: + case PostgreSqlParser.KW_DECLARE: + case PostgreSqlParser.KW_DEFAULTS: + case PostgreSqlParser.KW_DEFERRED: + case PostgreSqlParser.KW_DEFINER: + case PostgreSqlParser.KW_DELETE: + case PostgreSqlParser.KW_DELIMITER: + case PostgreSqlParser.KW_DELIMITERS: + case PostgreSqlParser.KW_DICTIONARY: + case PostgreSqlParser.KW_DISABLE: + case PostgreSqlParser.KW_DISCARD: + case PostgreSqlParser.KW_DOCUMENT: + case PostgreSqlParser.KW_DOMAIN: + case PostgreSqlParser.KW_DOUBLE: + case PostgreSqlParser.KW_DROP: + case PostgreSqlParser.KW_EACH: + case PostgreSqlParser.KW_ENABLE: + case PostgreSqlParser.KW_ENCODING: + case PostgreSqlParser.KW_ENCRYPTED: + case PostgreSqlParser.KW_ENUM: + case PostgreSqlParser.KW_ESCAPE: + case PostgreSqlParser.KW_EVENT: + case PostgreSqlParser.KW_EXCLUDE: + case PostgreSqlParser.KW_EXCLUDING: + case PostgreSqlParser.KW_EXCLUSIVE: + case PostgreSqlParser.KW_EXECUTE: + case PostgreSqlParser.KW_EXPLAIN: + case PostgreSqlParser.KW_EXTENSION: + case PostgreSqlParser.KW_EXTERNAL: + case PostgreSqlParser.KW_FAMILY: + case PostgreSqlParser.KW_FIRST: + case PostgreSqlParser.KW_FOLLOWING: + case PostgreSqlParser.KW_FORCE: + case PostgreSqlParser.KW_FORWARD: + case PostgreSqlParser.KW_FUNCTION: + case PostgreSqlParser.KW_FUNCTIONS: + case PostgreSqlParser.KW_GLOBAL: + case PostgreSqlParser.KW_GRANTED: + case PostgreSqlParser.KW_HANDLER: + case PostgreSqlParser.KW_HEADER: + case PostgreSqlParser.KW_HOLD: + case PostgreSqlParser.KW_HOUR: + case PostgreSqlParser.KW_IDENTITY: + case PostgreSqlParser.KW_IF: + case PostgreSqlParser.KW_IMMEDIATE: + case PostgreSqlParser.KW_IMMUTABLE: + case PostgreSqlParser.KW_IMPLICIT: + case PostgreSqlParser.KW_INCLUDING: + case PostgreSqlParser.KW_INCREMENT: + case PostgreSqlParser.KW_INDEX: + case PostgreSqlParser.KW_INDEXES: + case PostgreSqlParser.KW_INHERIT: + case PostgreSqlParser.KW_INHERITS: + case PostgreSqlParser.KW_INLINE: + case PostgreSqlParser.KW_INSENSITIVE: + case PostgreSqlParser.KW_INSERT: + case PostgreSqlParser.KW_INSTEAD: + case PostgreSqlParser.KW_INVOKER: + case PostgreSqlParser.KW_ISOLATION: + case PostgreSqlParser.KW_KEY: + case PostgreSqlParser.KW_LABEL: + case PostgreSqlParser.KW_LANGUAGE: + case PostgreSqlParser.KW_LARGE: + case PostgreSqlParser.KW_LAST: + case PostgreSqlParser.KW_LEAKPROOF: + case PostgreSqlParser.KW_LEVEL: + case PostgreSqlParser.KW_LISTEN: + case PostgreSqlParser.KW_LOAD: + case PostgreSqlParser.KW_LOCAL: + case PostgreSqlParser.KW_LOCATION: + case PostgreSqlParser.KW_LOCK: + case PostgreSqlParser.KW_MAPPING: + case PostgreSqlParser.KW_MATCH: + case PostgreSqlParser.KW_MATERIALIZED: + case PostgreSqlParser.KW_MAXVALUE: + case PostgreSqlParser.KW_MINUTE: + case PostgreSqlParser.KW_MINVALUE: + case PostgreSqlParser.KW_MODE: + case PostgreSqlParser.KW_MONTH: + case PostgreSqlParser.KW_MOVE: + case PostgreSqlParser.KW_NAME: + case PostgreSqlParser.KW_NAMES: + case PostgreSqlParser.KW_NEXT: + case PostgreSqlParser.KW_NO: + case PostgreSqlParser.KW_NOTHING: + case PostgreSqlParser.KW_NOTIFY: + case PostgreSqlParser.KW_NOWAIT: + case PostgreSqlParser.KW_NULLS: + case PostgreSqlParser.KW_OBJECT: + case PostgreSqlParser.KW_OF: + case PostgreSqlParser.KW_OFF: + case PostgreSqlParser.KW_OIDS: + case PostgreSqlParser.KW_OPERATOR: + case PostgreSqlParser.KW_OPTION: + case PostgreSqlParser.KW_OPTIONS: + case PostgreSqlParser.KW_OWNED: + case PostgreSqlParser.KW_OWNER: + case PostgreSqlParser.KW_PARSER: + case PostgreSqlParser.KW_PARTIAL: + case PostgreSqlParser.KW_PARTITION: + case PostgreSqlParser.KW_PASSING: + case PostgreSqlParser.KW_PASSWORD: + case PostgreSqlParser.KW_PLANS: + case PostgreSqlParser.KW_PRECEDING: + case PostgreSqlParser.KW_PREPARE: + case PostgreSqlParser.KW_PREPARED: + case PostgreSqlParser.KW_PRESERVE: + case PostgreSqlParser.KW_PRIOR: + case PostgreSqlParser.KW_PRIVILEGES: + case PostgreSqlParser.KW_PROCEDURAL: + case PostgreSqlParser.KW_PROCEDURE: + case PostgreSqlParser.KW_PROGRAM: + case PostgreSqlParser.KW_QUOTE: + case PostgreSqlParser.KW_RANGE: + case PostgreSqlParser.KW_READ: + case PostgreSqlParser.KW_REASSIGN: + case PostgreSqlParser.KW_RECHECK: + case PostgreSqlParser.KW_RECURSIVE: + case PostgreSqlParser.KW_REF: + case PostgreSqlParser.KW_REFRESH: + case PostgreSqlParser.KW_REINDEX: + case PostgreSqlParser.KW_RELATIVE: + case PostgreSqlParser.KW_RELEASE: + case PostgreSqlParser.KW_RENAME: + case PostgreSqlParser.KW_REPEATABLE: + case PostgreSqlParser.KW_REPLACE: + case PostgreSqlParser.KW_REPLICA: + case PostgreSqlParser.KW_RESET: + case PostgreSqlParser.KW_RESTART: + case PostgreSqlParser.KW_RESTRICT: + case PostgreSqlParser.KW_RETURNS: + case PostgreSqlParser.KW_REVOKE: + case PostgreSqlParser.KW_ROLE: + case PostgreSqlParser.KW_ROLLBACK: + case PostgreSqlParser.KW_ROWS: + case PostgreSqlParser.KW_RULE: + case PostgreSqlParser.KW_SAVEPOINT: + case PostgreSqlParser.KW_SCHEMA: + case PostgreSqlParser.KW_SCROLL: + case PostgreSqlParser.KW_SEARCH: + case PostgreSqlParser.KW_SECOND: + case PostgreSqlParser.KW_SECURITY: + case PostgreSqlParser.KW_SEQUENCE: + case PostgreSqlParser.KW_SEQUENCES: + case PostgreSqlParser.KW_SERIALIZABLE: + case PostgreSqlParser.KW_SERVER: + case PostgreSqlParser.KW_SESSION: + case PostgreSqlParser.KW_SET: + case PostgreSqlParser.KW_SHARE: + case PostgreSqlParser.KW_SHOW: + case PostgreSqlParser.KW_SIMPLE: + case PostgreSqlParser.KW_SNAPSHOT: + case PostgreSqlParser.KW_STABLE: + case PostgreSqlParser.KW_STANDALONE: + case PostgreSqlParser.KW_START: + case PostgreSqlParser.KW_STATEMENT: + case PostgreSqlParser.KW_STATISTICS: + case PostgreSqlParser.KW_STDIN: + case PostgreSqlParser.KW_STDOUT: + case PostgreSqlParser.KW_STORAGE: + case PostgreSqlParser.KW_STRICT: + case PostgreSqlParser.KW_STRIP: + case PostgreSqlParser.KW_SYSID: + case PostgreSqlParser.KW_SYSTEM: + case PostgreSqlParser.KW_TABLES: + case PostgreSqlParser.KW_TABLESPACE: + case PostgreSqlParser.KW_TEMP: + case PostgreSqlParser.KW_TEMPLATE: + case PostgreSqlParser.KW_TEMPORARY: + case PostgreSqlParser.KW_TEXT: + case PostgreSqlParser.KW_TRANSACTION: + case PostgreSqlParser.KW_TRIGGER: + case PostgreSqlParser.KW_TRUNCATE: + case PostgreSqlParser.KW_TRUSTED: + case PostgreSqlParser.KW_TYPE: + case PostgreSqlParser.KW_TYPES: + case PostgreSqlParser.KW_UNBOUNDED: + case PostgreSqlParser.KW_UNCOMMITTED: + case PostgreSqlParser.KW_UNENCRYPTED: + case PostgreSqlParser.KW_UNKNOWN: + case PostgreSqlParser.KW_UNLISTEN: + case PostgreSqlParser.KW_UNLOGGED: + case PostgreSqlParser.KW_UNTIL: + case PostgreSqlParser.KW_UPDATE: + case PostgreSqlParser.KW_VACUUM: + case PostgreSqlParser.KW_VALID: + case PostgreSqlParser.KW_VALIDATE: + case PostgreSqlParser.KW_VALIDATOR: + case PostgreSqlParser.KW_VARYING: + case PostgreSqlParser.KW_VERSION: + case PostgreSqlParser.KW_VIEW: + case PostgreSqlParser.KW_VOLATILE: + case PostgreSqlParser.KW_WHITESPACE: + case PostgreSqlParser.KW_WITHOUT: + case PostgreSqlParser.KW_WORK: + case PostgreSqlParser.KW_WRAPPER: + case PostgreSqlParser.KW_WRITE: + case PostgreSqlParser.KW_XML: + case PostgreSqlParser.KW_YEAR: + case PostgreSqlParser.KW_YES: + case PostgreSqlParser.KW_ZONE: + case PostgreSqlParser.KW_BETWEEN: + case PostgreSqlParser.KW_BIGINT: + case PostgreSqlParser.KW_BIT: + case PostgreSqlParser.KW_BOOLEAN: + case PostgreSqlParser.KW_CHAR: + case PostgreSqlParser.KW_CHARACTER: + case PostgreSqlParser.KW_COALESCE: + case PostgreSqlParser.KW_DEC: + case PostgreSqlParser.KW_DECIMAL: + case PostgreSqlParser.KW_EXISTS: + case PostgreSqlParser.KW_EXTRACT: + case PostgreSqlParser.KW_FLOAT: + case PostgreSqlParser.KW_GREATEST: + case PostgreSqlParser.KW_INOUT: + case PostgreSqlParser.KW_INT: + case PostgreSqlParser.KW_INTEGER: + case PostgreSqlParser.KW_INTERVAL: + case PostgreSqlParser.KW_LEAST: + case PostgreSqlParser.KW_NATIONAL: + case PostgreSqlParser.KW_NCHAR: + case PostgreSqlParser.KW_NONE: + case PostgreSqlParser.KW_NULLIF: + case PostgreSqlParser.KW_NUMERIC: + case PostgreSqlParser.KW_OVERLAY: + case PostgreSqlParser.KW_POSITION: + case PostgreSqlParser.KW_PRECISION: + case PostgreSqlParser.KW_REAL: + case PostgreSqlParser.KW_ROW: + case PostgreSqlParser.KW_SETOF: + case PostgreSqlParser.KW_SMALLINT: + case PostgreSqlParser.KW_SUBSTRING: + case PostgreSqlParser.KW_TIME: + case PostgreSqlParser.KW_TIMESTAMP: + case PostgreSqlParser.KW_TREAT: + case PostgreSqlParser.KW_TRIM: + case PostgreSqlParser.KW_VALUES: + case PostgreSqlParser.KW_VARCHAR: + case PostgreSqlParser.KW_XMLATTRIBUTES: + case PostgreSqlParser.KW_XMLCONCAT: + case PostgreSqlParser.KW_XMLELEMENT: + case PostgreSqlParser.KW_XMLEXISTS: + case PostgreSqlParser.KW_XMLFOREST: + case PostgreSqlParser.KW_XMLPARSE: + case PostgreSqlParser.KW_XMLPI: + case PostgreSqlParser.KW_XMLROOT: + case PostgreSqlParser.KW_XMLSERIALIZE: + case PostgreSqlParser.KW_CALL: + case PostgreSqlParser.KW_CURRENT: + case PostgreSqlParser.KW_ATTACH: + case PostgreSqlParser.KW_DETACH: + case PostgreSqlParser.KW_EXPRESSION: + case PostgreSqlParser.KW_GENERATED: + case PostgreSqlParser.KW_LOGGED: + case PostgreSqlParser.KW_STORED: + case PostgreSqlParser.KW_INCLUDE: + case PostgreSqlParser.KW_ROUTINE: + case PostgreSqlParser.KW_TRANSFORM: + case PostgreSqlParser.KW_IMPORT: + case PostgreSqlParser.KW_POLICY: + case PostgreSqlParser.KW_METHOD: + case PostgreSqlParser.KW_REFERENCING: + case PostgreSqlParser.KW_NEW: + case PostgreSqlParser.KW_OLD: + case PostgreSqlParser.KW_VALUE: + case PostgreSqlParser.KW_SUBSCRIPTION: + case PostgreSqlParser.KW_PUBLICATION: + case PostgreSqlParser.KW_OUT: + case PostgreSqlParser.KW_ROUTINES: + case PostgreSqlParser.KW_SCHEMAS: + case PostgreSqlParser.KW_PROCEDURES: + case PostgreSqlParser.KW_INPUT: + case PostgreSqlParser.KW_SUPPORT: + case PostgreSqlParser.KW_PARALLEL: + case PostgreSqlParser.KW_SQL: + case PostgreSqlParser.KW_DEPENDS: + case PostgreSqlParser.KW_OVERRIDING: + case PostgreSqlParser.KW_CONFLICT: + case PostgreSqlParser.KW_SKIP: + case PostgreSqlParser.KW_LOCKED: + case PostgreSqlParser.KW_TIES: + case PostgreSqlParser.KW_ROLLUP: + case PostgreSqlParser.KW_CUBE: + case PostgreSqlParser.KW_GROUPING: + case PostgreSqlParser.KW_SETS: + case PostgreSqlParser.KW_ORDINALITY: + case PostgreSqlParser.KW_XMLTABLE: + case PostgreSqlParser.KW_COLUMNS: + case PostgreSqlParser.KW_XMLNAMESPACES: + case PostgreSqlParser.KW_ROWTYPE: + case PostgreSqlParser.KW_NORMALIZED: + case PostgreSqlParser.KW_WITHIN: + case PostgreSqlParser.KW_FILTER: + case PostgreSqlParser.KW_GROUPS: + case PostgreSqlParser.KW_OTHERS: + case PostgreSqlParser.KW_NFC: + case PostgreSqlParser.KW_NFD: + case PostgreSqlParser.KW_NFKC: + case PostgreSqlParser.KW_NFKD: + case PostgreSqlParser.KW_UESCAPE: + case PostgreSqlParser.KW_VIEWS: + case PostgreSqlParser.KW_NORMALIZE: + case PostgreSqlParser.KW_DUMP: + case PostgreSqlParser.KW_PRINT_STRICT_PARAMS: + case PostgreSqlParser.KW_VARIABLE_CONFLICT: + case PostgreSqlParser.KW_ERROR: + case PostgreSqlParser.KW_USE_VARIABLE: + case PostgreSqlParser.KW_USE_COLUMN: + case PostgreSqlParser.KW_ALIAS: + case PostgreSqlParser.KW_CONSTANT: + case PostgreSqlParser.KW_PERFORM: + case PostgreSqlParser.KW_GET: + case PostgreSqlParser.KW_DIAGNOSTICS: + case PostgreSqlParser.KW_STACKED: + case PostgreSqlParser.KW_ELSIF: + case PostgreSqlParser.KW_REVERSE: + case PostgreSqlParser.KW_SLICE: + case PostgreSqlParser.KW_EXIT: + case PostgreSqlParser.KW_RETURN: + case PostgreSqlParser.KW_QUERY: + case PostgreSqlParser.KW_RAISE: + case PostgreSqlParser.KW_SQLSTATE: + case PostgreSqlParser.KW_DEBUG: + case PostgreSqlParser.KW_LOG: + case PostgreSqlParser.KW_INFO: + case PostgreSqlParser.KW_NOTICE: + case PostgreSqlParser.KW_WARNING: + case PostgreSqlParser.KW_EXCEPTION: + case PostgreSqlParser.KW_ASSERT: + case PostgreSqlParser.KW_OPEN: + case PostgreSqlParser.KW_PUBLIC: + case PostgreSqlParser.KW_SKIP_LOCKED: + case PostgreSqlParser.KW_BUFFER_USAGE_LIMIT: + case PostgreSqlParser.Identifier: + case PostgreSqlParser.QuotedIdentifier: + case PostgreSqlParser.UnicodeQuotedIdentifier: + case PostgreSqlParser.StringConstant: + case PostgreSqlParser.UnicodeEscapeStringConstant: + case PostgreSqlParser.BeginDollarStringConstant: + case PostgreSqlParser.PLSQLVARIABLENAME: + case PostgreSqlParser.PLSQLIDENTIFIER: + case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 2); { - this.state = 7430; + this.state = 7432; this.columnName(); } break; + default: + throw new antlr.NoViableAltException(this); } } catch (re) { @@ -44734,20 +48469,20 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ColumnExprNoParenContext(this.context, this.state); this.enterRule(localContext, 736, PostgreSqlParser.RULE_columnExprNoParen); try { - this.state = 7435; + this.state = 7437; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1020, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7433; + this.state = 7435; this.expression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7434; + this.state = 7436; this.columnName(); } break; @@ -44774,23 +48509,23 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7437; + this.state = 7439; this.funcArgExpr(); - this.state = 7442; + this.state = 7444; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1021, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7438; + this.state = 7440; this.match(PostgreSqlParser.COMMA); - this.state = 7439; + this.state = 7441; this.funcArgExpr(); } } } - this.state = 7444; + this.state = 7446; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 1021, this.context); } @@ -44815,34 +48550,34 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 740, PostgreSqlParser.RULE_funcArgExpr); let _la: number; try { - this.state = 7452; + this.state = 7454; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 1023, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7445; + this.state = 7447; this.columnName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7446; + this.state = 7448; this.expression(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7447; + this.state = 7449; this.typeFunctionName(); - this.state = 7450; + this.state = 7452; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20 || _la === 22) { { - this.state = 7448; + this.state = 7450; _la = this.tokenStream.LA(1); if(!(_la === 20 || _la === 22)) { this.errorHandler.recoverInline(this); @@ -44851,7 +48586,7 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7449; + this.state = 7451; this.expression(); } } @@ -44881,861 +48616,809 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7454; + this.state = 7456; this.match(PostgreSqlParser.OPEN_BRACKET); - this.state = 7464; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1025, this.context) ) { - case 1: - { - this.state = 7455; - this.exprList(); - } - break; - case 2: - { - { - this.state = 7456; - this.arrayExpr(); - this.state = 7461; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - while (_la === 6) { - { - { - this.state = 7457; - this.match(PostgreSqlParser.COMMA); - this.state = 7458; - this.arrayExpr(); - } - } - this.state = 7463; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - } - } - } - break; - } this.state = 7466; - this.match(PostgreSqlParser.CLOSE_BRACKET); - } - } - 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 extractArg(): ExtractArgContext { - let localContext = new ExtractArgContext(this.context, this.state); - this.enterRule(localContext, 744, PostgreSqlParser.RULE_extractArg); - try { - this.state = 7476; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1026, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 7468; - this.identifier(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 7469; - this.match(PostgreSqlParser.KW_YEAR); - } - break; - case 3: - this.enterOuterAlt(localContext, 3); - { - this.state = 7470; - this.match(PostgreSqlParser.KW_MONTH); - } - break; - case 4: - this.enterOuterAlt(localContext, 4); - { - this.state = 7471; - this.match(PostgreSqlParser.KW_DAY); - } - break; - case 5: - this.enterOuterAlt(localContext, 5); - { - this.state = 7472; - this.match(PostgreSqlParser.KW_HOUR); - } - break; - case 6: - this.enterOuterAlt(localContext, 6); - { - this.state = 7473; - this.match(PostgreSqlParser.KW_MINUTE); - } - break; - case 7: - this.enterOuterAlt(localContext, 7); - { - this.state = 7474; - this.match(PostgreSqlParser.KW_SECOND); - } - break; - case 8: - this.enterOuterAlt(localContext, 8); - { - this.state = 7475; - this.stringConst(); - } - break; - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public unicodeNormalForm(): UnicodeNormalFormContext { - let localContext = new UnicodeNormalFormContext(this.context, this.state); - this.enterRule(localContext, 746, PostgreSqlParser.RULE_unicodeNormalForm); - let _la: number; - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 7478; - _la = this.tokenStream.LA(1); - if(!(((((_la - 483)) & ~0x1F) === 0 && ((1 << (_la - 483)) & 15) !== 0))) { - this.errorHandler.recoverInline(this); - } - else { - this.errorHandler.reportMatch(this); - this.consume(); - } - } - } - 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 substrList(): SubstrListContext { - let localContext = new SubstrListContext(this.context, this.state); - this.enterRule(localContext, 748, PostgreSqlParser.RULE_substrList); - let _la: number; - try { - this.state = 7501; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1029, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 7480; - this.expression(); - this.state = 7481; - this.match(PostgreSqlParser.KW_FROM); - this.state = 7482; - this.expression(); - this.state = 7485; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 62) { - { - this.state = 7483; - this.match(PostgreSqlParser.KW_FOR); - this.state = 7484; - this.expression(); - } - } - - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 7487; - this.expression(); - this.state = 7488; - this.match(PostgreSqlParser.KW_FOR); - this.state = 7489; - this.expression(); - this.state = 7492; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 64) { - { - this.state = 7490; - this.match(PostgreSqlParser.KW_FROM); - this.state = 7491; - this.expression(); - } - } - - } - break; - case 3: - this.enterOuterAlt(localContext, 3); - { - this.state = 7494; - this.expression(); - this.state = 7495; - this.match(PostgreSqlParser.KW_SIMILAR); - this.state = 7496; - this.expression(); - this.state = 7497; - this.match(PostgreSqlParser.KW_ESCAPE); - this.state = 7498; - this.expression(); - } - break; - case 4: - this.enterOuterAlt(localContext, 4); - { - this.state = 7500; - this.exprList(); - } - break; - } - } - catch (re) { - if (re instanceof antlr.RecognitionException) { - localContext.exception = re; - this.errorHandler.reportError(this, re); - this.errorHandler.recover(this, re); - } else { - throw re; - } - } - finally { - this.exitRule(); - } - return localContext; - } - public when_clause(): When_clauseContext { - let localContext = new When_clauseContext(this.context, this.state); - this.enterRule(localContext, 750, PostgreSqlParser.RULE_when_clause); - try { - this.enterOuterAlt(localContext, 1); - { - this.state = 7503; - this.match(PostgreSqlParser.KW_WHEN); - this.state = 7504; - this.expression(); - this.state = 7505; - this.match(PostgreSqlParser.KW_THEN); - this.state = 7506; - this.expression(); - } - } - 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 indirectionEl(): IndirectionElContext { - let localContext = new IndirectionElContext(this.context, this.state); - this.enterRule(localContext, 752, PostgreSqlParser.RULE_indirectionEl); - try { - this.state = 7525; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.DOT: - this.enterOuterAlt(localContext, 1); - { - this.state = 7508; - this.match(PostgreSqlParser.DOT); - this.state = 7511; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case PostgreSqlParser.KW_ALL: - case PostgreSqlParser.KW_ANALYSE: - case PostgreSqlParser.KW_ANALYZE: - case PostgreSqlParser.KW_AND: - case PostgreSqlParser.KW_ANY: - case PostgreSqlParser.KW_ARRAY: - case PostgreSqlParser.KW_AS: - case PostgreSqlParser.KW_ASC: - case PostgreSqlParser.KW_ASYMMETRIC: - case PostgreSqlParser.KW_BOTH: - case PostgreSqlParser.KW_CASE: - case PostgreSqlParser.KW_CAST: - case PostgreSqlParser.KW_CHECK: - case PostgreSqlParser.KW_COLLATE: - case PostgreSqlParser.KW_COLUMN: - case PostgreSqlParser.KW_CONSTRAINT: - case PostgreSqlParser.KW_CREATE: - case PostgreSqlParser.KW_CURRENT_CATALOG: - case PostgreSqlParser.KW_CURRENT_DATE: - case PostgreSqlParser.KW_CURRENT_ROLE: - case PostgreSqlParser.KW_CURRENT_TIME: - case PostgreSqlParser.KW_CURRENT_TIMESTAMP: - case PostgreSqlParser.KW_CURRENT_USER: - case PostgreSqlParser.KW_DEFAULT: - case PostgreSqlParser.KW_DEFERRABLE: - case PostgreSqlParser.KW_DESC: - case PostgreSqlParser.KW_DISTINCT: - case PostgreSqlParser.KW_DO: - case PostgreSqlParser.KW_ELSE: - case PostgreSqlParser.KW_EXCEPT: - case PostgreSqlParser.KW_FALSE: - case PostgreSqlParser.KW_FETCH: - case PostgreSqlParser.KW_FOR: - case PostgreSqlParser.KW_FOREIGN: - case PostgreSqlParser.KW_FROM: - case PostgreSqlParser.KW_GRANT: - case PostgreSqlParser.KW_GROUP: - case PostgreSqlParser.KW_HAVING: - case PostgreSqlParser.KW_IN: - case PostgreSqlParser.KW_INITIALLY: - case PostgreSqlParser.KW_INTERSECT: - case PostgreSqlParser.KW_LATERAL: - case PostgreSqlParser.KW_LEADING: - case PostgreSqlParser.KW_LIMIT: - case PostgreSqlParser.KW_LOCALTIME: - case PostgreSqlParser.KW_LOCALTIMESTAMP: - case PostgreSqlParser.KW_NOT: - case PostgreSqlParser.KW_NULL: - case PostgreSqlParser.KW_OFFSET: - case PostgreSqlParser.KW_ON: - case PostgreSqlParser.KW_ONLY: - case PostgreSqlParser.KW_OR: - case PostgreSqlParser.KW_ORDER: - case PostgreSqlParser.KW_PLACING: - case PostgreSqlParser.KW_PRIMARY: - case PostgreSqlParser.KW_REFERENCES: - case PostgreSqlParser.KW_RETURNING: - case PostgreSqlParser.KW_SELECT: - case PostgreSqlParser.KW_SESSION_USER: - case PostgreSqlParser.KW_SOME: - case PostgreSqlParser.KW_SYMMETRIC: - case PostgreSqlParser.KW_TABLE: - case PostgreSqlParser.KW_THEN: - case PostgreSqlParser.KW_TO: - case PostgreSqlParser.KW_TRAILING: - case PostgreSqlParser.KW_TRUE: - case PostgreSqlParser.KW_UNION: - case PostgreSqlParser.KW_UNIQUE: - case PostgreSqlParser.KW_USER: - case PostgreSqlParser.KW_USING: - case PostgreSqlParser.KW_VARIADIC: - case PostgreSqlParser.KW_WHEN: - case PostgreSqlParser.KW_WHERE: - case PostgreSqlParser.KW_WINDOW: - case PostgreSqlParser.KW_WITH: - case PostgreSqlParser.KW_AUTHORIZATION: - case PostgreSqlParser.KW_BINARY: - case PostgreSqlParser.KW_COLLATION: - case PostgreSqlParser.KW_CONCURRENTLY: - case PostgreSqlParser.KW_CROSS: - case PostgreSqlParser.KW_CURRENT_SCHEMA: - case PostgreSqlParser.KW_FREEZE: - case PostgreSqlParser.KW_FULL: - case PostgreSqlParser.KW_ILIKE: - case PostgreSqlParser.KW_INNER: - case PostgreSqlParser.KW_IS: - case PostgreSqlParser.KW_ISNULL: - case PostgreSqlParser.KW_JOIN: - case PostgreSqlParser.KW_LEFT: - case PostgreSqlParser.KW_LIKE: - case PostgreSqlParser.KW_NATURAL: - case PostgreSqlParser.KW_NOTNULL: - case PostgreSqlParser.KW_OUTER: - case PostgreSqlParser.KW_OVER: - case PostgreSqlParser.KW_OVERLAPS: - case PostgreSqlParser.KW_RIGHT: - case PostgreSqlParser.KW_SIMILAR: - case PostgreSqlParser.KW_VERBOSE: - case PostgreSqlParser.KW_ABORT: - case PostgreSqlParser.KW_ABSOLUTE: - case PostgreSqlParser.KW_ACCESS: - case PostgreSqlParser.KW_ACTION: - case PostgreSqlParser.KW_ADD: - case PostgreSqlParser.KW_ADMIN: - case PostgreSqlParser.KW_AFTER: - case PostgreSqlParser.KW_AGGREGATE: - case PostgreSqlParser.KW_ALSO: - case PostgreSqlParser.KW_ALTER: - case PostgreSqlParser.KW_ALWAYS: - case PostgreSqlParser.KW_ASSERTION: - case PostgreSqlParser.KW_ASSIGNMENT: - case PostgreSqlParser.KW_AT: - case PostgreSqlParser.KW_ATTRIBUTE: - case PostgreSqlParser.KW_BACKWARD: - case PostgreSqlParser.KW_BEFORE: - case PostgreSqlParser.KW_BEGIN: - case PostgreSqlParser.KW_BY: - case PostgreSqlParser.KW_CACHE: - case PostgreSqlParser.KW_CALLED: - case PostgreSqlParser.KW_CASCADE: - case PostgreSqlParser.KW_CASCADED: - case PostgreSqlParser.KW_CATALOG: - case PostgreSqlParser.KW_CHAIN: - case PostgreSqlParser.KW_CHARACTERISTICS: - case PostgreSqlParser.KW_CHECKPOINT: - case PostgreSqlParser.KW_CLASS: - case PostgreSqlParser.KW_CLOSE: - case PostgreSqlParser.KW_CLUSTER: - case PostgreSqlParser.KW_COMMENT: - case PostgreSqlParser.KW_COMMENTS: - case PostgreSqlParser.KW_COMMIT: - case PostgreSqlParser.KW_COMMITTED: - case PostgreSqlParser.KW_CONFIGURATION: - case PostgreSqlParser.KW_CONNECTION: - case PostgreSqlParser.KW_CONSTRAINTS: - case PostgreSqlParser.KW_CONTENT: - case PostgreSqlParser.KW_CONTINUE: - case PostgreSqlParser.KW_CONVERSION: - case PostgreSqlParser.KW_COPY: - case PostgreSqlParser.KW_COST: - case PostgreSqlParser.KW_CSV: - case PostgreSqlParser.KW_CURSOR: - case PostgreSqlParser.KW_CYCLE: - case PostgreSqlParser.KW_DATA: - case PostgreSqlParser.KW_DATABASE: - case PostgreSqlParser.KW_DAY: - case PostgreSqlParser.KW_DEALLOCATE: - case PostgreSqlParser.KW_DECLARE: - case PostgreSqlParser.KW_DEFAULTS: - case PostgreSqlParser.KW_DEFERRED: - case PostgreSqlParser.KW_DEFINER: - case PostgreSqlParser.KW_DELETE: - case PostgreSqlParser.KW_DELIMITER: - case PostgreSqlParser.KW_DELIMITERS: - case PostgreSqlParser.KW_DICTIONARY: - case PostgreSqlParser.KW_DISABLE: - case PostgreSqlParser.KW_DISCARD: - case PostgreSqlParser.KW_DOCUMENT: - case PostgreSqlParser.KW_DOMAIN: - case PostgreSqlParser.KW_DOUBLE: - case PostgreSqlParser.KW_DROP: - case PostgreSqlParser.KW_EACH: - case PostgreSqlParser.KW_ENABLE: - case PostgreSqlParser.KW_ENCODING: - case PostgreSqlParser.KW_ENCRYPTED: - case PostgreSqlParser.KW_ENUM: - case PostgreSqlParser.KW_ESCAPE: - case PostgreSqlParser.KW_EVENT: - case PostgreSqlParser.KW_EXCLUDE: - case PostgreSqlParser.KW_EXCLUDING: - case PostgreSqlParser.KW_EXCLUSIVE: - case PostgreSqlParser.KW_EXECUTE: - case PostgreSqlParser.KW_EXPLAIN: - case PostgreSqlParser.KW_EXTENSION: - case PostgreSqlParser.KW_EXTERNAL: - case PostgreSqlParser.KW_FAMILY: - case PostgreSqlParser.KW_FIRST: - case PostgreSqlParser.KW_FOLLOWING: - case PostgreSqlParser.KW_FORCE: - case PostgreSqlParser.KW_FORWARD: - case PostgreSqlParser.KW_FUNCTION: - case PostgreSqlParser.KW_FUNCTIONS: - case PostgreSqlParser.KW_GLOBAL: - case PostgreSqlParser.KW_GRANTED: - case PostgreSqlParser.KW_HANDLER: - case PostgreSqlParser.KW_HEADER: - case PostgreSqlParser.KW_HOLD: - case PostgreSqlParser.KW_HOUR: - case PostgreSqlParser.KW_IDENTITY: - case PostgreSqlParser.KW_IF: - case PostgreSqlParser.KW_IMMEDIATE: - case PostgreSqlParser.KW_IMMUTABLE: - case PostgreSqlParser.KW_IMPLICIT: - case PostgreSqlParser.KW_INCLUDING: - case PostgreSqlParser.KW_INCREMENT: - case PostgreSqlParser.KW_INDEX: - case PostgreSqlParser.KW_INDEXES: - case PostgreSqlParser.KW_INHERIT: - case PostgreSqlParser.KW_INHERITS: - case PostgreSqlParser.KW_INLINE: - case PostgreSqlParser.KW_INSENSITIVE: - case PostgreSqlParser.KW_INSERT: - case PostgreSqlParser.KW_INSTEAD: - case PostgreSqlParser.KW_INVOKER: - case PostgreSqlParser.KW_ISOLATION: - case PostgreSqlParser.KW_KEY: - case PostgreSqlParser.KW_LABEL: - case PostgreSqlParser.KW_LANGUAGE: - case PostgreSqlParser.KW_LARGE: - case PostgreSqlParser.KW_LAST: - case PostgreSqlParser.KW_LEAKPROOF: - case PostgreSqlParser.KW_LEVEL: - case PostgreSqlParser.KW_LISTEN: - case PostgreSqlParser.KW_LOAD: - case PostgreSqlParser.KW_LOCAL: - case PostgreSqlParser.KW_LOCATION: - case PostgreSqlParser.KW_LOCK: - case PostgreSqlParser.KW_MAPPING: - case PostgreSqlParser.KW_MATCH: - case PostgreSqlParser.KW_MATERIALIZED: - case PostgreSqlParser.KW_MAXVALUE: - case PostgreSqlParser.KW_MINUTE: - case PostgreSqlParser.KW_MINVALUE: - case PostgreSqlParser.KW_MODE: - case PostgreSqlParser.KW_MONTH: - case PostgreSqlParser.KW_MOVE: - case PostgreSqlParser.KW_NAME: - case PostgreSqlParser.KW_NAMES: - case PostgreSqlParser.KW_NEXT: - case PostgreSqlParser.KW_NO: - case PostgreSqlParser.KW_NOTHING: - case PostgreSqlParser.KW_NOTIFY: - case PostgreSqlParser.KW_NOWAIT: - case PostgreSqlParser.KW_NULLS: - case PostgreSqlParser.KW_OBJECT: - case PostgreSqlParser.KW_OF: - case PostgreSqlParser.KW_OFF: - case PostgreSqlParser.KW_OIDS: - case PostgreSqlParser.KW_OPERATOR: - case PostgreSqlParser.KW_OPTION: - case PostgreSqlParser.KW_OPTIONS: - case PostgreSqlParser.KW_OWNED: - case PostgreSqlParser.KW_OWNER: - case PostgreSqlParser.KW_PARSER: - case PostgreSqlParser.KW_PARTIAL: - case PostgreSqlParser.KW_PARTITION: - case PostgreSqlParser.KW_PASSING: - case PostgreSqlParser.KW_PASSWORD: - case PostgreSqlParser.KW_PLANS: - case PostgreSqlParser.KW_PRECEDING: - case PostgreSqlParser.KW_PREPARE: - case PostgreSqlParser.KW_PREPARED: - case PostgreSqlParser.KW_PRESERVE: - case PostgreSqlParser.KW_PRIOR: - case PostgreSqlParser.KW_PRIVILEGES: - case PostgreSqlParser.KW_PROCEDURAL: - case PostgreSqlParser.KW_PROCEDURE: - case PostgreSqlParser.KW_PROGRAM: - case PostgreSqlParser.KW_QUOTE: - case PostgreSqlParser.KW_RANGE: - case PostgreSqlParser.KW_READ: - case PostgreSqlParser.KW_REASSIGN: - case PostgreSqlParser.KW_RECHECK: - case PostgreSqlParser.KW_RECURSIVE: - case PostgreSqlParser.KW_REF: - case PostgreSqlParser.KW_REFRESH: - case PostgreSqlParser.KW_REINDEX: - case PostgreSqlParser.KW_RELATIVE: - case PostgreSqlParser.KW_RELEASE: - case PostgreSqlParser.KW_RENAME: - case PostgreSqlParser.KW_REPEATABLE: - case PostgreSqlParser.KW_REPLACE: - case PostgreSqlParser.KW_REPLICA: - case PostgreSqlParser.KW_RESET: - case PostgreSqlParser.KW_RESTART: - case PostgreSqlParser.KW_RESTRICT: - case PostgreSqlParser.KW_RETURNS: - case PostgreSqlParser.KW_REVOKE: - case PostgreSqlParser.KW_ROLE: - case PostgreSqlParser.KW_ROLLBACK: - case PostgreSqlParser.KW_ROWS: - case PostgreSqlParser.KW_RULE: - case PostgreSqlParser.KW_SAVEPOINT: - case PostgreSqlParser.KW_SCHEMA: - case PostgreSqlParser.KW_SCROLL: - case PostgreSqlParser.KW_SEARCH: - case PostgreSqlParser.KW_SECOND: - case PostgreSqlParser.KW_SECURITY: - case PostgreSqlParser.KW_SEQUENCE: - case PostgreSqlParser.KW_SEQUENCES: - case PostgreSqlParser.KW_SERIALIZABLE: - case PostgreSqlParser.KW_SERVER: - case PostgreSqlParser.KW_SESSION: - case PostgreSqlParser.KW_SET: - case PostgreSqlParser.KW_SHARE: - case PostgreSqlParser.KW_SHOW: - case PostgreSqlParser.KW_SIMPLE: - case PostgreSqlParser.KW_SNAPSHOT: - case PostgreSqlParser.KW_STABLE: - case PostgreSqlParser.KW_STANDALONE: - case PostgreSqlParser.KW_START: - case PostgreSqlParser.KW_STATEMENT: - case PostgreSqlParser.KW_STATISTICS: - case PostgreSqlParser.KW_STDIN: - case PostgreSqlParser.KW_STDOUT: - case PostgreSqlParser.KW_STORAGE: - case PostgreSqlParser.KW_STRICT: - case PostgreSqlParser.KW_STRIP: - case PostgreSqlParser.KW_SYSID: - case PostgreSqlParser.KW_SYSTEM: - case PostgreSqlParser.KW_TABLES: - case PostgreSqlParser.KW_TABLESPACE: - case PostgreSqlParser.KW_TEMP: - case PostgreSqlParser.KW_TEMPLATE: - case PostgreSqlParser.KW_TEMPORARY: - case PostgreSqlParser.KW_TEXT: - case PostgreSqlParser.KW_TRANSACTION: - case PostgreSqlParser.KW_TRIGGER: - case PostgreSqlParser.KW_TRUNCATE: - case PostgreSqlParser.KW_TRUSTED: - case PostgreSqlParser.KW_TYPE: - case PostgreSqlParser.KW_TYPES: - case PostgreSqlParser.KW_UNBOUNDED: - case PostgreSqlParser.KW_UNCOMMITTED: - case PostgreSqlParser.KW_UNENCRYPTED: - case PostgreSqlParser.KW_UNKNOWN: - case PostgreSqlParser.KW_UNLISTEN: - case PostgreSqlParser.KW_UNLOGGED: - case PostgreSqlParser.KW_UNTIL: - case PostgreSqlParser.KW_UPDATE: - case PostgreSqlParser.KW_VACUUM: - case PostgreSqlParser.KW_VALID: - case PostgreSqlParser.KW_VALIDATE: - case PostgreSqlParser.KW_VALIDATOR: - case PostgreSqlParser.KW_VARYING: - case PostgreSqlParser.KW_VERSION: - case PostgreSqlParser.KW_VIEW: - case PostgreSqlParser.KW_VOLATILE: - case PostgreSqlParser.KW_WHITESPACE: - case PostgreSqlParser.KW_WITHOUT: - case PostgreSqlParser.KW_WORK: - case PostgreSqlParser.KW_WRAPPER: - case PostgreSqlParser.KW_WRITE: - case PostgreSqlParser.KW_XML: - case PostgreSqlParser.KW_YEAR: - case PostgreSqlParser.KW_YES: - case PostgreSqlParser.KW_ZONE: - case PostgreSqlParser.KW_BETWEEN: - case PostgreSqlParser.KW_BIGINT: - case PostgreSqlParser.KW_BIT: - case PostgreSqlParser.KW_BOOLEAN: - case PostgreSqlParser.KW_CHAR: - case PostgreSqlParser.KW_CHARACTER: - case PostgreSqlParser.KW_COALESCE: - case PostgreSqlParser.KW_DEC: - case PostgreSqlParser.KW_DECIMAL: - case PostgreSqlParser.KW_EXISTS: - case PostgreSqlParser.KW_EXTRACT: - case PostgreSqlParser.KW_FLOAT: - case PostgreSqlParser.KW_GREATEST: - case PostgreSqlParser.KW_INOUT: - case PostgreSqlParser.KW_INT: - case PostgreSqlParser.KW_INTEGER: - case PostgreSqlParser.KW_INTERVAL: - case PostgreSqlParser.KW_LEAST: - case PostgreSqlParser.KW_NATIONAL: - case PostgreSqlParser.KW_NCHAR: - case PostgreSqlParser.KW_NONE: - case PostgreSqlParser.KW_NULLIF: - case PostgreSqlParser.KW_NUMERIC: - case PostgreSqlParser.KW_OVERLAY: - case PostgreSqlParser.KW_POSITION: - case PostgreSqlParser.KW_PRECISION: - case PostgreSqlParser.KW_REAL: - case PostgreSqlParser.KW_ROW: - case PostgreSqlParser.KW_SETOF: - case PostgreSqlParser.KW_SMALLINT: - case PostgreSqlParser.KW_SUBSTRING: - case PostgreSqlParser.KW_TIME: - case PostgreSqlParser.KW_TIMESTAMP: - case PostgreSqlParser.KW_TREAT: - case PostgreSqlParser.KW_TRIM: - case PostgreSqlParser.KW_VALUES: - case PostgreSqlParser.KW_VARCHAR: - case PostgreSqlParser.KW_XMLATTRIBUTES: - case PostgreSqlParser.KW_XMLCONCAT: - case PostgreSqlParser.KW_XMLELEMENT: - case PostgreSqlParser.KW_XMLEXISTS: - case PostgreSqlParser.KW_XMLFOREST: - case PostgreSqlParser.KW_XMLPARSE: - case PostgreSqlParser.KW_XMLPI: - case PostgreSqlParser.KW_XMLROOT: - case PostgreSqlParser.KW_XMLSERIALIZE: - case PostgreSqlParser.KW_CALL: - case PostgreSqlParser.KW_CURRENT: - case PostgreSqlParser.KW_ATTACH: - case PostgreSqlParser.KW_DETACH: - case PostgreSqlParser.KW_EXPRESSION: - case PostgreSqlParser.KW_GENERATED: - case PostgreSqlParser.KW_LOGGED: - case PostgreSqlParser.KW_STORED: - case PostgreSqlParser.KW_INCLUDE: - case PostgreSqlParser.KW_ROUTINE: - case PostgreSqlParser.KW_TRANSFORM: - case PostgreSqlParser.KW_IMPORT: - case PostgreSqlParser.KW_POLICY: - case PostgreSqlParser.KW_METHOD: - case PostgreSqlParser.KW_REFERENCING: - case PostgreSqlParser.KW_NEW: - case PostgreSqlParser.KW_OLD: - case PostgreSqlParser.KW_VALUE: - case PostgreSqlParser.KW_SUBSCRIPTION: - case PostgreSqlParser.KW_PUBLICATION: - case PostgreSqlParser.KW_OUT: - case PostgreSqlParser.KW_END: - case PostgreSqlParser.KW_ROUTINES: - case PostgreSqlParser.KW_SCHEMAS: - case PostgreSqlParser.KW_PROCEDURES: - case PostgreSqlParser.KW_INPUT: - case PostgreSqlParser.KW_SUPPORT: - case PostgreSqlParser.KW_PARALLEL: - case PostgreSqlParser.KW_SQL: - case PostgreSqlParser.KW_DEPENDS: - case PostgreSqlParser.KW_OVERRIDING: - case PostgreSqlParser.KW_CONFLICT: - case PostgreSqlParser.KW_SKIP: - case PostgreSqlParser.KW_LOCKED: - case PostgreSqlParser.KW_TIES: - case PostgreSqlParser.KW_ROLLUP: - case PostgreSqlParser.KW_CUBE: - case PostgreSqlParser.KW_GROUPING: - case PostgreSqlParser.KW_SETS: - case PostgreSqlParser.KW_TABLESAMPLE: - case PostgreSqlParser.KW_ORDINALITY: - case PostgreSqlParser.KW_XMLTABLE: - case PostgreSqlParser.KW_COLUMNS: - case PostgreSqlParser.KW_XMLNAMESPACES: - case PostgreSqlParser.KW_ROWTYPE: - case PostgreSqlParser.KW_NORMALIZED: - case PostgreSqlParser.KW_WITHIN: - case PostgreSqlParser.KW_FILTER: - case PostgreSqlParser.KW_GROUPS: - case PostgreSqlParser.KW_OTHERS: - case PostgreSqlParser.KW_NFC: - case PostgreSqlParser.KW_NFD: - case PostgreSqlParser.KW_NFKC: - case PostgreSqlParser.KW_NFKD: - case PostgreSqlParser.KW_UESCAPE: - case PostgreSqlParser.KW_VIEWS: - case PostgreSqlParser.KW_NORMALIZE: - case PostgreSqlParser.KW_DUMP: - case PostgreSqlParser.KW_PRINT_STRICT_PARAMS: - case PostgreSqlParser.KW_VARIABLE_CONFLICT: - case PostgreSqlParser.KW_ERROR: - case PostgreSqlParser.KW_USE_VARIABLE: - case PostgreSqlParser.KW_USE_COLUMN: - case PostgreSqlParser.KW_ALIAS: - case PostgreSqlParser.KW_CONSTANT: - case PostgreSqlParser.KW_PERFORM: - case PostgreSqlParser.KW_GET: - case PostgreSqlParser.KW_DIAGNOSTICS: - case PostgreSqlParser.KW_STACKED: - case PostgreSqlParser.KW_ELSIF: - case PostgreSqlParser.KW_REVERSE: - case PostgreSqlParser.KW_SLICE: - case PostgreSqlParser.KW_EXIT: - case PostgreSqlParser.KW_RETURN: - case PostgreSqlParser.KW_QUERY: - case PostgreSqlParser.KW_RAISE: - case PostgreSqlParser.KW_SQLSTATE: - case PostgreSqlParser.KW_DEBUG: - case PostgreSqlParser.KW_LOG: - case PostgreSqlParser.KW_INFO: - case PostgreSqlParser.KW_NOTICE: - case PostgreSqlParser.KW_WARNING: - case PostgreSqlParser.KW_EXCEPTION: - case PostgreSqlParser.KW_ASSERT: - case PostgreSqlParser.KW_OPEN: - case PostgreSqlParser.KW_PUBLIC: - case PostgreSqlParser.KW_SKIP_LOCKED: - case PostgreSqlParser.KW_BUFFER_USAGE_LIMIT: - case PostgreSqlParser.Identifier: - case PostgreSqlParser.QuotedIdentifier: - case PostgreSqlParser.UnicodeQuotedIdentifier: - case PostgreSqlParser.StringConstant: - case PostgreSqlParser.UnicodeEscapeStringConstant: - case PostgreSqlParser.BeginDollarStringConstant: - case PostgreSqlParser.PLSQLVARIABLENAME: - case PostgreSqlParser.PLSQLIDENTIFIER: - case PostgreSqlParser.EscapeStringConstant: + case PostgreSqlParser.OPEN_PAREN: + case PostgreSqlParser.PLUS: + case PostgreSqlParser.MINUS: + case PostgreSqlParser.PARAM: + case PostgreSqlParser.Operator: + case PostgreSqlParser.KW_ARRAY: + case PostgreSqlParser.KW_CASE: + case PostgreSqlParser.KW_CAST: + case PostgreSqlParser.KW_CURRENT_CATALOG: + case PostgreSqlParser.KW_CURRENT_DATE: + case PostgreSqlParser.KW_CURRENT_ROLE: + case PostgreSqlParser.KW_CURRENT_TIME: + case PostgreSqlParser.KW_CURRENT_TIMESTAMP: + case PostgreSqlParser.KW_CURRENT_USER: + case PostgreSqlParser.KW_DEFAULT: + case PostgreSqlParser.KW_FALSE: + case PostgreSqlParser.KW_LOCALTIME: + case PostgreSqlParser.KW_LOCALTIMESTAMP: + case PostgreSqlParser.KW_NOT: + case PostgreSqlParser.KW_NULL: + case PostgreSqlParser.KW_SESSION_USER: + case PostgreSqlParser.KW_TRUE: + case PostgreSqlParser.KW_UNIQUE: + case PostgreSqlParser.KW_USER: + case PostgreSqlParser.KW_AUTHORIZATION: + case PostgreSqlParser.KW_BINARY: + case PostgreSqlParser.KW_COLLATION: + case PostgreSqlParser.KW_CONCURRENTLY: + case PostgreSqlParser.KW_CROSS: + case PostgreSqlParser.KW_CURRENT_SCHEMA: + case PostgreSqlParser.KW_FREEZE: + case PostgreSqlParser.KW_FULL: + case PostgreSqlParser.KW_ILIKE: + case PostgreSqlParser.KW_INNER: + case PostgreSqlParser.KW_IS: + case PostgreSqlParser.KW_ISNULL: + case PostgreSqlParser.KW_JOIN: + case PostgreSqlParser.KW_LEFT: + case PostgreSqlParser.KW_LIKE: + case PostgreSqlParser.KW_NATURAL: + case PostgreSqlParser.KW_NOTNULL: + case PostgreSqlParser.KW_OUTER: + case PostgreSqlParser.KW_OVER: + case PostgreSqlParser.KW_OVERLAPS: + case PostgreSqlParser.KW_RIGHT: + case PostgreSqlParser.KW_SIMILAR: + case PostgreSqlParser.KW_VERBOSE: + case PostgreSqlParser.KW_ABORT: + case PostgreSqlParser.KW_ABSOLUTE: + case PostgreSqlParser.KW_ACCESS: + case PostgreSqlParser.KW_ACTION: + case PostgreSqlParser.KW_ADD: + case PostgreSqlParser.KW_ADMIN: + case PostgreSqlParser.KW_AFTER: + case PostgreSqlParser.KW_AGGREGATE: + case PostgreSqlParser.KW_ALSO: + case PostgreSqlParser.KW_ALTER: + case PostgreSqlParser.KW_ALWAYS: + case PostgreSqlParser.KW_ASSERTION: + case PostgreSqlParser.KW_ASSIGNMENT: + case PostgreSqlParser.KW_AT: + case PostgreSqlParser.KW_ATTRIBUTE: + case PostgreSqlParser.KW_BACKWARD: + case PostgreSqlParser.KW_BEFORE: + case PostgreSqlParser.KW_BEGIN: + case PostgreSqlParser.KW_BY: + case PostgreSqlParser.KW_CACHE: + case PostgreSqlParser.KW_CALLED: + case PostgreSqlParser.KW_CASCADE: + case PostgreSqlParser.KW_CASCADED: + case PostgreSqlParser.KW_CATALOG: + case PostgreSqlParser.KW_CHAIN: + case PostgreSqlParser.KW_CHARACTERISTICS: + case PostgreSqlParser.KW_CHECKPOINT: + case PostgreSqlParser.KW_CLASS: + case PostgreSqlParser.KW_CLOSE: + case PostgreSqlParser.KW_CLUSTER: + case PostgreSqlParser.KW_COMMENT: + case PostgreSqlParser.KW_COMMENTS: + case PostgreSqlParser.KW_COMMIT: + case PostgreSqlParser.KW_COMMITTED: + case PostgreSqlParser.KW_CONFIGURATION: + case PostgreSqlParser.KW_CONNECTION: + case PostgreSqlParser.KW_CONSTRAINTS: + case PostgreSqlParser.KW_CONTENT: + case PostgreSqlParser.KW_CONTINUE: + case PostgreSqlParser.KW_CONVERSION: + case PostgreSqlParser.KW_COPY: + case PostgreSqlParser.KW_COST: + case PostgreSqlParser.KW_CSV: + case PostgreSqlParser.KW_CURSOR: + case PostgreSqlParser.KW_CYCLE: + case PostgreSqlParser.KW_DATA: + case PostgreSqlParser.KW_DATABASE: + case PostgreSqlParser.KW_DAY: + case PostgreSqlParser.KW_DEALLOCATE: + case PostgreSqlParser.KW_DECLARE: + case PostgreSqlParser.KW_DEFAULTS: + case PostgreSqlParser.KW_DEFERRED: + case PostgreSqlParser.KW_DEFINER: + case PostgreSqlParser.KW_DELETE: + case PostgreSqlParser.KW_DELIMITER: + case PostgreSqlParser.KW_DELIMITERS: + case PostgreSqlParser.KW_DICTIONARY: + case PostgreSqlParser.KW_DISABLE: + case PostgreSqlParser.KW_DISCARD: + case PostgreSqlParser.KW_DOCUMENT: + case PostgreSqlParser.KW_DOMAIN: + case PostgreSqlParser.KW_DOUBLE: + case PostgreSqlParser.KW_DROP: + case PostgreSqlParser.KW_EACH: + case PostgreSqlParser.KW_ENABLE: + case PostgreSqlParser.KW_ENCODING: + case PostgreSqlParser.KW_ENCRYPTED: + case PostgreSqlParser.KW_ENUM: + case PostgreSqlParser.KW_ESCAPE: + case PostgreSqlParser.KW_EVENT: + case PostgreSqlParser.KW_EXCLUDE: + case PostgreSqlParser.KW_EXCLUDING: + case PostgreSqlParser.KW_EXCLUSIVE: + case PostgreSqlParser.KW_EXECUTE: + case PostgreSqlParser.KW_EXPLAIN: + case PostgreSqlParser.KW_EXTENSION: + case PostgreSqlParser.KW_EXTERNAL: + case PostgreSqlParser.KW_FAMILY: + case PostgreSqlParser.KW_FIRST: + case PostgreSqlParser.KW_FOLLOWING: + case PostgreSqlParser.KW_FORCE: + case PostgreSqlParser.KW_FORWARD: + case PostgreSqlParser.KW_FUNCTION: + case PostgreSqlParser.KW_FUNCTIONS: + case PostgreSqlParser.KW_GLOBAL: + case PostgreSqlParser.KW_GRANTED: + case PostgreSqlParser.KW_HANDLER: + case PostgreSqlParser.KW_HEADER: + case PostgreSqlParser.KW_HOLD: + case PostgreSqlParser.KW_HOUR: + case PostgreSqlParser.KW_IDENTITY: + case PostgreSqlParser.KW_IF: + case PostgreSqlParser.KW_IMMEDIATE: + case PostgreSqlParser.KW_IMMUTABLE: + case PostgreSqlParser.KW_IMPLICIT: + case PostgreSqlParser.KW_INCLUDING: + case PostgreSqlParser.KW_INCREMENT: + case PostgreSqlParser.KW_INDEX: + case PostgreSqlParser.KW_INDEXES: + case PostgreSqlParser.KW_INHERIT: + case PostgreSqlParser.KW_INHERITS: + case PostgreSqlParser.KW_INLINE: + case PostgreSqlParser.KW_INSENSITIVE: + case PostgreSqlParser.KW_INSERT: + case PostgreSqlParser.KW_INSTEAD: + case PostgreSqlParser.KW_INVOKER: + case PostgreSqlParser.KW_ISOLATION: + case PostgreSqlParser.KW_KEY: + case PostgreSqlParser.KW_LABEL: + case PostgreSqlParser.KW_LANGUAGE: + case PostgreSqlParser.KW_LARGE: + case PostgreSqlParser.KW_LAST: + case PostgreSqlParser.KW_LEAKPROOF: + case PostgreSqlParser.KW_LEVEL: + case PostgreSqlParser.KW_LISTEN: + case PostgreSqlParser.KW_LOAD: + case PostgreSqlParser.KW_LOCAL: + case PostgreSqlParser.KW_LOCATION: + case PostgreSqlParser.KW_LOCK: + case PostgreSqlParser.KW_MAPPING: + case PostgreSqlParser.KW_MATCH: + case PostgreSqlParser.KW_MATERIALIZED: + case PostgreSqlParser.KW_MAXVALUE: + case PostgreSqlParser.KW_MINUTE: + case PostgreSqlParser.KW_MINVALUE: + case PostgreSqlParser.KW_MODE: + case PostgreSqlParser.KW_MONTH: + case PostgreSqlParser.KW_MOVE: + case PostgreSqlParser.KW_NAME: + case PostgreSqlParser.KW_NAMES: + case PostgreSqlParser.KW_NEXT: + case PostgreSqlParser.KW_NO: + case PostgreSqlParser.KW_NOTHING: + case PostgreSqlParser.KW_NOTIFY: + case PostgreSqlParser.KW_NOWAIT: + case PostgreSqlParser.KW_NULLS: + case PostgreSqlParser.KW_OBJECT: + case PostgreSqlParser.KW_OF: + case PostgreSqlParser.KW_OFF: + case PostgreSqlParser.KW_OIDS: + case PostgreSqlParser.KW_OPERATOR: + case PostgreSqlParser.KW_OPTION: + case PostgreSqlParser.KW_OPTIONS: + case PostgreSqlParser.KW_OWNED: + case PostgreSqlParser.KW_OWNER: + case PostgreSqlParser.KW_PARSER: + case PostgreSqlParser.KW_PARTIAL: + case PostgreSqlParser.KW_PARTITION: + case PostgreSqlParser.KW_PASSING: + case PostgreSqlParser.KW_PASSWORD: + case PostgreSqlParser.KW_PLANS: + case PostgreSqlParser.KW_PRECEDING: + case PostgreSqlParser.KW_PREPARE: + case PostgreSqlParser.KW_PREPARED: + case PostgreSqlParser.KW_PRESERVE: + case PostgreSqlParser.KW_PRIOR: + case PostgreSqlParser.KW_PRIVILEGES: + case PostgreSqlParser.KW_PROCEDURAL: + case PostgreSqlParser.KW_PROCEDURE: + case PostgreSqlParser.KW_PROGRAM: + case PostgreSqlParser.KW_QUOTE: + case PostgreSqlParser.KW_RANGE: + case PostgreSqlParser.KW_READ: + case PostgreSqlParser.KW_REASSIGN: + case PostgreSqlParser.KW_RECHECK: + case PostgreSqlParser.KW_RECURSIVE: + case PostgreSqlParser.KW_REF: + case PostgreSqlParser.KW_REFRESH: + case PostgreSqlParser.KW_REINDEX: + case PostgreSqlParser.KW_RELATIVE: + case PostgreSqlParser.KW_RELEASE: + case PostgreSqlParser.KW_RENAME: + case PostgreSqlParser.KW_REPEATABLE: + case PostgreSqlParser.KW_REPLACE: + case PostgreSqlParser.KW_REPLICA: + case PostgreSqlParser.KW_RESET: + case PostgreSqlParser.KW_RESTART: + case PostgreSqlParser.KW_RESTRICT: + case PostgreSqlParser.KW_RETURNS: + case PostgreSqlParser.KW_REVOKE: + case PostgreSqlParser.KW_ROLE: + case PostgreSqlParser.KW_ROLLBACK: + case PostgreSqlParser.KW_ROWS: + case PostgreSqlParser.KW_RULE: + case PostgreSqlParser.KW_SAVEPOINT: + case PostgreSqlParser.KW_SCHEMA: + case PostgreSqlParser.KW_SCROLL: + case PostgreSqlParser.KW_SEARCH: + case PostgreSqlParser.KW_SECOND: + case PostgreSqlParser.KW_SECURITY: + case PostgreSqlParser.KW_SEQUENCE: + case PostgreSqlParser.KW_SEQUENCES: + case PostgreSqlParser.KW_SERIALIZABLE: + case PostgreSqlParser.KW_SERVER: + case PostgreSqlParser.KW_SESSION: + case PostgreSqlParser.KW_SET: + case PostgreSqlParser.KW_SHARE: + case PostgreSqlParser.KW_SHOW: + case PostgreSqlParser.KW_SIMPLE: + case PostgreSqlParser.KW_SNAPSHOT: + case PostgreSqlParser.KW_STABLE: + case PostgreSqlParser.KW_STANDALONE: + case PostgreSqlParser.KW_START: + case PostgreSqlParser.KW_STATEMENT: + case PostgreSqlParser.KW_STATISTICS: + case PostgreSqlParser.KW_STDIN: + case PostgreSqlParser.KW_STDOUT: + case PostgreSqlParser.KW_STORAGE: + case PostgreSqlParser.KW_STRICT: + case PostgreSqlParser.KW_STRIP: + case PostgreSqlParser.KW_SYSID: + case PostgreSqlParser.KW_SYSTEM: + case PostgreSqlParser.KW_TABLES: + case PostgreSqlParser.KW_TABLESPACE: + case PostgreSqlParser.KW_TEMP: + case PostgreSqlParser.KW_TEMPLATE: + case PostgreSqlParser.KW_TEMPORARY: + case PostgreSqlParser.KW_TEXT: + case PostgreSqlParser.KW_TRANSACTION: + case PostgreSqlParser.KW_TRIGGER: + case PostgreSqlParser.KW_TRUNCATE: + case PostgreSqlParser.KW_TRUSTED: + case PostgreSqlParser.KW_TYPE: + case PostgreSqlParser.KW_TYPES: + case PostgreSqlParser.KW_UNBOUNDED: + case PostgreSqlParser.KW_UNCOMMITTED: + case PostgreSqlParser.KW_UNENCRYPTED: + case PostgreSqlParser.KW_UNKNOWN: + case PostgreSqlParser.KW_UNLISTEN: + case PostgreSqlParser.KW_UNLOGGED: + case PostgreSqlParser.KW_UNTIL: + case PostgreSqlParser.KW_UPDATE: + case PostgreSqlParser.KW_VACUUM: + case PostgreSqlParser.KW_VALID: + case PostgreSqlParser.KW_VALIDATE: + case PostgreSqlParser.KW_VALIDATOR: + case PostgreSqlParser.KW_VARYING: + case PostgreSqlParser.KW_VERSION: + case PostgreSqlParser.KW_VIEW: + case PostgreSqlParser.KW_VOLATILE: + case PostgreSqlParser.KW_WHITESPACE: + case PostgreSqlParser.KW_WITHOUT: + case PostgreSqlParser.KW_WORK: + case PostgreSqlParser.KW_WRAPPER: + case PostgreSqlParser.KW_WRITE: + case PostgreSqlParser.KW_XML: + case PostgreSqlParser.KW_YEAR: + case PostgreSqlParser.KW_YES: + case PostgreSqlParser.KW_ZONE: + case PostgreSqlParser.KW_BETWEEN: + case PostgreSqlParser.KW_BIGINT: + case PostgreSqlParser.KW_BIT: + case PostgreSqlParser.KW_BOOLEAN: + case PostgreSqlParser.KW_CHAR: + case PostgreSqlParser.KW_CHARACTER: + case PostgreSqlParser.KW_COALESCE: + case PostgreSqlParser.KW_DEC: + case PostgreSqlParser.KW_DECIMAL: + case PostgreSqlParser.KW_EXISTS: + case PostgreSqlParser.KW_EXTRACT: + case PostgreSqlParser.KW_FLOAT: + case PostgreSqlParser.KW_GREATEST: + case PostgreSqlParser.KW_INOUT: + case PostgreSqlParser.KW_INT: + case PostgreSqlParser.KW_INTEGER: + case PostgreSqlParser.KW_INTERVAL: + case PostgreSqlParser.KW_LEAST: + case PostgreSqlParser.KW_NATIONAL: + case PostgreSqlParser.KW_NCHAR: + case PostgreSqlParser.KW_NONE: + case PostgreSqlParser.KW_NULLIF: + case PostgreSqlParser.KW_NUMERIC: + case PostgreSqlParser.KW_OVERLAY: + case PostgreSqlParser.KW_POSITION: + case PostgreSqlParser.KW_PRECISION: + case PostgreSqlParser.KW_REAL: + case PostgreSqlParser.KW_ROW: + case PostgreSqlParser.KW_SETOF: + case PostgreSqlParser.KW_SMALLINT: + case PostgreSqlParser.KW_SUBSTRING: + case PostgreSqlParser.KW_TIME: + case PostgreSqlParser.KW_TIMESTAMP: + case PostgreSqlParser.KW_TREAT: + case PostgreSqlParser.KW_TRIM: + case PostgreSqlParser.KW_VALUES: + case PostgreSqlParser.KW_VARCHAR: + case PostgreSqlParser.KW_XMLATTRIBUTES: + case PostgreSqlParser.KW_XMLCONCAT: + case PostgreSqlParser.KW_XMLELEMENT: + case PostgreSqlParser.KW_XMLEXISTS: + case PostgreSqlParser.KW_XMLFOREST: + case PostgreSqlParser.KW_XMLPARSE: + case PostgreSqlParser.KW_XMLPI: + case PostgreSqlParser.KW_XMLROOT: + case PostgreSqlParser.KW_XMLSERIALIZE: + case PostgreSqlParser.KW_CALL: + case PostgreSqlParser.KW_CURRENT: + case PostgreSqlParser.KW_ATTACH: + case PostgreSqlParser.KW_DETACH: + case PostgreSqlParser.KW_EXPRESSION: + case PostgreSqlParser.KW_GENERATED: + case PostgreSqlParser.KW_LOGGED: + case PostgreSqlParser.KW_STORED: + case PostgreSqlParser.KW_INCLUDE: + case PostgreSqlParser.KW_ROUTINE: + case PostgreSqlParser.KW_TRANSFORM: + case PostgreSqlParser.KW_IMPORT: + case PostgreSqlParser.KW_POLICY: + case PostgreSqlParser.KW_METHOD: + case PostgreSqlParser.KW_REFERENCING: + case PostgreSqlParser.KW_NEW: + case PostgreSqlParser.KW_OLD: + case PostgreSqlParser.KW_VALUE: + case PostgreSqlParser.KW_SUBSCRIPTION: + case PostgreSqlParser.KW_PUBLICATION: + case PostgreSqlParser.KW_OUT: + case PostgreSqlParser.KW_ROUTINES: + case PostgreSqlParser.KW_SCHEMAS: + case PostgreSqlParser.KW_PROCEDURES: + case PostgreSqlParser.KW_INPUT: + case PostgreSqlParser.KW_SUPPORT: + case PostgreSqlParser.KW_PARALLEL: + case PostgreSqlParser.KW_SQL: + case PostgreSqlParser.KW_DEPENDS: + case PostgreSqlParser.KW_OVERRIDING: + case PostgreSqlParser.KW_CONFLICT: + case PostgreSqlParser.KW_SKIP: + case PostgreSqlParser.KW_LOCKED: + case PostgreSqlParser.KW_TIES: + case PostgreSqlParser.KW_ROLLUP: + case PostgreSqlParser.KW_CUBE: + case PostgreSqlParser.KW_GROUPING: + case PostgreSqlParser.KW_SETS: + case PostgreSqlParser.KW_TABLESAMPLE: + case PostgreSqlParser.KW_ORDINALITY: + case PostgreSqlParser.KW_XMLTABLE: + case PostgreSqlParser.KW_COLUMNS: + case PostgreSqlParser.KW_XMLNAMESPACES: + case PostgreSqlParser.KW_ROWTYPE: + case PostgreSqlParser.KW_NORMALIZED: + case PostgreSqlParser.KW_WITHIN: + case PostgreSqlParser.KW_FILTER: + case PostgreSqlParser.KW_GROUPS: + case PostgreSqlParser.KW_OTHERS: + case PostgreSqlParser.KW_NFC: + case PostgreSqlParser.KW_NFD: + case PostgreSqlParser.KW_NFKC: + case PostgreSqlParser.KW_NFKD: + case PostgreSqlParser.KW_UESCAPE: + case PostgreSqlParser.KW_VIEWS: + case PostgreSqlParser.KW_NORMALIZE: + case PostgreSqlParser.KW_DUMP: + case PostgreSqlParser.KW_PRINT_STRICT_PARAMS: + case PostgreSqlParser.KW_VARIABLE_CONFLICT: + case PostgreSqlParser.KW_ERROR: + case PostgreSqlParser.KW_USE_VARIABLE: + case PostgreSqlParser.KW_USE_COLUMN: + case PostgreSqlParser.KW_ALIAS: + case PostgreSqlParser.KW_CONSTANT: + case PostgreSqlParser.KW_PERFORM: + case PostgreSqlParser.KW_GET: + case PostgreSqlParser.KW_DIAGNOSTICS: + case PostgreSqlParser.KW_STACKED: + case PostgreSqlParser.KW_ELSIF: + case PostgreSqlParser.KW_REVERSE: + case PostgreSqlParser.KW_SLICE: + case PostgreSqlParser.KW_EXIT: + case PostgreSqlParser.KW_RETURN: + case PostgreSqlParser.KW_QUERY: + case PostgreSqlParser.KW_RAISE: + case PostgreSqlParser.KW_SQLSTATE: + case PostgreSqlParser.KW_DEBUG: + case PostgreSqlParser.KW_LOG: + case PostgreSqlParser.KW_INFO: + case PostgreSqlParser.KW_NOTICE: + case PostgreSqlParser.KW_WARNING: + case PostgreSqlParser.KW_EXCEPTION: + case PostgreSqlParser.KW_ASSERT: + case PostgreSqlParser.KW_OPEN: + case PostgreSqlParser.KW_PUBLIC: + case PostgreSqlParser.KW_SKIP_LOCKED: + case PostgreSqlParser.KW_BUFFER_USAGE_LIMIT: + case PostgreSqlParser.Identifier: + case PostgreSqlParser.QuotedIdentifier: + case PostgreSqlParser.UnicodeQuotedIdentifier: + case PostgreSqlParser.StringConstant: + case PostgreSqlParser.UnicodeEscapeStringConstant: + case PostgreSqlParser.BeginDollarStringConstant: + case PostgreSqlParser.BinaryStringConstant: + case PostgreSqlParser.HexadecimalStringConstant: + case PostgreSqlParser.Integral: + case PostgreSqlParser.Numeric: + case PostgreSqlParser.PLSQLVARIABLENAME: + case PostgreSqlParser.PLSQLIDENTIFIER: + case PostgreSqlParser.EscapeStringConstant: + { + this.state = 7457; + this.exprList(); + } + break; + case PostgreSqlParser.OPEN_BRACKET: + { + { + this.state = 7458; + this.arrayExpr(); + this.state = 7463; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + while (_la === 6) { { - this.state = 7509; - this.colLabel(); + { + this.state = 7459; + this.match(PostgreSqlParser.COMMA); + this.state = 7460; + this.arrayExpr(); } - break; - case PostgreSqlParser.STAR: + } + this.state = 7465; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + } + } + } + break; + case PostgreSqlParser.CLOSE_BRACKET: + break; + default: + break; + } + this.state = 7468; + this.match(PostgreSqlParser.CLOSE_BRACKET); + } + } + 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 extractArg(): ExtractArgContext { + let localContext = new ExtractArgContext(this.context, this.state); + this.enterRule(localContext, 744, PostgreSqlParser.RULE_extractArg); + try { + this.state = 7478; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 1026, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 7470; + this.identifier(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 7471; + this.match(PostgreSqlParser.KW_YEAR); + } + break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 7472; + this.match(PostgreSqlParser.KW_MONTH); + } + break; + case 4: + this.enterOuterAlt(localContext, 4); + { + this.state = 7473; + this.match(PostgreSqlParser.KW_DAY); + } + break; + case 5: + this.enterOuterAlt(localContext, 5); + { + this.state = 7474; + this.match(PostgreSqlParser.KW_HOUR); + } + break; + case 6: + this.enterOuterAlt(localContext, 6); + { + this.state = 7475; + this.match(PostgreSqlParser.KW_MINUTE); + } + break; + case 7: + this.enterOuterAlt(localContext, 7); + { + this.state = 7476; + this.match(PostgreSqlParser.KW_SECOND); + } + break; + case 8: + this.enterOuterAlt(localContext, 8); + { + this.state = 7477; + this.stringConst(); + } + break; + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public unicodeNormalForm(): UnicodeNormalFormContext { + let localContext = new UnicodeNormalFormContext(this.context, this.state); + this.enterRule(localContext, 746, PostgreSqlParser.RULE_unicodeNormalForm); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 7480; + _la = this.tokenStream.LA(1); + if(!(((((_la - 483)) & ~0x1F) === 0 && ((1 << (_la - 483)) & 15) !== 0))) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + } + } + 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 substrList(): SubstrListContext { + let localContext = new SubstrListContext(this.context, this.state); + this.enterRule(localContext, 748, PostgreSqlParser.RULE_substrList); + let _la: number; + try { + this.state = 7503; + this.errorHandler.sync(this); + 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.state = 7484; + this.expression(); + this.state = 7487; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 62) { { - this.state = 7510; - this.match(PostgreSqlParser.STAR); + this.state = 7485; + this.match(PostgreSqlParser.KW_FOR); + this.state = 7486; + this.expression(); } - break; - default: - throw new antlr.NoViableAltException(this); } + } break; - case PostgreSqlParser.OPEN_BRACKET: + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 7489; + this.expression(); + this.state = 7490; + this.match(PostgreSqlParser.KW_FOR); + this.state = 7491; + this.expression(); + this.state = 7494; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 64) { + { + this.state = 7492; + this.match(PostgreSqlParser.KW_FROM); + this.state = 7493; + this.expression(); + } + } + + } + break; + 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 = 7499; + this.match(PostgreSqlParser.KW_ESCAPE); + this.state = 7500; + this.expression(); + } + break; + case 4: + this.enterOuterAlt(localContext, 4); + { + this.state = 7502; + this.exprList(); + } + break; + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } + public when_clause(): When_clauseContext { + let localContext = new When_clauseContext(this.context, this.state); + this.enterRule(localContext, 750, PostgreSqlParser.RULE_when_clause); + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 7505; + this.match(PostgreSqlParser.KW_WHEN); + this.state = 7506; + this.expression(); + this.state = 7507; + this.match(PostgreSqlParser.KW_THEN); + this.state = 7508; + this.expression(); + } + } + 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 indirectionEl(): IndirectionElContext { + let localContext = new IndirectionElContext(this.context, this.state); + this.enterRule(localContext, 752, PostgreSqlParser.RULE_indirectionEl); + let _la: number; + try { + this.state = 7526; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 1033, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 7510; + this.match(PostgreSqlParser.DOT); + this.state = 7511; + this.indirectionLabel(); + } + break; + case 2: this.enterOuterAlt(localContext, 2); { + this.state = 7512; + this.match(PostgreSqlParser.DOT); this.state = 7513; + this.match(PostgreSqlParser.STAR); + } + break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 7514; this.match(PostgreSqlParser.OPEN_BRACKET); - this.state = 7522; + this.state = 7523; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1033, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1032, this.context) ) { case 1: { - this.state = 7514; + this.state = 7515; this.expression(); } break; case 2: { - this.state = 7516; + this.state = 7517; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1031, this.context) ) { - case 1: + _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)) & 3901572195) !== 0) || _la === 586) { { - this.state = 7515; + this.state = 7516; this.expression(); } - break; } - this.state = 7518; + + this.state = 7519; this.match(PostgreSqlParser.COLON); - this.state = 7520; + this.state = 7521; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1032, this.context) ) { - case 1: + _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)) & 3901572195) !== 0) || _la === 586) { { - this.state = 7519; + this.state = 7520; this.expression(); } - break; } + } break; } - this.state = 7524; + this.state = 7525; this.match(PostgreSqlParser.CLOSE_BRACKET); } break; - default: - throw new antlr.NoViableAltException(this); } } catch (re) { @@ -45759,7 +49442,7 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7528; + this.state = 7529; this.errorHandler.sync(this); alternative = 1; do { @@ -45767,7 +49450,7 @@ export class PostgreSqlParser extends SQLParserBase { case 1: { { - this.state = 7527; + this.state = 7528; this.indirectionEl(); } } @@ -45775,9 +49458,9 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 7530; + this.state = 7531; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1035, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1034, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -45802,21 +49485,21 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7535; + this.state = 7536; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1036, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1035, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7532; + this.state = 7533; this.indirectionEl(); } } } - this.state = 7537; + this.state = 7538; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1036, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1035, this.context); } } } @@ -45841,25 +49524,25 @@ export class PostgreSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 7538; + this.state = 7539; this.targetEl(); - this.state = 7543; + this.state = 7544; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1037, 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 = 7539; - this.match(PostgreSqlParser.COMMA); this.state = 7540; + this.match(PostgreSqlParser.COMMA); + this.state = 7541; this.targetEl(); } } } - this.state = 7545; + this.state = 7546; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1037, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1036, this.context); } } } @@ -45882,14 +49565,14 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 760, PostgreSqlParser.RULE_targetEl); let _la: number; try { - this.state = 7558; + this.state = 7566; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1041, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1040, this.context) ) { case 1: localContext = new Target_starContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 7546; + this.state = 7547; this.tableAllColumns(); } break; @@ -45897,38 +49580,38 @@ export class PostgreSqlParser extends SQLParserBase { localContext = new Target_labelContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 7549; + this.state = 7550; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1038, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1037, this.context) ) { case 1: { - this.state = 7547; + this.state = 7548; this.selectLiteralColumnName(); } break; case 2: { - this.state = 7548; + this.state = 7549; this.selectExpressionColumnName(); } break; } - this.state = 7556; + this.state = 7557; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1040, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1039, this.context) ) { case 1: { - this.state = 7552; + this.state = 7553; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 7551; + this.state = 7552; this.match(PostgreSqlParser.KW_AS); } } - this.state = 7554; + this.state = 7555; (localContext as Target_labelContext)._alias = this.identifier(); } break; @@ -45940,6 +49623,34 @@ export class PostgreSqlParser extends SQLParserBase { } } break; + case 3: + localContext = new Target_dot_emptyContext(localContext); + this.enterOuterAlt(localContext, 3); + { + this.state = 7559; + this.colId(); + this.state = 7560; + this.match(PostgreSqlParser.DOT); + this.state = 7561; + if (!(this.entityCollecting)) { + throw this.createFailedPredicateException("this.entityCollecting"); + } + this.state = 7562; + this.emptyColumn(); + } + break; + case 4: + localContext = new Target_emptyContext(localContext); + this.enterOuterAlt(localContext, 4); + { + this.state = 7564; + if (!(this.entityCollecting)) { + throw this.createFailedPredicateException("this.entityCollecting"); + } + this.state = 7565; + this.emptyColumn(); + } + break; } } catch (re) { @@ -45963,23 +49674,23 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7565; + this.state = 7573; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_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)) & 3221570659) !== 0) || _la === 586) { { { - this.state = 7560; + this.state = 7568; this.colId(); - this.state = 7561; + this.state = 7569; this.match(PostgreSqlParser.DOT); } } - this.state = 7567; + this.state = 7575; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 7568; + this.state = 7576; this.match(PostgreSqlParser.STAR); } } @@ -46004,21 +49715,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7570; + this.state = 7578; this.qualifiedName(); - this.state = 7575; + this.state = 7583; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7571; + this.state = 7579; this.match(PostgreSqlParser.COMMA); - this.state = 7572; + this.state = 7580; this.qualifiedName(); } } - this.state = 7577; + this.state = 7585; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -46045,21 +49756,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7578; + this.state = 7586; this.tableName(); - this.state = 7583; + this.state = 7591; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7579; + this.state = 7587; this.match(PostgreSqlParser.COMMA); - this.state = 7580; + this.state = 7588; this.tableName(); } } - this.state = 7585; + this.state = 7593; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -46086,21 +49797,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7586; + this.state = 7594; this.schemaName(); - this.state = 7591; + this.state = 7599; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7587; + this.state = 7595; this.match(PostgreSqlParser.COMMA); - this.state = 7588; + this.state = 7596; this.schemaName(); } } - this.state = 7593; + this.state = 7601; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -46127,21 +49838,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7594; + this.state = 7602; this.databaseName(); - this.state = 7599; + this.state = 7607; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7595; + this.state = 7603; this.match(PostgreSqlParser.COMMA); - this.state = 7596; + this.state = 7604; this.databaseName(); } } - this.state = 7601; + this.state = 7609; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -46167,7 +49878,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7602; + this.state = 7610; this.qualifiedName(); } } @@ -46191,7 +49902,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7604; + this.state = 7612; this.qualifiedName(); } } @@ -46215,7 +49926,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7606; + this.state = 7614; this.qualifiedName(); } } @@ -46239,7 +49950,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7608; + this.state = 7616; this.qualifiedName(); } } @@ -46263,7 +49974,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7610; + this.state = 7618; this.qualifiedName(); } } @@ -46287,7 +49998,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7612; + this.state = 7620; this.anyName(); } } @@ -46311,14 +50022,14 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7614; + this.state = 7622; this.colId(); - this.state = 7616; + this.state = 7624; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1047, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1046, this.context) ) { case 1: { - this.state = 7615; + this.state = 7623; this.indirection(); } break; @@ -46346,21 +50057,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7618; + this.state = 7626; this.tableSpaceName(); - this.state = 7623; + this.state = 7631; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7619; + this.state = 7627; this.match(PostgreSqlParser.COMMA); - this.state = 7620; + this.state = 7628; this.tableSpaceName(); } } - this.state = 7625; + this.state = 7633; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -46387,21 +50098,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7626; + this.state = 7634; this.colId(); - this.state = 7631; + this.state = 7639; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7627; + this.state = 7635; this.match(PostgreSqlParser.COMMA); - this.state = 7628; + this.state = 7636; this.colId(); } } - this.state = 7633; + this.state = 7641; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -46427,7 +50138,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7634; + this.state = 7642; this.anyName(); } } @@ -46451,7 +50162,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7636; + this.state = 7644; this.anyName(); } } @@ -46475,7 +50186,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7638; + this.state = 7646; this.anyName(); } } @@ -46499,7 +50210,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7640; + this.state = 7648; this.colId(); } } @@ -46523,7 +50234,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7642; + this.state = 7650; this.colId(); } } @@ -46545,22 +50256,22 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ProcedureNameContext(this.context, this.state); this.enterRule(localContext, 800, PostgreSqlParser.RULE_procedureName); try { - this.state = 7648; + this.state = 7656; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1050, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1049, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7644; + this.state = 7652; this.typeFunctionName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7645; + this.state = 7653; this.colId(); - this.state = 7646; + this.state = 7654; this.indirection(); } break; @@ -46584,22 +50295,22 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ProcedureNameCreateContext(this.context, this.state); this.enterRule(localContext, 802, PostgreSqlParser.RULE_procedureNameCreate); try { - this.state = 7654; + this.state = 7662; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1051, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1050, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7650; + this.state = 7658; this.typeFunctionName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7651; + this.state = 7659; this.colId(); - this.state = 7652; + this.state = 7660; this.indirection(); } break; @@ -46646,47 +50357,12 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ColumnNameContext(this.context, this.state); this.enterRule(localContext, 806, PostgreSqlParser.RULE_columnName); try { - this.state = 7669; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1053, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 7658; - this.colId(); - this.state = 7659; - this.optIndirection(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 7661; - if (!(this.shouldMatchEmpty())) { - throw this.createFailedPredicateException("this.shouldMatchEmpty()"); - } - this.state = 7667; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1052, this.context) ) { - case 1: - { - this.state = 7662; - this.colId(); - this.state = 7663; - this.match(PostgreSqlParser.DOT); - this.state = 7664; - this.emptyColumn(); - } - break; - case 2: - { - this.state = 7666; - this.emptyColumn(); - } - break; - } - } - break; + this.enterOuterAlt(localContext, 1); + { + this.state = 7666; + this.colId(); + this.state = 7667; + this.optIndirection(); } } catch (re) { @@ -46707,47 +50383,12 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ColumnNamePathContext(this.context, this.state); this.enterRule(localContext, 808, PostgreSqlParser.RULE_columnNamePath); try { - this.state = 7682; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1055, this.context) ) { - case 1: - this.enterOuterAlt(localContext, 1); - { - this.state = 7671; - this.colId(); - this.state = 7672; - this.optIndirection(); - } - break; - case 2: - this.enterOuterAlt(localContext, 2); - { - this.state = 7674; - if (!(this.shouldMatchEmpty())) { - throw this.createFailedPredicateException("this.shouldMatchEmpty()"); - } - this.state = 7680; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1054, this.context) ) { - case 1: - { - this.state = 7675; - this.colId(); - this.state = 7676; - this.match(PostgreSqlParser.DOT); - this.state = 7677; - this.emptyColumn(); - } - break; - case 2: - { - this.state = 7679; - this.emptyColumn(); - } - break; - } - } - break; + this.enterOuterAlt(localContext, 1); + { + this.state = 7669; + this.colId(); + this.state = 7670; + this.optIndirection(); } } catch (re) { @@ -46770,7 +50411,7 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7684; + this.state = 7672; this.colId(); } } @@ -46792,22 +50433,22 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new FunctionNameCreateContext(this.context, this.state); this.enterRule(localContext, 812, PostgreSqlParser.RULE_functionNameCreate); try { - this.state = 7690; + this.state = 7678; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1056, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1051, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7686; + this.state = 7674; this.typeFunctionName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7687; + this.state = 7675; this.colId(); - this.state = 7688; + this.state = 7676; this.indirection(); } break; @@ -46831,22 +50472,22 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new FunctionNameContext(this.context, this.state); this.enterRule(localContext, 814, PostgreSqlParser.RULE_functionName); try { - this.state = 7696; + this.state = 7684; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1057, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1052, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7692; + this.state = 7680; this.typeFunctionName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7693; + this.state = 7681; this.colId(); - this.state = 7694; + this.state = 7682; this.indirection(); } break; @@ -46872,16 +50513,16 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7698; + this.state = 7686; this.anysconst(); - this.state = 7701; + this.state = 7689; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1058, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1053, this.context) ) { case 1: { - this.state = 7699; + this.state = 7687; this.match(PostgreSqlParser.KW_UESCAPE); - this.state = 7700; + this.state = 7688; this.anysconst(); } break; @@ -46907,50 +50548,50 @@ export class PostgreSqlParser extends SQLParserBase { this.enterRule(localContext, 818, PostgreSqlParser.RULE_anysconst); let _la: number; try { - this.state = 7714; + this.state = 7702; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.StringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 7703; + this.state = 7691; this.match(PostgreSqlParser.StringConstant); } break; case PostgreSqlParser.UnicodeEscapeStringConstant: this.enterOuterAlt(localContext, 2); { - this.state = 7704; + this.state = 7692; this.match(PostgreSqlParser.UnicodeEscapeStringConstant); } break; case PostgreSqlParser.BeginDollarStringConstant: this.enterOuterAlt(localContext, 3); { - this.state = 7705; + this.state = 7693; this.match(PostgreSqlParser.BeginDollarStringConstant); - this.state = 7709; + this.state = 7697; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 590) { { { - this.state = 7706; + this.state = 7694; this.match(PostgreSqlParser.DollarText); } } - this.state = 7711; + this.state = 7699; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 7712; + this.state = 7700; this.match(PostgreSqlParser.EndDollarStringConstant); } break; case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 4); { - this.state = 7713; + this.state = 7701; this.match(PostgreSqlParser.EscapeStringConstant); } break; @@ -46979,12 +50620,12 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7717; + this.state = 7705; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12 || _la === 13) { { - this.state = 7716; + this.state = 7704; _la = this.tokenStream.LA(1); if(!(_la === 12 || _la === 13)) { this.errorHandler.recoverInline(this); @@ -46996,7 +50637,7 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 7719; + this.state = 7707; this.match(PostgreSqlParser.Integral); } } @@ -47018,41 +50659,41 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new RoleSpecContext(this.context, this.state); this.enterRule(localContext, 822, PostgreSqlParser.RULE_roleSpec); try { - this.state = 7726; + this.state = 7714; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1062, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1057, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7721; + this.state = 7709; this.nonReservedWord(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7722; + this.state = 7710; this.match(PostgreSqlParser.KW_CURRENT_USER); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7723; + this.state = 7711; this.match(PostgreSqlParser.KW_CURRENT_ROLE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7724; + this.state = 7712; this.match(PostgreSqlParser.KW_SESSION_USER); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7725; + this.state = 7713; this.match(PostgreSqlParser.KW_PUBLIC); } break; @@ -47079,21 +50720,21 @@ export class PostgreSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 7728; + this.state = 7716; this.roleSpec(); - this.state = 7733; + this.state = 7721; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7729; + this.state = 7717; this.match(PostgreSqlParser.COMMA); - this.state = 7730; + this.state = 7718; this.roleSpec(); } } - this.state = 7735; + this.state = 7723; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -47117,20 +50758,20 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ColIdContext(this.context, this.state); this.enterRule(localContext, 826, PostgreSqlParser.RULE_colId); try { - this.state = 7738; + this.state = 7726; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1064, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1059, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7736; + this.state = 7724; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7737; + this.state = 7725; this.colNameKeyword(); } break; @@ -47154,20 +50795,20 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new TypeFunctionNameContext(this.context, this.state); this.enterRule(localContext, 828, PostgreSqlParser.RULE_typeFunctionName); try { - this.state = 7742; + this.state = 7730; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1065, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1060, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7740; + this.state = 7728; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7741; + this.state = 7729; this.typeFuncNameKeyword(); } break; @@ -47191,27 +50832,27 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new NonReservedWordContext(this.context, this.state); this.enterRule(localContext, 830, PostgreSqlParser.RULE_nonReservedWord); try { - this.state = 7747; + this.state = 7735; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1066, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1061, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7744; + this.state = 7732; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7745; + this.state = 7733; this.colNameKeyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7746; + this.state = 7734; this.typeFuncNameKeyword(); } break; @@ -47235,34 +50876,34 @@ export class PostgreSqlParser extends SQLParserBase { let localContext = new ColLabelContext(this.context, this.state); this.enterRule(localContext, 832, PostgreSqlParser.RULE_colLabel); try { - this.state = 7753; + this.state = 7741; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1067, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1062, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7749; + this.state = 7737; this.identifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7750; + this.state = 7738; this.colNameKeyword(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7751; + this.state = 7739; this.typeFuncNameKeyword(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7752; + this.state = 7740; this.reservedKeyword(); } break; @@ -47282,26 +50923,70 @@ export class PostgreSqlParser extends SQLParserBase { } return localContext; } + public indirectionLabel(): IndirectionLabelContext { + let localContext = new IndirectionLabelContext(this.context, this.state); + this.enterRule(localContext, 834, PostgreSqlParser.RULE_indirectionLabel); + try { + this.state = 7746; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 1063, this.context) ) { + case 1: + this.enterOuterAlt(localContext, 1); + { + this.state = 7743; + this.identifier(); + } + break; + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 7744; + this.colNameKeyword(); + } + break; + case 3: + this.enterOuterAlt(localContext, 3); + { + this.state = 7745; + this.typeFuncNameKeyword(); + } + break; + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } public identifier(): IdentifierContext { let localContext = new IdentifierContext(this.context, this.state); - this.enterRule(localContext, 834, PostgreSqlParser.RULE_identifier); + this.enterRule(localContext, 836, PostgreSqlParser.RULE_identifier); try { - this.state = 7766; + this.state = 7759; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.Identifier: this.enterOuterAlt(localContext, 1); { - this.state = 7755; + this.state = 7748; this.match(PostgreSqlParser.Identifier); - this.state = 7758; + this.state = 7751; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1068, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1064, this.context) ) { case 1: { - this.state = 7756; + this.state = 7749; this.match(PostgreSqlParser.KW_UESCAPE); - this.state = 7757; + this.state = 7750; this.anysconst(); } break; @@ -47314,35 +50999,35 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 2); { - this.state = 7760; + this.state = 7753; this.stringConst(); } break; case PostgreSqlParser.QuotedIdentifier: this.enterOuterAlt(localContext, 3); { - this.state = 7761; + this.state = 7754; this.match(PostgreSqlParser.QuotedIdentifier); } break; case PostgreSqlParser.UnicodeQuotedIdentifier: this.enterOuterAlt(localContext, 4); { - this.state = 7762; + this.state = 7755; this.match(PostgreSqlParser.UnicodeQuotedIdentifier); } break; case PostgreSqlParser.PLSQLVARIABLENAME: this.enterOuterAlt(localContext, 5); { - this.state = 7763; + this.state = 7756; this.match(PostgreSqlParser.PLSQLVARIABLENAME); } break; case PostgreSqlParser.PLSQLIDENTIFIER: this.enterOuterAlt(localContext, 6); { - this.state = 7764; + this.state = 7757; this.match(PostgreSqlParser.PLSQLIDENTIFIER); } break; @@ -47682,7 +51367,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_BUFFER_USAGE_LIMIT: this.enterOuterAlt(localContext, 7); { - this.state = 7765; + this.state = 7758; this.unreservedKeyword(); } break; @@ -47706,12 +51391,12 @@ export class PostgreSqlParser extends SQLParserBase { } public unreservedKeyword(): UnreservedKeywordContext { let localContext = new UnreservedKeywordContext(this.context, this.state); - this.enterRule(localContext, 836, PostgreSqlParser.RULE_unreservedKeyword); + this.enterRule(localContext, 838, PostgreSqlParser.RULE_unreservedKeyword); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7768; + this.state = 7761; _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); @@ -47738,365 +51423,365 @@ export class PostgreSqlParser extends SQLParserBase { } public colNameKeyword(): ColNameKeywordContext { let localContext = new ColNameKeywordContext(this.context, this.state); - this.enterRule(localContext, 838, PostgreSqlParser.RULE_colNameKeyword); + this.enterRule(localContext, 840, PostgreSqlParser.RULE_colNameKeyword); try { - this.state = 7821; + this.state = 7814; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1070, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1066, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7770; + this.state = 7763; this.match(PostgreSqlParser.KW_BETWEEN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7771; + this.state = 7764; this.match(PostgreSqlParser.KW_BIGINT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7772; + this.state = 7765; this.bit(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7773; + this.state = 7766; this.match(PostgreSqlParser.KW_BOOLEAN); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7774; + this.state = 7767; this.match(PostgreSqlParser.KW_CHAR); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7775; + this.state = 7768; this.character(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 7776; + this.state = 7769; this.match(PostgreSqlParser.KW_COALESCE); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 7777; + this.state = 7770; this.match(PostgreSqlParser.KW_DEC); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 7778; + this.state = 7771; this.match(PostgreSqlParser.KW_DECIMAL); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 7779; + this.state = 7772; this.match(PostgreSqlParser.KW_EXISTS); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 7780; + this.state = 7773; this.match(PostgreSqlParser.KW_EXTRACT); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 7781; + this.state = 7774; this.match(PostgreSqlParser.KW_FLOAT); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 7782; + this.state = 7775; this.match(PostgreSqlParser.KW_GREATEST); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 7783; + this.state = 7776; this.match(PostgreSqlParser.KW_GROUPING); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 7784; + this.state = 7777; this.match(PostgreSqlParser.KW_INOUT); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 7785; + this.state = 7778; this.match(PostgreSqlParser.KW_INT); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 7786; + this.state = 7779; this.match(PostgreSqlParser.KW_INTEGER); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 7787; + this.state = 7780; this.match(PostgreSqlParser.KW_INTERVAL); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 7788; + this.state = 7781; this.match(PostgreSqlParser.KW_LEAST); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 7789; + this.state = 7782; this.match(PostgreSqlParser.KW_NATIONAL); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 7790; + this.state = 7783; this.match(PostgreSqlParser.KW_NCHAR); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 7791; + this.state = 7784; this.match(PostgreSqlParser.KW_NONE); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 7792; + this.state = 7785; this.match(PostgreSqlParser.KW_NORMALIZE); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 7793; + this.state = 7786; this.match(PostgreSqlParser.KW_NULLIF); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 7794; + this.state = 7787; this.numeric(); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 7795; + this.state = 7788; this.match(PostgreSqlParser.KW_OUT); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 7796; + this.state = 7789; this.match(PostgreSqlParser.KW_OVERLAY); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 7797; + this.state = 7790; this.match(PostgreSqlParser.KW_POSITION); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 7798; + this.state = 7791; this.match(PostgreSqlParser.KW_PRECISION); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 7799; + this.state = 7792; this.match(PostgreSqlParser.KW_REAL); } break; case 31: this.enterOuterAlt(localContext, 31); { - this.state = 7800; + this.state = 7793; this.match(PostgreSqlParser.KW_ROW); } break; case 32: this.enterOuterAlt(localContext, 32); { - this.state = 7801; + this.state = 7794; this.match(PostgreSqlParser.KW_SETOF); } break; case 33: this.enterOuterAlt(localContext, 33); { - this.state = 7802; + this.state = 7795; this.match(PostgreSqlParser.KW_SMALLINT); } break; case 34: this.enterOuterAlt(localContext, 34); { - this.state = 7803; + this.state = 7796; this.match(PostgreSqlParser.KW_SUBSTRING); } break; case 35: this.enterOuterAlt(localContext, 35); { - this.state = 7804; + this.state = 7797; this.match(PostgreSqlParser.KW_TIME); } break; case 36: this.enterOuterAlt(localContext, 36); { - this.state = 7805; + this.state = 7798; this.match(PostgreSqlParser.KW_TIMESTAMP); } break; case 37: this.enterOuterAlt(localContext, 37); { - this.state = 7806; + this.state = 7799; this.match(PostgreSqlParser.KW_TREAT); } break; case 38: this.enterOuterAlt(localContext, 38); { - this.state = 7807; + this.state = 7800; this.match(PostgreSqlParser.KW_TRIM); } break; case 39: this.enterOuterAlt(localContext, 39); { - this.state = 7808; + this.state = 7801; this.match(PostgreSqlParser.KW_VALUES); } break; case 40: this.enterOuterAlt(localContext, 40); { - this.state = 7809; + this.state = 7802; this.match(PostgreSqlParser.KW_VARCHAR); } break; case 41: this.enterOuterAlt(localContext, 41); { - this.state = 7810; + this.state = 7803; this.match(PostgreSqlParser.KW_XMLATTRIBUTES); } break; case 42: this.enterOuterAlt(localContext, 42); { - this.state = 7811; + this.state = 7804; this.match(PostgreSqlParser.KW_XMLCONCAT); } break; case 43: this.enterOuterAlt(localContext, 43); { - this.state = 7812; + this.state = 7805; this.match(PostgreSqlParser.KW_XMLELEMENT); } break; case 44: this.enterOuterAlt(localContext, 44); { - this.state = 7813; + this.state = 7806; this.match(PostgreSqlParser.KW_XMLEXISTS); } break; case 45: this.enterOuterAlt(localContext, 45); { - this.state = 7814; + this.state = 7807; this.match(PostgreSqlParser.KW_XMLFOREST); } break; case 46: this.enterOuterAlt(localContext, 46); { - this.state = 7815; + this.state = 7808; this.match(PostgreSqlParser.KW_XMLNAMESPACES); } break; case 47: this.enterOuterAlt(localContext, 47); { - this.state = 7816; + this.state = 7809; this.match(PostgreSqlParser.KW_XMLPARSE); } break; case 48: this.enterOuterAlt(localContext, 48); { - this.state = 7817; + this.state = 7810; this.match(PostgreSqlParser.KW_XMLPI); } break; case 49: this.enterOuterAlt(localContext, 49); { - this.state = 7818; + this.state = 7811; this.match(PostgreSqlParser.KW_XMLROOT); } break; case 50: this.enterOuterAlt(localContext, 50); { - this.state = 7819; + this.state = 7812; this.match(PostgreSqlParser.KW_XMLSERIALIZE); } break; case 51: this.enterOuterAlt(localContext, 51); { - this.state = 7820; + this.state = 7813; this.match(PostgreSqlParser.KW_XMLTABLE); } break; @@ -48118,12 +51803,12 @@ export class PostgreSqlParser extends SQLParserBase { } public typeFuncNameKeyword(): TypeFuncNameKeywordContext { let localContext = new TypeFuncNameKeywordContext(this.context, this.state); - this.enterRule(localContext, 840, PostgreSqlParser.RULE_typeFuncNameKeyword); + this.enterRule(localContext, 842, PostgreSqlParser.RULE_typeFuncNameKeyword); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7823; + this.state = 7816; _la = this.tokenStream.LA(1); if(!(((((_la - 106)) & ~0x1F) === 0 && ((1 << (_la - 106)) & 8126463) !== 0) || _la === 472)) { this.errorHandler.recoverInline(this); @@ -48150,12 +51835,12 @@ export class PostgreSqlParser extends SQLParserBase { } public reservedKeyword(): ReservedKeywordContext { let localContext = new ReservedKeywordContext(this.context, this.state); - this.enterRule(localContext, 842, PostgreSqlParser.RULE_reservedKeyword); + this.enterRule(localContext, 844, PostgreSqlParser.RULE_reservedKeyword); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7825; + this.state = 7818; _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); @@ -48182,60 +51867,60 @@ export class PostgreSqlParser extends SQLParserBase { } public plBlock(): PlBlockContext { let localContext = new PlBlockContext(this.context, this.state); - this.enterRule(localContext, 844, PostgreSqlParser.RULE_plBlock); + this.enterRule(localContext, 846, PostgreSqlParser.RULE_plBlock); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { { - this.state = 7828; + this.state = 7821; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 18) { { - this.state = 7827; + this.state = 7820; this.labelDecl(); } } - this.state = 7840; + this.state = 7833; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 178) { { - this.state = 7830; + this.state = 7823; this.match(PostgreSqlParser.KW_DECLARE); - this.state = 7838; + this.state = 7831; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1074, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1070, this.context) ) { case 1: { - this.state = 7834; + this.state = 7827; this.errorHandler.sync(this); alternative = 1; do { switch (alternative) { case 1: { - this.state = 7834; + this.state = 7827; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1072, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1068, this.context) ) { case 1: { - this.state = 7831; + this.state = 7824; this.declStatement(); } break; case 2: { - this.state = 7832; + this.state = 7825; this.match(PostgreSqlParser.KW_DECLARE); } break; case 3: { - this.state = 7833; + this.state = 7826; this.labelDecl(); } break; @@ -48245,9 +51930,9 @@ export class PostgreSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 7836; + this.state = 7829; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1073, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1069, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; @@ -48256,42 +51941,42 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 7842; + this.state = 7835; this.match(PostgreSqlParser.KW_BEGIN); - this.state = 7846; + this.state = 7839; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1076, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1072, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 7843; + this.state = 7836; this.procStmt(); } } } - this.state = 7848; + this.state = 7841; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1076, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1072, this.context); } - this.state = 7850; + this.state = 7843; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 517) { { - this.state = 7849; + this.state = 7842; this.exceptionSect(); } } - this.state = 7852; + this.state = 7845; this.match(PostgreSqlParser.KW_END); - this.state = 7854; + this.state = 7847; 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)) & 3221570659) !== 0) || _la === 586) { { - this.state = 7853; + this.state = 7846; this.anyIdentifier(); } } @@ -48314,15 +51999,15 @@ export class PostgreSqlParser extends SQLParserBase { } public labelDecl(): LabelDeclContext { let localContext = new LabelDeclContext(this.context, this.state); - this.enterRule(localContext, 846, PostgreSqlParser.RULE_labelDecl); + this.enterRule(localContext, 848, PostgreSqlParser.RULE_labelDecl); try { this.enterOuterAlt(localContext, 1); { - this.state = 7856; + this.state = 7849; this.match(PostgreSqlParser.LESS_LESS); - this.state = 7857; + this.state = 7850; this.anyIdentifier(); - this.state = 7858; + this.state = 7851; this.match(PostgreSqlParser.GREATER_GREATER); } } @@ -48342,28 +52027,28 @@ export class PostgreSqlParser extends SQLParserBase { } public declStatement(): DeclStatementContext { let localContext = new DeclStatementContext(this.context, this.state); - this.enterRule(localContext, 848, PostgreSqlParser.RULE_declStatement); + this.enterRule(localContext, 850, PostgreSqlParser.RULE_declStatement); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7860; + this.state = 7853; this.anyIdentifier(); - this.state = 7907; + this.state = 7900; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1089, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1085, this.context) ) { case 1: { - this.state = 7861; + this.state = 7854; this.match(PostgreSqlParser.KW_ALIAS); - this.state = 7862; + this.state = 7855; this.match(PostgreSqlParser.KW_FOR); - this.state = 7865; + this.state = 7858; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.PARAM: { - this.state = 7863; + this.state = 7856; this.match(PostgreSqlParser.PARAM); } break; @@ -48762,7 +52447,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 7864; + this.state = 7857; this.colId(); } break; @@ -48773,65 +52458,65 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 7868; + this.state = 7861; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1080, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1076, this.context) ) { case 1: { - this.state = 7867; + this.state = 7860; this.match(PostgreSqlParser.KW_CONSTANT); } break; } - this.state = 7870; + this.state = 7863; this.typename(); - this.state = 7872; + this.state = 7865; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 43) { { - this.state = 7871; + this.state = 7864; this.collateClause(); } } - this.state = 7876; + this.state = 7869; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 77) { { - this.state = 7874; + this.state = 7867; this.match(PostgreSqlParser.KW_NOT); - this.state = 7875; + this.state = 7868; this.match(PostgreSqlParser.KW_NULL); } } - this.state = 7883; + this.state = 7876; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 20 || _la === 53) { { - this.state = 7880; + this.state = 7873; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.EQUAL: case PostgreSqlParser.COLON_EQUALS: { - this.state = 7878; + this.state = 7871; this.assignOperator(); } break; case PostgreSqlParser.KW_DEFAULT: { - this.state = 7879; + this.state = 7872; this.match(PostgreSqlParser.KW_DEFAULT); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 7882; + this.state = 7875; this.sqlExpression(); } } @@ -48840,59 +52525,59 @@ export class PostgreSqlParser extends SQLParserBase { break; case 3: { - this.state = 7889; + this.state = 7882; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269 || _la === 324) { { - this.state = 7886; + this.state = 7879; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 7885; + this.state = 7878; this.match(PostgreSqlParser.KW_NO); } } - this.state = 7888; + this.state = 7881; this.match(PostgreSqlParser.KW_SCROLL); } } - this.state = 7891; + this.state = 7884; this.match(PostgreSqlParser.KW_CURSOR); - this.state = 7903; + this.state = 7896; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 7892; + this.state = 7885; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7893; + this.state = 7886; this.declCursorArg(); - this.state = 7898; + this.state = 7891; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7894; + this.state = 7887; this.match(PostgreSqlParser.COMMA); - this.state = 7895; + this.state = 7888; this.declCursorArg(); } } - this.state = 7900; + this.state = 7893; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 7901; + this.state = 7894; this.match(PostgreSqlParser.CLOSE_PAREN); } } - this.state = 7905; + this.state = 7898; _la = this.tokenStream.LA(1); if(!(_la === 62 || _la === 116)) { this.errorHandler.recoverInline(this); @@ -48901,12 +52586,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 7906; + this.state = 7899; this.selectStmt(); } break; } - this.state = 7909; + this.state = 7902; this.match(PostgreSqlParser.SEMI); } } @@ -48926,13 +52611,13 @@ export class PostgreSqlParser extends SQLParserBase { } public declCursorArg(): DeclCursorArgContext { let localContext = new DeclCursorArgContext(this.context, this.state); - this.enterRule(localContext, 850, PostgreSqlParser.RULE_declCursorArg); + this.enterRule(localContext, 852, PostgreSqlParser.RULE_declCursorArg); try { this.enterOuterAlt(localContext, 1); { - this.state = 7911; + this.state = 7904; this.anyIdentifier(); - this.state = 7912; + this.state = 7905; this.typename(); } } @@ -48952,12 +52637,12 @@ export class PostgreSqlParser extends SQLParserBase { } public assignOperator(): AssignOperatorContext { let localContext = new AssignOperatorContext(this.context, this.state); - this.enterRule(localContext, 852, PostgreSqlParser.RULE_assignOperator); + this.enterRule(localContext, 854, PostgreSqlParser.RULE_assignOperator); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7914; + this.state = 7907; _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 20)) { this.errorHandler.recoverInline(this); @@ -48984,164 +52669,164 @@ export class PostgreSqlParser extends SQLParserBase { } public procStmt(): ProcStmtContext { let localContext = new ProcStmtContext(this.context, this.state); - this.enterRule(localContext, 854, PostgreSqlParser.RULE_procStmt); + this.enterRule(localContext, 856, PostgreSqlParser.RULE_procStmt); try { - this.state = 7940; + this.state = 7933; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1090, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1086, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 7916; + this.state = 7909; this.plBlock(); - this.state = 7917; + this.state = 7910; this.match(PostgreSqlParser.SEMI); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 7919; + this.state = 7912; this.stmtReturn(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 7920; + this.state = 7913; this.stmtRaise(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 7921; + this.state = 7914; this.stmtAssign(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 7922; + this.state = 7915; this.stmtIf(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 7923; + this.state = 7916; this.stmtCase(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 7924; + this.state = 7917; this.stmtLoopWhileFor(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 7925; + this.state = 7918; this.stmtForeach(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 7926; + this.state = 7919; this.stmtExit(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 7927; + this.state = 7920; this.stmtAssert(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 7928; + this.state = 7921; this.stmtExecsql(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 7929; + this.state = 7922; this.stmtDynexecute(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 7930; + this.state = 7923; this.stmtPerform(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 7931; + this.state = 7924; this.stmtCall(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 7932; + this.state = 7925; this.stmtGetdiag(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 7933; + this.state = 7926; this.stmtOpen(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 7934; + this.state = 7927; this.stmtFetch(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 7935; + this.state = 7928; this.stmtMove(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 7936; + this.state = 7929; this.stmtClose(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 7937; + this.state = 7930; this.stmtNull(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 7938; + this.state = 7931; this.stmtCommitOrRollback(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 7939; + this.state = 7932; this.stmtSet(); } break; @@ -49163,15 +52848,15 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtPerform(): StmtPerformContext { let localContext = new StmtPerformContext(this.context, this.state); - this.enterRule(localContext, 856, PostgreSqlParser.RULE_stmtPerform); + this.enterRule(localContext, 858, PostgreSqlParser.RULE_stmtPerform); try { this.enterOuterAlt(localContext, 1); { - this.state = 7942; + this.state = 7935; this.match(PostgreSqlParser.KW_PERFORM); - this.state = 7943; + this.state = 7936; this.sqlExpression(); - this.state = 7944; + this.state = 7937; this.match(PostgreSqlParser.SEMI); } } @@ -49191,38 +52876,39 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtCall(): StmtCallContext { let localContext = new StmtCallContext(this.context, this.state); - this.enterRule(localContext, 858, PostgreSqlParser.RULE_stmtCall); + this.enterRule(localContext, 860, PostgreSqlParser.RULE_stmtCall); + let _la: number; try { - this.state = 7965; + this.state = 7958; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_CALL: this.enterOuterAlt(localContext, 1); { - this.state = 7946; + this.state = 7939; this.match(PostgreSqlParser.KW_CALL); - this.state = 7947; + this.state = 7940; this.anyIdentifier(); - this.state = 7954; + this.state = 7947; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1092, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1088, this.context) ) { case 1: { - this.state = 7948; + this.state = 7941; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7950; + this.state = 7943; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1091, this.context) ) { - case 1: + _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)) & 3901572195) !== 0) || _la === 586) { { - this.state = 7949; + this.state = 7942; this.exprList(); } - break; } - this.state = 7952; + + this.state = 7945; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 7953; + this.state = 7946; this.match(PostgreSqlParser.SEMI); } break; @@ -49232,25 +52918,25 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_DO: this.enterOuterAlt(localContext, 2); { - this.state = 7956; + this.state = 7949; this.match(PostgreSqlParser.KW_DO); - this.state = 7957; + this.state = 7950; this.anyIdentifier(); - this.state = 7958; + this.state = 7951; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 7960; + this.state = 7953; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1093, this.context) ) { - case 1: + _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)) & 3901572195) !== 0) || _la === 586) { { - this.state = 7959; + this.state = 7952; this.exprList(); } - break; } - this.state = 7962; + + this.state = 7955; this.match(PostgreSqlParser.CLOSE_PAREN); - this.state = 7963; + this.state = 7956; this.match(PostgreSqlParser.SEMI); } break; @@ -49274,17 +52960,17 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtAssign(): StmtAssignContext { let localContext = new StmtAssignContext(this.context, this.state); - this.enterRule(localContext, 860, PostgreSqlParser.RULE_stmtAssign); + this.enterRule(localContext, 862, PostgreSqlParser.RULE_stmtAssign); try { this.enterOuterAlt(localContext, 1); { - this.state = 7967; + this.state = 7960; this.assignVar(); - this.state = 7968; + this.state = 7961; this.assignOperator(); - this.state = 7969; + this.state = 7962; this.sqlExpression(); - this.state = 7970; + this.state = 7963; this.match(PostgreSqlParser.SEMI); } } @@ -49304,19 +52990,19 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtGetdiag(): StmtGetdiagContext { let localContext = new StmtGetdiagContext(this.context, this.state); - this.enterRule(localContext, 862, PostgreSqlParser.RULE_stmtGetdiag); + this.enterRule(localContext, 864, PostgreSqlParser.RULE_stmtGetdiag); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7972; + this.state = 7965; this.match(PostgreSqlParser.KW_GET); - this.state = 7974; + this.state = 7967; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 434 || _la === 501) { { - this.state = 7973; + this.state = 7966; _la = this.tokenStream.LA(1); if(!(_la === 434 || _la === 501)) { this.errorHandler.recoverInline(this); @@ -49328,29 +53014,29 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 7976; + this.state = 7969; this.match(PostgreSqlParser.KW_DIAGNOSTICS); { - this.state = 7977; + this.state = 7970; this.getdiagListItem(); - this.state = 7982; + this.state = 7975; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 7978; + this.state = 7971; this.match(PostgreSqlParser.COMMA); - this.state = 7979; + this.state = 7972; this.getdiagListItem(); } } - this.state = 7984; + this.state = 7977; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 7985; + this.state = 7978; this.match(PostgreSqlParser.SEMI); } } @@ -49370,15 +53056,15 @@ export class PostgreSqlParser extends SQLParserBase { } public getdiagListItem(): GetdiagListItemContext { let localContext = new GetdiagListItemContext(this.context, this.state); - this.enterRule(localContext, 864, PostgreSqlParser.RULE_getdiagListItem); + this.enterRule(localContext, 866, PostgreSqlParser.RULE_getdiagListItem); try { this.enterOuterAlt(localContext, 1); { - this.state = 7987; + this.state = 7980; this.assignVar(); - this.state = 7988; + this.state = 7981; this.assignOperator(); - this.state = 7989; + this.state = 7982; this.colId(); } } @@ -49398,12 +53084,12 @@ export class PostgreSqlParser extends SQLParserBase { } public assignVar(): AssignVarContext { let localContext = new AssignVarContext(this.context, this.state); - this.enterRule(localContext, 866, PostgreSqlParser.RULE_assignVar); + this.enterRule(localContext, 868, PostgreSqlParser.RULE_assignVar); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 7993; + this.state = 7986; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -49801,34 +53487,34 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 7991; + this.state = 7984; this.anyName(); } break; case PostgreSqlParser.PARAM: { - this.state = 7992; + this.state = 7985; this.match(PostgreSqlParser.PARAM); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 8001; + this.state = 7994; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 7995; + this.state = 7988; this.match(PostgreSqlParser.OPEN_BRACKET); - this.state = 7996; + this.state = 7989; this.expression(); - this.state = 7997; + this.state = 7990; this.match(PostgreSqlParser.CLOSE_BRACKET); } } - this.state = 8003; + this.state = 7996; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -49850,85 +53536,85 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtIf(): StmtIfContext { let localContext = new StmtIfContext(this.context, this.state); - this.enterRule(localContext, 868, PostgreSqlParser.RULE_stmtIf); + this.enterRule(localContext, 870, PostgreSqlParser.RULE_stmtIf); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 8004; + this.state = 7997; this.match(PostgreSqlParser.KW_IF); - this.state = 8005; + this.state = 7998; this.sqlExpression(); - this.state = 8006; + this.state = 7999; this.match(PostgreSqlParser.KW_THEN); - this.state = 8010; + this.state = 8003; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1099, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1095, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 8007; + this.state = 8000; this.procStmt(); } } } - this.state = 8012; + this.state = 8005; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1099, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1095, this.context); } { - this.state = 8024; + this.state = 8017; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 502) { { { - this.state = 8013; + this.state = 8006; this.match(PostgreSqlParser.KW_ELSIF); - this.state = 8014; + this.state = 8007; this.expression(); - this.state = 8015; + this.state = 8008; this.match(PostgreSqlParser.KW_THEN); - this.state = 8019; + this.state = 8012; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1100, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1096, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 8016; + this.state = 8009; this.procStmt(); } } } - this.state = 8021; + this.state = 8014; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1100, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1096, this.context); } } } - this.state = 8026; + this.state = 8019; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 8028; + this.state = 8021; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 58) { { - this.state = 8027; + this.state = 8020; this.stmtElse(); } } - this.state = 8030; + this.state = 8023; this.match(PostgreSqlParser.KW_END); - this.state = 8031; + this.state = 8024; this.match(PostgreSqlParser.KW_IF); - this.state = 8032; + this.state = 8025; this.match(PostgreSqlParser.SEMI); } } @@ -49948,28 +53634,28 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtElse(): StmtElseContext { let localContext = new StmtElseContext(this.context, this.state); - this.enterRule(localContext, 870, PostgreSqlParser.RULE_stmtElse); + this.enterRule(localContext, 872, PostgreSqlParser.RULE_stmtElse); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 8034; + this.state = 8027; this.match(PostgreSqlParser.KW_ELSE); - this.state = 8038; + this.state = 8031; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1103, 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 = 8035; + this.state = 8028; this.procStmt(); } } } - this.state = 8040; + this.state = 8033; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1103, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1099, this.context); } } } @@ -49989,73 +53675,73 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtCase(): StmtCaseContext { let localContext = new StmtCaseContext(this.context, this.state); - this.enterRule(localContext, 872, PostgreSqlParser.RULE_stmtCase); + this.enterRule(localContext, 874, PostgreSqlParser.RULE_stmtCase); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 8041; + this.state = 8034; this.match(PostgreSqlParser.KW_CASE); - this.state = 8043; + this.state = 8036; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1104, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1100, this.context) ) { case 1: { - this.state = 8042; + this.state = 8035; this.sqlExpression(); } break; } - this.state = 8054; + this.state = 8047; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 8045; + this.state = 8038; this.match(PostgreSqlParser.KW_WHEN); - this.state = 8046; + this.state = 8039; this.exprList(); - this.state = 8047; + this.state = 8040; this.match(PostgreSqlParser.KW_THEN); - this.state = 8051; + this.state = 8044; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1105, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1101, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 8048; + this.state = 8041; this.procStmt(); } } } - this.state = 8053; + this.state = 8046; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1105, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1101, this.context); } } } - this.state = 8056; + this.state = 8049; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 102); - this.state = 8059; + this.state = 8052; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 58) { { - this.state = 8058; + this.state = 8051; this.stmtElse(); } } - this.state = 8061; + this.state = 8054; this.match(PostgreSqlParser.KW_END); - this.state = 8062; + this.state = 8055; this.match(PostgreSqlParser.KW_CASE); - this.state = 8063; + this.state = 8056; this.match(PostgreSqlParser.SEMI); } } @@ -50075,30 +53761,30 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtLoopWhileFor(): StmtLoopWhileForContext { let localContext = new StmtLoopWhileForContext(this.context, this.state); - this.enterRule(localContext, 874, PostgreSqlParser.RULE_stmtLoopWhileFor); + this.enterRule(localContext, 876, PostgreSqlParser.RULE_stmtLoopWhileFor); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8066; + this.state = 8059; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 18) { { - this.state = 8065; + this.state = 8058; this.labelDecl(); } } - this.state = 8072; + this.state = 8065; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_WHILE: { { - this.state = 8068; + this.state = 8061; this.match(PostgreSqlParser.KW_WHILE); - this.state = 8069; + this.state = 8062; this.expression(); } } @@ -50106,9 +53792,9 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_FOR: { { - this.state = 8070; + this.state = 8063; this.match(PostgreSqlParser.KW_FOR); - this.state = 8071; + this.state = 8064; this.forControl(); } } @@ -50118,7 +53804,7 @@ export class PostgreSqlParser extends SQLParserBase { default: break; } - this.state = 8074; + this.state = 8067; this.loopBody(); } } @@ -50138,28 +53824,28 @@ export class PostgreSqlParser extends SQLParserBase { } public forControl(): ForControlContext { let localContext = new ForControlContext(this.context, this.state); - this.enterRule(localContext, 876, PostgreSqlParser.RULE_forControl); + this.enterRule(localContext, 878, PostgreSqlParser.RULE_forControl); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8076; + this.state = 8069; this.anyNameList(); - this.state = 8077; + this.state = 8070; this.match(PostgreSqlParser.KW_IN); - this.state = 8100; + this.state = 8093; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1114, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1110, this.context) ) { case 1: { - this.state = 8078; + this.state = 8071; this.colId(); - this.state = 8080; + this.state = 8073; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 8079; + this.state = 8072; this.executeParamClause(); } } @@ -50168,30 +53854,30 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 8082; + this.state = 8075; this.selectStmt(); } break; case 3: { - this.state = 8083; + this.state = 8076; this.explainStmt(); } break; case 4: { - this.state = 8084; + this.state = 8077; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 8085; + this.state = 8078; this.expression(); - this.state = 8088; + this.state = 8081; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 8086; + this.state = 8079; this.match(PostgreSqlParser.KW_USING); - this.state = 8087; + this.state = 8080; this.exprList(); } } @@ -50200,30 +53886,30 @@ export class PostgreSqlParser extends SQLParserBase { break; case 5: { - this.state = 8091; + this.state = 8084; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1112, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1108, this.context) ) { case 1: { - this.state = 8090; + this.state = 8083; this.match(PostgreSqlParser.KW_REVERSE); } break; } - this.state = 8093; + this.state = 8086; this.expression(); - this.state = 8094; + this.state = 8087; this.match(PostgreSqlParser.DOT_DOT); - this.state = 8095; + this.state = 8088; this.expression(); - this.state = 8098; + this.state = 8091; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 147) { { - this.state = 8096; + this.state = 8089; this.match(PostgreSqlParser.KW_BY); - this.state = 8097; + this.state = 8090; this.expression(); } } @@ -50249,44 +53935,44 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtForeach(): StmtForeachContext { let localContext = new StmtForeachContext(this.context, this.state); - this.enterRule(localContext, 878, PostgreSqlParser.RULE_stmtForeach); + this.enterRule(localContext, 880, PostgreSqlParser.RULE_stmtForeach); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8103; + this.state = 8096; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 18) { { - this.state = 8102; + this.state = 8095; this.labelDecl(); } } - this.state = 8105; + this.state = 8098; this.match(PostgreSqlParser.KW_FOREACH); - this.state = 8106; + this.state = 8099; this.anyNameList(); - this.state = 8109; + this.state = 8102; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 506) { { - this.state = 8107; + this.state = 8100; this.match(PostgreSqlParser.KW_SLICE); - this.state = 8108; + this.state = 8101; this.match(PostgreSqlParser.Integral); } } - this.state = 8111; + this.state = 8104; this.match(PostgreSqlParser.KW_IN); - this.state = 8112; + this.state = 8105; this.match(PostgreSqlParser.KW_ARRAY); - this.state = 8113; + this.state = 8106; this.expression(); - this.state = 8114; + this.state = 8107; this.loopBody(); } } @@ -50306,12 +53992,12 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtExit(): StmtExitContext { let localContext = new StmtExitContext(this.context, this.state); - this.enterRule(localContext, 880, PostgreSqlParser.RULE_stmtExit); + this.enterRule(localContext, 882, PostgreSqlParser.RULE_stmtExit); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8116; + this.state = 8109; _la = this.tokenStream.LA(1); if(!(_la === 167 || _la === 507)) { this.errorHandler.recoverInline(this); @@ -50320,29 +54006,29 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 8118; + this.state = 8111; 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)) & 3221570659) !== 0) || _la === 586) { { - this.state = 8117; + this.state = 8110; this.anyIdentifier(); } } - this.state = 8122; + this.state = 8115; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 102) { { - this.state = 8120; + this.state = 8113; this.match(PostgreSqlParser.KW_WHEN); - this.state = 8121; + this.state = 8114; this.sqlExpression(); } } - this.state = 8124; + this.state = 8117; this.match(PostgreSqlParser.SEMI); } } @@ -50362,39 +54048,39 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtReturn(): StmtReturnContext { let localContext = new StmtReturnContext(this.context, this.state); - this.enterRule(localContext, 882, PostgreSqlParser.RULE_stmtReturn); + this.enterRule(localContext, 884, PostgreSqlParser.RULE_stmtReturn); try { this.enterOuterAlt(localContext, 1); { - this.state = 8126; + this.state = 8119; this.match(PostgreSqlParser.KW_RETURN); - this.state = 8141; + this.state = 8134; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1121, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1117, this.context) ) { case 1: { - this.state = 8127; + this.state = 8120; this.match(PostgreSqlParser.KW_NEXT); - this.state = 8128; + this.state = 8121; this.sqlExpression(); } break; case 2: { - this.state = 8129; + this.state = 8122; this.match(PostgreSqlParser.KW_QUERY); - this.state = 8136; + this.state = 8129; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_EXECUTE: { - this.state = 8130; + this.state = 8123; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 8131; + this.state = 8124; this.expression(); - this.state = 8132; + this.state = 8125; this.match(PostgreSqlParser.KW_USING); - this.state = 8133; + this.state = 8126; this.exprList(); } break; @@ -50404,7 +54090,7 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_WITH: case PostgreSqlParser.KW_VALUES: { - this.state = 8135; + this.state = 8128; this.selectStmt(); } break; @@ -50415,12 +54101,12 @@ export class PostgreSqlParser extends SQLParserBase { break; case 3: { - this.state = 8139; + this.state = 8132; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1120, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1116, this.context) ) { case 1: { - this.state = 8138; + this.state = 8131; this.sqlExpression(); } break; @@ -50428,7 +54114,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8143; + this.state = 8136; this.match(PostgreSqlParser.SEMI); } } @@ -50448,24 +54134,24 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtRaise(): StmtRaiseContext { let localContext = new StmtRaiseContext(this.context, this.state); - this.enterRule(localContext, 884, PostgreSqlParser.RULE_stmtRaise); + this.enterRule(localContext, 886, PostgreSqlParser.RULE_stmtRaise); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8145; + this.state = 8138; this.match(PostgreSqlParser.KW_RAISE); - this.state = 8175; + this.state = 8168; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1128, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1124, this.context) ) { case 1: { - this.state = 8147; + this.state = 8140; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1122, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1118, this.context) ) { case 1: { - this.state = 8146; + this.state = 8139; _la = this.tokenStream.LA(1); if(!(((((_la - 512)) & ~0x1F) === 0 && ((1 << (_la - 512)) & 63) !== 0))) { this.errorHandler.recoverInline(this); @@ -50477,21 +54163,21 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8161; + this.state = 8154; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1125, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1121, this.context) ) { case 1: { - this.state = 8149; + this.state = 8142; this.identifier(); } break; case 2: { { - this.state = 8150; + this.state = 8143; this.match(PostgreSqlParser.KW_SQLSTATE); - this.state = 8151; + this.state = 8144; this.stringConst(); } } @@ -50499,26 +54185,26 @@ export class PostgreSqlParser extends SQLParserBase { case 3: { { - this.state = 8152; + this.state = 8145; this.stringConst(); - this.state = 8159; + this.state = 8152; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 8155; + this.state = 8148; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 8153; + this.state = 8146; this.match(PostgreSqlParser.COMMA); - this.state = 8154; + this.state = 8147; this.expression(); } } - this.state = 8157; + this.state = 8150; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 6); @@ -50529,29 +54215,29 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8172; + this.state = 8165; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 8163; + this.state = 8156; this.match(PostgreSqlParser.KW_USING); { - this.state = 8164; + this.state = 8157; this.optRaiseUsingElem(); - this.state = 8169; + this.state = 8162; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8165; + this.state = 8158; this.match(PostgreSqlParser.COMMA); - this.state = 8166; + this.state = 8159; this.optRaiseUsingElem(); } } - this.state = 8171; + this.state = 8164; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -50559,7 +54245,7 @@ export class PostgreSqlParser extends SQLParserBase { } } - this.state = 8174; + this.state = 8167; this.match(PostgreSqlParser.SEMI); } break; @@ -50582,15 +54268,15 @@ export class PostgreSqlParser extends SQLParserBase { } public optRaiseUsingElem(): OptRaiseUsingElemContext { let localContext = new OptRaiseUsingElemContext(this.context, this.state); - this.enterRule(localContext, 886, PostgreSqlParser.RULE_optRaiseUsingElem); + this.enterRule(localContext, 888, PostgreSqlParser.RULE_optRaiseUsingElem); try { this.enterOuterAlt(localContext, 1); { - this.state = 8177; + this.state = 8170; this.identifier(); - this.state = 8178; + this.state = 8171; this.match(PostgreSqlParser.EQUAL); - this.state = 8179; + this.state = 8172; this.expression(); } } @@ -50610,28 +54296,28 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtAssert(): StmtAssertContext { let localContext = new StmtAssertContext(this.context, this.state); - this.enterRule(localContext, 888, PostgreSqlParser.RULE_stmtAssert); + this.enterRule(localContext, 890, PostgreSqlParser.RULE_stmtAssert); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8181; + this.state = 8174; this.match(PostgreSqlParser.KW_ASSERT); - this.state = 8182; + this.state = 8175; this.sqlExpression(); - this.state = 8185; + this.state = 8178; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 6) { { - this.state = 8183; + this.state = 8176; this.match(PostgreSqlParser.COMMA); - this.state = 8184; + this.state = 8177; this.sqlExpression(); } } - this.state = 8187; + this.state = 8180; this.match(PostgreSqlParser.SEMI); } } @@ -50651,45 +54337,45 @@ export class PostgreSqlParser extends SQLParserBase { } public loopBody(): LoopBodyContext { let localContext = new LoopBodyContext(this.context, this.state); - this.enterRule(localContext, 890, PostgreSqlParser.RULE_loopBody); + this.enterRule(localContext, 892, PostgreSqlParser.RULE_loopBody); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 8189; + this.state = 8182; this.match(PostgreSqlParser.KW_LOOP); - this.state = 8193; + this.state = 8186; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1130, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1126, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 8190; + this.state = 8183; this.procStmt(); } } } - this.state = 8195; + this.state = 8188; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1130, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1126, this.context); } - this.state = 8196; + this.state = 8189; this.match(PostgreSqlParser.KW_END); - this.state = 8197; + this.state = 8190; this.match(PostgreSqlParser.KW_LOOP); - this.state = 8199; + this.state = 8192; 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)) & 3221570659) !== 0) || _la === 586) { { - this.state = 8198; + this.state = 8191; this.anyIdentifier(); } } - this.state = 8201; + this.state = 8194; this.match(PostgreSqlParser.SEMI); } } @@ -50709,24 +54395,24 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtExecsql(): StmtExecsqlContext { let localContext = new StmtExecsqlContext(this.context, this.state); - this.enterRule(localContext, 892, PostgreSqlParser.RULE_stmtExecsql); + this.enterRule(localContext, 894, PostgreSqlParser.RULE_stmtExecsql); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8203; + this.state = 8196; this.stmt(); - this.state = 8205; + this.state = 8198; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 71) { { - this.state = 8204; + this.state = 8197; this.optExecuteInto(); } } - this.state = 8207; + this.state = 8200; this.match(PostgreSqlParser.SEMI); } } @@ -50746,38 +54432,38 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtDynexecute(): StmtDynexecuteContext { let localContext = new StmtDynexecuteContext(this.context, this.state); - this.enterRule(localContext, 894, PostgreSqlParser.RULE_stmtDynexecute); + this.enterRule(localContext, 896, PostgreSqlParser.RULE_stmtDynexecute); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8209; + this.state = 8202; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 8210; + this.state = 8203; this.expression(); - this.state = 8226; + this.state = 8219; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1137, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1133, this.context) ) { case 1: { - this.state = 8212; + this.state = 8205; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 71) { { - this.state = 8211; + this.state = 8204; this.optExecuteInto(); } } - this.state = 8216; + this.state = 8209; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 8214; + this.state = 8207; this.match(PostgreSqlParser.KW_USING); - this.state = 8215; + this.state = 8208; this.exprList(); } } @@ -50786,24 +54472,24 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 8220; + this.state = 8213; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 8218; + this.state = 8211; this.match(PostgreSqlParser.KW_USING); - this.state = 8219; + this.state = 8212; this.exprList(); } } - this.state = 8223; + this.state = 8216; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 71) { { - this.state = 8222; + this.state = 8215; this.optExecuteInto(); } } @@ -50816,7 +54502,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8228; + this.state = 8221; this.match(PostgreSqlParser.SEMI); } } @@ -50836,23 +54522,23 @@ export class PostgreSqlParser extends SQLParserBase { } public optExecuteInto(): OptExecuteIntoContext { let localContext = new OptExecuteIntoContext(this.context, this.state); - this.enterRule(localContext, 896, PostgreSqlParser.RULE_optExecuteInto); + this.enterRule(localContext, 898, PostgreSqlParser.RULE_optExecuteInto); try { this.enterOuterAlt(localContext, 1); { - this.state = 8230; + this.state = 8223; this.match(PostgreSqlParser.KW_INTO); - this.state = 8232; + this.state = 8225; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1138, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1134, this.context) ) { case 1: { - this.state = 8231; + this.state = 8224; this.match(PostgreSqlParser.KW_STRICT); } break; } - this.state = 8234; + this.state = 8227; this.exprList(); } } @@ -50872,43 +54558,43 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtOpen(): StmtOpenContext { let localContext = new StmtOpenContext(this.context, this.state); - this.enterRule(localContext, 898, PostgreSqlParser.RULE_stmtOpen); + this.enterRule(localContext, 900, PostgreSqlParser.RULE_stmtOpen); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8236; + this.state = 8229; this.match(PostgreSqlParser.KW_OPEN); - this.state = 8268; + this.state = 8261; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1145, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1141, this.context) ) { case 1: { - this.state = 8237; + this.state = 8230; this.cursorVariable(); - this.state = 8242; + this.state = 8235; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269 || _la === 324) { { - this.state = 8239; + this.state = 8232; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 8238; + this.state = 8231; this.match(PostgreSqlParser.KW_NO); } } - this.state = 8241; + this.state = 8234; this.match(PostgreSqlParser.KW_SCROLL); } } - this.state = 8244; + this.state = 8237; this.match(PostgreSqlParser.KW_FOR); - this.state = 8252; + this.state = 8245; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.OPEN_PAREN: @@ -50917,24 +54603,24 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.KW_WITH: case PostgreSqlParser.KW_VALUES: { - this.state = 8245; + this.state = 8238; this.selectStmt(); } break; case PostgreSqlParser.KW_EXECUTE: { - this.state = 8246; + this.state = 8239; this.match(PostgreSqlParser.KW_EXECUTE); - this.state = 8247; + this.state = 8240; this.sqlExpression(); - this.state = 8250; + this.state = 8243; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 100) { { - this.state = 8248; + this.state = 8241; this.match(PostgreSqlParser.KW_USING); - this.state = 8249; + this.state = 8242; this.exprList(); } } @@ -50948,36 +54634,36 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 8254; + this.state = 8247; this.colId(); - this.state = 8266; + this.state = 8259; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 8255; + this.state = 8248; this.match(PostgreSqlParser.OPEN_PAREN); { - this.state = 8256; + this.state = 8249; this.optOpenBoundListItem(); - this.state = 8261; + this.state = 8254; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8257; + this.state = 8250; this.match(PostgreSqlParser.COMMA); - this.state = 8258; + this.state = 8251; this.optOpenBoundListItem(); } } - this.state = 8263; + this.state = 8256; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 8264; + this.state = 8257; this.match(PostgreSqlParser.CLOSE_PAREN); } } @@ -50985,7 +54671,7 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8270; + this.state = 8263; this.match(PostgreSqlParser.SEMI); } } @@ -51005,23 +54691,23 @@ export class PostgreSqlParser extends SQLParserBase { } public optOpenBoundListItem(): OptOpenBoundListItemContext { let localContext = new OptOpenBoundListItemContext(this.context, this.state); - this.enterRule(localContext, 900, PostgreSqlParser.RULE_optOpenBoundListItem); + this.enterRule(localContext, 902, PostgreSqlParser.RULE_optOpenBoundListItem); try { this.enterOuterAlt(localContext, 1); { - this.state = 8275; + this.state = 8268; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1146, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1142, this.context) ) { case 1: { - this.state = 8272; + this.state = 8265; this.colId(); - this.state = 8273; + this.state = 8266; this.match(PostgreSqlParser.COLON_EQUALS); } break; } - this.state = 8277; + this.state = 8270; this.expression(); } } @@ -51041,40 +54727,40 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtFetch(): StmtFetchContext { let localContext = new StmtFetchContext(this.context, this.state); - this.enterRule(localContext, 902, PostgreSqlParser.RULE_stmtFetch); + this.enterRule(localContext, 904, PostgreSqlParser.RULE_stmtFetch); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8279; + this.state = 8272; this.match(PostgreSqlParser.KW_FETCH); - this.state = 8281; + this.state = 8274; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1147, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1143, this.context) ) { case 1: { - this.state = 8280; + this.state = 8273; localContext._direction = this.optFetchFirection(); } break; } - this.state = 8284; + this.state = 8277; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64 || _la === 68) { { - this.state = 8283; + this.state = 8276; this.fromIn(); } } - this.state = 8286; + this.state = 8279; this.cursorVariable(); - this.state = 8287; + this.state = 8280; this.match(PostgreSqlParser.KW_INTO); - this.state = 8288; + this.state = 8281; this.exprList(); - this.state = 8289; + this.state = 8282; this.match(PostgreSqlParser.SEMI); } } @@ -51094,49 +54780,49 @@ export class PostgreSqlParser extends SQLParserBase { } public optFetchFirection(): OptFetchFirectionContext { let localContext = new OptFetchFirectionContext(this.context, this.state); - this.enterRule(localContext, 904, PostgreSqlParser.RULE_optFetchFirection); + this.enterRule(localContext, 906, PostgreSqlParser.RULE_optFetchFirection); let _la: number; try { - this.state = 8305; + this.state = 8298; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1151, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1147, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8291; + this.state = 8284; this.match(PostgreSqlParser.KW_NEXT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8292; + this.state = 8285; this.match(PostgreSqlParser.KW_PRIOR); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 8293; + this.state = 8286; this.match(PostgreSqlParser.KW_FIRST); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 8294; + this.state = 8287; this.match(PostgreSqlParser.KW_LAST); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 8296; + this.state = 8289; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1149, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1145, this.context) ) { case 1: { - this.state = 8295; + this.state = 8288; _la = this.tokenStream.LA(1); if(!(_la === 130 || _la === 307)) { this.errorHandler.recoverInline(this); @@ -51148,21 +54834,21 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8298; + this.state = 8291; this.expression(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 8299; + this.state = 8292; this.match(PostgreSqlParser.KW_ALL); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 8300; + this.state = 8293; _la = this.tokenStream.LA(1); if(!(_la === 144 || _la === 210)) { this.errorHandler.recoverInline(this); @@ -51171,18 +54857,18 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 8303; + this.state = 8296; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1150, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1146, this.context) ) { case 1: { - this.state = 8301; + this.state = 8294; this.expression(); } break; case 2: { - this.state = 8302; + this.state = 8295; this.match(PostgreSqlParser.KW_ALL); } break; @@ -51207,25 +54893,25 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtMove(): StmtMoveContext { let localContext = new StmtMoveContext(this.context, this.state); - this.enterRule(localContext, 906, PostgreSqlParser.RULE_stmtMove); + this.enterRule(localContext, 908, PostgreSqlParser.RULE_stmtMove); try { this.enterOuterAlt(localContext, 1); { - this.state = 8307; + this.state = 8300; this.match(PostgreSqlParser.KW_MOVE); - this.state = 8309; + this.state = 8302; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1152, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1148, this.context) ) { case 1: { - this.state = 8308; + this.state = 8301; this.optFetchFirection(); } break; } - this.state = 8311; + this.state = 8304; this.cursorVariable(); - this.state = 8312; + this.state = 8305; this.match(PostgreSqlParser.SEMI); } } @@ -51245,95 +54931,95 @@ export class PostgreSqlParser extends SQLParserBase { } public mergeStmt(): MergeStmtContext { let localContext = new MergeStmtContext(this.context, this.state); - this.enterRule(localContext, 908, PostgreSqlParser.RULE_mergeStmt); + this.enterRule(localContext, 910, PostgreSqlParser.RULE_mergeStmt); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8315; + this.state = 8308; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 105) { { - this.state = 8314; + this.state = 8307; this.withClause(); } } - this.state = 8317; + this.state = 8310; this.match(PostgreSqlParser.KW_MERGE); - this.state = 8318; + this.state = 8311; this.match(PostgreSqlParser.KW_INTO); - this.state = 8320; + this.state = 8313; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 81) { { - this.state = 8319; + this.state = 8312; this.match(PostgreSqlParser.KW_ONLY); } } - this.state = 8322; + this.state = 8315; this.tableName(); - this.state = 8324; + this.state = 8317; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 8323; + this.state = 8316; this.match(PostgreSqlParser.STAR); } } - this.state = 8330; + this.state = 8323; 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)) & 3221570659) !== 0) || _la === 586) { { - this.state = 8327; + this.state = 8320; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 8326; + this.state = 8319; this.match(PostgreSqlParser.KW_AS); } } - this.state = 8329; + this.state = 8322; this.colId(); } } - this.state = 8332; + this.state = 8325; this.match(PostgreSqlParser.KW_USING); - this.state = 8333; + this.state = 8326; this.dataSource(); - this.state = 8334; + this.state = 8327; this.match(PostgreSqlParser.KW_ON); - this.state = 8335; + this.state = 8328; this.expression(); - this.state = 8337; + this.state = 8330; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 8336; + this.state = 8329; this.mergeWhenClause(); } } - this.state = 8339; + this.state = 8332; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 102); - this.state = 8342; + this.state = 8335; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 87) { { - this.state = 8341; + this.state = 8334; this.returningClause(); } } @@ -51356,34 +55042,34 @@ export class PostgreSqlParser extends SQLParserBase { } public dataSource(): DataSourceContext { let localContext = new DataSourceContext(this.context, this.state); - this.enterRule(localContext, 910, PostgreSqlParser.RULE_dataSource); + this.enterRule(localContext, 912, PostgreSqlParser.RULE_dataSource); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8355; + this.state = 8348; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1163, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1159, this.context) ) { case 1: { - this.state = 8345; + this.state = 8338; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 81) { { - this.state = 8344; + this.state = 8337; this.match(PostgreSqlParser.KW_ONLY); } } - this.state = 8347; + this.state = 8340; this.tableName(); - this.state = 8349; + this.state = 8342; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 8348; + this.state = 8341; this.match(PostgreSqlParser.STAR); } } @@ -51392,18 +55078,18 @@ export class PostgreSqlParser extends SQLParserBase { break; case 2: { - this.state = 8353; + this.state = 8346; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1162, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1158, this.context) ) { case 1: { - this.state = 8351; + this.state = 8344; this.selectNoParens(); } break; case 2: { - this.state = 8352; + this.state = 8345; this.valuesClause(); } break; @@ -51411,22 +55097,22 @@ export class PostgreSqlParser extends SQLParserBase { } break; } - this.state = 8361; + this.state = 8354; 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)) & 3221570659) !== 0) || _la === 586) { { - this.state = 8358; + this.state = 8351; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 36) { { - this.state = 8357; + this.state = 8350; this.match(PostgreSqlParser.KW_AS); } } - this.state = 8360; + this.state = 8353; this.colId(); } } @@ -51449,53 +55135,53 @@ export class PostgreSqlParser extends SQLParserBase { } public mergeWhenClause(): MergeWhenClauseContext { let localContext = new MergeWhenClauseContext(this.context, this.state); - this.enterRule(localContext, 912, PostgreSqlParser.RULE_mergeWhenClause); + this.enterRule(localContext, 914, PostgreSqlParser.RULE_mergeWhenClause); let _la: number; try { - this.state = 8389; + this.state = 8382; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1170, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1166, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8363; + this.state = 8356; this.match(PostgreSqlParser.KW_WHEN); - this.state = 8364; + this.state = 8357; this.match(PostgreSqlParser.KW_MATCHED); - this.state = 8367; + this.state = 8360; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 33) { { - this.state = 8365; + this.state = 8358; this.match(PostgreSqlParser.KW_AND); - this.state = 8366; + this.state = 8359; this.expression(); } } - this.state = 8369; + this.state = 8362; this.match(PostgreSqlParser.KW_THEN); - this.state = 8374; + this.state = 8367; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_UPDATE: { - this.state = 8370; + this.state = 8363; this.mergeUpdate(); } break; case PostgreSqlParser.KW_DELETE: { - this.state = 8371; + this.state = 8364; this.match(PostgreSqlParser.KW_DELETE); } break; case PostgreSqlParser.KW_DO: { - this.state = 8372; + this.state = 8365; this.match(PostgreSqlParser.KW_DO); - this.state = 8373; + this.state = 8366; this.match(PostgreSqlParser.KW_NOTHING); } break; @@ -51507,40 +55193,40 @@ export class PostgreSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8376; + this.state = 8369; this.match(PostgreSqlParser.KW_WHEN); - this.state = 8377; + this.state = 8370; this.match(PostgreSqlParser.KW_NOT); - this.state = 8378; + this.state = 8371; this.match(PostgreSqlParser.KW_MATCHED); - this.state = 8381; + this.state = 8374; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 33) { { - this.state = 8379; + this.state = 8372; this.match(PostgreSqlParser.KW_AND); - this.state = 8380; + this.state = 8373; this.expression(); } } - this.state = 8383; + this.state = 8376; this.match(PostgreSqlParser.KW_THEN); - this.state = 8387; + this.state = 8380; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_INSERT: { - this.state = 8384; + this.state = 8377; this.mergeInsert(); } break; case PostgreSqlParser.KW_DO: { - this.state = 8385; + this.state = 8378; this.match(PostgreSqlParser.KW_DO); - this.state = 8386; + this.state = 8379; this.match(PostgreSqlParser.KW_NOTHING); } break; @@ -51567,31 +55253,31 @@ export class PostgreSqlParser extends SQLParserBase { } public mergeInsert(): MergeInsertContext { let localContext = new MergeInsertContext(this.context, this.state); - this.enterRule(localContext, 914, PostgreSqlParser.RULE_mergeInsert); + this.enterRule(localContext, 916, PostgreSqlParser.RULE_mergeInsert); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8391; + this.state = 8384; this.match(PostgreSqlParser.KW_INSERT); - this.state = 8393; + this.state = 8386; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2) { { - this.state = 8392; + this.state = 8385; this.optColumnList(); } } - this.state = 8398; + this.state = 8391; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 463) { { - this.state = 8395; + this.state = 8388; this.match(PostgreSqlParser.KW_OVERRIDING); - this.state = 8396; + this.state = 8389; _la = this.tokenStream.LA(1); if(!(_la === 99 || _la === 349)) { this.errorHandler.recoverInline(this); @@ -51600,12 +55286,12 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 8397; + this.state = 8390; this.match(PostgreSqlParser.KW_VALUE); } } - this.state = 8400; + this.state = 8393; this.defaultValuesOrValues(); } } @@ -51625,75 +55311,470 @@ export class PostgreSqlParser extends SQLParserBase { } public mergeUpdate(): MergeUpdateContext { let localContext = new MergeUpdateContext(this.context, this.state); - this.enterRule(localContext, 916, PostgreSqlParser.RULE_mergeUpdate); + this.enterRule(localContext, 918, PostgreSqlParser.RULE_mergeUpdate); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 8402; + this.state = 8395; this.match(PostgreSqlParser.KW_UPDATE); - this.state = 8403; + this.state = 8396; this.match(PostgreSqlParser.KW_SET); - this.state = 8421; + this.state = 8414; this.errorHandler.sync(this); alternative = 1; do { switch (alternative) { case 1: { - this.state = 8421; + this.state = 8414; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1174, this.context) ) { - case 1: + switch (this.tokenStream.LA(1)) { + case PostgreSqlParser.KW_DEFAULT: + case PostgreSqlParser.KW_IS: + case PostgreSqlParser.KW_OUTER: + case PostgreSqlParser.KW_OVER: + case PostgreSqlParser.KW_ABORT: + case PostgreSqlParser.KW_ABSOLUTE: + case PostgreSqlParser.KW_ACCESS: + case PostgreSqlParser.KW_ACTION: + case PostgreSqlParser.KW_ADD: + case PostgreSqlParser.KW_ADMIN: + case PostgreSqlParser.KW_AFTER: + case PostgreSqlParser.KW_AGGREGATE: + case PostgreSqlParser.KW_ALSO: + case PostgreSqlParser.KW_ALTER: + case PostgreSqlParser.KW_ALWAYS: + case PostgreSqlParser.KW_ASSERTION: + case PostgreSqlParser.KW_ASSIGNMENT: + case PostgreSqlParser.KW_AT: + case PostgreSqlParser.KW_ATTRIBUTE: + case PostgreSqlParser.KW_BACKWARD: + case PostgreSqlParser.KW_BEFORE: + case PostgreSqlParser.KW_BEGIN: + case PostgreSqlParser.KW_BY: + case PostgreSqlParser.KW_CACHE: + case PostgreSqlParser.KW_CALLED: + case PostgreSqlParser.KW_CASCADE: + case PostgreSqlParser.KW_CASCADED: + case PostgreSqlParser.KW_CATALOG: + case PostgreSqlParser.KW_CHAIN: + case PostgreSqlParser.KW_CHARACTERISTICS: + case PostgreSqlParser.KW_CHECKPOINT: + case PostgreSqlParser.KW_CLASS: + case PostgreSqlParser.KW_CLOSE: + case PostgreSqlParser.KW_CLUSTER: + case PostgreSqlParser.KW_COMMENT: + case PostgreSqlParser.KW_COMMENTS: + case PostgreSqlParser.KW_COMMIT: + case PostgreSqlParser.KW_COMMITTED: + case PostgreSqlParser.KW_CONFIGURATION: + case PostgreSqlParser.KW_CONNECTION: + case PostgreSqlParser.KW_CONSTRAINTS: + case PostgreSqlParser.KW_CONTENT: + case PostgreSqlParser.KW_CONTINUE: + case PostgreSqlParser.KW_CONVERSION: + case PostgreSqlParser.KW_COPY: + case PostgreSqlParser.KW_COST: + case PostgreSqlParser.KW_CSV: + case PostgreSqlParser.KW_CURSOR: + case PostgreSqlParser.KW_CYCLE: + case PostgreSqlParser.KW_DATA: + case PostgreSqlParser.KW_DATABASE: + case PostgreSqlParser.KW_DAY: + case PostgreSqlParser.KW_DEALLOCATE: + case PostgreSqlParser.KW_DECLARE: + case PostgreSqlParser.KW_DEFAULTS: + case PostgreSqlParser.KW_DEFERRED: + case PostgreSqlParser.KW_DEFINER: + case PostgreSqlParser.KW_DELETE: + case PostgreSqlParser.KW_DELIMITER: + case PostgreSqlParser.KW_DELIMITERS: + case PostgreSqlParser.KW_DICTIONARY: + case PostgreSqlParser.KW_DISABLE: + case PostgreSqlParser.KW_DISCARD: + case PostgreSqlParser.KW_DOCUMENT: + case PostgreSqlParser.KW_DOMAIN: + case PostgreSqlParser.KW_DOUBLE: + case PostgreSqlParser.KW_DROP: + case PostgreSqlParser.KW_EACH: + case PostgreSqlParser.KW_ENABLE: + case PostgreSqlParser.KW_ENCODING: + case PostgreSqlParser.KW_ENCRYPTED: + case PostgreSqlParser.KW_ENUM: + case PostgreSqlParser.KW_ESCAPE: + case PostgreSqlParser.KW_EVENT: + case PostgreSqlParser.KW_EXCLUDE: + case PostgreSqlParser.KW_EXCLUDING: + case PostgreSqlParser.KW_EXCLUSIVE: + case PostgreSqlParser.KW_EXECUTE: + case PostgreSqlParser.KW_EXPLAIN: + case PostgreSqlParser.KW_EXTENSION: + case PostgreSqlParser.KW_EXTERNAL: + case PostgreSqlParser.KW_FAMILY: + case PostgreSqlParser.KW_FIRST: + case PostgreSqlParser.KW_FOLLOWING: + case PostgreSqlParser.KW_FORCE: + case PostgreSqlParser.KW_FORWARD: + case PostgreSqlParser.KW_FUNCTION: + case PostgreSqlParser.KW_FUNCTIONS: + case PostgreSqlParser.KW_GLOBAL: + case PostgreSqlParser.KW_GRANTED: + case PostgreSqlParser.KW_HANDLER: + case PostgreSqlParser.KW_HEADER: + case PostgreSqlParser.KW_HOLD: + case PostgreSqlParser.KW_HOUR: + case PostgreSqlParser.KW_IDENTITY: + case PostgreSqlParser.KW_IF: + case PostgreSqlParser.KW_IMMEDIATE: + case PostgreSqlParser.KW_IMMUTABLE: + case PostgreSqlParser.KW_IMPLICIT: + case PostgreSqlParser.KW_INCLUDING: + case PostgreSqlParser.KW_INCREMENT: + case PostgreSqlParser.KW_INDEX: + case PostgreSqlParser.KW_INDEXES: + case PostgreSqlParser.KW_INHERIT: + case PostgreSqlParser.KW_INHERITS: + case PostgreSqlParser.KW_INLINE: + case PostgreSqlParser.KW_INSENSITIVE: + case PostgreSqlParser.KW_INSERT: + case PostgreSqlParser.KW_INSTEAD: + case PostgreSqlParser.KW_INVOKER: + case PostgreSqlParser.KW_ISOLATION: + case PostgreSqlParser.KW_KEY: + case PostgreSqlParser.KW_LABEL: + case PostgreSqlParser.KW_LANGUAGE: + case PostgreSqlParser.KW_LARGE: + case PostgreSqlParser.KW_LAST: + case PostgreSqlParser.KW_LEAKPROOF: + case PostgreSqlParser.KW_LEVEL: + case PostgreSqlParser.KW_LISTEN: + case PostgreSqlParser.KW_LOAD: + case PostgreSqlParser.KW_LOCAL: + case PostgreSqlParser.KW_LOCATION: + case PostgreSqlParser.KW_LOCK: + case PostgreSqlParser.KW_MAPPING: + case PostgreSqlParser.KW_MATCH: + case PostgreSqlParser.KW_MATERIALIZED: + case PostgreSqlParser.KW_MAXVALUE: + case PostgreSqlParser.KW_MINUTE: + case PostgreSqlParser.KW_MINVALUE: + case PostgreSqlParser.KW_MODE: + case PostgreSqlParser.KW_MONTH: + case PostgreSqlParser.KW_MOVE: + case PostgreSqlParser.KW_NAME: + case PostgreSqlParser.KW_NAMES: + case PostgreSqlParser.KW_NEXT: + case PostgreSqlParser.KW_NO: + case PostgreSqlParser.KW_NOTHING: + case PostgreSqlParser.KW_NOTIFY: + case PostgreSqlParser.KW_NOWAIT: + case PostgreSqlParser.KW_NULLS: + case PostgreSqlParser.KW_OBJECT: + case PostgreSqlParser.KW_OF: + case PostgreSqlParser.KW_OFF: + case PostgreSqlParser.KW_OIDS: + case PostgreSqlParser.KW_OPERATOR: + case PostgreSqlParser.KW_OPTION: + case PostgreSqlParser.KW_OPTIONS: + case PostgreSqlParser.KW_OWNED: + case PostgreSqlParser.KW_OWNER: + case PostgreSqlParser.KW_PARSER: + case PostgreSqlParser.KW_PARTIAL: + case PostgreSqlParser.KW_PARTITION: + case PostgreSqlParser.KW_PASSING: + case PostgreSqlParser.KW_PASSWORD: + case PostgreSqlParser.KW_PLANS: + case PostgreSqlParser.KW_PRECEDING: + case PostgreSqlParser.KW_PREPARE: + case PostgreSqlParser.KW_PREPARED: + case PostgreSqlParser.KW_PRESERVE: + case PostgreSqlParser.KW_PRIOR: + case PostgreSqlParser.KW_PRIVILEGES: + case PostgreSqlParser.KW_PROCEDURAL: + case PostgreSqlParser.KW_PROCEDURE: + case PostgreSqlParser.KW_PROGRAM: + case PostgreSqlParser.KW_QUOTE: + case PostgreSqlParser.KW_RANGE: + case PostgreSqlParser.KW_READ: + case PostgreSqlParser.KW_REASSIGN: + case PostgreSqlParser.KW_RECHECK: + case PostgreSqlParser.KW_RECURSIVE: + case PostgreSqlParser.KW_REF: + case PostgreSqlParser.KW_REFRESH: + case PostgreSqlParser.KW_REINDEX: + case PostgreSqlParser.KW_RELATIVE: + case PostgreSqlParser.KW_RELEASE: + case PostgreSqlParser.KW_RENAME: + case PostgreSqlParser.KW_REPEATABLE: + case PostgreSqlParser.KW_REPLACE: + case PostgreSqlParser.KW_REPLICA: + case PostgreSqlParser.KW_RESET: + case PostgreSqlParser.KW_RESTART: + case PostgreSqlParser.KW_RESTRICT: + case PostgreSqlParser.KW_RETURNS: + case PostgreSqlParser.KW_REVOKE: + case PostgreSqlParser.KW_ROLE: + case PostgreSqlParser.KW_ROLLBACK: + case PostgreSqlParser.KW_ROWS: + case PostgreSqlParser.KW_RULE: + case PostgreSqlParser.KW_SAVEPOINT: + case PostgreSqlParser.KW_SCHEMA: + case PostgreSqlParser.KW_SCROLL: + case PostgreSqlParser.KW_SEARCH: + case PostgreSqlParser.KW_SECOND: + case PostgreSqlParser.KW_SECURITY: + case PostgreSqlParser.KW_SEQUENCE: + case PostgreSqlParser.KW_SEQUENCES: + case PostgreSqlParser.KW_SERIALIZABLE: + case PostgreSqlParser.KW_SERVER: + case PostgreSqlParser.KW_SESSION: + case PostgreSqlParser.KW_SET: + case PostgreSqlParser.KW_SHARE: + case PostgreSqlParser.KW_SHOW: + case PostgreSqlParser.KW_SIMPLE: + case PostgreSqlParser.KW_SNAPSHOT: + case PostgreSqlParser.KW_STABLE: + case PostgreSqlParser.KW_STANDALONE: + case PostgreSqlParser.KW_START: + case PostgreSqlParser.KW_STATEMENT: + case PostgreSqlParser.KW_STATISTICS: + case PostgreSqlParser.KW_STDIN: + case PostgreSqlParser.KW_STDOUT: + case PostgreSqlParser.KW_STORAGE: + case PostgreSqlParser.KW_STRICT: + case PostgreSqlParser.KW_STRIP: + case PostgreSqlParser.KW_SYSID: + case PostgreSqlParser.KW_SYSTEM: + case PostgreSqlParser.KW_TABLES: + case PostgreSqlParser.KW_TABLESPACE: + case PostgreSqlParser.KW_TEMP: + case PostgreSqlParser.KW_TEMPLATE: + case PostgreSqlParser.KW_TEMPORARY: + case PostgreSqlParser.KW_TEXT: + case PostgreSqlParser.KW_TRANSACTION: + case PostgreSqlParser.KW_TRIGGER: + case PostgreSqlParser.KW_TRUNCATE: + case PostgreSqlParser.KW_TRUSTED: + case PostgreSqlParser.KW_TYPE: + case PostgreSqlParser.KW_TYPES: + case PostgreSqlParser.KW_UNBOUNDED: + case PostgreSqlParser.KW_UNCOMMITTED: + case PostgreSqlParser.KW_UNENCRYPTED: + case PostgreSqlParser.KW_UNKNOWN: + case PostgreSqlParser.KW_UNLISTEN: + case PostgreSqlParser.KW_UNLOGGED: + case PostgreSqlParser.KW_UNTIL: + case PostgreSqlParser.KW_UPDATE: + case PostgreSqlParser.KW_VACUUM: + case PostgreSqlParser.KW_VALID: + case PostgreSqlParser.KW_VALIDATE: + case PostgreSqlParser.KW_VALIDATOR: + case PostgreSqlParser.KW_VARYING: + case PostgreSqlParser.KW_VERSION: + case PostgreSqlParser.KW_VIEW: + case PostgreSqlParser.KW_VOLATILE: + case PostgreSqlParser.KW_WHITESPACE: + case PostgreSqlParser.KW_WITHOUT: + case PostgreSqlParser.KW_WORK: + case PostgreSqlParser.KW_WRAPPER: + case PostgreSqlParser.KW_WRITE: + case PostgreSqlParser.KW_XML: + case PostgreSqlParser.KW_YEAR: + case PostgreSqlParser.KW_YES: + case PostgreSqlParser.KW_ZONE: + case PostgreSqlParser.KW_BETWEEN: + case PostgreSqlParser.KW_BIGINT: + case PostgreSqlParser.KW_BIT: + case PostgreSqlParser.KW_BOOLEAN: + case PostgreSqlParser.KW_CHAR: + case PostgreSqlParser.KW_CHARACTER: + case PostgreSqlParser.KW_COALESCE: + case PostgreSqlParser.KW_DEC: + case PostgreSqlParser.KW_DECIMAL: + case PostgreSqlParser.KW_EXISTS: + case PostgreSqlParser.KW_EXTRACT: + case PostgreSqlParser.KW_FLOAT: + case PostgreSqlParser.KW_GREATEST: + case PostgreSqlParser.KW_INOUT: + case PostgreSqlParser.KW_INT: + case PostgreSqlParser.KW_INTEGER: + case PostgreSqlParser.KW_INTERVAL: + case PostgreSqlParser.KW_LEAST: + case PostgreSqlParser.KW_NATIONAL: + case PostgreSqlParser.KW_NCHAR: + case PostgreSqlParser.KW_NONE: + case PostgreSqlParser.KW_NULLIF: + case PostgreSqlParser.KW_NUMERIC: + case PostgreSqlParser.KW_OVERLAY: + case PostgreSqlParser.KW_POSITION: + case PostgreSqlParser.KW_PRECISION: + case PostgreSqlParser.KW_REAL: + case PostgreSqlParser.KW_ROW: + case PostgreSqlParser.KW_SETOF: + case PostgreSqlParser.KW_SMALLINT: + case PostgreSqlParser.KW_SUBSTRING: + case PostgreSqlParser.KW_TIME: + case PostgreSqlParser.KW_TIMESTAMP: + case PostgreSqlParser.KW_TREAT: + case PostgreSqlParser.KW_TRIM: + case PostgreSqlParser.KW_VALUES: + case PostgreSqlParser.KW_VARCHAR: + case PostgreSqlParser.KW_XMLATTRIBUTES: + case PostgreSqlParser.KW_XMLCONCAT: + case PostgreSqlParser.KW_XMLELEMENT: + case PostgreSqlParser.KW_XMLEXISTS: + case PostgreSqlParser.KW_XMLFOREST: + case PostgreSqlParser.KW_XMLPARSE: + case PostgreSqlParser.KW_XMLPI: + case PostgreSqlParser.KW_XMLROOT: + case PostgreSqlParser.KW_XMLSERIALIZE: + case PostgreSqlParser.KW_CALL: + case PostgreSqlParser.KW_CURRENT: + case PostgreSqlParser.KW_ATTACH: + case PostgreSqlParser.KW_DETACH: + case PostgreSqlParser.KW_EXPRESSION: + case PostgreSqlParser.KW_GENERATED: + case PostgreSqlParser.KW_LOGGED: + case PostgreSqlParser.KW_STORED: + case PostgreSqlParser.KW_INCLUDE: + case PostgreSqlParser.KW_ROUTINE: + case PostgreSqlParser.KW_TRANSFORM: + case PostgreSqlParser.KW_IMPORT: + case PostgreSqlParser.KW_POLICY: + case PostgreSqlParser.KW_METHOD: + case PostgreSqlParser.KW_REFERENCING: + case PostgreSqlParser.KW_NEW: + case PostgreSqlParser.KW_OLD: + case PostgreSqlParser.KW_VALUE: + case PostgreSqlParser.KW_SUBSCRIPTION: + case PostgreSqlParser.KW_PUBLICATION: + case PostgreSqlParser.KW_OUT: + case PostgreSqlParser.KW_ROUTINES: + case PostgreSqlParser.KW_SCHEMAS: + case PostgreSqlParser.KW_PROCEDURES: + case PostgreSqlParser.KW_INPUT: + case PostgreSqlParser.KW_SUPPORT: + case PostgreSqlParser.KW_PARALLEL: + case PostgreSqlParser.KW_SQL: + case PostgreSqlParser.KW_DEPENDS: + case PostgreSqlParser.KW_OVERRIDING: + case PostgreSqlParser.KW_CONFLICT: + case PostgreSqlParser.KW_SKIP: + case PostgreSqlParser.KW_LOCKED: + case PostgreSqlParser.KW_TIES: + case PostgreSqlParser.KW_ROLLUP: + case PostgreSqlParser.KW_CUBE: + case PostgreSqlParser.KW_GROUPING: + case PostgreSqlParser.KW_SETS: + case PostgreSqlParser.KW_ORDINALITY: + case PostgreSqlParser.KW_XMLTABLE: + case PostgreSqlParser.KW_COLUMNS: + case PostgreSqlParser.KW_XMLNAMESPACES: + case PostgreSqlParser.KW_ROWTYPE: + case PostgreSqlParser.KW_NORMALIZED: + case PostgreSqlParser.KW_WITHIN: + case PostgreSqlParser.KW_FILTER: + case PostgreSqlParser.KW_GROUPS: + case PostgreSqlParser.KW_OTHERS: + case PostgreSqlParser.KW_NFC: + case PostgreSqlParser.KW_NFD: + case PostgreSqlParser.KW_NFKC: + case PostgreSqlParser.KW_NFKD: + case PostgreSqlParser.KW_UESCAPE: + case PostgreSqlParser.KW_VIEWS: + case PostgreSqlParser.KW_NORMALIZE: + case PostgreSqlParser.KW_DUMP: + case PostgreSqlParser.KW_PRINT_STRICT_PARAMS: + case PostgreSqlParser.KW_VARIABLE_CONFLICT: + case PostgreSqlParser.KW_ERROR: + case PostgreSqlParser.KW_USE_VARIABLE: + case PostgreSqlParser.KW_USE_COLUMN: + case PostgreSqlParser.KW_ALIAS: + case PostgreSqlParser.KW_CONSTANT: + case PostgreSqlParser.KW_PERFORM: + case PostgreSqlParser.KW_GET: + case PostgreSqlParser.KW_DIAGNOSTICS: + case PostgreSqlParser.KW_STACKED: + case PostgreSqlParser.KW_ELSIF: + case PostgreSqlParser.KW_REVERSE: + case PostgreSqlParser.KW_SLICE: + case PostgreSqlParser.KW_EXIT: + case PostgreSqlParser.KW_RETURN: + case PostgreSqlParser.KW_QUERY: + case PostgreSqlParser.KW_RAISE: + case PostgreSqlParser.KW_SQLSTATE: + case PostgreSqlParser.KW_DEBUG: + case PostgreSqlParser.KW_LOG: + case PostgreSqlParser.KW_INFO: + case PostgreSqlParser.KW_NOTICE: + case PostgreSqlParser.KW_WARNING: + case PostgreSqlParser.KW_EXCEPTION: + case PostgreSqlParser.KW_ASSERT: + case PostgreSqlParser.KW_OPEN: + case PostgreSqlParser.KW_PUBLIC: + case PostgreSqlParser.KW_SKIP_LOCKED: + case PostgreSqlParser.KW_BUFFER_USAGE_LIMIT: + case PostgreSqlParser.Identifier: + case PostgreSqlParser.QuotedIdentifier: + case PostgreSqlParser.UnicodeQuotedIdentifier: + case PostgreSqlParser.StringConstant: + case PostgreSqlParser.UnicodeEscapeStringConstant: + case PostgreSqlParser.BeginDollarStringConstant: + case PostgreSqlParser.PLSQLVARIABLENAME: + case PostgreSqlParser.PLSQLIDENTIFIER: + case PostgreSqlParser.EscapeStringConstant: { - this.state = 8404; + this.state = 8397; this.columnName(); - this.state = 8405; + this.state = 8398; this.match(PostgreSqlParser.EQUAL); - this.state = 8406; + this.state = 8399; this.exprofdefault(); } break; - case 2: + case PostgreSqlParser.OPEN_PAREN: { - this.state = 8408; + this.state = 8401; this.optColumnList(); - this.state = 8409; + this.state = 8402; this.match(PostgreSqlParser.EQUAL); - this.state = 8410; + this.state = 8403; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 8411; + this.state = 8404; this.exprofdefault(); - this.state = 8416; + this.state = 8409; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8412; + this.state = 8405; this.match(PostgreSqlParser.COMMA); - this.state = 8413; + this.state = 8406; this.exprofdefault(); } } - this.state = 8418; + this.state = 8411; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 8419; + this.state = 8412; this.match(PostgreSqlParser.CLOSE_PAREN); } break; + default: + throw new antlr.NoViableAltException(this); } } break; default: throw new antlr.NoViableAltException(this); } - this.state = 8423; + this.state = 8416; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1175, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1171, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -51713,47 +55794,47 @@ export class PostgreSqlParser extends SQLParserBase { } public defaultValuesOrValues(): DefaultValuesOrValuesContext { let localContext = new DefaultValuesOrValuesContext(this.context, this.state); - this.enterRule(localContext, 918, PostgreSqlParser.RULE_defaultValuesOrValues); + this.enterRule(localContext, 920, PostgreSqlParser.RULE_defaultValuesOrValues); let _la: number; try { - this.state = 8439; + this.state = 8432; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_VALUES: this.enterOuterAlt(localContext, 1); { - this.state = 8425; + this.state = 8418; this.match(PostgreSqlParser.KW_VALUES); - this.state = 8426; + this.state = 8419; this.match(PostgreSqlParser.OPEN_PAREN); - this.state = 8427; + this.state = 8420; this.exprofdefault(); - this.state = 8432; + this.state = 8425; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 6) { { { - this.state = 8428; + this.state = 8421; this.match(PostgreSqlParser.COMMA); - this.state = 8429; + this.state = 8422; this.exprofdefault(); } } - this.state = 8434; + this.state = 8427; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 8435; + this.state = 8428; this.match(PostgreSqlParser.CLOSE_PAREN); } break; case PostgreSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 8437; + this.state = 8430; this.match(PostgreSqlParser.KW_DEFAULT); - this.state = 8438; + this.state = 8431; this.match(PostgreSqlParser.KW_VALUES); } break; @@ -51777,22 +55858,22 @@ export class PostgreSqlParser extends SQLParserBase { } public exprofdefault(): ExprofdefaultContext { let localContext = new ExprofdefaultContext(this.context, this.state); - this.enterRule(localContext, 920, PostgreSqlParser.RULE_exprofdefault); + this.enterRule(localContext, 922, PostgreSqlParser.RULE_exprofdefault); try { - this.state = 8443; + this.state = 8436; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1178, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1174, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8441; + this.state = 8434; this.sortBy(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8442; + this.state = 8435; this.match(PostgreSqlParser.KW_DEFAULT); } break; @@ -51814,15 +55895,15 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtClose(): StmtCloseContext { let localContext = new StmtCloseContext(this.context, this.state); - this.enterRule(localContext, 922, PostgreSqlParser.RULE_stmtClose); + this.enterRule(localContext, 924, PostgreSqlParser.RULE_stmtClose); try { this.enterOuterAlt(localContext, 1); { - this.state = 8445; + this.state = 8438; this.match(PostgreSqlParser.KW_CLOSE); - this.state = 8446; + this.state = 8439; this.cursorVariable(); - this.state = 8447; + this.state = 8440; this.match(PostgreSqlParser.SEMI); } } @@ -51842,13 +55923,13 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtNull(): StmtNullContext { let localContext = new StmtNullContext(this.context, this.state); - this.enterRule(localContext, 924, PostgreSqlParser.RULE_stmtNull); + this.enterRule(localContext, 926, PostgreSqlParser.RULE_stmtNull); try { this.enterOuterAlt(localContext, 1); { - this.state = 8449; + this.state = 8442; this.match(PostgreSqlParser.KW_NULL); - this.state = 8450; + this.state = 8443; this.match(PostgreSqlParser.SEMI); } } @@ -51868,12 +55949,12 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtCommitOrRollback(): StmtCommitOrRollbackContext { let localContext = new StmtCommitOrRollbackContext(this.context, this.state); - this.enterRule(localContext, 926, PostgreSqlParser.RULE_stmtCommitOrRollback); + this.enterRule(localContext, 928, PostgreSqlParser.RULE_stmtCommitOrRollback); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8452; + this.state = 8445; _la = this.tokenStream.LA(1); if(!(_la === 161 || _la === 319)) { this.errorHandler.recoverInline(this); @@ -51882,29 +55963,29 @@ export class PostgreSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 8458; + this.state = 8451; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 33) { { - this.state = 8453; + this.state = 8446; this.match(PostgreSqlParser.KW_AND); - this.state = 8455; + this.state = 8448; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 269) { { - this.state = 8454; + this.state = 8447; this.match(PostgreSqlParser.KW_NO); } } - this.state = 8457; + this.state = 8450; this.match(PostgreSqlParser.KW_CHAIN); } } - this.state = 8460; + this.state = 8453; this.match(PostgreSqlParser.SEMI); } } @@ -51924,32 +56005,32 @@ export class PostgreSqlParser extends SQLParserBase { } public stmtSet(): StmtSetContext { let localContext = new StmtSetContext(this.context, this.state); - this.enterRule(localContext, 928, PostgreSqlParser.RULE_stmtSet); + this.enterRule(localContext, 930, PostgreSqlParser.RULE_stmtSet); try { - this.state = 8474; + this.state = 8467; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_SET: this.enterOuterAlt(localContext, 1); { - this.state = 8462; + this.state = 8455; this.match(PostgreSqlParser.KW_SET); - this.state = 8463; + this.state = 8456; this.anyName(); - this.state = 8464; + this.state = 8457; this.match(PostgreSqlParser.KW_TO); - this.state = 8465; + this.state = 8458; this.match(PostgreSqlParser.KW_DEFAULT); - this.state = 8466; + this.state = 8459; this.match(PostgreSqlParser.SEMI); } break; case PostgreSqlParser.KW_RESET: this.enterOuterAlt(localContext, 2); { - this.state = 8468; + this.state = 8461; this.match(PostgreSqlParser.KW_RESET); - this.state = 8471; + this.state = 8464; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -52347,20 +56428,20 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.PLSQLIDENTIFIER: case PostgreSqlParser.EscapeStringConstant: { - this.state = 8469; + this.state = 8462; this.anyName(); } break; case PostgreSqlParser.KW_ALL: { - this.state = 8470; + this.state = 8463; this.match(PostgreSqlParser.KW_ALL); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 8473; + this.state = 8466; this.match(PostgreSqlParser.SEMI); } break; @@ -52384,9 +56465,9 @@ export class PostgreSqlParser extends SQLParserBase { } public cursorVariable(): CursorVariableContext { let localContext = new CursorVariableContext(this.context, this.state); - this.enterRule(localContext, 930, PostgreSqlParser.RULE_cursorVariable); + this.enterRule(localContext, 932, PostgreSqlParser.RULE_cursorVariable); try { - this.state = 8478; + this.state = 8471; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case PostgreSqlParser.KW_DEFAULT: @@ -52785,14 +56866,14 @@ export class PostgreSqlParser extends SQLParserBase { case PostgreSqlParser.EscapeStringConstant: this.enterOuterAlt(localContext, 1); { - this.state = 8476; + this.state = 8469; this.colId(); } break; case PostgreSqlParser.PARAM: this.enterOuterAlt(localContext, 2); { - this.state = 8477; + this.state = 8470; this.match(PostgreSqlParser.PARAM); } break; @@ -52816,63 +56897,63 @@ export class PostgreSqlParser extends SQLParserBase { } public exceptionSect(): ExceptionSectContext { let localContext = new ExceptionSectContext(this.context, this.state); - this.enterRule(localContext, 932, PostgreSqlParser.RULE_exceptionSect); + this.enterRule(localContext, 934, PostgreSqlParser.RULE_exceptionSect); let _la: number; try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 8480; + this.state = 8473; this.match(PostgreSqlParser.KW_EXCEPTION); - this.state = 8497; + this.state = 8490; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 8481; + this.state = 8474; this.match(PostgreSqlParser.KW_WHEN); { - this.state = 8482; + this.state = 8475; this.procCondition(); - this.state = 8487; + this.state = 8480; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 82) { { { - this.state = 8483; + this.state = 8476; this.match(PostgreSqlParser.KW_OR); - this.state = 8484; + this.state = 8477; this.procCondition(); } } - this.state = 8489; + this.state = 8482; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } - this.state = 8490; + this.state = 8483; this.match(PostgreSqlParser.KW_THEN); - this.state = 8494; + this.state = 8487; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1185, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1181, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 8491; + this.state = 8484; this.procStmt(); } } } - this.state = 8496; + this.state = 8489; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 1185, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 1181, this.context); } } } - this.state = 8499; + this.state = 8492; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 102); @@ -52894,24 +56975,24 @@ export class PostgreSqlParser extends SQLParserBase { } public procCondition(): ProcConditionContext { let localContext = new ProcConditionContext(this.context, this.state); - this.enterRule(localContext, 934, PostgreSqlParser.RULE_procCondition); + this.enterRule(localContext, 936, PostgreSqlParser.RULE_procCondition); try { - this.state = 8504; + this.state = 8497; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1187, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1183, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8501; + this.state = 8494; this.anyIdentifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8502; + this.state = 8495; this.match(PostgreSqlParser.KW_SQLSTATE); - this.state = 8503; + this.state = 8496; this.stringConst(); } break; @@ -52933,22 +57014,22 @@ export class PostgreSqlParser extends SQLParserBase { } public anyIdentifier(): AnyIdentifierContext { let localContext = new AnyIdentifierContext(this.context, this.state); - this.enterRule(localContext, 936, PostgreSqlParser.RULE_anyIdentifier); + this.enterRule(localContext, 938, PostgreSqlParser.RULE_anyIdentifier); try { - this.state = 8508; + this.state = 8501; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1188, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1184, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 8506; + this.state = 8499; this.colId(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 8507; + this.state = 8500; this.unreservedKeyword(); } break; @@ -52970,77 +57051,77 @@ export class PostgreSqlParser extends SQLParserBase { } public sqlExpression(): SqlExpressionContext { let localContext = new SqlExpressionContext(this.context, this.state); - this.enterRule(localContext, 938, PostgreSqlParser.RULE_sqlExpression); + this.enterRule(localContext, 940, PostgreSqlParser.RULE_sqlExpression); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 8511; + this.state = 8504; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1189, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1185, this.context) ) { case 1: { - this.state = 8510; + this.state = 8503; this.targetList(); } break; } - this.state = 8514; + this.state = 8507; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1190, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1186, this.context) ) { case 1: { - this.state = 8513; + this.state = 8506; this.intoClause(); } break; } - this.state = 8517; + this.state = 8510; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 64) { { - this.state = 8516; + this.state = 8509; this.fromClause(); } } - this.state = 8520; + this.state = 8513; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 103) { { - this.state = 8519; + this.state = 8512; this.whereClause(); } } - this.state = 8523; + this.state = 8516; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 66) { { - this.state = 8522; + this.state = 8515; this.groupClause(); } } - this.state = 8526; + this.state = 8519; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 67) { { - this.state = 8525; + this.state = 8518; this.havingClause(); } } - this.state = 8529; + this.state = 8522; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 1195, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 1191, this.context) ) { case 1: { - this.state = 8528; + this.state = 8521; this.windowClause(); } break; @@ -53070,10 +57151,8 @@ export class PostgreSqlParser extends SQLParserBase { return this.valueExpression_sempred(localContext as ValueExpressionContext, predIndex); case 339: return this.primaryExpression_sempred(localContext as PrimaryExpressionContext, predIndex); - case 403: - return this.columnName_sempred(localContext as ColumnNameContext, predIndex); - case 404: - return this.columnNamePath_sempred(localContext as ColumnNamePathContext, predIndex); + case 380: + return this.targetEl_sempred(localContext as TargetElContext, predIndex); } return true; } @@ -53112,23 +57191,18 @@ export class PostgreSqlParser extends SQLParserBase { } return true; } - private columnName_sempred(localContext: ColumnNameContext | null, predIndex: number): boolean { + private targetEl_sempred(localContext: TargetElContext | null, predIndex: number): boolean { switch (predIndex) { case 10: - return this.shouldMatchEmpty(); - } - return true; - } - private columnNamePath_sempred(localContext: ColumnNamePathContext | null, predIndex: number): boolean { - switch (predIndex) { + return this.entityCollecting; case 11: - return this.shouldMatchEmpty(); + return this.entityCollecting; } return true; } public static readonly _serializedATN: number[] = [ - 4,1,592,8532,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,592,8525,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, @@ -53210,825 +57284,824 @@ export class PostgreSqlParser extends SQLParserBase { 7,450,2,451,7,451,2,452,7,452,2,453,7,453,2,454,7,454,2,455,7,455, 2,456,7,456,2,457,7,457,2,458,7,458,2,459,7,459,2,460,7,460,2,461, 7,461,2,462,7,462,2,463,7,463,2,464,7,464,2,465,7,465,2,466,7,466, - 2,467,7,467,2,468,7,468,2,469,7,469,1,0,5,0,942,8,0,10,0,12,0,945, - 9,0,1,0,1,0,1,1,1,1,3,1,951,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,1071, - 8,2,3,2,1073,8,2,1,3,1,3,1,3,1,4,1,4,1,4,1,4,3,4,1082,8,4,1,4,5, - 4,1085,8,4,10,4,12,4,1088,9,4,1,5,1,5,1,5,3,5,1093,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,1128, - 8,5,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,3,6,1138,8,6,1,7,1,7,1,7,1,7, - 3,7,1144,8,7,1,7,5,7,1147,8,7,10,7,12,7,1150,9,7,1,8,1,8,1,8,1,8, - 3,8,1156,8,8,1,8,5,8,1159,8,8,10,8,12,8,1162,9,8,1,9,1,9,1,9,1,9, - 3,9,1168,8,9,1,9,1,9,1,9,1,9,1,9,1,10,1,10,1,10,1,10,3,10,1179,8, - 10,1,10,1,10,1,11,1,11,5,11,1185,8,11,10,11,12,11,1188,9,11,1,11, - 3,11,1191,8,11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,1,11,1,11, - 3,11,1203,8,11,1,11,1,11,1,11,1,11,3,11,1209,8,11,1,12,1,12,1,12, - 1,12,3,12,1215,8,12,1,12,1,12,3,12,1219,8,12,1,12,1,12,1,12,3,12, - 1224,8,12,1,12,1,12,3,12,1228,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,1241,8,12,1,12,1,12,1,12,1,12,1,12, - 1,12,1,12,1,12,3,12,1251,8,12,3,12,1253,8,12,1,13,1,13,1,13,1,13, - 3,13,1259,8,13,1,13,5,13,1262,8,13,10,13,12,13,1265,9,13,1,14,1, - 14,1,14,1,14,1,14,1,14,1,14,1,15,1,15,1,15,3,15,1277,8,15,1,15,3, - 15,1280,8,15,1,15,1,15,1,15,3,15,1285,8,15,1,15,5,15,1288,8,15,10, - 15,12,15,1291,9,15,1,16,1,16,1,17,1,17,1,17,1,17,1,17,1,17,3,17, - 1301,8,17,1,18,1,18,3,18,1305,8,18,1,18,1,18,1,19,1,19,1,19,1,19, - 1,19,1,19,1,19,1,19,3,19,1317,8,19,1,20,1,20,3,20,1321,8,20,1,20, - 3,20,1324,8,20,1,20,1,20,3,20,1328,8,20,1,21,1,21,1,21,1,21,1,21, - 1,21,1,21,1,21,1,21,1,21,3,21,1340,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,1358, - 8,21,1,22,1,22,1,22,5,22,1363,8,22,10,22,12,22,1366,9,22,1,23,1, - 23,1,23,5,23,1371,8,23,10,23,12,23,1374,9,23,1,24,1,24,3,24,1378, - 8,24,1,25,1,25,1,25,1,25,1,25,3,25,1385,8,25,1,26,1,26,1,26,1,26, - 1,26,1,26,3,26,1393,8,26,1,27,1,27,1,27,1,27,3,27,1399,8,27,1,28, - 1,28,1,28,1,28,1,28,1,28,3,28,1407,8,28,1,28,1,28,1,28,1,28,1,28, - 1,28,3,28,1415,8,28,1,29,1,29,3,29,1419,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,1433,8,31,1,32,1,32, - 1,32,3,32,1438,8,32,1,33,1,33,1,33,3,33,1443,8,33,1,34,1,34,1,34, - 1,34,1,34,1,34,1,34,1,34,1,34,1,34,3,34,1455,8,34,1,35,1,35,1,35, - 1,35,3,35,1461,8,35,1,35,1,35,1,36,1,36,1,37,1,37,1,37,1,38,1,38, - 1,38,3,38,1473,8,38,1,38,1,38,1,38,3,38,1478,8,38,1,38,1,38,1,38, - 1,38,1,38,1,38,1,38,1,38,3,38,1488,8,38,1,38,1,38,1,38,1,38,3,38, - 1494,8,38,1,38,1,38,1,38,3,38,1499,8,38,1,38,1,38,1,38,1,38,1,38, - 1,38,1,38,3,38,1508,8,38,1,38,1,38,1,38,1,38,1,38,3,38,1515,8,38, - 1,38,1,38,1,38,3,38,1520,8,38,1,38,1,38,1,38,3,38,1525,8,38,1,38, - 1,38,1,38,1,38,1,38,1,38,1,38,1,38,3,38,1535,8,38,1,38,1,38,1,38, - 3,38,1540,8,38,1,38,1,38,1,38,3,38,1545,8,38,1,38,1,38,1,38,1,38, - 1,38,3,38,1552,8,38,1,38,1,38,3,38,1556,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,1570,8,38,1,38,1,38, - 1,38,1,38,3,38,1576,8,38,1,38,1,38,1,38,1,38,3,38,1582,8,38,1,38, - 1,38,1,38,3,38,1587,8,38,1,39,1,39,1,39,5,39,1592,8,39,10,39,12, - 39,1595,9,39,1,40,1,40,1,40,1,40,1,40,1,40,3,40,1603,8,40,1,41,1, - 41,1,41,1,41,1,42,1,42,1,42,3,42,1612,8,42,1,42,1,42,1,42,1,42,1, - 42,5,42,1619,8,42,10,42,12,42,1622,9,42,1,42,1,42,1,42,1,42,1,42, - 1,42,3,42,1630,8,42,1,42,1,42,3,42,1634,8,42,1,42,1,42,1,42,1,42, - 1,42,1,42,1,42,1,42,1,42,1,42,3,42,1646,8,42,1,42,1,42,1,42,1,42, - 1,42,1,42,3,42,1654,8,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42, - 3,42,1664,8,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42, - 1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,3,42,1684,8,42,1,42,1,42, - 1,42,3,42,1689,8,42,1,42,3,42,1692,8,42,1,42,1,42,1,42,1,42,1,42, - 3,42,1699,8,42,1,42,3,42,1702,8,42,1,42,1,42,3,42,1706,8,42,1,42, - 1,42,3,42,1710,8,42,1,42,3,42,1713,8,42,1,42,1,42,1,42,3,42,1718, - 8,42,1,42,1,42,1,42,3,42,1723,8,42,1,42,1,42,3,42,1727,8,42,1,42, - 1,42,1,42,1,42,1,42,1,42,1,42,3,42,1736,8,42,1,42,1,42,1,42,1,42, - 3,42,1742,8,42,1,42,1,42,3,42,1746,8,42,1,42,1,42,1,42,1,42,1,42, - 1,42,1,42,3,42,1755,8,42,1,42,3,42,1758,8,42,1,42,1,42,1,42,1,42, - 3,42,1764,8,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,3,42,1773,8,42, - 1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,4,42,1783,8,42,11,42,12, - 42,1784,1,42,1,42,3,42,1789,8,42,1,42,1,42,3,42,1793,8,42,1,42,1, - 42,1,42,3,42,1798,8,42,1,42,3,42,1801,8,42,1,42,1,42,1,42,1,42,3, - 42,1807,8,42,4,42,1809,8,42,11,42,12,42,1810,1,42,1,42,3,42,1815, - 8,42,1,42,1,42,1,42,1,42,3,42,1821,8,42,1,42,1,42,3,42,1825,8,42, - 1,42,1,42,1,42,3,42,1830,8,42,1,42,1,42,1,42,3,42,1835,8,42,1,42, - 1,42,3,42,1839,8,42,1,42,3,42,1842,8,42,1,43,1,43,1,43,1,43,1,43, - 3,43,1849,8,43,1,44,1,44,1,45,1,45,1,45,1,46,1,46,1,46,1,46,5,46, - 1860,8,46,10,46,12,46,1863,9,46,1,46,1,46,1,47,1,47,1,47,1,48,1, - 48,1,48,1,48,1,48,3,48,1875,8,48,1,49,1,49,1,49,1,49,1,49,1,49,1, + 2,467,7,467,2,468,7,468,2,469,7,469,2,470,7,470,1,0,5,0,944,8,0, + 10,0,12,0,947,9,0,1,0,1,0,1,1,1,1,3,1,953,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,1073,8,2,3,2,1075,8,2,1,3,1,3,1,3,1,4,1,4,1,4,1,4,3,4, + 1084,8,4,1,4,5,4,1087,8,4,10,4,12,4,1090,9,4,1,5,1,5,1,5,3,5,1095, + 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,1130,8,5,1,6,1,6,1,6,1,6,1,6,1,6,1,6,1,6,3,6,1140,8, + 6,1,7,1,7,1,7,1,7,3,7,1146,8,7,1,7,5,7,1149,8,7,10,7,12,7,1152,9, + 7,1,8,1,8,1,8,1,8,3,8,1158,8,8,1,8,5,8,1161,8,8,10,8,12,8,1164,9, + 8,1,9,1,9,1,9,1,9,3,9,1170,8,9,1,9,1,9,1,9,1,9,1,9,1,10,1,10,1,10, + 1,10,3,10,1181,8,10,1,10,1,10,1,11,1,11,5,11,1187,8,11,10,11,12, + 11,1190,9,11,1,11,3,11,1193,8,11,1,11,1,11,1,11,1,11,1,11,1,11,1, + 11,1,11,1,11,1,11,3,11,1205,8,11,1,11,1,11,1,11,1,11,3,11,1211,8, + 11,1,12,1,12,1,12,1,12,3,12,1217,8,12,1,12,1,12,3,12,1221,8,12,1, + 12,1,12,1,12,3,12,1226,8,12,1,12,1,12,3,12,1230,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,1243,8,12,1,12,1, + 12,1,12,1,12,1,12,1,12,1,12,1,12,3,12,1253,8,12,3,12,1255,8,12,1, + 13,1,13,1,13,1,13,3,13,1261,8,13,1,13,5,13,1264,8,13,10,13,12,13, + 1267,9,13,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,15,1,15,1,15,3,15, + 1279,8,15,1,15,3,15,1282,8,15,1,15,1,15,1,15,3,15,1287,8,15,1,15, + 5,15,1290,8,15,10,15,12,15,1293,9,15,1,16,1,16,1,17,1,17,1,17,1, + 17,1,17,1,17,3,17,1303,8,17,1,18,1,18,3,18,1307,8,18,1,18,1,18,1, + 19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,3,19,1319,8,19,1,20,1,20,3, + 20,1323,8,20,1,20,3,20,1326,8,20,1,20,1,20,3,20,1330,8,20,1,21,1, + 21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,1,21,3,21,1342,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,1360,8,21,1,22,1,22,1,22,5,22,1365,8,22,10,22,12,22, + 1368,9,22,1,23,1,23,1,23,5,23,1373,8,23,10,23,12,23,1376,9,23,1, + 24,1,24,3,24,1380,8,24,1,25,1,25,1,25,1,25,1,25,3,25,1387,8,25,1, + 26,1,26,1,26,1,26,1,26,1,26,3,26,1395,8,26,1,27,1,27,1,27,1,27,3, + 27,1401,8,27,1,28,1,28,1,28,1,28,1,28,1,28,3,28,1409,8,28,1,28,1, + 28,1,28,1,28,1,28,1,28,3,28,1417,8,28,1,29,1,29,3,29,1421,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,1435, + 8,31,1,32,1,32,1,32,3,32,1440,8,32,1,33,1,33,1,33,3,33,1445,8,33, + 1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,3,34,1457,8,34, + 1,35,1,35,1,35,1,35,3,35,1463,8,35,1,35,1,35,1,36,1,36,1,37,1,37, + 1,37,1,38,1,38,1,38,3,38,1475,8,38,1,38,1,38,1,38,3,38,1480,8,38, + 1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,3,38,1490,8,38,1,38,1,38, + 1,38,1,38,3,38,1496,8,38,1,38,1,38,1,38,3,38,1501,8,38,1,38,1,38, + 1,38,1,38,1,38,1,38,1,38,3,38,1510,8,38,1,38,1,38,1,38,1,38,1,38, + 3,38,1517,8,38,1,38,1,38,1,38,3,38,1522,8,38,1,38,1,38,1,38,3,38, + 1527,8,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,3,38,1537,8,38, + 1,38,1,38,1,38,3,38,1542,8,38,1,38,1,38,1,38,3,38,1547,8,38,1,38, + 1,38,1,38,1,38,1,38,3,38,1554,8,38,1,38,1,38,3,38,1558,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,1572, + 8,38,1,38,1,38,1,38,1,38,3,38,1578,8,38,1,38,1,38,1,38,1,38,3,38, + 1584,8,38,1,38,1,38,1,38,3,38,1589,8,38,1,39,1,39,1,39,5,39,1594, + 8,39,10,39,12,39,1597,9,39,1,40,1,40,1,40,1,40,1,40,1,40,3,40,1605, + 8,40,1,41,1,41,1,41,1,41,1,42,1,42,1,42,3,42,1614,8,42,1,42,1,42, + 1,42,1,42,1,42,5,42,1621,8,42,10,42,12,42,1624,9,42,1,42,1,42,1, + 42,1,42,1,42,1,42,3,42,1632,8,42,1,42,1,42,3,42,1636,8,42,1,42,1, + 42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,3,42,1648,8,42,1,42,1, + 42,1,42,1,42,1,42,1,42,3,42,1656,8,42,1,42,1,42,1,42,1,42,1,42,1, + 42,1,42,1,42,3,42,1666,8,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1, + 42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,3,42,1686,8, + 42,1,42,1,42,1,42,3,42,1691,8,42,1,42,3,42,1694,8,42,1,42,1,42,1, + 42,1,42,1,42,3,42,1701,8,42,1,42,3,42,1704,8,42,1,42,1,42,3,42,1708, + 8,42,1,42,1,42,3,42,1712,8,42,1,42,3,42,1715,8,42,1,42,1,42,1,42, + 3,42,1720,8,42,1,42,1,42,1,42,3,42,1725,8,42,1,42,1,42,3,42,1729, + 8,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,3,42,1738,8,42,1,42,1,42, + 1,42,1,42,3,42,1744,8,42,1,42,1,42,3,42,1748,8,42,1,42,1,42,1,42, + 1,42,1,42,1,42,1,42,3,42,1757,8,42,1,42,3,42,1760,8,42,1,42,1,42, + 1,42,1,42,3,42,1766,8,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,3,42, + 1775,8,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,4,42,1785,8,42, + 11,42,12,42,1786,1,42,1,42,3,42,1791,8,42,1,42,1,42,3,42,1795,8, + 42,1,42,1,42,1,42,3,42,1800,8,42,1,42,3,42,1803,8,42,1,42,1,42,1, + 42,1,42,3,42,1809,8,42,4,42,1811,8,42,11,42,12,42,1812,1,42,1,42, + 3,42,1817,8,42,1,42,1,42,1,42,1,42,3,42,1823,8,42,1,42,1,42,3,42, + 1827,8,42,1,42,1,42,1,42,3,42,1832,8,42,1,42,1,42,1,42,3,42,1837, + 8,42,1,42,1,42,3,42,1841,8,42,1,42,3,42,1844,8,42,1,43,1,43,1,43, + 1,43,1,43,3,43,1851,8,43,1,44,1,44,1,45,1,45,1,45,1,46,1,46,1,46, + 1,46,5,46,1862,8,46,10,46,12,46,1865,9,46,1,46,1,46,1,47,1,47,1, + 47,1,48,1,48,1,48,1,48,1,48,3,48,1877,8,48,1,49,1,49,1,49,1,49,1, 49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1, - 49,1,49,1,49,1,49,3,49,1900,8,49,1,50,1,50,1,50,1,50,1,50,1,50,5, - 50,1908,8,50,10,50,12,50,1911,9,50,1,51,1,51,1,51,1,51,3,51,1917, - 8,51,1,51,1,51,1,51,3,51,1922,8,51,1,51,1,51,3,51,1926,8,51,1,51, - 1,51,1,51,1,51,1,51,3,51,1933,8,51,1,51,1,51,1,51,3,51,1938,8,51, - 1,51,3,51,1941,8,51,3,51,1943,8,51,1,52,1,52,1,52,3,52,1948,8,52, - 1,53,1,53,3,53,1952,8,53,1,53,1,53,3,53,1956,8,53,1,53,1,53,3,53, - 1960,8,53,1,53,1,53,1,53,3,53,1965,8,53,1,53,3,53,1968,8,53,1,53, - 1,53,3,53,1972,8,53,1,53,3,53,1975,8,53,1,53,1,53,3,53,1979,8,53, - 1,53,1,53,1,53,1,53,1,53,1,53,3,53,1987,8,53,1,53,1,53,1,53,3,53, - 1992,8,53,1,53,3,53,1995,8,53,1,53,1,53,3,53,1999,8,53,1,54,1,54, - 1,54,1,54,3,54,2005,8,54,1,54,1,54,1,54,1,54,1,54,1,54,1,54,3,54, - 2014,8,54,1,54,1,54,3,54,2018,8,54,1,54,1,54,1,54,1,54,1,54,1,54, - 1,54,1,54,3,54,2028,8,54,1,54,1,54,1,54,3,54,2033,8,54,5,54,2035, - 8,54,10,54,12,54,2038,9,54,1,54,3,54,2041,8,54,5,54,2043,8,54,10, - 54,12,54,2046,9,54,1,55,1,55,1,55,1,55,3,55,2052,8,55,1,55,1,55, - 1,55,3,55,2057,8,55,5,55,2059,8,55,10,55,12,55,2062,9,55,1,55,1, - 55,3,55,2066,8,55,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,5,56,2076, - 8,56,10,56,12,56,2079,9,56,1,56,1,56,3,56,2083,8,56,1,57,1,57,3, - 57,2087,8,57,1,57,1,57,3,57,2091,8,57,1,57,1,57,1,57,3,57,2096,8, - 57,1,57,1,57,3,57,2100,8,57,1,57,3,57,2103,8,57,1,57,3,57,2106,8, - 57,1,57,3,57,2109,8,57,1,57,3,57,2112,8,57,1,57,3,57,2115,8,57,1, - 57,1,57,1,57,3,57,2120,8,57,1,57,3,57,2123,8,57,1,57,3,57,2126,8, - 57,1,57,3,57,2129,8,57,1,57,3,57,2132,8,57,1,57,3,57,2135,8,57,1, - 57,1,57,1,57,1,57,3,57,2141,8,57,1,57,1,57,3,57,2145,8,57,1,57,3, - 57,2148,8,57,1,57,3,57,2151,8,57,1,57,3,57,2154,8,57,1,57,3,57,2157, - 8,57,3,57,2159,8,57,1,58,1,58,1,58,1,58,1,58,3,58,2166,8,58,1,59, - 1,59,1,59,1,59,5,59,2172,8,59,10,59,12,59,2175,9,59,1,59,1,59,1, - 60,1,60,1,60,5,60,2182,8,60,10,60,12,60,2185,9,60,1,61,1,61,3,61, - 2189,8,61,1,61,1,61,1,61,1,61,1,61,1,61,5,61,2197,8,61,10,61,12, - 61,2200,9,61,3,61,2202,8,61,1,62,1,62,1,62,3,62,2207,8,62,1,62,5, - 62,2210,8,62,10,62,12,62,2213,9,62,1,62,1,62,3,62,2217,8,62,1,62, - 3,62,2220,8,62,1,63,1,63,1,63,3,63,2225,8,63,1,63,1,63,1,63,1,63, - 1,63,1,63,1,63,3,63,2234,8,63,3,63,2236,8,63,1,63,1,63,3,63,2240, - 8,63,1,63,3,63,2243,8,63,1,63,1,63,3,63,2247,8,63,1,63,5,63,2250, - 8,63,10,63,12,63,2253,9,63,1,64,1,64,3,64,2257,8,64,1,64,1,64,3, - 64,2261,8,64,1,64,3,64,2264,8,64,1,64,1,64,3,64,2268,8,64,1,65,3, - 65,2271,8,65,1,65,1,65,1,65,3,65,2276,8,65,1,65,3,65,2279,8,65,1, - 65,1,65,1,65,3,65,2284,8,65,1,65,3,65,2287,8,65,1,65,1,65,3,65,2291, - 8,65,1,65,3,65,2294,8,65,1,65,3,65,2297,8,65,1,65,1,65,1,65,3,65, - 2302,8,65,1,65,3,65,2305,8,65,1,65,1,65,1,65,1,65,1,65,1,65,3,65, - 2313,8,65,1,65,1,65,1,65,1,65,1,65,1,65,1,65,1,65,4,65,2323,8,65, - 11,65,12,65,2324,1,65,1,65,3,65,2329,8,65,1,65,1,65,1,65,1,65,1, - 65,3,65,2336,8,65,1,65,1,65,1,65,3,65,2341,8,65,1,65,3,65,2344,8, - 65,1,65,3,65,2347,8,65,1,65,3,65,2350,8,65,1,66,1,66,1,66,3,66,2355, - 8,66,1,67,1,67,1,68,1,68,1,68,1,68,1,68,5,68,2364,8,68,10,68,12, - 68,2367,9,68,1,68,1,68,1,68,3,68,2372,8,68,1,68,1,68,3,68,2376,8, - 68,1,68,3,68,2379,8,68,1,68,3,68,2382,8,68,1,68,5,68,2385,8,68,10, - 68,12,68,2388,9,68,1,68,1,68,5,68,2392,8,68,10,68,12,68,2395,9,68, - 3,68,2397,8,68,1,68,1,68,3,68,2401,8,68,1,68,1,68,1,68,1,68,5,68, - 2407,8,68,10,68,12,68,2410,9,68,1,68,1,68,3,68,2414,8,68,1,68,3, - 68,2417,8,68,1,68,3,68,2420,8,68,1,68,1,68,1,68,1,68,1,68,3,68,2427, - 8,68,1,68,5,68,2430,8,68,10,68,12,68,2433,9,68,1,68,1,68,1,68,1, - 68,1,68,1,68,3,68,2441,8,68,1,68,3,68,2444,8,68,1,68,3,68,2447,8, - 68,1,68,5,68,2450,8,68,10,68,12,68,2453,9,68,3,68,2455,8,68,1,69, - 1,69,1,69,1,69,1,70,1,70,1,70,1,70,5,70,2465,8,70,10,70,12,70,2468, - 9,70,1,70,1,70,1,71,1,71,1,71,5,71,2475,8,71,10,71,12,71,2478,9, - 71,1,72,1,72,1,72,1,73,1,73,1,73,1,74,1,74,1,74,1,74,1,74,1,74,1, - 74,1,74,3,74,2494,8,74,1,75,1,75,3,75,2498,8,75,1,75,1,75,3,75,2502, - 8,75,3,75,2504,8,75,1,76,1,76,1,76,1,76,1,77,1,77,1,77,1,77,1,78, - 1,78,1,78,1,78,1,78,1,78,1,78,3,78,2521,8,78,3,78,2523,8,78,1,79, - 1,79,1,79,1,79,1,79,1,80,1,80,1,80,1,80,1,80,1,80,1,80,5,80,2537, - 8,80,10,80,12,80,2540,9,80,1,80,1,80,1,81,1,81,1,81,1,81,1,81,1, - 81,3,81,2550,8,81,1,81,3,81,2553,8,81,1,81,3,81,2556,8,81,1,82,1, - 82,1,82,1,83,1,83,1,83,1,83,3,83,2565,8,83,1,84,1,84,1,84,1,84,1, - 84,1,84,1,84,3,84,2574,8,84,1,85,1,85,1,85,1,86,1,86,1,86,1,86,1, - 87,1,87,1,87,1,87,1,88,1,88,1,88,3,88,2590,8,88,1,88,3,88,2593,8, - 88,1,88,3,88,2596,8,88,1,88,1,88,1,88,1,88,5,88,2602,8,88,10,88, - 12,88,2605,9,88,1,88,3,88,2608,8,88,1,88,1,88,1,89,1,89,1,89,3,89, - 2615,8,89,1,89,1,89,1,89,1,89,1,89,1,90,1,90,3,90,2624,8,90,1,90, - 1,90,3,90,2628,8,90,1,90,1,90,1,90,1,90,3,90,2634,8,90,1,91,1,91, - 3,91,2638,8,91,1,91,3,91,2641,8,91,1,91,3,91,2644,8,91,1,91,3,91, - 2647,8,91,1,91,3,91,2650,8,91,1,92,1,92,1,92,1,92,3,92,2656,8,92, - 1,93,1,93,3,93,2660,8,93,1,93,1,93,1,93,3,93,2665,8,93,1,93,1,93, - 3,93,2669,8,93,1,93,3,93,2672,8,93,1,93,3,93,2675,8,93,1,93,3,93, - 2678,8,93,1,93,1,93,1,93,3,93,2683,8,93,1,94,1,94,1,94,1,94,3,94, - 2689,8,94,1,94,1,94,3,94,2693,8,94,1,95,1,95,3,95,2697,8,95,1,95, - 1,95,3,95,2701,8,95,1,95,1,95,4,95,2705,8,95,11,95,12,95,2706,3, - 95,2709,8,95,1,96,1,96,1,96,3,96,2714,8,96,1,96,1,96,4,96,2718,8, - 96,11,96,12,96,2719,1,97,1,97,1,97,1,97,3,97,2726,8,97,1,97,1,97, - 3,97,2730,8,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1,97, - 1,97,1,97,1,97,3,97,2745,8,97,1,97,1,97,1,97,3,97,2750,8,97,1,97, - 3,97,2753,8,97,3,97,2755,8,97,1,98,3,98,2758,8,98,1,98,1,98,3,98, - 2762,8,98,1,99,1,99,3,99,2766,8,99,1,99,3,99,2769,8,99,1,99,3,99, - 2772,8,99,1,99,1,99,1,99,1,99,1,99,1,99,3,99,2780,8,99,1,99,1,99, - 1,99,1,99,3,99,2786,8,99,3,99,2788,8,99,1,100,1,100,1,100,1,100, - 3,100,2794,8,100,1,100,1,100,1,100,3,100,2799,8,100,1,101,1,101, - 1,101,3,101,2804,8,101,1,101,1,101,3,101,2808,8,101,1,101,1,101, - 1,101,1,101,1,101,5,101,2815,8,101,10,101,12,101,2818,9,101,1,102, - 1,102,1,102,1,102,1,102,1,102,5,102,2826,8,102,10,102,12,102,2829, - 9,102,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103, + 49,1,49,1,49,1,49,1,49,1,49,3,49,1902,8,49,1,50,1,50,1,50,1,50,1, + 50,1,50,5,50,1910,8,50,10,50,12,50,1913,9,50,1,51,1,51,1,51,1,51, + 3,51,1919,8,51,1,51,1,51,1,51,3,51,1924,8,51,1,51,1,51,3,51,1928, + 8,51,1,51,1,51,1,51,1,51,1,51,3,51,1935,8,51,1,51,1,51,1,51,3,51, + 1940,8,51,1,51,3,51,1943,8,51,3,51,1945,8,51,1,52,1,52,1,52,3,52, + 1950,8,52,1,53,1,53,3,53,1954,8,53,1,53,1,53,3,53,1958,8,53,1,53, + 1,53,3,53,1962,8,53,1,53,1,53,1,53,3,53,1967,8,53,1,53,3,53,1970, + 8,53,1,53,1,53,3,53,1974,8,53,1,53,3,53,1977,8,53,1,53,1,53,3,53, + 1981,8,53,1,53,1,53,1,53,1,53,1,53,1,53,3,53,1989,8,53,1,53,1,53, + 1,53,3,53,1994,8,53,1,53,3,53,1997,8,53,1,53,1,53,3,53,2001,8,53, + 1,54,1,54,1,54,1,54,3,54,2007,8,54,1,54,1,54,1,54,1,54,1,54,1,54, + 1,54,3,54,2016,8,54,1,54,1,54,3,54,2020,8,54,1,54,1,54,1,54,1,54, + 1,54,1,54,1,54,1,54,3,54,2030,8,54,1,54,1,54,1,54,3,54,2035,8,54, + 5,54,2037,8,54,10,54,12,54,2040,9,54,1,54,3,54,2043,8,54,5,54,2045, + 8,54,10,54,12,54,2048,9,54,1,55,1,55,1,55,1,55,3,55,2054,8,55,1, + 55,1,55,1,55,3,55,2059,8,55,5,55,2061,8,55,10,55,12,55,2064,9,55, + 1,55,1,55,3,55,2068,8,55,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56, + 5,56,2078,8,56,10,56,12,56,2081,9,56,1,56,1,56,3,56,2085,8,56,1, + 57,1,57,3,57,2089,8,57,1,57,1,57,3,57,2093,8,57,1,57,1,57,1,57,3, + 57,2098,8,57,1,57,1,57,3,57,2102,8,57,1,57,3,57,2105,8,57,1,57,3, + 57,2108,8,57,1,57,3,57,2111,8,57,1,57,3,57,2114,8,57,1,57,3,57,2117, + 8,57,1,57,1,57,1,57,3,57,2122,8,57,1,57,3,57,2125,8,57,1,57,3,57, + 2128,8,57,1,57,3,57,2131,8,57,1,57,3,57,2134,8,57,1,57,3,57,2137, + 8,57,1,57,1,57,1,57,1,57,3,57,2143,8,57,1,57,1,57,3,57,2147,8,57, + 1,57,3,57,2150,8,57,1,57,3,57,2153,8,57,1,57,3,57,2156,8,57,1,57, + 3,57,2159,8,57,3,57,2161,8,57,1,58,1,58,1,58,1,58,1,58,3,58,2168, + 8,58,1,59,1,59,1,59,1,59,5,59,2174,8,59,10,59,12,59,2177,9,59,1, + 59,1,59,1,60,1,60,1,60,5,60,2184,8,60,10,60,12,60,2187,9,60,1,61, + 1,61,3,61,2191,8,61,1,61,1,61,1,61,1,61,1,61,1,61,5,61,2199,8,61, + 10,61,12,61,2202,9,61,3,61,2204,8,61,1,62,1,62,1,62,3,62,2209,8, + 62,1,62,5,62,2212,8,62,10,62,12,62,2215,9,62,1,62,1,62,3,62,2219, + 8,62,1,62,3,62,2222,8,62,1,63,1,63,1,63,3,63,2227,8,63,1,63,1,63, + 1,63,1,63,1,63,1,63,1,63,3,63,2236,8,63,3,63,2238,8,63,1,63,1,63, + 3,63,2242,8,63,1,63,3,63,2245,8,63,1,63,1,63,3,63,2249,8,63,1,63, + 5,63,2252,8,63,10,63,12,63,2255,9,63,1,64,1,64,3,64,2259,8,64,1, + 64,1,64,3,64,2263,8,64,1,64,3,64,2266,8,64,1,64,1,64,3,64,2270,8, + 64,1,65,3,65,2273,8,65,1,65,1,65,1,65,3,65,2278,8,65,1,65,3,65,2281, + 8,65,1,65,1,65,1,65,3,65,2286,8,65,1,65,3,65,2289,8,65,1,65,1,65, + 3,65,2293,8,65,1,65,3,65,2296,8,65,1,65,3,65,2299,8,65,1,65,1,65, + 1,65,3,65,2304,8,65,1,65,3,65,2307,8,65,1,65,1,65,1,65,1,65,1,65, + 1,65,3,65,2315,8,65,1,65,1,65,1,65,1,65,1,65,1,65,1,65,1,65,4,65, + 2325,8,65,11,65,12,65,2326,1,65,1,65,3,65,2331,8,65,1,65,1,65,1, + 65,1,65,1,65,3,65,2338,8,65,1,65,1,65,1,65,3,65,2343,8,65,1,65,3, + 65,2346,8,65,1,65,3,65,2349,8,65,1,65,3,65,2352,8,65,1,66,1,66,1, + 66,3,66,2357,8,66,1,67,1,67,1,68,1,68,1,68,1,68,1,68,5,68,2366,8, + 68,10,68,12,68,2369,9,68,1,68,1,68,1,68,3,68,2374,8,68,1,68,1,68, + 3,68,2378,8,68,1,68,3,68,2381,8,68,1,68,3,68,2384,8,68,1,68,5,68, + 2387,8,68,10,68,12,68,2390,9,68,1,68,1,68,5,68,2394,8,68,10,68,12, + 68,2397,9,68,3,68,2399,8,68,1,68,1,68,3,68,2403,8,68,1,68,1,68,1, + 68,1,68,5,68,2409,8,68,10,68,12,68,2412,9,68,1,68,1,68,3,68,2416, + 8,68,1,68,3,68,2419,8,68,1,68,3,68,2422,8,68,1,68,1,68,1,68,1,68, + 1,68,3,68,2429,8,68,1,68,5,68,2432,8,68,10,68,12,68,2435,9,68,1, + 68,1,68,1,68,1,68,1,68,1,68,3,68,2443,8,68,1,68,3,68,2446,8,68,1, + 68,3,68,2449,8,68,1,68,5,68,2452,8,68,10,68,12,68,2455,9,68,3,68, + 2457,8,68,1,69,1,69,1,69,1,69,1,70,1,70,1,70,1,70,5,70,2467,8,70, + 10,70,12,70,2470,9,70,1,70,1,70,1,71,1,71,1,71,5,71,2477,8,71,10, + 71,12,71,2480,9,71,1,72,1,72,1,72,1,73,1,73,1,73,1,74,1,74,1,74, + 1,74,1,74,1,74,1,74,1,74,3,74,2496,8,74,1,75,1,75,3,75,2500,8,75, + 1,75,1,75,3,75,2504,8,75,3,75,2506,8,75,1,76,1,76,1,76,1,76,1,77, + 1,77,1,77,1,77,1,78,1,78,1,78,1,78,1,78,1,78,1,78,3,78,2523,8,78, + 3,78,2525,8,78,1,79,1,79,1,79,1,79,1,79,1,80,1,80,1,80,1,80,1,80, + 1,80,1,80,5,80,2539,8,80,10,80,12,80,2542,9,80,1,80,1,80,1,81,1, + 81,1,81,1,81,1,81,1,81,3,81,2552,8,81,1,81,3,81,2555,8,81,1,81,3, + 81,2558,8,81,1,82,1,82,1,82,1,83,1,83,1,83,1,83,3,83,2567,8,83,1, + 84,1,84,1,84,1,84,1,84,1,84,1,84,3,84,2576,8,84,1,85,1,85,1,85,1, + 86,1,86,1,86,1,86,1,87,1,87,1,87,1,87,1,88,1,88,1,88,3,88,2592,8, + 88,1,88,3,88,2595,8,88,1,88,3,88,2598,8,88,1,88,1,88,1,88,1,88,5, + 88,2604,8,88,10,88,12,88,2607,9,88,1,88,3,88,2610,8,88,1,88,1,88, + 1,89,1,89,1,89,3,89,2617,8,89,1,89,1,89,1,89,1,89,1,89,1,90,1,90, + 3,90,2626,8,90,1,90,1,90,3,90,2630,8,90,1,90,1,90,1,90,1,90,3,90, + 2636,8,90,1,91,1,91,3,91,2640,8,91,1,91,3,91,2643,8,91,1,91,3,91, + 2646,8,91,1,91,3,91,2649,8,91,1,91,3,91,2652,8,91,1,92,1,92,1,92, + 1,92,3,92,2658,8,92,1,93,1,93,3,93,2662,8,93,1,93,1,93,1,93,3,93, + 2667,8,93,1,93,1,93,3,93,2671,8,93,1,93,3,93,2674,8,93,1,93,3,93, + 2677,8,93,1,93,3,93,2680,8,93,1,93,1,93,1,93,3,93,2685,8,93,1,94, + 1,94,1,94,1,94,3,94,2691,8,94,1,94,1,94,3,94,2695,8,94,1,95,1,95, + 3,95,2699,8,95,1,95,1,95,3,95,2703,8,95,1,95,1,95,4,95,2707,8,95, + 11,95,12,95,2708,3,95,2711,8,95,1,96,1,96,1,96,3,96,2716,8,96,1, + 96,1,96,4,96,2720,8,96,11,96,12,96,2721,1,97,1,97,1,97,1,97,3,97, + 2728,8,97,1,97,1,97,3,97,2732,8,97,1,97,1,97,1,97,1,97,1,97,1,97, + 1,97,1,97,1,97,1,97,1,97,1,97,1,97,3,97,2747,8,97,1,97,1,97,1,97, + 3,97,2752,8,97,1,97,3,97,2755,8,97,3,97,2757,8,97,1,98,3,98,2760, + 8,98,1,98,1,98,3,98,2764,8,98,1,99,1,99,3,99,2768,8,99,1,99,3,99, + 2771,8,99,1,99,3,99,2774,8,99,1,99,1,99,1,99,1,99,1,99,1,99,3,99, + 2782,8,99,1,99,1,99,1,99,1,99,3,99,2788,8,99,3,99,2790,8,99,1,100, + 1,100,1,100,1,100,3,100,2796,8,100,1,100,1,100,1,100,3,100,2801, + 8,100,1,101,1,101,1,101,3,101,2806,8,101,1,101,1,101,3,101,2810, + 8,101,1,101,1,101,1,101,1,101,1,101,5,101,2817,8,101,10,101,12,101, + 2820,9,101,1,102,1,102,1,102,1,102,1,102,1,102,5,102,2828,8,102, + 10,102,12,102,2831,9,102,1,103,1,103,1,103,1,103,1,103,1,103,1,103, 1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103, 1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103, - 1,103,1,103,1,103,1,103,3,103,2867,8,103,1,104,1,104,1,104,1,104, - 1,104,1,104,4,104,2875,8,104,11,104,12,104,2876,3,104,2879,8,104, - 1,104,3,104,2882,8,104,1,105,1,105,3,105,2886,8,105,1,105,1,105, - 3,105,2890,8,105,1,106,1,106,1,106,1,106,1,106,1,106,4,106,2898, - 8,106,11,106,12,106,2899,3,106,2902,8,106,1,106,1,106,4,106,2906, - 8,106,11,106,12,106,2907,3,106,2910,8,106,1,107,1,107,1,107,1,107, - 1,107,5,107,2917,8,107,10,107,12,107,2920,9,107,1,107,1,107,1,108, - 1,108,1,108,1,108,1,108,5,108,2929,8,108,10,108,12,108,2932,9,108, - 1,108,1,108,1,109,1,109,1,109,1,110,1,110,1,110,1,111,1,111,1,111, - 3,111,2945,8,111,1,111,1,111,1,111,3,111,2950,8,111,1,111,3,111, - 2953,8,111,1,111,1,111,1,111,1,111,1,111,3,111,2960,8,111,1,112, - 1,112,1,112,3,112,2965,8,112,1,113,1,113,1,113,1,113,1,113,1,113, - 3,113,2973,8,113,3,113,2975,8,113,1,114,1,114,1,114,1,114,3,114, - 2981,8,114,1,114,1,114,1,114,3,114,2986,8,114,1,114,1,114,3,114, - 2990,8,114,1,114,1,114,1,114,3,114,2995,8,114,1,114,1,114,1,114, - 1,114,3,114,3001,8,114,1,114,1,114,1,114,1,114,1,114,3,114,3008, - 8,114,1,114,1,114,1,114,1,114,3,114,3014,8,114,3,114,3016,8,114, - 1,115,1,115,1,115,1,115,1,115,1,115,1,115,3,115,3025,8,115,1,115, - 1,115,1,115,1,115,3,115,3031,8,115,1,115,1,115,1,115,1,115,1,115, - 1,115,3,115,3039,8,115,1,116,1,116,1,116,1,116,3,116,3045,8,116, - 1,116,1,116,1,116,3,116,3050,8,116,1,116,1,116,1,116,3,116,3055, - 8,116,1,117,1,117,1,117,1,117,1,117,1,117,3,117,3063,8,117,1,117, - 1,117,1,117,1,117,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118, - 1,118,3,118,3078,8,118,3,118,3080,8,118,1,118,1,118,3,118,3084,8, - 118,1,118,1,118,3,118,3088,8,118,1,118,3,118,3091,8,118,1,118,3, - 118,3094,8,118,1,119,1,119,1,119,1,119,1,119,1,119,1,119,3,119,3103, - 8,119,1,119,3,119,3106,8,119,1,119,3,119,3109,8,119,1,120,1,120, - 1,120,1,120,3,120,3115,8,120,1,120,1,120,5,120,3119,8,120,10,120, - 12,120,3122,9,120,1,120,3,120,3125,8,120,1,120,1,120,1,120,1,120, - 1,120,1,120,1,120,1,120,1,120,1,120,3,120,3137,8,120,1,120,1,120, - 1,120,1,120,3,120,3143,8,120,1,121,3,121,3146,8,121,1,121,1,121, - 1,121,3,121,3151,8,121,1,121,1,121,3,121,3155,8,121,1,121,1,121, - 1,121,1,121,1,121,3,121,3162,8,121,1,121,1,121,1,121,1,121,1,121, - 1,121,1,121,1,121,3,121,3172,8,121,3,121,3174,8,121,1,122,1,122, - 1,122,1,122,1,122,1,123,1,123,1,123,1,123,1,123,1,123,1,124,1,124, - 1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,125,1,125,3,125,3198, - 8,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125, - 3,125,3210,8,125,1,125,4,125,3213,8,125,11,125,12,125,3214,3,125, - 3217,8,125,1,125,1,125,3,125,3221,8,125,1,125,3,125,3224,8,125,1, - 125,3,125,3227,8,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1, - 125,3,125,3237,8,125,1,125,3,125,3240,8,125,1,125,1,125,1,125,1, - 125,1,125,1,125,1,125,1,125,3,125,3250,8,125,1,125,5,125,3253,8, - 125,10,125,12,125,3256,9,125,1,125,1,125,3,125,3260,8,125,1,125, - 3,125,3263,8,125,1,125,3,125,3266,8,125,1,125,1,125,1,125,1,125, - 1,125,1,125,3,125,3274,8,125,1,126,1,126,1,126,1,126,3,126,3280, - 8,126,1,127,1,127,1,127,5,127,3285,8,127,10,127,12,127,3288,9,127, - 1,128,1,128,1,128,1,128,1,128,3,128,3295,8,128,1,128,3,128,3298, - 8,128,1,129,1,129,1,129,1,129,1,129,1,130,1,130,1,130,1,130,3,130, - 3309,8,130,1,131,1,131,3,131,3313,8,131,1,131,1,131,5,131,3317,8, - 131,10,131,12,131,3320,9,131,1,132,1,132,1,132,1,132,3,132,3326, - 8,132,1,133,3,133,3329,8,133,1,133,1,133,1,133,1,133,1,133,1,133, - 1,133,3,133,3338,8,133,1,134,1,134,1,134,1,134,1,134,1,134,1,134, - 1,134,1,134,1,134,5,134,3350,8,134,10,134,12,134,3353,9,134,3,134, - 3355,8,134,1,134,1,134,1,134,1,134,1,134,1,135,1,135,1,135,1,135, - 1,135,5,135,3367,8,135,10,135,12,135,3370,9,135,1,135,1,135,1,136, - 1,136,1,136,1,136,1,136,1,136,3,136,3380,8,136,1,136,3,136,3383, - 8,136,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,5,137,3393, - 8,137,10,137,12,137,3396,9,137,1,138,1,138,3,138,3400,8,138,1,138, - 1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,138,5,138,3411,8,138, - 10,138,12,138,3414,9,138,1,138,1,138,3,138,3418,8,138,1,138,1,138, - 1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,138,3,138,3431, - 8,138,1,138,1,138,1,138,1,138,1,138,5,138,3438,8,138,10,138,12,138, - 3441,9,138,3,138,3443,8,138,1,138,3,138,3446,8,138,1,138,1,138,1, - 138,1,138,1,138,3,138,3453,8,138,1,138,3,138,3456,8,138,1,138,1, - 138,1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,138,3,138,3468,8, - 138,1,138,1,138,1,138,1,138,3,138,3474,8,138,3,138,3476,8,138,1, - 139,1,139,1,139,1,139,5,139,3482,8,139,10,139,12,139,3485,9,139, - 1,139,1,139,1,140,1,140,1,140,3,140,3492,8,140,1,141,1,141,1,141, - 1,141,1,141,1,141,3,141,3500,8,141,1,142,1,142,1,142,1,142,1,143, - 1,143,1,143,1,143,1,143,1,143,3,143,3512,8,143,1,143,1,143,1,143, - 3,143,3517,8,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143, - 1,143,3,143,3528,8,143,1,144,1,144,1,144,1,144,1,145,1,145,1,145, - 1,145,1,145,3,145,3539,8,145,1,145,1,145,1,145,1,145,1,145,1,145, - 3,145,3547,8,145,1,145,1,145,1,145,1,145,5,145,3553,8,145,10,145, - 12,145,3556,9,145,1,146,1,146,1,146,1,146,3,146,3562,8,146,1,146, - 1,146,1,146,1,146,1,146,3,146,3569,8,146,3,146,3571,8,146,1,146, - 3,146,3574,8,146,1,146,1,146,1,146,3,146,3579,8,146,1,146,1,146, - 1,146,3,146,3584,8,146,1,147,1,147,1,147,1,147,1,147,1,147,1,148, - 1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,5,148,3601,8,148, - 10,148,12,148,3604,9,148,1,148,1,148,1,148,1,148,5,148,3610,8,148, - 10,148,12,148,3613,9,148,3,148,3615,8,148,1,149,1,149,1,149,1,149, - 1,150,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,1,151,1,151,1,151,1,151,1,151,3,151, - 3642,8,151,1,151,1,151,1,151,1,151,1,151,1,151,1,151,3,151,3651, - 8,151,1,151,3,151,3654,8,151,1,151,1,151,3,151,3658,8,151,1,151, - 1,151,3,151,3662,8,151,1,151,1,151,3,151,3666,8,151,1,151,1,151, - 1,151,5,151,3671,8,151,10,151,12,151,3674,9,151,1,151,3,151,3677, - 8,151,1,151,1,151,3,151,3681,8,151,1,151,1,151,3,151,3685,8,151, - 1,151,1,151,3,151,3689,8,151,1,151,1,151,1,151,3,151,3694,8,151, - 1,151,1,151,3,151,3698,8,151,1,151,1,151,1,151,3,151,3703,8,151, - 1,151,1,151,1,151,1,151,3,151,3709,8,151,1,151,1,151,1,151,3,151, - 3714,8,151,1,151,1,151,1,151,5,151,3719,8,151,10,151,12,151,3722, - 9,151,1,151,3,151,3725,8,151,1,151,1,151,1,151,1,151,3,151,3731, - 8,151,1,151,1,151,3,151,3735,8,151,1,151,1,151,1,151,3,151,3740, - 8,151,1,151,1,151,1,151,1,151,1,151,1,151,3,151,3748,8,151,1,151, - 1,151,1,151,1,151,3,151,3754,8,151,1,151,1,151,1,151,3,151,3759, - 8,151,1,151,1,151,1,151,1,151,1,151,3,151,3766,8,151,1,151,1,151, - 1,151,3,151,3771,8,151,1,151,1,151,3,151,3775,8,151,1,151,1,151, - 1,151,3,151,3780,8,151,1,151,1,151,1,151,1,151,3,151,3786,8,151, - 1,151,1,151,1,151,1,151,1,151,3,151,3793,8,151,1,151,1,151,1,151, - 3,151,3798,8,151,1,151,1,151,1,151,1,151,1,151,3,151,3805,8,151, - 1,151,1,151,1,151,3,151,3810,8,151,1,151,1,151,1,151,1,151,1,151, - 3,151,3817,8,151,1,151,1,151,3,151,3821,8,151,1,151,1,151,1,151, - 1,151,5,151,3827,8,151,10,151,12,151,3830,9,151,1,151,3,151,3833, - 8,151,3,151,3835,8,151,1,152,3,152,3838,8,152,1,152,1,152,1,152, - 3,152,3843,8,152,1,152,1,152,1,152,1,152,1,152,1,152,1,152,1,152, - 3,152,3853,8,152,1,153,1,153,1,153,1,153,1,153,1,153,1,153,1,153, - 1,153,1,153,1,153,1,153,1,153,3,153,3868,8,153,1,153,3,153,3871, - 8,153,1,153,1,153,1,153,1,153,1,153,1,153,3,153,3879,8,153,1,154, - 1,154,1,154,5,154,3884,8,154,10,154,12,154,3887,9,154,1,155,1,155, - 3,155,3891,8,155,1,156,1,156,4,156,3895,8,156,11,156,12,156,3896, - 1,157,1,157,3,157,3901,8,157,1,157,1,157,1,157,5,157,3906,8,157, - 10,157,12,157,3909,9,157,1,157,1,157,3,157,3913,8,157,1,157,3,157, - 3916,8,157,1,158,3,158,3919,8,158,1,158,1,158,3,158,3923,8,158,1, - 159,1,159,1,159,1,159,1,159,1,159,1,159,3,159,3932,8,159,1,159,1, + 1,103,1,103,1,103,1,103,1,103,1,103,1,103,3,103,2869,8,103,1,104, + 1,104,1,104,1,104,1,104,1,104,4,104,2877,8,104,11,104,12,104,2878, + 3,104,2881,8,104,1,104,3,104,2884,8,104,1,105,1,105,3,105,2888,8, + 105,1,105,1,105,3,105,2892,8,105,1,106,1,106,1,106,1,106,1,106,1, + 106,4,106,2900,8,106,11,106,12,106,2901,3,106,2904,8,106,1,106,1, + 106,4,106,2908,8,106,11,106,12,106,2909,3,106,2912,8,106,1,107,1, + 107,1,107,1,107,1,107,5,107,2919,8,107,10,107,12,107,2922,9,107, + 1,107,1,107,1,108,1,108,1,108,1,108,1,108,5,108,2931,8,108,10,108, + 12,108,2934,9,108,1,108,1,108,1,109,1,109,1,109,1,110,1,110,1,110, + 1,111,1,111,1,111,3,111,2947,8,111,1,111,1,111,1,111,3,111,2952, + 8,111,1,111,3,111,2955,8,111,1,111,1,111,1,111,1,111,1,111,3,111, + 2962,8,111,1,112,1,112,1,112,3,112,2967,8,112,1,113,1,113,1,113, + 1,113,1,113,1,113,3,113,2975,8,113,3,113,2977,8,113,1,114,1,114, + 1,114,1,114,3,114,2983,8,114,1,114,1,114,1,114,3,114,2988,8,114, + 1,114,1,114,3,114,2992,8,114,1,114,1,114,1,114,3,114,2997,8,114, + 1,114,1,114,1,114,1,114,3,114,3003,8,114,1,114,1,114,1,114,1,114, + 1,114,3,114,3010,8,114,1,114,1,114,1,114,1,114,3,114,3016,8,114, + 3,114,3018,8,114,1,115,1,115,1,115,1,115,1,115,1,115,1,115,3,115, + 3027,8,115,1,115,1,115,1,115,1,115,3,115,3033,8,115,1,115,1,115, + 1,115,1,115,1,115,1,115,3,115,3041,8,115,1,116,1,116,1,116,1,116, + 3,116,3047,8,116,1,116,1,116,1,116,3,116,3052,8,116,1,116,1,116, + 1,116,3,116,3057,8,116,1,117,1,117,1,117,1,117,1,117,1,117,3,117, + 3065,8,117,1,117,1,117,1,117,1,117,1,118,1,118,1,118,1,118,1,118, + 1,118,1,118,1,118,1,118,3,118,3080,8,118,3,118,3082,8,118,1,118, + 1,118,3,118,3086,8,118,1,118,1,118,3,118,3090,8,118,1,118,3,118, + 3093,8,118,1,118,3,118,3096,8,118,1,119,1,119,1,119,1,119,1,119, + 1,119,1,119,3,119,3105,8,119,1,119,3,119,3108,8,119,1,119,3,119, + 3111,8,119,1,120,1,120,1,120,1,120,3,120,3117,8,120,1,120,1,120, + 5,120,3121,8,120,10,120,12,120,3124,9,120,1,120,3,120,3127,8,120, + 1,120,1,120,1,120,1,120,1,120,1,120,1,120,1,120,1,120,1,120,3,120, + 3139,8,120,1,120,1,120,1,120,1,120,3,120,3145,8,120,1,121,3,121, + 3148,8,121,1,121,1,121,1,121,3,121,3153,8,121,1,121,1,121,3,121, + 3157,8,121,1,121,1,121,1,121,1,121,1,121,3,121,3164,8,121,1,121, + 1,121,1,121,1,121,1,121,1,121,1,121,1,121,3,121,3174,8,121,3,121, + 3176,8,121,1,122,1,122,1,122,1,122,1,122,1,123,1,123,1,123,1,123, + 1,123,1,123,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124,1,124, + 1,125,1,125,3,125,3200,8,125,1,125,1,125,1,125,1,125,1,125,1,125, + 1,125,1,125,1,125,1,125,3,125,3212,8,125,1,125,4,125,3215,8,125, + 11,125,12,125,3216,3,125,3219,8,125,1,125,1,125,3,125,3223,8,125, + 1,125,3,125,3226,8,125,1,125,3,125,3229,8,125,1,125,1,125,1,125, + 1,125,1,125,1,125,1,125,1,125,3,125,3239,8,125,1,125,3,125,3242, + 8,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,3,125,3252, + 8,125,1,125,5,125,3255,8,125,10,125,12,125,3258,9,125,1,125,1,125, + 3,125,3262,8,125,1,125,3,125,3265,8,125,1,125,3,125,3268,8,125,1, + 125,1,125,1,125,1,125,1,125,1,125,3,125,3276,8,125,1,126,1,126,1, + 126,1,126,3,126,3282,8,126,1,127,1,127,1,127,5,127,3287,8,127,10, + 127,12,127,3290,9,127,1,128,1,128,1,128,1,128,1,128,3,128,3297,8, + 128,1,128,3,128,3300,8,128,1,129,1,129,1,129,1,129,1,129,1,130,1, + 130,1,130,1,130,3,130,3311,8,130,1,131,1,131,3,131,3315,8,131,1, + 131,1,131,5,131,3319,8,131,10,131,12,131,3322,9,131,1,132,1,132, + 1,132,1,132,3,132,3328,8,132,1,133,3,133,3331,8,133,1,133,1,133, + 1,133,1,133,1,133,1,133,1,133,3,133,3340,8,133,1,134,1,134,1,134, + 1,134,1,134,1,134,1,134,1,134,1,134,1,134,5,134,3352,8,134,10,134, + 12,134,3355,9,134,3,134,3357,8,134,1,134,1,134,1,134,1,134,1,134, + 1,135,1,135,1,135,1,135,1,135,5,135,3369,8,135,10,135,12,135,3372, + 9,135,1,135,1,135,1,136,1,136,1,136,1,136,1,136,1,136,3,136,3382, + 8,136,1,136,3,136,3385,8,136,1,137,1,137,1,137,1,137,1,137,1,137, + 1,137,1,137,5,137,3395,8,137,10,137,12,137,3398,9,137,1,138,1,138, + 3,138,3402,8,138,1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,138, + 1,138,5,138,3413,8,138,10,138,12,138,3416,9,138,1,138,1,138,3,138, + 3420,8,138,1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,138, + 1,138,1,138,3,138,3433,8,138,1,138,1,138,1,138,1,138,1,138,5,138, + 3440,8,138,10,138,12,138,3443,9,138,3,138,3445,8,138,1,138,3,138, + 3448,8,138,1,138,1,138,1,138,1,138,1,138,3,138,3455,8,138,1,138, + 3,138,3458,8,138,1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,138, + 1,138,1,138,3,138,3470,8,138,1,138,1,138,1,138,1,138,3,138,3476, + 8,138,3,138,3478,8,138,1,139,1,139,1,139,1,139,5,139,3484,8,139, + 10,139,12,139,3487,9,139,1,139,1,139,1,140,1,140,1,140,3,140,3494, + 8,140,1,141,1,141,1,141,1,141,1,141,1,141,3,141,3502,8,141,1,142, + 1,142,1,142,1,142,1,143,1,143,1,143,1,143,1,143,1,143,3,143,3514, + 8,143,1,143,1,143,1,143,3,143,3519,8,143,1,143,1,143,1,143,1,143, + 1,143,1,143,1,143,1,143,1,143,3,143,3530,8,143,1,144,1,144,1,144, + 1,144,1,145,1,145,1,145,1,145,1,145,3,145,3541,8,145,1,145,1,145, + 1,145,1,145,1,145,1,145,3,145,3549,8,145,1,145,1,145,1,145,1,145, + 5,145,3555,8,145,10,145,12,145,3558,9,145,1,146,1,146,1,146,1,146, + 3,146,3564,8,146,1,146,1,146,1,146,1,146,1,146,3,146,3571,8,146, + 3,146,3573,8,146,1,146,3,146,3576,8,146,1,146,1,146,1,146,3,146, + 3581,8,146,1,146,1,146,1,146,3,146,3586,8,146,1,147,1,147,1,147, + 1,147,1,147,1,147,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148, + 1,148,5,148,3603,8,148,10,148,12,148,3606,9,148,1,148,1,148,1,148, + 1,148,5,148,3612,8,148,10,148,12,148,3615,9,148,3,148,3617,8,148, + 1,149,1,149,1,149,1,149,1,150,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,1,151,1,151, + 1,151,1,151,1,151,3,151,3644,8,151,1,151,1,151,1,151,1,151,1,151, + 1,151,1,151,3,151,3653,8,151,1,151,3,151,3656,8,151,1,151,1,151, + 3,151,3660,8,151,1,151,1,151,3,151,3664,8,151,1,151,1,151,3,151, + 3668,8,151,1,151,1,151,1,151,5,151,3673,8,151,10,151,12,151,3676, + 9,151,1,151,3,151,3679,8,151,1,151,1,151,3,151,3683,8,151,1,151, + 1,151,3,151,3687,8,151,1,151,1,151,3,151,3691,8,151,1,151,1,151, + 1,151,3,151,3696,8,151,1,151,1,151,3,151,3700,8,151,1,151,1,151, + 1,151,3,151,3705,8,151,1,151,1,151,1,151,1,151,3,151,3711,8,151, + 1,151,1,151,1,151,3,151,3716,8,151,1,151,1,151,1,151,5,151,3721, + 8,151,10,151,12,151,3724,9,151,1,151,3,151,3727,8,151,1,151,1,151, + 1,151,1,151,3,151,3733,8,151,1,151,1,151,3,151,3737,8,151,1,151, + 1,151,1,151,3,151,3742,8,151,1,151,1,151,1,151,1,151,1,151,1,151, + 3,151,3750,8,151,1,151,1,151,1,151,1,151,3,151,3756,8,151,1,151, + 1,151,1,151,3,151,3761,8,151,1,151,1,151,1,151,1,151,1,151,3,151, + 3768,8,151,1,151,1,151,1,151,3,151,3773,8,151,1,151,1,151,3,151, + 3777,8,151,1,151,1,151,1,151,3,151,3782,8,151,1,151,1,151,1,151, + 1,151,3,151,3788,8,151,1,151,1,151,1,151,1,151,1,151,3,151,3795, + 8,151,1,151,1,151,1,151,3,151,3800,8,151,1,151,1,151,1,151,1,151, + 1,151,3,151,3807,8,151,1,151,1,151,1,151,3,151,3812,8,151,1,151, + 1,151,1,151,1,151,1,151,3,151,3819,8,151,1,151,1,151,3,151,3823, + 8,151,1,151,1,151,1,151,1,151,5,151,3829,8,151,10,151,12,151,3832, + 9,151,1,151,3,151,3835,8,151,3,151,3837,8,151,1,152,3,152,3840,8, + 152,1,152,1,152,1,152,3,152,3845,8,152,1,152,1,152,1,152,1,152,1, + 152,1,152,1,152,1,152,3,152,3855,8,152,1,153,1,153,1,153,1,153,1, + 153,1,153,1,153,1,153,1,153,1,153,1,153,1,153,1,153,3,153,3870,8, + 153,1,153,3,153,3873,8,153,1,153,1,153,1,153,1,153,1,153,1,153,3, + 153,3881,8,153,1,154,1,154,1,154,5,154,3886,8,154,10,154,12,154, + 3889,9,154,1,155,1,155,3,155,3893,8,155,1,156,1,156,4,156,3897,8, + 156,11,156,12,156,3898,1,157,1,157,3,157,3903,8,157,1,157,1,157, + 1,157,5,157,3908,8,157,10,157,12,157,3911,9,157,1,157,1,157,3,157, + 3915,8,157,1,157,3,157,3918,8,157,1,158,3,158,3921,8,158,1,158,1, + 158,3,158,3925,8,158,1,159,1,159,1,159,1,159,1,159,1,159,1,159,3, + 159,3934,8,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159,1, + 159,1,159,1,159,1,159,1,159,1,159,1,159,1,159,3,159,3952,8,159,1, + 159,3,159,3955,8,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159,1, 159,1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159, - 1,159,1,159,1,159,1,159,3,159,3950,8,159,1,159,3,159,3953,8,159, - 1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159, 1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159, - 1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,159,3,159,3985,8,159, - 1,159,1,159,1,159,3,159,3990,8,159,1,160,1,160,1,160,1,160,3,160, - 3996,8,160,1,160,1,160,1,160,1,160,1,160,1,160,1,160,1,160,1,160, - 1,160,1,160,1,160,1,160,1,160,1,160,1,160,1,160,1,160,3,160,4016, - 8,160,1,160,1,160,1,160,3,160,4021,8,160,1,161,1,161,1,161,1,162, - 3,162,4027,8,162,1,162,3,162,4030,8,162,1,162,1,162,3,162,4034,8, - 162,1,162,1,162,3,162,4038,8,162,1,162,1,162,1,162,1,162,3,162,4044, - 8,162,1,162,3,162,4047,8,162,1,162,1,162,3,162,4051,8,162,1,162, - 1,162,3,162,4055,8,162,1,162,1,162,1,162,3,162,4060,8,162,1,162, - 3,162,4063,8,162,1,162,3,162,4066,8,162,1,162,3,162,4069,8,162,1, - 163,1,163,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164, - 3,164,4082,8,164,1,165,1,165,1,165,1,165,3,165,4088,8,165,1,165, - 1,165,1,165,1,165,1,165,1,165,3,165,4096,8,165,1,166,1,166,1,166, - 5,166,4101,8,166,10,166,12,166,4104,9,166,1,166,1,166,3,166,4108, - 8,166,1,166,3,166,4111,8,166,1,166,1,166,1,166,5,166,4116,8,166, - 10,166,12,166,4119,9,166,3,166,4121,8,166,1,167,1,167,1,168,1,168, - 1,168,1,168,3,168,4129,8,168,1,168,3,168,4132,8,168,1,169,1,169, - 1,169,3,169,4137,8,169,1,169,1,169,1,169,1,169,1,169,3,169,4144, - 8,169,1,169,3,169,4147,8,169,1,169,1,169,1,169,1,169,1,169,1,169, - 1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,5,169, - 4165,8,169,10,169,12,169,4168,9,169,1,169,1,169,1,169,1,169,1,169, - 1,169,1,169,1,169,1,169,3,169,4179,8,169,1,170,3,170,4182,8,170, - 1,170,1,170,1,170,1,170,3,170,4188,8,170,1,170,5,170,4191,8,170, - 10,170,12,170,4194,9,170,1,171,1,171,1,171,1,171,5,171,4200,8,171, - 10,171,12,171,4203,9,171,1,171,1,171,1,171,1,171,1,171,3,171,4210, - 8,171,1,171,1,171,1,171,3,171,4215,8,171,1,172,1,172,1,172,1,172, - 3,172,4221,8,172,1,172,1,172,1,172,5,172,4226,8,172,10,172,12,172, - 4229,9,172,1,172,1,172,1,172,1,172,1,172,3,172,4236,8,172,1,172, - 3,172,4239,8,172,1,173,1,173,1,173,1,173,1,173,1,173,1,173,1,173, - 1,173,5,173,4250,8,173,10,173,12,173,4253,9,173,1,173,1,173,1,174, - 1,174,1,174,1,174,1,174,1,174,1,174,1,174,1,174,3,174,4266,8,174, - 1,174,1,174,1,174,1,174,3,174,4272,8,174,1,174,1,174,1,174,1,174, - 1,174,1,174,3,174,4280,8,174,3,174,4282,8,174,1,175,1,175,1,176, - 1,176,3,176,4288,8,176,1,176,1,176,3,176,4292,8,176,1,176,3,176, - 4295,8,176,1,176,3,176,4298,8,176,1,176,1,176,1,176,3,176,4303,8, - 176,1,176,1,176,1,176,3,176,4308,8,176,1,176,1,176,3,176,4312,8, - 176,1,176,3,176,4315,8,176,1,176,3,176,4318,8,176,1,176,3,176,4321, - 8,176,1,176,3,176,4324,8,176,1,177,1,177,1,177,1,177,5,177,4330, - 8,177,10,177,12,177,4333,9,177,1,177,1,177,1,178,1,178,1,178,1,178, - 1,178,1,178,3,178,4343,8,178,1,178,3,178,4346,8,178,1,178,3,178, - 4349,8,178,1,178,1,178,1,178,3,178,4354,8,178,1,178,3,178,4357,8, - 178,1,178,1,178,3,178,4361,8,178,1,179,1,179,3,179,4365,8,179,1, - 179,1,179,1,179,1,179,3,179,4371,8,179,1,179,1,179,1,179,1,179,5, - 179,4377,8,179,10,179,12,179,4380,9,179,3,179,4382,8,179,1,179,1, - 179,1,179,1,179,1,179,1,179,1,179,1,179,1,179,5,179,4393,8,179,10, - 179,12,179,4396,9,179,1,179,1,179,3,179,4400,8,179,3,179,4402,8, - 179,1,179,4,179,4405,8,179,11,179,12,179,4406,1,179,1,179,1,179, - 1,179,1,179,3,179,4414,8,179,1,180,1,180,1,180,1,181,1,181,3,181, - 4421,8,181,1,181,1,181,1,182,1,182,1,182,5,182,4428,8,182,10,182, - 12,182,4431,9,182,1,183,1,183,1,183,5,183,4436,8,183,10,183,12,183, - 4439,9,183,1,184,1,184,1,184,1,184,1,184,3,184,4446,8,184,1,185, - 1,185,1,185,5,185,4451,8,185,10,185,12,185,4454,9,185,1,186,1,186, - 1,186,1,186,1,186,3,186,4461,8,186,1,187,1,187,1,187,5,187,4466, - 8,187,10,187,12,187,4469,9,187,1,188,1,188,1,188,1,188,1,188,3,188, - 4476,8,188,1,189,1,189,3,189,4480,8,189,1,189,1,189,3,189,4484,8, - 189,3,189,4486,8,189,1,189,1,189,1,190,1,190,3,190,4492,8,190,1, - 190,1,190,1,190,3,190,4497,8,190,1,191,1,191,3,191,4501,8,191,1, - 191,1,191,1,191,1,191,1,191,3,191,4508,8,191,1,192,1,192,1,192,3, - 192,4513,8,192,1,193,1,193,1,193,3,193,4518,8,193,1,193,1,193,1, - 193,3,193,4523,8,193,3,193,4525,8,193,1,193,1,193,1,194,1,194,1, - 194,1,195,1,195,1,195,3,195,4535,8,195,1,195,1,195,1,195,1,195,1, - 195,1,195,1,195,1,195,3,195,4545,8,195,1,195,1,195,1,195,1,195,1, - 195,1,195,1,195,1,195,1,195,1,195,1,195,1,195,1,195,1,195,3,195, - 4561,8,195,1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196, - 1,196,1,196,1,196,1,196,1,196,5,196,4577,8,196,10,196,12,196,4580, - 9,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,3,196, - 4591,8,196,1,196,1,196,1,196,1,196,1,196,3,196,4598,8,196,1,197, - 1,197,1,197,1,198,1,198,1,198,1,199,1,199,1,199,1,199,1,199,1,199, - 1,199,3,199,4613,8,199,1,199,4,199,4616,8,199,11,199,12,199,4617, - 1,199,3,199,4621,8,199,1,200,1,200,1,200,3,200,4626,8,200,1,200, - 1,200,1,200,3,200,4631,8,200,1,200,1,200,1,200,3,200,4636,8,200, - 1,200,3,200,4639,8,200,1,200,3,200,4642,8,200,1,201,1,201,1,201, - 3,201,4647,8,201,1,201,1,201,1,201,5,201,4652,8,201,10,201,12,201, - 4655,9,201,1,201,3,201,4658,8,201,1,202,1,202,1,202,3,202,4663,8, - 202,1,202,1,202,1,202,5,202,4668,8,202,10,202,12,202,4671,9,202, - 1,202,3,202,4674,8,202,1,203,1,203,1,203,1,203,3,203,4680,8,203, - 1,203,1,203,1,203,1,203,1,203,1,203,1,203,3,203,4689,8,203,1,203, - 1,203,1,204,1,204,1,204,5,204,4696,8,204,10,204,12,204,4699,9,204, - 1,204,1,204,1,205,1,205,1,205,1,206,1,206,1,206,1,206,4,206,4710, - 8,206,11,206,12,206,4711,1,207,1,207,1,207,1,207,1,207,1,207,1,207, - 1,207,1,207,1,207,1,207,3,207,4725,8,207,1,207,1,207,1,207,1,207, - 3,207,4731,8,207,1,207,1,207,3,207,4735,8,207,3,207,4737,8,207,1, - 208,1,208,1,208,1,209,1,209,3,209,4744,8,209,1,209,1,209,1,209,1, - 209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,3,209,4757,8,209,1, - 209,1,209,1,209,1,209,1,209,3,209,4764,8,209,3,209,4766,8,209,1, - 209,1,209,1,210,1,210,1,210,1,210,1,210,1,211,1,211,1,211,1,211, - 1,211,5,211,4780,8,211,10,211,12,211,4783,9,211,1,211,3,211,4786, - 8,211,1,211,1,211,3,211,4790,8,211,1,211,1,211,1,211,3,211,4795, - 8,211,1,211,1,211,1,211,3,211,4800,8,211,1,211,1,211,1,211,3,211, - 4805,8,211,1,211,1,211,1,211,3,211,4810,8,211,1,211,3,211,4813,8, - 211,1,212,1,212,1,212,1,212,1,212,1,213,1,213,1,213,1,213,1,213, - 3,213,4825,8,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213, + 1,159,3,159,3987,8,159,1,159,1,159,1,159,3,159,3992,8,159,1,160, + 1,160,1,160,1,160,3,160,3998,8,160,1,160,1,160,1,160,1,160,1,160, + 1,160,1,160,1,160,1,160,1,160,1,160,1,160,1,160,1,160,1,160,1,160, + 1,160,1,160,3,160,4018,8,160,1,160,1,160,1,160,3,160,4023,8,160, + 1,161,1,161,1,161,1,162,3,162,4029,8,162,1,162,3,162,4032,8,162, + 1,162,1,162,3,162,4036,8,162,1,162,1,162,3,162,4040,8,162,1,162, + 1,162,1,162,1,162,3,162,4046,8,162,1,162,3,162,4049,8,162,1,162, + 1,162,3,162,4053,8,162,1,162,1,162,3,162,4057,8,162,1,162,1,162, + 1,162,3,162,4062,8,162,1,162,3,162,4065,8,162,1,162,3,162,4068,8, + 162,1,162,3,162,4071,8,162,1,163,1,163,1,164,1,164,1,164,1,164,1, + 164,1,164,1,164,1,164,1,164,3,164,4084,8,164,1,165,1,165,1,165,1, + 165,3,165,4090,8,165,1,165,1,165,1,165,1,165,1,165,1,165,3,165,4098, + 8,165,1,166,1,166,1,166,5,166,4103,8,166,10,166,12,166,4106,9,166, + 1,166,1,166,3,166,4110,8,166,1,166,3,166,4113,8,166,1,166,1,166, + 1,166,5,166,4118,8,166,10,166,12,166,4121,9,166,3,166,4123,8,166, + 1,167,1,167,1,168,1,168,1,168,1,168,3,168,4131,8,168,1,168,3,168, + 4134,8,168,1,169,1,169,1,169,3,169,4139,8,169,1,169,1,169,1,169, + 1,169,1,169,3,169,4146,8,169,1,169,3,169,4149,8,169,1,169,1,169, + 1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169, + 1,169,1,169,1,169,5,169,4167,8,169,10,169,12,169,4170,9,169,1,169, + 1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,3,169,4181,8,169, + 1,170,3,170,4184,8,170,1,170,1,170,1,170,1,170,3,170,4190,8,170, + 1,170,5,170,4193,8,170,10,170,12,170,4196,9,170,1,171,1,171,1,171, + 1,171,5,171,4202,8,171,10,171,12,171,4205,9,171,1,171,1,171,1,171, + 1,171,1,171,3,171,4212,8,171,1,171,1,171,1,171,3,171,4217,8,171, + 1,172,1,172,1,172,1,172,3,172,4223,8,172,1,172,1,172,1,172,5,172, + 4228,8,172,10,172,12,172,4231,9,172,1,172,1,172,1,172,1,172,1,172, + 3,172,4238,8,172,1,172,3,172,4241,8,172,1,173,1,173,1,173,1,173, + 1,173,1,173,1,173,1,173,1,173,5,173,4252,8,173,10,173,12,173,4255, + 9,173,1,173,1,173,1,174,1,174,1,174,1,174,1,174,1,174,1,174,1,174, + 1,174,3,174,4268,8,174,1,174,1,174,1,174,1,174,3,174,4274,8,174, + 1,174,1,174,1,174,1,174,1,174,1,174,3,174,4282,8,174,3,174,4284, + 8,174,1,175,1,175,1,176,1,176,3,176,4290,8,176,1,176,1,176,3,176, + 4294,8,176,1,176,3,176,4297,8,176,1,176,3,176,4300,8,176,1,176,1, + 176,1,176,3,176,4305,8,176,1,176,1,176,1,176,3,176,4310,8,176,1, + 176,1,176,3,176,4314,8,176,1,176,3,176,4317,8,176,1,176,3,176,4320, + 8,176,1,176,3,176,4323,8,176,1,176,3,176,4326,8,176,1,177,1,177, + 1,177,1,177,5,177,4332,8,177,10,177,12,177,4335,9,177,1,177,1,177, + 1,178,1,178,1,178,1,178,1,178,1,178,3,178,4345,8,178,1,178,3,178, + 4348,8,178,1,178,3,178,4351,8,178,1,178,1,178,1,178,3,178,4356,8, + 178,1,178,3,178,4359,8,178,1,178,1,178,3,178,4363,8,178,1,179,1, + 179,3,179,4367,8,179,1,179,1,179,1,179,1,179,3,179,4373,8,179,1, + 179,1,179,1,179,1,179,5,179,4379,8,179,10,179,12,179,4382,9,179, + 3,179,4384,8,179,1,179,1,179,1,179,1,179,1,179,1,179,1,179,1,179, + 1,179,5,179,4395,8,179,10,179,12,179,4398,9,179,1,179,1,179,3,179, + 4402,8,179,3,179,4404,8,179,1,179,4,179,4407,8,179,11,179,12,179, + 4408,1,179,1,179,1,179,1,179,1,179,3,179,4416,8,179,1,180,1,180, + 1,180,1,181,1,181,3,181,4423,8,181,1,181,1,181,1,182,1,182,1,182, + 5,182,4430,8,182,10,182,12,182,4433,9,182,1,183,1,183,1,183,5,183, + 4438,8,183,10,183,12,183,4441,9,183,1,184,1,184,1,184,1,184,1,184, + 3,184,4448,8,184,1,185,1,185,1,185,5,185,4453,8,185,10,185,12,185, + 4456,9,185,1,186,1,186,1,186,1,186,1,186,3,186,4463,8,186,1,187, + 1,187,1,187,5,187,4468,8,187,10,187,12,187,4471,9,187,1,188,1,188, + 1,188,1,188,1,188,3,188,4478,8,188,1,189,1,189,3,189,4482,8,189, + 1,189,1,189,3,189,4486,8,189,3,189,4488,8,189,1,189,1,189,1,190, + 1,190,3,190,4494,8,190,1,190,1,190,1,190,3,190,4499,8,190,1,191, + 1,191,3,191,4503,8,191,1,191,1,191,1,191,1,191,1,191,3,191,4510, + 8,191,1,192,1,192,1,192,3,192,4515,8,192,1,193,1,193,1,193,3,193, + 4520,8,193,1,193,1,193,1,193,3,193,4525,8,193,3,193,4527,8,193,1, + 193,1,193,1,194,1,194,1,194,1,195,1,195,1,195,3,195,4537,8,195,1, + 195,1,195,1,195,1,195,1,195,1,195,1,195,1,195,3,195,4547,8,195,1, + 195,1,195,1,195,1,195,1,195,1,195,1,195,1,195,1,195,1,195,1,195, + 1,195,1,195,1,195,3,195,4563,8,195,1,196,1,196,1,196,1,196,1,196, + 1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,5,196,4579, + 8,196,10,196,12,196,4582,9,196,1,196,1,196,1,196,1,196,1,196,1,196, + 1,196,1,196,1,196,3,196,4593,8,196,1,196,1,196,1,196,1,196,1,196, + 3,196,4600,8,196,1,197,1,197,1,197,1,198,1,198,1,198,1,199,1,199, + 1,199,1,199,1,199,1,199,1,199,3,199,4615,8,199,1,199,4,199,4618, + 8,199,11,199,12,199,4619,1,199,3,199,4623,8,199,1,200,1,200,1,200, + 3,200,4628,8,200,1,200,1,200,1,200,3,200,4633,8,200,1,200,1,200, + 1,200,3,200,4638,8,200,1,200,3,200,4641,8,200,1,200,3,200,4644,8, + 200,1,201,1,201,1,201,3,201,4649,8,201,1,201,1,201,1,201,5,201,4654, + 8,201,10,201,12,201,4657,9,201,1,201,3,201,4660,8,201,1,202,1,202, + 1,202,3,202,4665,8,202,1,202,1,202,1,202,5,202,4670,8,202,10,202, + 12,202,4673,9,202,1,202,3,202,4676,8,202,1,203,1,203,1,203,1,203, + 3,203,4682,8,203,1,203,1,203,1,203,1,203,1,203,1,203,1,203,3,203, + 4691,8,203,1,203,1,203,1,204,1,204,1,204,5,204,4698,8,204,10,204, + 12,204,4701,9,204,1,204,1,204,1,205,1,205,1,205,1,206,1,206,1,206, + 1,206,4,206,4712,8,206,11,206,12,206,4713,1,207,1,207,1,207,1,207, + 1,207,1,207,1,207,1,207,1,207,1,207,1,207,3,207,4727,8,207,1,207, + 1,207,1,207,1,207,3,207,4733,8,207,1,207,1,207,3,207,4737,8,207, + 3,207,4739,8,207,1,208,1,208,1,208,1,209,1,209,3,209,4746,8,209, + 1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,209, + 3,209,4759,8,209,1,209,1,209,1,209,1,209,1,209,3,209,4766,8,209, + 3,209,4768,8,209,1,209,1,209,1,210,1,210,1,210,1,210,1,210,1,211, + 1,211,1,211,1,211,1,211,5,211,4782,8,211,10,211,12,211,4785,9,211, + 1,211,3,211,4788,8,211,1,211,1,211,3,211,4792,8,211,1,211,1,211, + 1,211,3,211,4797,8,211,1,211,1,211,1,211,3,211,4802,8,211,1,211, + 1,211,1,211,3,211,4807,8,211,1,211,1,211,1,211,3,211,4812,8,211, + 1,211,3,211,4815,8,211,1,212,1,212,1,212,1,212,1,212,1,213,1,213, + 1,213,1,213,1,213,3,213,4827,8,213,1,213,1,213,1,213,1,213,1,213, + 1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213, + 1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213, 1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213, 1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213, + 1,213,1,213,3,213,4880,8,213,1,213,1,213,1,213,1,213,1,213,1,213, + 1,213,3,213,4889,8,213,1,213,1,213,3,213,4893,8,213,1,213,1,213, + 1,213,1,213,1,213,1,213,1,213,3,213,4902,8,213,1,213,1,213,3,213, + 4906,8,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,3,213,4915, + 8,213,1,213,1,213,3,213,4919,8,213,1,213,1,213,1,213,3,213,4924, + 8,213,1,213,3,213,4927,8,213,1,213,1,213,3,213,4931,8,213,1,213, + 1,213,1,213,3,213,4936,8,213,3,213,4938,8,213,1,213,1,213,1,213, + 1,213,1,213,1,213,1,213,3,213,4947,8,213,1,213,1,213,1,213,3,213, + 4952,8,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213, + 3,213,4963,8,213,1,213,1,213,3,213,4967,8,213,1,213,1,213,1,213, + 1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,3,213,4981, + 8,213,1,213,1,213,1,213,1,213,1,213,1,213,3,213,4989,8,213,1,213, 1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213, - 1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,3,213, - 4878,8,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,3,213,4887, - 8,213,1,213,1,213,3,213,4891,8,213,1,213,1,213,1,213,1,213,1,213, - 1,213,1,213,3,213,4900,8,213,1,213,1,213,3,213,4904,8,213,1,213, - 1,213,1,213,1,213,1,213,1,213,1,213,3,213,4913,8,213,1,213,1,213, - 3,213,4917,8,213,1,213,1,213,1,213,3,213,4922,8,213,1,213,3,213, - 4925,8,213,1,213,1,213,3,213,4929,8,213,1,213,1,213,1,213,3,213, - 4934,8,213,3,213,4936,8,213,1,213,1,213,1,213,1,213,1,213,1,213, - 1,213,3,213,4945,8,213,1,213,1,213,1,213,3,213,4950,8,213,1,213, - 1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,3,213,4961,8,213, - 1,213,1,213,3,213,4965,8,213,1,213,1,213,1,213,1,213,1,213,1,213, - 1,213,1,213,1,213,1,213,1,213,1,213,3,213,4979,8,213,1,213,1,213, - 1,213,1,213,1,213,1,213,3,213,4987,8,213,1,213,1,213,1,213,1,213, 1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213, 1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213, - 1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,1,213,3,213, - 5025,8,213,3,213,5027,8,213,1,214,1,214,1,214,1,214,1,214,1,214, + 1,213,1,213,3,213,5027,8,213,3,213,5029,8,213,1,214,1,214,1,214, 1,214,1,214,1,214,1,214,1,214,1,214,1,214,1,214,1,214,1,214,1,214, - 3,214,5046,8,214,1,214,3,214,5049,8,214,1,214,1,214,1,214,1,214, - 1,214,1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215, - 1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215,3,215, - 5076,8,215,1,215,1,215,3,215,5080,8,215,1,215,1,215,3,215,5084,8, - 215,1,215,1,215,3,215,5088,8,215,1,215,1,215,3,215,5092,8,215,1, - 215,3,215,5095,8,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215,1, - 215,1,215,1,215,1,215,1,215,1,215,3,215,5110,8,215,1,215,1,215,1, - 215,1,215,1,215,3,215,5117,8,215,1,216,1,216,1,216,1,216,1,216,1, - 216,1,217,1,217,1,217,1,217,5,217,5129,8,217,10,217,12,217,5132, - 9,217,1,217,1,217,1,218,1,218,1,218,1,218,1,218,1,218,1,218,1,218, - 3,218,5144,8,218,1,219,1,219,1,219,1,219,1,219,1,219,1,220,1,220, + 1,214,1,214,1,214,3,214,5048,8,214,1,214,3,214,5051,8,214,1,214, + 1,214,1,214,1,214,1,214,1,215,1,215,1,215,1,215,1,215,1,215,1,215, + 1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215, + 1,215,1,215,3,215,5078,8,215,1,215,1,215,3,215,5082,8,215,1,215, + 1,215,3,215,5086,8,215,1,215,1,215,3,215,5090,8,215,1,215,1,215, + 3,215,5094,8,215,1,215,3,215,5097,8,215,1,215,1,215,1,215,1,215, + 1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215,1,215,3,215,5112, + 8,215,1,215,1,215,1,215,1,215,1,215,3,215,5119,8,215,1,216,1,216, + 1,216,1,216,1,216,1,216,1,217,1,217,1,217,1,217,5,217,5131,8,217, + 10,217,12,217,5134,9,217,1,217,1,217,1,218,1,218,1,218,1,218,1,218, + 1,218,1,218,1,218,3,218,5146,8,218,1,219,1,219,1,219,1,219,1,219, + 1,219,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220, + 1,220,1,220,1,220,1,220,1,220,1,220,1,220,3,220,5171,8,220,1,220, 1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220, - 1,220,1,220,1,220,1,220,3,220,5169,8,220,1,220,1,220,1,220,1,220, - 1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220, - 1,220,1,220,3,220,5188,8,220,1,220,1,220,1,220,1,220,1,220,1,220, - 1,220,1,220,1,220,1,220,1,220,1,220,1,220,3,220,5203,8,220,1,220, - 1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220, - 1,220,1,220,3,220,5219,8,220,1,220,1,220,1,220,1,220,1,220,3,220, - 5226,8,220,1,221,1,221,1,221,1,221,1,221,1,221,1,221,1,221,1,221, - 3,221,5237,8,221,1,221,3,221,5240,8,221,1,222,1,222,1,222,1,222, + 1,220,1,220,1,220,1,220,1,220,3,220,5190,8,220,1,220,1,220,1,220, + 1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,3,220, + 5205,8,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220,1,220, + 1,220,1,220,1,220,1,220,1,220,3,220,5221,8,220,1,220,1,220,1,220, + 1,220,1,220,3,220,5228,8,220,1,221,1,221,1,221,1,221,1,221,1,221, + 1,221,1,221,1,221,3,221,5239,8,221,1,221,3,221,5242,8,221,1,222, 1,222,1,222,1,222,1,222,1,222,1,222,1,222,1,222,1,222,1,222,1,222, - 5,222,5257,8,222,10,222,12,222,5260,9,222,3,222,5262,8,222,1,223, - 1,223,1,223,1,223,1,223,1,223,1,223,1,223,1,223,5,223,5273,8,223, - 10,223,12,223,5276,9,223,1,223,3,223,5279,8,223,1,224,1,224,1,224, + 1,222,1,222,1,222,5,222,5259,8,222,10,222,12,222,5262,9,222,3,222, + 5264,8,222,1,223,1,223,1,223,1,223,1,223,1,223,1,223,1,223,1,223, + 5,223,5275,8,223,10,223,12,223,5278,9,223,1,223,3,223,5281,8,223, 1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224, - 1,224,1,224,1,224,1,224,3,224,5299,8,224,1,224,1,224,1,224,1,224, - 1,224,1,224,1,224,1,224,5,224,5309,8,224,10,224,12,224,5312,9,224, - 1,224,3,224,5315,8,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224, + 1,224,1,224,1,224,1,224,1,224,1,224,1,224,3,224,5301,8,224,1,224, + 1,224,1,224,1,224,1,224,1,224,1,224,1,224,5,224,5311,8,224,10,224, + 12,224,5314,9,224,1,224,3,224,5317,8,224,1,224,1,224,1,224,1,224, 1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224, - 1,224,1,224,3,224,5337,8,224,1,225,1,225,3,225,5341,8,225,1,225, - 1,225,1,225,1,225,1,225,1,225,1,225,1,225,3,225,5351,8,225,1,225, - 1,225,3,225,5355,8,225,1,225,1,225,1,225,1,225,3,225,5361,8,225, - 1,225,1,225,3,225,5365,8,225,5,225,5367,8,225,10,225,12,225,5370, - 9,225,1,225,3,225,5373,8,225,1,226,1,226,1,226,1,226,1,226,3,226, - 5380,8,226,1,227,1,227,1,227,3,227,5385,8,227,1,228,1,228,1,228, - 1,229,1,229,1,229,1,230,1,230,1,230,3,230,5396,8,230,1,231,1,231, - 3,231,5400,8,231,1,231,3,231,5403,8,231,1,231,1,231,1,231,3,231, - 5408,8,231,1,231,1,231,1,231,1,231,3,231,5414,8,231,1,231,1,231, - 1,231,1,231,1,231,1,231,1,231,1,231,1,231,3,231,5425,8,231,1,231, - 1,231,3,231,5429,8,231,1,231,3,231,5432,8,231,1,231,1,231,3,231, - 5436,8,231,1,231,1,231,3,231,5440,8,231,1,231,3,231,5443,8,231,1, - 232,1,232,1,233,1,233,1,233,1,233,1,233,1,233,3,233,5453,8,233,1, - 233,3,233,5456,8,233,1,234,1,234,3,234,5460,8,234,1,234,5,234,5463, - 8,234,10,234,12,234,5466,9,234,1,235,1,235,1,235,3,235,5471,8,235, - 1,235,3,235,5474,8,235,1,235,1,235,1,235,3,235,5479,8,235,1,235, - 3,235,5482,8,235,1,235,1,235,1,235,1,235,1,235,3,235,5489,8,235, - 3,235,5491,8,235,1,235,1,235,1,235,1,235,3,235,5497,8,235,1,235, - 1,235,3,235,5501,8,235,1,236,1,236,1,236,1,237,1,237,1,237,1,237, - 3,237,5510,8,237,1,237,4,237,5513,8,237,11,237,12,237,5514,3,237, - 5517,8,237,1,238,1,238,1,238,1,238,1,238,1,238,1,238,1,238,3,238, - 5527,8,238,1,238,3,238,5530,8,238,1,238,1,238,1,238,3,238,5535,8, - 238,1,239,1,239,1,239,1,239,1,239,1,239,3,239,5543,8,239,1,239,3, - 239,5546,8,239,1,239,4,239,5549,8,239,11,239,12,239,5550,3,239,5553, - 8,239,3,239,5555,8,239,1,240,1,240,1,240,1,240,3,240,5561,8,240, - 1,241,1,241,1,241,1,241,1,241,1,241,1,242,1,242,1,242,1,242,1,242, - 1,243,1,243,1,243,1,243,3,243,5578,8,243,1,243,1,243,5,243,5582, - 8,243,10,243,12,243,5585,9,243,1,244,1,244,1,244,1,244,1,244,1,244, - 1,244,1,244,1,244,1,244,3,244,5597,8,244,1,244,1,244,1,244,1,244, - 3,244,5603,8,244,1,244,1,244,3,244,5607,8,244,1,244,1,244,1,244, - 3,244,5612,8,244,1,245,1,245,1,245,1,245,1,245,1,245,1,245,1,246, + 1,224,1,224,1,224,1,224,1,224,3,224,5339,8,224,1,225,1,225,3,225, + 5343,8,225,1,225,1,225,1,225,1,225,1,225,1,225,1,225,1,225,3,225, + 5353,8,225,1,225,1,225,3,225,5357,8,225,1,225,1,225,1,225,1,225, + 3,225,5363,8,225,1,225,1,225,3,225,5367,8,225,5,225,5369,8,225,10, + 225,12,225,5372,9,225,1,225,3,225,5375,8,225,1,226,1,226,1,226,1, + 226,1,226,3,226,5382,8,226,1,227,1,227,1,227,3,227,5387,8,227,1, + 228,1,228,1,228,1,229,1,229,1,229,1,230,1,230,1,230,3,230,5398,8, + 230,1,231,1,231,3,231,5402,8,231,1,231,3,231,5405,8,231,1,231,1, + 231,1,231,3,231,5410,8,231,1,231,1,231,1,231,1,231,3,231,5416,8, + 231,1,231,1,231,1,231,1,231,1,231,1,231,1,231,1,231,1,231,3,231, + 5427,8,231,1,231,1,231,3,231,5431,8,231,1,231,3,231,5434,8,231,1, + 231,1,231,3,231,5438,8,231,1,231,1,231,3,231,5442,8,231,1,231,3, + 231,5445,8,231,1,232,1,232,1,233,1,233,1,233,1,233,1,233,1,233,3, + 233,5455,8,233,1,233,3,233,5458,8,233,1,234,1,234,3,234,5462,8,234, + 1,234,5,234,5465,8,234,10,234,12,234,5468,9,234,1,235,1,235,1,235, + 3,235,5473,8,235,1,235,3,235,5476,8,235,1,235,1,235,1,235,3,235, + 5481,8,235,1,235,3,235,5484,8,235,1,235,1,235,1,235,1,235,1,235, + 3,235,5491,8,235,3,235,5493,8,235,1,235,1,235,1,235,1,235,3,235, + 5499,8,235,1,235,1,235,3,235,5503,8,235,1,236,1,236,1,236,1,237, + 1,237,1,237,1,237,3,237,5512,8,237,1,237,4,237,5515,8,237,11,237, + 12,237,5516,3,237,5519,8,237,1,238,1,238,1,238,1,238,1,238,1,238, + 1,238,1,238,3,238,5529,8,238,1,238,3,238,5532,8,238,1,238,1,238, + 1,238,3,238,5537,8,238,1,239,1,239,1,239,1,239,1,239,1,239,3,239, + 5545,8,239,1,239,3,239,5548,8,239,1,239,4,239,5551,8,239,11,239, + 12,239,5552,3,239,5555,8,239,3,239,5557,8,239,1,240,1,240,1,240, + 1,240,3,240,5563,8,240,1,241,1,241,1,241,1,241,1,241,1,241,1,242, + 1,242,1,242,1,242,1,242,1,243,1,243,1,243,1,243,3,243,5580,8,243, + 1,243,1,243,5,243,5584,8,243,10,243,12,243,5587,9,243,1,244,1,244, + 1,244,1,244,1,244,1,244,1,244,1,244,1,244,1,244,3,244,5599,8,244, + 1,244,1,244,1,244,1,244,3,244,5605,8,244,1,244,1,244,3,244,5609, + 8,244,1,244,1,244,1,244,3,244,5614,8,244,1,245,1,245,1,245,1,245, + 1,245,1,245,1,245,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246, 1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246, - 1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,3,246,5642, - 8,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246,1,246, - 1,246,1,246,1,246,3,246,5657,8,246,1,246,1,246,1,246,3,246,5662, - 8,246,1,247,1,247,3,247,5666,8,247,1,247,1,247,1,247,1,247,1,247, - 1,247,1,247,1,247,1,247,1,248,1,248,3,248,5679,8,248,1,248,1,248, - 3,248,5683,8,248,3,248,5685,8,248,1,248,1,248,1,248,1,248,1,248, - 5,248,5692,8,248,10,248,12,248,5695,9,248,1,248,1,248,1,248,3,248, - 5700,8,248,3,248,5702,8,248,1,249,1,249,3,249,5706,8,249,1,249,3, - 249,5709,8,249,1,249,3,249,5712,8,249,1,249,3,249,5715,8,249,1,249, - 3,249,5718,8,249,3,249,5720,8,249,1,249,3,249,5723,8,249,1,250,1, - 250,3,250,5727,8,250,1,250,1,250,1,250,1,250,5,250,5733,8,250,10, - 250,12,250,5736,9,250,1,250,1,250,3,250,5740,8,250,1,250,3,250,5743, - 8,250,1,251,1,251,1,252,1,252,3,252,5749,8,252,1,252,1,252,3,252, - 5753,8,252,1,253,1,253,3,253,5757,8,253,1,253,1,253,1,253,3,253, - 5762,8,253,3,253,5764,8,253,1,254,1,254,3,254,5768,8,254,1,255,1, - 255,3,255,5772,8,255,1,256,1,256,1,256,5,256,5777,8,256,10,256,12, - 256,5780,9,256,1,257,1,257,1,257,3,257,5785,8,257,1,257,1,257,3, - 257,5789,8,257,3,257,5791,8,257,3,257,5793,8,257,1,257,1,257,1,258, - 1,258,1,258,1,258,1,258,1,258,1,258,1,258,1,258,3,258,5806,8,258, - 1,259,1,259,1,259,1,259,5,259,5812,8,259,10,259,12,259,5815,9,259, - 1,259,1,259,1,260,1,260,1,260,3,260,5822,8,260,1,260,1,260,1,260, - 1,261,1,261,1,261,1,261,5,261,5831,8,261,10,261,12,261,5834,9,261, - 1,261,1,261,1,262,1,262,1,262,1,262,1,262,3,262,5843,8,262,1,263, - 1,263,1,263,3,263,5848,8,263,1,263,1,263,3,263,5852,8,263,1,263, - 1,263,3,263,5856,8,263,1,263,1,263,1,263,1,263,1,263,3,263,5863, - 8,263,1,263,3,263,5866,8,263,3,263,5868,8,263,1,264,1,264,1,264, - 1,264,1,265,1,265,3,265,5876,8,265,1,265,1,265,3,265,5880,8,265, - 1,266,3,266,5883,8,266,1,266,1,266,1,266,1,266,1,266,3,266,5890, - 8,266,1,266,1,266,1,266,1,266,1,266,3,266,5897,8,266,1,266,1,266, - 1,266,3,266,5902,8,266,1,266,1,266,1,266,1,266,1,266,3,266,5909, - 8,266,1,266,3,266,5912,8,266,3,266,5914,8,266,1,266,3,266,5917,8, - 266,1,267,1,267,1,267,1,267,3,267,5923,8,267,1,267,1,267,1,267,3, - 267,5928,8,267,1,267,1,267,3,267,5932,8,267,1,268,1,268,1,268,5, - 268,5937,8,268,10,268,12,268,5940,9,268,1,269,1,269,1,269,1,270, - 1,270,1,270,1,271,3,271,5949,8,271,1,271,1,271,1,271,1,271,1,271, - 3,271,5956,8,271,1,271,3,271,5959,8,271,1,271,3,271,5962,8,271,1, - 272,1,272,3,272,5966,8,272,1,272,1,272,1,272,1,272,1,272,1,272,1, - 272,1,272,1,272,3,272,5977,8,272,1,272,3,272,5980,8,272,1,272,3, - 272,5983,8,272,1,272,3,272,5986,8,272,1,273,3,273,5989,8,273,1,273, - 1,273,1,273,1,273,1,273,3,273,5996,8,273,1,273,3,273,5999,8,273, - 1,273,3,273,6002,8,273,1,274,1,274,1,274,5,274,6007,8,274,10,274, - 12,274,6010,9,274,1,275,1,275,1,275,1,275,1,275,1,275,1,275,1,275, - 1,275,3,275,6021,8,275,1,275,1,275,1,275,1,275,1,275,3,275,6028, - 8,275,3,275,6030,8,275,1,276,1,276,1,276,3,276,6035,8,276,1,276, - 1,276,1,276,5,276,6040,8,276,10,276,12,276,6043,9,276,1,276,1,276, - 1,276,3,276,6048,8,276,1,276,1,276,1,276,1,277,1,277,3,277,6055, - 8,277,1,278,1,278,1,278,3,278,6060,8,278,1,278,1,278,1,279,3,279, - 6065,8,279,1,279,1,279,3,279,6069,8,279,1,279,1,279,3,279,6073,8, - 279,1,279,1,279,3,279,6077,8,279,3,279,6079,8,279,1,280,1,280,3, - 280,6083,8,280,1,281,1,281,3,281,6087,8,281,1,281,3,281,6090,8,281, - 1,281,3,281,6093,8,281,3,281,6095,8,281,1,281,1,281,1,281,1,281, - 1,281,1,281,1,281,1,281,3,281,6105,8,281,3,281,6107,8,281,1,281, - 1,281,1,281,3,281,6112,8,281,5,281,6114,8,281,10,281,12,281,6117, - 9,281,1,282,1,282,3,282,6121,8,282,1,283,1,283,3,283,6125,8,283, - 1,283,1,283,1,283,5,283,6130,8,283,10,283,12,283,6133,9,283,1,284, - 1,284,3,284,6137,8,284,1,284,1,284,3,284,6141,8,284,1,284,3,284, - 6144,8,284,1,284,1,284,1,284,1,284,3,284,6150,8,284,1,284,3,284, - 6153,8,284,1,285,1,285,1,285,1,285,1,285,1,285,1,285,1,285,1,286, - 1,286,1,286,1,286,1,286,1,286,1,286,1,286,1,286,3,286,6172,8,286, - 1,286,1,286,1,286,1,287,1,287,3,287,6179,8,287,1,287,1,287,3,287, - 6183,8,287,1,288,3,288,6186,8,288,1,288,1,288,3,288,6190,8,288,1, - 288,1,288,3,288,6194,8,288,1,288,3,288,6197,8,288,1,288,3,288,6200, - 8,288,1,289,1,289,1,289,3,289,6205,8,289,1,290,1,290,1,290,1,290, - 1,290,5,290,6212,8,290,10,290,12,290,6215,9,290,1,291,1,291,1,291, - 1,291,3,291,6221,8,291,1,291,1,291,3,291,6225,8,291,1,292,1,292, - 3,292,6229,8,292,1,292,1,292,3,292,6233,8,292,1,292,3,292,6236,8, - 292,3,292,6238,8,292,1,293,1,293,1,293,3,293,6243,8,293,1,293,1, - 293,3,293,6247,8,293,1,294,1,294,1,294,3,294,6252,8,294,1,294,1, - 294,1,294,1,294,3,294,6258,8,294,1,295,1,295,1,295,1,295,1,295,3, - 295,6265,8,295,1,296,1,296,1,296,3,296,6270,8,296,1,297,1,297,1, - 297,3,297,6275,8,297,1,297,1,297,1,298,1,298,1,298,5,298,6282,8, - 298,10,298,12,298,6285,9,298,1,299,1,299,1,299,1,299,3,299,6291, - 8,299,1,299,1,299,1,299,1,299,5,299,6297,8,299,10,299,12,299,6300, - 9,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299,1,299,3,299,6310, - 8,299,1,300,1,300,1,300,3,300,6315,8,300,1,300,1,300,3,300,6319, - 8,300,1,300,3,300,6322,8,300,1,300,1,300,3,300,6326,8,300,1,300, - 1,300,1,300,3,300,6331,8,300,4,300,6333,8,300,11,300,12,300,6334, - 1,300,1,300,1,300,3,300,6340,8,300,1,301,1,301,1,301,1,301,5,301, - 6346,8,301,10,301,12,301,6349,9,301,1,302,1,302,1,302,1,303,1,303, - 1,303,5,303,6357,8,303,10,303,12,303,6360,9,303,1,304,1,304,3,304, - 6364,8,304,1,304,1,304,3,304,6368,8,304,1,304,3,304,6371,8,304,1, - 304,3,304,6374,8,304,3,304,6376,8,304,1,304,3,304,6379,8,304,1,304, - 3,304,6382,8,304,1,304,3,304,6385,8,304,1,304,1,304,1,304,1,304, - 1,304,1,304,1,304,1,304,3,304,6395,8,304,1,304,1,304,1,304,3,304, - 6400,8,304,1,304,1,304,1,304,1,304,3,304,6406,8,304,1,304,1,304, - 3,304,6410,8,304,3,304,6412,8,304,1,304,1,304,1,304,1,304,1,304, - 3,304,6419,8,304,1,304,1,304,1,304,3,304,6424,8,304,1,304,1,304, - 1,304,1,304,5,304,6430,8,304,10,304,12,304,6433,9,304,1,305,1,305, - 3,305,6437,8,305,1,305,1,305,3,305,6441,8,305,1,305,1,305,3,305, - 6445,8,305,3,305,6447,8,305,1,306,3,306,6450,8,306,1,306,1,306,1, - 306,1,306,1,306,3,306,6457,8,306,1,307,1,307,1,307,3,307,6462,8, - 307,1,307,3,307,6465,8,307,1,307,1,307,1,307,1,307,3,307,6471,8, - 307,1,308,1,308,3,308,6475,8,308,1,309,1,309,1,309,1,309,3,309,6481, - 8,309,1,310,1,310,1,310,1,310,1,310,1,310,1,310,3,310,6490,8,310, - 1,310,1,310,1,310,1,310,3,310,6496,8,310,3,310,6498,8,310,1,311, - 1,311,1,311,3,311,6503,8,311,1,311,3,311,6506,8,311,1,311,1,311, - 1,311,1,311,1,311,1,311,1,311,3,311,6515,8,311,1,311,1,311,1,311, - 1,311,1,311,3,311,6522,8,311,3,311,6524,8,311,1,312,1,312,1,312, - 5,312,6529,8,312,10,312,12,312,6532,9,312,1,313,1,313,3,313,6536, - 8,313,1,313,3,313,6539,8,313,1,314,1,314,1,314,1,314,1,314,1,314, - 1,314,1,314,3,314,6549,8,314,1,315,1,315,1,315,1,315,1,315,1,315, - 1,315,5,315,6558,8,315,10,315,12,315,6561,9,315,1,315,1,315,3,315, - 6565,8,315,1,315,1,315,3,315,6569,8,315,1,316,1,316,1,316,1,316, - 1,316,1,316,3,316,6577,8,316,1,317,1,317,1,317,1,318,1,318,1,318, - 1,318,1,318,3,318,6587,8,318,1,319,1,319,1,319,5,319,6592,8,319, - 10,319,12,319,6595,9,319,1,320,1,320,1,320,3,320,6600,8,320,1,321, - 1,321,1,321,1,321,1,321,1,321,1,321,5,321,6609,8,321,10,321,12,321, - 6612,9,321,1,321,1,321,1,321,3,321,6617,8,321,1,321,1,321,1,321, - 1,321,1,321,1,321,5,321,6625,8,321,10,321,12,321,6628,9,321,1,321, - 1,321,1,322,1,322,1,322,1,322,3,322,6636,8,322,1,322,1,322,3,322, - 6640,8,322,1,322,4,322,6643,8,322,11,322,12,322,6644,3,322,6647, - 8,322,1,322,1,322,3,322,6651,8,322,1,323,1,323,1,323,1,323,1,323, - 1,323,3,323,6659,8,323,1,324,3,324,6662,8,324,1,324,1,324,1,324, - 3,324,6667,8,324,1,324,5,324,6670,8,324,10,324,12,324,6673,9,324, - 1,324,1,324,1,324,1,324,3,324,6679,8,324,3,324,6681,8,324,1,324, - 1,324,1,324,1,324,3,324,6687,8,324,1,325,1,325,3,325,6691,8,325, - 1,325,3,325,6694,8,325,1,325,1,325,1,325,3,325,6699,8,325,1,325, - 3,325,6702,8,325,3,325,6704,8,325,1,326,1,326,1,326,1,326,3,326, - 6710,8,326,1,327,1,327,1,327,1,327,1,327,1,327,1,327,3,327,6719, - 8,327,1,327,1,327,1,327,1,327,3,327,6725,8,327,1,327,3,327,6728, - 8,327,1,328,1,328,1,328,1,328,1,329,1,329,3,329,6736,8,329,1,329, - 3,329,6739,8,329,1,330,1,330,3,330,6743,8,330,1,330,1,330,1,330, - 1,330,3,330,6749,8,330,3,330,6751,8,330,1,330,3,330,6754,8,330,1, - 331,1,331,3,331,6758,8,331,1,331,1,331,1,331,3,331,6763,8,331,1, - 332,1,332,1,332,1,332,1,332,3,332,6770,8,332,1,332,1,332,1,332,1, - 332,1,332,3,332,6777,8,332,3,332,6779,8,332,1,332,1,332,1,332,1, - 332,3,332,6785,8,332,3,332,6787,8,332,1,332,1,332,1,332,3,332,6792, - 8,332,3,332,6794,8,332,1,333,1,333,3,333,6798,8,333,1,334,1,334, - 1,335,1,335,1,336,1,336,1,336,3,336,6807,8,336,1,336,1,336,3,336, - 6811,8,336,1,336,1,336,1,336,1,336,1,336,1,336,5,336,6819,8,336, - 10,336,12,336,6822,9,336,1,337,1,337,1,337,1,337,1,337,1,337,1,337, - 1,337,1,337,1,337,1,337,3,337,6835,8,337,1,337,3,337,6838,8,337, - 1,337,1,337,1,337,1,337,1,337,1,337,3,337,6846,8,337,1,337,1,337, - 1,337,1,337,1,337,5,337,6853,8,337,10,337,12,337,6856,9,337,1,337, - 1,337,1,337,3,337,6861,8,337,1,337,1,337,1,337,3,337,6866,8,337, - 1,337,1,337,1,337,1,337,1,337,1,337,3,337,6874,8,337,3,337,6876, - 8,337,1,337,1,337,1,337,3,337,6881,8,337,1,337,1,337,3,337,6885, - 8,337,1,337,1,337,1,337,3,337,6890,8,337,1,337,1,337,1,337,3,337, - 6895,8,337,1,338,1,338,1,338,1,338,3,338,6901,8,338,1,338,1,338, - 1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338, - 1,338,5,338,6917,8,338,10,338,12,338,6920,9,338,1,339,1,339,1,339, - 1,339,1,339,1,339,3,339,6928,8,339,1,339,1,339,1,339,1,339,1,339, - 1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,3,339,6943,8,339, - 1,339,1,339,1,339,3,339,6948,8,339,1,339,3,339,6951,8,339,1,339, - 1,339,1,339,1,339,3,339,6957,8,339,1,339,1,339,1,339,3,339,6962, - 8,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339, - 1,339,3,339,6975,8,339,1,339,4,339,6978,8,339,11,339,12,339,6979, - 1,339,1,339,3,339,6984,8,339,1,339,1,339,1,339,1,339,1,339,3,339, - 6991,8,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339, - 1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,3,339,7010,8,339, - 1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,3,339, - 7022,8,339,1,339,1,339,1,339,3,339,7027,8,339,1,339,1,339,1,339, - 1,339,1,339,1,339,3,339,7035,8,339,5,339,7037,8,339,10,339,12,339, - 7040,9,339,1,340,1,340,1,340,1,340,1,340,1,340,3,340,7048,8,340, - 1,340,3,340,7051,8,340,1,340,1,340,1,340,3,340,7056,8,340,1,340, - 1,340,1,340,3,340,7061,8,340,1,340,3,340,7064,8,340,1,340,1,340, - 1,341,1,341,1,341,1,341,1,341,1,341,1,341,3,341,7075,8,341,1,341, - 1,341,1,341,1,341,1,341,1,341,3,341,7083,8,341,1,341,1,341,1,341, - 3,341,7088,8,341,3,341,7090,8,341,1,341,3,341,7093,8,341,1,342,1, - 342,3,342,7097,8,342,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1, - 343,1,343,3,343,7108,8,343,1,343,1,343,1,343,1,343,1,343,1,343,1, - 343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343, - 1,343,1,343,3,343,7129,8,343,1,343,1,343,1,343,1,343,1,343,1,343, - 3,343,7137,8,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343, - 1,343,1,343,1,343,3,343,7150,8,343,1,343,1,343,1,343,1,343,1,343, - 1,343,1,343,1,343,3,343,7160,8,343,1,343,1,343,1,343,1,343,3,343, - 7166,8,343,1,343,1,343,1,343,1,343,3,343,7172,8,343,1,343,3,343, - 7175,8,343,1,343,3,343,7178,8,343,1,343,1,343,1,343,1,343,1,343, + 1,246,1,246,3,246,5644,8,246,1,246,1,246,1,246,1,246,1,246,1,246, + 1,246,1,246,1,246,1,246,1,246,1,246,1,246,3,246,5659,8,246,1,246, + 1,246,1,246,3,246,5664,8,246,1,247,1,247,3,247,5668,8,247,1,247, + 1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,247,1,248,1,248,3,248, + 5681,8,248,1,248,1,248,3,248,5685,8,248,3,248,5687,8,248,1,248,1, + 248,1,248,1,248,1,248,5,248,5694,8,248,10,248,12,248,5697,9,248, + 1,248,1,248,1,248,3,248,5702,8,248,3,248,5704,8,248,1,249,1,249, + 3,249,5708,8,249,1,249,3,249,5711,8,249,1,249,3,249,5714,8,249,1, + 249,3,249,5717,8,249,1,249,3,249,5720,8,249,3,249,5722,8,249,1,249, + 3,249,5725,8,249,1,250,1,250,3,250,5729,8,250,1,250,1,250,1,250, + 1,250,5,250,5735,8,250,10,250,12,250,5738,9,250,1,250,1,250,3,250, + 5742,8,250,1,250,3,250,5745,8,250,1,251,1,251,1,252,1,252,3,252, + 5751,8,252,1,252,1,252,3,252,5755,8,252,1,253,1,253,3,253,5759,8, + 253,1,253,1,253,1,253,3,253,5764,8,253,3,253,5766,8,253,1,254,1, + 254,3,254,5770,8,254,1,255,1,255,3,255,5774,8,255,1,256,1,256,1, + 256,5,256,5779,8,256,10,256,12,256,5782,9,256,1,257,1,257,1,257, + 3,257,5787,8,257,1,257,1,257,3,257,5791,8,257,3,257,5793,8,257,3, + 257,5795,8,257,1,257,1,257,1,258,1,258,1,258,1,258,1,258,1,258,1, + 258,1,258,1,258,3,258,5808,8,258,1,259,1,259,1,259,1,259,5,259,5814, + 8,259,10,259,12,259,5817,9,259,1,259,1,259,1,260,1,260,1,260,3,260, + 5824,8,260,1,260,1,260,1,260,1,261,1,261,1,261,1,261,5,261,5833, + 8,261,10,261,12,261,5836,9,261,1,261,1,261,1,262,1,262,1,262,1,262, + 1,262,3,262,5845,8,262,1,263,1,263,1,263,3,263,5850,8,263,1,263, + 1,263,3,263,5854,8,263,1,263,1,263,3,263,5858,8,263,1,263,1,263, + 1,263,1,263,1,263,3,263,5865,8,263,1,263,3,263,5868,8,263,3,263, + 5870,8,263,1,264,1,264,1,264,1,264,1,265,1,265,3,265,5878,8,265, + 1,265,1,265,3,265,5882,8,265,1,266,3,266,5885,8,266,1,266,1,266, + 1,266,1,266,1,266,3,266,5892,8,266,1,266,1,266,1,266,1,266,1,266, + 3,266,5899,8,266,1,266,1,266,1,266,3,266,5904,8,266,1,266,1,266, + 1,266,1,266,1,266,3,266,5911,8,266,1,266,3,266,5914,8,266,3,266, + 5916,8,266,1,266,3,266,5919,8,266,1,267,1,267,1,267,1,267,3,267, + 5925,8,267,1,267,1,267,1,267,3,267,5930,8,267,1,267,1,267,3,267, + 5934,8,267,1,268,1,268,1,268,5,268,5939,8,268,10,268,12,268,5942, + 9,268,1,269,1,269,1,269,1,270,1,270,1,270,1,271,3,271,5951,8,271, + 1,271,1,271,1,271,1,271,1,271,3,271,5958,8,271,1,271,3,271,5961, + 8,271,1,271,3,271,5964,8,271,1,272,1,272,3,272,5968,8,272,1,272, + 1,272,1,272,1,272,1,272,1,272,1,272,1,272,1,272,3,272,5979,8,272, + 1,272,3,272,5982,8,272,1,272,3,272,5985,8,272,1,272,3,272,5988,8, + 272,1,273,3,273,5991,8,273,1,273,1,273,1,273,1,273,1,273,3,273,5998, + 8,273,1,273,3,273,6001,8,273,1,273,3,273,6004,8,273,1,274,1,274, + 1,274,5,274,6009,8,274,10,274,12,274,6012,9,274,1,275,1,275,1,275, + 1,275,1,275,1,275,1,275,1,275,1,275,3,275,6023,8,275,1,275,1,275, + 1,275,1,275,1,275,3,275,6030,8,275,3,275,6032,8,275,1,276,1,276, + 1,276,3,276,6037,8,276,1,276,1,276,1,276,5,276,6042,8,276,10,276, + 12,276,6045,9,276,1,276,1,276,1,276,3,276,6050,8,276,1,276,1,276, + 1,276,1,277,1,277,3,277,6057,8,277,1,278,1,278,1,278,3,278,6062, + 8,278,1,278,1,278,1,279,3,279,6067,8,279,1,279,1,279,3,279,6071, + 8,279,1,279,1,279,3,279,6075,8,279,1,279,1,279,3,279,6079,8,279, + 3,279,6081,8,279,1,280,1,280,3,280,6085,8,280,1,281,1,281,3,281, + 6089,8,281,1,281,3,281,6092,8,281,1,281,3,281,6095,8,281,3,281,6097, + 8,281,1,281,1,281,1,281,1,281,1,281,1,281,1,281,1,281,3,281,6107, + 8,281,3,281,6109,8,281,1,281,1,281,1,281,3,281,6114,8,281,5,281, + 6116,8,281,10,281,12,281,6119,9,281,1,282,1,282,3,282,6123,8,282, + 1,283,1,283,3,283,6127,8,283,1,283,1,283,1,283,5,283,6132,8,283, + 10,283,12,283,6135,9,283,1,284,1,284,3,284,6139,8,284,1,284,1,284, + 3,284,6143,8,284,1,284,3,284,6146,8,284,1,284,1,284,1,284,1,284, + 3,284,6152,8,284,1,284,3,284,6155,8,284,1,285,1,285,1,285,1,285, + 1,285,1,285,1,285,1,285,1,286,1,286,1,286,1,286,1,286,1,286,1,286, + 1,286,1,286,3,286,6174,8,286,1,286,1,286,1,286,1,287,1,287,3,287, + 6181,8,287,1,287,1,287,3,287,6185,8,287,1,288,3,288,6188,8,288,1, + 288,1,288,3,288,6192,8,288,1,288,1,288,3,288,6196,8,288,1,288,3, + 288,6199,8,288,1,288,3,288,6202,8,288,1,289,1,289,1,289,3,289,6207, + 8,289,1,290,1,290,1,290,1,290,1,290,5,290,6214,8,290,10,290,12,290, + 6217,9,290,1,291,1,291,1,291,1,291,3,291,6223,8,291,1,291,1,291, + 3,291,6227,8,291,1,292,1,292,3,292,6231,8,292,1,292,1,292,3,292, + 6235,8,292,1,292,3,292,6238,8,292,3,292,6240,8,292,1,293,1,293,1, + 293,3,293,6245,8,293,1,293,1,293,3,293,6249,8,293,1,294,1,294,1, + 294,3,294,6254,8,294,1,294,1,294,1,294,1,294,3,294,6260,8,294,1, + 295,1,295,1,295,1,295,1,295,3,295,6267,8,295,1,296,1,296,1,296,3, + 296,6272,8,296,1,297,1,297,1,297,3,297,6277,8,297,1,297,1,297,1, + 298,1,298,1,298,5,298,6284,8,298,10,298,12,298,6287,9,298,1,299, + 1,299,1,299,1,299,3,299,6293,8,299,1,299,1,299,1,299,1,299,5,299, + 6299,8,299,10,299,12,299,6302,9,299,1,299,1,299,1,299,1,299,1,299, + 1,299,1,299,1,299,3,299,6312,8,299,1,300,1,300,1,300,3,300,6317, + 8,300,1,300,1,300,3,300,6321,8,300,1,300,3,300,6324,8,300,1,300, + 1,300,3,300,6328,8,300,1,300,1,300,1,300,3,300,6333,8,300,4,300, + 6335,8,300,11,300,12,300,6336,1,300,1,300,1,300,3,300,6342,8,300, + 1,301,1,301,1,301,1,301,5,301,6348,8,301,10,301,12,301,6351,9,301, + 1,302,1,302,1,302,1,303,1,303,1,303,5,303,6359,8,303,10,303,12,303, + 6362,9,303,1,304,1,304,3,304,6366,8,304,1,304,1,304,3,304,6370,8, + 304,1,304,3,304,6373,8,304,1,304,3,304,6376,8,304,3,304,6378,8,304, + 1,304,3,304,6381,8,304,1,304,3,304,6384,8,304,1,304,3,304,6387,8, + 304,1,304,1,304,1,304,1,304,1,304,1,304,1,304,1,304,3,304,6397,8, + 304,1,304,1,304,1,304,3,304,6402,8,304,1,304,1,304,1,304,1,304,3, + 304,6408,8,304,1,304,1,304,3,304,6412,8,304,3,304,6414,8,304,1,304, + 1,304,1,304,1,304,1,304,3,304,6421,8,304,1,304,1,304,1,304,3,304, + 6426,8,304,1,304,1,304,1,304,1,304,5,304,6432,8,304,10,304,12,304, + 6435,9,304,1,305,1,305,3,305,6439,8,305,1,305,1,305,3,305,6443,8, + 305,1,305,1,305,3,305,6447,8,305,3,305,6449,8,305,1,306,3,306,6452, + 8,306,1,306,1,306,1,306,1,306,1,306,3,306,6459,8,306,1,307,1,307, + 1,307,3,307,6464,8,307,1,307,3,307,6467,8,307,1,307,1,307,1,307, + 1,307,3,307,6473,8,307,1,308,1,308,3,308,6477,8,308,1,309,1,309, + 1,309,1,309,3,309,6483,8,309,1,310,1,310,1,310,1,310,1,310,1,310, + 1,310,3,310,6492,8,310,1,310,1,310,1,310,1,310,3,310,6498,8,310, + 3,310,6500,8,310,1,311,1,311,1,311,3,311,6505,8,311,1,311,3,311, + 6508,8,311,1,311,1,311,1,311,1,311,1,311,1,311,1,311,3,311,6517, + 8,311,1,311,1,311,1,311,1,311,1,311,3,311,6524,8,311,3,311,6526, + 8,311,1,312,1,312,1,312,5,312,6531,8,312,10,312,12,312,6534,9,312, + 1,313,1,313,3,313,6538,8,313,1,313,3,313,6541,8,313,1,314,1,314, + 1,314,1,314,1,314,1,314,1,314,1,314,3,314,6551,8,314,1,315,1,315, + 1,315,1,315,1,315,1,315,1,315,5,315,6560,8,315,10,315,12,315,6563, + 9,315,1,315,1,315,3,315,6567,8,315,1,315,1,315,3,315,6571,8,315, + 1,316,1,316,1,316,1,316,1,316,1,316,3,316,6579,8,316,1,317,1,317, + 1,317,1,318,1,318,1,318,1,318,1,318,3,318,6589,8,318,1,319,1,319, + 1,319,5,319,6594,8,319,10,319,12,319,6597,9,319,1,320,1,320,1,320, + 3,320,6602,8,320,1,321,1,321,1,321,1,321,1,321,1,321,1,321,5,321, + 6611,8,321,10,321,12,321,6614,9,321,1,321,1,321,1,321,3,321,6619, + 8,321,1,321,1,321,1,321,1,321,1,321,1,321,5,321,6627,8,321,10,321, + 12,321,6630,9,321,1,321,1,321,1,322,1,322,1,322,1,322,3,322,6638, + 8,322,1,322,1,322,3,322,6642,8,322,1,322,4,322,6645,8,322,11,322, + 12,322,6646,3,322,6649,8,322,1,322,1,322,3,322,6653,8,322,1,323, + 1,323,1,323,1,323,1,323,1,323,3,323,6661,8,323,1,324,3,324,6664, + 8,324,1,324,1,324,1,324,3,324,6669,8,324,1,324,5,324,6672,8,324, + 10,324,12,324,6675,9,324,1,324,1,324,1,324,1,324,3,324,6681,8,324, + 3,324,6683,8,324,1,324,1,324,1,324,1,324,3,324,6689,8,324,1,325, + 1,325,3,325,6693,8,325,1,325,3,325,6696,8,325,1,325,1,325,1,325, + 3,325,6701,8,325,1,325,3,325,6704,8,325,3,325,6706,8,325,1,326,1, + 326,1,326,1,326,3,326,6712,8,326,1,327,1,327,1,327,1,327,1,327,1, + 327,1,327,3,327,6721,8,327,1,327,1,327,1,327,1,327,3,327,6727,8, + 327,1,327,3,327,6730,8,327,1,328,1,328,1,328,1,328,1,329,1,329,3, + 329,6738,8,329,1,329,3,329,6741,8,329,1,330,1,330,3,330,6745,8,330, + 1,330,1,330,1,330,1,330,3,330,6751,8,330,3,330,6753,8,330,1,330, + 3,330,6756,8,330,1,331,1,331,3,331,6760,8,331,1,331,1,331,1,331, + 3,331,6765,8,331,1,332,1,332,1,332,1,332,1,332,3,332,6772,8,332, + 1,332,1,332,1,332,1,332,1,332,3,332,6779,8,332,3,332,6781,8,332, + 1,332,1,332,1,332,1,332,3,332,6787,8,332,3,332,6789,8,332,1,332, + 1,332,1,332,3,332,6794,8,332,3,332,6796,8,332,1,333,1,333,3,333, + 6800,8,333,1,334,1,334,1,335,1,335,1,336,1,336,1,336,3,336,6809, + 8,336,1,336,1,336,3,336,6813,8,336,1,336,1,336,1,336,1,336,1,336, + 1,336,5,336,6821,8,336,10,336,12,336,6824,9,336,1,337,1,337,1,337, + 1,337,1,337,1,337,1,337,1,337,1,337,1,337,1,337,3,337,6837,8,337, + 1,337,3,337,6840,8,337,1,337,1,337,1,337,1,337,1,337,1,337,3,337, + 6848,8,337,1,337,1,337,1,337,1,337,1,337,5,337,6855,8,337,10,337, + 12,337,6858,9,337,1,337,1,337,1,337,3,337,6863,8,337,1,337,1,337, + 1,337,3,337,6868,8,337,1,337,1,337,1,337,1,337,1,337,1,337,3,337, + 6876,8,337,3,337,6878,8,337,1,337,1,337,1,337,3,337,6883,8,337,1, + 337,1,337,3,337,6887,8,337,1,337,1,337,1,337,3,337,6892,8,337,1, + 337,1,337,1,337,3,337,6897,8,337,1,338,1,338,1,338,1,338,3,338,6903, + 8,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338,1,338, + 1,338,1,338,1,338,1,338,5,338,6919,8,338,10,338,12,338,6922,9,338, + 1,339,1,339,1,339,1,339,1,339,1,339,3,339,6930,8,339,1,339,1,339, + 1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339, + 3,339,6945,8,339,1,339,1,339,1,339,3,339,6950,8,339,1,339,3,339, + 6953,8,339,1,339,1,339,1,339,1,339,3,339,6959,8,339,1,339,1,339, + 1,339,3,339,6964,8,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339, + 1,339,1,339,1,339,1,339,3,339,6977,8,339,1,339,4,339,6980,8,339, + 11,339,12,339,6981,1,339,1,339,3,339,6986,8,339,1,339,1,339,1,339, + 1,339,1,339,3,339,6993,8,339,1,339,1,339,1,339,1,339,1,339,1,339, + 1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339, + 3,339,7012,8,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339,1,339, + 1,339,1,339,3,339,7024,8,339,1,339,1,339,1,339,3,339,7029,8,339, + 1,339,1,339,1,339,1,339,1,339,1,339,3,339,7037,8,339,5,339,7039, + 8,339,10,339,12,339,7042,9,339,1,340,1,340,1,340,1,340,1,340,1,340, + 3,340,7050,8,340,1,340,3,340,7053,8,340,1,340,1,340,1,340,3,340, + 7058,8,340,1,340,1,340,1,340,3,340,7063,8,340,1,340,3,340,7066,8, + 340,1,340,1,340,1,341,1,341,1,341,1,341,1,341,1,341,1,341,3,341, + 7077,8,341,1,341,1,341,1,341,1,341,1,341,1,341,3,341,7085,8,341, + 1,341,1,341,1,341,3,341,7090,8,341,3,341,7092,8,341,1,341,3,341, + 7095,8,341,1,342,1,342,3,342,7099,8,342,1,343,1,343,1,343,1,343, + 1,343,1,343,1,343,1,343,1,343,3,343,7110,8,343,1,343,1,343,1,343, + 1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343, + 1,343,1,343,1,343,1,343,1,343,3,343,7131,8,343,1,343,1,343,1,343, + 1,343,1,343,1,343,3,343,7139,8,343,1,343,1,343,1,343,1,343,1,343, + 1,343,1,343,1,343,1,343,1,343,1,343,3,343,7152,8,343,1,343,1,343, + 1,343,1,343,1,343,1,343,1,343,1,343,3,343,7162,8,343,1,343,1,343, + 1,343,1,343,3,343,7168,8,343,1,343,1,343,1,343,1,343,3,343,7174, + 8,343,1,343,3,343,7177,8,343,1,343,3,343,7180,8,343,1,343,1,343, 1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343, - 1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,3,343,7204,8,343, - 3,343,7206,8,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343, 1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343, - 3,343,7227,8,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343, - 3,343,7237,8,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343, - 1,343,1,343,1,343,3,343,7250,8,343,1,343,1,343,1,343,3,343,7255, - 8,343,1,343,1,343,3,343,7259,8,343,3,343,7261,8,343,1,343,1,343, - 1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,3,343,7273,8,343, - 1,344,1,344,1,344,5,344,7278,8,344,10,344,12,344,7281,9,344,1,345, - 1,345,1,345,3,345,7286,8,345,1,346,1,346,1,347,1,347,3,347,7292, - 8,347,1,347,1,347,3,347,7296,8,347,1,348,1,348,1,348,1,349,1,349, - 1,349,1,349,5,349,7305,8,349,10,349,12,349,7308,9,349,1,350,1,350, - 1,350,1,351,1,351,1,351,1,351,1,352,1,352,1,352,3,352,7320,8,352, - 1,353,1,353,3,353,7324,8,353,1,353,1,353,1,353,3,353,7329,8,353, - 1,353,3,353,7332,8,353,1,353,3,353,7335,8,353,1,353,1,353,1,354, - 1,354,1,354,1,354,1,354,3,354,7344,8,354,1,354,1,354,1,354,1,354, - 1,354,1,354,1,354,1,354,1,354,3,354,7355,8,354,3,354,7357,8,354, - 1,355,1,355,3,355,7361,8,355,1,355,1,355,1,355,3,355,7366,8,355, - 1,356,1,356,1,356,1,356,1,356,1,356,1,356,3,356,7375,8,356,1,357, - 1,357,1,357,3,357,7380,8,357,1,357,1,357,1,358,1,358,1,359,1,359, - 3,359,7388,8,359,1,360,1,360,1,361,1,361,1,361,1,361,1,361,1,361, - 3,361,7398,8,361,1,362,1,362,1,362,1,362,1,362,1,362,3,362,7406, - 8,362,1,363,1,363,3,363,7410,8,363,1,363,3,363,7413,8,363,1,364, - 1,364,1,364,5,364,7418,8,364,10,364,12,364,7421,9,364,1,365,1,365, - 1,366,1,366,1,367,1,367,1,367,1,367,1,367,3,367,7432,8,367,1,368, - 1,368,3,368,7436,8,368,1,369,1,369,1,369,5,369,7441,8,369,10,369, - 12,369,7444,9,369,1,370,1,370,1,370,1,370,1,370,3,370,7451,8,370, - 3,370,7453,8,370,1,371,1,371,1,371,1,371,1,371,5,371,7460,8,371, - 10,371,12,371,7463,9,371,3,371,7465,8,371,1,371,1,371,1,372,1,372, - 1,372,1,372,1,372,1,372,1,372,1,372,3,372,7477,8,372,1,373,1,373, - 1,374,1,374,1,374,1,374,1,374,3,374,7486,8,374,1,374,1,374,1,374, - 1,374,1,374,3,374,7493,8,374,1,374,1,374,1,374,1,374,1,374,1,374, - 1,374,3,374,7502,8,374,1,375,1,375,1,375,1,375,1,375,1,376,1,376, - 1,376,3,376,7512,8,376,1,376,1,376,1,376,3,376,7517,8,376,1,376, - 1,376,3,376,7521,8,376,3,376,7523,8,376,1,376,3,376,7526,8,376,1, - 377,4,377,7529,8,377,11,377,12,377,7530,1,378,5,378,7534,8,378,10, - 378,12,378,7537,9,378,1,379,1,379,1,379,5,379,7542,8,379,10,379, - 12,379,7545,9,379,1,380,1,380,1,380,3,380,7550,8,380,1,380,3,380, - 7553,8,380,1,380,1,380,3,380,7557,8,380,3,380,7559,8,380,1,381,1, - 381,1,381,5,381,7564,8,381,10,381,12,381,7567,9,381,1,381,1,381, - 1,382,1,382,1,382,5,382,7574,8,382,10,382,12,382,7577,9,382,1,383, - 1,383,1,383,5,383,7582,8,383,10,383,12,383,7585,9,383,1,384,1,384, - 1,384,5,384,7590,8,384,10,384,12,384,7593,9,384,1,385,1,385,1,385, - 5,385,7598,8,385,10,385,12,385,7601,9,385,1,386,1,386,1,387,1,387, - 1,388,1,388,1,389,1,389,1,390,1,390,1,391,1,391,1,392,1,392,3,392, - 7617,8,392,1,393,1,393,1,393,5,393,7622,8,393,10,393,12,393,7625, - 9,393,1,394,1,394,1,394,5,394,7630,8,394,10,394,12,394,7633,9,394, - 1,395,1,395,1,396,1,396,1,397,1,397,1,398,1,398,1,399,1,399,1,400, - 1,400,1,400,1,400,3,400,7649,8,400,1,401,1,401,1,401,1,401,3,401, - 7655,8,401,1,402,1,402,1,403,1,403,1,403,1,403,1,403,1,403,1,403, - 1,403,1,403,3,403,7668,8,403,3,403,7670,8,403,1,404,1,404,1,404, - 1,404,1,404,1,404,1,404,1,404,1,404,3,404,7681,8,404,3,404,7683, - 8,404,1,405,1,405,1,406,1,406,1,406,1,406,3,406,7691,8,406,1,407, - 1,407,1,407,1,407,3,407,7697,8,407,1,408,1,408,1,408,3,408,7702, - 8,408,1,409,1,409,1,409,1,409,5,409,7708,8,409,10,409,12,409,7711, - 9,409,1,409,1,409,3,409,7715,8,409,1,410,3,410,7718,8,410,1,410, - 1,410,1,411,1,411,1,411,1,411,1,411,3,411,7727,8,411,1,412,1,412, - 1,412,5,412,7732,8,412,10,412,12,412,7735,9,412,1,413,1,413,3,413, - 7739,8,413,1,414,1,414,3,414,7743,8,414,1,415,1,415,1,415,3,415, - 7748,8,415,1,416,1,416,1,416,1,416,3,416,7754,8,416,1,417,1,417, - 1,417,3,417,7759,8,417,1,417,1,417,1,417,1,417,1,417,1,417,3,417, - 7767,8,417,1,418,1,418,1,419,1,419,1,419,1,419,1,419,1,419,1,419, - 1,419,1,419,1,419,1,419,1,419,1,419,1,419,1,419,1,419,1,419,1,419, - 1,419,1,419,1,419,1,419,1,419,1,419,1,419,1,419,1,419,1,419,1,419, - 1,419,1,419,1,419,1,419,1,419,1,419,1,419,1,419,1,419,1,419,1,419, - 1,419,1,419,1,419,1,419,1,419,1,419,1,419,1,419,1,419,1,419,1,419, - 3,419,7822,8,419,1,420,1,420,1,421,1,421,1,422,3,422,7829,8,422, - 1,422,1,422,1,422,1,422,4,422,7835,8,422,11,422,12,422,7836,3,422, - 7839,8,422,3,422,7841,8,422,1,422,1,422,5,422,7845,8,422,10,422, - 12,422,7848,9,422,1,422,3,422,7851,8,422,1,422,1,422,3,422,7855, - 8,422,1,423,1,423,1,423,1,423,1,424,1,424,1,424,1,424,1,424,3,424, - 7866,8,424,1,424,3,424,7869,8,424,1,424,1,424,3,424,7873,8,424,1, - 424,1,424,3,424,7877,8,424,1,424,1,424,3,424,7881,8,424,1,424,3, - 424,7884,8,424,1,424,3,424,7887,8,424,1,424,3,424,7890,8,424,1,424, - 1,424,1,424,1,424,1,424,5,424,7897,8,424,10,424,12,424,7900,9,424, - 1,424,1,424,3,424,7904,8,424,1,424,1,424,3,424,7908,8,424,1,424, - 1,424,1,425,1,425,1,425,1,426,1,426,1,427,1,427,1,427,1,427,1,427, - 1,427,1,427,1,427,1,427,1,427,1,427,1,427,1,427,1,427,1,427,1,427, - 1,427,1,427,1,427,1,427,1,427,1,427,1,427,1,427,3,427,7941,8,427, - 1,428,1,428,1,428,1,428,1,429,1,429,1,429,1,429,3,429,7951,8,429, - 1,429,1,429,3,429,7955,8,429,1,429,1,429,1,429,1,429,3,429,7961, - 8,429,1,429,1,429,1,429,3,429,7966,8,429,1,430,1,430,1,430,1,430, - 1,430,1,431,1,431,3,431,7975,8,431,1,431,1,431,1,431,1,431,5,431, - 7981,8,431,10,431,12,431,7984,9,431,1,431,1,431,1,432,1,432,1,432, - 1,432,1,433,1,433,3,433,7994,8,433,1,433,1,433,1,433,1,433,5,433, - 8000,8,433,10,433,12,433,8003,9,433,1,434,1,434,1,434,1,434,5,434, - 8009,8,434,10,434,12,434,8012,9,434,1,434,1,434,1,434,1,434,5,434, - 8018,8,434,10,434,12,434,8021,9,434,5,434,8023,8,434,10,434,12,434, - 8026,9,434,1,434,3,434,8029,8,434,1,434,1,434,1,434,1,434,1,435, - 1,435,5,435,8037,8,435,10,435,12,435,8040,9,435,1,436,1,436,3,436, - 8044,8,436,1,436,1,436,1,436,1,436,5,436,8050,8,436,10,436,12,436, - 8053,9,436,4,436,8055,8,436,11,436,12,436,8056,1,436,3,436,8060, - 8,436,1,436,1,436,1,436,1,436,1,437,3,437,8067,8,437,1,437,1,437, - 1,437,1,437,3,437,8073,8,437,1,437,1,437,1,438,1,438,1,438,1,438, - 3,438,8081,8,438,1,438,1,438,1,438,1,438,1,438,1,438,3,438,8089, - 8,438,1,438,3,438,8092,8,438,1,438,1,438,1,438,1,438,1,438,3,438, - 8099,8,438,3,438,8101,8,438,1,439,3,439,8104,8,439,1,439,1,439,1, - 439,1,439,3,439,8110,8,439,1,439,1,439,1,439,1,439,1,439,1,440,1, - 440,3,440,8119,8,440,1,440,1,440,3,440,8123,8,440,1,440,1,440,1, - 441,1,441,1,441,1,441,1,441,1,441,1,441,1,441,1,441,1,441,3,441, - 8137,8,441,1,441,3,441,8140,8,441,3,441,8142,8,441,1,441,1,441,1, - 442,1,442,3,442,8148,8,442,1,442,1,442,1,442,1,442,1,442,1,442,4, - 442,8156,8,442,11,442,12,442,8157,3,442,8160,8,442,3,442,8162,8, - 442,1,442,1,442,1,442,1,442,5,442,8168,8,442,10,442,12,442,8171, - 9,442,3,442,8173,8,442,1,442,3,442,8176,8,442,1,443,1,443,1,443, - 1,443,1,444,1,444,1,444,1,444,3,444,8186,8,444,1,444,1,444,1,445, - 1,445,5,445,8192,8,445,10,445,12,445,8195,9,445,1,445,1,445,1,445, - 3,445,8200,8,445,1,445,1,445,1,446,1,446,3,446,8206,8,446,1,446, - 1,446,1,447,1,447,1,447,3,447,8213,8,447,1,447,1,447,3,447,8217, - 8,447,1,447,1,447,3,447,8221,8,447,1,447,3,447,8224,8,447,1,447, - 3,447,8227,8,447,1,447,1,447,1,448,1,448,3,448,8233,8,448,1,448, - 1,448,1,449,1,449,1,449,3,449,8240,8,449,1,449,3,449,8243,8,449, - 1,449,1,449,1,449,1,449,1,449,1,449,3,449,8251,8,449,3,449,8253, - 8,449,1,449,1,449,1,449,1,449,1,449,5,449,8260,8,449,10,449,12,449, - 8263,9,449,1,449,1,449,3,449,8267,8,449,3,449,8269,8,449,1,449,1, - 449,1,450,1,450,1,450,3,450,8276,8,450,1,450,1,450,1,451,1,451,3, - 451,8282,8,451,1,451,3,451,8285,8,451,1,451,1,451,1,451,1,451,1, - 451,1,452,1,452,1,452,1,452,1,452,3,452,8297,8,452,1,452,1,452,1, - 452,1,452,1,452,3,452,8304,8,452,3,452,8306,8,452,1,453,1,453,3, - 453,8310,8,453,1,453,1,453,1,453,1,454,3,454,8316,8,454,1,454,1, - 454,1,454,3,454,8321,8,454,1,454,1,454,3,454,8325,8,454,1,454,3, - 454,8328,8,454,1,454,3,454,8331,8,454,1,454,1,454,1,454,1,454,1, - 454,4,454,8338,8,454,11,454,12,454,8339,1,454,3,454,8343,8,454,1, - 455,3,455,8346,8,455,1,455,1,455,3,455,8350,8,455,1,455,1,455,3, - 455,8354,8,455,3,455,8356,8,455,1,455,3,455,8359,8,455,1,455,3,455, - 8362,8,455,1,456,1,456,1,456,1,456,3,456,8368,8,456,1,456,1,456, - 1,456,1,456,1,456,3,456,8375,8,456,1,456,1,456,1,456,1,456,1,456, - 3,456,8382,8,456,1,456,1,456,1,456,1,456,3,456,8388,8,456,3,456, - 8390,8,456,1,457,1,457,3,457,8394,8,457,1,457,1,457,1,457,3,457, - 8399,8,457,1,457,1,457,1,458,1,458,1,458,1,458,1,458,1,458,1,458, - 1,458,1,458,1,458,1,458,1,458,5,458,8415,8,458,10,458,12,458,8418, - 9,458,1,458,1,458,4,458,8422,8,458,11,458,12,458,8423,1,459,1,459, - 1,459,1,459,1,459,5,459,8431,8,459,10,459,12,459,8434,9,459,1,459, - 1,459,1,459,1,459,3,459,8440,8,459,1,460,1,460,3,460,8444,8,460, - 1,461,1,461,1,461,1,461,1,462,1,462,1,462,1,463,1,463,1,463,3,463, - 8456,8,463,1,463,3,463,8459,8,463,1,463,1,463,1,464,1,464,1,464, - 1,464,1,464,1,464,1,464,1,464,1,464,3,464,8472,8,464,1,464,3,464, - 8475,8,464,1,465,1,465,3,465,8479,8,465,1,466,1,466,1,466,1,466, - 1,466,5,466,8486,8,466,10,466,12,466,8489,9,466,1,466,1,466,5,466, - 8493,8,466,10,466,12,466,8496,9,466,4,466,8498,8,466,11,466,12,466, - 8499,1,467,1,467,1,467,3,467,8505,8,467,1,468,1,468,3,468,8509,8, - 468,1,469,3,469,8512,8,469,1,469,3,469,8515,8,469,1,469,3,469,8518, - 8,469,1,469,3,469,8521,8,469,1,469,3,469,8524,8,469,1,469,3,469, - 8527,8,469,1,469,3,469,8530,8,469,1,469,0,3,672,676,678,470,0,2, - 4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48, - 50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92, - 94,96,98,100,102,104,106,108,110,112,114,116,118,120,122,124,126, - 128,130,132,134,136,138,140,142,144,146,148,150,152,154,156,158, - 160,162,164,166,168,170,172,174,176,178,180,182,184,186,188,190, - 192,194,196,198,200,202,204,206,208,210,212,214,216,218,220,222, - 224,226,228,230,232,234,236,238,240,242,244,246,248,250,252,254, - 256,258,260,262,264,266,268,270,272,274,276,278,280,282,284,286, - 288,290,292,294,296,298,300,302,304,306,308,310,312,314,316,318, - 320,322,324,326,328,330,332,334,336,338,340,342,344,346,348,350, - 352,354,356,358,360,362,364,366,368,370,372,374,376,378,380,382, - 384,386,388,390,392,394,396,398,400,402,404,406,408,410,412,414, - 416,418,420,422,424,426,428,430,432,434,436,438,440,442,444,446, - 448,450,452,454,456,458,460,462,464,466,468,470,472,474,476,478, - 480,482,484,486,488,490,492,494,496,498,500,502,504,506,508,510, - 512,514,516,518,520,522,524,526,528,530,532,534,536,538,540,542, - 544,546,548,550,552,554,556,558,560,562,564,566,568,570,572,574, - 576,578,580,582,584,586,588,590,592,594,596,598,600,602,604,606, - 608,610,612,614,616,618,620,622,624,626,628,630,632,634,636,638, - 640,642,644,646,648,650,652,654,656,658,660,662,664,666,668,670, - 672,674,676,678,680,682,684,686,688,690,692,694,696,698,700,702, - 704,706,708,710,712,714,716,718,720,722,724,726,728,730,732,734, - 736,738,740,742,744,746,748,750,752,754,756,758,760,762,764,766, - 768,770,772,774,776,778,780,782,784,786,788,790,792,794,796,798, - 800,802,804,806,808,810,812,814,816,818,820,822,824,826,828,830, - 832,834,836,838,840,842,844,846,848,850,852,854,856,858,860,862, - 864,866,868,870,872,874,876,878,880,882,884,886,888,890,892,894, - 896,898,900,902,904,906,908,910,912,914,916,918,920,922,924,926, - 928,930,932,934,936,938,0,119,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,1,0,549, - 551,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, + 3,343,7206,8,343,3,343,7208,8,343,1,343,1,343,1,343,1,343,1,343, + 1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343, + 1,343,1,343,1,343,3,343,7229,8,343,1,343,1,343,1,343,1,343,1,343, + 1,343,1,343,1,343,3,343,7239,8,343,1,343,1,343,1,343,1,343,1,343, + 1,343,1,343,1,343,1,343,1,343,1,343,3,343,7252,8,343,1,343,1,343, + 1,343,3,343,7257,8,343,1,343,1,343,3,343,7261,8,343,3,343,7263,8, + 343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343,1,343, + 3,343,7275,8,343,1,344,1,344,1,344,5,344,7280,8,344,10,344,12,344, + 7283,9,344,1,345,1,345,1,345,3,345,7288,8,345,1,346,1,346,1,347, + 1,347,3,347,7294,8,347,1,347,1,347,3,347,7298,8,347,1,348,1,348, + 1,348,1,349,1,349,1,349,1,349,5,349,7307,8,349,10,349,12,349,7310, + 9,349,1,350,1,350,1,350,1,351,1,351,1,351,1,351,1,352,1,352,1,352, + 3,352,7322,8,352,1,353,1,353,3,353,7326,8,353,1,353,1,353,1,353, + 3,353,7331,8,353,1,353,3,353,7334,8,353,1,353,3,353,7337,8,353,1, + 353,1,353,1,354,1,354,1,354,1,354,1,354,3,354,7346,8,354,1,354,1, + 354,1,354,1,354,1,354,1,354,1,354,1,354,1,354,3,354,7357,8,354,3, + 354,7359,8,354,1,355,1,355,3,355,7363,8,355,1,355,1,355,1,355,3, + 355,7368,8,355,1,356,1,356,1,356,1,356,1,356,1,356,1,356,3,356,7377, + 8,356,1,357,1,357,1,357,3,357,7382,8,357,1,357,1,357,1,358,1,358, + 1,359,1,359,3,359,7390,8,359,1,360,1,360,1,361,1,361,1,361,1,361, + 1,361,1,361,3,361,7400,8,361,1,362,1,362,1,362,1,362,1,362,1,362, + 3,362,7408,8,362,1,363,1,363,3,363,7412,8,363,1,363,3,363,7415,8, + 363,1,364,1,364,1,364,5,364,7420,8,364,10,364,12,364,7423,9,364, + 1,365,1,365,1,366,1,366,1,367,1,367,1,367,1,367,1,367,3,367,7434, + 8,367,1,368,1,368,3,368,7438,8,368,1,369,1,369,1,369,5,369,7443, + 8,369,10,369,12,369,7446,9,369,1,370,1,370,1,370,1,370,1,370,3,370, + 7453,8,370,3,370,7455,8,370,1,371,1,371,1,371,1,371,1,371,5,371, + 7462,8,371,10,371,12,371,7465,9,371,3,371,7467,8,371,1,371,1,371, + 1,372,1,372,1,372,1,372,1,372,1,372,1,372,1,372,3,372,7479,8,372, + 1,373,1,373,1,374,1,374,1,374,1,374,1,374,3,374,7488,8,374,1,374, + 1,374,1,374,1,374,1,374,3,374,7495,8,374,1,374,1,374,1,374,1,374, + 1,374,1,374,1,374,3,374,7504,8,374,1,375,1,375,1,375,1,375,1,375, + 1,376,1,376,1,376,1,376,1,376,1,376,1,376,3,376,7518,8,376,1,376, + 1,376,3,376,7522,8,376,3,376,7524,8,376,1,376,3,376,7527,8,376,1, + 377,4,377,7530,8,377,11,377,12,377,7531,1,378,5,378,7535,8,378,10, + 378,12,378,7538,9,378,1,379,1,379,1,379,5,379,7543,8,379,10,379, + 12,379,7546,9,379,1,380,1,380,1,380,3,380,7551,8,380,1,380,3,380, + 7554,8,380,1,380,1,380,3,380,7558,8,380,1,380,1,380,1,380,1,380, + 1,380,1,380,1,380,3,380,7567,8,380,1,381,1,381,1,381,5,381,7572, + 8,381,10,381,12,381,7575,9,381,1,381,1,381,1,382,1,382,1,382,5,382, + 7582,8,382,10,382,12,382,7585,9,382,1,383,1,383,1,383,5,383,7590, + 8,383,10,383,12,383,7593,9,383,1,384,1,384,1,384,5,384,7598,8,384, + 10,384,12,384,7601,9,384,1,385,1,385,1,385,5,385,7606,8,385,10,385, + 12,385,7609,9,385,1,386,1,386,1,387,1,387,1,388,1,388,1,389,1,389, + 1,390,1,390,1,391,1,391,1,392,1,392,3,392,7625,8,392,1,393,1,393, + 1,393,5,393,7630,8,393,10,393,12,393,7633,9,393,1,394,1,394,1,394, + 5,394,7638,8,394,10,394,12,394,7641,9,394,1,395,1,395,1,396,1,396, + 1,397,1,397,1,398,1,398,1,399,1,399,1,400,1,400,1,400,1,400,3,400, + 7657,8,400,1,401,1,401,1,401,1,401,3,401,7663,8,401,1,402,1,402, + 1,403,1,403,1,403,1,404,1,404,1,404,1,405,1,405,1,406,1,406,1,406, + 1,406,3,406,7679,8,406,1,407,1,407,1,407,1,407,3,407,7685,8,407, + 1,408,1,408,1,408,3,408,7690,8,408,1,409,1,409,1,409,1,409,5,409, + 7696,8,409,10,409,12,409,7699,9,409,1,409,1,409,3,409,7703,8,409, + 1,410,3,410,7706,8,410,1,410,1,410,1,411,1,411,1,411,1,411,1,411, + 3,411,7715,8,411,1,412,1,412,1,412,5,412,7720,8,412,10,412,12,412, + 7723,9,412,1,413,1,413,3,413,7727,8,413,1,414,1,414,3,414,7731,8, + 414,1,415,1,415,1,415,3,415,7736,8,415,1,416,1,416,1,416,1,416,3, + 416,7742,8,416,1,417,1,417,1,417,3,417,7747,8,417,1,418,1,418,1, + 418,3,418,7752,8,418,1,418,1,418,1,418,1,418,1,418,1,418,3,418,7760, + 8,418,1,419,1,419,1,420,1,420,1,420,1,420,1,420,1,420,1,420,1,420, + 1,420,1,420,1,420,1,420,1,420,1,420,1,420,1,420,1,420,1,420,1,420, + 1,420,1,420,1,420,1,420,1,420,1,420,1,420,1,420,1,420,1,420,1,420, + 1,420,1,420,1,420,1,420,1,420,1,420,1,420,1,420,1,420,1,420,1,420, + 1,420,1,420,1,420,1,420,1,420,1,420,1,420,1,420,1,420,1,420,3,420, + 7815,8,420,1,421,1,421,1,422,1,422,1,423,3,423,7822,8,423,1,423, + 1,423,1,423,1,423,4,423,7828,8,423,11,423,12,423,7829,3,423,7832, + 8,423,3,423,7834,8,423,1,423,1,423,5,423,7838,8,423,10,423,12,423, + 7841,9,423,1,423,3,423,7844,8,423,1,423,1,423,3,423,7848,8,423,1, + 424,1,424,1,424,1,424,1,425,1,425,1,425,1,425,1,425,3,425,7859,8, + 425,1,425,3,425,7862,8,425,1,425,1,425,3,425,7866,8,425,1,425,1, + 425,3,425,7870,8,425,1,425,1,425,3,425,7874,8,425,1,425,3,425,7877, + 8,425,1,425,3,425,7880,8,425,1,425,3,425,7883,8,425,1,425,1,425, + 1,425,1,425,1,425,5,425,7890,8,425,10,425,12,425,7893,9,425,1,425, + 1,425,3,425,7897,8,425,1,425,1,425,3,425,7901,8,425,1,425,1,425, + 1,426,1,426,1,426,1,427,1,427,1,428,1,428,1,428,1,428,1,428,1,428, + 1,428,1,428,1,428,1,428,1,428,1,428,1,428,1,428,1,428,1,428,1,428, + 1,428,1,428,1,428,1,428,1,428,1,428,1,428,3,428,7934,8,428,1,429, + 1,429,1,429,1,429,1,430,1,430,1,430,1,430,3,430,7944,8,430,1,430, + 1,430,3,430,7948,8,430,1,430,1,430,1,430,1,430,3,430,7954,8,430, + 1,430,1,430,1,430,3,430,7959,8,430,1,431,1,431,1,431,1,431,1,431, + 1,432,1,432,3,432,7968,8,432,1,432,1,432,1,432,1,432,5,432,7974, + 8,432,10,432,12,432,7977,9,432,1,432,1,432,1,433,1,433,1,433,1,433, + 1,434,1,434,3,434,7987,8,434,1,434,1,434,1,434,1,434,5,434,7993, + 8,434,10,434,12,434,7996,9,434,1,435,1,435,1,435,1,435,5,435,8002, + 8,435,10,435,12,435,8005,9,435,1,435,1,435,1,435,1,435,5,435,8011, + 8,435,10,435,12,435,8014,9,435,5,435,8016,8,435,10,435,12,435,8019, + 9,435,1,435,3,435,8022,8,435,1,435,1,435,1,435,1,435,1,436,1,436, + 5,436,8030,8,436,10,436,12,436,8033,9,436,1,437,1,437,3,437,8037, + 8,437,1,437,1,437,1,437,1,437,5,437,8043,8,437,10,437,12,437,8046, + 9,437,4,437,8048,8,437,11,437,12,437,8049,1,437,3,437,8053,8,437, + 1,437,1,437,1,437,1,437,1,438,3,438,8060,8,438,1,438,1,438,1,438, + 1,438,3,438,8066,8,438,1,438,1,438,1,439,1,439,1,439,1,439,3,439, + 8074,8,439,1,439,1,439,1,439,1,439,1,439,1,439,3,439,8082,8,439, + 1,439,3,439,8085,8,439,1,439,1,439,1,439,1,439,1,439,3,439,8092, + 8,439,3,439,8094,8,439,1,440,3,440,8097,8,440,1,440,1,440,1,440, + 1,440,3,440,8103,8,440,1,440,1,440,1,440,1,440,1,440,1,441,1,441, + 3,441,8112,8,441,1,441,1,441,3,441,8116,8,441,1,441,1,441,1,442, + 1,442,1,442,1,442,1,442,1,442,1,442,1,442,1,442,1,442,3,442,8130, + 8,442,1,442,3,442,8133,8,442,3,442,8135,8,442,1,442,1,442,1,443, + 1,443,3,443,8141,8,443,1,443,1,443,1,443,1,443,1,443,1,443,4,443, + 8149,8,443,11,443,12,443,8150,3,443,8153,8,443,3,443,8155,8,443, + 1,443,1,443,1,443,1,443,5,443,8161,8,443,10,443,12,443,8164,9,443, + 3,443,8166,8,443,1,443,3,443,8169,8,443,1,444,1,444,1,444,1,444, + 1,445,1,445,1,445,1,445,3,445,8179,8,445,1,445,1,445,1,446,1,446, + 5,446,8185,8,446,10,446,12,446,8188,9,446,1,446,1,446,1,446,3,446, + 8193,8,446,1,446,1,446,1,447,1,447,3,447,8199,8,447,1,447,1,447, + 1,448,1,448,1,448,3,448,8206,8,448,1,448,1,448,3,448,8210,8,448, + 1,448,1,448,3,448,8214,8,448,1,448,3,448,8217,8,448,1,448,3,448, + 8220,8,448,1,448,1,448,1,449,1,449,3,449,8226,8,449,1,449,1,449, + 1,450,1,450,1,450,3,450,8233,8,450,1,450,3,450,8236,8,450,1,450, + 1,450,1,450,1,450,1,450,1,450,3,450,8244,8,450,3,450,8246,8,450, + 1,450,1,450,1,450,1,450,1,450,5,450,8253,8,450,10,450,12,450,8256, + 9,450,1,450,1,450,3,450,8260,8,450,3,450,8262,8,450,1,450,1,450, + 1,451,1,451,1,451,3,451,8269,8,451,1,451,1,451,1,452,1,452,3,452, + 8275,8,452,1,452,3,452,8278,8,452,1,452,1,452,1,452,1,452,1,452, + 1,453,1,453,1,453,1,453,1,453,3,453,8290,8,453,1,453,1,453,1,453, + 1,453,1,453,3,453,8297,8,453,3,453,8299,8,453,1,454,1,454,3,454, + 8303,8,454,1,454,1,454,1,454,1,455,3,455,8309,8,455,1,455,1,455, + 1,455,3,455,8314,8,455,1,455,1,455,3,455,8318,8,455,1,455,3,455, + 8321,8,455,1,455,3,455,8324,8,455,1,455,1,455,1,455,1,455,1,455, + 4,455,8331,8,455,11,455,12,455,8332,1,455,3,455,8336,8,455,1,456, + 3,456,8339,8,456,1,456,1,456,3,456,8343,8,456,1,456,1,456,3,456, + 8347,8,456,3,456,8349,8,456,1,456,3,456,8352,8,456,1,456,3,456,8355, + 8,456,1,457,1,457,1,457,1,457,3,457,8361,8,457,1,457,1,457,1,457, + 1,457,1,457,3,457,8368,8,457,1,457,1,457,1,457,1,457,1,457,3,457, + 8375,8,457,1,457,1,457,1,457,1,457,3,457,8381,8,457,3,457,8383,8, + 457,1,458,1,458,3,458,8387,8,458,1,458,1,458,1,458,3,458,8392,8, + 458,1,458,1,458,1,459,1,459,1,459,1,459,1,459,1,459,1,459,1,459, + 1,459,1,459,1,459,1,459,5,459,8408,8,459,10,459,12,459,8411,9,459, + 1,459,1,459,4,459,8415,8,459,11,459,12,459,8416,1,460,1,460,1,460, + 1,460,1,460,5,460,8424,8,460,10,460,12,460,8427,9,460,1,460,1,460, + 1,460,1,460,3,460,8433,8,460,1,461,1,461,3,461,8437,8,461,1,462, + 1,462,1,462,1,462,1,463,1,463,1,463,1,464,1,464,1,464,3,464,8449, + 8,464,1,464,3,464,8452,8,464,1,464,1,464,1,465,1,465,1,465,1,465, + 1,465,1,465,1,465,1,465,1,465,3,465,8465,8,465,1,465,3,465,8468, + 8,465,1,466,1,466,3,466,8472,8,466,1,467,1,467,1,467,1,467,1,467, + 5,467,8479,8,467,10,467,12,467,8482,9,467,1,467,1,467,5,467,8486, + 8,467,10,467,12,467,8489,9,467,4,467,8491,8,467,11,467,12,467,8492, + 1,468,1,468,1,468,3,468,8498,8,468,1,469,1,469,3,469,8502,8,469, + 1,470,3,470,8505,8,470,1,470,3,470,8508,8,470,1,470,3,470,8511,8, + 470,1,470,3,470,8514,8,470,1,470,3,470,8517,8,470,1,470,3,470,8520, + 8,470,1,470,3,470,8523,8,470,1,470,0,3,672,676,678,471,0,2,4,6,8, + 10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52, + 54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90,92,94,96, + 98,100,102,104,106,108,110,112,114,116,118,120,122,124,126,128,130, + 132,134,136,138,140,142,144,146,148,150,152,154,156,158,160,162, + 164,166,168,170,172,174,176,178,180,182,184,186,188,190,192,194, + 196,198,200,202,204,206,208,210,212,214,216,218,220,222,224,226, + 228,230,232,234,236,238,240,242,244,246,248,250,252,254,256,258, + 260,262,264,266,268,270,272,274,276,278,280,282,284,286,288,290, + 292,294,296,298,300,302,304,306,308,310,312,314,316,318,320,322, + 324,326,328,330,332,334,336,338,340,342,344,346,348,350,352,354, + 356,358,360,362,364,366,368,370,372,374,376,378,380,382,384,386, + 388,390,392,394,396,398,400,402,404,406,408,410,412,414,416,418, + 420,422,424,426,428,430,432,434,436,438,440,442,444,446,448,450, + 452,454,456,458,460,462,464,466,468,470,472,474,476,478,480,482, + 484,486,488,490,492,494,496,498,500,502,504,506,508,510,512,514, + 516,518,520,522,524,526,528,530,532,534,536,538,540,542,544,546, + 548,550,552,554,556,558,560,562,564,566,568,570,572,574,576,578, + 580,582,584,586,588,590,592,594,596,598,600,602,604,606,608,610, + 612,614,616,618,620,622,624,626,628,630,632,634,636,638,640,642, + 644,646,648,650,652,654,656,658,660,662,664,666,668,670,672,674, + 676,678,680,682,684,686,688,690,692,694,696,698,700,702,704,706, + 708,710,712,714,716,718,720,722,724,726,728,730,732,734,736,738, + 740,742,744,746,748,750,752,754,756,758,760,762,764,766,768,770, + 772,774,776,778,780,782,784,786,788,790,792,794,796,798,800,802, + 804,806,808,810,812,814,816,818,820,822,824,826,828,830,832,834, + 836,838,840,842,844,846,848,850,852,854,856,858,860,862,864,866, + 868,870,872,874,876,878,880,882,884,886,888,890,892,894,896,898, + 900,902,904,906,908,910,912,914,916,918,920,922,924,926,928,930, + 932,934,936,938,940,0,119,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,1,0,549,551, + 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, @@ -54060,2987 +58133,2984 @@ export class PostgreSqlParser extends SQLParserBase { 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,9970,0,943,1,0,0,0,2,948, - 1,0,0,0,4,1072,1,0,0,0,6,1074,1,0,0,0,8,1077,1,0,0,0,10,1127,1,0, - 0,0,12,1137,1,0,0,0,14,1139,1,0,0,0,16,1151,1,0,0,0,18,1163,1,0, - 0,0,20,1174,1,0,0,0,22,1208,1,0,0,0,24,1252,1,0,0,0,26,1254,1,0, - 0,0,28,1266,1,0,0,0,30,1273,1,0,0,0,32,1292,1,0,0,0,34,1300,1,0, - 0,0,36,1302,1,0,0,0,38,1316,1,0,0,0,40,1320,1,0,0,0,42,1357,1,0, - 0,0,44,1359,1,0,0,0,46,1367,1,0,0,0,48,1377,1,0,0,0,50,1384,1,0, - 0,0,52,1392,1,0,0,0,54,1398,1,0,0,0,56,1414,1,0,0,0,58,1418,1,0, - 0,0,60,1420,1,0,0,0,62,1432,1,0,0,0,64,1437,1,0,0,0,66,1442,1,0, - 0,0,68,1444,1,0,0,0,70,1456,1,0,0,0,72,1464,1,0,0,0,74,1466,1,0, - 0,0,76,1586,1,0,0,0,78,1588,1,0,0,0,80,1602,1,0,0,0,82,1604,1,0, - 0,0,84,1841,1,0,0,0,86,1848,1,0,0,0,88,1850,1,0,0,0,90,1852,1,0, - 0,0,92,1855,1,0,0,0,94,1866,1,0,0,0,96,1869,1,0,0,0,98,1899,1,0, - 0,0,100,1901,1,0,0,0,102,1942,1,0,0,0,104,1944,1,0,0,0,106,1998, - 1,0,0,0,108,2044,1,0,0,0,110,2065,1,0,0,0,112,2067,1,0,0,0,114,2084, - 1,0,0,0,116,2165,1,0,0,0,118,2167,1,0,0,0,120,2178,1,0,0,0,122,2201, - 1,0,0,0,124,2219,1,0,0,0,126,2221,1,0,0,0,128,2256,1,0,0,0,130,2349, - 1,0,0,0,132,2354,1,0,0,0,134,2356,1,0,0,0,136,2454,1,0,0,0,138,2456, - 1,0,0,0,140,2460,1,0,0,0,142,2471,1,0,0,0,144,2479,1,0,0,0,146,2482, - 1,0,0,0,148,2485,1,0,0,0,150,2503,1,0,0,0,152,2505,1,0,0,0,154,2509, - 1,0,0,0,156,2522,1,0,0,0,158,2524,1,0,0,0,160,2529,1,0,0,0,162,2549, - 1,0,0,0,164,2557,1,0,0,0,166,2564,1,0,0,0,168,2566,1,0,0,0,170,2575, - 1,0,0,0,172,2578,1,0,0,0,174,2582,1,0,0,0,176,2586,1,0,0,0,178,2611, - 1,0,0,0,180,2621,1,0,0,0,182,2635,1,0,0,0,184,2651,1,0,0,0,186,2657, - 1,0,0,0,188,2684,1,0,0,0,190,2694,1,0,0,0,192,2710,1,0,0,0,194,2754, - 1,0,0,0,196,2761,1,0,0,0,198,2763,1,0,0,0,200,2789,1,0,0,0,202,2800, - 1,0,0,0,204,2819,1,0,0,0,206,2830,1,0,0,0,208,2868,1,0,0,0,210,2889, - 1,0,0,0,212,2891,1,0,0,0,214,2911,1,0,0,0,216,2923,1,0,0,0,218,2935, - 1,0,0,0,220,2938,1,0,0,0,222,2941,1,0,0,0,224,2961,1,0,0,0,226,2966, - 1,0,0,0,228,3015,1,0,0,0,230,3017,1,0,0,0,232,3040,1,0,0,0,234,3056, - 1,0,0,0,236,3068,1,0,0,0,238,3095,1,0,0,0,240,3110,1,0,0,0,242,3173, - 1,0,0,0,244,3175,1,0,0,0,246,3180,1,0,0,0,248,3186,1,0,0,0,250,3273, - 1,0,0,0,252,3279,1,0,0,0,254,3281,1,0,0,0,256,3297,1,0,0,0,258,3299, - 1,0,0,0,260,3308,1,0,0,0,262,3312,1,0,0,0,264,3325,1,0,0,0,266,3337, - 1,0,0,0,268,3339,1,0,0,0,270,3361,1,0,0,0,272,3373,1,0,0,0,274,3384, - 1,0,0,0,276,3475,1,0,0,0,278,3477,1,0,0,0,280,3488,1,0,0,0,282,3499, - 1,0,0,0,284,3501,1,0,0,0,286,3527,1,0,0,0,288,3529,1,0,0,0,290,3533, - 1,0,0,0,292,3583,1,0,0,0,294,3585,1,0,0,0,296,3591,1,0,0,0,298,3616, - 1,0,0,0,300,3620,1,0,0,0,302,3834,1,0,0,0,304,3852,1,0,0,0,306,3878, - 1,0,0,0,308,3880,1,0,0,0,310,3888,1,0,0,0,312,3894,1,0,0,0,314,3898, - 1,0,0,0,316,3918,1,0,0,0,318,3924,1,0,0,0,320,3991,1,0,0,0,322,4022, - 1,0,0,0,324,4068,1,0,0,0,326,4070,1,0,0,0,328,4072,1,0,0,0,330,4083, - 1,0,0,0,332,4120,1,0,0,0,334,4122,1,0,0,0,336,4128,1,0,0,0,338,4178, - 1,0,0,0,340,4181,1,0,0,0,342,4195,1,0,0,0,344,4216,1,0,0,0,346,4240, - 1,0,0,0,348,4281,1,0,0,0,350,4283,1,0,0,0,352,4285,1,0,0,0,354,4325, - 1,0,0,0,356,4342,1,0,0,0,358,4362,1,0,0,0,360,4415,1,0,0,0,362,4418, - 1,0,0,0,364,4424,1,0,0,0,366,4432,1,0,0,0,368,4445,1,0,0,0,370,4447, - 1,0,0,0,372,4460,1,0,0,0,374,4462,1,0,0,0,376,4475,1,0,0,0,378,4485, - 1,0,0,0,380,4496,1,0,0,0,382,4507,1,0,0,0,384,4509,1,0,0,0,386,4514, - 1,0,0,0,388,4528,1,0,0,0,390,4560,1,0,0,0,392,4597,1,0,0,0,394,4599, - 1,0,0,0,396,4602,1,0,0,0,398,4605,1,0,0,0,400,4622,1,0,0,0,402,4643, - 1,0,0,0,404,4659,1,0,0,0,406,4675,1,0,0,0,408,4697,1,0,0,0,410,4702, - 1,0,0,0,412,4705,1,0,0,0,414,4713,1,0,0,0,416,4738,1,0,0,0,418,4741, - 1,0,0,0,420,4769,1,0,0,0,422,4774,1,0,0,0,424,4814,1,0,0,0,426,5026, - 1,0,0,0,428,5028,1,0,0,0,430,5116,1,0,0,0,432,5118,1,0,0,0,434,5124, - 1,0,0,0,436,5135,1,0,0,0,438,5145,1,0,0,0,440,5225,1,0,0,0,442,5227, - 1,0,0,0,444,5241,1,0,0,0,446,5263,1,0,0,0,448,5336,1,0,0,0,450,5338, - 1,0,0,0,452,5379,1,0,0,0,454,5381,1,0,0,0,456,5386,1,0,0,0,458,5389, - 1,0,0,0,460,5392,1,0,0,0,462,5442,1,0,0,0,464,5444,1,0,0,0,466,5455, - 1,0,0,0,468,5457,1,0,0,0,470,5467,1,0,0,0,472,5502,1,0,0,0,474,5505, - 1,0,0,0,476,5526,1,0,0,0,478,5536,1,0,0,0,480,5556,1,0,0,0,482,5562, - 1,0,0,0,484,5568,1,0,0,0,486,5573,1,0,0,0,488,5586,1,0,0,0,490,5613, - 1,0,0,0,492,5661,1,0,0,0,494,5663,1,0,0,0,496,5701,1,0,0,0,498,5703, - 1,0,0,0,500,5724,1,0,0,0,502,5744,1,0,0,0,504,5748,1,0,0,0,506,5763, - 1,0,0,0,508,5765,1,0,0,0,510,5769,1,0,0,0,512,5773,1,0,0,0,514,5781, - 1,0,0,0,516,5805,1,0,0,0,518,5807,1,0,0,0,520,5818,1,0,0,0,522,5826, - 1,0,0,0,524,5842,1,0,0,0,526,5867,1,0,0,0,528,5869,1,0,0,0,530,5873, - 1,0,0,0,532,5882,1,0,0,0,534,5922,1,0,0,0,536,5933,1,0,0,0,538,5941, - 1,0,0,0,540,5944,1,0,0,0,542,5948,1,0,0,0,544,5963,1,0,0,0,546,5988, - 1,0,0,0,548,6003,1,0,0,0,550,6029,1,0,0,0,552,6031,1,0,0,0,554,6054, - 1,0,0,0,556,6056,1,0,0,0,558,6064,1,0,0,0,560,6082,1,0,0,0,562,6106, - 1,0,0,0,564,6118,1,0,0,0,566,6122,1,0,0,0,568,6134,1,0,0,0,570,6154, - 1,0,0,0,572,6162,1,0,0,0,574,6176,1,0,0,0,576,6199,1,0,0,0,578,6201, - 1,0,0,0,580,6206,1,0,0,0,582,6216,1,0,0,0,584,6237,1,0,0,0,586,6239, - 1,0,0,0,588,6248,1,0,0,0,590,6259,1,0,0,0,592,6269,1,0,0,0,594,6271, - 1,0,0,0,596,6278,1,0,0,0,598,6309,1,0,0,0,600,6339,1,0,0,0,602,6341, - 1,0,0,0,604,6350,1,0,0,0,606,6353,1,0,0,0,608,6411,1,0,0,0,610,6446, - 1,0,0,0,612,6449,1,0,0,0,614,6470,1,0,0,0,616,6472,1,0,0,0,618,6480, - 1,0,0,0,620,6497,1,0,0,0,622,6523,1,0,0,0,624,6525,1,0,0,0,626,6533, - 1,0,0,0,628,6540,1,0,0,0,630,6564,1,0,0,0,632,6570,1,0,0,0,634,6578, - 1,0,0,0,636,6581,1,0,0,0,638,6588,1,0,0,0,640,6596,1,0,0,0,642,6601, - 1,0,0,0,644,6631,1,0,0,0,646,6658,1,0,0,0,648,6686,1,0,0,0,650,6703, - 1,0,0,0,652,6709,1,0,0,0,654,6727,1,0,0,0,656,6729,1,0,0,0,658,6733, - 1,0,0,0,660,6750,1,0,0,0,662,6755,1,0,0,0,664,6793,1,0,0,0,666,6795, - 1,0,0,0,668,6799,1,0,0,0,670,6801,1,0,0,0,672,6810,1,0,0,0,674,6894, - 1,0,0,0,676,6900,1,0,0,0,678,7009,1,0,0,0,680,7041,1,0,0,0,682,7092, - 1,0,0,0,684,7096,1,0,0,0,686,7272,1,0,0,0,688,7274,1,0,0,0,690,7282, - 1,0,0,0,692,7287,1,0,0,0,694,7289,1,0,0,0,696,7297,1,0,0,0,698,7300, - 1,0,0,0,700,7309,1,0,0,0,702,7312,1,0,0,0,704,7316,1,0,0,0,706,7321, - 1,0,0,0,708,7338,1,0,0,0,710,7365,1,0,0,0,712,7374,1,0,0,0,714,7376, - 1,0,0,0,716,7383,1,0,0,0,718,7387,1,0,0,0,720,7389,1,0,0,0,722,7397, - 1,0,0,0,724,7405,1,0,0,0,726,7412,1,0,0,0,728,7414,1,0,0,0,730,7422, - 1,0,0,0,732,7424,1,0,0,0,734,7431,1,0,0,0,736,7435,1,0,0,0,738,7437, - 1,0,0,0,740,7452,1,0,0,0,742,7454,1,0,0,0,744,7476,1,0,0,0,746,7478, - 1,0,0,0,748,7501,1,0,0,0,750,7503,1,0,0,0,752,7525,1,0,0,0,754,7528, - 1,0,0,0,756,7535,1,0,0,0,758,7538,1,0,0,0,760,7558,1,0,0,0,762,7565, - 1,0,0,0,764,7570,1,0,0,0,766,7578,1,0,0,0,768,7586,1,0,0,0,770,7594, - 1,0,0,0,772,7602,1,0,0,0,774,7604,1,0,0,0,776,7606,1,0,0,0,778,7608, - 1,0,0,0,780,7610,1,0,0,0,782,7612,1,0,0,0,784,7614,1,0,0,0,786,7618, - 1,0,0,0,788,7626,1,0,0,0,790,7634,1,0,0,0,792,7636,1,0,0,0,794,7638, - 1,0,0,0,796,7640,1,0,0,0,798,7642,1,0,0,0,800,7648,1,0,0,0,802,7654, - 1,0,0,0,804,7656,1,0,0,0,806,7669,1,0,0,0,808,7682,1,0,0,0,810,7684, - 1,0,0,0,812,7690,1,0,0,0,814,7696,1,0,0,0,816,7698,1,0,0,0,818,7714, - 1,0,0,0,820,7717,1,0,0,0,822,7726,1,0,0,0,824,7728,1,0,0,0,826,7738, - 1,0,0,0,828,7742,1,0,0,0,830,7747,1,0,0,0,832,7753,1,0,0,0,834,7766, - 1,0,0,0,836,7768,1,0,0,0,838,7821,1,0,0,0,840,7823,1,0,0,0,842,7825, - 1,0,0,0,844,7828,1,0,0,0,846,7856,1,0,0,0,848,7860,1,0,0,0,850,7911, - 1,0,0,0,852,7914,1,0,0,0,854,7940,1,0,0,0,856,7942,1,0,0,0,858,7965, - 1,0,0,0,860,7967,1,0,0,0,862,7972,1,0,0,0,864,7987,1,0,0,0,866,7993, - 1,0,0,0,868,8004,1,0,0,0,870,8034,1,0,0,0,872,8041,1,0,0,0,874,8066, - 1,0,0,0,876,8076,1,0,0,0,878,8103,1,0,0,0,880,8116,1,0,0,0,882,8126, - 1,0,0,0,884,8145,1,0,0,0,886,8177,1,0,0,0,888,8181,1,0,0,0,890,8189, - 1,0,0,0,892,8203,1,0,0,0,894,8209,1,0,0,0,896,8230,1,0,0,0,898,8236, - 1,0,0,0,900,8275,1,0,0,0,902,8279,1,0,0,0,904,8305,1,0,0,0,906,8307, - 1,0,0,0,908,8315,1,0,0,0,910,8355,1,0,0,0,912,8389,1,0,0,0,914,8391, - 1,0,0,0,916,8402,1,0,0,0,918,8439,1,0,0,0,920,8443,1,0,0,0,922,8445, - 1,0,0,0,924,8449,1,0,0,0,926,8452,1,0,0,0,928,8474,1,0,0,0,930,8478, - 1,0,0,0,932,8480,1,0,0,0,934,8504,1,0,0,0,936,8508,1,0,0,0,938,8511, - 1,0,0,0,940,942,3,2,1,0,941,940,1,0,0,0,942,945,1,0,0,0,943,941, - 1,0,0,0,943,944,1,0,0,0,944,946,1,0,0,0,945,943,1,0,0,0,946,947, - 5,0,0,1,947,1,1,0,0,0,948,950,3,4,2,0,949,951,5,7,0,0,950,949,1, - 0,0,0,950,951,1,0,0,0,951,3,1,0,0,0,952,1073,3,272,136,0,953,1073, - 3,482,241,0,954,1073,3,478,239,0,955,1073,3,480,240,0,956,1073,3, - 346,173,0,957,1073,3,488,244,0,958,1073,3,286,143,0,959,1073,3,204, - 102,0,960,1073,3,206,103,0,961,1073,3,212,106,0,962,1073,3,226,113, - 0,963,1073,3,398,199,0,964,1073,3,28,14,0,965,1073,3,428,214,0,966, - 1073,3,430,215,0,967,1073,3,440,220,0,968,1073,3,432,216,0,969,1073, - 3,438,219,0,970,1073,3,238,119,0,971,1073,3,240,120,0,972,1073,3, - 192,96,0,973,1073,3,484,242,0,974,1073,3,76,38,0,975,1073,3,424, - 212,0,976,1073,3,100,50,0,977,1073,3,444,222,0,978,1073,3,18,9,0, - 979,1073,3,20,10,0,980,1073,3,16,8,0,981,1073,3,448,224,0,982,1073, - 3,178,89,0,983,1073,3,492,246,0,984,1073,3,490,245,0,985,1073,3, - 234,117,0,986,1073,3,500,250,0,987,1073,3,6,3,0,988,1073,3,72,36, - 0,989,1073,3,104,52,0,990,1073,3,496,248,0,991,1073,3,318,159,0, - 992,1073,3,70,35,0,993,1073,3,106,53,0,994,1073,3,248,124,0,995, - 1073,3,180,90,0,996,1073,3,274,137,0,997,1073,3,414,207,0,998,1073, - 3,494,247,0,999,1073,3,486,243,0,1000,1073,3,202,101,0,1001,1073, - 3,208,104,0,1002,1073,3,222,111,0,1003,1073,3,228,114,0,1004,1073, - 3,358,179,0,1005,1073,3,26,13,0,1006,1073,3,186,93,0,1007,1073,3, - 290,145,0,1008,1073,3,294,147,0,1009,1073,3,442,221,0,1010,1073, - 3,296,148,0,1011,1073,3,236,118,0,1012,1073,3,198,99,0,1013,1073, - 3,30,15,0,1014,1073,3,190,95,0,1015,1073,3,114,57,0,1016,1073,3, - 446,223,0,1017,1073,3,176,88,0,1018,1073,3,200,100,0,1019,1073,3, - 418,209,0,1020,1073,3,250,125,0,1021,1073,3,268,134,0,1022,1073, - 3,8,4,0,1023,1073,3,14,7,0,1024,1073,3,232,116,0,1025,1073,3,474, - 237,0,1026,1073,3,530,265,0,1027,1073,3,552,276,0,1028,1073,3,276, - 138,0,1029,1073,3,542,271,0,1030,1073,3,74,37,0,1031,1073,3,412, - 206,0,1032,1073,3,302,151,0,1033,1073,3,526,263,0,1034,1073,3,514, - 257,0,1035,1073,3,322,161,0,1036,1073,3,328,164,0,1037,1073,3,342, - 171,0,1038,1073,3,908,454,0,1039,1073,3,230,115,0,1040,1073,3,352, - 176,0,1041,1073,3,532,266,0,1042,1073,3,458,229,0,1043,1073,3,188, - 94,0,1044,1073,3,472,236,0,1045,1073,3,544,272,0,1046,1073,3,454, - 227,0,1047,1073,3,520,260,0,1048,1073,3,300,150,0,1049,1073,3,422, - 211,0,1050,1073,3,402,201,0,1051,1073,3,400,200,0,1052,1073,3,404, - 202,0,1053,1073,3,426,213,0,1054,1073,3,330,165,0,1055,1073,3,344, - 172,0,1056,1073,3,450,225,0,1057,1073,3,320,160,0,1058,1073,3,554, - 277,0,1059,1073,3,462,231,0,1060,1073,3,314,157,0,1061,1073,3,460, - 230,0,1062,1073,3,546,273,0,1063,1073,3,498,249,0,1064,1073,3,60, - 30,0,1065,1073,3,36,18,0,1066,1073,3,68,34,0,1067,1073,3,470,235, - 0,1068,1070,5,583,0,0,1069,1071,5,584,0,0,1070,1069,1,0,0,0,1070, - 1071,1,0,0,0,1071,1073,1,0,0,0,1072,952,1,0,0,0,1072,953,1,0,0,0, - 1072,954,1,0,0,0,1072,955,1,0,0,0,1072,956,1,0,0,0,1072,957,1,0, - 0,0,1072,958,1,0,0,0,1072,959,1,0,0,0,1072,960,1,0,0,0,1072,961, - 1,0,0,0,1072,962,1,0,0,0,1072,963,1,0,0,0,1072,964,1,0,0,0,1072, - 965,1,0,0,0,1072,966,1,0,0,0,1072,967,1,0,0,0,1072,968,1,0,0,0,1072, - 969,1,0,0,0,1072,970,1,0,0,0,1072,971,1,0,0,0,1072,972,1,0,0,0,1072, - 973,1,0,0,0,1072,974,1,0,0,0,1072,975,1,0,0,0,1072,976,1,0,0,0,1072, - 977,1,0,0,0,1072,978,1,0,0,0,1072,979,1,0,0,0,1072,980,1,0,0,0,1072, - 981,1,0,0,0,1072,982,1,0,0,0,1072,983,1,0,0,0,1072,984,1,0,0,0,1072, - 985,1,0,0,0,1072,986,1,0,0,0,1072,987,1,0,0,0,1072,988,1,0,0,0,1072, - 989,1,0,0,0,1072,990,1,0,0,0,1072,991,1,0,0,0,1072,992,1,0,0,0,1072, - 993,1,0,0,0,1072,994,1,0,0,0,1072,995,1,0,0,0,1072,996,1,0,0,0,1072, - 997,1,0,0,0,1072,998,1,0,0,0,1072,999,1,0,0,0,1072,1000,1,0,0,0, - 1072,1001,1,0,0,0,1072,1002,1,0,0,0,1072,1003,1,0,0,0,1072,1004, - 1,0,0,0,1072,1005,1,0,0,0,1072,1006,1,0,0,0,1072,1007,1,0,0,0,1072, - 1008,1,0,0,0,1072,1009,1,0,0,0,1072,1010,1,0,0,0,1072,1011,1,0,0, - 0,1072,1012,1,0,0,0,1072,1013,1,0,0,0,1072,1014,1,0,0,0,1072,1015, - 1,0,0,0,1072,1016,1,0,0,0,1072,1017,1,0,0,0,1072,1018,1,0,0,0,1072, - 1019,1,0,0,0,1072,1020,1,0,0,0,1072,1021,1,0,0,0,1072,1022,1,0,0, - 0,1072,1023,1,0,0,0,1072,1024,1,0,0,0,1072,1025,1,0,0,0,1072,1026, - 1,0,0,0,1072,1027,1,0,0,0,1072,1028,1,0,0,0,1072,1029,1,0,0,0,1072, - 1030,1,0,0,0,1072,1031,1,0,0,0,1072,1032,1,0,0,0,1072,1033,1,0,0, - 0,1072,1034,1,0,0,0,1072,1035,1,0,0,0,1072,1036,1,0,0,0,1072,1037, - 1,0,0,0,1072,1038,1,0,0,0,1072,1039,1,0,0,0,1072,1040,1,0,0,0,1072, - 1041,1,0,0,0,1072,1042,1,0,0,0,1072,1043,1,0,0,0,1072,1044,1,0,0, - 0,1072,1045,1,0,0,0,1072,1046,1,0,0,0,1072,1047,1,0,0,0,1072,1048, - 1,0,0,0,1072,1049,1,0,0,0,1072,1050,1,0,0,0,1072,1051,1,0,0,0,1072, - 1052,1,0,0,0,1072,1053,1,0,0,0,1072,1054,1,0,0,0,1072,1055,1,0,0, - 0,1072,1056,1,0,0,0,1072,1057,1,0,0,0,1072,1058,1,0,0,0,1072,1059, - 1,0,0,0,1072,1060,1,0,0,0,1072,1061,1,0,0,0,1072,1062,1,0,0,0,1072, - 1063,1,0,0,0,1072,1064,1,0,0,0,1072,1065,1,0,0,0,1072,1066,1,0,0, - 0,1072,1067,1,0,0,0,1072,1068,1,0,0,0,1073,5,1,0,0,0,1074,1075,5, - 433,0,0,1075,1076,3,680,340,0,1076,7,1,0,0,0,1077,1078,5,46,0,0, - 1078,1079,5,318,0,0,1079,1081,3,822,411,0,1080,1082,5,105,0,0,1081, - 1080,1,0,0,0,1081,1082,1,0,0,0,1082,1086,1,0,0,0,1083,1085,3,12, - 6,0,1084,1083,1,0,0,0,1085,1088,1,0,0,0,1086,1084,1,0,0,0,1086,1087, - 1,0,0,0,1087,9,1,0,0,0,1088,1086,1,0,0,0,1089,1092,5,287,0,0,1090, - 1093,3,816,408,0,1091,1093,5,78,0,0,1092,1090,1,0,0,0,1092,1091, - 1,0,0,0,1093,1128,1,0,0,0,1094,1095,7,0,0,0,1095,1096,5,287,0,0, - 1096,1128,3,816,408,0,1097,1128,5,228,0,0,1098,1128,5,229,0,0,1099, - 1128,5,236,0,0,1100,1128,5,237,0,0,1101,1128,5,234,0,0,1102,1128, - 5,235,0,0,1103,1128,5,232,0,0,1104,1128,5,233,0,0,1105,1128,5,230, - 0,0,1106,1128,5,231,0,0,1107,1128,5,535,0,0,1108,1128,5,536,0,0, - 1109,1128,5,537,0,0,1110,1128,5,538,0,0,1111,1128,5,539,0,0,1112, - 1128,5,540,0,0,1113,1114,5,164,0,0,1114,1115,5,74,0,0,1115,1128, - 3,820,410,0,1116,1117,5,371,0,0,1117,1118,5,368,0,0,1118,1128,3, - 816,408,0,1119,1120,5,68,0,0,1120,1121,7,1,0,0,1121,1128,3,788,394, - 0,1122,1123,7,2,0,0,1123,1128,3,824,412,0,1124,1125,5,134,0,0,1125, - 1128,3,788,394,0,1126,1128,3,834,417,0,1127,1089,1,0,0,0,1127,1094, - 1,0,0,0,1127,1097,1,0,0,0,1127,1098,1,0,0,0,1127,1099,1,0,0,0,1127, - 1100,1,0,0,0,1127,1101,1,0,0,0,1127,1102,1,0,0,0,1127,1103,1,0,0, - 0,1127,1104,1,0,0,0,1127,1105,1,0,0,0,1127,1106,1,0,0,0,1127,1107, - 1,0,0,0,1127,1108,1,0,0,0,1127,1109,1,0,0,0,1127,1110,1,0,0,0,1127, - 1111,1,0,0,0,1127,1112,1,0,0,0,1127,1113,1,0,0,0,1127,1116,1,0,0, - 0,1127,1119,1,0,0,0,1127,1122,1,0,0,0,1127,1124,1,0,0,0,1127,1126, - 1,0,0,0,1128,11,1,0,0,0,1129,1138,3,10,5,0,1130,1131,5,348,0,0,1131, - 1138,5,574,0,0,1132,1133,7,3,0,0,1133,1138,3,824,412,0,1134,1135, - 5,68,0,0,1135,1136,7,1,0,0,1136,1138,3,824,412,0,1137,1129,1,0,0, - 0,1137,1130,1,0,0,0,1137,1132,1,0,0,0,1137,1134,1,0,0,0,1138,13, - 1,0,0,0,1139,1140,5,46,0,0,1140,1141,5,99,0,0,1141,1143,3,822,411, - 0,1142,1144,5,105,0,0,1143,1142,1,0,0,0,1143,1144,1,0,0,0,1144,1148, - 1,0,0,0,1145,1147,3,12,6,0,1146,1145,1,0,0,0,1147,1150,1,0,0,0,1148, - 1146,1,0,0,0,1148,1149,1,0,0,0,1149,15,1,0,0,0,1150,1148,1,0,0,0, - 1151,1152,5,138,0,0,1152,1153,7,2,0,0,1153,1155,3,822,411,0,1154, - 1156,5,105,0,0,1155,1154,1,0,0,0,1155,1156,1,0,0,0,1156,1160,1,0, - 0,0,1157,1159,3,10,5,0,1158,1157,1,0,0,0,1159,1162,1,0,0,0,1160, - 1158,1,0,0,0,1160,1161,1,0,0,0,1161,17,1,0,0,0,1162,1160,1,0,0,0, - 1163,1164,5,138,0,0,1164,1167,7,2,0,0,1165,1168,5,30,0,0,1166,1168, - 3,822,411,0,1167,1165,1,0,0,0,1167,1166,1,0,0,0,1168,1169,1,0,0, - 0,1169,1170,5,68,0,0,1170,1171,5,175,0,0,1171,1172,3,792,396,0,1172, - 1173,3,64,32,0,1173,19,1,0,0,0,1174,1175,5,138,0,0,1175,1176,5,442, - 0,0,1176,1178,3,798,399,0,1177,1179,3,362,181,0,1178,1177,1,0,0, - 0,1178,1179,1,0,0,0,1179,1180,1,0,0,0,1180,1181,3,22,11,0,1181,21, - 1,0,0,0,1182,1186,3,24,12,0,1183,1185,3,24,12,0,1184,1183,1,0,0, - 0,1185,1188,1,0,0,0,1186,1184,1,0,0,0,1186,1187,1,0,0,0,1187,1190, - 1,0,0,0,1188,1186,1,0,0,0,1189,1191,5,315,0,0,1190,1189,1,0,0,0, - 1190,1191,1,0,0,0,1191,1209,1,0,0,0,1192,1193,5,309,0,0,1193,1194, - 5,94,0,0,1194,1209,3,796,398,0,1195,1196,5,282,0,0,1196,1197,5,94, - 0,0,1197,1209,3,822,411,0,1198,1199,5,333,0,0,1199,1200,5,323,0, - 0,1200,1209,3,32,16,0,1201,1203,5,269,0,0,1202,1201,1,0,0,0,1202, - 1203,1,0,0,0,1203,1204,1,0,0,0,1204,1205,5,462,0,0,1205,1206,5,80, - 0,0,1206,1207,5,204,0,0,1207,1209,3,826,413,0,1208,1182,1,0,0,0, - 1208,1192,1,0,0,0,1208,1195,1,0,0,0,1208,1198,1,0,0,0,1208,1202, - 1,0,0,0,1209,23,1,0,0,0,1210,1253,5,222,0,0,1211,1253,5,338,0,0, - 1212,1253,5,377,0,0,1213,1215,5,77,0,0,1214,1213,1,0,0,0,1214,1215, - 1,0,0,0,1215,1216,1,0,0,0,1216,1253,5,250,0,0,1217,1219,5,205,0, - 0,1218,1217,1,0,0,0,1218,1219,1,0,0,0,1219,1220,1,0,0,0,1220,1221, - 5,327,0,0,1221,1228,5,243,0,0,1222,1224,5,205,0,0,1223,1222,1,0, - 0,0,1223,1224,1,0,0,0,1224,1225,1,0,0,0,1225,1226,5,327,0,0,1226, - 1228,5,181,0,0,1227,1218,1,0,0,0,1227,1223,1,0,0,0,1228,1253,1,0, - 0,0,1229,1230,5,460,0,0,1230,1253,7,4,0,0,1231,1232,5,170,0,0,1232, - 1253,3,832,416,0,1233,1234,5,320,0,0,1234,1253,3,826,413,0,1235, - 1236,5,333,0,0,1236,1237,3,826,413,0,1237,1240,7,5,0,0,1238,1241, - 3,826,413,0,1239,1241,5,53,0,0,1240,1238,1,0,0,0,1240,1239,1,0,0, - 0,1241,1253,1,0,0,0,1242,1243,5,333,0,0,1243,1244,3,826,413,0,1244, - 1245,5,64,0,0,1245,1246,5,434,0,0,1246,1253,1,0,0,0,1247,1250,5, - 313,0,0,1248,1251,3,826,413,0,1249,1251,5,30,0,0,1250,1248,1,0,0, - 0,1250,1249,1,0,0,0,1251,1253,1,0,0,0,1252,1210,1,0,0,0,1252,1211, - 1,0,0,0,1252,1212,1,0,0,0,1252,1214,1,0,0,0,1252,1227,1,0,0,0,1252, - 1229,1,0,0,0,1252,1231,1,0,0,0,1252,1233,1,0,0,0,1252,1235,1,0,0, - 0,1252,1242,1,0,0,0,1252,1247,1,0,0,0,1253,25,1,0,0,0,1254,1255, - 5,46,0,0,1255,1256,5,66,0,0,1256,1258,3,822,411,0,1257,1259,5,105, - 0,0,1258,1257,1,0,0,0,1258,1259,1,0,0,0,1259,1263,1,0,0,0,1260,1262, - 3,12,6,0,1261,1260,1,0,0,0,1262,1265,1,0,0,0,1263,1261,1,0,0,0,1263, - 1264,1,0,0,0,1264,27,1,0,0,0,1265,1263,1,0,0,0,1266,1267,5,138,0, - 0,1267,1268,5,66,0,0,1268,1269,3,822,411,0,1269,1270,7,6,0,0,1270, - 1271,5,99,0,0,1271,1272,3,824,412,0,1272,29,1,0,0,0,1273,1274,5, - 46,0,0,1274,1276,5,323,0,0,1275,1277,3,288,144,0,1276,1275,1,0,0, - 0,1276,1277,1,0,0,0,1277,1284,1,0,0,0,1278,1280,3,32,16,0,1279,1278, - 1,0,0,0,1279,1280,1,0,0,0,1280,1281,1,0,0,0,1281,1282,5,106,0,0, - 1282,1285,3,822,411,0,1283,1285,3,32,16,0,1284,1279,1,0,0,0,1284, - 1283,1,0,0,0,1285,1289,1,0,0,0,1286,1288,3,34,17,0,1287,1286,1,0, - 0,0,1288,1291,1,0,0,0,1289,1287,1,0,0,0,1289,1290,1,0,0,0,1290,31, - 1,0,0,0,1291,1289,1,0,0,0,1292,1293,3,310,155,0,1293,33,1,0,0,0, - 1294,1301,3,114,57,0,1295,1301,3,352,176,0,1296,1301,3,190,95,0, - 1297,1301,3,250,125,0,1298,1301,3,328,164,0,1299,1301,3,470,235, - 0,1300,1294,1,0,0,0,1300,1295,1,0,0,0,1300,1296,1,0,0,0,1300,1297, - 1,0,0,0,1300,1298,1,0,0,0,1300,1299,1,0,0,0,1301,35,1,0,0,0,1302, - 1304,5,333,0,0,1303,1305,7,7,0,0,1304,1303,1,0,0,0,1304,1305,1,0, - 0,0,1305,1306,1,0,0,0,1306,1307,3,38,19,0,1307,37,1,0,0,0,1308,1309, - 5,356,0,0,1309,1317,3,468,234,0,1310,1311,5,332,0,0,1311,1312,5, - 154,0,0,1312,1313,5,36,0,0,1313,1314,5,356,0,0,1314,1317,3,468,234, - 0,1315,1317,3,42,21,0,1316,1308,1,0,0,0,1316,1310,1,0,0,0,1316,1315, - 1,0,0,0,1317,39,1,0,0,0,1318,1321,5,30,0,0,1319,1321,3,44,22,0,1320, - 1318,1,0,0,0,1320,1319,1,0,0,0,1321,1323,1,0,0,0,1322,1324,7,5,0, - 0,1323,1322,1,0,0,0,1323,1324,1,0,0,0,1324,1327,1,0,0,0,1325,1328, - 5,53,0,0,1326,1328,3,46,23,0,1327,1325,1,0,0,0,1327,1326,1,0,0,0, - 1327,1328,1,0,0,0,1328,41,1,0,0,0,1329,1330,5,418,0,0,1330,1331, - 5,386,0,0,1331,1358,3,56,28,0,1332,1333,5,152,0,0,1333,1358,3,816, - 408,0,1334,1335,5,323,0,0,1335,1358,3,794,397,0,1336,1339,5,267, - 0,0,1337,1340,3,816,408,0,1338,1340,5,53,0,0,1339,1337,1,0,0,0,1339, - 1338,1,0,0,0,1339,1340,1,0,0,0,1340,1358,1,0,0,0,1341,1342,5,318, - 0,0,1342,1358,3,58,29,0,1343,1344,5,332,0,0,1344,1345,5,106,0,0, - 1345,1358,3,58,29,0,1346,1347,5,383,0,0,1347,1348,5,279,0,0,1348, - 1358,3,692,346,0,1349,1350,5,356,0,0,1350,1351,5,337,0,0,1351,1358, - 3,816,408,0,1352,1353,3,44,22,0,1353,1354,5,64,0,0,1354,1355,5,434, - 0,0,1355,1358,1,0,0,0,1356,1358,3,40,20,0,1357,1329,1,0,0,0,1357, - 1332,1,0,0,0,1357,1334,1,0,0,0,1357,1336,1,0,0,0,1357,1341,1,0,0, - 0,1357,1343,1,0,0,0,1357,1346,1,0,0,0,1357,1349,1,0,0,0,1357,1352, - 1,0,0,0,1357,1356,1,0,0,0,1358,43,1,0,0,0,1359,1364,3,826,413,0, - 1360,1361,5,11,0,0,1361,1363,3,826,413,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,45,1,0,0,0, - 1366,1364,1,0,0,0,1367,1372,3,48,24,0,1368,1369,5,6,0,0,1369,1371, - 3,48,24,0,1370,1368,1,0,0,0,1371,1374,1,0,0,0,1372,1370,1,0,0,0, - 1372,1373,1,0,0,0,1373,47,1,0,0,0,1374,1372,1,0,0,0,1375,1378,3, - 54,27,0,1376,1378,3,196,98,0,1377,1375,1,0,0,0,1377,1376,1,0,0,0, - 1378,49,1,0,0,0,1379,1380,5,300,0,0,1380,1385,7,8,0,0,1381,1382, - 5,310,0,0,1382,1385,5,300,0,0,1383,1385,5,330,0,0,1384,1379,1,0, - 0,0,1384,1381,1,0,0,0,1384,1383,1,0,0,0,1385,51,1,0,0,0,1386,1393, - 5,96,0,0,1387,1393,5,60,0,0,1388,1393,5,80,0,0,1389,1393,3,806,403, - 0,1390,1393,3,840,420,0,1391,1393,3,816,408,0,1392,1386,1,0,0,0, - 1392,1387,1,0,0,0,1392,1388,1,0,0,0,1392,1389,1,0,0,0,1392,1390, - 1,0,0,0,1392,1391,1,0,0,0,1393,53,1,0,0,0,1394,1399,5,96,0,0,1395, - 1399,5,60,0,0,1396,1399,5,80,0,0,1397,1399,3,58,29,0,1398,1394,1, - 0,0,0,1398,1395,1,0,0,0,1398,1396,1,0,0,0,1398,1397,1,0,0,0,1399, - 55,1,0,0,0,1400,1415,3,816,408,0,1401,1415,5,53,0,0,1402,1415,3, - 834,417,0,1403,1404,5,403,0,0,1404,1406,3,816,408,0,1405,1407,3, - 664,332,0,1406,1405,1,0,0,0,1406,1407,1,0,0,0,1407,1415,1,0,0,0, - 1408,1409,5,403,0,0,1409,1410,3,656,328,0,1410,1411,3,816,408,0, - 1411,1415,1,0,0,0,1412,1415,3,196,98,0,1413,1415,5,254,0,0,1414, - 1400,1,0,0,0,1414,1401,1,0,0,0,1414,1402,1,0,0,0,1414,1403,1,0,0, - 0,1414,1408,1,0,0,0,1414,1412,1,0,0,0,1414,1413,1,0,0,0,1415,57, - 1,0,0,0,1416,1419,3,830,415,0,1417,1419,3,816,408,0,1418,1416,1, - 0,0,0,1418,1417,1,0,0,0,1419,59,1,0,0,0,1420,1421,5,313,0,0,1421, - 1422,3,62,31,0,1422,61,1,0,0,0,1423,1424,5,418,0,0,1424,1433,5,386, - 0,0,1425,1426,5,356,0,0,1426,1427,5,244,0,0,1427,1433,5,251,0,0, - 1428,1429,5,332,0,0,1429,1433,5,106,0,0,1430,1433,5,30,0,0,1431, - 1433,3,44,22,0,1432,1423,1,0,0,0,1432,1425,1,0,0,0,1432,1428,1,0, - 0,0,1432,1430,1,0,0,0,1432,1431,1,0,0,0,1433,63,1,0,0,0,1434,1435, - 5,333,0,0,1435,1438,3,38,19,0,1436,1438,3,60,30,0,1437,1434,1,0, - 0,0,1437,1436,1,0,0,0,1438,65,1,0,0,0,1439,1440,5,333,0,0,1440,1443, - 3,42,21,0,1441,1443,3,60,30,0,1442,1439,1,0,0,0,1442,1441,1,0,0, - 0,1443,67,1,0,0,0,1444,1454,5,335,0,0,1445,1455,3,44,22,0,1446,1447, - 5,418,0,0,1447,1455,5,386,0,0,1448,1449,5,356,0,0,1449,1450,5,244, - 0,0,1450,1455,5,251,0,0,1451,1452,5,332,0,0,1452,1455,5,106,0,0, - 1453,1455,5,30,0,0,1454,1445,1,0,0,0,1454,1446,1,0,0,0,1454,1448, - 1,0,0,0,1454,1451,1,0,0,0,1454,1453,1,0,0,0,1455,69,1,0,0,0,1456, - 1457,5,333,0,0,1457,1460,5,165,0,0,1458,1461,5,30,0,0,1459,1461, - 3,764,382,0,1460,1458,1,0,0,0,1460,1459,1,0,0,0,1461,1462,1,0,0, - 0,1462,1463,7,9,0,0,1463,71,1,0,0,0,1464,1465,5,155,0,0,1465,73, - 1,0,0,0,1466,1467,5,187,0,0,1467,1468,7,10,0,0,1468,75,1,0,0,0,1469, - 1470,5,138,0,0,1470,1472,5,92,0,0,1471,1473,3,416,208,0,1472,1471, - 1,0,0,0,1472,1473,1,0,0,0,1473,1474,1,0,0,0,1474,1477,3,620,310, - 0,1475,1478,3,78,39,0,1476,1478,3,80,40,0,1477,1475,1,0,0,0,1477, - 1476,1,0,0,0,1478,1587,1,0,0,0,1479,1480,5,138,0,0,1480,1481,5,92, - 0,0,1481,1482,5,30,0,0,1482,1483,5,68,0,0,1483,1487,3,170,85,0,1484, - 1485,5,281,0,0,1485,1486,5,147,0,0,1486,1488,3,824,412,0,1487,1484, - 1,0,0,0,1487,1488,1,0,0,0,1488,1489,1,0,0,0,1489,1490,5,333,0,0, - 1490,1491,5,351,0,0,1491,1493,3,774,387,0,1492,1494,5,272,0,0,1493, - 1492,1,0,0,0,1493,1494,1,0,0,0,1494,1587,1,0,0,0,1495,1496,5,138, - 0,0,1496,1498,5,92,0,0,1497,1499,3,416,208,0,1498,1497,1,0,0,0,1498, - 1499,1,0,0,0,1499,1500,1,0,0,0,1500,1501,3,778,389,0,1501,1502,3, - 82,41,0,1502,1503,3,98,49,0,1503,1587,1,0,0,0,1504,1505,5,138,0, - 0,1505,1507,5,92,0,0,1506,1508,3,416,208,0,1507,1506,1,0,0,0,1507, - 1508,1,0,0,0,1508,1509,1,0,0,0,1509,1510,3,778,389,0,1510,1511,5, - 436,0,0,1511,1512,5,285,0,0,1512,1514,3,784,392,0,1513,1515,7,11, - 0,0,1514,1513,1,0,0,0,1514,1515,1,0,0,0,1515,1587,1,0,0,0,1516,1517, - 5,138,0,0,1517,1519,5,226,0,0,1518,1520,3,416,208,0,1519,1518,1, - 0,0,0,1519,1520,1,0,0,0,1520,1521,1,0,0,0,1521,1524,3,784,392,0, - 1522,1525,3,78,39,0,1523,1525,3,82,41,0,1524,1522,1,0,0,0,1524,1523, - 1,0,0,0,1525,1587,1,0,0,0,1526,1527,5,138,0,0,1527,1528,5,226,0, - 0,1528,1529,5,30,0,0,1529,1530,5,68,0,0,1530,1534,3,170,85,0,1531, - 1532,5,281,0,0,1532,1533,5,147,0,0,1533,1535,3,824,412,0,1534,1531, - 1,0,0,0,1534,1535,1,0,0,0,1535,1536,1,0,0,0,1536,1537,5,333,0,0, - 1537,1539,3,170,85,0,1538,1540,5,272,0,0,1539,1538,1,0,0,0,1539, - 1540,1,0,0,0,1540,1587,1,0,0,0,1541,1542,5,138,0,0,1542,1544,5,328, - 0,0,1543,1545,3,416,208,0,1544,1543,1,0,0,0,1544,1545,1,0,0,0,1545, - 1546,1,0,0,0,1546,1547,3,784,392,0,1547,1548,3,78,39,0,1548,1587, - 1,0,0,0,1549,1551,5,138,0,0,1550,1552,5,259,0,0,1551,1550,1,0,0, - 0,1551,1552,1,0,0,0,1552,1553,1,0,0,0,1553,1555,5,376,0,0,1554,1556, - 3,416,208,0,1555,1554,1,0,0,0,1555,1556,1,0,0,0,1556,1557,1,0,0, - 0,1557,1558,3,782,391,0,1558,1559,3,78,39,0,1559,1587,1,0,0,0,1560, - 1561,5,138,0,0,1561,1562,5,259,0,0,1562,1563,5,376,0,0,1563,1564, - 5,30,0,0,1564,1565,5,68,0,0,1565,1569,3,170,85,0,1566,1567,5,281, - 0,0,1567,1568,5,147,0,0,1568,1570,3,824,412,0,1569,1566,1,0,0,0, - 1569,1570,1,0,0,0,1570,1571,1,0,0,0,1571,1572,5,333,0,0,1572,1573, - 5,351,0,0,1573,1575,3,774,387,0,1574,1576,5,272,0,0,1575,1574,1, - 0,0,0,1575,1576,1,0,0,0,1576,1587,1,0,0,0,1577,1578,5,138,0,0,1578, - 1579,5,63,0,0,1579,1581,5,92,0,0,1580,1582,3,416,208,0,1581,1580, - 1,0,0,0,1581,1582,1,0,0,0,1582,1583,1,0,0,0,1583,1584,3,620,310, - 0,1584,1585,3,78,39,0,1585,1587,1,0,0,0,1586,1469,1,0,0,0,1586,1479, - 1,0,0,0,1586,1495,1,0,0,0,1586,1504,1,0,0,0,1586,1516,1,0,0,0,1586, - 1526,1,0,0,0,1586,1541,1,0,0,0,1586,1549,1,0,0,0,1586,1560,1,0,0, - 0,1586,1577,1,0,0,0,1587,77,1,0,0,0,1588,1593,3,84,42,0,1589,1590, - 5,6,0,0,1590,1592,3,84,42,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,79,1,0,0,0,1595,1593,1, - 0,0,0,1596,1597,3,82,41,0,1597,1598,3,98,49,0,1598,1603,1,0,0,0, - 1599,1600,5,436,0,0,1600,1601,5,285,0,0,1601,1603,3,784,392,0,1602, - 1596,1,0,0,0,1602,1599,1,0,0,0,1603,81,1,0,0,0,1604,1605,5,435,0, - 0,1605,1606,5,285,0,0,1606,1607,3,784,392,0,1607,83,1,0,0,0,1608, - 1611,5,133,0,0,1609,1610,5,45,0,0,1610,1612,3,826,413,0,1611,1609, - 1,0,0,0,1611,1612,1,0,0,0,1612,1613,1,0,0,0,1613,1842,3,136,68,0, - 1614,1615,5,138,0,0,1615,1616,5,45,0,0,1616,1620,3,826,413,0,1617, - 1619,3,266,133,0,1618,1617,1,0,0,0,1619,1622,1,0,0,0,1620,1618,1, - 0,0,0,1620,1621,1,0,0,0,1621,1842,1,0,0,0,1622,1620,1,0,0,0,1623, - 1624,5,372,0,0,1624,1625,5,45,0,0,1625,1842,3,826,413,0,1626,1627, - 5,191,0,0,1627,1629,5,45,0,0,1628,1630,3,416,208,0,1629,1628,1,0, - 0,0,1629,1630,1,0,0,0,1630,1631,1,0,0,0,1631,1633,3,826,413,0,1632, - 1634,3,88,44,0,1633,1632,1,0,0,0,1633,1634,1,0,0,0,1634,1842,1,0, - 0,0,1635,1636,5,333,0,0,1636,1637,5,379,0,0,1637,1842,7,12,0,0,1638, - 1639,5,158,0,0,1639,1640,5,80,0,0,1640,1842,3,826,413,0,1641,1642, - 5,333,0,0,1642,1842,7,13,0,0,1643,1645,5,193,0,0,1644,1646,7,14, - 0,0,1645,1644,1,0,0,0,1645,1646,1,0,0,0,1646,1647,1,0,0,0,1647,1842, - 5,357,0,0,1648,1649,5,186,0,0,1649,1653,5,357,0,0,1650,1654,5,30, - 0,0,1651,1654,5,99,0,0,1652,1654,3,826,413,0,1653,1650,1,0,0,0,1653, - 1651,1,0,0,0,1653,1652,1,0,0,0,1654,1842,1,0,0,0,1655,1656,5,193, - 0,0,1656,1657,7,14,0,0,1657,1658,5,321,0,0,1658,1842,3,826,413,0, - 1659,1660,5,186,0,0,1660,1661,5,321,0,0,1661,1842,3,826,413,0,1662, - 1664,5,269,0,0,1663,1662,1,0,0,0,1663,1664,1,0,0,0,1664,1665,1,0, - 0,0,1665,1666,5,228,0,0,1666,1842,3,784,392,0,1667,1668,5,275,0, - 0,1668,1842,3,310,155,0,1669,1670,5,77,0,0,1670,1842,5,275,0,0,1671, - 1672,5,282,0,0,1672,1673,5,94,0,0,1673,1842,3,822,411,0,1674,1675, - 5,333,0,0,1675,1676,5,351,0,0,1676,1842,3,774,387,0,1677,1678,5, - 312,0,0,1678,1683,5,219,0,0,1679,1684,5,270,0,0,1680,1684,5,113, - 0,0,1681,1684,5,53,0,0,1682,1684,3,174,87,0,1683,1679,1,0,0,0,1683, - 1680,1,0,0,0,1683,1681,1,0,0,0,1683,1682,1,0,0,0,1684,1842,1,0,0, - 0,1685,1692,5,193,0,0,1686,1692,5,186,0,0,1687,1689,5,269,0,0,1688, - 1687,1,0,0,0,1688,1689,1,0,0,0,1689,1690,1,0,0,0,1690,1692,5,209, - 0,0,1691,1685,1,0,0,0,1691,1686,1,0,0,0,1691,1688,1,0,0,0,1692,1693, - 1,0,0,0,1693,1694,5,414,0,0,1694,1695,5,251,0,0,1695,1842,5,327, - 0,0,1696,1698,5,191,0,0,1697,1699,5,44,0,0,1698,1697,1,0,0,0,1698, - 1699,1,0,0,0,1699,1701,1,0,0,0,1700,1702,3,416,208,0,1701,1700,1, - 0,0,0,1701,1702,1,0,0,0,1702,1703,1,0,0,0,1703,1705,3,806,403,0, - 1704,1706,3,88,44,0,1705,1704,1,0,0,0,1705,1706,1,0,0,0,1706,1842, - 1,0,0,0,1707,1709,5,133,0,0,1708,1710,5,44,0,0,1709,1708,1,0,0,0, - 1709,1710,1,0,0,0,1710,1712,1,0,0,0,1711,1713,3,288,144,0,1712,1711, - 1,0,0,0,1712,1713,1,0,0,0,1713,1714,1,0,0,0,1714,1842,3,126,63,0, - 1715,1717,5,138,0,0,1716,1718,5,44,0,0,1717,1716,1,0,0,0,1717,1718, - 1,0,0,0,1718,1719,1,0,0,0,1719,1722,3,806,403,0,1720,1723,3,86,43, - 0,1721,1723,3,216,108,0,1722,1720,1,0,0,0,1722,1721,1,0,0,0,1723, - 1842,1,0,0,0,1724,1726,5,138,0,0,1725,1727,5,44,0,0,1726,1725,1, - 0,0,0,1726,1727,1,0,0,0,1727,1728,1,0,0,0,1728,1729,3,806,403,0, - 1729,1730,7,15,0,0,1730,1731,5,77,0,0,1731,1732,5,78,0,0,1732,1842, - 1,0,0,0,1733,1735,5,138,0,0,1734,1736,5,44,0,0,1735,1734,1,0,0,0, - 1735,1736,1,0,0,0,1736,1737,1,0,0,0,1737,1738,3,806,403,0,1738,1739, - 5,191,0,0,1739,1741,5,437,0,0,1740,1742,3,416,208,0,1741,1740,1, - 0,0,0,1741,1742,1,0,0,0,1742,1842,1,0,0,0,1743,1745,5,138,0,0,1744, - 1746,5,44,0,0,1745,1744,1,0,0,0,1745,1746,1,0,0,0,1746,1747,1,0, - 0,0,1747,1748,3,806,403,0,1748,1749,5,333,0,0,1749,1750,5,342,0, - 0,1750,1751,3,820,410,0,1751,1842,1,0,0,0,1752,1754,5,138,0,0,1753, - 1755,5,44,0,0,1754,1753,1,0,0,0,1754,1755,1,0,0,0,1755,1756,1,0, - 0,0,1756,1758,3,806,403,0,1757,1752,1,0,0,0,1757,1758,1,0,0,0,1758, - 1759,1,0,0,0,1759,1760,7,16,0,0,1760,1842,3,92,46,0,1761,1763,5, - 138,0,0,1762,1764,5,44,0,0,1763,1762,1,0,0,0,1763,1764,1,0,0,0,1764, - 1765,1,0,0,0,1765,1766,3,806,403,0,1766,1767,5,333,0,0,1767,1768, - 5,345,0,0,1768,1769,3,826,413,0,1769,1842,1,0,0,0,1770,1772,5,138, - 0,0,1771,1773,5,44,0,0,1772,1771,1,0,0,0,1772,1773,1,0,0,0,1773, - 1774,1,0,0,0,1774,1775,3,806,403,0,1775,1776,5,133,0,0,1776,1777, - 5,438,0,0,1777,1778,3,132,66,0,1778,1779,5,36,0,0,1779,1788,5,219, - 0,0,1780,1782,5,2,0,0,1781,1783,3,194,97,0,1782,1781,1,0,0,0,1783, - 1784,1,0,0,0,1784,1782,1,0,0,0,1784,1785,1,0,0,0,1785,1786,1,0,0, - 0,1786,1787,5,3,0,0,1787,1789,1,0,0,0,1788,1780,1,0,0,0,1788,1789, - 1,0,0,0,1789,1842,1,0,0,0,1790,1792,5,138,0,0,1791,1793,5,44,0,0, - 1792,1791,1,0,0,0,1792,1793,1,0,0,0,1793,1794,1,0,0,0,1794,1808, - 3,806,403,0,1795,1800,5,314,0,0,1796,1798,5,105,0,0,1797,1796,1, - 0,0,0,1797,1798,1,0,0,0,1798,1799,1,0,0,0,1799,1801,3,196,98,0,1800, - 1797,1,0,0,0,1800,1801,1,0,0,0,1801,1809,1,0,0,0,1802,1806,5,333, - 0,0,1803,1807,3,194,97,0,1804,1805,5,438,0,0,1805,1807,3,132,66, - 0,1806,1803,1,0,0,0,1806,1804,1,0,0,0,1807,1809,1,0,0,0,1808,1795, - 1,0,0,0,1808,1802,1,0,0,0,1809,1810,1,0,0,0,1810,1808,1,0,0,0,1810, - 1811,1,0,0,0,1811,1842,1,0,0,0,1812,1814,5,138,0,0,1813,1815,5,44, - 0,0,1814,1813,1,0,0,0,1814,1815,1,0,0,0,1815,1816,1,0,0,0,1816,1817, - 3,806,403,0,1817,1818,5,191,0,0,1818,1820,5,219,0,0,1819,1821,3, - 416,208,0,1820,1819,1,0,0,0,1820,1821,1,0,0,0,1821,1842,1,0,0,0, - 1822,1824,5,138,0,0,1823,1825,5,44,0,0,1824,1823,1,0,0,0,1824,1825, - 1,0,0,0,1825,1826,1,0,0,0,1826,1829,3,806,403,0,1827,1828,5,333, - 0,0,1828,1830,5,174,0,0,1829,1827,1,0,0,0,1829,1830,1,0,0,0,1830, - 1831,1,0,0,0,1831,1832,5,360,0,0,1832,1834,3,648,324,0,1833,1835, - 3,90,45,0,1834,1833,1,0,0,0,1834,1835,1,0,0,0,1835,1838,1,0,0,0, - 1836,1837,5,100,0,0,1837,1839,3,670,335,0,1838,1836,1,0,0,0,1838, - 1839,1,0,0,0,1839,1842,1,0,0,0,1840,1842,3,216,108,0,1841,1608,1, - 0,0,0,1841,1614,1,0,0,0,1841,1623,1,0,0,0,1841,1626,1,0,0,0,1841, - 1635,1,0,0,0,1841,1638,1,0,0,0,1841,1641,1,0,0,0,1841,1643,1,0,0, - 0,1841,1648,1,0,0,0,1841,1655,1,0,0,0,1841,1659,1,0,0,0,1841,1663, - 1,0,0,0,1841,1667,1,0,0,0,1841,1669,1,0,0,0,1841,1671,1,0,0,0,1841, - 1674,1,0,0,0,1841,1677,1,0,0,0,1841,1691,1,0,0,0,1841,1696,1,0,0, - 0,1841,1707,1,0,0,0,1841,1715,1,0,0,0,1841,1724,1,0,0,0,1841,1733, - 1,0,0,0,1841,1743,1,0,0,0,1841,1757,1,0,0,0,1841,1761,1,0,0,0,1841, - 1770,1,0,0,0,1841,1790,1,0,0,0,1841,1812,1,0,0,0,1841,1822,1,0,0, - 0,1841,1840,1,0,0,0,1842,85,1,0,0,0,1843,1844,5,333,0,0,1844,1845, - 5,53,0,0,1845,1849,3,670,335,0,1846,1847,5,191,0,0,1847,1849,5,53, - 0,0,1848,1843,1,0,0,0,1848,1846,1,0,0,0,1849,87,1,0,0,0,1850,1851, - 7,17,0,0,1851,89,1,0,0,0,1852,1853,5,43,0,0,1853,1854,3,310,155, - 0,1854,91,1,0,0,0,1855,1856,5,2,0,0,1856,1861,3,96,48,0,1857,1858, - 5,6,0,0,1858,1860,3,96,48,0,1859,1857,1,0,0,0,1860,1863,1,0,0,0, - 1861,1859,1,0,0,0,1861,1862,1,0,0,0,1862,1864,1,0,0,0,1863,1861, - 1,0,0,0,1864,1865,5,3,0,0,1865,93,1,0,0,0,1866,1867,5,105,0,0,1867, - 1868,3,92,46,0,1868,95,1,0,0,0,1869,1874,3,832,416,0,1870,1871,5, - 10,0,0,1871,1875,3,282,141,0,1872,1873,5,11,0,0,1873,1875,3,280, - 140,0,1874,1870,1,0,0,0,1874,1872,1,0,0,0,1874,1875,1,0,0,0,1875, - 97,1,0,0,0,1876,1877,5,62,0,0,1877,1878,5,422,0,0,1878,1879,5,105, - 0,0,1879,1880,5,2,0,0,1880,1881,5,533,0,0,1881,1882,3,196,98,0,1882, - 1883,5,6,0,0,1883,1884,5,534,0,0,1884,1885,3,196,98,0,1885,1886, - 5,3,0,0,1886,1900,1,0,0,0,1887,1888,5,62,0,0,1888,1889,5,422,0,0, - 1889,1890,5,68,0,0,1890,1900,3,528,264,0,1891,1892,5,62,0,0,1892, - 1893,5,422,0,0,1893,1894,5,64,0,0,1894,1895,3,528,264,0,1895,1896, - 5,94,0,0,1896,1897,3,528,264,0,1897,1900,1,0,0,0,1898,1900,5,53, - 0,0,1899,1876,1,0,0,0,1899,1887,1,0,0,0,1899,1891,1,0,0,0,1899,1898, - 1,0,0,0,1900,99,1,0,0,0,1901,1902,5,138,0,0,1902,1903,5,360,0,0, - 1903,1904,3,310,155,0,1904,1909,3,102,51,0,1905,1906,5,6,0,0,1906, - 1908,3,102,51,0,1907,1905,1,0,0,0,1908,1911,1,0,0,0,1909,1907,1, - 0,0,0,1909,1910,1,0,0,0,1910,101,1,0,0,0,1911,1909,1,0,0,0,1912, - 1913,5,133,0,0,1913,1914,5,143,0,0,1914,1916,3,640,320,0,1915,1917, - 3,88,44,0,1916,1915,1,0,0,0,1916,1917,1,0,0,0,1917,1943,1,0,0,0, - 1918,1919,5,191,0,0,1919,1921,5,143,0,0,1920,1922,3,416,208,0,1921, - 1920,1,0,0,0,1921,1922,1,0,0,0,1922,1923,1,0,0,0,1923,1925,3,826, - 413,0,1924,1926,3,88,44,0,1925,1924,1,0,0,0,1925,1926,1,0,0,0,1926, - 1943,1,0,0,0,1927,1928,5,138,0,0,1928,1929,5,143,0,0,1929,1932,3, - 826,413,0,1930,1931,5,333,0,0,1931,1933,5,174,0,0,1932,1930,1,0, - 0,0,1932,1933,1,0,0,0,1933,1934,1,0,0,0,1934,1935,5,360,0,0,1935, - 1937,3,648,324,0,1936,1938,3,90,45,0,1937,1936,1,0,0,0,1937,1938, - 1,0,0,0,1938,1940,1,0,0,0,1939,1941,3,88,44,0,1940,1939,1,0,0,0, - 1940,1941,1,0,0,0,1941,1943,1,0,0,0,1942,1912,1,0,0,0,1942,1918, - 1,0,0,0,1942,1927,1,0,0,0,1943,103,1,0,0,0,1944,1947,5,157,0,0,1945, - 1948,3,826,413,0,1946,1948,5,30,0,0,1947,1945,1,0,0,0,1947,1946, - 1,0,0,0,1948,105,1,0,0,0,1949,1951,5,169,0,0,1950,1952,5,107,0,0, - 1951,1950,1,0,0,0,1951,1952,1,0,0,0,1952,1953,1,0,0,0,1953,1955, - 3,778,389,0,1954,1956,3,138,69,0,1955,1954,1,0,0,0,1955,1956,1,0, - 0,0,1956,1957,1,0,0,0,1957,1959,7,18,0,0,1958,1960,5,297,0,0,1959, - 1958,1,0,0,0,1959,1960,1,0,0,0,1960,1964,1,0,0,0,1961,1965,3,816, - 408,0,1962,1965,5,343,0,0,1963,1965,5,344,0,0,1964,1961,1,0,0,0, - 1964,1962,1,0,0,0,1964,1963,1,0,0,0,1965,1971,1,0,0,0,1966,1968, - 5,100,0,0,1967,1966,1,0,0,0,1967,1968,1,0,0,0,1968,1969,1,0,0,0, - 1969,1970,5,184,0,0,1970,1972,3,816,408,0,1971,1967,1,0,0,0,1971, - 1972,1,0,0,0,1972,1974,1,0,0,0,1973,1975,5,105,0,0,1974,1973,1,0, - 0,0,1974,1975,1,0,0,0,1975,1976,1,0,0,0,1976,1978,3,110,55,0,1977, - 1979,3,634,317,0,1978,1977,1,0,0,0,1978,1979,1,0,0,0,1979,1999,1, - 0,0,0,1980,1981,5,169,0,0,1981,1982,5,2,0,0,1982,1983,3,524,262, - 0,1983,1984,5,3,0,0,1984,1986,5,94,0,0,1985,1987,5,297,0,0,1986, - 1985,1,0,0,0,1986,1987,1,0,0,0,1987,1991,1,0,0,0,1988,1992,3,816, - 408,0,1989,1992,5,343,0,0,1990,1992,5,344,0,0,1991,1988,1,0,0,0, - 1991,1989,1,0,0,0,1991,1990,1,0,0,0,1992,1994,1,0,0,0,1993,1995, - 5,105,0,0,1994,1993,1,0,0,0,1994,1995,1,0,0,0,1995,1996,1,0,0,0, - 1996,1997,3,110,55,0,1997,1999,1,0,0,0,1998,1949,1,0,0,0,1998,1980, - 1,0,0,0,1999,107,1,0,0,0,2000,2043,5,107,0,0,2001,2043,5,112,0,0, - 2002,2004,7,19,0,0,2003,2005,5,36,0,0,2004,2003,1,0,0,0,2004,2005, - 1,0,0,0,2005,2006,1,0,0,0,2006,2043,3,816,408,0,2007,2043,5,171, - 0,0,2008,2043,5,216,0,0,2009,2010,5,209,0,0,2010,2013,5,298,0,0, - 2011,2014,3,142,71,0,2012,2014,5,9,0,0,2013,2011,1,0,0,0,2013,2012, - 1,0,0,0,2014,2043,1,0,0,0,2015,2017,5,209,0,0,2016,2018,5,77,0,0, - 2017,2016,1,0,0,0,2017,2018,1,0,0,0,2018,2019,1,0,0,0,2019,2020, - 5,78,0,0,2020,2043,3,142,71,0,2021,2022,5,194,0,0,2022,2043,3,816, - 408,0,2023,2040,7,20,0,0,2024,2027,5,2,0,0,2025,2028,3,142,71,0, - 2026,2028,5,9,0,0,2027,2025,1,0,0,0,2027,2026,1,0,0,0,2028,2036, - 1,0,0,0,2029,2032,5,6,0,0,2030,2033,3,142,71,0,2031,2033,5,9,0,0, - 2032,2030,1,0,0,0,2032,2031,1,0,0,0,2033,2035,1,0,0,0,2034,2029, - 1,0,0,0,2035,2038,1,0,0,0,2036,2034,1,0,0,0,2036,2037,1,0,0,0,2037, - 2039,1,0,0,0,2038,2036,1,0,0,0,2039,2041,5,3,0,0,2040,2024,1,0,0, - 0,2040,2041,1,0,0,0,2041,2043,1,0,0,0,2042,2000,1,0,0,0,2042,2001, - 1,0,0,0,2042,2002,1,0,0,0,2042,2007,1,0,0,0,2042,2008,1,0,0,0,2042, - 2009,1,0,0,0,2042,2015,1,0,0,0,2042,2021,1,0,0,0,2042,2023,1,0,0, - 0,2043,2046,1,0,0,0,2044,2042,1,0,0,0,2044,2045,1,0,0,0,2045,109, - 1,0,0,0,2046,2044,1,0,0,0,2047,2066,3,108,54,0,2048,2051,5,2,0,0, - 2049,2052,3,108,54,0,2050,2052,3,112,56,0,2051,2049,1,0,0,0,2051, - 2050,1,0,0,0,2052,2060,1,0,0,0,2053,2056,5,6,0,0,2054,2057,3,108, - 54,0,2055,2057,3,112,56,0,2056,2054,1,0,0,0,2056,2055,1,0,0,0,2057, - 2059,1,0,0,0,2058,2053,1,0,0,0,2059,2062,1,0,0,0,2060,2058,1,0,0, - 0,2060,2061,1,0,0,0,2061,2063,1,0,0,0,2062,2060,1,0,0,0,2063,2064, - 5,3,0,0,2064,2066,1,0,0,0,2065,2047,1,0,0,0,2065,2048,1,0,0,0,2066, - 111,1,0,0,0,2067,2082,3,832,416,0,2068,2083,3,54,27,0,2069,2083, - 3,196,98,0,2070,2083,5,9,0,0,2071,2072,5,2,0,0,2072,2077,3,52,26, - 0,2073,2074,5,6,0,0,2074,2076,3,52,26,0,2075,2073,1,0,0,0,2076,2079, - 1,0,0,0,2077,2075,1,0,0,0,2077,2078,1,0,0,0,2078,2080,1,0,0,0,2079, - 2077,1,0,0,0,2080,2081,5,3,0,0,2081,2083,1,0,0,0,2082,2068,1,0,0, - 0,2082,2069,1,0,0,0,2082,2070,1,0,0,0,2082,2071,1,0,0,0,2082,2083, - 1,0,0,0,2083,113,1,0,0,0,2084,2086,5,46,0,0,2085,2087,3,116,58,0, - 2086,2085,1,0,0,0,2086,2087,1,0,0,0,2087,2088,1,0,0,0,2088,2090, - 5,92,0,0,2089,2091,3,288,144,0,2090,2089,1,0,0,0,2090,2091,1,0,0, - 0,2091,2092,1,0,0,0,2092,2158,3,776,388,0,2093,2095,5,2,0,0,2094, - 2096,3,120,60,0,2095,2094,1,0,0,0,2095,2096,1,0,0,0,2096,2097,1, - 0,0,0,2097,2099,5,3,0,0,2098,2100,3,158,79,0,2099,2098,1,0,0,0,2099, - 2100,1,0,0,0,2100,2102,1,0,0,0,2101,2103,3,160,80,0,2102,2101,1, - 0,0,0,2102,2103,1,0,0,0,2103,2105,1,0,0,0,2104,2106,3,164,82,0,2105, - 2104,1,0,0,0,2105,2106,1,0,0,0,2106,2108,1,0,0,0,2107,2109,3,166, - 83,0,2108,2107,1,0,0,0,2108,2109,1,0,0,0,2109,2111,1,0,0,0,2110, - 2112,3,168,84,0,2111,2110,1,0,0,0,2111,2112,1,0,0,0,2112,2114,1, - 0,0,0,2113,2115,3,170,85,0,2114,2113,1,0,0,0,2114,2115,1,0,0,0,2115, - 2159,1,0,0,0,2116,2117,5,275,0,0,2117,2119,3,310,155,0,2118,2120, - 3,118,59,0,2119,2118,1,0,0,0,2119,2120,1,0,0,0,2120,2122,1,0,0,0, - 2121,2123,3,160,80,0,2122,2121,1,0,0,0,2122,2123,1,0,0,0,2123,2125, - 1,0,0,0,2124,2126,3,164,82,0,2125,2124,1,0,0,0,2125,2126,1,0,0,0, - 2126,2128,1,0,0,0,2127,2129,3,166,83,0,2128,2127,1,0,0,0,2128,2129, - 1,0,0,0,2129,2131,1,0,0,0,2130,2132,3,168,84,0,2131,2130,1,0,0,0, - 2131,2132,1,0,0,0,2132,2134,1,0,0,0,2133,2135,3,170,85,0,2134,2133, - 1,0,0,0,2134,2135,1,0,0,0,2135,2159,1,0,0,0,2136,2137,5,285,0,0, - 2137,2138,5,275,0,0,2138,2140,3,784,392,0,2139,2141,3,118,59,0,2140, - 2139,1,0,0,0,2140,2141,1,0,0,0,2141,2142,1,0,0,0,2142,2144,3,98, - 49,0,2143,2145,3,160,80,0,2144,2143,1,0,0,0,2144,2145,1,0,0,0,2145, - 2147,1,0,0,0,2146,2148,3,164,82,0,2147,2146,1,0,0,0,2147,2148,1, - 0,0,0,2148,2150,1,0,0,0,2149,2151,3,166,83,0,2150,2149,1,0,0,0,2150, - 2151,1,0,0,0,2151,2153,1,0,0,0,2152,2154,3,168,84,0,2153,2152,1, - 0,0,0,2153,2154,1,0,0,0,2154,2156,1,0,0,0,2155,2157,3,170,85,0,2156, - 2155,1,0,0,0,2156,2157,1,0,0,0,2157,2159,1,0,0,0,2158,2093,1,0,0, - 0,2158,2116,1,0,0,0,2158,2136,1,0,0,0,2159,115,1,0,0,0,2160,2166, - 5,354,0,0,2161,2166,5,352,0,0,2162,2163,7,21,0,0,2163,2166,7,22, - 0,0,2164,2166,5,367,0,0,2165,2160,1,0,0,0,2165,2161,1,0,0,0,2165, - 2162,1,0,0,0,2165,2164,1,0,0,0,2166,117,1,0,0,0,2167,2168,5,2,0, - 0,2168,2173,3,124,62,0,2169,2170,5,6,0,0,2170,2172,3,124,62,0,2171, - 2169,1,0,0,0,2172,2175,1,0,0,0,2173,2171,1,0,0,0,2173,2174,1,0,0, - 0,2174,2176,1,0,0,0,2175,2173,1,0,0,0,2176,2177,5,3,0,0,2177,119, - 1,0,0,0,2178,2183,3,122,61,0,2179,2180,5,6,0,0,2180,2182,3,122,61, - 0,2181,2179,1,0,0,0,2182,2185,1,0,0,0,2183,2181,1,0,0,0,2183,2184, - 1,0,0,0,2184,121,1,0,0,0,2185,2183,1,0,0,0,2186,2187,5,45,0,0,2187, - 2189,3,826,413,0,2188,2186,1,0,0,0,2188,2189,1,0,0,0,2189,2190,1, - 0,0,0,2190,2202,3,136,68,0,2191,2202,3,126,63,0,2192,2193,5,120, - 0,0,2193,2198,3,784,392,0,2194,2195,7,23,0,0,2195,2197,3,134,67, - 0,2196,2194,1,0,0,0,2197,2200,1,0,0,0,2198,2196,1,0,0,0,2198,2199, - 1,0,0,0,2199,2202,1,0,0,0,2200,2198,1,0,0,0,2201,2188,1,0,0,0,2201, - 2191,1,0,0,0,2201,2192,1,0,0,0,2202,123,1,0,0,0,2203,2206,3,810, - 405,0,2204,2205,5,105,0,0,2205,2207,5,280,0,0,2206,2204,1,0,0,0, - 2206,2207,1,0,0,0,2207,2211,1,0,0,0,2208,2210,3,128,64,0,2209,2208, - 1,0,0,0,2210,2213,1,0,0,0,2211,2209,1,0,0,0,2211,2212,1,0,0,0,2212, - 2220,1,0,0,0,2213,2211,1,0,0,0,2214,2215,5,45,0,0,2215,2217,3,826, - 413,0,2216,2214,1,0,0,0,2216,2217,1,0,0,0,2217,2218,1,0,0,0,2218, - 2220,3,136,68,0,2219,2203,1,0,0,0,2219,2216,1,0,0,0,2220,125,1,0, - 0,0,2221,2222,3,810,405,0,2222,2224,3,648,324,0,2223,2225,3,214, - 107,0,2224,2223,1,0,0,0,2224,2225,1,0,0,0,2225,2235,1,0,0,0,2226, - 2233,5,345,0,0,2227,2234,5,544,0,0,2228,2234,5,205,0,0,2229,2234, - 5,545,0,0,2230,2234,5,546,0,0,2231,2234,5,53,0,0,2232,2234,3,826, - 413,0,2233,2227,1,0,0,0,2233,2228,1,0,0,0,2233,2229,1,0,0,0,2233, - 2230,1,0,0,0,2233,2231,1,0,0,0,2233,2232,1,0,0,0,2234,2236,1,0,0, - 0,2235,2226,1,0,0,0,2235,2236,1,0,0,0,2236,2239,1,0,0,0,2237,2238, - 5,543,0,0,2238,2240,3,826,413,0,2239,2237,1,0,0,0,2239,2240,1,0, - 0,0,2240,2242,1,0,0,0,2241,2243,3,90,45,0,2242,2241,1,0,0,0,2242, - 2243,1,0,0,0,2243,2246,1,0,0,0,2244,2245,5,105,0,0,2245,2247,5,280, - 0,0,2246,2244,1,0,0,0,2246,2247,1,0,0,0,2247,2251,1,0,0,0,2248,2250, - 3,128,64,0,2249,2248,1,0,0,0,2250,2253,1,0,0,0,2251,2249,1,0,0,0, - 2251,2252,1,0,0,0,2252,127,1,0,0,0,2253,2251,1,0,0,0,2254,2255,5, - 45,0,0,2255,2257,3,826,413,0,2256,2254,1,0,0,0,2256,2257,1,0,0,0, - 2257,2258,1,0,0,0,2258,2263,3,130,65,0,2259,2261,5,77,0,0,2260,2259, - 1,0,0,0,2260,2261,1,0,0,0,2261,2262,1,0,0,0,2262,2264,5,54,0,0,2263, - 2260,1,0,0,0,2263,2264,1,0,0,0,2264,2267,1,0,0,0,2265,2266,5,69, - 0,0,2266,2268,7,9,0,0,2267,2265,1,0,0,0,2267,2268,1,0,0,0,2268,129, - 1,0,0,0,2269,2271,5,77,0,0,2270,2269,1,0,0,0,2270,2271,1,0,0,0,2271, - 2272,1,0,0,0,2272,2350,5,78,0,0,2273,2275,5,98,0,0,2274,2276,3,394, - 197,0,2275,2274,1,0,0,0,2275,2276,1,0,0,0,2276,2278,1,0,0,0,2277, - 2279,3,172,86,0,2278,2277,1,0,0,0,2278,2279,1,0,0,0,2279,2350,1, - 0,0,0,2280,2286,5,98,0,0,2281,2283,5,273,0,0,2282,2284,5,77,0,0, - 2283,2282,1,0,0,0,2283,2284,1,0,0,0,2284,2285,1,0,0,0,2285,2287, - 5,56,0,0,2286,2281,1,0,0,0,2286,2287,1,0,0,0,2287,2290,1,0,0,0,2288, - 2289,5,441,0,0,2289,2291,3,354,177,0,2290,2288,1,0,0,0,2290,2291, - 1,0,0,0,2291,2293,1,0,0,0,2292,2294,3,566,283,0,2293,2292,1,0,0, - 0,2293,2294,1,0,0,0,2294,2296,1,0,0,0,2295,2297,3,172,86,0,2296, - 2295,1,0,0,0,2296,2297,1,0,0,0,2297,2350,1,0,0,0,2298,2299,5,85, - 0,0,2299,2301,5,245,0,0,2300,2302,3,394,197,0,2301,2300,1,0,0,0, - 2301,2302,1,0,0,0,2302,2304,1,0,0,0,2303,2305,3,172,86,0,2304,2303, - 1,0,0,0,2304,2305,1,0,0,0,2305,2350,1,0,0,0,2306,2307,5,42,0,0,2307, - 2308,5,2,0,0,2308,2309,3,670,335,0,2309,2312,5,3,0,0,2310,2311,5, - 269,0,0,2311,2313,5,228,0,0,2312,2310,1,0,0,0,2312,2313,1,0,0,0, - 2313,2350,1,0,0,0,2314,2315,5,53,0,0,2315,2350,3,678,339,0,2316, - 2317,5,438,0,0,2317,2318,3,132,66,0,2318,2335,5,36,0,0,2319,2328, - 5,219,0,0,2320,2322,5,2,0,0,2321,2323,3,194,97,0,2322,2321,1,0,0, - 0,2323,2324,1,0,0,0,2324,2322,1,0,0,0,2324,2325,1,0,0,0,2325,2326, - 1,0,0,0,2326,2327,5,3,0,0,2327,2329,1,0,0,0,2328,2320,1,0,0,0,2328, - 2329,1,0,0,0,2329,2336,1,0,0,0,2330,2331,5,2,0,0,2331,2332,3,670, - 335,0,2332,2333,5,3,0,0,2333,2334,5,440,0,0,2334,2336,1,0,0,0,2335, - 2319,1,0,0,0,2335,2330,1,0,0,0,2336,2350,1,0,0,0,2337,2338,5,86, - 0,0,2338,2340,3,784,392,0,2339,2341,3,138,69,0,2340,2339,1,0,0,0, - 2340,2341,1,0,0,0,2341,2343,1,0,0,0,2342,2344,3,146,73,0,2343,2342, - 1,0,0,0,2343,2344,1,0,0,0,2344,2346,1,0,0,0,2345,2347,3,150,75,0, - 2346,2345,1,0,0,0,2346,2347,1,0,0,0,2347,2350,1,0,0,0,2348,2350, - 3,90,45,0,2349,2270,1,0,0,0,2349,2273,1,0,0,0,2349,2280,1,0,0,0, - 2349,2298,1,0,0,0,2349,2306,1,0,0,0,2349,2314,1,0,0,0,2349,2316, - 1,0,0,0,2349,2337,1,0,0,0,2349,2348,1,0,0,0,2350,131,1,0,0,0,2351, - 2355,5,139,0,0,2352,2353,5,147,0,0,2353,2355,5,53,0,0,2354,2351, - 1,0,0,0,2354,2352,1,0,0,0,2355,133,1,0,0,0,2356,2357,7,24,0,0,2357, - 135,1,0,0,0,2358,2359,5,42,0,0,2359,2360,5,2,0,0,2360,2361,3,670, - 335,0,2361,2365,5,3,0,0,2362,2364,3,266,133,0,2363,2362,1,0,0,0, - 2364,2367,1,0,0,0,2365,2363,1,0,0,0,2365,2366,1,0,0,0,2366,2455, - 1,0,0,0,2367,2365,1,0,0,0,2368,2372,5,98,0,0,2369,2370,5,85,0,0, - 2370,2372,5,245,0,0,2371,2368,1,0,0,0,2371,2369,1,0,0,0,2372,2396, - 1,0,0,0,2373,2375,3,138,69,0,2374,2376,3,144,72,0,2375,2374,1,0, - 0,0,2375,2376,1,0,0,0,2376,2378,1,0,0,0,2377,2379,3,394,197,0,2378, - 2377,1,0,0,0,2378,2379,1,0,0,0,2379,2381,1,0,0,0,2380,2382,3,172, - 86,0,2381,2380,1,0,0,0,2381,2382,1,0,0,0,2382,2386,1,0,0,0,2383, - 2385,3,266,133,0,2384,2383,1,0,0,0,2385,2388,1,0,0,0,2386,2384,1, - 0,0,0,2386,2387,1,0,0,0,2387,2397,1,0,0,0,2388,2386,1,0,0,0,2389, - 2393,3,174,87,0,2390,2392,3,266,133,0,2391,2390,1,0,0,0,2392,2395, - 1,0,0,0,2393,2391,1,0,0,0,2393,2394,1,0,0,0,2394,2397,1,0,0,0,2395, - 2393,1,0,0,0,2396,2373,1,0,0,0,2396,2389,1,0,0,0,2397,2455,1,0,0, - 0,2398,2400,5,199,0,0,2399,2401,3,164,82,0,2400,2399,1,0,0,0,2400, - 2401,1,0,0,0,2401,2402,1,0,0,0,2402,2403,5,2,0,0,2403,2408,3,148, - 74,0,2404,2405,5,6,0,0,2405,2407,3,148,74,0,2406,2404,1,0,0,0,2407, - 2410,1,0,0,0,2408,2406,1,0,0,0,2408,2409,1,0,0,0,2409,2411,1,0,0, - 0,2410,2408,1,0,0,0,2411,2413,5,3,0,0,2412,2414,3,144,72,0,2413, - 2412,1,0,0,0,2413,2414,1,0,0,0,2414,2416,1,0,0,0,2415,2417,3,394, - 197,0,2416,2415,1,0,0,0,2416,2417,1,0,0,0,2417,2419,1,0,0,0,2418, - 2420,3,172,86,0,2419,2418,1,0,0,0,2419,2420,1,0,0,0,2420,2426,1, - 0,0,0,2421,2422,5,103,0,0,2422,2423,5,2,0,0,2423,2424,3,670,335, - 0,2424,2425,5,3,0,0,2425,2427,1,0,0,0,2426,2421,1,0,0,0,2426,2427, - 1,0,0,0,2427,2431,1,0,0,0,2428,2430,3,266,133,0,2429,2428,1,0,0, - 0,2430,2433,1,0,0,0,2431,2429,1,0,0,0,2431,2432,1,0,0,0,2432,2455, - 1,0,0,0,2433,2431,1,0,0,0,2434,2435,5,63,0,0,2435,2436,5,245,0,0, - 2436,2437,3,138,69,0,2437,2438,5,86,0,0,2438,2440,3,784,392,0,2439, - 2441,3,138,69,0,2440,2439,1,0,0,0,2440,2441,1,0,0,0,2441,2443,1, - 0,0,0,2442,2444,3,146,73,0,2443,2442,1,0,0,0,2443,2444,1,0,0,0,2444, - 2446,1,0,0,0,2445,2447,3,150,75,0,2446,2445,1,0,0,0,2446,2447,1, - 0,0,0,2447,2451,1,0,0,0,2448,2450,3,266,133,0,2449,2448,1,0,0,0, - 2450,2453,1,0,0,0,2451,2449,1,0,0,0,2451,2452,1,0,0,0,2452,2455, - 1,0,0,0,2453,2451,1,0,0,0,2454,2358,1,0,0,0,2454,2371,1,0,0,0,2454, - 2398,1,0,0,0,2454,2434,1,0,0,0,2455,137,1,0,0,0,2456,2457,5,2,0, - 0,2457,2458,3,142,71,0,2458,2459,5,3,0,0,2459,139,1,0,0,0,2460,2461, - 5,2,0,0,2461,2466,3,810,405,0,2462,2463,5,6,0,0,2463,2465,3,810, - 405,0,2464,2462,1,0,0,0,2465,2468,1,0,0,0,2466,2464,1,0,0,0,2466, - 2467,1,0,0,0,2467,2469,1,0,0,0,2468,2466,1,0,0,0,2469,2470,5,3,0, - 0,2470,141,1,0,0,0,2471,2476,3,806,403,0,2472,2473,5,6,0,0,2473, - 2475,3,806,403,0,2474,2472,1,0,0,0,2475,2478,1,0,0,0,2476,2474,1, - 0,0,0,2476,2477,1,0,0,0,2477,143,1,0,0,0,2478,2476,1,0,0,0,2479, - 2480,5,441,0,0,2480,2481,3,138,69,0,2481,145,1,0,0,0,2482,2483,5, - 258,0,0,2483,2484,7,25,0,0,2484,147,1,0,0,0,2485,2486,3,356,178, - 0,2486,2493,5,105,0,0,2487,2494,3,408,204,0,2488,2489,5,278,0,0, - 2489,2490,5,2,0,0,2490,2491,3,408,204,0,2491,2492,5,3,0,0,2492,2494, - 1,0,0,0,2493,2487,1,0,0,0,2493,2488,1,0,0,0,2494,149,1,0,0,0,2495, - 2497,3,152,76,0,2496,2498,3,154,77,0,2497,2496,1,0,0,0,2497,2498, - 1,0,0,0,2498,2504,1,0,0,0,2499,2501,3,154,77,0,2500,2502,3,152,76, - 0,2501,2500,1,0,0,0,2501,2502,1,0,0,0,2502,2504,1,0,0,0,2503,2495, - 1,0,0,0,2503,2499,1,0,0,0,2504,151,1,0,0,0,2505,2506,5,80,0,0,2506, - 2507,5,369,0,0,2507,2508,3,156,78,0,2508,153,1,0,0,0,2509,2510,5, - 80,0,0,2510,2511,5,182,0,0,2511,2512,3,156,78,0,2512,155,1,0,0,0, - 2513,2514,5,269,0,0,2514,2523,5,132,0,0,2515,2523,5,315,0,0,2516, - 2523,5,150,0,0,2517,2518,5,333,0,0,2518,2520,7,26,0,0,2519,2521, - 3,142,71,0,2520,2519,1,0,0,0,2520,2521,1,0,0,0,2521,2523,1,0,0,0, - 2522,2513,1,0,0,0,2522,2515,1,0,0,0,2522,2516,1,0,0,0,2522,2517, - 1,0,0,0,2523,157,1,0,0,0,2524,2525,5,238,0,0,2525,2526,5,2,0,0,2526, - 2527,3,764,382,0,2527,2528,5,3,0,0,2528,159,1,0,0,0,2529,2530,5, - 285,0,0,2530,2531,5,147,0,0,2531,2532,3,826,413,0,2532,2533,5,2, - 0,0,2533,2538,3,162,81,0,2534,2535,5,6,0,0,2535,2537,3,162,81,0, - 2536,2534,1,0,0,0,2537,2540,1,0,0,0,2538,2536,1,0,0,0,2538,2539, - 1,0,0,0,2539,2541,1,0,0,0,2540,2538,1,0,0,0,2541,2542,5,3,0,0,2542, - 161,1,0,0,0,2543,2550,3,806,403,0,2544,2550,3,684,342,0,2545,2546, - 5,2,0,0,2546,2547,3,670,335,0,2547,2548,5,3,0,0,2548,2550,1,0,0, - 0,2549,2543,1,0,0,0,2549,2544,1,0,0,0,2549,2545,1,0,0,0,2550,2552, - 1,0,0,0,2551,2553,3,90,45,0,2552,2551,1,0,0,0,2552,2553,1,0,0,0, - 2553,2555,1,0,0,0,2554,2556,3,310,155,0,2555,2554,1,0,0,0,2555,2556, - 1,0,0,0,2556,163,1,0,0,0,2557,2558,5,100,0,0,2558,2559,3,826,413, - 0,2559,165,1,0,0,0,2560,2561,5,105,0,0,2561,2565,3,92,46,0,2562, - 2563,7,27,0,0,2563,2565,5,277,0,0,2564,2560,1,0,0,0,2564,2562,1, - 0,0,0,2565,167,1,0,0,0,2566,2567,5,80,0,0,2567,2573,5,161,0,0,2568, - 2574,5,191,0,0,2569,2570,5,182,0,0,2570,2574,5,320,0,0,2571,2572, - 5,292,0,0,2572,2574,5,320,0,0,2573,2568,1,0,0,0,2573,2569,1,0,0, - 0,2573,2571,1,0,0,0,2574,169,1,0,0,0,2575,2576,5,351,0,0,2576,2577, - 3,774,387,0,2577,171,1,0,0,0,2578,2579,5,100,0,0,2579,2580,5,226, - 0,0,2580,2581,3,170,85,0,2581,173,1,0,0,0,2582,2583,5,100,0,0,2583, - 2584,5,226,0,0,2584,2585,3,826,413,0,2585,175,1,0,0,0,2586,2587, - 5,46,0,0,2587,2592,5,342,0,0,2588,2590,3,288,144,0,2589,2588,1,0, - 0,0,2589,2590,1,0,0,0,2590,2591,1,0,0,0,2591,2593,3,310,155,0,2592, - 2589,1,0,0,0,2592,2593,1,0,0,0,2593,2595,1,0,0,0,2594,2596,3,138, - 69,0,2595,2594,1,0,0,0,2595,2596,1,0,0,0,2596,2597,1,0,0,0,2597, - 2607,5,80,0,0,2598,2603,3,734,367,0,2599,2600,5,6,0,0,2600,2602, - 3,734,367,0,2601,2599,1,0,0,0,2602,2605,1,0,0,0,2603,2601,1,0,0, - 0,2603,2604,1,0,0,0,2604,2608,1,0,0,0,2605,2603,1,0,0,0,2606,2608, - 3,728,364,0,2607,2598,1,0,0,0,2607,2606,1,0,0,0,2608,2609,1,0,0, - 0,2609,2610,3,604,302,0,2610,177,1,0,0,0,2611,2612,5,138,0,0,2612, - 2614,5,342,0,0,2613,2615,3,416,208,0,2614,2613,1,0,0,0,2614,2615, - 1,0,0,0,2615,2616,1,0,0,0,2616,2617,3,310,155,0,2617,2618,5,333, - 0,0,2618,2619,5,342,0,0,2619,2620,3,820,410,0,2620,179,1,0,0,0,2621, - 2623,5,46,0,0,2622,2624,3,116,58,0,2623,2622,1,0,0,0,2623,2624,1, - 0,0,0,2624,2625,1,0,0,0,2625,2627,5,92,0,0,2626,2628,3,288,144,0, - 2627,2626,1,0,0,0,2627,2628,1,0,0,0,2628,2629,1,0,0,0,2629,2630, - 3,182,91,0,2630,2631,5,36,0,0,2631,2633,3,554,277,0,2632,2634,3, - 184,92,0,2633,2632,1,0,0,0,2633,2634,1,0,0,0,2634,181,1,0,0,0,2635, - 2637,3,776,388,0,2636,2638,3,140,70,0,2637,2636,1,0,0,0,2637,2638, - 1,0,0,0,2638,2640,1,0,0,0,2639,2641,3,164,82,0,2640,2639,1,0,0,0, - 2640,2641,1,0,0,0,2641,2643,1,0,0,0,2642,2644,3,166,83,0,2643,2642, - 1,0,0,0,2643,2644,1,0,0,0,2644,2646,1,0,0,0,2645,2647,3,168,84,0, - 2646,2645,1,0,0,0,2646,2647,1,0,0,0,2647,2649,1,0,0,0,2648,2650, - 3,170,85,0,2649,2648,1,0,0,0,2649,2650,1,0,0,0,2650,183,1,0,0,0, - 2651,2655,5,105,0,0,2652,2656,5,174,0,0,2653,2654,5,269,0,0,2654, - 2656,5,174,0,0,2655,2652,1,0,0,0,2655,2653,1,0,0,0,2656,185,1,0, - 0,0,2657,2659,5,46,0,0,2658,2660,5,367,0,0,2659,2658,1,0,0,0,2659, - 2660,1,0,0,0,2660,2661,1,0,0,0,2661,2662,5,259,0,0,2662,2664,5,376, - 0,0,2663,2665,3,288,144,0,2664,2663,1,0,0,0,2664,2665,1,0,0,0,2665, - 2666,1,0,0,0,2666,2668,3,780,390,0,2667,2669,3,140,70,0,2668,2667, - 1,0,0,0,2668,2669,1,0,0,0,2669,2671,1,0,0,0,2670,2672,3,164,82,0, - 2671,2670,1,0,0,0,2671,2672,1,0,0,0,2672,2674,1,0,0,0,2673,2675, - 3,94,47,0,2674,2673,1,0,0,0,2674,2675,1,0,0,0,2675,2677,1,0,0,0, - 2676,2678,3,170,85,0,2677,2676,1,0,0,0,2677,2678,1,0,0,0,2678,2679, - 1,0,0,0,2679,2680,5,36,0,0,2680,2682,3,554,277,0,2681,2683,3,184, - 92,0,2682,2681,1,0,0,0,2682,2683,1,0,0,0,2683,187,1,0,0,0,2684,2685, - 5,305,0,0,2685,2686,5,259,0,0,2686,2688,5,376,0,0,2687,2689,5,109, - 0,0,2688,2687,1,0,0,0,2688,2689,1,0,0,0,2689,2690,1,0,0,0,2690,2692, - 3,782,391,0,2691,2693,3,184,92,0,2692,2691,1,0,0,0,2692,2693,1,0, - 0,0,2693,189,1,0,0,0,2694,2696,5,46,0,0,2695,2697,3,116,58,0,2696, - 2695,1,0,0,0,2696,2697,1,0,0,0,2697,2698,1,0,0,0,2698,2700,5,328, - 0,0,2699,2701,3,288,144,0,2700,2699,1,0,0,0,2700,2701,1,0,0,0,2701, - 2702,1,0,0,0,2702,2708,3,784,392,0,2703,2705,3,194,97,0,2704,2703, - 1,0,0,0,2705,2706,1,0,0,0,2706,2704,1,0,0,0,2706,2707,1,0,0,0,2707, - 2709,1,0,0,0,2708,2704,1,0,0,0,2708,2709,1,0,0,0,2709,191,1,0,0, - 0,2710,2711,5,138,0,0,2711,2713,5,328,0,0,2712,2714,3,416,208,0, - 2713,2712,1,0,0,0,2713,2714,1,0,0,0,2714,2715,1,0,0,0,2715,2717, - 3,784,392,0,2716,2718,3,194,97,0,2717,2716,1,0,0,0,2718,2719,1,0, - 0,0,2719,2717,1,0,0,0,2719,2720,1,0,0,0,2720,193,1,0,0,0,2721,2722, - 5,36,0,0,2722,2755,3,650,325,0,2723,2725,5,148,0,0,2724,2726,3,196, - 98,0,2725,2724,1,0,0,0,2725,2726,1,0,0,0,2726,2755,1,0,0,0,2727, - 2729,5,225,0,0,2728,2730,5,147,0,0,2729,2728,1,0,0,0,2729,2730,1, - 0,0,0,2730,2731,1,0,0,0,2731,2755,3,196,98,0,2732,2733,7,28,0,0, - 2733,2755,3,196,98,0,2734,2735,5,269,0,0,2735,2755,7,29,0,0,2736, - 2737,5,281,0,0,2737,2738,5,147,0,0,2738,2755,3,806,403,0,2739,2740, - 5,328,0,0,2740,2741,5,266,0,0,2741,2755,3,310,155,0,2742,2744,5, - 340,0,0,2743,2745,5,105,0,0,2744,2743,1,0,0,0,2744,2745,1,0,0,0, - 2745,2746,1,0,0,0,2746,2755,3,196,98,0,2747,2749,5,314,0,0,2748, - 2750,5,105,0,0,2749,2748,1,0,0,0,2749,2750,1,0,0,0,2750,2752,1,0, - 0,0,2751,2753,3,196,98,0,2752,2751,1,0,0,0,2752,2753,1,0,0,0,2753, - 2755,1,0,0,0,2754,2721,1,0,0,0,2754,2723,1,0,0,0,2754,2727,1,0,0, - 0,2754,2732,1,0,0,0,2754,2734,1,0,0,0,2754,2736,1,0,0,0,2754,2739, - 1,0,0,0,2754,2742,1,0,0,0,2754,2747,1,0,0,0,2755,195,1,0,0,0,2756, - 2758,7,30,0,0,2757,2756,1,0,0,0,2757,2758,1,0,0,0,2758,2759,1,0, - 0,0,2759,2762,5,576,0,0,2760,2762,3,820,410,0,2761,2757,1,0,0,0, - 2761,2760,1,0,0,0,2762,197,1,0,0,0,2763,2765,5,46,0,0,2764,2766, - 3,360,180,0,2765,2764,1,0,0,0,2765,2766,1,0,0,0,2766,2768,1,0,0, - 0,2767,2769,5,359,0,0,2768,2767,1,0,0,0,2768,2769,1,0,0,0,2769,2771, - 1,0,0,0,2770,2772,5,295,0,0,2771,2770,1,0,0,0,2771,2772,1,0,0,0, - 2772,2773,1,0,0,0,2773,2774,5,247,0,0,2774,2787,3,826,413,0,2775, - 2776,5,215,0,0,2776,2779,3,310,155,0,2777,2778,5,239,0,0,2778,2780, - 3,310,155,0,2779,2777,1,0,0,0,2779,2780,1,0,0,0,2780,2785,1,0,0, - 0,2781,2782,5,373,0,0,2782,2786,3,310,155,0,2783,2784,5,269,0,0, - 2784,2786,5,373,0,0,2785,2781,1,0,0,0,2785,2783,1,0,0,0,2785,2786, - 1,0,0,0,2786,2788,1,0,0,0,2787,2775,1,0,0,0,2787,2788,1,0,0,0,2788, - 199,1,0,0,0,2789,2790,5,46,0,0,2790,2793,3,170,85,0,2791,2792,5, - 282,0,0,2792,2794,3,822,411,0,2793,2791,1,0,0,0,2793,2794,1,0,0, - 0,2794,2795,1,0,0,0,2795,2796,5,255,0,0,2796,2798,3,816,408,0,2797, - 2799,3,94,47,0,2798,2797,1,0,0,0,2798,2799,1,0,0,0,2799,201,1,0, - 0,0,2800,2801,5,46,0,0,2801,2803,5,204,0,0,2802,2804,3,288,144,0, - 2803,2802,1,0,0,0,2803,2804,1,0,0,0,2804,2805,1,0,0,0,2805,2807, - 3,826,413,0,2806,2808,5,105,0,0,2807,2806,1,0,0,0,2807,2808,1,0, - 0,0,2808,2816,1,0,0,0,2809,2810,5,323,0,0,2810,2815,3,794,397,0, - 2811,2812,7,31,0,0,2812,2815,3,58,29,0,2813,2815,5,150,0,0,2814, - 2809,1,0,0,0,2814,2811,1,0,0,0,2814,2813,1,0,0,0,2815,2818,1,0,0, - 0,2816,2814,1,0,0,0,2816,2817,1,0,0,0,2817,203,1,0,0,0,2818,2816, - 1,0,0,0,2819,2820,5,138,0,0,2820,2821,5,204,0,0,2821,2822,3,826, - 413,0,2822,2827,5,369,0,0,2823,2824,5,94,0,0,2824,2826,3,58,29,0, - 2825,2823,1,0,0,0,2826,2829,1,0,0,0,2827,2825,1,0,0,0,2827,2828, - 1,0,0,0,2828,205,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,826,413,0,2833,2866,7,6,0,0,2834,2835, - 5,443,0,0,2835,2836,5,62,0,0,2836,2837,3,648,324,0,2837,2838,5,247, - 0,0,2838,2839,3,826,413,0,2839,2867,1,0,0,0,2840,2841,5,442,0,0, - 2841,2867,3,368,184,0,2842,2843,5,296,0,0,2843,2867,3,372,186,0, - 2844,2845,5,278,0,0,2845,2846,7,32,0,0,2846,2847,3,310,155,0,2847, - 2848,3,164,82,0,2848,2867,1,0,0,0,2849,2850,5,278,0,0,2850,2867, - 3,410,205,0,2851,2852,5,211,0,0,2852,2867,3,376,188,0,2853,2854, - 7,33,0,0,2854,2867,3,648,324,0,2855,2856,5,41,0,0,2856,2857,5,2, - 0,0,2857,2858,3,648,324,0,2858,2859,5,36,0,0,2859,2860,3,648,324, - 0,2860,2861,5,3,0,0,2861,2867,1,0,0,0,2862,2863,5,136,0,0,2863,2867, - 3,388,194,0,2864,2867,3,306,153,0,2865,2867,3,304,152,0,2866,2834, - 1,0,0,0,2866,2840,1,0,0,0,2866,2842,1,0,0,0,2866,2844,1,0,0,0,2866, - 2849,1,0,0,0,2866,2851,1,0,0,0,2866,2853,1,0,0,0,2866,2855,1,0,0, - 0,2866,2862,1,0,0,0,2866,2864,1,0,0,0,2866,2865,1,0,0,0,2867,207, - 1,0,0,0,2868,2869,5,46,0,0,2869,2870,5,63,0,0,2870,2871,5,174,0, - 0,2871,2872,5,381,0,0,2872,2878,3,826,413,0,2873,2875,3,210,105, - 0,2874,2873,1,0,0,0,2875,2876,1,0,0,0,2876,2874,1,0,0,0,2876,2877, - 1,0,0,0,2877,2879,1,0,0,0,2878,2874,1,0,0,0,2878,2879,1,0,0,0,2879, - 2881,1,0,0,0,2880,2882,3,214,107,0,2881,2880,1,0,0,0,2881,2882,1, - 0,0,0,2882,209,1,0,0,0,2883,2885,7,34,0,0,2884,2886,3,310,155,0, - 2885,2884,1,0,0,0,2885,2886,1,0,0,0,2886,2890,1,0,0,0,2887,2888, - 5,269,0,0,2888,2890,7,34,0,0,2889,2883,1,0,0,0,2889,2887,1,0,0,0, - 2890,211,1,0,0,0,2891,2892,5,138,0,0,2892,2893,5,63,0,0,2893,2894, - 5,174,0,0,2894,2895,5,381,0,0,2895,2909,3,826,413,0,2896,2898,3, - 210,105,0,2897,2896,1,0,0,0,2898,2899,1,0,0,0,2899,2897,1,0,0,0, - 2899,2900,1,0,0,0,2900,2902,1,0,0,0,2901,2897,1,0,0,0,2901,2902, - 1,0,0,0,2902,2903,1,0,0,0,2903,2910,3,216,108,0,2904,2906,3,210, - 105,0,2905,2904,1,0,0,0,2906,2907,1,0,0,0,2907,2905,1,0,0,0,2907, - 2908,1,0,0,0,2908,2910,1,0,0,0,2909,2901,1,0,0,0,2909,2905,1,0,0, - 0,2910,213,1,0,0,0,2911,2912,5,280,0,0,2912,2913,5,2,0,0,2913,2918, - 3,220,110,0,2914,2915,5,6,0,0,2915,2917,3,220,110,0,2916,2914,1, - 0,0,0,2917,2920,1,0,0,0,2918,2916,1,0,0,0,2918,2919,1,0,0,0,2919, - 2921,1,0,0,0,2920,2918,1,0,0,0,2921,2922,5,3,0,0,2922,215,1,0,0, - 0,2923,2924,5,280,0,0,2924,2925,5,2,0,0,2925,2930,3,218,109,0,2926, - 2927,5,6,0,0,2927,2929,3,218,109,0,2928,2926,1,0,0,0,2929,2932,1, - 0,0,0,2930,2928,1,0,0,0,2930,2931,1,0,0,0,2931,2933,1,0,0,0,2932, - 2930,1,0,0,0,2933,2934,5,3,0,0,2934,217,1,0,0,0,2935,2936,7,35,0, - 0,2936,2937,3,220,110,0,2937,219,1,0,0,0,2938,2939,3,832,416,0,2939, - 2940,3,816,408,0,2940,221,1,0,0,0,2941,2942,5,46,0,0,2942,2944,5, - 331,0,0,2943,2945,3,288,144,0,2944,2943,1,0,0,0,2944,2945,1,0,0, - 0,2945,2946,1,0,0,0,2946,2949,3,826,413,0,2947,2948,5,360,0,0,2948, - 2950,3,816,408,0,2949,2947,1,0,0,0,2949,2950,1,0,0,0,2950,2952,1, - 0,0,0,2951,2953,3,224,112,0,2952,2951,1,0,0,0,2952,2953,1,0,0,0, - 2953,2954,1,0,0,0,2954,2955,5,63,0,0,2955,2956,5,174,0,0,2956,2957, - 5,381,0,0,2957,2959,3,826,413,0,2958,2960,3,214,107,0,2959,2958, - 1,0,0,0,2959,2960,1,0,0,0,2960,223,1,0,0,0,2961,2964,5,375,0,0,2962, - 2965,3,816,408,0,2963,2965,5,78,0,0,2964,2962,1,0,0,0,2964,2963, - 1,0,0,0,2965,225,1,0,0,0,2966,2967,5,138,0,0,2967,2968,5,331,0,0, - 2968,2974,3,826,413,0,2969,2975,3,216,108,0,2970,2972,3,224,112, - 0,2971,2973,3,216,108,0,2972,2971,1,0,0,0,2972,2973,1,0,0,0,2973, - 2975,1,0,0,0,2974,2969,1,0,0,0,2974,2970,1,0,0,0,2975,227,1,0,0, - 0,2976,2977,5,46,0,0,2977,2978,5,63,0,0,2978,2980,5,92,0,0,2979, - 2981,3,288,144,0,2980,2979,1,0,0,0,2980,2981,1,0,0,0,2981,2982,1, - 0,0,0,2982,2983,3,776,388,0,2983,2985,5,2,0,0,2984,2986,3,120,60, - 0,2985,2984,1,0,0,0,2985,2986,1,0,0,0,2986,2987,1,0,0,0,2987,2989, - 5,3,0,0,2988,2990,3,158,79,0,2989,2988,1,0,0,0,2989,2990,1,0,0,0, - 2990,2991,1,0,0,0,2991,2992,5,331,0,0,2992,2994,3,826,413,0,2993, - 2995,3,214,107,0,2994,2993,1,0,0,0,2994,2995,1,0,0,0,2995,3016,1, - 0,0,0,2996,2997,5,46,0,0,2997,2998,5,63,0,0,2998,3000,5,92,0,0,2999, - 3001,3,288,144,0,3000,2999,1,0,0,0,3000,3001,1,0,0,0,3001,3002,1, - 0,0,0,3002,3003,3,776,388,0,3003,3004,5,285,0,0,3004,3005,5,275, - 0,0,3005,3007,3,778,389,0,3006,3008,3,118,59,0,3007,3006,1,0,0,0, - 3007,3008,1,0,0,0,3008,3009,1,0,0,0,3009,3010,3,98,49,0,3010,3011, - 5,331,0,0,3011,3013,3,826,413,0,3012,3014,3,214,107,0,3013,3012, - 1,0,0,0,3013,3014,1,0,0,0,3014,3016,1,0,0,0,3015,2976,1,0,0,0,3015, - 2996,1,0,0,0,3016,229,1,0,0,0,3017,3018,5,444,0,0,3018,3019,5,63, - 0,0,3019,3020,5,323,0,0,3020,3030,3,794,397,0,3021,3022,5,74,0,0, - 3022,3025,5,94,0,0,3023,3025,5,59,0,0,3024,3021,1,0,0,0,3024,3023, - 1,0,0,0,3025,3026,1,0,0,0,3026,3027,5,2,0,0,3027,3028,3,624,312, - 0,3028,3029,5,3,0,0,3029,3031,1,0,0,0,3030,3024,1,0,0,0,3030,3031, - 1,0,0,0,3031,3032,1,0,0,0,3032,3033,5,64,0,0,3033,3034,5,331,0,0, - 3034,3035,3,826,413,0,3035,3036,5,71,0,0,3036,3038,3,826,413,0,3037, - 3039,3,214,107,0,3038,3037,1,0,0,0,3038,3039,1,0,0,0,3039,231,1, - 0,0,0,3040,3041,5,46,0,0,3041,3042,5,99,0,0,3042,3044,5,257,0,0, - 3043,3045,3,288,144,0,3044,3043,1,0,0,0,3044,3045,1,0,0,0,3045,3046, - 1,0,0,0,3046,3049,5,62,0,0,3047,3050,3,822,411,0,3048,3050,5,99, - 0,0,3049,3047,1,0,0,0,3049,3048,1,0,0,0,3050,3051,1,0,0,0,3051,3052, - 5,331,0,0,3052,3054,3,826,413,0,3053,3055,3,214,107,0,3054,3053, - 1,0,0,0,3054,3055,1,0,0,0,3055,233,1,0,0,0,3056,3057,5,138,0,0,3057, - 3058,5,99,0,0,3058,3059,5,257,0,0,3059,3062,5,62,0,0,3060,3063,3, - 822,411,0,3061,3063,5,99,0,0,3062,3060,1,0,0,0,3062,3061,1,0,0,0, - 3063,3064,1,0,0,0,3064,3065,5,331,0,0,3065,3066,3,826,413,0,3066, - 3067,3,216,108,0,3067,235,1,0,0,0,3068,3069,5,46,0,0,3069,3070,5, - 445,0,0,3070,3071,3,826,413,0,3071,3072,5,80,0,0,3072,3079,3,784, - 392,0,3073,3077,5,36,0,0,3074,3078,5,541,0,0,3075,3078,5,542,0,0, - 3076,3078,3,834,417,0,3077,3074,1,0,0,0,3077,3075,1,0,0,0,3077,3076, - 1,0,0,0,3078,3080,1,0,0,0,3079,3073,1,0,0,0,3079,3080,1,0,0,0,3080, - 3083,1,0,0,0,3081,3082,5,62,0,0,3082,3084,7,36,0,0,3083,3081,1,0, - 0,0,3083,3084,1,0,0,0,3084,3087,1,0,0,0,3085,3086,5,94,0,0,3086, - 3088,3,824,412,0,3087,3085,1,0,0,0,3087,3088,1,0,0,0,3088,3090,1, - 0,0,0,3089,3091,3,244,122,0,3090,3089,1,0,0,0,3090,3091,1,0,0,0, - 3091,3093,1,0,0,0,3092,3094,3,246,123,0,3093,3092,1,0,0,0,3093,3094, - 1,0,0,0,3094,237,1,0,0,0,3095,3096,5,138,0,0,3096,3097,5,445,0,0, - 3097,3098,3,826,413,0,3098,3099,5,80,0,0,3099,3102,3,784,392,0,3100, - 3101,5,94,0,0,3101,3103,3,824,412,0,3102,3100,1,0,0,0,3102,3103, - 1,0,0,0,3103,3105,1,0,0,0,3104,3106,3,244,122,0,3105,3104,1,0,0, - 0,3105,3106,1,0,0,0,3106,3108,1,0,0,0,3107,3109,3,246,123,0,3108, - 3107,1,0,0,0,3108,3109,1,0,0,0,3109,239,1,0,0,0,3110,3111,5,138, - 0,0,3111,3112,5,296,0,0,3112,3114,3,800,400,0,3113,3115,3,362,181, - 0,3114,3113,1,0,0,0,3114,3115,1,0,0,0,3115,3142,1,0,0,0,3116,3120, - 3,242,121,0,3117,3119,3,242,121,0,3118,3117,1,0,0,0,3119,3122,1, - 0,0,0,3120,3118,1,0,0,0,3120,3121,1,0,0,0,3121,3124,1,0,0,0,3122, - 3120,1,0,0,0,3123,3125,5,315,0,0,3124,3123,1,0,0,0,3124,3125,1,0, - 0,0,3125,3143,1,0,0,0,3126,3127,5,309,0,0,3127,3128,5,94,0,0,3128, - 3143,3,802,401,0,3129,3130,5,282,0,0,3130,3131,5,94,0,0,3131,3143, - 3,822,411,0,3132,3133,5,333,0,0,3133,3134,5,323,0,0,3134,3143,3, - 32,16,0,3135,3137,5,269,0,0,3136,3135,1,0,0,0,3136,3137,1,0,0,0, - 3137,3138,1,0,0,0,3138,3139,5,462,0,0,3139,3140,5,80,0,0,3140,3141, - 5,204,0,0,3141,3143,3,826,413,0,3142,3116,1,0,0,0,3142,3126,1,0, - 0,0,3142,3129,1,0,0,0,3142,3132,1,0,0,0,3142,3136,1,0,0,0,3143,241, - 1,0,0,0,3144,3146,5,205,0,0,3145,3144,1,0,0,0,3145,3146,1,0,0,0, - 3146,3147,1,0,0,0,3147,3148,5,327,0,0,3148,3155,5,243,0,0,3149,3151, - 5,205,0,0,3150,3149,1,0,0,0,3150,3151,1,0,0,0,3151,3152,1,0,0,0, - 3152,3153,5,327,0,0,3153,3155,5,181,0,0,3154,3145,1,0,0,0,3154,3150, - 1,0,0,0,3155,3174,1,0,0,0,3156,3157,5,333,0,0,3157,3158,3,826,413, - 0,3158,3161,7,37,0,0,3159,3162,3,826,413,0,3160,3162,5,53,0,0,3161, - 3159,1,0,0,0,3161,3160,1,0,0,0,3162,3174,1,0,0,0,3163,3164,5,333, - 0,0,3164,3165,3,826,413,0,3165,3166,5,64,0,0,3166,3167,5,434,0,0, - 3167,3174,1,0,0,0,3168,3171,5,313,0,0,3169,3172,3,826,413,0,3170, - 3172,5,30,0,0,3171,3169,1,0,0,0,3171,3170,1,0,0,0,3172,3174,1,0, - 0,0,3173,3154,1,0,0,0,3173,3156,1,0,0,0,3173,3163,1,0,0,0,3173,3168, - 1,0,0,0,3174,243,1,0,0,0,3175,3176,5,100,0,0,3176,3177,5,2,0,0,3177, - 3178,3,670,335,0,3178,3179,5,3,0,0,3179,245,1,0,0,0,3180,3181,5, - 105,0,0,3181,3182,5,42,0,0,3182,3183,5,2,0,0,3183,3184,3,670,335, - 0,3184,3185,5,3,0,0,3185,247,1,0,0,0,3186,3187,5,46,0,0,3187,3188, - 5,131,0,0,3188,3189,5,446,0,0,3189,3190,3,826,413,0,3190,3191,5, - 360,0,0,3191,3192,7,38,0,0,3192,3193,5,215,0,0,3193,3194,3,310,155, - 0,3194,249,1,0,0,0,3195,3197,5,46,0,0,3196,3198,3,360,180,0,3197, - 3196,1,0,0,0,3197,3198,1,0,0,0,3198,3199,1,0,0,0,3199,3200,5,357, - 0,0,3200,3201,3,826,413,0,3201,3202,3,252,126,0,3202,3203,3,254, - 127,0,3203,3204,5,80,0,0,3204,3216,3,778,389,0,3205,3212,5,447,0, - 0,3206,3207,7,39,0,0,3207,3209,7,40,0,0,3208,3210,5,36,0,0,3209, - 3208,1,0,0,0,3209,3210,1,0,0,0,3210,3211,1,0,0,0,3211,3213,3,826, - 413,0,3212,3206,1,0,0,0,3213,3214,1,0,0,0,3214,3212,1,0,0,0,3214, - 3215,1,0,0,0,3215,3217,1,0,0,0,3216,3205,1,0,0,0,3216,3217,1,0,0, - 0,3217,3223,1,0,0,0,3218,3220,5,62,0,0,3219,3221,5,192,0,0,3220, - 3219,1,0,0,0,3220,3221,1,0,0,0,3221,3222,1,0,0,0,3222,3224,7,41, - 0,0,3223,3218,1,0,0,0,3223,3224,1,0,0,0,3224,3226,1,0,0,0,3225,3227, - 3,258,129,0,3226,3225,1,0,0,0,3226,3227,1,0,0,0,3227,3228,1,0,0, - 0,3228,3229,5,202,0,0,3229,3230,3,260,130,0,3230,3231,5,2,0,0,3231, - 3232,3,262,131,0,3232,3233,5,3,0,0,3233,3274,1,0,0,0,3234,3236,5, - 46,0,0,3235,3237,3,360,180,0,3236,3235,1,0,0,0,3236,3237,1,0,0,0, - 3237,3239,1,0,0,0,3238,3240,5,45,0,0,3239,3238,1,0,0,0,3239,3240, - 1,0,0,0,3240,3241,1,0,0,0,3241,3242,5,357,0,0,3242,3243,3,826,413, - 0,3243,3244,3,252,126,0,3244,3245,3,254,127,0,3245,3246,5,80,0,0, - 3246,3249,3,778,389,0,3247,3248,5,64,0,0,3248,3250,3,784,392,0,3249, - 3247,1,0,0,0,3249,3250,1,0,0,0,3250,3254,1,0,0,0,3251,3253,3,266, - 133,0,3252,3251,1,0,0,0,3253,3256,1,0,0,0,3254,3252,1,0,0,0,3254, - 3255,1,0,0,0,3255,3262,1,0,0,0,3256,3254,1,0,0,0,3257,3259,5,62, - 0,0,3258,3260,5,192,0,0,3259,3258,1,0,0,0,3259,3260,1,0,0,0,3260, - 3261,1,0,0,0,3261,3263,7,41,0,0,3262,3257,1,0,0,0,3262,3263,1,0, - 0,0,3263,3265,1,0,0,0,3264,3266,3,258,129,0,3265,3264,1,0,0,0,3265, - 3266,1,0,0,0,3266,3267,1,0,0,0,3267,3268,5,202,0,0,3268,3269,3,260, - 130,0,3269,3270,5,2,0,0,3270,3271,3,262,131,0,3271,3272,5,3,0,0, - 3272,3274,1,0,0,0,3273,3195,1,0,0,0,3273,3234,1,0,0,0,3274,251,1, - 0,0,0,3275,3280,5,145,0,0,3276,3280,5,135,0,0,3277,3278,5,242,0, - 0,3278,3280,5,275,0,0,3279,3275,1,0,0,0,3279,3276,1,0,0,0,3279,3277, - 1,0,0,0,3280,253,1,0,0,0,3281,3286,3,256,128,0,3282,3283,5,82,0, - 0,3283,3285,3,256,128,0,3284,3282,1,0,0,0,3285,3288,1,0,0,0,3286, - 3284,1,0,0,0,3286,3287,1,0,0,0,3287,255,1,0,0,0,3288,3286,1,0,0, - 0,3289,3298,5,241,0,0,3290,3298,5,182,0,0,3291,3294,5,369,0,0,3292, - 3293,5,275,0,0,3293,3295,3,142,71,0,3294,3292,1,0,0,0,3294,3295, - 1,0,0,0,3295,3298,1,0,0,0,3296,3298,5,358,0,0,3297,3289,1,0,0,0, - 3297,3290,1,0,0,0,3297,3291,1,0,0,0,3297,3296,1,0,0,0,3298,257,1, - 0,0,0,3299,3300,5,102,0,0,3300,3301,5,2,0,0,3301,3302,3,670,335, - 0,3302,3303,5,3,0,0,3303,259,1,0,0,0,3304,3305,5,211,0,0,3305,3309, - 3,814,407,0,3306,3307,5,296,0,0,3307,3309,3,800,400,0,3308,3304, - 1,0,0,0,3308,3306,1,0,0,0,3309,261,1,0,0,0,3310,3313,3,264,132,0, - 3311,3313,1,0,0,0,3312,3310,1,0,0,0,3312,3311,1,0,0,0,3313,3318, - 1,0,0,0,3314,3315,5,6,0,0,3315,3317,3,264,132,0,3316,3314,1,0,0, - 0,3317,3320,1,0,0,0,3318,3316,1,0,0,0,3318,3319,1,0,0,0,3319,263, - 1,0,0,0,3320,3318,1,0,0,0,3321,3326,5,574,0,0,3322,3326,5,576,0, - 0,3323,3326,3,816,408,0,3324,3326,3,832,416,0,3325,3321,1,0,0,0, - 3325,3322,1,0,0,0,3325,3323,1,0,0,0,3325,3324,1,0,0,0,3326,265,1, - 0,0,0,3327,3329,5,77,0,0,3328,3327,1,0,0,0,3328,3329,1,0,0,0,3329, - 3330,1,0,0,0,3330,3338,5,54,0,0,3331,3332,5,69,0,0,3332,3338,7,9, - 0,0,3333,3334,5,77,0,0,3334,3338,5,371,0,0,3335,3336,5,269,0,0,3336, - 3338,5,228,0,0,3337,3328,1,0,0,0,3337,3331,1,0,0,0,3337,3333,1,0, - 0,0,3337,3335,1,0,0,0,3338,267,1,0,0,0,3339,3340,5,46,0,0,3340,3341, - 5,198,0,0,3341,3342,5,357,0,0,3342,3343,3,826,413,0,3343,3344,5, - 80,0,0,3344,3354,3,832,416,0,3345,3346,5,102,0,0,3346,3351,3,270, - 135,0,3347,3348,5,33,0,0,3348,3350,3,270,135,0,3349,3347,1,0,0,0, - 3350,3353,1,0,0,0,3351,3349,1,0,0,0,3351,3352,1,0,0,0,3352,3355, - 1,0,0,0,3353,3351,1,0,0,0,3354,3345,1,0,0,0,3354,3355,1,0,0,0,3355, - 3356,1,0,0,0,3356,3357,5,202,0,0,3357,3358,3,260,130,0,3358,3359, - 5,2,0,0,3359,3360,5,3,0,0,3360,269,1,0,0,0,3361,3362,3,826,413,0, - 3362,3363,5,68,0,0,3363,3364,5,2,0,0,3364,3368,3,816,408,0,3365, - 3367,3,456,228,0,3366,3365,1,0,0,0,3367,3370,1,0,0,0,3368,3366,1, - 0,0,0,3368,3369,1,0,0,0,3369,3371,1,0,0,0,3370,3368,1,0,0,0,3371, - 3372,5,3,0,0,3372,271,1,0,0,0,3373,3374,5,138,0,0,3374,3375,5,198, - 0,0,3375,3376,5,357,0,0,3376,3382,3,826,413,0,3377,3379,5,193,0, - 0,3378,3380,7,14,0,0,3379,3378,1,0,0,0,3379,3380,1,0,0,0,3380,3383, - 1,0,0,0,3381,3383,5,186,0,0,3382,3377,1,0,0,0,3382,3381,1,0,0,0, - 3383,273,1,0,0,0,3384,3385,5,46,0,0,3385,3386,5,140,0,0,3386,3387, - 3,310,155,0,3387,3388,5,42,0,0,3388,3389,5,2,0,0,3389,3390,3,670, - 335,0,3390,3394,5,3,0,0,3391,3393,3,266,133,0,3392,3391,1,0,0,0, - 3393,3396,1,0,0,0,3394,3392,1,0,0,0,3394,3395,1,0,0,0,3395,275,1, - 0,0,0,3396,3394,1,0,0,0,3397,3399,5,46,0,0,3398,3400,3,360,180,0, - 3399,3398,1,0,0,0,3399,3400,1,0,0,0,3400,3401,1,0,0,0,3401,3402, - 5,136,0,0,3402,3417,3,814,407,0,3403,3404,3,386,193,0,3404,3405, - 3,278,139,0,3405,3418,1,0,0,0,3406,3407,5,2,0,0,3407,3412,3,284, - 142,0,3408,3409,5,6,0,0,3409,3411,3,284,142,0,3410,3408,1,0,0,0, - 3411,3414,1,0,0,0,3412,3410,1,0,0,0,3412,3413,1,0,0,0,3413,3415, - 1,0,0,0,3414,3412,1,0,0,0,3415,3416,5,3,0,0,3416,3418,1,0,0,0,3417, - 3403,1,0,0,0,3417,3406,1,0,0,0,3418,3476,1,0,0,0,3419,3420,5,46, - 0,0,3420,3421,5,278,0,0,3421,3422,3,408,204,0,3422,3423,3,278,139, - 0,3423,3476,1,0,0,0,3424,3425,5,46,0,0,3425,3426,5,360,0,0,3426, - 3427,3,310,155,0,3427,3445,5,36,0,0,3428,3430,5,2,0,0,3429,3431, - 3,638,319,0,3430,3429,1,0,0,0,3430,3431,1,0,0,0,3431,3432,1,0,0, - 0,3432,3446,5,3,0,0,3433,3434,5,196,0,0,3434,3442,5,2,0,0,3435,3439, - 3,816,408,0,3436,3438,3,456,228,0,3437,3436,1,0,0,0,3438,3441,1, - 0,0,0,3439,3437,1,0,0,0,3439,3440,1,0,0,0,3440,3443,1,0,0,0,3441, - 3439,1,0,0,0,3442,3435,1,0,0,0,3442,3443,1,0,0,0,3443,3444,1,0,0, - 0,3444,3446,5,3,0,0,3445,3428,1,0,0,0,3445,3433,1,0,0,0,3446,3476, - 1,0,0,0,3447,3448,5,46,0,0,3448,3449,5,360,0,0,3449,3455,3,310,155, - 0,3450,3451,5,36,0,0,3451,3453,5,299,0,0,3452,3450,1,0,0,0,3452, - 3453,1,0,0,0,3453,3454,1,0,0,0,3454,3456,3,278,139,0,3455,3452,1, - 0,0,0,3455,3456,1,0,0,0,3456,3476,1,0,0,0,3457,3458,5,46,0,0,3458, - 3459,5,355,0,0,3459,3460,5,325,0,0,3460,3461,7,42,0,0,3461,3462, - 3,310,155,0,3462,3463,3,278,139,0,3463,3476,1,0,0,0,3464,3465,5, - 46,0,0,3465,3467,5,108,0,0,3466,3468,3,288,144,0,3467,3466,1,0,0, - 0,3467,3468,1,0,0,0,3468,3469,1,0,0,0,3469,3473,3,310,155,0,3470, - 3474,3,278,139,0,3471,3472,5,64,0,0,3472,3474,3,310,155,0,3473,3470, - 1,0,0,0,3473,3471,1,0,0,0,3474,3476,1,0,0,0,3475,3397,1,0,0,0,3475, - 3419,1,0,0,0,3475,3424,1,0,0,0,3475,3447,1,0,0,0,3475,3457,1,0,0, - 0,3475,3464,1,0,0,0,3476,277,1,0,0,0,3477,3478,5,2,0,0,3478,3483, - 3,280,140,0,3479,3480,5,6,0,0,3480,3482,3,280,140,0,3481,3479,1, - 0,0,0,3482,3485,1,0,0,0,3483,3481,1,0,0,0,3483,3484,1,0,0,0,3484, - 3486,1,0,0,0,3485,3483,1,0,0,0,3486,3487,5,3,0,0,3487,279,1,0,0, - 0,3488,3491,3,832,416,0,3489,3490,5,10,0,0,3490,3492,3,282,141,0, - 3491,3489,1,0,0,0,3491,3492,1,0,0,0,3492,281,1,0,0,0,3493,3500,3, - 382,191,0,3494,3500,3,842,421,0,3495,3500,3,724,362,0,3496,3500, - 3,196,98,0,3497,3500,3,816,408,0,3498,3500,5,407,0,0,3499,3493,1, - 0,0,0,3499,3494,1,0,0,0,3499,3495,1,0,0,0,3499,3496,1,0,0,0,3499, - 3497,1,0,0,0,3499,3498,1,0,0,0,3500,283,1,0,0,0,3501,3502,3,834, - 417,0,3502,3503,5,10,0,0,3503,3504,3,282,141,0,3504,285,1,0,0,0, - 3505,3506,5,138,0,0,3506,3507,5,360,0,0,3507,3508,3,310,155,0,3508, - 3509,5,133,0,0,3509,3511,5,450,0,0,3510,3512,3,288,144,0,3511,3510, - 1,0,0,0,3511,3512,1,0,0,0,3512,3513,1,0,0,0,3513,3516,3,816,408, - 0,3514,3515,7,43,0,0,3515,3517,3,816,408,0,3516,3514,1,0,0,0,3516, - 3517,1,0,0,0,3517,3528,1,0,0,0,3518,3519,5,138,0,0,3519,3520,5,360, - 0,0,3520,3521,3,310,155,0,3521,3522,5,309,0,0,3522,3523,5,450,0, - 0,3523,3524,3,816,408,0,3524,3525,5,94,0,0,3525,3526,3,816,408,0, - 3526,3528,1,0,0,0,3527,3505,1,0,0,0,3527,3518,1,0,0,0,3528,287,1, - 0,0,0,3529,3530,5,220,0,0,3530,3531,5,77,0,0,3531,3532,5,396,0,0, - 3532,289,1,0,0,0,3533,3534,5,46,0,0,3534,3535,5,278,0,0,3535,3536, - 5,156,0,0,3536,3538,3,310,155,0,3537,3539,5,53,0,0,3538,3537,1,0, - 0,0,3538,3539,1,0,0,0,3539,3540,1,0,0,0,3540,3541,5,62,0,0,3541, - 3542,5,360,0,0,3542,3543,3,648,324,0,3543,3546,3,164,82,0,3544,3545, - 5,206,0,0,3545,3547,3,310,155,0,3546,3544,1,0,0,0,3546,3547,1,0, - 0,0,3547,3548,1,0,0,0,3548,3549,5,36,0,0,3549,3554,3,292,146,0,3550, - 3551,5,6,0,0,3551,3553,3,292,146,0,3552,3550,1,0,0,0,3553,3556,1, - 0,0,0,3554,3552,1,0,0,0,3554,3555,1,0,0,0,3555,291,1,0,0,0,3556, - 3554,1,0,0,0,3557,3558,5,278,0,0,3558,3559,5,574,0,0,3559,3561,3, - 408,204,0,3560,3562,3,406,203,0,3561,3560,1,0,0,0,3561,3562,1,0, - 0,0,3562,3570,1,0,0,0,3563,3568,5,62,0,0,3564,3569,5,325,0,0,3565, - 3566,5,83,0,0,3566,3567,5,147,0,0,3567,3569,3,310,155,0,3568,3564, - 1,0,0,0,3568,3565,1,0,0,0,3569,3571,1,0,0,0,3570,3563,1,0,0,0,3570, - 3571,1,0,0,0,3571,3573,1,0,0,0,3572,3574,5,302,0,0,3573,3572,1,0, - 0,0,3573,3574,1,0,0,0,3574,3584,1,0,0,0,3575,3576,5,211,0,0,3576, - 3578,5,574,0,0,3577,3579,3,522,261,0,3578,3577,1,0,0,0,3578,3579, - 1,0,0,0,3579,3580,1,0,0,0,3580,3584,3,376,188,0,3581,3582,5,345, - 0,0,3582,3584,3,648,324,0,3583,3557,1,0,0,0,3583,3575,1,0,0,0,3583, - 3581,1,0,0,0,3584,293,1,0,0,0,3585,3586,5,46,0,0,3586,3587,5,278, - 0,0,3587,3588,5,206,0,0,3588,3589,3,310,155,0,3589,3590,3,164,82, - 0,3590,295,1,0,0,0,3591,3592,5,138,0,0,3592,3593,5,278,0,0,3593, - 3594,5,206,0,0,3594,3595,3,310,155,0,3595,3614,3,164,82,0,3596,3597, - 5,133,0,0,3597,3602,3,292,146,0,3598,3599,5,6,0,0,3599,3601,3,292, - 146,0,3600,3598,1,0,0,0,3601,3604,1,0,0,0,3602,3600,1,0,0,0,3602, - 3603,1,0,0,0,3603,3615,1,0,0,0,3604,3602,1,0,0,0,3605,3606,5,191, - 0,0,3606,3611,3,298,149,0,3607,3608,5,6,0,0,3608,3610,3,298,149, - 0,3609,3607,1,0,0,0,3610,3613,1,0,0,0,3611,3609,1,0,0,0,3611,3612, - 1,0,0,0,3612,3615,1,0,0,0,3613,3611,1,0,0,0,3614,3596,1,0,0,0,3614, - 3605,1,0,0,0,3615,297,1,0,0,0,3616,3617,7,44,0,0,3617,3618,5,574, - 0,0,3618,3619,3,522,261,0,3619,299,1,0,0,0,3620,3621,5,301,0,0,3621, - 3622,5,281,0,0,3622,3623,5,147,0,0,3623,3624,3,824,412,0,3624,3625, - 5,94,0,0,3625,3626,3,822,411,0,3626,301,1,0,0,0,3627,3650,5,191, - 0,0,3628,3651,5,328,0,0,3629,3651,5,226,0,0,3630,3651,5,108,0,0, - 3631,3651,5,168,0,0,3632,3651,5,342,0,0,3633,3651,5,452,0,0,3634, - 3651,5,331,0,0,3635,3636,5,131,0,0,3636,3651,5,446,0,0,3637,3638, - 5,198,0,0,3638,3651,5,357,0,0,3639,3651,5,204,0,0,3640,3642,5,295, - 0,0,3641,3640,1,0,0,0,3641,3642,1,0,0,0,3642,3643,1,0,0,0,3643,3651, - 5,247,0,0,3644,3645,5,63,0,0,3645,3646,5,174,0,0,3646,3651,5,381, - 0,0,3647,3648,5,355,0,0,3648,3649,5,325,0,0,3649,3651,7,42,0,0,3650, - 3628,1,0,0,0,3650,3629,1,0,0,0,3650,3630,1,0,0,0,3650,3631,1,0,0, - 0,3650,3632,1,0,0,0,3650,3633,1,0,0,0,3650,3634,1,0,0,0,3650,3635, - 1,0,0,0,3650,3637,1,0,0,0,3650,3639,1,0,0,0,3650,3641,1,0,0,0,3650, - 3644,1,0,0,0,3650,3647,1,0,0,0,3651,3653,1,0,0,0,3652,3654,3,416, - 208,0,3653,3652,1,0,0,0,3653,3654,1,0,0,0,3654,3655,1,0,0,0,3655, - 3657,3,788,394,0,3656,3658,3,88,44,0,3657,3656,1,0,0,0,3657,3658, - 1,0,0,0,3658,3835,1,0,0,0,3659,3661,5,191,0,0,3660,3662,5,259,0, - 0,3661,3660,1,0,0,0,3661,3662,1,0,0,0,3662,3663,1,0,0,0,3663,3665, - 5,376,0,0,3664,3666,3,416,208,0,3665,3664,1,0,0,0,3665,3666,1,0, - 0,0,3666,3667,1,0,0,0,3667,3672,3,782,391,0,3668,3669,5,6,0,0,3669, - 3671,3,782,391,0,3670,3668,1,0,0,0,3671,3674,1,0,0,0,3672,3670,1, - 0,0,0,3672,3673,1,0,0,0,3673,3676,1,0,0,0,3674,3672,1,0,0,0,3675, - 3677,3,88,44,0,3676,3675,1,0,0,0,3676,3677,1,0,0,0,3677,3835,1,0, - 0,0,3678,3680,5,191,0,0,3679,3681,5,63,0,0,3680,3679,1,0,0,0,3680, - 3681,1,0,0,0,3681,3682,1,0,0,0,3682,3684,5,92,0,0,3683,3685,3,416, - 208,0,3684,3683,1,0,0,0,3684,3685,1,0,0,0,3685,3686,1,0,0,0,3686, - 3688,3,766,383,0,3687,3689,3,88,44,0,3688,3687,1,0,0,0,3688,3689, - 1,0,0,0,3689,3835,1,0,0,0,3690,3691,5,191,0,0,3691,3693,5,323,0, - 0,3692,3694,3,416,208,0,3693,3692,1,0,0,0,3693,3694,1,0,0,0,3694, - 3695,1,0,0,0,3695,3697,3,768,384,0,3696,3698,3,88,44,0,3697,3696, - 1,0,0,0,3697,3698,1,0,0,0,3698,3835,1,0,0,0,3699,3700,5,191,0,0, - 3700,3702,7,45,0,0,3701,3703,3,416,208,0,3702,3701,1,0,0,0,3702, - 3703,1,0,0,0,3703,3704,1,0,0,0,3704,3705,3,826,413,0,3705,3706,5, - 80,0,0,3706,3708,3,310,155,0,3707,3709,3,88,44,0,3708,3707,1,0,0, - 0,3708,3709,1,0,0,0,3709,3835,1,0,0,0,3710,3711,5,191,0,0,3711,3713, - 7,33,0,0,3712,3714,3,416,208,0,3713,3712,1,0,0,0,3713,3714,1,0,0, - 0,3714,3715,1,0,0,0,3715,3720,3,648,324,0,3716,3717,5,6,0,0,3717, - 3719,3,648,324,0,3718,3716,1,0,0,0,3719,3722,1,0,0,0,3720,3718,1, - 0,0,0,3720,3721,1,0,0,0,3721,3724,1,0,0,0,3722,3720,1,0,0,0,3723, - 3725,3,88,44,0,3724,3723,1,0,0,0,3724,3725,1,0,0,0,3725,3835,1,0, - 0,0,3726,3727,5,191,0,0,3727,3728,5,226,0,0,3728,3730,5,109,0,0, - 3729,3731,3,416,208,0,3730,3729,1,0,0,0,3730,3731,1,0,0,0,3731,3732, - 1,0,0,0,3732,3734,3,308,154,0,3733,3735,3,88,44,0,3734,3733,1,0, - 0,0,3734,3735,1,0,0,0,3735,3835,1,0,0,0,3736,3737,5,191,0,0,3737, - 3739,5,41,0,0,3738,3740,3,416,208,0,3739,3738,1,0,0,0,3739,3740, - 1,0,0,0,3740,3741,1,0,0,0,3741,3742,5,2,0,0,3742,3743,3,648,324, - 0,3743,3744,5,36,0,0,3744,3745,3,648,324,0,3745,3747,5,3,0,0,3746, - 3748,3,88,44,0,3747,3746,1,0,0,0,3747,3748,1,0,0,0,3748,3835,1,0, - 0,0,3749,3750,5,191,0,0,3750,3751,5,278,0,0,3751,3753,7,32,0,0,3752, - 3754,3,416,208,0,3753,3752,1,0,0,0,3753,3754,1,0,0,0,3754,3755,1, - 0,0,0,3755,3756,3,310,155,0,3756,3758,3,164,82,0,3757,3759,3,88, - 44,0,3758,3757,1,0,0,0,3758,3759,1,0,0,0,3759,3835,1,0,0,0,3760, - 3761,5,191,0,0,3761,3762,5,281,0,0,3762,3763,5,147,0,0,3763,3765, - 3,824,412,0,3764,3766,3,88,44,0,3765,3764,1,0,0,0,3765,3766,1,0, - 0,0,3766,3835,1,0,0,0,3767,3768,5,191,0,0,3768,3770,5,451,0,0,3769, - 3771,3,416,208,0,3770,3769,1,0,0,0,3770,3771,1,0,0,0,3771,3772,1, - 0,0,0,3772,3774,3,826,413,0,3773,3775,3,88,44,0,3774,3773,1,0,0, - 0,3774,3775,1,0,0,0,3775,3835,1,0,0,0,3776,3777,5,191,0,0,3777,3779, - 5,351,0,0,3778,3780,3,416,208,0,3779,3778,1,0,0,0,3779,3780,1,0, - 0,0,3780,3781,1,0,0,0,3781,3835,3,774,387,0,3782,3783,5,191,0,0, - 3783,3785,5,443,0,0,3784,3786,3,416,208,0,3785,3784,1,0,0,0,3785, - 3786,1,0,0,0,3786,3787,1,0,0,0,3787,3788,5,62,0,0,3788,3789,3,648, - 324,0,3789,3790,5,247,0,0,3790,3792,3,826,413,0,3791,3793,3,88,44, - 0,3792,3791,1,0,0,0,3792,3793,1,0,0,0,3793,3835,1,0,0,0,3794,3795, - 5,191,0,0,3795,3797,7,46,0,0,3796,3798,3,416,208,0,3797,3796,1,0, - 0,0,3797,3798,1,0,0,0,3798,3799,1,0,0,0,3799,3835,3,824,412,0,3800, - 3801,5,191,0,0,3801,3802,5,99,0,0,3802,3804,5,257,0,0,3803,3805, - 3,416,208,0,3804,3803,1,0,0,0,3804,3805,1,0,0,0,3805,3806,1,0,0, - 0,3806,3809,5,62,0,0,3807,3810,3,822,411,0,3808,3810,5,99,0,0,3809, - 3807,1,0,0,0,3809,3808,1,0,0,0,3810,3811,1,0,0,0,3811,3812,5,331, - 0,0,3812,3835,3,826,413,0,3813,3814,5,191,0,0,3814,3816,5,175,0, - 0,3815,3817,3,416,208,0,3816,3815,1,0,0,0,3816,3817,1,0,0,0,3817, - 3818,1,0,0,0,3818,3832,3,792,396,0,3819,3821,5,105,0,0,3820,3819, - 1,0,0,0,3820,3821,1,0,0,0,3821,3822,1,0,0,0,3822,3823,5,2,0,0,3823, - 3828,5,209,0,0,3824,3825,5,6,0,0,3825,3827,5,209,0,0,3826,3824,1, - 0,0,0,3827,3830,1,0,0,0,3828,3826,1,0,0,0,3828,3829,1,0,0,0,3829, - 3831,1,0,0,0,3830,3828,1,0,0,0,3831,3833,5,3,0,0,3832,3820,1,0,0, - 0,3832,3833,1,0,0,0,3833,3835,1,0,0,0,3834,3627,1,0,0,0,3834,3659, - 1,0,0,0,3834,3678,1,0,0,0,3834,3690,1,0,0,0,3834,3699,1,0,0,0,3834, - 3710,1,0,0,0,3834,3726,1,0,0,0,3834,3736,1,0,0,0,3834,3749,1,0,0, - 0,3834,3760,1,0,0,0,3834,3767,1,0,0,0,3834,3776,1,0,0,0,3834,3782, - 1,0,0,0,3834,3794,1,0,0,0,3834,3800,1,0,0,0,3834,3813,1,0,0,0,3835, - 303,1,0,0,0,3836,3838,5,63,0,0,3837,3836,1,0,0,0,3837,3838,1,0,0, - 0,3838,3839,1,0,0,0,3839,3840,5,92,0,0,3840,3853,3,778,389,0,3841, - 3843,5,259,0,0,3842,3841,1,0,0,0,3842,3843,1,0,0,0,3843,3844,1,0, - 0,0,3844,3845,5,376,0,0,3845,3853,3,782,391,0,3846,3847,7,47,0,0, - 3847,3853,3,310,155,0,3848,3849,5,355,0,0,3849,3850,5,325,0,0,3850, - 3851,7,42,0,0,3851,3853,3,310,155,0,3852,3837,1,0,0,0,3852,3842, - 1,0,0,0,3852,3846,1,0,0,0,3852,3848,1,0,0,0,3853,305,1,0,0,0,3854, - 3855,5,198,0,0,3855,3871,5,357,0,0,3856,3857,5,131,0,0,3857,3871, - 5,446,0,0,3858,3871,5,204,0,0,3859,3871,5,452,0,0,3860,3871,5,331, - 0,0,3861,3871,5,318,0,0,3862,3871,5,451,0,0,3863,3864,5,63,0,0,3864, - 3865,5,174,0,0,3865,3871,5,381,0,0,3866,3868,5,295,0,0,3867,3866, - 1,0,0,0,3867,3868,1,0,0,0,3868,3869,1,0,0,0,3869,3871,5,247,0,0, - 3870,3854,1,0,0,0,3870,3856,1,0,0,0,3870,3858,1,0,0,0,3870,3859, - 1,0,0,0,3870,3860,1,0,0,0,3870,3861,1,0,0,0,3870,3862,1,0,0,0,3870, - 3863,1,0,0,0,3870,3867,1,0,0,0,3871,3872,1,0,0,0,3872,3879,3,826, - 413,0,3873,3874,5,323,0,0,3874,3879,3,794,397,0,3875,3876,5,175, - 0,0,3876,3879,3,792,396,0,3877,3879,3,170,85,0,3878,3870,1,0,0,0, - 3878,3873,1,0,0,0,3878,3875,1,0,0,0,3878,3877,1,0,0,0,3879,307,1, - 0,0,0,3880,3885,3,310,155,0,3881,3882,5,6,0,0,3882,3884,3,310,155, - 0,3883,3881,1,0,0,0,3884,3887,1,0,0,0,3885,3883,1,0,0,0,3885,3886, - 1,0,0,0,3886,309,1,0,0,0,3887,3885,1,0,0,0,3888,3890,3,826,413,0, - 3889,3891,3,312,156,0,3890,3889,1,0,0,0,3890,3891,1,0,0,0,3891,311, - 1,0,0,0,3892,3893,5,11,0,0,3893,3895,3,832,416,0,3894,3892,1,0,0, - 0,3895,3896,1,0,0,0,3896,3894,1,0,0,0,3896,3897,1,0,0,0,3897,313, - 1,0,0,0,3898,3900,5,358,0,0,3899,3901,5,92,0,0,3900,3899,1,0,0,0, - 3900,3901,1,0,0,0,3901,3902,1,0,0,0,3902,3907,3,316,158,0,3903,3904, - 5,6,0,0,3904,3906,3,316,158,0,3905,3903,1,0,0,0,3906,3909,1,0,0, - 0,3907,3905,1,0,0,0,3907,3908,1,0,0,0,3908,3912,1,0,0,0,3909,3907, - 1,0,0,0,3910,3911,7,48,0,0,3911,3913,5,219,0,0,3912,3910,1,0,0,0, - 3912,3913,1,0,0,0,3913,3915,1,0,0,0,3914,3916,3,88,44,0,3915,3914, - 1,0,0,0,3915,3916,1,0,0,0,3916,315,1,0,0,0,3917,3919,5,81,0,0,3918, - 3917,1,0,0,0,3918,3919,1,0,0,0,3919,3920,1,0,0,0,3920,3922,3,778, - 389,0,3921,3923,5,9,0,0,3922,3921,1,0,0,0,3922,3923,1,0,0,0,3923, - 317,1,0,0,0,3924,3925,5,159,0,0,3925,3984,5,80,0,0,3926,3985,3,304, - 152,0,3927,3985,3,306,153,0,3928,3929,5,44,0,0,3929,3931,3,826,413, - 0,3930,3932,3,312,156,0,3931,3930,1,0,0,0,3931,3932,1,0,0,0,3932, - 3933,1,0,0,0,3933,3934,5,11,0,0,3934,3935,3,806,403,0,3935,3985, - 1,0,0,0,3936,3937,7,33,0,0,3937,3985,3,648,324,0,3938,3939,5,136, - 0,0,3939,3985,3,388,194,0,3940,3941,5,211,0,0,3941,3985,3,376,188, - 0,3942,3943,5,278,0,0,3943,3985,3,410,205,0,3944,3945,5,45,0,0,3945, - 3946,3,826,413,0,3946,3952,5,80,0,0,3947,3953,3,778,389,0,3948,3950, - 5,189,0,0,3949,3948,1,0,0,0,3949,3950,1,0,0,0,3950,3951,1,0,0,0, - 3951,3953,3,310,155,0,3952,3947,1,0,0,0,3952,3949,1,0,0,0,3953,3985, - 1,0,0,0,3954,3955,7,45,0,0,3955,3956,3,826,413,0,3956,3957,5,80, - 0,0,3957,3958,3,310,155,0,3958,3985,1,0,0,0,3959,3960,5,296,0,0, - 3960,3985,3,372,186,0,3961,3962,5,442,0,0,3962,3985,3,368,184,0, - 3963,3964,5,443,0,0,3964,3965,5,62,0,0,3965,3966,3,648,324,0,3966, - 3967,5,247,0,0,3967,3968,3,826,413,0,3968,3985,1,0,0,0,3969,3970, - 5,278,0,0,3970,3971,7,32,0,0,3971,3972,3,310,155,0,3972,3973,3,164, - 82,0,3973,3985,1,0,0,0,3974,3975,5,248,0,0,3975,3976,5,274,0,0,3976, - 3985,3,196,98,0,3977,3978,5,41,0,0,3978,3979,5,2,0,0,3979,3980,3, - 648,324,0,3980,3981,5,36,0,0,3981,3982,3,648,324,0,3982,3983,5,3, - 0,0,3983,3985,1,0,0,0,3984,3926,1,0,0,0,3984,3927,1,0,0,0,3984,3928, - 1,0,0,0,3984,3936,1,0,0,0,3984,3938,1,0,0,0,3984,3940,1,0,0,0,3984, - 3942,1,0,0,0,3984,3944,1,0,0,0,3984,3954,1,0,0,0,3984,3959,1,0,0, - 0,3984,3961,1,0,0,0,3984,3963,1,0,0,0,3984,3969,1,0,0,0,3984,3974, - 1,0,0,0,3984,3977,1,0,0,0,3985,3986,1,0,0,0,3986,3989,5,116,0,0, - 3987,3990,3,816,408,0,3988,3990,5,78,0,0,3989,3987,1,0,0,0,3989, - 3988,1,0,0,0,3990,319,1,0,0,0,3991,3992,5,327,0,0,3992,3995,5,246, - 0,0,3993,3994,5,62,0,0,3994,3996,3,58,29,0,3995,3993,1,0,0,0,3995, - 3996,1,0,0,0,3996,3997,1,0,0,0,3997,4015,5,80,0,0,3998,3999,7,33, - 0,0,3999,4016,3,648,324,0,4000,4001,5,136,0,0,4001,4016,3,388,194, - 0,4002,4003,5,44,0,0,4003,4016,3,806,403,0,4004,4005,5,211,0,0,4005, - 4016,3,376,188,0,4006,4007,5,248,0,0,4007,4008,5,274,0,0,4008,4016, - 3,196,98,0,4009,4010,5,296,0,0,4010,4016,3,372,186,0,4011,4012,5, - 442,0,0,4012,4016,3,368,184,0,4013,4016,3,304,152,0,4014,4016,3, - 306,153,0,4015,3998,1,0,0,0,4015,4000,1,0,0,0,4015,4002,1,0,0,0, - 4015,4004,1,0,0,0,4015,4006,1,0,0,0,4015,4009,1,0,0,0,4015,4011, - 1,0,0,0,4015,4013,1,0,0,0,4015,4014,1,0,0,0,4016,4017,1,0,0,0,4017, - 4020,5,116,0,0,4018,4021,3,816,408,0,4019,4021,5,78,0,0,4020,4018, - 1,0,0,0,4020,4019,1,0,0,0,4021,321,1,0,0,0,4022,4023,7,49,0,0,4023, - 4024,3,324,162,0,4024,323,1,0,0,0,4025,4027,7,50,0,0,4026,4025,1, - 0,0,0,4026,4027,1,0,0,0,4027,4029,1,0,0,0,4028,4030,3,326,163,0, - 4029,4028,1,0,0,0,4029,4030,1,0,0,0,4030,4031,1,0,0,0,4031,4069, - 3,826,413,0,4032,4034,7,51,0,0,4033,4032,1,0,0,0,4033,4034,1,0,0, - 0,4034,4035,1,0,0,0,4035,4037,3,820,410,0,4036,4038,3,326,163,0, - 4037,4036,1,0,0,0,4037,4038,1,0,0,0,4038,4039,1,0,0,0,4039,4040, - 3,826,413,0,4040,4069,1,0,0,0,4041,4043,5,210,0,0,4042,4044,3,820, - 410,0,4043,4042,1,0,0,0,4043,4044,1,0,0,0,4044,4046,1,0,0,0,4045, - 4047,3,326,163,0,4046,4045,1,0,0,0,4046,4047,1,0,0,0,4047,4048,1, - 0,0,0,4048,4069,3,826,413,0,4049,4051,5,210,0,0,4050,4049,1,0,0, - 0,4050,4051,1,0,0,0,4051,4052,1,0,0,0,4052,4054,5,30,0,0,4053,4055, - 3,326,163,0,4054,4053,1,0,0,0,4054,4055,1,0,0,0,4055,4056,1,0,0, - 0,4056,4069,3,826,413,0,4057,4062,5,144,0,0,4058,4060,5,30,0,0,4059, - 4058,1,0,0,0,4059,4060,1,0,0,0,4060,4063,1,0,0,0,4061,4063,3,820, - 410,0,4062,4059,1,0,0,0,4062,4061,1,0,0,0,4063,4065,1,0,0,0,4064, - 4066,3,326,163,0,4065,4064,1,0,0,0,4065,4066,1,0,0,0,4066,4067,1, - 0,0,0,4067,4069,3,826,413,0,4068,4026,1,0,0,0,4068,4033,1,0,0,0, - 4068,4041,1,0,0,0,4068,4050,1,0,0,0,4068,4057,1,0,0,0,4069,325,1, - 0,0,0,4070,4071,7,52,0,0,4071,327,1,0,0,0,4072,4073,5,65,0,0,4073, - 4074,3,332,166,0,4074,4075,5,80,0,0,4075,4076,3,338,169,0,4076,4077, - 5,94,0,0,4077,4081,3,340,170,0,4078,4079,5,105,0,0,4079,4080,5,65, - 0,0,4080,4082,5,279,0,0,4081,4078,1,0,0,0,4081,4082,1,0,0,0,4082, - 329,1,0,0,0,4083,4087,5,317,0,0,4084,4085,5,65,0,0,4085,4086,5,279, - 0,0,4086,4088,5,62,0,0,4087,4084,1,0,0,0,4087,4088,1,0,0,0,4088, - 4089,1,0,0,0,4089,4090,3,332,166,0,4090,4091,5,80,0,0,4091,4092, - 3,338,169,0,4092,4093,5,64,0,0,4093,4095,3,340,170,0,4094,4096,3, - 88,44,0,4095,4094,1,0,0,0,4095,4096,1,0,0,0,4096,331,1,0,0,0,4097, - 4102,3,336,168,0,4098,4099,5,6,0,0,4099,4101,3,336,168,0,4100,4098, - 1,0,0,0,4101,4104,1,0,0,0,4102,4100,1,0,0,0,4102,4103,1,0,0,0,4103, - 4121,1,0,0,0,4104,4102,1,0,0,0,4105,4107,5,30,0,0,4106,4108,5,294, - 0,0,4107,4106,1,0,0,0,4107,4108,1,0,0,0,4108,4110,1,0,0,0,4109,4111, - 3,138,69,0,4110,4109,1,0,0,0,4110,4111,1,0,0,0,4111,4121,1,0,0,0, - 4112,4117,3,334,167,0,4113,4114,5,6,0,0,4114,4116,3,334,167,0,4115, - 4113,1,0,0,0,4116,4119,1,0,0,0,4117,4115,1,0,0,0,4117,4118,1,0,0, - 0,4118,4121,1,0,0,0,4119,4117,1,0,0,0,4120,4097,1,0,0,0,4120,4105, - 1,0,0,0,4120,4112,1,0,0,0,4121,333,1,0,0,0,4122,4123,7,53,0,0,4123, - 335,1,0,0,0,4124,4129,5,88,0,0,4125,4129,5,86,0,0,4126,4129,5,46, - 0,0,4127,4129,3,826,413,0,4128,4124,1,0,0,0,4128,4125,1,0,0,0,4128, - 4126,1,0,0,0,4128,4127,1,0,0,0,4129,4131,1,0,0,0,4130,4132,3,138, - 69,0,4131,4130,1,0,0,0,4131,4132,1,0,0,0,4132,337,1,0,0,0,4133,4134, - 5,92,0,0,4134,4179,3,766,383,0,4135,4137,5,328,0,0,4136,4135,1,0, - 0,0,4136,4137,1,0,0,0,4137,4138,1,0,0,0,4138,4179,3,764,382,0,4139, - 4143,5,63,0,0,4140,4141,5,174,0,0,4141,4144,5,381,0,0,4142,4144, - 5,331,0,0,4143,4140,1,0,0,0,4143,4142,1,0,0,0,4144,4147,1,0,0,0, - 4145,4147,5,247,0,0,4146,4139,1,0,0,0,4146,4145,1,0,0,0,4147,4148, - 1,0,0,0,4148,4179,3,788,394,0,4149,4150,5,211,0,0,4150,4179,3,374, - 187,0,4151,4152,5,296,0,0,4152,4179,3,370,185,0,4153,4154,5,442, - 0,0,4154,4179,3,366,183,0,4155,4156,5,175,0,0,4156,4179,3,770,385, - 0,4157,4158,7,33,0,0,4158,4179,3,308,154,0,4159,4160,5,248,0,0,4160, - 4161,5,274,0,0,4161,4166,3,196,98,0,4162,4163,5,6,0,0,4163,4165, - 3,196,98,0,4164,4162,1,0,0,0,4165,4168,1,0,0,0,4166,4164,1,0,0,0, - 4166,4167,1,0,0,0,4167,4179,1,0,0,0,4168,4166,1,0,0,0,4169,4170, - 5,323,0,0,4170,4179,3,768,384,0,4171,4172,5,351,0,0,4172,4179,3, - 786,393,0,4173,4174,5,30,0,0,4174,4175,7,54,0,0,4175,4176,5,68,0, - 0,4176,4177,5,323,0,0,4177,4179,3,768,384,0,4178,4133,1,0,0,0,4178, - 4136,1,0,0,0,4178,4146,1,0,0,0,4178,4149,1,0,0,0,4178,4151,1,0,0, - 0,4178,4153,1,0,0,0,4178,4155,1,0,0,0,4178,4157,1,0,0,0,4178,4159, - 1,0,0,0,4178,4169,1,0,0,0,4178,4171,1,0,0,0,4178,4173,1,0,0,0,4179, - 339,1,0,0,0,4180,4182,5,66,0,0,4181,4180,1,0,0,0,4181,4182,1,0,0, - 0,4182,4183,1,0,0,0,4183,4184,3,822,411,0,4184,4192,1,0,0,0,4185, - 4187,5,6,0,0,4186,4188,5,66,0,0,4187,4186,1,0,0,0,4187,4188,1,0, - 0,0,4188,4189,1,0,0,0,4189,4191,3,822,411,0,4190,4185,1,0,0,0,4191, - 4194,1,0,0,0,4192,4190,1,0,0,0,4192,4193,1,0,0,0,4193,341,1,0,0, - 0,4194,4192,1,0,0,0,4195,4196,5,65,0,0,4196,4201,3,336,168,0,4197, - 4198,5,6,0,0,4198,4200,3,336,168,0,4199,4197,1,0,0,0,4200,4203,1, - 0,0,0,4201,4199,1,0,0,0,4201,4202,1,0,0,0,4202,4204,1,0,0,0,4203, - 4201,1,0,0,0,4204,4205,5,94,0,0,4205,4209,3,824,412,0,4206,4207, - 5,105,0,0,4207,4208,5,134,0,0,4208,4210,5,279,0,0,4209,4206,1,0, - 0,0,4209,4210,1,0,0,0,4210,4214,1,0,0,0,4211,4212,5,214,0,0,4212, - 4213,5,147,0,0,4213,4215,3,822,411,0,4214,4211,1,0,0,0,4214,4215, - 1,0,0,0,4215,343,1,0,0,0,4216,4220,5,317,0,0,4217,4218,5,134,0,0, - 4218,4219,5,279,0,0,4219,4221,5,62,0,0,4220,4217,1,0,0,0,4220,4221, - 1,0,0,0,4221,4222,1,0,0,0,4222,4227,3,336,168,0,4223,4224,5,6,0, - 0,4224,4226,3,336,168,0,4225,4223,1,0,0,0,4226,4229,1,0,0,0,4227, - 4225,1,0,0,0,4227,4228,1,0,0,0,4228,4230,1,0,0,0,4229,4227,1,0,0, - 0,4230,4231,5,64,0,0,4231,4235,3,824,412,0,4232,4233,5,214,0,0,4233, - 4234,5,147,0,0,4234,4236,3,822,411,0,4235,4232,1,0,0,0,4235,4236, - 1,0,0,0,4236,4238,1,0,0,0,4237,4239,3,88,44,0,4238,4237,1,0,0,0, - 4238,4239,1,0,0,0,4239,345,1,0,0,0,4240,4241,5,138,0,0,4241,4242, - 5,53,0,0,4242,4251,5,294,0,0,4243,4244,5,68,0,0,4244,4245,5,323, - 0,0,4245,4250,3,768,384,0,4246,4247,5,62,0,0,4247,4248,7,2,0,0,4248, - 4250,3,824,412,0,4249,4243,1,0,0,0,4249,4246,1,0,0,0,4250,4253,1, - 0,0,0,4251,4249,1,0,0,0,4251,4252,1,0,0,0,4252,4254,1,0,0,0,4253, - 4251,1,0,0,0,4254,4255,3,348,174,0,4255,347,1,0,0,0,4256,4257,5, - 65,0,0,4257,4258,3,332,166,0,4258,4259,5,80,0,0,4259,4260,3,350, - 175,0,4260,4261,5,94,0,0,4261,4265,3,340,170,0,4262,4263,5,105,0, - 0,4263,4264,5,65,0,0,4264,4266,5,279,0,0,4265,4262,1,0,0,0,4265, - 4266,1,0,0,0,4266,4282,1,0,0,0,4267,4271,5,317,0,0,4268,4269,5,65, - 0,0,4269,4270,5,279,0,0,4270,4272,5,62,0,0,4271,4268,1,0,0,0,4271, - 4272,1,0,0,0,4272,4273,1,0,0,0,4273,4274,3,332,166,0,4274,4275,5, - 80,0,0,4275,4276,3,350,175,0,4276,4277,5,64,0,0,4277,4279,3,340, - 170,0,4278,4280,3,88,44,0,4279,4278,1,0,0,0,4279,4280,1,0,0,0,4280, - 4282,1,0,0,0,4281,4256,1,0,0,0,4281,4267,1,0,0,0,4282,349,1,0,0, - 0,4283,4284,7,55,0,0,4284,351,1,0,0,0,4285,4287,5,46,0,0,4286,4288, - 5,98,0,0,4287,4286,1,0,0,0,4287,4288,1,0,0,0,4288,4289,1,0,0,0,4289, - 4291,5,226,0,0,4290,4292,5,109,0,0,4291,4290,1,0,0,0,4291,4292,1, - 0,0,0,4292,4294,1,0,0,0,4293,4295,3,288,144,0,4294,4293,1,0,0,0, - 4294,4295,1,0,0,0,4295,4297,1,0,0,0,4296,4298,3,826,413,0,4297,4296, - 1,0,0,0,4297,4298,1,0,0,0,4298,4299,1,0,0,0,4299,4300,5,80,0,0,4300, - 4302,3,620,310,0,4301,4303,3,164,82,0,4302,4301,1,0,0,0,4302,4303, - 1,0,0,0,4303,4304,1,0,0,0,4304,4307,3,354,177,0,4305,4306,5,441, - 0,0,4306,4308,3,354,177,0,4307,4305,1,0,0,0,4307,4308,1,0,0,0,4308, - 4314,1,0,0,0,4309,4311,5,273,0,0,4310,4312,5,77,0,0,4311,4310,1, - 0,0,0,4311,4312,1,0,0,0,4312,4313,1,0,0,0,4313,4315,5,56,0,0,4314, - 4309,1,0,0,0,4314,4315,1,0,0,0,4315,4317,1,0,0,0,4316,4318,3,94, - 47,0,4317,4316,1,0,0,0,4317,4318,1,0,0,0,4318,4320,1,0,0,0,4319, - 4321,3,170,85,0,4320,4319,1,0,0,0,4320,4321,1,0,0,0,4321,4323,1, - 0,0,0,4322,4324,3,634,317,0,4323,4322,1,0,0,0,4323,4324,1,0,0,0, - 4324,353,1,0,0,0,4325,4326,5,2,0,0,4326,4331,3,356,178,0,4327,4328, - 5,6,0,0,4328,4330,3,356,178,0,4329,4327,1,0,0,0,4330,4333,1,0,0, - 0,4331,4329,1,0,0,0,4331,4332,1,0,0,0,4332,4334,1,0,0,0,4333,4331, - 1,0,0,0,4334,4335,5,3,0,0,4335,355,1,0,0,0,4336,4343,3,806,403,0, - 4337,4343,3,684,342,0,4338,4339,5,2,0,0,4339,4340,3,670,335,0,4340, - 4341,5,3,0,0,4341,4343,1,0,0,0,4342,4336,1,0,0,0,4342,4337,1,0,0, - 0,4342,4338,1,0,0,0,4343,4345,1,0,0,0,4344,4346,3,90,45,0,4345,4344, - 1,0,0,0,4345,4346,1,0,0,0,4346,4353,1,0,0,0,4347,4349,3,310,155, - 0,4348,4347,1,0,0,0,4348,4349,1,0,0,0,4349,4354,1,0,0,0,4350,4351, - 3,310,155,0,4351,4352,3,92,46,0,4352,4354,1,0,0,0,4353,4348,1,0, - 0,0,4353,4350,1,0,0,0,4354,4356,1,0,0,0,4355,4357,7,56,0,0,4356, - 4355,1,0,0,0,4356,4357,1,0,0,0,4357,4360,1,0,0,0,4358,4359,5,273, - 0,0,4359,4361,7,57,0,0,4360,4358,1,0,0,0,4360,4361,1,0,0,0,4361, - 357,1,0,0,0,4362,4364,5,46,0,0,4363,4365,3,360,180,0,4364,4363,1, - 0,0,0,4364,4365,1,0,0,0,4365,4370,1,0,0,0,4366,4367,5,211,0,0,4367, - 4371,3,812,406,0,4368,4369,5,296,0,0,4369,4371,3,802,401,0,4370, - 4366,1,0,0,0,4370,4368,1,0,0,0,4371,4372,1,0,0,0,4372,4381,5,2,0, - 0,4373,4378,3,384,192,0,4374,4375,5,6,0,0,4375,4377,3,384,192,0, - 4376,4374,1,0,0,0,4377,4380,1,0,0,0,4378,4376,1,0,0,0,4378,4379, - 1,0,0,0,4379,4382,1,0,0,0,4380,4378,1,0,0,0,4381,4373,1,0,0,0,4381, - 4382,1,0,0,0,4382,4383,1,0,0,0,4383,4384,5,3,0,0,4384,4401,1,0,0, - 0,4385,4399,5,316,0,0,4386,4400,3,382,191,0,4387,4388,5,92,0,0,4388, - 4389,5,2,0,0,4389,4394,3,396,198,0,4390,4391,5,6,0,0,4391,4393,3, - 396,198,0,4392,4390,1,0,0,0,4393,4396,1,0,0,0,4394,4392,1,0,0,0, - 4394,4395,1,0,0,0,4395,4397,1,0,0,0,4396,4394,1,0,0,0,4397,4398, - 5,3,0,0,4398,4400,1,0,0,0,4399,4386,1,0,0,0,4399,4387,1,0,0,0,4400, - 4402,1,0,0,0,4401,4385,1,0,0,0,4401,4402,1,0,0,0,4402,4404,1,0,0, - 0,4403,4405,3,392,196,0,4404,4403,1,0,0,0,4405,4406,1,0,0,0,4406, - 4404,1,0,0,0,4406,4407,1,0,0,0,4407,4413,1,0,0,0,4408,4409,5,105, - 0,0,4409,4410,5,2,0,0,4410,4411,3,788,394,0,4411,4412,5,3,0,0,4412, - 4414,1,0,0,0,4413,4408,1,0,0,0,4413,4414,1,0,0,0,4414,359,1,0,0, - 0,4415,4416,5,82,0,0,4416,4417,5,311,0,0,4417,361,1,0,0,0,4418,4420, - 5,2,0,0,4419,4421,3,364,182,0,4420,4419,1,0,0,0,4420,4421,1,0,0, - 0,4421,4422,1,0,0,0,4422,4423,5,3,0,0,4423,363,1,0,0,0,4424,4429, - 3,378,189,0,4425,4426,5,6,0,0,4426,4428,3,378,189,0,4427,4425,1, - 0,0,0,4428,4431,1,0,0,0,4429,4427,1,0,0,0,4429,4430,1,0,0,0,4430, - 365,1,0,0,0,4431,4429,1,0,0,0,4432,4437,3,368,184,0,4433,4434,5, - 6,0,0,4434,4436,3,368,184,0,4435,4433,1,0,0,0,4436,4439,1,0,0,0, - 4437,4435,1,0,0,0,4437,4438,1,0,0,0,4438,367,1,0,0,0,4439,4437,1, - 0,0,0,4440,4441,3,798,399,0,4441,4442,3,362,181,0,4442,4446,1,0, - 0,0,4443,4446,3,840,420,0,4444,4446,3,784,392,0,4445,4440,1,0,0, - 0,4445,4443,1,0,0,0,4445,4444,1,0,0,0,4446,369,1,0,0,0,4447,4452, - 3,372,186,0,4448,4449,5,6,0,0,4449,4451,3,372,186,0,4450,4448,1, - 0,0,0,4451,4454,1,0,0,0,4452,4450,1,0,0,0,4452,4453,1,0,0,0,4453, - 371,1,0,0,0,4454,4452,1,0,0,0,4455,4456,3,800,400,0,4456,4457,3, - 362,181,0,4457,4461,1,0,0,0,4458,4461,3,840,420,0,4459,4461,3,784, - 392,0,4460,4455,1,0,0,0,4460,4458,1,0,0,0,4460,4459,1,0,0,0,4461, - 373,1,0,0,0,4462,4467,3,376,188,0,4463,4464,5,6,0,0,4464,4466,3, - 376,188,0,4465,4463,1,0,0,0,4466,4469,1,0,0,0,4467,4465,1,0,0,0, - 4467,4468,1,0,0,0,4468,375,1,0,0,0,4469,4467,1,0,0,0,4470,4471,3, - 814,407,0,4471,4472,3,362,181,0,4472,4476,1,0,0,0,4473,4476,3,840, - 420,0,4474,4476,3,784,392,0,4475,4470,1,0,0,0,4475,4473,1,0,0,0, - 4475,4474,1,0,0,0,4476,377,1,0,0,0,4477,4479,3,380,190,0,4478,4480, - 3,828,414,0,4479,4478,1,0,0,0,4479,4480,1,0,0,0,4480,4486,1,0,0, - 0,4481,4483,3,828,414,0,4482,4484,3,380,190,0,4483,4482,1,0,0,0, - 4483,4484,1,0,0,0,4484,4486,1,0,0,0,4485,4477,1,0,0,0,4485,4481, - 1,0,0,0,4485,4486,1,0,0,0,4486,4487,1,0,0,0,4487,4488,3,382,191, - 0,4488,379,1,0,0,0,4489,4491,5,68,0,0,4490,4492,5,453,0,0,4491,4490, - 1,0,0,0,4491,4492,1,0,0,0,4492,4497,1,0,0,0,4493,4497,5,453,0,0, - 4494,4497,5,400,0,0,4495,4497,5,101,0,0,4496,4489,1,0,0,0,4496,4493, - 1,0,0,0,4496,4494,1,0,0,0,4496,4495,1,0,0,0,4497,381,1,0,0,0,4498, - 4508,3,648,324,0,4499,4501,5,415,0,0,4500,4499,1,0,0,0,4500,4501, - 1,0,0,0,4501,4502,1,0,0,0,4502,4503,3,828,414,0,4503,4504,3,312, - 156,0,4504,4505,5,27,0,0,4505,4506,5,360,0,0,4506,4508,1,0,0,0,4507, - 4498,1,0,0,0,4507,4500,1,0,0,0,4508,383,1,0,0,0,4509,4512,3,378, - 189,0,4510,4511,7,58,0,0,4511,4513,3,670,335,0,4512,4510,1,0,0,0, - 4512,4513,1,0,0,0,4513,385,1,0,0,0,4514,4524,5,2,0,0,4515,4525,5, - 9,0,0,4516,4518,3,364,182,0,4517,4516,1,0,0,0,4517,4518,1,0,0,0, - 4518,4522,1,0,0,0,4519,4520,5,83,0,0,4520,4521,5,147,0,0,4521,4523, - 3,364,182,0,4522,4519,1,0,0,0,4522,4523,1,0,0,0,4523,4525,1,0,0, - 0,4524,4515,1,0,0,0,4524,4517,1,0,0,0,4525,4526,1,0,0,0,4526,4527, - 5,3,0,0,4527,387,1,0,0,0,4528,4529,3,814,407,0,4529,4530,3,386,193, - 0,4530,389,1,0,0,0,4531,4532,5,316,0,0,4532,4535,5,78,0,0,4533,4535, - 5,149,0,0,4534,4531,1,0,0,0,4534,4533,1,0,0,0,4535,4536,1,0,0,0, - 4536,4537,5,80,0,0,4537,4538,5,78,0,0,4538,4561,5,458,0,0,4539,4561, - 5,346,0,0,4540,4561,5,222,0,0,4541,4561,5,338,0,0,4542,4561,5,377, - 0,0,4543,4545,5,205,0,0,4544,4543,1,0,0,0,4544,4545,1,0,0,0,4545, - 4546,1,0,0,0,4546,4547,5,327,0,0,4547,4561,7,59,0,0,4548,4561,5, - 250,0,0,4549,4550,5,77,0,0,4550,4561,5,250,0,0,4551,4552,7,60,0, - 0,4552,4561,3,196,98,0,4553,4554,5,459,0,0,4554,4561,3,310,155,0, - 4555,4556,5,333,0,0,4556,4561,3,42,21,0,4557,4561,3,60,30,0,4558, - 4559,5,460,0,0,4559,4561,3,826,413,0,4560,4534,1,0,0,0,4560,4539, - 1,0,0,0,4560,4540,1,0,0,0,4560,4541,1,0,0,0,4560,4542,1,0,0,0,4560, - 4544,1,0,0,0,4560,4548,1,0,0,0,4560,4549,1,0,0,0,4560,4551,1,0,0, - 0,4560,4553,1,0,0,0,4560,4555,1,0,0,0,4560,4557,1,0,0,0,4560,4558, - 1,0,0,0,4561,391,1,0,0,0,4562,4563,5,36,0,0,4563,4564,3,816,408, - 0,4564,4565,3,456,228,0,4565,4598,1,0,0,0,4566,4567,5,247,0,0,4567, - 4598,3,58,29,0,4568,4569,5,443,0,0,4569,4570,5,62,0,0,4570,4571, - 5,360,0,0,4571,4578,3,648,324,0,4572,4573,5,6,0,0,4573,4574,5,62, - 0,0,4574,4575,5,360,0,0,4575,4577,3,648,324,0,4576,4572,1,0,0,0, - 4577,4580,1,0,0,0,4578,4576,1,0,0,0,4578,4579,1,0,0,0,4579,4598, - 1,0,0,0,4580,4578,1,0,0,0,4581,4598,5,104,0,0,4582,4583,5,333,0, - 0,4583,4590,3,826,413,0,4584,4585,5,94,0,0,4585,4591,3,826,413,0, - 4586,4587,5,10,0,0,4587,4591,3,826,413,0,4588,4589,5,64,0,0,4589, - 4591,5,434,0,0,4590,4584,1,0,0,0,4590,4586,1,0,0,0,4590,4588,1,0, - 0,0,4591,4598,1,0,0,0,4592,4593,5,36,0,0,4593,4598,3,826,413,0,4594, - 4598,3,4,2,0,4595,4598,3,390,195,0,4596,4598,3,826,413,0,4597,4562, - 1,0,0,0,4597,4566,1,0,0,0,4597,4568,1,0,0,0,4597,4581,1,0,0,0,4597, - 4582,1,0,0,0,4597,4592,1,0,0,0,4597,4594,1,0,0,0,4597,4595,1,0,0, - 0,4597,4596,1,0,0,0,4598,393,1,0,0,0,4599,4600,5,105,0,0,4600,4601, - 3,278,139,0,4601,395,1,0,0,0,4602,4603,3,806,403,0,4603,4604,3,382, - 191,0,4604,397,1,0,0,0,4605,4612,5,138,0,0,4606,4607,5,211,0,0,4607, - 4613,3,376,188,0,4608,4609,5,296,0,0,4609,4613,3,372,186,0,4610, - 4611,5,442,0,0,4611,4613,3,368,184,0,4612,4606,1,0,0,0,4612,4608, - 1,0,0,0,4612,4610,1,0,0,0,4613,4615,1,0,0,0,4614,4616,3,390,195, - 0,4615,4614,1,0,0,0,4616,4617,1,0,0,0,4617,4615,1,0,0,0,4617,4618, - 1,0,0,0,4618,4620,1,0,0,0,4619,4621,5,315,0,0,4620,4619,1,0,0,0, - 4620,4621,1,0,0,0,4621,399,1,0,0,0,4622,4638,5,191,0,0,4623,4625, - 5,211,0,0,4624,4626,3,416,208,0,4625,4624,1,0,0,0,4625,4626,1,0, - 0,0,4626,4627,1,0,0,0,4627,4639,3,374,187,0,4628,4630,5,296,0,0, - 4629,4631,3,416,208,0,4630,4629,1,0,0,0,4630,4631,1,0,0,0,4631,4632, - 1,0,0,0,4632,4639,3,370,185,0,4633,4635,5,442,0,0,4634,4636,3,416, - 208,0,4635,4634,1,0,0,0,4635,4636,1,0,0,0,4636,4637,1,0,0,0,4637, - 4639,3,366,183,0,4638,4623,1,0,0,0,4638,4628,1,0,0,0,4638,4633,1, - 0,0,0,4639,4641,1,0,0,0,4640,4642,3,88,44,0,4641,4640,1,0,0,0,4641, - 4642,1,0,0,0,4642,401,1,0,0,0,4643,4644,5,191,0,0,4644,4646,5,136, - 0,0,4645,4647,3,416,208,0,4646,4645,1,0,0,0,4646,4647,1,0,0,0,4647, - 4648,1,0,0,0,4648,4653,3,388,194,0,4649,4650,5,6,0,0,4650,4652,3, - 388,194,0,4651,4649,1,0,0,0,4652,4655,1,0,0,0,4653,4651,1,0,0,0, - 4653,4654,1,0,0,0,4654,4657,1,0,0,0,4655,4653,1,0,0,0,4656,4658, - 3,88,44,0,4657,4656,1,0,0,0,4657,4658,1,0,0,0,4658,403,1,0,0,0,4659, - 4660,5,191,0,0,4660,4662,5,278,0,0,4661,4663,3,416,208,0,4662,4661, - 1,0,0,0,4662,4663,1,0,0,0,4663,4664,1,0,0,0,4664,4669,3,410,205, - 0,4665,4666,5,6,0,0,4666,4668,3,410,205,0,4667,4665,1,0,0,0,4668, - 4671,1,0,0,0,4669,4667,1,0,0,0,4669,4670,1,0,0,0,4670,4673,1,0,0, - 0,4671,4669,1,0,0,0,4672,4674,3,88,44,0,4673,4672,1,0,0,0,4673,4674, - 1,0,0,0,4674,405,1,0,0,0,4675,4688,5,2,0,0,4676,4679,3,648,324,0, - 4677,4678,5,6,0,0,4678,4680,3,648,324,0,4679,4677,1,0,0,0,4679,4680, - 1,0,0,0,4680,4689,1,0,0,0,4681,4682,5,407,0,0,4682,4683,5,6,0,0, - 4683,4689,3,648,324,0,4684,4685,3,648,324,0,4685,4686,5,6,0,0,4686, - 4687,5,407,0,0,4687,4689,1,0,0,0,4688,4676,1,0,0,0,4688,4681,1,0, - 0,0,4688,4684,1,0,0,0,4689,4690,1,0,0,0,4690,4691,5,3,0,0,4691,407, - 1,0,0,0,4692,4693,3,826,413,0,4693,4694,5,11,0,0,4694,4696,1,0,0, - 0,4695,4692,1,0,0,0,4696,4699,1,0,0,0,4697,4695,1,0,0,0,4697,4698, - 1,0,0,0,4698,4700,1,0,0,0,4699,4697,1,0,0,0,4700,4701,3,718,359, - 0,4701,409,1,0,0,0,4702,4703,3,408,204,0,4703,4704,3,406,203,0,4704, - 411,1,0,0,0,4705,4709,5,57,0,0,4706,4710,3,816,408,0,4707,4708,5, - 247,0,0,4708,4710,3,58,29,0,4709,4706,1,0,0,0,4709,4707,1,0,0,0, - 4710,4711,1,0,0,0,4711,4709,1,0,0,0,4711,4712,1,0,0,0,4712,413,1, - 0,0,0,4713,4714,5,46,0,0,4714,4715,5,41,0,0,4715,4716,5,2,0,0,4716, - 4717,3,648,324,0,4717,4718,5,36,0,0,4718,4719,3,648,324,0,4719,4736, - 5,3,0,0,4720,4721,5,379,0,0,4721,4724,5,211,0,0,4722,4723,5,36,0, - 0,4723,4725,7,61,0,0,4724,4722,1,0,0,0,4724,4725,1,0,0,0,4725,4737, - 1,0,0,0,4726,4730,5,105,0,0,4727,4728,5,211,0,0,4728,4731,3,376, - 188,0,4729,4731,5,400,0,0,4730,4727,1,0,0,0,4730,4729,1,0,0,0,4731, - 4734,1,0,0,0,4732,4733,5,36,0,0,4733,4735,7,61,0,0,4734,4732,1,0, - 0,0,4734,4735,1,0,0,0,4735,4737,1,0,0,0,4736,4720,1,0,0,0,4736,4726, - 1,0,0,0,4737,415,1,0,0,0,4738,4739,5,220,0,0,4739,4740,5,396,0,0, - 4740,417,1,0,0,0,4741,4743,5,46,0,0,4742,4744,3,360,180,0,4743,4742, - 1,0,0,0,4743,4744,1,0,0,0,4744,4745,1,0,0,0,4745,4746,5,443,0,0, - 4746,4747,5,62,0,0,4747,4748,3,648,324,0,4748,4749,5,247,0,0,4749, - 4750,3,826,413,0,4750,4765,5,2,0,0,4751,4752,5,64,0,0,4752,4756, - 3,420,210,0,4753,4754,5,6,0,0,4754,4755,5,94,0,0,4755,4757,3,420, - 210,0,4756,4753,1,0,0,0,4756,4757,1,0,0,0,4757,4766,1,0,0,0,4758, - 4759,5,94,0,0,4759,4763,3,420,210,0,4760,4761,5,6,0,0,4761,4762, - 5,64,0,0,4762,4764,3,420,210,0,4763,4760,1,0,0,0,4763,4764,1,0,0, - 0,4764,4766,1,0,0,0,4765,4751,1,0,0,0,4765,4758,1,0,0,0,4766,4767, - 1,0,0,0,4767,4768,5,3,0,0,4768,419,1,0,0,0,4769,4770,5,461,0,0,4770, - 4771,5,105,0,0,4771,4772,5,211,0,0,4772,4773,3,376,188,0,4773,421, - 1,0,0,0,4774,4785,5,306,0,0,4775,4776,5,2,0,0,4776,4781,5,128,0, - 0,4777,4778,5,6,0,0,4778,4780,5,128,0,0,4779,4777,1,0,0,0,4780,4783, - 1,0,0,0,4781,4779,1,0,0,0,4781,4782,1,0,0,0,4782,4784,1,0,0,0,4783, - 4781,1,0,0,0,4784,4786,5,3,0,0,4785,4775,1,0,0,0,4785,4786,1,0,0, - 0,4786,4812,1,0,0,0,4787,4789,5,226,0,0,4788,4790,5,109,0,0,4789, - 4788,1,0,0,0,4789,4790,1,0,0,0,4790,4791,1,0,0,0,4791,4813,3,784, - 392,0,4792,4794,5,92,0,0,4793,4795,5,109,0,0,4794,4793,1,0,0,0,4794, - 4795,1,0,0,0,4795,4796,1,0,0,0,4796,4813,3,778,389,0,4797,4799,5, - 323,0,0,4798,4800,5,109,0,0,4799,4798,1,0,0,0,4799,4800,1,0,0,0, - 4800,4801,1,0,0,0,4801,4813,3,794,397,0,4802,4804,5,349,0,0,4803, - 4805,5,109,0,0,4804,4803,1,0,0,0,4804,4805,1,0,0,0,4805,4806,1,0, - 0,0,4806,4813,3,826,413,0,4807,4809,5,175,0,0,4808,4810,5,109,0, - 0,4809,4808,1,0,0,0,4809,4810,1,0,0,0,4810,4811,1,0,0,0,4811,4813, - 3,792,396,0,4812,4787,1,0,0,0,4812,4792,1,0,0,0,4812,4797,1,0,0, - 0,4812,4802,1,0,0,0,4812,4807,1,0,0,0,4813,423,1,0,0,0,4814,4815, - 5,138,0,0,4815,4816,3,170,85,0,4816,4817,7,16,0,0,4817,4818,3,92, - 46,0,4818,425,1,0,0,0,4819,4824,5,138,0,0,4820,4821,5,136,0,0,4821, - 4825,3,388,194,0,4822,4823,5,442,0,0,4823,4825,3,368,184,0,4824, - 4820,1,0,0,0,4824,4822,1,0,0,0,4825,4826,1,0,0,0,4826,4827,5,309, - 0,0,4827,4828,5,94,0,0,4828,4829,3,826,413,0,4829,5027,1,0,0,0,4830, - 4831,5,138,0,0,4831,4832,5,175,0,0,4832,4833,3,792,396,0,4833,4834, - 5,309,0,0,4834,4835,5,94,0,0,4835,4836,3,790,395,0,4836,5027,1,0, - 0,0,4837,4838,5,138,0,0,4838,4839,7,62,0,0,4839,4840,3,310,155,0, - 4840,4841,5,309,0,0,4841,4842,5,94,0,0,4842,4843,3,826,413,0,4843, - 5027,1,0,0,0,4844,4845,5,138,0,0,4845,4846,5,211,0,0,4846,4847,3, - 376,188,0,4847,4848,5,309,0,0,4848,4849,5,94,0,0,4849,4850,3,812, - 406,0,4850,5027,1,0,0,0,4851,4852,5,138,0,0,4852,4853,5,278,0,0, - 4853,4854,7,32,0,0,4854,4855,3,310,155,0,4855,4856,3,164,82,0,4856, - 4857,5,309,0,0,4857,4858,5,94,0,0,4858,4859,3,826,413,0,4859,5027, - 1,0,0,0,4860,4861,5,138,0,0,4861,4862,5,296,0,0,4862,4863,3,372, - 186,0,4863,4864,5,309,0,0,4864,4865,5,94,0,0,4865,4866,3,802,401, - 0,4866,5027,1,0,0,0,4867,4868,5,138,0,0,4868,4869,5,323,0,0,4869, - 4870,3,794,397,0,4870,4871,5,309,0,0,4871,4872,5,94,0,0,4872,4873, - 3,32,16,0,4873,5027,1,0,0,0,4874,4875,5,138,0,0,4875,4877,7,63,0, - 0,4876,4878,3,416,208,0,4877,4876,1,0,0,0,4877,4878,1,0,0,0,4878, - 4879,1,0,0,0,4879,4880,3,784,392,0,4880,4881,5,309,0,0,4881,4882, - 5,94,0,0,4882,4883,3,826,413,0,4883,5027,1,0,0,0,4884,4886,5,138, - 0,0,4885,4887,5,259,0,0,4886,4885,1,0,0,0,4886,4887,1,0,0,0,4887, - 4888,1,0,0,0,4888,4890,5,376,0,0,4889,4891,3,416,208,0,4890,4889, - 1,0,0,0,4890,4891,1,0,0,0,4891,4892,1,0,0,0,4892,4893,3,782,391, - 0,4893,4894,5,309,0,0,4894,4895,5,94,0,0,4895,4896,3,780,390,0,4896, - 5027,1,0,0,0,4897,4899,5,138,0,0,4898,4900,5,63,0,0,4899,4898,1, - 0,0,0,4899,4900,1,0,0,0,4900,4901,1,0,0,0,4901,4903,5,92,0,0,4902, - 4904,3,416,208,0,4903,4902,1,0,0,0,4903,4904,1,0,0,0,4904,4905,1, - 0,0,0,4905,4906,3,620,310,0,4906,4907,5,309,0,0,4907,4908,5,94,0, - 0,4908,4909,3,776,388,0,4909,5027,1,0,0,0,4910,4935,5,138,0,0,4911, - 4913,5,63,0,0,4912,4911,1,0,0,0,4912,4913,1,0,0,0,4913,4914,1,0, - 0,0,4914,4916,5,92,0,0,4915,4917,3,416,208,0,4916,4915,1,0,0,0,4916, - 4917,1,0,0,0,4917,4918,1,0,0,0,4918,4919,3,620,310,0,4919,4921,5, - 309,0,0,4920,4922,5,44,0,0,4921,4920,1,0,0,0,4921,4922,1,0,0,0,4922, - 4936,1,0,0,0,4923,4925,5,259,0,0,4924,4923,1,0,0,0,4924,4925,1,0, - 0,0,4925,4926,1,0,0,0,4926,4928,5,376,0,0,4927,4929,3,416,208,0, - 4928,4927,1,0,0,0,4928,4929,1,0,0,0,4929,4930,1,0,0,0,4930,4931, - 3,782,391,0,4931,4933,5,309,0,0,4932,4934,5,44,0,0,4933,4932,1,0, - 0,0,4933,4934,1,0,0,0,4934,4936,1,0,0,0,4935,4912,1,0,0,0,4935,4924, - 1,0,0,0,4936,4937,1,0,0,0,4937,4938,3,806,403,0,4938,4939,5,94,0, - 0,4939,4940,3,810,405,0,4940,5027,1,0,0,0,4941,4949,5,138,0,0,4942, - 4944,5,92,0,0,4943,4945,3,416,208,0,4944,4943,1,0,0,0,4944,4945, - 1,0,0,0,4945,4946,1,0,0,0,4946,4950,3,620,310,0,4947,4948,5,189, - 0,0,4948,4950,3,310,155,0,4949,4942,1,0,0,0,4949,4947,1,0,0,0,4950, - 4951,1,0,0,0,4951,4952,5,309,0,0,4952,4953,5,45,0,0,4953,4954,3, - 826,413,0,4954,4955,5,94,0,0,4955,4956,3,826,413,0,4956,5027,1,0, - 0,0,4957,4964,5,138,0,0,4958,4960,5,445,0,0,4959,4961,3,416,208, - 0,4960,4959,1,0,0,0,4960,4961,1,0,0,0,4961,4965,1,0,0,0,4962,4965, - 5,321,0,0,4963,4965,5,357,0,0,4964,4958,1,0,0,0,4964,4962,1,0,0, - 0,4964,4963,1,0,0,0,4965,4966,1,0,0,0,4966,4967,3,826,413,0,4967, - 4968,5,80,0,0,4968,4969,3,784,392,0,4969,4970,5,309,0,0,4970,4971, - 5,94,0,0,4971,4972,3,826,413,0,4972,5027,1,0,0,0,4973,4986,5,138, - 0,0,4974,4975,5,63,0,0,4975,4976,5,174,0,0,4976,4987,5,381,0,0,4977, - 4979,5,295,0,0,4978,4977,1,0,0,0,4978,4979,1,0,0,0,4979,4980,1,0, - 0,0,4980,4987,5,247,0,0,4981,4987,5,452,0,0,4982,4987,5,331,0,0, - 4983,4987,5,451,0,0,4984,4985,5,198,0,0,4985,4987,5,357,0,0,4986, - 4974,1,0,0,0,4986,4978,1,0,0,0,4986,4981,1,0,0,0,4986,4982,1,0,0, - 0,4986,4983,1,0,0,0,4986,4984,1,0,0,0,4987,4988,1,0,0,0,4988,4989, - 3,826,413,0,4989,4990,5,309,0,0,4990,4991,5,94,0,0,4991,4992,3,826, - 413,0,4992,5027,1,0,0,0,4993,4994,5,138,0,0,4994,4995,7,46,0,0,4995, - 4996,3,822,411,0,4996,4997,5,309,0,0,4997,4998,5,94,0,0,4998,4999, - 3,822,411,0,4999,5027,1,0,0,0,5000,5001,5,138,0,0,5001,5002,3,170, - 85,0,5002,5003,5,309,0,0,5003,5004,5,94,0,0,5004,5005,3,774,387, - 0,5005,5027,1,0,0,0,5006,5007,5,138,0,0,5007,5008,5,355,0,0,5008, - 5009,5,325,0,0,5009,5010,7,42,0,0,5010,5011,3,310,155,0,5011,5012, - 5,309,0,0,5012,5013,5,94,0,0,5013,5014,3,826,413,0,5014,5027,1,0, - 0,0,5015,5016,5,138,0,0,5016,5017,5,360,0,0,5017,5018,3,310,155, - 0,5018,5019,5,309,0,0,5019,5020,5,143,0,0,5020,5021,3,826,413,0, - 5021,5022,5,94,0,0,5022,5024,3,826,413,0,5023,5025,3,88,44,0,5024, - 5023,1,0,0,0,5024,5025,1,0,0,0,5025,5027,1,0,0,0,5026,4819,1,0,0, - 0,5026,4830,1,0,0,0,5026,4837,1,0,0,0,5026,4844,1,0,0,0,5026,4851, - 1,0,0,0,5026,4860,1,0,0,0,5026,4867,1,0,0,0,5026,4874,1,0,0,0,5026, - 4884,1,0,0,0,5026,4897,1,0,0,0,5026,4910,1,0,0,0,5026,4941,1,0,0, - 0,5026,4957,1,0,0,0,5026,4973,1,0,0,0,5026,4993,1,0,0,0,5026,5000, - 1,0,0,0,5026,5006,1,0,0,0,5026,5015,1,0,0,0,5027,427,1,0,0,0,5028, - 5045,5,138,0,0,5029,5030,5,211,0,0,5030,5046,3,376,188,0,5031,5032, - 5,296,0,0,5032,5046,3,372,186,0,5033,5034,5,442,0,0,5034,5046,3, - 368,184,0,5035,5036,5,357,0,0,5036,5037,3,826,413,0,5037,5038,5, - 80,0,0,5038,5039,3,784,392,0,5039,5046,1,0,0,0,5040,5041,5,259,0, - 0,5041,5042,5,376,0,0,5042,5046,3,782,391,0,5043,5044,5,226,0,0, - 5044,5046,3,784,392,0,5045,5029,1,0,0,0,5045,5031,1,0,0,0,5045,5033, - 1,0,0,0,5045,5035,1,0,0,0,5045,5040,1,0,0,0,5045,5043,1,0,0,0,5046, - 5048,1,0,0,0,5047,5049,5,269,0,0,5048,5047,1,0,0,0,5048,5049,1,0, - 0,0,5049,5050,1,0,0,0,5050,5051,5,462,0,0,5051,5052,5,80,0,0,5052, - 5053,5,204,0,0,5053,5054,3,826,413,0,5054,429,1,0,0,0,5055,5094, - 5,138,0,0,5056,5057,5,136,0,0,5057,5095,3,388,194,0,5058,5059,5, - 204,0,0,5059,5095,3,826,413,0,5060,5061,5,211,0,0,5061,5095,3,376, - 188,0,5062,5063,5,278,0,0,5063,5095,3,410,205,0,5064,5065,5,278, - 0,0,5065,5066,7,32,0,0,5066,5067,3,310,155,0,5067,5068,3,164,82, - 0,5068,5095,1,0,0,0,5069,5070,5,296,0,0,5070,5095,3,372,186,0,5071, - 5072,5,442,0,0,5072,5095,3,368,184,0,5073,5075,5,328,0,0,5074,5076, - 3,416,208,0,5075,5074,1,0,0,0,5075,5076,1,0,0,0,5076,5077,1,0,0, - 0,5077,5095,3,784,392,0,5078,5080,5,259,0,0,5079,5078,1,0,0,0,5079, - 5080,1,0,0,0,5080,5081,1,0,0,0,5081,5083,5,376,0,0,5082,5084,3,416, - 208,0,5083,5082,1,0,0,0,5083,5084,1,0,0,0,5084,5085,1,0,0,0,5085, - 5095,3,782,391,0,5086,5088,5,63,0,0,5087,5086,1,0,0,0,5087,5088, - 1,0,0,0,5088,5089,1,0,0,0,5089,5091,5,92,0,0,5090,5092,3,416,208, - 0,5091,5090,1,0,0,0,5091,5092,1,0,0,0,5092,5093,1,0,0,0,5093,5095, - 3,620,310,0,5094,5056,1,0,0,0,5094,5058,1,0,0,0,5094,5060,1,0,0, - 0,5094,5062,1,0,0,0,5094,5064,1,0,0,0,5094,5069,1,0,0,0,5094,5071, - 1,0,0,0,5094,5073,1,0,0,0,5094,5079,1,0,0,0,5094,5087,1,0,0,0,5095, - 5096,1,0,0,0,5096,5097,5,333,0,0,5097,5098,5,323,0,0,5098,5099,3, - 794,397,0,5099,5117,1,0,0,0,5100,5109,5,138,0,0,5101,5102,5,355, - 0,0,5102,5103,5,325,0,0,5103,5110,7,42,0,0,5104,5110,5,108,0,0,5105, - 5110,5,168,0,0,5106,5110,5,189,0,0,5107,5110,5,342,0,0,5108,5110, - 5,360,0,0,5109,5101,1,0,0,0,5109,5104,1,0,0,0,5109,5105,1,0,0,0, - 5109,5106,1,0,0,0,5109,5107,1,0,0,0,5109,5108,1,0,0,0,5110,5111, - 1,0,0,0,5111,5112,3,310,155,0,5112,5113,5,333,0,0,5113,5114,5,323, - 0,0,5114,5115,3,794,397,0,5115,5117,1,0,0,0,5116,5055,1,0,0,0,5116, - 5100,1,0,0,0,5117,431,1,0,0,0,5118,5119,5,138,0,0,5119,5120,5,278, - 0,0,5120,5121,3,410,205,0,5121,5122,5,333,0,0,5122,5123,3,434,217, - 0,5123,433,1,0,0,0,5124,5125,5,2,0,0,5125,5130,3,436,218,0,5126, - 5127,5,6,0,0,5127,5129,3,436,218,0,5128,5126,1,0,0,0,5129,5132,1, - 0,0,0,5130,5128,1,0,0,0,5130,5131,1,0,0,0,5131,5133,1,0,0,0,5132, - 5130,1,0,0,0,5133,5134,5,3,0,0,5134,435,1,0,0,0,5135,5136,3,832, - 416,0,5136,5143,5,10,0,0,5137,5144,5,407,0,0,5138,5144,3,382,191, - 0,5139,5144,3,842,421,0,5140,5144,3,724,362,0,5141,5144,3,196,98, - 0,5142,5144,3,816,408,0,5143,5137,1,0,0,0,5143,5138,1,0,0,0,5143, - 5139,1,0,0,0,5143,5140,1,0,0,0,5143,5141,1,0,0,0,5143,5142,1,0,0, - 0,5144,437,1,0,0,0,5145,5146,5,138,0,0,5146,5147,5,360,0,0,5147, - 5148,3,310,155,0,5148,5149,5,333,0,0,5149,5150,3,434,217,0,5150, - 439,1,0,0,0,5151,5152,5,138,0,0,5152,5153,5,278,0,0,5153,5154,7, - 32,0,0,5154,5155,3,310,155,0,5155,5156,3,164,82,0,5156,5157,5,282, - 0,0,5157,5158,5,94,0,0,5158,5159,3,822,411,0,5159,5226,1,0,0,0,5160, - 5187,5,138,0,0,5161,5162,5,136,0,0,5162,5188,3,388,194,0,5163,5164, - 5,175,0,0,5164,5188,3,792,396,0,5165,5166,5,211,0,0,5166,5188,3, - 376,188,0,5167,5169,5,295,0,0,5168,5167,1,0,0,0,5168,5169,1,0,0, - 0,5169,5170,1,0,0,0,5170,5171,5,247,0,0,5171,5188,3,826,413,0,5172, - 5173,5,248,0,0,5173,5174,5,274,0,0,5174,5188,3,196,98,0,5175,5176, - 5,248,0,0,5176,5177,5,274,0,0,5177,5188,3,196,98,0,5178,5179,5,278, - 0,0,5179,5188,3,410,205,0,5180,5181,5,296,0,0,5181,5188,3,372,186, - 0,5182,5183,5,442,0,0,5183,5188,3,368,184,0,5184,5185,5,323,0,0, - 5185,5188,3,794,397,0,5186,5188,3,170,85,0,5187,5161,1,0,0,0,5187, - 5163,1,0,0,0,5187,5165,1,0,0,0,5187,5168,1,0,0,0,5187,5172,1,0,0, - 0,5187,5175,1,0,0,0,5187,5178,1,0,0,0,5187,5180,1,0,0,0,5187,5182, - 1,0,0,0,5187,5184,1,0,0,0,5187,5186,1,0,0,0,5188,5189,1,0,0,0,5189, - 5190,5,282,0,0,5190,5191,5,94,0,0,5191,5192,3,822,411,0,5192,5226, - 1,0,0,0,5193,5202,5,138,0,0,5194,5195,5,355,0,0,5195,5196,5,325, - 0,0,5196,5203,7,64,0,0,5197,5203,5,108,0,0,5198,5203,5,168,0,0,5199, - 5203,5,189,0,0,5200,5203,5,360,0,0,5201,5203,5,342,0,0,5202,5194, - 1,0,0,0,5202,5197,1,0,0,0,5202,5198,1,0,0,0,5202,5199,1,0,0,0,5202, - 5200,1,0,0,0,5202,5201,1,0,0,0,5203,5204,1,0,0,0,5204,5205,3,310, - 155,0,5205,5206,5,282,0,0,5206,5207,5,94,0,0,5207,5208,3,822,411, - 0,5208,5226,1,0,0,0,5209,5218,5,138,0,0,5210,5219,5,331,0,0,5211, - 5212,5,63,0,0,5212,5213,5,174,0,0,5213,5219,5,381,0,0,5214,5215, - 5,198,0,0,5215,5219,5,357,0,0,5216,5219,5,452,0,0,5217,5219,5,451, - 0,0,5218,5210,1,0,0,0,5218,5211,1,0,0,0,5218,5214,1,0,0,0,5218,5216, - 1,0,0,0,5218,5217,1,0,0,0,5219,5220,1,0,0,0,5220,5221,3,826,413, - 0,5221,5222,5,282,0,0,5222,5223,5,94,0,0,5223,5224,3,822,411,0,5224, - 5226,1,0,0,0,5225,5151,1,0,0,0,5225,5160,1,0,0,0,5225,5193,1,0,0, - 0,5225,5209,1,0,0,0,5226,441,1,0,0,0,5227,5228,5,46,0,0,5228,5229, - 5,452,0,0,5229,5236,3,826,413,0,5230,5231,5,62,0,0,5231,5232,5,92, - 0,0,5232,5237,3,624,312,0,5233,5234,5,62,0,0,5234,5235,5,30,0,0, - 5235,5237,5,350,0,0,5236,5230,1,0,0,0,5236,5233,1,0,0,0,5236,5237, - 1,0,0,0,5237,5239,1,0,0,0,5238,5240,3,394,197,0,5239,5238,1,0,0, - 0,5239,5240,1,0,0,0,5240,443,1,0,0,0,5241,5242,5,138,0,0,5242,5243, - 5,452,0,0,5243,5261,3,826,413,0,5244,5245,5,282,0,0,5245,5246,5, - 94,0,0,5246,5262,3,822,411,0,5247,5248,5,333,0,0,5248,5262,3,278, - 139,0,5249,5250,5,309,0,0,5250,5251,5,94,0,0,5251,5262,3,826,413, - 0,5252,5253,7,35,0,0,5253,5258,3,622,311,0,5254,5255,5,6,0,0,5255, - 5257,3,622,311,0,5256,5254,1,0,0,0,5257,5260,1,0,0,0,5258,5256,1, - 0,0,0,5258,5259,1,0,0,0,5259,5262,1,0,0,0,5260,5258,1,0,0,0,5261, - 5244,1,0,0,0,5261,5247,1,0,0,0,5261,5249,1,0,0,0,5261,5252,1,0,0, - 0,5262,445,1,0,0,0,5263,5264,5,46,0,0,5264,5265,5,451,0,0,5265,5266, - 3,826,413,0,5266,5267,5,164,0,0,5267,5268,3,816,408,0,5268,5269, - 5,452,0,0,5269,5274,3,832,416,0,5270,5271,5,6,0,0,5271,5273,3,832, - 416,0,5272,5270,1,0,0,0,5273,5276,1,0,0,0,5274,5272,1,0,0,0,5274, - 5275,1,0,0,0,5275,5278,1,0,0,0,5276,5274,1,0,0,0,5277,5279,3,394, - 197,0,5278,5277,1,0,0,0,5278,5279,1,0,0,0,5279,447,1,0,0,0,5280, - 5281,5,138,0,0,5281,5282,5,451,0,0,5282,5283,3,826,413,0,5283,5284, - 5,333,0,0,5284,5285,3,278,139,0,5285,5337,1,0,0,0,5286,5287,5,138, - 0,0,5287,5288,5,451,0,0,5288,5289,3,826,413,0,5289,5290,5,164,0, - 0,5290,5291,3,816,408,0,5291,5337,1,0,0,0,5292,5293,5,138,0,0,5293, - 5294,5,451,0,0,5294,5295,3,826,413,0,5295,5296,5,305,0,0,5296,5298, - 5,452,0,0,5297,5299,3,394,197,0,5298,5297,1,0,0,0,5298,5299,1,0, - 0,0,5299,5337,1,0,0,0,5300,5301,5,138,0,0,5301,5302,5,451,0,0,5302, - 5303,3,826,413,0,5303,5304,7,35,0,0,5304,5305,5,452,0,0,5305,5310, - 3,832,416,0,5306,5307,5,6,0,0,5307,5309,3,832,416,0,5308,5306,1, - 0,0,0,5309,5312,1,0,0,0,5310,5308,1,0,0,0,5310,5311,1,0,0,0,5311, - 5314,1,0,0,0,5312,5310,1,0,0,0,5313,5315,3,394,197,0,5314,5313,1, - 0,0,0,5314,5315,1,0,0,0,5315,5337,1,0,0,0,5316,5317,5,138,0,0,5317, - 5318,5,451,0,0,5318,5319,3,826,413,0,5319,5320,7,65,0,0,5320,5337, - 1,0,0,0,5321,5322,5,138,0,0,5322,5323,5,451,0,0,5323,5324,3,826, - 413,0,5324,5325,5,465,0,0,5325,5326,5,2,0,0,5326,5327,3,284,142, - 0,5327,5328,5,3,0,0,5328,5337,1,0,0,0,5329,5330,5,138,0,0,5330,5331, - 5,451,0,0,5331,5332,3,826,413,0,5332,5333,5,282,0,0,5333,5334,5, - 94,0,0,5334,5335,3,822,411,0,5335,5337,1,0,0,0,5336,5280,1,0,0,0, - 5336,5286,1,0,0,0,5336,5292,1,0,0,0,5336,5300,1,0,0,0,5336,5316, - 1,0,0,0,5336,5321,1,0,0,0,5336,5329,1,0,0,0,5337,449,1,0,0,0,5338, - 5340,5,46,0,0,5339,5341,3,360,180,0,5340,5339,1,0,0,0,5340,5341, - 1,0,0,0,5341,5342,1,0,0,0,5342,5343,5,321,0,0,5343,5344,3,826,413, - 0,5344,5345,5,36,0,0,5345,5346,5,80,0,0,5346,5347,7,66,0,0,5347, - 5348,5,94,0,0,5348,5350,3,784,392,0,5349,5351,3,634,317,0,5350,5349, - 1,0,0,0,5350,5351,1,0,0,0,5351,5352,1,0,0,0,5352,5354,5,57,0,0,5353, - 5355,7,67,0,0,5354,5353,1,0,0,0,5354,5355,1,0,0,0,5355,5372,1,0, - 0,0,5356,5373,5,270,0,0,5357,5373,3,452,226,0,5358,5360,5,2,0,0, - 5359,5361,3,452,226,0,5360,5359,1,0,0,0,5360,5361,1,0,0,0,5361,5368, - 1,0,0,0,5362,5364,5,7,0,0,5363,5365,3,452,226,0,5364,5363,1,0,0, - 0,5364,5365,1,0,0,0,5365,5367,1,0,0,0,5366,5362,1,0,0,0,5367,5370, - 1,0,0,0,5368,5366,1,0,0,0,5368,5369,1,0,0,0,5369,5371,1,0,0,0,5370, - 5368,1,0,0,0,5371,5373,5,3,0,0,5372,5356,1,0,0,0,5372,5357,1,0,0, - 0,5372,5358,1,0,0,0,5373,451,1,0,0,0,5374,5380,3,554,277,0,5375, - 5380,3,532,266,0,5376,5380,3,546,273,0,5377,5380,3,542,271,0,5378, - 5380,3,454,227,0,5379,5374,1,0,0,0,5379,5375,1,0,0,0,5379,5376,1, - 0,0,0,5379,5377,1,0,0,0,5379,5378,1,0,0,0,5380,453,1,0,0,0,5381, - 5382,5,271,0,0,5382,5384,3,826,413,0,5383,5385,3,456,228,0,5384, - 5383,1,0,0,0,5384,5385,1,0,0,0,5385,455,1,0,0,0,5386,5387,5,6,0, - 0,5387,5388,3,816,408,0,5388,457,1,0,0,0,5389,5390,5,252,0,0,5390, - 5391,3,826,413,0,5391,459,1,0,0,0,5392,5395,5,366,0,0,5393,5396, - 3,826,413,0,5394,5396,5,9,0,0,5395,5393,1,0,0,0,5395,5394,1,0,0, - 0,5396,461,1,0,0,0,5397,5399,5,146,0,0,5398,5400,3,464,232,0,5399, - 5398,1,0,0,0,5399,5400,1,0,0,0,5400,5402,1,0,0,0,5401,5403,3,468, - 234,0,5402,5401,1,0,0,0,5402,5403,1,0,0,0,5403,5443,1,0,0,0,5404, - 5405,5,340,0,0,5405,5407,5,356,0,0,5406,5408,3,468,234,0,5407,5406, - 1,0,0,0,5407,5408,1,0,0,0,5408,5443,1,0,0,0,5409,5410,5,322,0,0, - 5410,5443,3,826,413,0,5411,5413,5,308,0,0,5412,5414,5,322,0,0,5413, - 5412,1,0,0,0,5413,5414,1,0,0,0,5414,5415,1,0,0,0,5415,5443,3,826, - 413,0,5416,5417,5,290,0,0,5417,5418,5,356,0,0,5418,5443,3,816,408, - 0,5419,5420,7,68,0,0,5420,5421,5,291,0,0,5421,5443,3,816,408,0,5422, - 5424,7,69,0,0,5423,5425,3,464,232,0,5424,5423,1,0,0,0,5424,5425, - 1,0,0,0,5425,5431,1,0,0,0,5426,5428,5,33,0,0,5427,5429,5,269,0,0, - 5428,5427,1,0,0,0,5428,5429,1,0,0,0,5429,5430,1,0,0,0,5430,5432, - 5,153,0,0,5431,5426,1,0,0,0,5431,5432,1,0,0,0,5432,5443,1,0,0,0, - 5433,5435,5,319,0,0,5434,5436,3,464,232,0,5435,5434,1,0,0,0,5435, - 5436,1,0,0,0,5436,5437,1,0,0,0,5437,5439,5,94,0,0,5438,5440,5,322, - 0,0,5439,5438,1,0,0,0,5439,5440,1,0,0,0,5440,5441,1,0,0,0,5441,5443, - 3,826,413,0,5442,5397,1,0,0,0,5442,5404,1,0,0,0,5442,5409,1,0,0, - 0,5442,5411,1,0,0,0,5442,5416,1,0,0,0,5442,5419,1,0,0,0,5442,5422, - 1,0,0,0,5442,5433,1,0,0,0,5443,463,1,0,0,0,5444,5445,7,70,0,0,5445, - 465,1,0,0,0,5446,5447,5,244,0,0,5447,5448,5,251,0,0,5448,5456,3, - 50,25,0,5449,5450,5,300,0,0,5450,5456,7,71,0,0,5451,5453,5,77,0, - 0,5452,5451,1,0,0,0,5452,5453,1,0,0,0,5453,5454,1,0,0,0,5454,5456, - 5,54,0,0,5455,5446,1,0,0,0,5455,5449,1,0,0,0,5455,5452,1,0,0,0,5456, - 467,1,0,0,0,5457,5464,3,466,233,0,5458,5460,5,6,0,0,5459,5458,1, - 0,0,0,5459,5460,1,0,0,0,5460,5461,1,0,0,0,5461,5463,3,466,233,0, - 5462,5459,1,0,0,0,5463,5466,1,0,0,0,5464,5462,1,0,0,0,5464,5465, - 1,0,0,0,5465,469,1,0,0,0,5466,5464,1,0,0,0,5467,5470,5,46,0,0,5468, - 5469,5,82,0,0,5469,5471,5,311,0,0,5470,5468,1,0,0,0,5470,5471,1, - 0,0,0,5471,5473,1,0,0,0,5472,5474,3,116,58,0,5473,5472,1,0,0,0,5473, - 5474,1,0,0,0,5474,5490,1,0,0,0,5475,5476,5,376,0,0,5476,5478,3,780, - 390,0,5477,5479,3,140,70,0,5478,5477,1,0,0,0,5478,5479,1,0,0,0,5479, - 5481,1,0,0,0,5480,5482,3,94,47,0,5481,5480,1,0,0,0,5481,5482,1,0, - 0,0,5482,5491,1,0,0,0,5483,5484,5,303,0,0,5484,5485,5,376,0,0,5485, - 5486,3,780,390,0,5486,5488,3,138,69,0,5487,5489,3,94,47,0,5488,5487, - 1,0,0,0,5488,5489,1,0,0,0,5489,5491,1,0,0,0,5490,5475,1,0,0,0,5490, - 5483,1,0,0,0,5491,5492,1,0,0,0,5492,5493,5,36,0,0,5493,5500,3,554, - 277,0,5494,5496,5,105,0,0,5495,5497,7,72,0,0,5496,5495,1,0,0,0,5496, - 5497,1,0,0,0,5497,5498,1,0,0,0,5498,5499,5,42,0,0,5499,5501,5,279, - 0,0,5500,5494,1,0,0,0,5500,5501,1,0,0,0,5501,471,1,0,0,0,5502,5503, - 5,253,0,0,5503,5504,3,816,408,0,5504,473,1,0,0,0,5505,5506,5,46, - 0,0,5506,5507,5,175,0,0,5507,5509,3,790,395,0,5508,5510,5,105,0, - 0,5509,5508,1,0,0,0,5509,5510,1,0,0,0,5510,5516,1,0,0,0,5511,5513, - 3,476,238,0,5512,5511,1,0,0,0,5513,5514,1,0,0,0,5514,5512,1,0,0, - 0,5514,5515,1,0,0,0,5515,5517,1,0,0,0,5516,5512,1,0,0,0,5516,5517, - 1,0,0,0,5517,475,1,0,0,0,5518,5519,5,164,0,0,5519,5527,5,74,0,0, - 5520,5527,5,194,0,0,5521,5527,5,255,0,0,5522,5527,5,282,0,0,5523, - 5527,5,351,0,0,5524,5527,5,353,0,0,5525,5527,3,834,417,0,5526,5518, - 1,0,0,0,5526,5520,1,0,0,0,5526,5521,1,0,0,0,5526,5522,1,0,0,0,5526, - 5523,1,0,0,0,5526,5524,1,0,0,0,5526,5525,1,0,0,0,5527,5529,1,0,0, - 0,5528,5530,5,10,0,0,5529,5528,1,0,0,0,5529,5530,1,0,0,0,5530,5534, - 1,0,0,0,5531,5535,3,820,410,0,5532,5535,3,54,27,0,5533,5535,5,53, - 0,0,5534,5531,1,0,0,0,5534,5532,1,0,0,0,5534,5533,1,0,0,0,5535,477, - 1,0,0,0,5536,5537,5,138,0,0,5537,5538,5,175,0,0,5538,5554,3,792, - 396,0,5539,5540,5,333,0,0,5540,5541,5,351,0,0,5541,5543,3,774,387, - 0,5542,5539,1,0,0,0,5542,5543,1,0,0,0,5543,5555,1,0,0,0,5544,5546, - 5,105,0,0,5545,5544,1,0,0,0,5545,5546,1,0,0,0,5546,5548,1,0,0,0, - 5547,5549,3,476,238,0,5548,5547,1,0,0,0,5549,5550,1,0,0,0,5550,5548, - 1,0,0,0,5550,5551,1,0,0,0,5551,5553,1,0,0,0,5552,5545,1,0,0,0,5552, - 5553,1,0,0,0,5553,5555,1,0,0,0,5554,5542,1,0,0,0,5554,5552,1,0,0, - 0,5555,479,1,0,0,0,5556,5557,5,138,0,0,5557,5558,5,175,0,0,5558, - 5560,3,792,396,0,5559,5561,3,64,32,0,5560,5559,1,0,0,0,5560,5561, - 1,0,0,0,5561,481,1,0,0,0,5562,5563,5,138,0,0,5563,5564,5,108,0,0, - 5564,5565,3,310,155,0,5565,5566,5,305,0,0,5566,5567,5,375,0,0,5567, - 483,1,0,0,0,5568,5569,5,138,0,0,5569,5570,5,349,0,0,5570,5571,7, - 16,0,0,5571,5572,3,40,20,0,5572,485,1,0,0,0,5573,5574,5,46,0,0,5574, - 5575,5,189,0,0,5575,5577,3,310,155,0,5576,5578,5,36,0,0,5577,5576, - 1,0,0,0,5577,5578,1,0,0,0,5578,5579,1,0,0,0,5579,5583,3,648,324, - 0,5580,5582,3,128,64,0,5581,5580,1,0,0,0,5582,5585,1,0,0,0,5583, - 5581,1,0,0,0,5583,5584,1,0,0,0,5584,487,1,0,0,0,5585,5583,1,0,0, - 0,5586,5587,5,138,0,0,5587,5588,5,189,0,0,5588,5611,3,310,155,0, - 5589,5612,3,86,43,0,5590,5591,7,15,0,0,5591,5592,5,77,0,0,5592,5612, - 5,78,0,0,5593,5596,5,133,0,0,5594,5595,5,45,0,0,5595,5597,3,826, - 413,0,5596,5594,1,0,0,0,5596,5597,1,0,0,0,5597,5598,1,0,0,0,5598, - 5612,3,136,68,0,5599,5600,5,191,0,0,5600,5602,5,45,0,0,5601,5603, - 3,416,208,0,5602,5601,1,0,0,0,5602,5603,1,0,0,0,5603,5604,1,0,0, - 0,5604,5606,3,826,413,0,5605,5607,3,88,44,0,5606,5605,1,0,0,0,5606, - 5607,1,0,0,0,5607,5612,1,0,0,0,5608,5609,5,372,0,0,5609,5610,5,45, - 0,0,5610,5612,3,826,413,0,5611,5589,1,0,0,0,5611,5590,1,0,0,0,5611, - 5593,1,0,0,0,5611,5599,1,0,0,0,5611,5608,1,0,0,0,5612,489,1,0,0, - 0,5613,5614,5,138,0,0,5614,5615,5,355,0,0,5615,5616,5,325,0,0,5616, - 5617,5,185,0,0,5617,5618,3,310,155,0,5618,5619,3,278,139,0,5619, - 491,1,0,0,0,5620,5621,5,138,0,0,5621,5622,5,355,0,0,5622,5623,5, - 325,0,0,5623,5624,5,163,0,0,5624,5625,3,310,155,0,5625,5626,7,73, - 0,0,5626,5627,5,257,0,0,5627,5628,5,62,0,0,5628,5629,3,788,394,0, - 5629,5630,5,105,0,0,5630,5631,3,308,154,0,5631,5662,1,0,0,0,5632, - 5633,5,138,0,0,5633,5634,5,355,0,0,5634,5635,5,325,0,0,5635,5636, - 5,163,0,0,5636,5637,3,310,155,0,5637,5638,5,138,0,0,5638,5641,5, - 257,0,0,5639,5640,5,62,0,0,5640,5642,3,788,394,0,5641,5639,1,0,0, - 0,5641,5642,1,0,0,0,5642,5643,1,0,0,0,5643,5644,5,311,0,0,5644,5645, - 3,310,155,0,5645,5646,5,105,0,0,5646,5647,3,310,155,0,5647,5662, - 1,0,0,0,5648,5649,5,138,0,0,5649,5650,5,355,0,0,5650,5651,5,325, - 0,0,5651,5652,5,163,0,0,5652,5653,3,310,155,0,5653,5654,5,191,0, - 0,5654,5656,5,257,0,0,5655,5657,3,416,208,0,5656,5655,1,0,0,0,5656, - 5657,1,0,0,0,5657,5658,1,0,0,0,5658,5659,5,62,0,0,5659,5660,3,788, - 394,0,5660,5662,1,0,0,0,5661,5620,1,0,0,0,5661,5632,1,0,0,0,5661, - 5648,1,0,0,0,5662,493,1,0,0,0,5663,5665,5,46,0,0,5664,5666,5,53, - 0,0,5665,5664,1,0,0,0,5665,5666,1,0,0,0,5666,5667,1,0,0,0,5667,5668, - 5,168,0,0,5668,5669,3,310,155,0,5669,5670,5,62,0,0,5670,5671,3,816, - 408,0,5671,5672,5,94,0,0,5672,5673,3,816,408,0,5673,5674,5,64,0, - 0,5674,5675,3,310,155,0,5675,495,1,0,0,0,5676,5678,5,158,0,0,5677, - 5679,3,508,254,0,5678,5677,1,0,0,0,5678,5679,1,0,0,0,5679,5684,1, - 0,0,0,5680,5682,3,778,389,0,5681,5683,3,164,82,0,5682,5681,1,0,0, - 0,5682,5683,1,0,0,0,5683,5685,1,0,0,0,5684,5680,1,0,0,0,5684,5685, - 1,0,0,0,5685,5702,1,0,0,0,5686,5687,5,158,0,0,5687,5688,5,2,0,0, - 5688,5693,3,508,254,0,5689,5690,5,6,0,0,5690,5692,3,508,254,0,5691, - 5689,1,0,0,0,5692,5695,1,0,0,0,5693,5691,1,0,0,0,5693,5694,1,0,0, - 0,5694,5696,1,0,0,0,5695,5693,1,0,0,0,5696,5697,5,3,0,0,5697,5699, - 3,778,389,0,5698,5700,3,164,82,0,5699,5698,1,0,0,0,5699,5700,1,0, - 0,0,5700,5702,1,0,0,0,5701,5676,1,0,0,0,5701,5686,1,0,0,0,5702,497, - 1,0,0,0,5703,5719,5,370,0,0,5704,5706,5,113,0,0,5705,5704,1,0,0, - 0,5705,5706,1,0,0,0,5706,5708,1,0,0,0,5707,5709,5,112,0,0,5708,5707, - 1,0,0,0,5708,5709,1,0,0,0,5709,5711,1,0,0,0,5710,5712,3,508,254, - 0,5711,5710,1,0,0,0,5711,5712,1,0,0,0,5712,5714,1,0,0,0,5713,5715, - 3,502,251,0,5714,5713,1,0,0,0,5714,5715,1,0,0,0,5715,5720,1,0,0, - 0,5716,5718,3,518,259,0,5717,5716,1,0,0,0,5717,5718,1,0,0,0,5718, - 5720,1,0,0,0,5719,5705,1,0,0,0,5719,5717,1,0,0,0,5720,5722,1,0,0, - 0,5721,5723,3,512,256,0,5722,5721,1,0,0,0,5722,5723,1,0,0,0,5723, - 499,1,0,0,0,5724,5739,3,502,251,0,5725,5727,3,508,254,0,5726,5725, - 1,0,0,0,5726,5727,1,0,0,0,5727,5740,1,0,0,0,5728,5729,5,2,0,0,5729, - 5734,3,506,253,0,5730,5731,5,6,0,0,5731,5733,3,506,253,0,5732,5730, - 1,0,0,0,5733,5736,1,0,0,0,5734,5732,1,0,0,0,5734,5735,1,0,0,0,5735, - 5737,1,0,0,0,5736,5734,1,0,0,0,5737,5738,5,3,0,0,5738,5740,1,0,0, - 0,5739,5726,1,0,0,0,5739,5728,1,0,0,0,5740,5742,1,0,0,0,5741,5743, - 3,512,256,0,5742,5741,1,0,0,0,5742,5743,1,0,0,0,5743,501,1,0,0,0, - 5744,5745,7,74,0,0,5745,503,1,0,0,0,5746,5749,3,830,415,0,5747,5749, - 3,502,251,0,5748,5746,1,0,0,0,5748,5747,1,0,0,0,5749,5752,1,0,0, - 0,5750,5753,3,54,27,0,5751,5753,3,196,98,0,5752,5750,1,0,0,0,5752, - 5751,1,0,0,0,5752,5753,1,0,0,0,5753,505,1,0,0,0,5754,5756,7,75,0, - 0,5755,5757,7,76,0,0,5756,5755,1,0,0,0,5756,5757,1,0,0,0,5757,5764, - 1,0,0,0,5758,5761,5,548,0,0,5759,5762,3,196,98,0,5760,5762,3,816, - 408,0,5761,5759,1,0,0,0,5761,5760,1,0,0,0,5762,5764,1,0,0,0,5763, - 5754,1,0,0,0,5763,5758,1,0,0,0,5764,507,1,0,0,0,5765,5767,5,128, - 0,0,5766,5768,7,76,0,0,5767,5766,1,0,0,0,5767,5768,1,0,0,0,5768, - 509,1,0,0,0,5769,5771,3,778,389,0,5770,5772,3,138,69,0,5771,5770, - 1,0,0,0,5771,5772,1,0,0,0,5772,511,1,0,0,0,5773,5778,3,510,255,0, - 5774,5775,5,6,0,0,5775,5777,3,510,255,0,5776,5774,1,0,0,0,5777,5780, - 1,0,0,0,5778,5776,1,0,0,0,5778,5779,1,0,0,0,5779,513,1,0,0,0,5780, - 5778,1,0,0,0,5781,5792,5,203,0,0,5782,5793,3,518,259,0,5783,5785, - 5,128,0,0,5784,5783,1,0,0,0,5784,5785,1,0,0,0,5785,5793,1,0,0,0, - 5786,5788,3,502,251,0,5787,5789,3,508,254,0,5788,5787,1,0,0,0,5788, - 5789,1,0,0,0,5789,5791,1,0,0,0,5790,5786,1,0,0,0,5790,5791,1,0,0, - 0,5791,5793,1,0,0,0,5792,5782,1,0,0,0,5792,5784,1,0,0,0,5792,5790, - 1,0,0,0,5793,5794,1,0,0,0,5794,5795,3,516,258,0,5795,515,1,0,0,0, - 5796,5806,3,554,277,0,5797,5806,3,532,266,0,5798,5806,3,546,273, - 0,5799,5806,3,542,271,0,5800,5806,3,552,276,0,5801,5806,3,180,90, - 0,5802,5806,3,186,93,0,5803,5806,3,188,94,0,5804,5806,3,526,263, - 0,5805,5796,1,0,0,0,5805,5797,1,0,0,0,5805,5798,1,0,0,0,5805,5799, - 1,0,0,0,5805,5800,1,0,0,0,5805,5801,1,0,0,0,5805,5802,1,0,0,0,5805, - 5803,1,0,0,0,5805,5804,1,0,0,0,5806,517,1,0,0,0,5807,5808,5,2,0, - 0,5808,5813,3,504,252,0,5809,5810,5,6,0,0,5810,5812,3,504,252,0, - 5811,5809,1,0,0,0,5812,5815,1,0,0,0,5813,5811,1,0,0,0,5813,5814, - 1,0,0,0,5814,5816,1,0,0,0,5815,5813,1,0,0,0,5816,5817,5,3,0,0,5817, - 519,1,0,0,0,5818,5819,5,290,0,0,5819,5821,3,826,413,0,5820,5822, - 3,522,261,0,5821,5820,1,0,0,0,5821,5822,1,0,0,0,5822,5823,1,0,0, - 0,5823,5824,5,36,0,0,5824,5825,3,524,262,0,5825,521,1,0,0,0,5826, - 5827,5,2,0,0,5827,5832,3,648,324,0,5828,5829,5,6,0,0,5829,5831,3, - 648,324,0,5830,5828,1,0,0,0,5831,5834,1,0,0,0,5832,5830,1,0,0,0, - 5832,5833,1,0,0,0,5833,5835,1,0,0,0,5834,5832,1,0,0,0,5835,5836, - 5,3,0,0,5836,523,1,0,0,0,5837,5843,3,554,277,0,5838,5843,3,532,266, - 0,5839,5843,3,546,273,0,5840,5843,3,542,271,0,5841,5843,3,908,454, - 0,5842,5837,1,0,0,0,5842,5838,1,0,0,0,5842,5839,1,0,0,0,5842,5840, - 1,0,0,0,5842,5841,1,0,0,0,5843,525,1,0,0,0,5844,5845,5,202,0,0,5845, - 5847,3,826,413,0,5846,5848,3,528,264,0,5847,5846,1,0,0,0,5847,5848, - 1,0,0,0,5848,5868,1,0,0,0,5849,5851,5,46,0,0,5850,5852,3,116,58, - 0,5851,5850,1,0,0,0,5851,5852,1,0,0,0,5852,5853,1,0,0,0,5853,5855, - 5,92,0,0,5854,5856,3,288,144,0,5855,5854,1,0,0,0,5855,5856,1,0,0, - 0,5856,5857,1,0,0,0,5857,5858,3,182,91,0,5858,5859,5,36,0,0,5859, - 5860,5,202,0,0,5860,5862,3,826,413,0,5861,5863,3,528,264,0,5862, - 5861,1,0,0,0,5862,5863,1,0,0,0,5863,5865,1,0,0,0,5864,5866,3,184, - 92,0,5865,5864,1,0,0,0,5865,5866,1,0,0,0,5866,5868,1,0,0,0,5867, - 5844,1,0,0,0,5867,5849,1,0,0,0,5868,527,1,0,0,0,5869,5870,5,2,0, - 0,5870,5871,3,728,364,0,5871,5872,5,3,0,0,5872,529,1,0,0,0,5873, - 5875,5,177,0,0,5874,5876,5,290,0,0,5875,5874,1,0,0,0,5875,5876,1, - 0,0,0,5876,5879,1,0,0,0,5877,5880,3,826,413,0,5878,5880,5,30,0,0, - 5879,5877,1,0,0,0,5879,5878,1,0,0,0,5880,531,1,0,0,0,5881,5883,3, - 566,283,0,5882,5881,1,0,0,0,5882,5883,1,0,0,0,5883,5884,1,0,0,0, - 5884,5885,5,241,0,0,5885,5886,5,71,0,0,5886,5889,3,778,389,0,5887, - 5888,5,36,0,0,5888,5890,3,826,413,0,5889,5887,1,0,0,0,5889,5890, - 1,0,0,0,5890,5891,1,0,0,0,5891,5913,3,534,267,0,5892,5893,5,80,0, - 0,5893,5901,5,464,0,0,5894,5896,3,354,177,0,5895,5897,3,634,317, - 0,5896,5895,1,0,0,0,5896,5897,1,0,0,0,5897,5902,1,0,0,0,5898,5899, - 5,80,0,0,5899,5900,5,45,0,0,5900,5902,3,826,413,0,5901,5894,1,0, - 0,0,5901,5898,1,0,0,0,5901,5902,1,0,0,0,5902,5903,1,0,0,0,5903,5911, - 5,57,0,0,5904,5905,5,369,0,0,5905,5906,5,333,0,0,5906,5908,3,548, - 274,0,5907,5909,3,634,317,0,5908,5907,1,0,0,0,5908,5909,1,0,0,0, - 5909,5912,1,0,0,0,5910,5912,5,270,0,0,5911,5904,1,0,0,0,5911,5910, - 1,0,0,0,5912,5914,1,0,0,0,5913,5892,1,0,0,0,5913,5914,1,0,0,0,5914, - 5916,1,0,0,0,5915,5917,3,540,270,0,5916,5915,1,0,0,0,5916,5917,1, - 0,0,0,5917,533,1,0,0,0,5918,5919,5,2,0,0,5919,5920,3,536,268,0,5920, - 5921,5,3,0,0,5921,5923,1,0,0,0,5922,5918,1,0,0,0,5922,5923,1,0,0, - 0,5923,5927,1,0,0,0,5924,5925,5,463,0,0,5925,5926,7,77,0,0,5926, - 5928,5,450,0,0,5927,5924,1,0,0,0,5927,5928,1,0,0,0,5928,5931,1,0, - 0,0,5929,5932,3,918,459,0,5930,5932,3,554,277,0,5931,5929,1,0,0, - 0,5931,5930,1,0,0,0,5932,535,1,0,0,0,5933,5938,3,538,269,0,5934, - 5935,5,6,0,0,5935,5937,3,538,269,0,5936,5934,1,0,0,0,5937,5940,1, - 0,0,0,5938,5936,1,0,0,0,5938,5939,1,0,0,0,5939,537,1,0,0,0,5940, - 5938,1,0,0,0,5941,5942,3,806,403,0,5942,5943,3,756,378,0,5943,539, - 1,0,0,0,5944,5945,5,87,0,0,5945,5946,3,758,379,0,5946,541,1,0,0, - 0,5947,5949,3,566,283,0,5948,5947,1,0,0,0,5948,5949,1,0,0,0,5949, - 5950,1,0,0,0,5950,5951,5,182,0,0,5951,5952,5,64,0,0,5952,5955,3, - 626,313,0,5953,5954,5,100,0,0,5954,5956,3,606,303,0,5955,5953,1, - 0,0,0,5955,5956,1,0,0,0,5956,5958,1,0,0,0,5957,5959,3,636,318,0, - 5958,5957,1,0,0,0,5958,5959,1,0,0,0,5959,5961,1,0,0,0,5960,5962, - 3,540,270,0,5961,5960,1,0,0,0,5961,5962,1,0,0,0,5962,543,1,0,0,0, - 5963,5965,5,256,0,0,5964,5966,5,92,0,0,5965,5964,1,0,0,0,5965,5966, - 1,0,0,0,5966,5967,1,0,0,0,5967,5982,3,624,312,0,5968,5979,5,68,0, - 0,5969,5970,7,78,0,0,5970,5980,7,79,0,0,5971,5976,5,334,0,0,5972, - 5973,5,369,0,0,5973,5977,5,201,0,0,5974,5975,5,414,0,0,5975,5977, - 5,201,0,0,5976,5972,1,0,0,0,5976,5974,1,0,0,0,5976,5977,1,0,0,0, - 5977,5980,1,0,0,0,5978,5980,5,201,0,0,5979,5969,1,0,0,0,5979,5971, - 1,0,0,0,5979,5978,1,0,0,0,5980,5981,1,0,0,0,5981,5983,5,263,0,0, - 5982,5968,1,0,0,0,5982,5983,1,0,0,0,5983,5985,1,0,0,0,5984,5986, - 5,272,0,0,5985,5984,1,0,0,0,5985,5986,1,0,0,0,5986,545,1,0,0,0,5987, - 5989,3,566,283,0,5988,5987,1,0,0,0,5988,5989,1,0,0,0,5989,5990,1, - 0,0,0,5990,5991,5,369,0,0,5991,5992,3,626,313,0,5992,5993,5,333, - 0,0,5993,5995,3,548,274,0,5994,5996,3,604,302,0,5995,5994,1,0,0, - 0,5995,5996,1,0,0,0,5996,5998,1,0,0,0,5997,5999,3,636,318,0,5998, - 5997,1,0,0,0,5998,5999,1,0,0,0,5999,6001,1,0,0,0,6000,6002,3,540, - 270,0,6001,6000,1,0,0,0,6001,6002,1,0,0,0,6002,547,1,0,0,0,6003, - 6008,3,550,275,0,6004,6005,5,6,0,0,6005,6007,3,550,275,0,6006,6004, - 1,0,0,0,6007,6010,1,0,0,0,6008,6006,1,0,0,0,6008,6009,1,0,0,0,6009, - 549,1,0,0,0,6010,6008,1,0,0,0,6011,6012,3,538,269,0,6012,6013,5, - 10,0,0,6013,6014,3,670,335,0,6014,6030,1,0,0,0,6015,6016,5,2,0,0, - 6016,6017,3,536,268,0,6017,6018,5,3,0,0,6018,6027,5,10,0,0,6019, - 6021,5,414,0,0,6020,6019,1,0,0,0,6020,6021,1,0,0,0,6021,6022,1,0, - 0,0,6022,6028,3,670,335,0,6023,6024,5,2,0,0,6024,6025,3,560,280, - 0,6025,6026,5,3,0,0,6026,6028,1,0,0,0,6027,6020,1,0,0,0,6027,6023, - 1,0,0,0,6028,6030,1,0,0,0,6029,6011,1,0,0,0,6029,6015,1,0,0,0,6030, - 551,1,0,0,0,6031,6032,5,178,0,0,6032,6041,3,826,413,0,6033,6035, - 5,269,0,0,6034,6033,1,0,0,0,6034,6035,1,0,0,0,6035,6036,1,0,0,0, - 6036,6040,5,324,0,0,6037,6040,5,107,0,0,6038,6040,5,240,0,0,6039, - 6034,1,0,0,0,6039,6037,1,0,0,0,6039,6038,1,0,0,0,6040,6043,1,0,0, - 0,6041,6039,1,0,0,0,6041,6042,1,0,0,0,6042,6044,1,0,0,0,6043,6041, - 1,0,0,0,6044,6047,5,172,0,0,6045,6046,7,27,0,0,6046,6048,5,217,0, - 0,6047,6045,1,0,0,0,6047,6048,1,0,0,0,6048,6049,1,0,0,0,6049,6050, - 5,62,0,0,6050,6051,3,554,277,0,6051,553,1,0,0,0,6052,6055,3,558, - 279,0,6053,6055,3,556,278,0,6054,6052,1,0,0,0,6054,6053,1,0,0,0, - 6055,555,1,0,0,0,6056,6059,5,2,0,0,6057,6060,3,558,279,0,6058,6060, - 3,556,278,0,6059,6057,1,0,0,0,6059,6058,1,0,0,0,6060,6061,1,0,0, - 0,6061,6062,5,3,0,0,6062,557,1,0,0,0,6063,6065,3,566,283,0,6064, - 6063,1,0,0,0,6064,6065,1,0,0,0,6065,6066,1,0,0,0,6066,6068,3,560, - 280,0,6067,6069,3,580,290,0,6068,6067,1,0,0,0,6068,6069,1,0,0,0, - 6069,6078,1,0,0,0,6070,6072,3,600,300,0,6071,6073,3,584,292,0,6072, - 6071,1,0,0,0,6072,6073,1,0,0,0,6073,6079,1,0,0,0,6074,6076,3,584, - 292,0,6075,6077,3,600,300,0,6076,6075,1,0,0,0,6076,6077,1,0,0,0, - 6077,6079,1,0,0,0,6078,6070,1,0,0,0,6078,6074,1,0,0,0,6078,6079, - 1,0,0,0,6079,559,1,0,0,0,6080,6083,3,562,281,0,6081,6083,3,556,278, - 0,6082,6080,1,0,0,0,6082,6081,1,0,0,0,6083,561,1,0,0,0,6084,6094, - 5,88,0,0,6085,6087,5,30,0,0,6086,6085,1,0,0,0,6086,6087,1,0,0,0, - 6087,6089,1,0,0,0,6088,6090,3,574,287,0,6089,6088,1,0,0,0,6089,6090, - 1,0,0,0,6090,6095,1,0,0,0,6091,6093,3,578,289,0,6092,6091,1,0,0, - 0,6092,6093,1,0,0,0,6093,6095,1,0,0,0,6094,6086,1,0,0,0,6094,6092, - 1,0,0,0,6095,6096,1,0,0,0,6096,6107,3,938,469,0,6097,6107,3,602, - 301,0,6098,6099,5,92,0,0,6099,6107,3,620,310,0,6100,6101,3,556,278, - 0,6101,6104,3,564,282,0,6102,6105,3,562,281,0,6103,6105,3,556,278, - 0,6104,6102,1,0,0,0,6104,6103,1,0,0,0,6105,6107,1,0,0,0,6106,6084, - 1,0,0,0,6106,6097,1,0,0,0,6106,6098,1,0,0,0,6106,6100,1,0,0,0,6107, - 6115,1,0,0,0,6108,6111,3,564,282,0,6109,6112,3,562,281,0,6110,6112, - 3,556,278,0,6111,6109,1,0,0,0,6111,6110,1,0,0,0,6112,6114,1,0,0, - 0,6113,6108,1,0,0,0,6114,6117,1,0,0,0,6115,6113,1,0,0,0,6115,6116, - 1,0,0,0,6116,563,1,0,0,0,6117,6115,1,0,0,0,6118,6120,7,80,0,0,6119, - 6121,7,81,0,0,6120,6119,1,0,0,0,6120,6121,1,0,0,0,6121,565,1,0,0, - 0,6122,6124,5,105,0,0,6123,6125,5,303,0,0,6124,6123,1,0,0,0,6124, - 6125,1,0,0,0,6125,6126,1,0,0,0,6126,6131,3,568,284,0,6127,6128,5, - 6,0,0,6128,6130,3,568,284,0,6129,6127,1,0,0,0,6130,6133,1,0,0,0, - 6131,6129,1,0,0,0,6131,6132,1,0,0,0,6132,567,1,0,0,0,6133,6131,1, - 0,0,0,6134,6136,3,826,413,0,6135,6137,3,138,69,0,6136,6135,1,0,0, - 0,6136,6137,1,0,0,0,6137,6138,1,0,0,0,6138,6143,5,36,0,0,6139,6141, - 5,77,0,0,6140,6139,1,0,0,0,6140,6141,1,0,0,0,6141,6142,1,0,0,0,6142, - 6144,5,259,0,0,6143,6140,1,0,0,0,6143,6144,1,0,0,0,6144,6145,1,0, - 0,0,6145,6146,5,2,0,0,6146,6147,3,524,262,0,6147,6149,5,3,0,0,6148, - 6150,3,570,285,0,6149,6148,1,0,0,0,6149,6150,1,0,0,0,6150,6152,1, - 0,0,0,6151,6153,3,572,286,0,6152,6151,1,0,0,0,6152,6153,1,0,0,0, - 6153,569,1,0,0,0,6154,6155,5,325,0,0,6155,6156,7,82,0,0,6156,6157, - 5,207,0,0,6157,6158,5,147,0,0,6158,6159,3,142,71,0,6159,6160,5,333, - 0,0,6160,6161,3,806,403,0,6161,571,1,0,0,0,6162,6163,5,173,0,0,6163, - 6164,3,142,71,0,6164,6165,5,333,0,0,6165,6171,3,806,403,0,6166,6167, - 5,94,0,0,6167,6168,3,826,413,0,6168,6169,5,53,0,0,6169,6170,3,826, - 413,0,6170,6172,1,0,0,0,6171,6166,1,0,0,0,6171,6172,1,0,0,0,6172, - 6173,1,0,0,0,6173,6174,5,100,0,0,6174,6175,3,806,403,0,6175,573, - 1,0,0,0,6176,6182,5,71,0,0,6177,6179,5,346,0,0,6178,6177,1,0,0,0, - 6178,6179,1,0,0,0,6179,6180,1,0,0,0,6180,6183,3,576,288,0,6181,6183, - 3,728,364,0,6182,6178,1,0,0,0,6182,6181,1,0,0,0,6183,575,1,0,0,0, - 6184,6186,7,21,0,0,6185,6184,1,0,0,0,6185,6186,1,0,0,0,6186,6187, - 1,0,0,0,6187,6189,7,22,0,0,6188,6190,5,92,0,0,6189,6188,1,0,0,0, - 6189,6190,1,0,0,0,6190,6191,1,0,0,0,6191,6200,3,776,388,0,6192,6194, - 5,367,0,0,6193,6192,1,0,0,0,6193,6194,1,0,0,0,6194,6196,1,0,0,0, - 6195,6197,5,92,0,0,6196,6195,1,0,0,0,6196,6197,1,0,0,0,6197,6198, - 1,0,0,0,6198,6200,3,776,388,0,6199,6185,1,0,0,0,6199,6193,1,0,0, - 0,6200,577,1,0,0,0,6201,6204,5,56,0,0,6202,6203,5,80,0,0,6203,6205, - 3,528,264,0,6204,6202,1,0,0,0,6204,6205,1,0,0,0,6205,579,1,0,0,0, - 6206,6207,5,83,0,0,6207,6208,5,147,0,0,6208,6213,3,582,291,0,6209, - 6210,5,6,0,0,6210,6212,3,582,291,0,6211,6209,1,0,0,0,6212,6215,1, - 0,0,0,6213,6211,1,0,0,0,6213,6214,1,0,0,0,6214,581,1,0,0,0,6215, - 6213,1,0,0,0,6216,6220,3,736,368,0,6217,6218,5,100,0,0,6218,6221, - 3,724,362,0,6219,6221,7,56,0,0,6220,6217,1,0,0,0,6220,6219,1,0,0, - 0,6220,6221,1,0,0,0,6221,6224,1,0,0,0,6222,6223,5,273,0,0,6223,6225, - 7,57,0,0,6224,6222,1,0,0,0,6224,6225,1,0,0,0,6225,583,1,0,0,0,6226, - 6228,3,590,295,0,6227,6229,3,588,294,0,6228,6227,1,0,0,0,6228,6229, - 1,0,0,0,6229,6238,1,0,0,0,6230,6233,3,586,293,0,6231,6233,3,588, - 294,0,6232,6230,1,0,0,0,6232,6231,1,0,0,0,6233,6235,1,0,0,0,6234, - 6236,3,590,295,0,6235,6234,1,0,0,0,6235,6236,1,0,0,0,6236,6238,1, - 0,0,0,6237,6226,1,0,0,0,6237,6232,1,0,0,0,6238,585,1,0,0,0,6239, - 6242,5,74,0,0,6240,6243,3,670,335,0,6241,6243,5,30,0,0,6242,6240, - 1,0,0,0,6242,6241,1,0,0,0,6243,6246,1,0,0,0,6244,6245,5,6,0,0,6245, - 6247,3,670,335,0,6246,6244,1,0,0,0,6246,6247,1,0,0,0,6247,587,1, - 0,0,0,6248,6249,5,61,0,0,6249,6251,7,83,0,0,6250,6252,3,592,296, - 0,6251,6250,1,0,0,0,6251,6252,1,0,0,0,6252,6253,1,0,0,0,6253,6257, - 7,84,0,0,6254,6258,5,81,0,0,6255,6256,5,105,0,0,6256,6258,5,467, - 0,0,6257,6254,1,0,0,0,6257,6255,1,0,0,0,6258,589,1,0,0,0,6259,6264, - 5,79,0,0,6260,6261,3,592,296,0,6261,6262,7,84,0,0,6262,6265,1,0, - 0,0,6263,6265,3,670,335,0,6264,6260,1,0,0,0,6264,6263,1,0,0,0,6265, - 591,1,0,0,0,6266,6267,7,30,0,0,6267,6270,7,85,0,0,6268,6270,3,678, - 339,0,6269,6266,1,0,0,0,6269,6268,1,0,0,0,6270,593,1,0,0,0,6271, - 6272,5,66,0,0,6272,6274,5,147,0,0,6273,6275,7,81,0,0,6274,6273,1, - 0,0,0,6274,6275,1,0,0,0,6275,6276,1,0,0,0,6276,6277,3,596,298,0, - 6277,595,1,0,0,0,6278,6283,3,598,299,0,6279,6280,5,6,0,0,6280,6282, - 3,598,299,0,6281,6279,1,0,0,0,6282,6285,1,0,0,0,6283,6281,1,0,0, - 0,6283,6284,1,0,0,0,6284,597,1,0,0,0,6285,6283,1,0,0,0,6286,6310, - 3,736,368,0,6287,6288,5,2,0,0,6288,6310,5,3,0,0,6289,6291,7,86,0, - 0,6290,6289,1,0,0,0,6290,6291,1,0,0,0,6291,6292,1,0,0,0,6292,6293, - 5,2,0,0,6293,6298,3,736,368,0,6294,6295,5,6,0,0,6295,6297,3,736, - 368,0,6296,6294,1,0,0,0,6297,6300,1,0,0,0,6298,6296,1,0,0,0,6298, - 6299,1,0,0,0,6299,6301,1,0,0,0,6300,6298,1,0,0,0,6301,6302,5,3,0, - 0,6302,6310,1,0,0,0,6303,6304,5,470,0,0,6304,6305,5,471,0,0,6305, - 6306,5,2,0,0,6306,6307,3,596,298,0,6307,6308,5,3,0,0,6308,6310,1, - 0,0,0,6309,6286,1,0,0,0,6309,6287,1,0,0,0,6309,6290,1,0,0,0,6309, - 6303,1,0,0,0,6310,599,1,0,0,0,6311,6321,5,62,0,0,6312,6313,5,269, - 0,0,6313,6315,5,245,0,0,6314,6312,1,0,0,0,6314,6315,1,0,0,0,6315, - 6316,1,0,0,0,6316,6322,5,369,0,0,6317,6319,5,245,0,0,6318,6317,1, - 0,0,0,6318,6319,1,0,0,0,6319,6320,1,0,0,0,6320,6322,5,334,0,0,6321, - 6314,1,0,0,0,6321,6318,1,0,0,0,6322,6325,1,0,0,0,6323,6324,5,275, - 0,0,6324,6326,3,764,382,0,6325,6323,1,0,0,0,6325,6326,1,0,0,0,6326, - 6330,1,0,0,0,6327,6331,5,272,0,0,6328,6329,5,465,0,0,6329,6331,5, - 466,0,0,6330,6327,1,0,0,0,6330,6328,1,0,0,0,6330,6331,1,0,0,0,6331, - 6333,1,0,0,0,6332,6311,1,0,0,0,6333,6334,1,0,0,0,6334,6332,1,0,0, - 0,6334,6335,1,0,0,0,6335,6340,1,0,0,0,6336,6337,5,62,0,0,6337,6338, - 5,300,0,0,6338,6340,5,81,0,0,6339,6332,1,0,0,0,6339,6336,1,0,0,0, - 6340,601,1,0,0,0,6341,6342,5,422,0,0,6342,6347,3,528,264,0,6343, - 6344,5,6,0,0,6344,6346,3,528,264,0,6345,6343,1,0,0,0,6346,6349,1, - 0,0,0,6347,6345,1,0,0,0,6347,6348,1,0,0,0,6348,603,1,0,0,0,6349, - 6347,1,0,0,0,6350,6351,5,64,0,0,6351,6352,3,606,303,0,6352,605,1, - 0,0,0,6353,6358,3,608,304,0,6354,6355,5,6,0,0,6355,6357,3,608,304, - 0,6356,6354,1,0,0,0,6357,6360,1,0,0,0,6358,6356,1,0,0,0,6358,6359, - 1,0,0,0,6359,607,1,0,0,0,6360,6358,1,0,0,0,6361,6376,3,620,310,0, - 6362,6364,5,81,0,0,6363,6362,1,0,0,0,6363,6364,1,0,0,0,6364,6365, - 1,0,0,0,6365,6367,3,782,391,0,6366,6368,5,9,0,0,6367,6366,1,0,0, - 0,6367,6368,1,0,0,0,6368,6370,1,0,0,0,6369,6371,3,142,71,0,6370, - 6369,1,0,0,0,6370,6371,1,0,0,0,6371,6373,1,0,0,0,6372,6374,3,634, - 317,0,6373,6372,1,0,0,0,6373,6374,1,0,0,0,6374,6376,1,0,0,0,6375, - 6361,1,0,0,0,6375,6363,1,0,0,0,6376,6378,1,0,0,0,6377,6379,3,612, - 306,0,6378,6377,1,0,0,0,6378,6379,1,0,0,0,6379,6381,1,0,0,0,6380, - 6382,3,628,314,0,6381,6380,1,0,0,0,6381,6382,1,0,0,0,6382,6412,1, - 0,0,0,6383,6385,5,72,0,0,6384,6383,1,0,0,0,6384,6385,1,0,0,0,6385, - 6386,1,0,0,0,6386,6412,3,610,305,0,6387,6388,5,2,0,0,6388,6405,3, - 608,304,0,6389,6390,5,110,0,0,6390,6391,5,118,0,0,6391,6406,3,608, - 304,0,6392,6394,5,121,0,0,6393,6395,3,616,308,0,6394,6393,1,0,0, - 0,6394,6395,1,0,0,0,6395,6396,1,0,0,0,6396,6397,5,118,0,0,6397,6406, - 3,608,304,0,6398,6400,3,616,308,0,6399,6398,1,0,0,0,6399,6400,1, - 0,0,0,6400,6401,1,0,0,0,6401,6402,5,118,0,0,6402,6403,3,608,304, - 0,6403,6404,3,618,309,0,6404,6406,1,0,0,0,6405,6389,1,0,0,0,6405, - 6392,1,0,0,0,6405,6399,1,0,0,0,6405,6406,1,0,0,0,6406,6407,1,0,0, - 0,6407,6409,5,3,0,0,6408,6410,3,612,306,0,6409,6408,1,0,0,0,6409, - 6410,1,0,0,0,6410,6412,1,0,0,0,6411,6375,1,0,0,0,6411,6384,1,0,0, - 0,6411,6387,1,0,0,0,6412,6431,1,0,0,0,6413,6414,5,110,0,0,6414,6415, - 5,118,0,0,6415,6430,3,608,304,0,6416,6418,5,121,0,0,6417,6419,3, - 616,308,0,6418,6417,1,0,0,0,6418,6419,1,0,0,0,6419,6420,1,0,0,0, - 6420,6421,5,118,0,0,6421,6430,3,608,304,0,6422,6424,3,616,308,0, - 6423,6422,1,0,0,0,6423,6424,1,0,0,0,6424,6425,1,0,0,0,6425,6426, - 5,118,0,0,6426,6427,3,608,304,0,6427,6428,3,618,309,0,6428,6430, - 1,0,0,0,6429,6413,1,0,0,0,6429,6416,1,0,0,0,6429,6423,1,0,0,0,6430, - 6433,1,0,0,0,6431,6429,1,0,0,0,6431,6432,1,0,0,0,6432,609,1,0,0, - 0,6433,6431,1,0,0,0,6434,6436,3,642,321,0,6435,6437,3,612,306,0, - 6436,6435,1,0,0,0,6436,6437,1,0,0,0,6437,6447,1,0,0,0,6438,6440, - 3,630,315,0,6439,6441,3,614,307,0,6440,6439,1,0,0,0,6440,6441,1, - 0,0,0,6441,6447,1,0,0,0,6442,6444,3,556,278,0,6443,6445,3,612,306, - 0,6444,6443,1,0,0,0,6444,6445,1,0,0,0,6445,6447,1,0,0,0,6446,6434, - 1,0,0,0,6446,6438,1,0,0,0,6446,6442,1,0,0,0,6447,611,1,0,0,0,6448, - 6450,5,36,0,0,6449,6448,1,0,0,0,6449,6450,1,0,0,0,6450,6451,1,0, - 0,0,6451,6456,3,826,413,0,6452,6453,5,2,0,0,6453,6454,3,788,394, - 0,6454,6455,5,3,0,0,6455,6457,1,0,0,0,6456,6452,1,0,0,0,6456,6457, - 1,0,0,0,6457,613,1,0,0,0,6458,6471,3,612,306,0,6459,6461,5,36,0, - 0,6460,6462,3,826,413,0,6461,6460,1,0,0,0,6461,6462,1,0,0,0,6462, - 6465,1,0,0,0,6463,6465,3,826,413,0,6464,6459,1,0,0,0,6464,6463,1, - 0,0,0,6465,6466,1,0,0,0,6466,6467,5,2,0,0,6467,6468,3,638,319,0, - 6468,6469,5,3,0,0,6469,6471,1,0,0,0,6470,6458,1,0,0,0,6470,6464, - 1,0,0,0,6471,615,1,0,0,0,6472,6474,7,87,0,0,6473,6475,5,123,0,0, - 6474,6473,1,0,0,0,6474,6475,1,0,0,0,6475,617,1,0,0,0,6476,6477,5, - 100,0,0,6477,6481,3,138,69,0,6478,6479,5,80,0,0,6479,6481,3,670, - 335,0,6480,6476,1,0,0,0,6480,6478,1,0,0,0,6481,619,1,0,0,0,6482, - 6498,3,316,158,0,6483,6489,5,81,0,0,6484,6490,3,778,389,0,6485,6486, - 5,2,0,0,6486,6487,3,778,389,0,6487,6488,5,3,0,0,6488,6490,1,0,0, - 0,6489,6484,1,0,0,0,6489,6485,1,0,0,0,6490,6498,1,0,0,0,6491,6492, - 5,68,0,0,6492,6495,5,323,0,0,6493,6496,3,794,397,0,6494,6496,5,111, - 0,0,6495,6493,1,0,0,0,6495,6494,1,0,0,0,6496,6498,1,0,0,0,6497,6482, - 1,0,0,0,6497,6483,1,0,0,0,6497,6491,1,0,0,0,6498,621,1,0,0,0,6499, - 6500,5,92,0,0,6500,6502,3,316,158,0,6501,6503,3,138,69,0,6502,6501, - 1,0,0,0,6502,6503,1,0,0,0,6503,6505,1,0,0,0,6504,6506,3,634,317, - 0,6505,6504,1,0,0,0,6505,6506,1,0,0,0,6506,6524,1,0,0,0,6507,6508, - 5,92,0,0,6508,6514,5,81,0,0,6509,6515,3,778,389,0,6510,6511,5,2, - 0,0,6511,6512,3,778,389,0,6512,6513,5,3,0,0,6513,6515,1,0,0,0,6514, - 6509,1,0,0,0,6514,6510,1,0,0,0,6515,6524,1,0,0,0,6516,6517,5,350, - 0,0,6517,6518,5,68,0,0,6518,6521,5,323,0,0,6519,6522,3,794,397,0, - 6520,6522,5,111,0,0,6521,6519,1,0,0,0,6521,6520,1,0,0,0,6522,6524, - 1,0,0,0,6523,6499,1,0,0,0,6523,6507,1,0,0,0,6523,6516,1,0,0,0,6524, - 623,1,0,0,0,6525,6530,3,620,310,0,6526,6527,5,6,0,0,6527,6529,3, - 620,310,0,6528,6526,1,0,0,0,6529,6532,1,0,0,0,6530,6528,1,0,0,0, - 6530,6531,1,0,0,0,6531,625,1,0,0,0,6532,6530,1,0,0,0,6533,6538,3, - 620,310,0,6534,6536,5,36,0,0,6535,6534,1,0,0,0,6535,6536,1,0,0,0, - 6536,6537,1,0,0,0,6537,6539,3,826,413,0,6538,6535,1,0,0,0,6538,6539, - 1,0,0,0,6539,627,1,0,0,0,6540,6541,5,472,0,0,6541,6542,3,814,407, - 0,6542,6548,3,528,264,0,6543,6544,5,310,0,0,6544,6545,5,2,0,0,6545, - 6546,3,670,335,0,6546,6547,5,3,0,0,6547,6549,1,0,0,0,6548,6543,1, - 0,0,0,6548,6549,1,0,0,0,6549,629,1,0,0,0,6550,6565,3,684,342,0,6551, - 6552,5,320,0,0,6552,6553,5,64,0,0,6553,6554,5,2,0,0,6554,6559,3, - 632,316,0,6555,6556,5,6,0,0,6556,6558,3,632,316,0,6557,6555,1,0, - 0,0,6558,6561,1,0,0,0,6559,6557,1,0,0,0,6559,6560,1,0,0,0,6560,6562, - 1,0,0,0,6561,6559,1,0,0,0,6562,6563,5,3,0,0,6563,6565,1,0,0,0,6564, - 6550,1,0,0,0,6564,6551,1,0,0,0,6565,6568,1,0,0,0,6566,6567,5,105, - 0,0,6567,6569,5,473,0,0,6568,6566,1,0,0,0,6568,6569,1,0,0,0,6569, - 631,1,0,0,0,6570,6576,3,684,342,0,6571,6572,5,36,0,0,6572,6573,5, - 2,0,0,6573,6574,3,638,319,0,6574,6575,5,3,0,0,6575,6577,1,0,0,0, - 6576,6571,1,0,0,0,6576,6577,1,0,0,0,6577,633,1,0,0,0,6578,6579,5, - 103,0,0,6579,6580,3,736,368,0,6580,635,1,0,0,0,6581,6586,5,103,0, - 0,6582,6583,5,434,0,0,6583,6584,5,275,0,0,6584,6587,3,826,413,0, - 6585,6587,3,670,335,0,6586,6582,1,0,0,0,6586,6585,1,0,0,0,6587,637, - 1,0,0,0,6588,6593,3,640,320,0,6589,6590,5,6,0,0,6590,6592,3,640, - 320,0,6591,6589,1,0,0,0,6592,6595,1,0,0,0,6593,6591,1,0,0,0,6593, - 6594,1,0,0,0,6594,639,1,0,0,0,6595,6593,1,0,0,0,6596,6597,3,826, - 413,0,6597,6599,3,648,324,0,6598,6600,3,90,45,0,6599,6598,1,0,0, - 0,6599,6600,1,0,0,0,6600,641,1,0,0,0,6601,6602,5,474,0,0,6602,6616, - 5,2,0,0,6603,6604,5,476,0,0,6604,6605,5,2,0,0,6605,6610,3,646,323, - 0,6606,6607,5,6,0,0,6607,6609,3,646,323,0,6608,6606,1,0,0,0,6609, - 6612,1,0,0,0,6610,6608,1,0,0,0,6610,6611,1,0,0,0,6611,6613,1,0,0, - 0,6612,6610,1,0,0,0,6613,6614,5,3,0,0,6614,6615,5,6,0,0,6615,6617, - 1,0,0,0,6616,6603,1,0,0,0,6616,6617,1,0,0,0,6617,6618,1,0,0,0,6618, - 6619,3,678,339,0,6619,6620,3,694,347,0,6620,6621,5,475,0,0,6621, - 6626,3,644,322,0,6622,6623,5,6,0,0,6623,6625,3,644,322,0,6624,6622, - 1,0,0,0,6625,6628,1,0,0,0,6626,6624,1,0,0,0,6626,6627,1,0,0,0,6627, - 6629,1,0,0,0,6628,6626,1,0,0,0,6629,6630,5,3,0,0,6630,643,1,0,0, - 0,6631,6650,3,826,413,0,6632,6646,3,648,324,0,6633,6636,5,53,0,0, - 6634,6636,3,834,417,0,6635,6633,1,0,0,0,6635,6634,1,0,0,0,6636,6637, - 1,0,0,0,6637,6643,3,670,335,0,6638,6640,5,77,0,0,6639,6638,1,0,0, - 0,6639,6640,1,0,0,0,6640,6641,1,0,0,0,6641,6643,5,78,0,0,6642,6635, - 1,0,0,0,6642,6639,1,0,0,0,6643,6644,1,0,0,0,6644,6642,1,0,0,0,6644, - 6645,1,0,0,0,6645,6647,1,0,0,0,6646,6642,1,0,0,0,6646,6647,1,0,0, - 0,6647,6651,1,0,0,0,6648,6649,5,62,0,0,6649,6651,5,473,0,0,6650, - 6632,1,0,0,0,6650,6648,1,0,0,0,6651,645,1,0,0,0,6652,6653,3,678, - 339,0,6653,6654,5,36,0,0,6654,6655,3,832,416,0,6655,6659,1,0,0,0, - 6656,6657,5,53,0,0,6657,6659,3,678,339,0,6658,6652,1,0,0,0,6658, - 6656,1,0,0,0,6659,647,1,0,0,0,6660,6662,5,415,0,0,6661,6660,1,0, - 0,0,6661,6662,1,0,0,0,6662,6663,1,0,0,0,6663,6680,3,650,325,0,6664, - 6666,5,4,0,0,6665,6667,5,574,0,0,6666,6665,1,0,0,0,6666,6667,1,0, - 0,0,6667,6668,1,0,0,0,6668,6670,5,5,0,0,6669,6664,1,0,0,0,6670,6673, - 1,0,0,0,6671,6669,1,0,0,0,6671,6672,1,0,0,0,6672,6681,1,0,0,0,6673, - 6671,1,0,0,0,6674,6678,5,35,0,0,6675,6676,5,4,0,0,6676,6677,5,574, - 0,0,6677,6679,5,5,0,0,6678,6675,1,0,0,0,6678,6679,1,0,0,0,6679,6681, - 1,0,0,0,6680,6671,1,0,0,0,6680,6674,1,0,0,0,6681,6687,1,0,0,0,6682, - 6683,3,784,392,0,6683,6684,5,27,0,0,6684,6685,7,88,0,0,6685,6687, - 1,0,0,0,6686,6661,1,0,0,0,6686,6682,1,0,0,0,6687,649,1,0,0,0,6688, - 6690,3,828,414,0,6689,6691,3,312,156,0,6690,6689,1,0,0,0,6690,6691, - 1,0,0,0,6691,6693,1,0,0,0,6692,6694,3,528,264,0,6693,6692,1,0,0, - 0,6693,6694,1,0,0,0,6694,6704,1,0,0,0,6695,6704,3,652,326,0,6696, - 6701,5,403,0,0,6697,6699,3,664,332,0,6698,6697,1,0,0,0,6698,6699, - 1,0,0,0,6699,6702,1,0,0,0,6700,6702,3,656,328,0,6701,6698,1,0,0, - 0,6701,6700,1,0,0,0,6702,6704,1,0,0,0,6703,6688,1,0,0,0,6703,6695, - 1,0,0,0,6703,6696,1,0,0,0,6704,651,1,0,0,0,6705,6710,3,654,327,0, - 6706,6710,3,658,329,0,6707,6710,3,660,330,0,6708,6710,3,662,331, - 0,6709,6705,1,0,0,0,6709,6706,1,0,0,0,6709,6707,1,0,0,0,6709,6708, - 1,0,0,0,6710,653,1,0,0,0,6711,6728,5,401,0,0,6712,6728,5,402,0,0, - 6713,6728,5,416,0,0,6714,6728,5,388,0,0,6715,6728,5,413,0,0,6716, - 6718,5,398,0,0,6717,6719,3,656,328,0,6718,6717,1,0,0,0,6718,6719, - 1,0,0,0,6719,6728,1,0,0,0,6720,6721,5,190,0,0,6721,6728,5,412,0, - 0,6722,6724,7,89,0,0,6723,6725,3,528,264,0,6724,6723,1,0,0,0,6724, - 6725,1,0,0,0,6725,6728,1,0,0,0,6726,6728,5,390,0,0,6727,6711,1,0, - 0,0,6727,6712,1,0,0,0,6727,6713,1,0,0,0,6727,6714,1,0,0,0,6727,6715, - 1,0,0,0,6727,6716,1,0,0,0,6727,6720,1,0,0,0,6727,6722,1,0,0,0,6727, - 6726,1,0,0,0,6728,655,1,0,0,0,6729,6730,5,2,0,0,6730,6731,5,574, - 0,0,6731,6732,5,3,0,0,6732,657,1,0,0,0,6733,6735,5,389,0,0,6734, - 6736,5,374,0,0,6735,6734,1,0,0,0,6735,6736,1,0,0,0,6736,6738,1,0, - 0,0,6737,6739,3,528,264,0,6738,6737,1,0,0,0,6738,6739,1,0,0,0,6739, - 659,1,0,0,0,6740,6742,7,90,0,0,6741,6743,5,374,0,0,6742,6741,1,0, - 0,0,6742,6743,1,0,0,0,6743,6751,1,0,0,0,6744,6751,5,423,0,0,6745, - 6746,5,405,0,0,6746,6748,7,91,0,0,6747,6749,5,374,0,0,6748,6747, - 1,0,0,0,6748,6749,1,0,0,0,6749,6751,1,0,0,0,6750,6740,1,0,0,0,6750, - 6744,1,0,0,0,6750,6745,1,0,0,0,6751,6753,1,0,0,0,6752,6754,3,656, - 328,0,6753,6752,1,0,0,0,6753,6754,1,0,0,0,6754,661,1,0,0,0,6755, - 6757,7,92,0,0,6756,6758,3,656,328,0,6757,6756,1,0,0,0,6757,6758, - 1,0,0,0,6758,6762,1,0,0,0,6759,6760,7,27,0,0,6760,6761,5,418,0,0, - 6761,6763,5,386,0,0,6762,6759,1,0,0,0,6762,6763,1,0,0,0,6763,663, - 1,0,0,0,6764,6794,5,264,0,0,6765,6794,3,666,333,0,6766,6769,5,384, - 0,0,6767,6768,5,94,0,0,6768,6770,5,264,0,0,6769,6767,1,0,0,0,6769, - 6770,1,0,0,0,6770,6794,1,0,0,0,6771,6778,5,176,0,0,6772,6776,5,94, - 0,0,6773,6777,5,218,0,0,6774,6777,5,261,0,0,6775,6777,3,666,333, - 0,6776,6773,1,0,0,0,6776,6774,1,0,0,0,6776,6775,1,0,0,0,6777,6779, - 1,0,0,0,6778,6772,1,0,0,0,6778,6779,1,0,0,0,6779,6794,1,0,0,0,6780, - 6786,5,218,0,0,6781,6784,5,94,0,0,6782,6785,5,261,0,0,6783,6785, - 3,666,333,0,6784,6782,1,0,0,0,6784,6783,1,0,0,0,6785,6787,1,0,0, - 0,6786,6781,1,0,0,0,6786,6787,1,0,0,0,6787,6794,1,0,0,0,6788,6791, - 5,261,0,0,6789,6790,5,94,0,0,6790,6792,3,666,333,0,6791,6789,1,0, - 0,0,6791,6792,1,0,0,0,6792,6794,1,0,0,0,6793,6764,1,0,0,0,6793,6765, - 1,0,0,0,6793,6766,1,0,0,0,6793,6771,1,0,0,0,6793,6780,1,0,0,0,6793, - 6788,1,0,0,0,6794,665,1,0,0,0,6795,6797,5,326,0,0,6796,6798,3,656, - 328,0,6797,6796,1,0,0,0,6797,6798,1,0,0,0,6798,667,1,0,0,0,6799, - 6800,7,93,0,0,6800,669,1,0,0,0,6801,6802,3,672,336,0,6802,671,1, - 0,0,0,6803,6804,6,336,-1,0,6804,6806,3,676,338,0,6805,6807,3,674, - 337,0,6806,6805,1,0,0,0,6806,6807,1,0,0,0,6807,6811,1,0,0,0,6808, - 6809,5,77,0,0,6809,6811,3,672,336,3,6810,6803,1,0,0,0,6810,6808, - 1,0,0,0,6811,6820,1,0,0,0,6812,6813,10,2,0,0,6813,6814,5,33,0,0, - 6814,6819,3,672,336,3,6815,6816,10,1,0,0,6816,6817,5,82,0,0,6817, - 6819,3,672,336,2,6818,6812,1,0,0,0,6818,6815,1,0,0,0,6819,6822,1, - 0,0,0,6820,6818,1,0,0,0,6820,6821,1,0,0,0,6821,673,1,0,0,0,6822, - 6820,1,0,0,0,6823,6824,3,668,334,0,6824,6825,3,676,338,0,6825,6895, - 1,0,0,0,6826,6827,3,668,334,0,6827,6828,3,726,363,0,6828,6834,3, - 716,358,0,6829,6835,3,556,278,0,6830,6831,5,2,0,0,6831,6832,3,670, - 335,0,6832,6833,5,3,0,0,6833,6835,1,0,0,0,6834,6829,1,0,0,0,6834, - 6830,1,0,0,0,6835,6895,1,0,0,0,6836,6838,5,77,0,0,6837,6836,1,0, - 0,0,6837,6838,1,0,0,0,6838,6839,1,0,0,0,6839,6840,5,387,0,0,6840, - 6841,3,676,338,0,6841,6842,5,33,0,0,6842,6843,3,676,338,0,6843,6895, - 1,0,0,0,6844,6846,5,77,0,0,6845,6844,1,0,0,0,6845,6846,1,0,0,0,6846, - 6847,1,0,0,0,6847,6848,5,68,0,0,6848,6849,5,2,0,0,6849,6854,3,670, - 335,0,6850,6851,5,6,0,0,6851,6853,3,670,335,0,6852,6850,1,0,0,0, - 6853,6856,1,0,0,0,6854,6852,1,0,0,0,6854,6855,1,0,0,0,6855,6857, - 1,0,0,0,6856,6854,1,0,0,0,6857,6858,5,3,0,0,6858,6895,1,0,0,0,6859, - 6861,5,77,0,0,6860,6859,1,0,0,0,6860,6861,1,0,0,0,6861,6862,1,0, - 0,0,6862,6863,5,68,0,0,6863,6895,3,556,278,0,6864,6866,5,77,0,0, - 6865,6864,1,0,0,0,6865,6866,1,0,0,0,6866,6875,1,0,0,0,6867,6876, - 5,120,0,0,6868,6876,5,114,0,0,6869,6870,5,127,0,0,6870,6876,5,94, - 0,0,6871,6873,5,387,0,0,6872,6874,5,91,0,0,6873,6872,1,0,0,0,6873, - 6874,1,0,0,0,6874,6876,1,0,0,0,6875,6867,1,0,0,0,6875,6868,1,0,0, - 0,6875,6869,1,0,0,0,6875,6871,1,0,0,0,6876,6877,1,0,0,0,6877,6880, - 3,676,338,0,6878,6879,5,197,0,0,6879,6881,3,676,338,0,6880,6878, - 1,0,0,0,6880,6881,1,0,0,0,6881,6895,1,0,0,0,6882,6884,5,116,0,0, - 6883,6885,5,77,0,0,6884,6883,1,0,0,0,6884,6885,1,0,0,0,6885,6886, - 1,0,0,0,6886,6895,5,78,0,0,6887,6889,5,116,0,0,6888,6890,5,77,0, - 0,6889,6888,1,0,0,0,6889,6890,1,0,0,0,6890,6891,1,0,0,0,6891,6892, - 5,56,0,0,6892,6893,5,64,0,0,6893,6895,3,676,338,0,6894,6823,1,0, - 0,0,6894,6826,1,0,0,0,6894,6837,1,0,0,0,6894,6845,1,0,0,0,6894,6860, - 1,0,0,0,6894,6865,1,0,0,0,6894,6882,1,0,0,0,6894,6887,1,0,0,0,6895, - 675,1,0,0,0,6896,6897,6,338,-1,0,6897,6901,3,678,339,0,6898,6899, - 7,30,0,0,6899,6901,3,676,338,4,6900,6896,1,0,0,0,6900,6898,1,0,0, - 0,6901,6918,1,0,0,0,6902,6903,10,3,0,0,6903,6904,7,94,0,0,6904,6917, - 3,676,338,4,6905,6906,10,2,0,0,6906,6907,7,30,0,0,6907,6917,3,676, - 338,3,6908,6909,10,1,0,0,6909,6910,5,15,0,0,6910,6917,3,676,338, - 2,6911,6912,10,5,0,0,6912,6913,5,142,0,0,6913,6914,5,418,0,0,6914, - 6915,5,386,0,0,6915,6917,3,670,335,0,6916,6902,1,0,0,0,6916,6905, - 1,0,0,0,6916,6908,1,0,0,0,6916,6911,1,0,0,0,6917,6920,1,0,0,0,6918, - 6916,1,0,0,0,6918,6919,1,0,0,0,6919,677,1,0,0,0,6920,6918,1,0,0, - 0,6921,6922,6,339,-1,0,6922,6923,7,95,0,0,6923,7010,3,556,278,0, - 6924,6927,5,35,0,0,6925,6928,3,556,278,0,6926,6928,3,742,371,0,6927, - 6925,1,0,0,0,6927,6926,1,0,0,0,6928,7010,1,0,0,0,6929,6930,5,28, - 0,0,6930,7010,3,756,378,0,6931,6932,5,470,0,0,6932,7010,3,528,264, - 0,6933,7010,5,574,0,0,6934,7010,5,576,0,0,6935,7010,5,566,0,0,6936, - 7010,5,570,0,0,6937,6947,3,814,407,0,6938,6948,3,816,408,0,6939, - 6940,5,2,0,0,6940,6942,3,738,369,0,6941,6943,3,580,290,0,6942,6941, - 1,0,0,0,6942,6943,1,0,0,0,6943,6944,1,0,0,0,6944,6945,5,3,0,0,6945, - 6946,3,816,408,0,6946,6948,1,0,0,0,6947,6938,1,0,0,0,6947,6939,1, - 0,0,0,6948,7010,1,0,0,0,6949,6951,3,652,326,0,6950,6949,1,0,0,0, - 6950,6951,1,0,0,0,6951,6952,1,0,0,0,6952,7010,3,816,408,0,6953,6961, - 5,403,0,0,6954,6956,3,816,408,0,6955,6957,3,664,332,0,6956,6955, - 1,0,0,0,6956,6957,1,0,0,0,6957,6962,1,0,0,0,6958,6959,3,656,328, - 0,6959,6960,3,816,408,0,6960,6962,1,0,0,0,6961,6954,1,0,0,0,6961, - 6958,1,0,0,0,6962,7010,1,0,0,0,6963,7010,5,96,0,0,6964,7010,5,60, - 0,0,6965,7010,5,78,0,0,6966,7010,5,577,0,0,6967,6968,5,2,0,0,6968, - 6969,3,670,335,0,6969,6970,5,3,0,0,6970,6971,3,756,378,0,6971,7010, - 1,0,0,0,6972,6974,5,40,0,0,6973,6975,3,670,335,0,6974,6973,1,0,0, - 0,6974,6975,1,0,0,0,6975,6977,1,0,0,0,6976,6978,3,750,375,0,6977, - 6976,1,0,0,0,6978,6979,1,0,0,0,6979,6977,1,0,0,0,6979,6980,1,0,0, - 0,6980,6983,1,0,0,0,6981,6982,5,58,0,0,6982,6984,3,670,335,0,6983, - 6981,1,0,0,0,6983,6984,1,0,0,0,6984,6985,1,0,0,0,6985,6986,5,454, - 0,0,6986,7010,1,0,0,0,6987,7010,3,682,341,0,6988,6990,3,556,278, - 0,6989,6991,3,754,377,0,6990,6989,1,0,0,0,6990,6991,1,0,0,0,6991, - 7010,1,0,0,0,6992,7010,3,714,357,0,6993,6994,5,2,0,0,6994,6995,3, - 670,335,0,6995,6996,5,6,0,0,6996,6997,3,728,364,0,6997,6998,5,3, - 0,0,6998,7010,1,0,0,0,6999,7000,3,712,356,0,7000,7001,5,125,0,0, - 7001,7002,3,712,356,0,7002,7010,1,0,0,0,7003,7010,3,808,404,0,7004, - 7005,7,30,0,0,7005,7010,3,678,339,5,7006,7007,3,722,361,0,7007,7008, - 3,678,339,2,7008,7010,1,0,0,0,7009,6921,1,0,0,0,7009,6924,1,0,0, - 0,7009,6929,1,0,0,0,7009,6931,1,0,0,0,7009,6933,1,0,0,0,7009,6934, - 1,0,0,0,7009,6935,1,0,0,0,7009,6936,1,0,0,0,7009,6937,1,0,0,0,7009, - 6950,1,0,0,0,7009,6953,1,0,0,0,7009,6963,1,0,0,0,7009,6964,1,0,0, - 0,7009,6965,1,0,0,0,7009,6966,1,0,0,0,7009,6967,1,0,0,0,7009,6972, - 1,0,0,0,7009,6987,1,0,0,0,7009,6988,1,0,0,0,7009,6992,1,0,0,0,7009, - 6993,1,0,0,0,7009,6999,1,0,0,0,7009,7003,1,0,0,0,7009,7004,1,0,0, - 0,7009,7006,1,0,0,0,7010,7038,1,0,0,0,7011,7012,10,3,0,0,7012,7013, - 3,720,360,0,7013,7014,3,678,339,4,7014,7037,1,0,0,0,7015,7016,10, - 6,0,0,7016,7017,5,26,0,0,7017,7037,3,648,324,0,7018,7019,10,4,0, - 0,7019,7021,3,722,361,0,7020,7022,3,678,339,0,7021,7020,1,0,0,0, - 7021,7022,1,0,0,0,7022,7037,1,0,0,0,7023,7024,10,1,0,0,7024,7026, - 5,116,0,0,7025,7027,5,77,0,0,7026,7025,1,0,0,0,7026,7027,1,0,0,0, - 7027,7034,1,0,0,0,7028,7029,5,56,0,0,7029,7030,5,64,0,0,7030,7035, - 3,678,339,0,7031,7032,5,275,0,0,7032,7035,3,522,261,0,7033,7035, - 5,188,0,0,7034,7028,1,0,0,0,7034,7031,1,0,0,0,7034,7033,1,0,0,0, - 7035,7037,1,0,0,0,7036,7011,1,0,0,0,7036,7015,1,0,0,0,7036,7018, - 1,0,0,0,7036,7023,1,0,0,0,7037,7040,1,0,0,0,7038,7036,1,0,0,0,7038, - 7039,1,0,0,0,7039,679,1,0,0,0,7040,7038,1,0,0,0,7041,7042,3,814, - 407,0,7042,7063,5,2,0,0,7043,7047,3,738,369,0,7044,7045,5,6,0,0, - 7045,7046,5,101,0,0,7046,7048,3,740,370,0,7047,7044,1,0,0,0,7047, - 7048,1,0,0,0,7048,7050,1,0,0,0,7049,7051,3,580,290,0,7050,7049,1, - 0,0,0,7050,7051,1,0,0,0,7051,7064,1,0,0,0,7052,7053,5,101,0,0,7053, - 7055,3,740,370,0,7054,7056,3,580,290,0,7055,7054,1,0,0,0,7055,7056, - 1,0,0,0,7056,7064,1,0,0,0,7057,7058,7,81,0,0,7058,7060,3,738,369, - 0,7059,7061,3,580,290,0,7060,7059,1,0,0,0,7060,7061,1,0,0,0,7061, - 7064,1,0,0,0,7062,7064,5,9,0,0,7063,7043,1,0,0,0,7063,7052,1,0,0, - 0,7063,7057,1,0,0,0,7063,7062,1,0,0,0,7063,7064,1,0,0,0,7064,7065, - 1,0,0,0,7065,7066,5,3,0,0,7066,681,1,0,0,0,7067,7074,3,680,340,0, - 7068,7069,5,479,0,0,7069,7070,5,66,0,0,7070,7071,5,2,0,0,7071,7072, - 3,580,290,0,7072,7073,5,3,0,0,7073,7075,1,0,0,0,7074,7068,1,0,0, - 0,7074,7075,1,0,0,0,7075,7082,1,0,0,0,7076,7077,5,480,0,0,7077,7078, - 5,2,0,0,7078,7079,5,103,0,0,7079,7080,3,670,335,0,7080,7081,5,3, - 0,0,7081,7083,1,0,0,0,7082,7076,1,0,0,0,7082,7083,1,0,0,0,7083,7089, - 1,0,0,0,7084,7087,5,124,0,0,7085,7088,3,706,353,0,7086,7088,3,826, - 413,0,7087,7085,1,0,0,0,7087,7086,1,0,0,0,7088,7090,1,0,0,0,7089, - 7084,1,0,0,0,7089,7090,1,0,0,0,7090,7093,1,0,0,0,7091,7093,3,686, - 343,0,7092,7067,1,0,0,0,7092,7091,1,0,0,0,7093,683,1,0,0,0,7094, - 7097,3,680,340,0,7095,7097,3,686,343,0,7096,7094,1,0,0,0,7096,7095, - 1,0,0,0,7097,685,1,0,0,0,7098,7099,5,108,0,0,7099,7100,5,62,0,0, - 7100,7101,5,2,0,0,7101,7102,3,670,335,0,7102,7103,5,3,0,0,7103,7273, - 1,0,0,0,7104,7273,5,48,0,0,7105,7107,7,96,0,0,7106,7108,3,656,328, - 0,7107,7106,1,0,0,0,7107,7108,1,0,0,0,7108,7273,1,0,0,0,7109,7273, - 5,49,0,0,7110,7273,5,52,0,0,7111,7273,5,89,0,0,7112,7273,5,99,0, - 0,7113,7273,5,47,0,0,7114,7273,5,111,0,0,7115,7116,7,97,0,0,7116, - 7117,5,2,0,0,7117,7118,3,670,335,0,7118,7119,5,36,0,0,7119,7120, - 3,648,324,0,7120,7121,5,3,0,0,7121,7273,1,0,0,0,7122,7123,5,397, - 0,0,7123,7128,5,2,0,0,7124,7125,3,744,372,0,7125,7126,5,64,0,0,7126, - 7127,3,670,335,0,7127,7129,1,0,0,0,7128,7124,1,0,0,0,7128,7129,1, - 0,0,0,7129,7130,1,0,0,0,7130,7273,5,3,0,0,7131,7132,5,489,0,0,7132, - 7133,5,2,0,0,7133,7136,3,670,335,0,7134,7135,5,6,0,0,7135,7137,3, - 746,373,0,7136,7134,1,0,0,0,7136,7137,1,0,0,0,7137,7138,1,0,0,0, - 7138,7139,5,3,0,0,7139,7273,1,0,0,0,7140,7141,5,410,0,0,7141,7142, - 5,2,0,0,7142,7143,3,670,335,0,7143,7144,5,84,0,0,7144,7145,3,670, - 335,0,7145,7146,5,64,0,0,7146,7149,3,670,335,0,7147,7148,5,62,0, - 0,7148,7150,3,670,335,0,7149,7147,1,0,0,0,7149,7150,1,0,0,0,7150, - 7151,1,0,0,0,7151,7152,5,3,0,0,7152,7273,1,0,0,0,7153,7154,5,411, - 0,0,7154,7159,5,2,0,0,7155,7156,3,678,339,0,7156,7157,5,68,0,0,7157, - 7158,3,678,339,0,7158,7160,1,0,0,0,7159,7155,1,0,0,0,7159,7160,1, - 0,0,0,7160,7161,1,0,0,0,7161,7273,5,3,0,0,7162,7163,5,417,0,0,7163, - 7165,5,2,0,0,7164,7166,3,748,374,0,7165,7164,1,0,0,0,7165,7166,1, - 0,0,0,7166,7167,1,0,0,0,7167,7273,5,3,0,0,7168,7169,5,421,0,0,7169, - 7171,5,2,0,0,7170,7172,7,98,0,0,7171,7170,1,0,0,0,7171,7172,1,0, - 0,0,7172,7177,1,0,0,0,7173,7175,3,670,335,0,7174,7173,1,0,0,0,7174, - 7175,1,0,0,0,7175,7176,1,0,0,0,7176,7178,5,64,0,0,7177,7174,1,0, - 0,0,7177,7178,1,0,0,0,7178,7179,1,0,0,0,7179,7180,3,728,364,0,7180, - 7181,1,0,0,0,7181,7182,5,3,0,0,7182,7273,1,0,0,0,7183,7184,5,408, - 0,0,7184,7185,5,2,0,0,7185,7186,3,670,335,0,7186,7187,5,6,0,0,7187, - 7188,3,670,335,0,7188,7189,5,3,0,0,7189,7273,1,0,0,0,7190,7191,7, - 99,0,0,7191,7273,3,528,264,0,7192,7193,5,426,0,0,7193,7194,5,2,0, - 0,7194,7195,5,266,0,0,7195,7205,3,832,416,0,7196,7203,5,6,0,0,7197, - 7198,5,424,0,0,7198,7199,5,2,0,0,7199,7200,3,688,344,0,7200,7201, - 5,3,0,0,7201,7204,1,0,0,0,7202,7204,3,728,364,0,7203,7197,1,0,0, - 0,7203,7202,1,0,0,0,7204,7206,1,0,0,0,7205,7196,1,0,0,0,7205,7206, - 1,0,0,0,7206,7207,1,0,0,0,7207,7208,5,3,0,0,7208,7273,1,0,0,0,7209, - 7210,5,427,0,0,7210,7211,5,2,0,0,7211,7212,3,678,339,0,7212,7213, - 3,694,347,0,7213,7214,5,3,0,0,7214,7273,1,0,0,0,7215,7216,5,428, - 0,0,7216,7217,5,2,0,0,7217,7218,3,688,344,0,7218,7219,5,3,0,0,7219, - 7273,1,0,0,0,7220,7221,5,429,0,0,7221,7222,5,2,0,0,7222,7223,3,692, - 346,0,7223,7226,3,670,335,0,7224,7225,7,100,0,0,7225,7227,5,378, - 0,0,7226,7224,1,0,0,0,7226,7227,1,0,0,0,7227,7228,1,0,0,0,7228,7229, - 5,3,0,0,7229,7273,1,0,0,0,7230,7231,5,430,0,0,7231,7232,5,2,0,0, - 7232,7233,5,266,0,0,7233,7236,3,832,416,0,7234,7235,5,6,0,0,7235, - 7237,3,670,335,0,7236,7234,1,0,0,0,7236,7237,1,0,0,0,7237,7238,1, - 0,0,0,7238,7239,5,3,0,0,7239,7273,1,0,0,0,7240,7241,5,431,0,0,7241, - 7242,5,2,0,0,7242,7243,5,383,0,0,7243,7244,3,670,335,0,7244,7245, - 5,6,0,0,7245,7249,5,375,0,0,7246,7247,5,269,0,0,7247,7250,5,450, - 0,0,7248,7250,3,670,335,0,7249,7246,1,0,0,0,7249,7248,1,0,0,0,7250, - 7260,1,0,0,0,7251,7252,5,6,0,0,7252,7258,5,339,0,0,7253,7255,5,269, - 0,0,7254,7253,1,0,0,0,7254,7255,1,0,0,0,7255,7256,1,0,0,0,7256,7259, - 5,450,0,0,7257,7259,5,385,0,0,7258,7254,1,0,0,0,7258,7257,1,0,0, - 0,7259,7261,1,0,0,0,7260,7251,1,0,0,0,7260,7261,1,0,0,0,7261,7262, - 1,0,0,0,7262,7263,5,3,0,0,7263,7273,1,0,0,0,7264,7265,5,432,0,0, - 7265,7266,5,2,0,0,7266,7267,3,692,346,0,7267,7268,3,670,335,0,7268, - 7269,5,36,0,0,7269,7270,3,650,325,0,7270,7271,5,3,0,0,7271,7273, - 1,0,0,0,7272,7098,1,0,0,0,7272,7104,1,0,0,0,7272,7105,1,0,0,0,7272, - 7109,1,0,0,0,7272,7110,1,0,0,0,7272,7111,1,0,0,0,7272,7112,1,0,0, - 0,7272,7113,1,0,0,0,7272,7114,1,0,0,0,7272,7115,1,0,0,0,7272,7122, - 1,0,0,0,7272,7131,1,0,0,0,7272,7140,1,0,0,0,7272,7153,1,0,0,0,7272, - 7162,1,0,0,0,7272,7168,1,0,0,0,7272,7183,1,0,0,0,7272,7190,1,0,0, - 0,7272,7192,1,0,0,0,7272,7209,1,0,0,0,7272,7215,1,0,0,0,7272,7220, - 1,0,0,0,7272,7230,1,0,0,0,7272,7240,1,0,0,0,7272,7264,1,0,0,0,7273, - 687,1,0,0,0,7274,7279,3,690,345,0,7275,7276,5,6,0,0,7276,7278,3, - 690,345,0,7277,7275,1,0,0,0,7278,7281,1,0,0,0,7279,7277,1,0,0,0, - 7279,7280,1,0,0,0,7280,689,1,0,0,0,7281,7279,1,0,0,0,7282,7285,3, - 670,335,0,7283,7284,5,36,0,0,7284,7286,3,832,416,0,7285,7283,1,0, - 0,0,7285,7286,1,0,0,0,7286,691,1,0,0,0,7287,7288,7,101,0,0,7288, - 693,1,0,0,0,7289,7291,5,286,0,0,7290,7292,3,696,348,0,7291,7290, - 1,0,0,0,7291,7292,1,0,0,0,7292,7293,1,0,0,0,7293,7295,3,678,339, - 0,7294,7296,3,696,348,0,7295,7294,1,0,0,0,7295,7296,1,0,0,0,7296, - 695,1,0,0,0,7297,7298,5,147,0,0,7298,7299,7,102,0,0,7299,697,1,0, - 0,0,7300,7301,5,104,0,0,7301,7306,3,702,351,0,7302,7303,5,6,0,0, - 7303,7305,3,702,351,0,7304,7302,1,0,0,0,7305,7308,1,0,0,0,7306,7304, - 1,0,0,0,7306,7307,1,0,0,0,7307,699,1,0,0,0,7308,7306,1,0,0,0,7309, - 7310,5,67,0,0,7310,7311,3,670,335,0,7311,701,1,0,0,0,7312,7313,3, - 826,413,0,7313,7314,5,36,0,0,7314,7315,3,706,353,0,7315,703,1,0, - 0,0,7316,7319,5,124,0,0,7317,7320,3,706,353,0,7318,7320,3,826,413, - 0,7319,7317,1,0,0,0,7319,7318,1,0,0,0,7320,705,1,0,0,0,7321,7323, - 5,2,0,0,7322,7324,3,826,413,0,7323,7322,1,0,0,0,7323,7324,1,0,0, - 0,7324,7328,1,0,0,0,7325,7326,5,285,0,0,7326,7327,5,147,0,0,7327, - 7329,3,728,364,0,7328,7325,1,0,0,0,7328,7329,1,0,0,0,7329,7331,1, - 0,0,0,7330,7332,3,580,290,0,7331,7330,1,0,0,0,7331,7332,1,0,0,0, - 7332,7334,1,0,0,0,7333,7335,3,708,354,0,7334,7333,1,0,0,0,7334,7335, - 1,0,0,0,7335,7336,1,0,0,0,7336,7337,5,3,0,0,7337,707,1,0,0,0,7338, - 7343,7,103,0,0,7339,7340,5,387,0,0,7340,7341,3,710,355,0,7341,7342, - 5,33,0,0,7342,7344,1,0,0,0,7343,7339,1,0,0,0,7343,7344,1,0,0,0,7344, - 7345,1,0,0,0,7345,7346,3,710,355,0,7346,7356,1,0,0,0,7347,7354,5, - 199,0,0,7348,7349,5,434,0,0,7349,7355,5,414,0,0,7350,7355,5,66,0, - 0,7351,7355,5,467,0,0,7352,7353,5,269,0,0,7353,7355,5,482,0,0,7354, - 7348,1,0,0,0,7354,7350,1,0,0,0,7354,7351,1,0,0,0,7354,7352,1,0,0, - 0,7355,7357,1,0,0,0,7356,7347,1,0,0,0,7356,7357,1,0,0,0,7357,709, - 1,0,0,0,7358,7361,5,362,0,0,7359,7361,3,670,335,0,7360,7358,1,0, - 0,0,7360,7359,1,0,0,0,7361,7362,1,0,0,0,7362,7366,7,104,0,0,7363, - 7364,5,434,0,0,7364,7366,5,414,0,0,7365,7360,1,0,0,0,7365,7363,1, - 0,0,0,7366,711,1,0,0,0,7367,7375,3,714,357,0,7368,7369,5,2,0,0,7369, - 7370,3,728,364,0,7370,7371,5,6,0,0,7371,7372,3,670,335,0,7372,7373, - 5,3,0,0,7373,7375,1,0,0,0,7374,7367,1,0,0,0,7374,7368,1,0,0,0,7375, - 713,1,0,0,0,7376,7377,5,414,0,0,7377,7379,5,2,0,0,7378,7380,3,728, - 364,0,7379,7378,1,0,0,0,7379,7380,1,0,0,0,7380,7381,1,0,0,0,7381, - 7382,5,3,0,0,7382,715,1,0,0,0,7383,7384,7,105,0,0,7384,717,1,0,0, - 0,7385,7388,5,29,0,0,7386,7388,3,720,360,0,7387,7385,1,0,0,0,7387, - 7386,1,0,0,0,7388,719,1,0,0,0,7389,7390,7,106,0,0,7390,721,1,0,0, - 0,7391,7398,5,29,0,0,7392,7393,5,278,0,0,7393,7394,5,2,0,0,7394, - 7395,3,408,204,0,7395,7396,5,3,0,0,7396,7398,1,0,0,0,7397,7391,1, - 0,0,0,7397,7392,1,0,0,0,7398,723,1,0,0,0,7399,7406,3,718,359,0,7400, - 7401,5,278,0,0,7401,7402,5,2,0,0,7402,7403,3,408,204,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,7413,3,724,362,0,7408,7410,5,77,0,0,7409,7408,1, - 0,0,0,7409,7410,1,0,0,0,7410,7411,1,0,0,0,7411,7413,7,107,0,0,7412, - 7407,1,0,0,0,7412,7409,1,0,0,0,7413,727,1,0,0,0,7414,7419,3,670, - 335,0,7415,7416,5,6,0,0,7416,7418,3,670,335,0,7417,7415,1,0,0,0, - 7418,7421,1,0,0,0,7419,7417,1,0,0,0,7419,7420,1,0,0,0,7420,729,1, - 0,0,0,7421,7419,1,0,0,0,7422,7423,3,670,335,0,7423,731,1,0,0,0,7424, - 7425,3,806,403,0,7425,733,1,0,0,0,7426,7427,5,2,0,0,7427,7428,3, - 670,335,0,7428,7429,5,3,0,0,7429,7432,1,0,0,0,7430,7432,3,806,403, - 0,7431,7426,1,0,0,0,7431,7430,1,0,0,0,7432,735,1,0,0,0,7433,7436, - 3,670,335,0,7434,7436,3,806,403,0,7435,7433,1,0,0,0,7435,7434,1, - 0,0,0,7436,737,1,0,0,0,7437,7442,3,740,370,0,7438,7439,5,6,0,0,7439, - 7441,3,740,370,0,7440,7438,1,0,0,0,7441,7444,1,0,0,0,7442,7440,1, - 0,0,0,7442,7443,1,0,0,0,7443,739,1,0,0,0,7444,7442,1,0,0,0,7445, - 7453,3,806,403,0,7446,7453,3,670,335,0,7447,7450,3,828,414,0,7448, - 7449,7,108,0,0,7449,7451,3,670,335,0,7450,7448,1,0,0,0,7450,7451, - 1,0,0,0,7451,7453,1,0,0,0,7452,7445,1,0,0,0,7452,7446,1,0,0,0,7452, - 7447,1,0,0,0,7453,741,1,0,0,0,7454,7464,5,4,0,0,7455,7465,3,728, - 364,0,7456,7461,3,742,371,0,7457,7458,5,6,0,0,7458,7460,3,742,371, - 0,7459,7457,1,0,0,0,7460,7463,1,0,0,0,7461,7459,1,0,0,0,7461,7462, - 1,0,0,0,7462,7465,1,0,0,0,7463,7461,1,0,0,0,7464,7455,1,0,0,0,7464, - 7456,1,0,0,0,7464,7465,1,0,0,0,7465,7466,1,0,0,0,7466,7467,5,5,0, - 0,7467,743,1,0,0,0,7468,7477,3,834,417,0,7469,7477,5,384,0,0,7470, - 7477,5,264,0,0,7471,7477,5,176,0,0,7472,7477,5,218,0,0,7473,7477, - 5,261,0,0,7474,7477,5,326,0,0,7475,7477,3,816,408,0,7476,7468,1, - 0,0,0,7476,7469,1,0,0,0,7476,7470,1,0,0,0,7476,7471,1,0,0,0,7476, - 7472,1,0,0,0,7476,7473,1,0,0,0,7476,7474,1,0,0,0,7476,7475,1,0,0, - 0,7477,745,1,0,0,0,7478,7479,7,109,0,0,7479,747,1,0,0,0,7480,7481, - 3,670,335,0,7481,7482,5,64,0,0,7482,7485,3,670,335,0,7483,7484,5, - 62,0,0,7484,7486,3,670,335,0,7485,7483,1,0,0,0,7485,7486,1,0,0,0, - 7486,7502,1,0,0,0,7487,7488,3,670,335,0,7488,7489,5,62,0,0,7489, - 7492,3,670,335,0,7490,7491,5,64,0,0,7491,7493,3,670,335,0,7492,7490, - 1,0,0,0,7492,7493,1,0,0,0,7493,7502,1,0,0,0,7494,7495,3,670,335, - 0,7495,7496,5,127,0,0,7496,7497,3,670,335,0,7497,7498,5,197,0,0, - 7498,7499,3,670,335,0,7499,7502,1,0,0,0,7500,7502,3,728,364,0,7501, - 7480,1,0,0,0,7501,7487,1,0,0,0,7501,7494,1,0,0,0,7501,7500,1,0,0, - 0,7502,749,1,0,0,0,7503,7504,5,102,0,0,7504,7505,3,670,335,0,7505, - 7506,5,93,0,0,7506,7507,3,670,335,0,7507,751,1,0,0,0,7508,7511,5, - 11,0,0,7509,7512,3,832,416,0,7510,7512,5,9,0,0,7511,7509,1,0,0,0, - 7511,7510,1,0,0,0,7512,7526,1,0,0,0,7513,7522,5,4,0,0,7514,7523, - 3,670,335,0,7515,7517,3,670,335,0,7516,7515,1,0,0,0,7516,7517,1, - 0,0,0,7517,7518,1,0,0,0,7518,7520,5,8,0,0,7519,7521,3,670,335,0, - 7520,7519,1,0,0,0,7520,7521,1,0,0,0,7521,7523,1,0,0,0,7522,7514, - 1,0,0,0,7522,7516,1,0,0,0,7523,7524,1,0,0,0,7524,7526,5,5,0,0,7525, - 7508,1,0,0,0,7525,7513,1,0,0,0,7526,753,1,0,0,0,7527,7529,3,752, - 376,0,7528,7527,1,0,0,0,7529,7530,1,0,0,0,7530,7528,1,0,0,0,7530, - 7531,1,0,0,0,7531,755,1,0,0,0,7532,7534,3,752,376,0,7533,7532,1, - 0,0,0,7534,7537,1,0,0,0,7535,7533,1,0,0,0,7535,7536,1,0,0,0,7536, - 757,1,0,0,0,7537,7535,1,0,0,0,7538,7543,3,760,380,0,7539,7540,5, - 6,0,0,7540,7542,3,760,380,0,7541,7539,1,0,0,0,7542,7545,1,0,0,0, - 7543,7541,1,0,0,0,7543,7544,1,0,0,0,7544,759,1,0,0,0,7545,7543,1, - 0,0,0,7546,7559,3,762,381,0,7547,7550,3,732,366,0,7548,7550,3,730, - 365,0,7549,7547,1,0,0,0,7549,7548,1,0,0,0,7550,7556,1,0,0,0,7551, - 7553,5,36,0,0,7552,7551,1,0,0,0,7552,7553,1,0,0,0,7553,7554,1,0, - 0,0,7554,7557,3,834,417,0,7555,7557,1,0,0,0,7556,7552,1,0,0,0,7556, - 7555,1,0,0,0,7557,7559,1,0,0,0,7558,7546,1,0,0,0,7558,7549,1,0,0, - 0,7559,761,1,0,0,0,7560,7561,3,826,413,0,7561,7562,5,11,0,0,7562, - 7564,1,0,0,0,7563,7560,1,0,0,0,7564,7567,1,0,0,0,7565,7563,1,0,0, - 0,7565,7566,1,0,0,0,7566,7568,1,0,0,0,7567,7565,1,0,0,0,7568,7569, - 5,9,0,0,7569,763,1,0,0,0,7570,7575,3,784,392,0,7571,7572,5,6,0,0, - 7572,7574,3,784,392,0,7573,7571,1,0,0,0,7574,7577,1,0,0,0,7575,7573, - 1,0,0,0,7575,7576,1,0,0,0,7576,765,1,0,0,0,7577,7575,1,0,0,0,7578, - 7583,3,778,389,0,7579,7580,5,6,0,0,7580,7582,3,778,389,0,7581,7579, - 1,0,0,0,7582,7585,1,0,0,0,7583,7581,1,0,0,0,7583,7584,1,0,0,0,7584, - 767,1,0,0,0,7585,7583,1,0,0,0,7586,7591,3,794,397,0,7587,7588,5, - 6,0,0,7588,7590,3,794,397,0,7589,7587,1,0,0,0,7590,7593,1,0,0,0, - 7591,7589,1,0,0,0,7591,7592,1,0,0,0,7592,769,1,0,0,0,7593,7591,1, - 0,0,0,7594,7599,3,792,396,0,7595,7596,5,6,0,0,7596,7598,3,792,396, + 507,507,1,0,512,517,2,0,144,144,210,210,9962,0,945,1,0,0,0,2,950, + 1,0,0,0,4,1074,1,0,0,0,6,1076,1,0,0,0,8,1079,1,0,0,0,10,1129,1,0, + 0,0,12,1139,1,0,0,0,14,1141,1,0,0,0,16,1153,1,0,0,0,18,1165,1,0, + 0,0,20,1176,1,0,0,0,22,1210,1,0,0,0,24,1254,1,0,0,0,26,1256,1,0, + 0,0,28,1268,1,0,0,0,30,1275,1,0,0,0,32,1294,1,0,0,0,34,1302,1,0, + 0,0,36,1304,1,0,0,0,38,1318,1,0,0,0,40,1322,1,0,0,0,42,1359,1,0, + 0,0,44,1361,1,0,0,0,46,1369,1,0,0,0,48,1379,1,0,0,0,50,1386,1,0, + 0,0,52,1394,1,0,0,0,54,1400,1,0,0,0,56,1416,1,0,0,0,58,1420,1,0, + 0,0,60,1422,1,0,0,0,62,1434,1,0,0,0,64,1439,1,0,0,0,66,1444,1,0, + 0,0,68,1446,1,0,0,0,70,1458,1,0,0,0,72,1466,1,0,0,0,74,1468,1,0, + 0,0,76,1588,1,0,0,0,78,1590,1,0,0,0,80,1604,1,0,0,0,82,1606,1,0, + 0,0,84,1843,1,0,0,0,86,1850,1,0,0,0,88,1852,1,0,0,0,90,1854,1,0, + 0,0,92,1857,1,0,0,0,94,1868,1,0,0,0,96,1871,1,0,0,0,98,1901,1,0, + 0,0,100,1903,1,0,0,0,102,1944,1,0,0,0,104,1946,1,0,0,0,106,2000, + 1,0,0,0,108,2046,1,0,0,0,110,2067,1,0,0,0,112,2069,1,0,0,0,114,2086, + 1,0,0,0,116,2167,1,0,0,0,118,2169,1,0,0,0,120,2180,1,0,0,0,122,2203, + 1,0,0,0,124,2221,1,0,0,0,126,2223,1,0,0,0,128,2258,1,0,0,0,130,2351, + 1,0,0,0,132,2356,1,0,0,0,134,2358,1,0,0,0,136,2456,1,0,0,0,138,2458, + 1,0,0,0,140,2462,1,0,0,0,142,2473,1,0,0,0,144,2481,1,0,0,0,146,2484, + 1,0,0,0,148,2487,1,0,0,0,150,2505,1,0,0,0,152,2507,1,0,0,0,154,2511, + 1,0,0,0,156,2524,1,0,0,0,158,2526,1,0,0,0,160,2531,1,0,0,0,162,2551, + 1,0,0,0,164,2559,1,0,0,0,166,2566,1,0,0,0,168,2568,1,0,0,0,170,2577, + 1,0,0,0,172,2580,1,0,0,0,174,2584,1,0,0,0,176,2588,1,0,0,0,178,2613, + 1,0,0,0,180,2623,1,0,0,0,182,2637,1,0,0,0,184,2653,1,0,0,0,186,2659, + 1,0,0,0,188,2686,1,0,0,0,190,2696,1,0,0,0,192,2712,1,0,0,0,194,2756, + 1,0,0,0,196,2763,1,0,0,0,198,2765,1,0,0,0,200,2791,1,0,0,0,202,2802, + 1,0,0,0,204,2821,1,0,0,0,206,2832,1,0,0,0,208,2870,1,0,0,0,210,2891, + 1,0,0,0,212,2893,1,0,0,0,214,2913,1,0,0,0,216,2925,1,0,0,0,218,2937, + 1,0,0,0,220,2940,1,0,0,0,222,2943,1,0,0,0,224,2963,1,0,0,0,226,2968, + 1,0,0,0,228,3017,1,0,0,0,230,3019,1,0,0,0,232,3042,1,0,0,0,234,3058, + 1,0,0,0,236,3070,1,0,0,0,238,3097,1,0,0,0,240,3112,1,0,0,0,242,3175, + 1,0,0,0,244,3177,1,0,0,0,246,3182,1,0,0,0,248,3188,1,0,0,0,250,3275, + 1,0,0,0,252,3281,1,0,0,0,254,3283,1,0,0,0,256,3299,1,0,0,0,258,3301, + 1,0,0,0,260,3310,1,0,0,0,262,3314,1,0,0,0,264,3327,1,0,0,0,266,3339, + 1,0,0,0,268,3341,1,0,0,0,270,3363,1,0,0,0,272,3375,1,0,0,0,274,3386, + 1,0,0,0,276,3477,1,0,0,0,278,3479,1,0,0,0,280,3490,1,0,0,0,282,3501, + 1,0,0,0,284,3503,1,0,0,0,286,3529,1,0,0,0,288,3531,1,0,0,0,290,3535, + 1,0,0,0,292,3585,1,0,0,0,294,3587,1,0,0,0,296,3593,1,0,0,0,298,3618, + 1,0,0,0,300,3622,1,0,0,0,302,3836,1,0,0,0,304,3854,1,0,0,0,306,3880, + 1,0,0,0,308,3882,1,0,0,0,310,3890,1,0,0,0,312,3896,1,0,0,0,314,3900, + 1,0,0,0,316,3920,1,0,0,0,318,3926,1,0,0,0,320,3993,1,0,0,0,322,4024, + 1,0,0,0,324,4070,1,0,0,0,326,4072,1,0,0,0,328,4074,1,0,0,0,330,4085, + 1,0,0,0,332,4122,1,0,0,0,334,4124,1,0,0,0,336,4130,1,0,0,0,338,4180, + 1,0,0,0,340,4183,1,0,0,0,342,4197,1,0,0,0,344,4218,1,0,0,0,346,4242, + 1,0,0,0,348,4283,1,0,0,0,350,4285,1,0,0,0,352,4287,1,0,0,0,354,4327, + 1,0,0,0,356,4344,1,0,0,0,358,4364,1,0,0,0,360,4417,1,0,0,0,362,4420, + 1,0,0,0,364,4426,1,0,0,0,366,4434,1,0,0,0,368,4447,1,0,0,0,370,4449, + 1,0,0,0,372,4462,1,0,0,0,374,4464,1,0,0,0,376,4477,1,0,0,0,378,4487, + 1,0,0,0,380,4498,1,0,0,0,382,4509,1,0,0,0,384,4511,1,0,0,0,386,4516, + 1,0,0,0,388,4530,1,0,0,0,390,4562,1,0,0,0,392,4599,1,0,0,0,394,4601, + 1,0,0,0,396,4604,1,0,0,0,398,4607,1,0,0,0,400,4624,1,0,0,0,402,4645, + 1,0,0,0,404,4661,1,0,0,0,406,4677,1,0,0,0,408,4699,1,0,0,0,410,4704, + 1,0,0,0,412,4707,1,0,0,0,414,4715,1,0,0,0,416,4740,1,0,0,0,418,4743, + 1,0,0,0,420,4771,1,0,0,0,422,4776,1,0,0,0,424,4816,1,0,0,0,426,5028, + 1,0,0,0,428,5030,1,0,0,0,430,5118,1,0,0,0,432,5120,1,0,0,0,434,5126, + 1,0,0,0,436,5137,1,0,0,0,438,5147,1,0,0,0,440,5227,1,0,0,0,442,5229, + 1,0,0,0,444,5243,1,0,0,0,446,5265,1,0,0,0,448,5338,1,0,0,0,450,5340, + 1,0,0,0,452,5381,1,0,0,0,454,5383,1,0,0,0,456,5388,1,0,0,0,458,5391, + 1,0,0,0,460,5394,1,0,0,0,462,5444,1,0,0,0,464,5446,1,0,0,0,466,5457, + 1,0,0,0,468,5459,1,0,0,0,470,5469,1,0,0,0,472,5504,1,0,0,0,474,5507, + 1,0,0,0,476,5528,1,0,0,0,478,5538,1,0,0,0,480,5558,1,0,0,0,482,5564, + 1,0,0,0,484,5570,1,0,0,0,486,5575,1,0,0,0,488,5588,1,0,0,0,490,5615, + 1,0,0,0,492,5663,1,0,0,0,494,5665,1,0,0,0,496,5703,1,0,0,0,498,5705, + 1,0,0,0,500,5726,1,0,0,0,502,5746,1,0,0,0,504,5750,1,0,0,0,506,5765, + 1,0,0,0,508,5767,1,0,0,0,510,5771,1,0,0,0,512,5775,1,0,0,0,514,5783, + 1,0,0,0,516,5807,1,0,0,0,518,5809,1,0,0,0,520,5820,1,0,0,0,522,5828, + 1,0,0,0,524,5844,1,0,0,0,526,5869,1,0,0,0,528,5871,1,0,0,0,530,5875, + 1,0,0,0,532,5884,1,0,0,0,534,5924,1,0,0,0,536,5935,1,0,0,0,538,5943, + 1,0,0,0,540,5946,1,0,0,0,542,5950,1,0,0,0,544,5965,1,0,0,0,546,5990, + 1,0,0,0,548,6005,1,0,0,0,550,6031,1,0,0,0,552,6033,1,0,0,0,554,6056, + 1,0,0,0,556,6058,1,0,0,0,558,6066,1,0,0,0,560,6084,1,0,0,0,562,6108, + 1,0,0,0,564,6120,1,0,0,0,566,6124,1,0,0,0,568,6136,1,0,0,0,570,6156, + 1,0,0,0,572,6164,1,0,0,0,574,6178,1,0,0,0,576,6201,1,0,0,0,578,6203, + 1,0,0,0,580,6208,1,0,0,0,582,6218,1,0,0,0,584,6239,1,0,0,0,586,6241, + 1,0,0,0,588,6250,1,0,0,0,590,6261,1,0,0,0,592,6271,1,0,0,0,594,6273, + 1,0,0,0,596,6280,1,0,0,0,598,6311,1,0,0,0,600,6341,1,0,0,0,602,6343, + 1,0,0,0,604,6352,1,0,0,0,606,6355,1,0,0,0,608,6413,1,0,0,0,610,6448, + 1,0,0,0,612,6451,1,0,0,0,614,6472,1,0,0,0,616,6474,1,0,0,0,618,6482, + 1,0,0,0,620,6499,1,0,0,0,622,6525,1,0,0,0,624,6527,1,0,0,0,626,6535, + 1,0,0,0,628,6542,1,0,0,0,630,6566,1,0,0,0,632,6572,1,0,0,0,634,6580, + 1,0,0,0,636,6583,1,0,0,0,638,6590,1,0,0,0,640,6598,1,0,0,0,642,6603, + 1,0,0,0,644,6633,1,0,0,0,646,6660,1,0,0,0,648,6688,1,0,0,0,650,6705, + 1,0,0,0,652,6711,1,0,0,0,654,6729,1,0,0,0,656,6731,1,0,0,0,658,6735, + 1,0,0,0,660,6752,1,0,0,0,662,6757,1,0,0,0,664,6795,1,0,0,0,666,6797, + 1,0,0,0,668,6801,1,0,0,0,670,6803,1,0,0,0,672,6812,1,0,0,0,674,6896, + 1,0,0,0,676,6902,1,0,0,0,678,7011,1,0,0,0,680,7043,1,0,0,0,682,7094, + 1,0,0,0,684,7098,1,0,0,0,686,7274,1,0,0,0,688,7276,1,0,0,0,690,7284, + 1,0,0,0,692,7289,1,0,0,0,694,7291,1,0,0,0,696,7299,1,0,0,0,698,7302, + 1,0,0,0,700,7311,1,0,0,0,702,7314,1,0,0,0,704,7318,1,0,0,0,706,7323, + 1,0,0,0,708,7340,1,0,0,0,710,7367,1,0,0,0,712,7376,1,0,0,0,714,7378, + 1,0,0,0,716,7385,1,0,0,0,718,7389,1,0,0,0,720,7391,1,0,0,0,722,7399, + 1,0,0,0,724,7407,1,0,0,0,726,7414,1,0,0,0,728,7416,1,0,0,0,730,7424, + 1,0,0,0,732,7426,1,0,0,0,734,7433,1,0,0,0,736,7437,1,0,0,0,738,7439, + 1,0,0,0,740,7454,1,0,0,0,742,7456,1,0,0,0,744,7478,1,0,0,0,746,7480, + 1,0,0,0,748,7503,1,0,0,0,750,7505,1,0,0,0,752,7526,1,0,0,0,754,7529, + 1,0,0,0,756,7536,1,0,0,0,758,7539,1,0,0,0,760,7566,1,0,0,0,762,7573, + 1,0,0,0,764,7578,1,0,0,0,766,7586,1,0,0,0,768,7594,1,0,0,0,770,7602, + 1,0,0,0,772,7610,1,0,0,0,774,7612,1,0,0,0,776,7614,1,0,0,0,778,7616, + 1,0,0,0,780,7618,1,0,0,0,782,7620,1,0,0,0,784,7622,1,0,0,0,786,7626, + 1,0,0,0,788,7634,1,0,0,0,790,7642,1,0,0,0,792,7644,1,0,0,0,794,7646, + 1,0,0,0,796,7648,1,0,0,0,798,7650,1,0,0,0,800,7656,1,0,0,0,802,7662, + 1,0,0,0,804,7664,1,0,0,0,806,7666,1,0,0,0,808,7669,1,0,0,0,810,7672, + 1,0,0,0,812,7678,1,0,0,0,814,7684,1,0,0,0,816,7686,1,0,0,0,818,7702, + 1,0,0,0,820,7705,1,0,0,0,822,7714,1,0,0,0,824,7716,1,0,0,0,826,7726, + 1,0,0,0,828,7730,1,0,0,0,830,7735,1,0,0,0,832,7741,1,0,0,0,834,7746, + 1,0,0,0,836,7759,1,0,0,0,838,7761,1,0,0,0,840,7814,1,0,0,0,842,7816, + 1,0,0,0,844,7818,1,0,0,0,846,7821,1,0,0,0,848,7849,1,0,0,0,850,7853, + 1,0,0,0,852,7904,1,0,0,0,854,7907,1,0,0,0,856,7933,1,0,0,0,858,7935, + 1,0,0,0,860,7958,1,0,0,0,862,7960,1,0,0,0,864,7965,1,0,0,0,866,7980, + 1,0,0,0,868,7986,1,0,0,0,870,7997,1,0,0,0,872,8027,1,0,0,0,874,8034, + 1,0,0,0,876,8059,1,0,0,0,878,8069,1,0,0,0,880,8096,1,0,0,0,882,8109, + 1,0,0,0,884,8119,1,0,0,0,886,8138,1,0,0,0,888,8170,1,0,0,0,890,8174, + 1,0,0,0,892,8182,1,0,0,0,894,8196,1,0,0,0,896,8202,1,0,0,0,898,8223, + 1,0,0,0,900,8229,1,0,0,0,902,8268,1,0,0,0,904,8272,1,0,0,0,906,8298, + 1,0,0,0,908,8300,1,0,0,0,910,8308,1,0,0,0,912,8348,1,0,0,0,914,8382, + 1,0,0,0,916,8384,1,0,0,0,918,8395,1,0,0,0,920,8432,1,0,0,0,922,8436, + 1,0,0,0,924,8438,1,0,0,0,926,8442,1,0,0,0,928,8445,1,0,0,0,930,8467, + 1,0,0,0,932,8471,1,0,0,0,934,8473,1,0,0,0,936,8497,1,0,0,0,938,8501, + 1,0,0,0,940,8504,1,0,0,0,942,944,3,2,1,0,943,942,1,0,0,0,944,947, + 1,0,0,0,945,943,1,0,0,0,945,946,1,0,0,0,946,948,1,0,0,0,947,945, + 1,0,0,0,948,949,5,0,0,1,949,1,1,0,0,0,950,952,3,4,2,0,951,953,5, + 7,0,0,952,951,1,0,0,0,952,953,1,0,0,0,953,3,1,0,0,0,954,1075,3,272, + 136,0,955,1075,3,482,241,0,956,1075,3,478,239,0,957,1075,3,480,240, + 0,958,1075,3,346,173,0,959,1075,3,488,244,0,960,1075,3,286,143,0, + 961,1075,3,204,102,0,962,1075,3,206,103,0,963,1075,3,212,106,0,964, + 1075,3,226,113,0,965,1075,3,398,199,0,966,1075,3,28,14,0,967,1075, + 3,428,214,0,968,1075,3,430,215,0,969,1075,3,440,220,0,970,1075,3, + 432,216,0,971,1075,3,438,219,0,972,1075,3,238,119,0,973,1075,3,240, + 120,0,974,1075,3,192,96,0,975,1075,3,484,242,0,976,1075,3,76,38, + 0,977,1075,3,424,212,0,978,1075,3,100,50,0,979,1075,3,444,222,0, + 980,1075,3,18,9,0,981,1075,3,20,10,0,982,1075,3,16,8,0,983,1075, + 3,448,224,0,984,1075,3,178,89,0,985,1075,3,492,246,0,986,1075,3, + 490,245,0,987,1075,3,234,117,0,988,1075,3,500,250,0,989,1075,3,6, + 3,0,990,1075,3,72,36,0,991,1075,3,104,52,0,992,1075,3,496,248,0, + 993,1075,3,318,159,0,994,1075,3,70,35,0,995,1075,3,106,53,0,996, + 1075,3,248,124,0,997,1075,3,180,90,0,998,1075,3,274,137,0,999,1075, + 3,414,207,0,1000,1075,3,494,247,0,1001,1075,3,486,243,0,1002,1075, + 3,202,101,0,1003,1075,3,208,104,0,1004,1075,3,222,111,0,1005,1075, + 3,228,114,0,1006,1075,3,358,179,0,1007,1075,3,26,13,0,1008,1075, + 3,186,93,0,1009,1075,3,290,145,0,1010,1075,3,294,147,0,1011,1075, + 3,442,221,0,1012,1075,3,296,148,0,1013,1075,3,236,118,0,1014,1075, + 3,198,99,0,1015,1075,3,30,15,0,1016,1075,3,190,95,0,1017,1075,3, + 114,57,0,1018,1075,3,446,223,0,1019,1075,3,176,88,0,1020,1075,3, + 200,100,0,1021,1075,3,418,209,0,1022,1075,3,250,125,0,1023,1075, + 3,268,134,0,1024,1075,3,8,4,0,1025,1075,3,14,7,0,1026,1075,3,232, + 116,0,1027,1075,3,474,237,0,1028,1075,3,530,265,0,1029,1075,3,552, + 276,0,1030,1075,3,276,138,0,1031,1075,3,542,271,0,1032,1075,3,74, + 37,0,1033,1075,3,412,206,0,1034,1075,3,302,151,0,1035,1075,3,526, + 263,0,1036,1075,3,514,257,0,1037,1075,3,322,161,0,1038,1075,3,328, + 164,0,1039,1075,3,342,171,0,1040,1075,3,910,455,0,1041,1075,3,230, + 115,0,1042,1075,3,352,176,0,1043,1075,3,532,266,0,1044,1075,3,458, + 229,0,1045,1075,3,188,94,0,1046,1075,3,472,236,0,1047,1075,3,544, + 272,0,1048,1075,3,454,227,0,1049,1075,3,520,260,0,1050,1075,3,300, + 150,0,1051,1075,3,422,211,0,1052,1075,3,402,201,0,1053,1075,3,400, + 200,0,1054,1075,3,404,202,0,1055,1075,3,426,213,0,1056,1075,3,330, + 165,0,1057,1075,3,344,172,0,1058,1075,3,450,225,0,1059,1075,3,320, + 160,0,1060,1075,3,554,277,0,1061,1075,3,462,231,0,1062,1075,3,314, + 157,0,1063,1075,3,460,230,0,1064,1075,3,546,273,0,1065,1075,3,498, + 249,0,1066,1075,3,60,30,0,1067,1075,3,36,18,0,1068,1075,3,68,34, + 0,1069,1075,3,470,235,0,1070,1072,5,583,0,0,1071,1073,5,584,0,0, + 1072,1071,1,0,0,0,1072,1073,1,0,0,0,1073,1075,1,0,0,0,1074,954,1, + 0,0,0,1074,955,1,0,0,0,1074,956,1,0,0,0,1074,957,1,0,0,0,1074,958, + 1,0,0,0,1074,959,1,0,0,0,1074,960,1,0,0,0,1074,961,1,0,0,0,1074, + 962,1,0,0,0,1074,963,1,0,0,0,1074,964,1,0,0,0,1074,965,1,0,0,0,1074, + 966,1,0,0,0,1074,967,1,0,0,0,1074,968,1,0,0,0,1074,969,1,0,0,0,1074, + 970,1,0,0,0,1074,971,1,0,0,0,1074,972,1,0,0,0,1074,973,1,0,0,0,1074, + 974,1,0,0,0,1074,975,1,0,0,0,1074,976,1,0,0,0,1074,977,1,0,0,0,1074, + 978,1,0,0,0,1074,979,1,0,0,0,1074,980,1,0,0,0,1074,981,1,0,0,0,1074, + 982,1,0,0,0,1074,983,1,0,0,0,1074,984,1,0,0,0,1074,985,1,0,0,0,1074, + 986,1,0,0,0,1074,987,1,0,0,0,1074,988,1,0,0,0,1074,989,1,0,0,0,1074, + 990,1,0,0,0,1074,991,1,0,0,0,1074,992,1,0,0,0,1074,993,1,0,0,0,1074, + 994,1,0,0,0,1074,995,1,0,0,0,1074,996,1,0,0,0,1074,997,1,0,0,0,1074, + 998,1,0,0,0,1074,999,1,0,0,0,1074,1000,1,0,0,0,1074,1001,1,0,0,0, + 1074,1002,1,0,0,0,1074,1003,1,0,0,0,1074,1004,1,0,0,0,1074,1005, + 1,0,0,0,1074,1006,1,0,0,0,1074,1007,1,0,0,0,1074,1008,1,0,0,0,1074, + 1009,1,0,0,0,1074,1010,1,0,0,0,1074,1011,1,0,0,0,1074,1012,1,0,0, + 0,1074,1013,1,0,0,0,1074,1014,1,0,0,0,1074,1015,1,0,0,0,1074,1016, + 1,0,0,0,1074,1017,1,0,0,0,1074,1018,1,0,0,0,1074,1019,1,0,0,0,1074, + 1020,1,0,0,0,1074,1021,1,0,0,0,1074,1022,1,0,0,0,1074,1023,1,0,0, + 0,1074,1024,1,0,0,0,1074,1025,1,0,0,0,1074,1026,1,0,0,0,1074,1027, + 1,0,0,0,1074,1028,1,0,0,0,1074,1029,1,0,0,0,1074,1030,1,0,0,0,1074, + 1031,1,0,0,0,1074,1032,1,0,0,0,1074,1033,1,0,0,0,1074,1034,1,0,0, + 0,1074,1035,1,0,0,0,1074,1036,1,0,0,0,1074,1037,1,0,0,0,1074,1038, + 1,0,0,0,1074,1039,1,0,0,0,1074,1040,1,0,0,0,1074,1041,1,0,0,0,1074, + 1042,1,0,0,0,1074,1043,1,0,0,0,1074,1044,1,0,0,0,1074,1045,1,0,0, + 0,1074,1046,1,0,0,0,1074,1047,1,0,0,0,1074,1048,1,0,0,0,1074,1049, + 1,0,0,0,1074,1050,1,0,0,0,1074,1051,1,0,0,0,1074,1052,1,0,0,0,1074, + 1053,1,0,0,0,1074,1054,1,0,0,0,1074,1055,1,0,0,0,1074,1056,1,0,0, + 0,1074,1057,1,0,0,0,1074,1058,1,0,0,0,1074,1059,1,0,0,0,1074,1060, + 1,0,0,0,1074,1061,1,0,0,0,1074,1062,1,0,0,0,1074,1063,1,0,0,0,1074, + 1064,1,0,0,0,1074,1065,1,0,0,0,1074,1066,1,0,0,0,1074,1067,1,0,0, + 0,1074,1068,1,0,0,0,1074,1069,1,0,0,0,1074,1070,1,0,0,0,1075,5,1, + 0,0,0,1076,1077,5,433,0,0,1077,1078,3,680,340,0,1078,7,1,0,0,0,1079, + 1080,5,46,0,0,1080,1081,5,318,0,0,1081,1083,3,822,411,0,1082,1084, + 5,105,0,0,1083,1082,1,0,0,0,1083,1084,1,0,0,0,1084,1088,1,0,0,0, + 1085,1087,3,12,6,0,1086,1085,1,0,0,0,1087,1090,1,0,0,0,1088,1086, + 1,0,0,0,1088,1089,1,0,0,0,1089,9,1,0,0,0,1090,1088,1,0,0,0,1091, + 1094,5,287,0,0,1092,1095,3,816,408,0,1093,1095,5,78,0,0,1094,1092, + 1,0,0,0,1094,1093,1,0,0,0,1095,1130,1,0,0,0,1096,1097,7,0,0,0,1097, + 1098,5,287,0,0,1098,1130,3,816,408,0,1099,1130,5,228,0,0,1100,1130, + 5,229,0,0,1101,1130,5,236,0,0,1102,1130,5,237,0,0,1103,1130,5,234, + 0,0,1104,1130,5,235,0,0,1105,1130,5,232,0,0,1106,1130,5,233,0,0, + 1107,1130,5,230,0,0,1108,1130,5,231,0,0,1109,1130,5,535,0,0,1110, + 1130,5,536,0,0,1111,1130,5,537,0,0,1112,1130,5,538,0,0,1113,1130, + 5,539,0,0,1114,1130,5,540,0,0,1115,1116,5,164,0,0,1116,1117,5,74, + 0,0,1117,1130,3,820,410,0,1118,1119,5,371,0,0,1119,1120,5,368,0, + 0,1120,1130,3,816,408,0,1121,1122,5,68,0,0,1122,1123,7,1,0,0,1123, + 1130,3,788,394,0,1124,1125,7,2,0,0,1125,1130,3,824,412,0,1126,1127, + 5,134,0,0,1127,1130,3,788,394,0,1128,1130,3,836,418,0,1129,1091, + 1,0,0,0,1129,1096,1,0,0,0,1129,1099,1,0,0,0,1129,1100,1,0,0,0,1129, + 1101,1,0,0,0,1129,1102,1,0,0,0,1129,1103,1,0,0,0,1129,1104,1,0,0, + 0,1129,1105,1,0,0,0,1129,1106,1,0,0,0,1129,1107,1,0,0,0,1129,1108, + 1,0,0,0,1129,1109,1,0,0,0,1129,1110,1,0,0,0,1129,1111,1,0,0,0,1129, + 1112,1,0,0,0,1129,1113,1,0,0,0,1129,1114,1,0,0,0,1129,1115,1,0,0, + 0,1129,1118,1,0,0,0,1129,1121,1,0,0,0,1129,1124,1,0,0,0,1129,1126, + 1,0,0,0,1129,1128,1,0,0,0,1130,11,1,0,0,0,1131,1140,3,10,5,0,1132, + 1133,5,348,0,0,1133,1140,5,574,0,0,1134,1135,7,3,0,0,1135,1140,3, + 824,412,0,1136,1137,5,68,0,0,1137,1138,7,1,0,0,1138,1140,3,824,412, + 0,1139,1131,1,0,0,0,1139,1132,1,0,0,0,1139,1134,1,0,0,0,1139,1136, + 1,0,0,0,1140,13,1,0,0,0,1141,1142,5,46,0,0,1142,1143,5,99,0,0,1143, + 1145,3,822,411,0,1144,1146,5,105,0,0,1145,1144,1,0,0,0,1145,1146, + 1,0,0,0,1146,1150,1,0,0,0,1147,1149,3,12,6,0,1148,1147,1,0,0,0,1149, + 1152,1,0,0,0,1150,1148,1,0,0,0,1150,1151,1,0,0,0,1151,15,1,0,0,0, + 1152,1150,1,0,0,0,1153,1154,5,138,0,0,1154,1155,7,2,0,0,1155,1157, + 3,822,411,0,1156,1158,5,105,0,0,1157,1156,1,0,0,0,1157,1158,1,0, + 0,0,1158,1162,1,0,0,0,1159,1161,3,10,5,0,1160,1159,1,0,0,0,1161, + 1164,1,0,0,0,1162,1160,1,0,0,0,1162,1163,1,0,0,0,1163,17,1,0,0,0, + 1164,1162,1,0,0,0,1165,1166,5,138,0,0,1166,1169,7,2,0,0,1167,1170, + 5,30,0,0,1168,1170,3,822,411,0,1169,1167,1,0,0,0,1169,1168,1,0,0, + 0,1170,1171,1,0,0,0,1171,1172,5,68,0,0,1172,1173,5,175,0,0,1173, + 1174,3,792,396,0,1174,1175,3,64,32,0,1175,19,1,0,0,0,1176,1177,5, + 138,0,0,1177,1178,5,442,0,0,1178,1180,3,798,399,0,1179,1181,3,362, + 181,0,1180,1179,1,0,0,0,1180,1181,1,0,0,0,1181,1182,1,0,0,0,1182, + 1183,3,22,11,0,1183,21,1,0,0,0,1184,1188,3,24,12,0,1185,1187,3,24, + 12,0,1186,1185,1,0,0,0,1187,1190,1,0,0,0,1188,1186,1,0,0,0,1188, + 1189,1,0,0,0,1189,1192,1,0,0,0,1190,1188,1,0,0,0,1191,1193,5,315, + 0,0,1192,1191,1,0,0,0,1192,1193,1,0,0,0,1193,1211,1,0,0,0,1194,1195, + 5,309,0,0,1195,1196,5,94,0,0,1196,1211,3,796,398,0,1197,1198,5,282, + 0,0,1198,1199,5,94,0,0,1199,1211,3,822,411,0,1200,1201,5,333,0,0, + 1201,1202,5,323,0,0,1202,1211,3,32,16,0,1203,1205,5,269,0,0,1204, + 1203,1,0,0,0,1204,1205,1,0,0,0,1205,1206,1,0,0,0,1206,1207,5,462, + 0,0,1207,1208,5,80,0,0,1208,1209,5,204,0,0,1209,1211,3,826,413,0, + 1210,1184,1,0,0,0,1210,1194,1,0,0,0,1210,1197,1,0,0,0,1210,1200, + 1,0,0,0,1210,1204,1,0,0,0,1211,23,1,0,0,0,1212,1255,5,222,0,0,1213, + 1255,5,338,0,0,1214,1255,5,377,0,0,1215,1217,5,77,0,0,1216,1215, + 1,0,0,0,1216,1217,1,0,0,0,1217,1218,1,0,0,0,1218,1255,5,250,0,0, + 1219,1221,5,205,0,0,1220,1219,1,0,0,0,1220,1221,1,0,0,0,1221,1222, + 1,0,0,0,1222,1223,5,327,0,0,1223,1230,5,243,0,0,1224,1226,5,205, + 0,0,1225,1224,1,0,0,0,1225,1226,1,0,0,0,1226,1227,1,0,0,0,1227,1228, + 5,327,0,0,1228,1230,5,181,0,0,1229,1220,1,0,0,0,1229,1225,1,0,0, + 0,1230,1255,1,0,0,0,1231,1232,5,460,0,0,1232,1255,7,4,0,0,1233,1234, + 5,170,0,0,1234,1255,3,832,416,0,1235,1236,5,320,0,0,1236,1255,3, + 826,413,0,1237,1238,5,333,0,0,1238,1239,3,826,413,0,1239,1242,7, + 5,0,0,1240,1243,3,826,413,0,1241,1243,5,53,0,0,1242,1240,1,0,0,0, + 1242,1241,1,0,0,0,1243,1255,1,0,0,0,1244,1245,5,333,0,0,1245,1246, + 3,826,413,0,1246,1247,5,64,0,0,1247,1248,5,434,0,0,1248,1255,1,0, + 0,0,1249,1252,5,313,0,0,1250,1253,3,826,413,0,1251,1253,5,30,0,0, + 1252,1250,1,0,0,0,1252,1251,1,0,0,0,1253,1255,1,0,0,0,1254,1212, + 1,0,0,0,1254,1213,1,0,0,0,1254,1214,1,0,0,0,1254,1216,1,0,0,0,1254, + 1229,1,0,0,0,1254,1231,1,0,0,0,1254,1233,1,0,0,0,1254,1235,1,0,0, + 0,1254,1237,1,0,0,0,1254,1244,1,0,0,0,1254,1249,1,0,0,0,1255,25, + 1,0,0,0,1256,1257,5,46,0,0,1257,1258,5,66,0,0,1258,1260,3,822,411, + 0,1259,1261,5,105,0,0,1260,1259,1,0,0,0,1260,1261,1,0,0,0,1261,1265, + 1,0,0,0,1262,1264,3,12,6,0,1263,1262,1,0,0,0,1264,1267,1,0,0,0,1265, + 1263,1,0,0,0,1265,1266,1,0,0,0,1266,27,1,0,0,0,1267,1265,1,0,0,0, + 1268,1269,5,138,0,0,1269,1270,5,66,0,0,1270,1271,3,822,411,0,1271, + 1272,7,6,0,0,1272,1273,5,99,0,0,1273,1274,3,824,412,0,1274,29,1, + 0,0,0,1275,1276,5,46,0,0,1276,1278,5,323,0,0,1277,1279,3,288,144, + 0,1278,1277,1,0,0,0,1278,1279,1,0,0,0,1279,1286,1,0,0,0,1280,1282, + 3,32,16,0,1281,1280,1,0,0,0,1281,1282,1,0,0,0,1282,1283,1,0,0,0, + 1283,1284,5,106,0,0,1284,1287,3,822,411,0,1285,1287,3,32,16,0,1286, + 1281,1,0,0,0,1286,1285,1,0,0,0,1287,1291,1,0,0,0,1288,1290,3,34, + 17,0,1289,1288,1,0,0,0,1290,1293,1,0,0,0,1291,1289,1,0,0,0,1291, + 1292,1,0,0,0,1292,31,1,0,0,0,1293,1291,1,0,0,0,1294,1295,3,310,155, + 0,1295,33,1,0,0,0,1296,1303,3,114,57,0,1297,1303,3,352,176,0,1298, + 1303,3,190,95,0,1299,1303,3,250,125,0,1300,1303,3,328,164,0,1301, + 1303,3,470,235,0,1302,1296,1,0,0,0,1302,1297,1,0,0,0,1302,1298,1, + 0,0,0,1302,1299,1,0,0,0,1302,1300,1,0,0,0,1302,1301,1,0,0,0,1303, + 35,1,0,0,0,1304,1306,5,333,0,0,1305,1307,7,7,0,0,1306,1305,1,0,0, + 0,1306,1307,1,0,0,0,1307,1308,1,0,0,0,1308,1309,3,38,19,0,1309,37, + 1,0,0,0,1310,1311,5,356,0,0,1311,1319,3,468,234,0,1312,1313,5,332, + 0,0,1313,1314,5,154,0,0,1314,1315,5,36,0,0,1315,1316,5,356,0,0,1316, + 1319,3,468,234,0,1317,1319,3,42,21,0,1318,1310,1,0,0,0,1318,1312, + 1,0,0,0,1318,1317,1,0,0,0,1319,39,1,0,0,0,1320,1323,5,30,0,0,1321, + 1323,3,44,22,0,1322,1320,1,0,0,0,1322,1321,1,0,0,0,1323,1325,1,0, + 0,0,1324,1326,7,5,0,0,1325,1324,1,0,0,0,1325,1326,1,0,0,0,1326,1329, + 1,0,0,0,1327,1330,5,53,0,0,1328,1330,3,46,23,0,1329,1327,1,0,0,0, + 1329,1328,1,0,0,0,1329,1330,1,0,0,0,1330,41,1,0,0,0,1331,1332,5, + 418,0,0,1332,1333,5,386,0,0,1333,1360,3,56,28,0,1334,1335,5,152, + 0,0,1335,1360,3,816,408,0,1336,1337,5,323,0,0,1337,1360,3,794,397, + 0,1338,1341,5,267,0,0,1339,1342,3,816,408,0,1340,1342,5,53,0,0,1341, + 1339,1,0,0,0,1341,1340,1,0,0,0,1341,1342,1,0,0,0,1342,1360,1,0,0, + 0,1343,1344,5,318,0,0,1344,1360,3,58,29,0,1345,1346,5,332,0,0,1346, + 1347,5,106,0,0,1347,1360,3,58,29,0,1348,1349,5,383,0,0,1349,1350, + 5,279,0,0,1350,1360,3,692,346,0,1351,1352,5,356,0,0,1352,1353,5, + 337,0,0,1353,1360,3,816,408,0,1354,1355,3,44,22,0,1355,1356,5,64, + 0,0,1356,1357,5,434,0,0,1357,1360,1,0,0,0,1358,1360,3,40,20,0,1359, + 1331,1,0,0,0,1359,1334,1,0,0,0,1359,1336,1,0,0,0,1359,1338,1,0,0, + 0,1359,1343,1,0,0,0,1359,1345,1,0,0,0,1359,1348,1,0,0,0,1359,1351, + 1,0,0,0,1359,1354,1,0,0,0,1359,1358,1,0,0,0,1360,43,1,0,0,0,1361, + 1366,3,826,413,0,1362,1363,5,11,0,0,1363,1365,3,826,413,0,1364,1362, + 1,0,0,0,1365,1368,1,0,0,0,1366,1364,1,0,0,0,1366,1367,1,0,0,0,1367, + 45,1,0,0,0,1368,1366,1,0,0,0,1369,1374,3,48,24,0,1370,1371,5,6,0, + 0,1371,1373,3,48,24,0,1372,1370,1,0,0,0,1373,1376,1,0,0,0,1374,1372, + 1,0,0,0,1374,1375,1,0,0,0,1375,47,1,0,0,0,1376,1374,1,0,0,0,1377, + 1380,3,54,27,0,1378,1380,3,196,98,0,1379,1377,1,0,0,0,1379,1378, + 1,0,0,0,1380,49,1,0,0,0,1381,1382,5,300,0,0,1382,1387,7,8,0,0,1383, + 1384,5,310,0,0,1384,1387,5,300,0,0,1385,1387,5,330,0,0,1386,1381, + 1,0,0,0,1386,1383,1,0,0,0,1386,1385,1,0,0,0,1387,51,1,0,0,0,1388, + 1395,5,96,0,0,1389,1395,5,60,0,0,1390,1395,5,80,0,0,1391,1395,3, + 806,403,0,1392,1395,3,842,421,0,1393,1395,3,816,408,0,1394,1388, + 1,0,0,0,1394,1389,1,0,0,0,1394,1390,1,0,0,0,1394,1391,1,0,0,0,1394, + 1392,1,0,0,0,1394,1393,1,0,0,0,1395,53,1,0,0,0,1396,1401,5,96,0, + 0,1397,1401,5,60,0,0,1398,1401,5,80,0,0,1399,1401,3,58,29,0,1400, + 1396,1,0,0,0,1400,1397,1,0,0,0,1400,1398,1,0,0,0,1400,1399,1,0,0, + 0,1401,55,1,0,0,0,1402,1417,3,816,408,0,1403,1417,5,53,0,0,1404, + 1417,3,836,418,0,1405,1406,5,403,0,0,1406,1408,3,816,408,0,1407, + 1409,3,664,332,0,1408,1407,1,0,0,0,1408,1409,1,0,0,0,1409,1417,1, + 0,0,0,1410,1411,5,403,0,0,1411,1412,3,656,328,0,1412,1413,3,816, + 408,0,1413,1417,1,0,0,0,1414,1417,3,196,98,0,1415,1417,5,254,0,0, + 1416,1402,1,0,0,0,1416,1403,1,0,0,0,1416,1404,1,0,0,0,1416,1405, + 1,0,0,0,1416,1410,1,0,0,0,1416,1414,1,0,0,0,1416,1415,1,0,0,0,1417, + 57,1,0,0,0,1418,1421,3,830,415,0,1419,1421,3,816,408,0,1420,1418, + 1,0,0,0,1420,1419,1,0,0,0,1421,59,1,0,0,0,1422,1423,5,313,0,0,1423, + 1424,3,62,31,0,1424,61,1,0,0,0,1425,1426,5,418,0,0,1426,1435,5,386, + 0,0,1427,1428,5,356,0,0,1428,1429,5,244,0,0,1429,1435,5,251,0,0, + 1430,1431,5,332,0,0,1431,1435,5,106,0,0,1432,1435,5,30,0,0,1433, + 1435,3,44,22,0,1434,1425,1,0,0,0,1434,1427,1,0,0,0,1434,1430,1,0, + 0,0,1434,1432,1,0,0,0,1434,1433,1,0,0,0,1435,63,1,0,0,0,1436,1437, + 5,333,0,0,1437,1440,3,38,19,0,1438,1440,3,60,30,0,1439,1436,1,0, + 0,0,1439,1438,1,0,0,0,1440,65,1,0,0,0,1441,1442,5,333,0,0,1442,1445, + 3,42,21,0,1443,1445,3,60,30,0,1444,1441,1,0,0,0,1444,1443,1,0,0, + 0,1445,67,1,0,0,0,1446,1456,5,335,0,0,1447,1457,3,44,22,0,1448,1449, + 5,418,0,0,1449,1457,5,386,0,0,1450,1451,5,356,0,0,1451,1452,5,244, + 0,0,1452,1457,5,251,0,0,1453,1454,5,332,0,0,1454,1457,5,106,0,0, + 1455,1457,5,30,0,0,1456,1447,1,0,0,0,1456,1448,1,0,0,0,1456,1450, + 1,0,0,0,1456,1453,1,0,0,0,1456,1455,1,0,0,0,1457,69,1,0,0,0,1458, + 1459,5,333,0,0,1459,1462,5,165,0,0,1460,1463,5,30,0,0,1461,1463, + 3,764,382,0,1462,1460,1,0,0,0,1462,1461,1,0,0,0,1463,1464,1,0,0, + 0,1464,1465,7,9,0,0,1465,71,1,0,0,0,1466,1467,5,155,0,0,1467,73, + 1,0,0,0,1468,1469,5,187,0,0,1469,1470,7,10,0,0,1470,75,1,0,0,0,1471, + 1472,5,138,0,0,1472,1474,5,92,0,0,1473,1475,3,416,208,0,1474,1473, + 1,0,0,0,1474,1475,1,0,0,0,1475,1476,1,0,0,0,1476,1479,3,620,310, + 0,1477,1480,3,78,39,0,1478,1480,3,80,40,0,1479,1477,1,0,0,0,1479, + 1478,1,0,0,0,1480,1589,1,0,0,0,1481,1482,5,138,0,0,1482,1483,5,92, + 0,0,1483,1484,5,30,0,0,1484,1485,5,68,0,0,1485,1489,3,170,85,0,1486, + 1487,5,281,0,0,1487,1488,5,147,0,0,1488,1490,3,824,412,0,1489,1486, + 1,0,0,0,1489,1490,1,0,0,0,1490,1491,1,0,0,0,1491,1492,5,333,0,0, + 1492,1493,5,351,0,0,1493,1495,3,774,387,0,1494,1496,5,272,0,0,1495, + 1494,1,0,0,0,1495,1496,1,0,0,0,1496,1589,1,0,0,0,1497,1498,5,138, + 0,0,1498,1500,5,92,0,0,1499,1501,3,416,208,0,1500,1499,1,0,0,0,1500, + 1501,1,0,0,0,1501,1502,1,0,0,0,1502,1503,3,778,389,0,1503,1504,3, + 82,41,0,1504,1505,3,98,49,0,1505,1589,1,0,0,0,1506,1507,5,138,0, + 0,1507,1509,5,92,0,0,1508,1510,3,416,208,0,1509,1508,1,0,0,0,1509, + 1510,1,0,0,0,1510,1511,1,0,0,0,1511,1512,3,778,389,0,1512,1513,5, + 436,0,0,1513,1514,5,285,0,0,1514,1516,3,784,392,0,1515,1517,7,11, + 0,0,1516,1515,1,0,0,0,1516,1517,1,0,0,0,1517,1589,1,0,0,0,1518,1519, + 5,138,0,0,1519,1521,5,226,0,0,1520,1522,3,416,208,0,1521,1520,1, + 0,0,0,1521,1522,1,0,0,0,1522,1523,1,0,0,0,1523,1526,3,784,392,0, + 1524,1527,3,78,39,0,1525,1527,3,82,41,0,1526,1524,1,0,0,0,1526,1525, + 1,0,0,0,1527,1589,1,0,0,0,1528,1529,5,138,0,0,1529,1530,5,226,0, + 0,1530,1531,5,30,0,0,1531,1532,5,68,0,0,1532,1536,3,170,85,0,1533, + 1534,5,281,0,0,1534,1535,5,147,0,0,1535,1537,3,824,412,0,1536,1533, + 1,0,0,0,1536,1537,1,0,0,0,1537,1538,1,0,0,0,1538,1539,5,333,0,0, + 1539,1541,3,170,85,0,1540,1542,5,272,0,0,1541,1540,1,0,0,0,1541, + 1542,1,0,0,0,1542,1589,1,0,0,0,1543,1544,5,138,0,0,1544,1546,5,328, + 0,0,1545,1547,3,416,208,0,1546,1545,1,0,0,0,1546,1547,1,0,0,0,1547, + 1548,1,0,0,0,1548,1549,3,784,392,0,1549,1550,3,78,39,0,1550,1589, + 1,0,0,0,1551,1553,5,138,0,0,1552,1554,5,259,0,0,1553,1552,1,0,0, + 0,1553,1554,1,0,0,0,1554,1555,1,0,0,0,1555,1557,5,376,0,0,1556,1558, + 3,416,208,0,1557,1556,1,0,0,0,1557,1558,1,0,0,0,1558,1559,1,0,0, + 0,1559,1560,3,782,391,0,1560,1561,3,78,39,0,1561,1589,1,0,0,0,1562, + 1563,5,138,0,0,1563,1564,5,259,0,0,1564,1565,5,376,0,0,1565,1566, + 5,30,0,0,1566,1567,5,68,0,0,1567,1571,3,170,85,0,1568,1569,5,281, + 0,0,1569,1570,5,147,0,0,1570,1572,3,824,412,0,1571,1568,1,0,0,0, + 1571,1572,1,0,0,0,1572,1573,1,0,0,0,1573,1574,5,333,0,0,1574,1575, + 5,351,0,0,1575,1577,3,774,387,0,1576,1578,5,272,0,0,1577,1576,1, + 0,0,0,1577,1578,1,0,0,0,1578,1589,1,0,0,0,1579,1580,5,138,0,0,1580, + 1581,5,63,0,0,1581,1583,5,92,0,0,1582,1584,3,416,208,0,1583,1582, + 1,0,0,0,1583,1584,1,0,0,0,1584,1585,1,0,0,0,1585,1586,3,620,310, + 0,1586,1587,3,78,39,0,1587,1589,1,0,0,0,1588,1471,1,0,0,0,1588,1481, + 1,0,0,0,1588,1497,1,0,0,0,1588,1506,1,0,0,0,1588,1518,1,0,0,0,1588, + 1528,1,0,0,0,1588,1543,1,0,0,0,1588,1551,1,0,0,0,1588,1562,1,0,0, + 0,1588,1579,1,0,0,0,1589,77,1,0,0,0,1590,1595,3,84,42,0,1591,1592, + 5,6,0,0,1592,1594,3,84,42,0,1593,1591,1,0,0,0,1594,1597,1,0,0,0, + 1595,1593,1,0,0,0,1595,1596,1,0,0,0,1596,79,1,0,0,0,1597,1595,1, + 0,0,0,1598,1599,3,82,41,0,1599,1600,3,98,49,0,1600,1605,1,0,0,0, + 1601,1602,5,436,0,0,1602,1603,5,285,0,0,1603,1605,3,784,392,0,1604, + 1598,1,0,0,0,1604,1601,1,0,0,0,1605,81,1,0,0,0,1606,1607,5,435,0, + 0,1607,1608,5,285,0,0,1608,1609,3,784,392,0,1609,83,1,0,0,0,1610, + 1613,5,133,0,0,1611,1612,5,45,0,0,1612,1614,3,826,413,0,1613,1611, + 1,0,0,0,1613,1614,1,0,0,0,1614,1615,1,0,0,0,1615,1844,3,136,68,0, + 1616,1617,5,138,0,0,1617,1618,5,45,0,0,1618,1622,3,826,413,0,1619, + 1621,3,266,133,0,1620,1619,1,0,0,0,1621,1624,1,0,0,0,1622,1620,1, + 0,0,0,1622,1623,1,0,0,0,1623,1844,1,0,0,0,1624,1622,1,0,0,0,1625, + 1626,5,372,0,0,1626,1627,5,45,0,0,1627,1844,3,826,413,0,1628,1629, + 5,191,0,0,1629,1631,5,45,0,0,1630,1632,3,416,208,0,1631,1630,1,0, + 0,0,1631,1632,1,0,0,0,1632,1633,1,0,0,0,1633,1635,3,826,413,0,1634, + 1636,3,88,44,0,1635,1634,1,0,0,0,1635,1636,1,0,0,0,1636,1844,1,0, + 0,0,1637,1638,5,333,0,0,1638,1639,5,379,0,0,1639,1844,7,12,0,0,1640, + 1641,5,158,0,0,1641,1642,5,80,0,0,1642,1844,3,826,413,0,1643,1644, + 5,333,0,0,1644,1844,7,13,0,0,1645,1647,5,193,0,0,1646,1648,7,14, + 0,0,1647,1646,1,0,0,0,1647,1648,1,0,0,0,1648,1649,1,0,0,0,1649,1844, + 5,357,0,0,1650,1651,5,186,0,0,1651,1655,5,357,0,0,1652,1656,5,30, + 0,0,1653,1656,5,99,0,0,1654,1656,3,826,413,0,1655,1652,1,0,0,0,1655, + 1653,1,0,0,0,1655,1654,1,0,0,0,1656,1844,1,0,0,0,1657,1658,5,193, + 0,0,1658,1659,7,14,0,0,1659,1660,5,321,0,0,1660,1844,3,826,413,0, + 1661,1662,5,186,0,0,1662,1663,5,321,0,0,1663,1844,3,826,413,0,1664, + 1666,5,269,0,0,1665,1664,1,0,0,0,1665,1666,1,0,0,0,1666,1667,1,0, + 0,0,1667,1668,5,228,0,0,1668,1844,3,784,392,0,1669,1670,5,275,0, + 0,1670,1844,3,310,155,0,1671,1672,5,77,0,0,1672,1844,5,275,0,0,1673, + 1674,5,282,0,0,1674,1675,5,94,0,0,1675,1844,3,822,411,0,1676,1677, + 5,333,0,0,1677,1678,5,351,0,0,1678,1844,3,774,387,0,1679,1680,5, + 312,0,0,1680,1685,5,219,0,0,1681,1686,5,270,0,0,1682,1686,5,113, + 0,0,1683,1686,5,53,0,0,1684,1686,3,174,87,0,1685,1681,1,0,0,0,1685, + 1682,1,0,0,0,1685,1683,1,0,0,0,1685,1684,1,0,0,0,1686,1844,1,0,0, + 0,1687,1694,5,193,0,0,1688,1694,5,186,0,0,1689,1691,5,269,0,0,1690, + 1689,1,0,0,0,1690,1691,1,0,0,0,1691,1692,1,0,0,0,1692,1694,5,209, + 0,0,1693,1687,1,0,0,0,1693,1688,1,0,0,0,1693,1690,1,0,0,0,1694,1695, + 1,0,0,0,1695,1696,5,414,0,0,1696,1697,5,251,0,0,1697,1844,5,327, + 0,0,1698,1700,5,191,0,0,1699,1701,5,44,0,0,1700,1699,1,0,0,0,1700, + 1701,1,0,0,0,1701,1703,1,0,0,0,1702,1704,3,416,208,0,1703,1702,1, + 0,0,0,1703,1704,1,0,0,0,1704,1705,1,0,0,0,1705,1707,3,806,403,0, + 1706,1708,3,88,44,0,1707,1706,1,0,0,0,1707,1708,1,0,0,0,1708,1844, + 1,0,0,0,1709,1711,5,133,0,0,1710,1712,5,44,0,0,1711,1710,1,0,0,0, + 1711,1712,1,0,0,0,1712,1714,1,0,0,0,1713,1715,3,288,144,0,1714,1713, + 1,0,0,0,1714,1715,1,0,0,0,1715,1716,1,0,0,0,1716,1844,3,126,63,0, + 1717,1719,5,138,0,0,1718,1720,5,44,0,0,1719,1718,1,0,0,0,1719,1720, + 1,0,0,0,1720,1721,1,0,0,0,1721,1724,3,806,403,0,1722,1725,3,86,43, + 0,1723,1725,3,216,108,0,1724,1722,1,0,0,0,1724,1723,1,0,0,0,1725, + 1844,1,0,0,0,1726,1728,5,138,0,0,1727,1729,5,44,0,0,1728,1727,1, + 0,0,0,1728,1729,1,0,0,0,1729,1730,1,0,0,0,1730,1731,3,806,403,0, + 1731,1732,7,15,0,0,1732,1733,5,77,0,0,1733,1734,5,78,0,0,1734,1844, + 1,0,0,0,1735,1737,5,138,0,0,1736,1738,5,44,0,0,1737,1736,1,0,0,0, + 1737,1738,1,0,0,0,1738,1739,1,0,0,0,1739,1740,3,806,403,0,1740,1741, + 5,191,0,0,1741,1743,5,437,0,0,1742,1744,3,416,208,0,1743,1742,1, + 0,0,0,1743,1744,1,0,0,0,1744,1844,1,0,0,0,1745,1747,5,138,0,0,1746, + 1748,5,44,0,0,1747,1746,1,0,0,0,1747,1748,1,0,0,0,1748,1749,1,0, + 0,0,1749,1750,3,806,403,0,1750,1751,5,333,0,0,1751,1752,5,342,0, + 0,1752,1753,3,820,410,0,1753,1844,1,0,0,0,1754,1756,5,138,0,0,1755, + 1757,5,44,0,0,1756,1755,1,0,0,0,1756,1757,1,0,0,0,1757,1758,1,0, + 0,0,1758,1760,3,806,403,0,1759,1754,1,0,0,0,1759,1760,1,0,0,0,1760, + 1761,1,0,0,0,1761,1762,7,16,0,0,1762,1844,3,92,46,0,1763,1765,5, + 138,0,0,1764,1766,5,44,0,0,1765,1764,1,0,0,0,1765,1766,1,0,0,0,1766, + 1767,1,0,0,0,1767,1768,3,806,403,0,1768,1769,5,333,0,0,1769,1770, + 5,345,0,0,1770,1771,3,826,413,0,1771,1844,1,0,0,0,1772,1774,5,138, + 0,0,1773,1775,5,44,0,0,1774,1773,1,0,0,0,1774,1775,1,0,0,0,1775, + 1776,1,0,0,0,1776,1777,3,806,403,0,1777,1778,5,133,0,0,1778,1779, + 5,438,0,0,1779,1780,3,132,66,0,1780,1781,5,36,0,0,1781,1790,5,219, + 0,0,1782,1784,5,2,0,0,1783,1785,3,194,97,0,1784,1783,1,0,0,0,1785, + 1786,1,0,0,0,1786,1784,1,0,0,0,1786,1787,1,0,0,0,1787,1788,1,0,0, + 0,1788,1789,5,3,0,0,1789,1791,1,0,0,0,1790,1782,1,0,0,0,1790,1791, + 1,0,0,0,1791,1844,1,0,0,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,1810, + 3,806,403,0,1797,1802,5,314,0,0,1798,1800,5,105,0,0,1799,1798,1, + 0,0,0,1799,1800,1,0,0,0,1800,1801,1,0,0,0,1801,1803,3,196,98,0,1802, + 1799,1,0,0,0,1802,1803,1,0,0,0,1803,1811,1,0,0,0,1804,1808,5,333, + 0,0,1805,1809,3,194,97,0,1806,1807,5,438,0,0,1807,1809,3,132,66, + 0,1808,1805,1,0,0,0,1808,1806,1,0,0,0,1809,1811,1,0,0,0,1810,1797, + 1,0,0,0,1810,1804,1,0,0,0,1811,1812,1,0,0,0,1812,1810,1,0,0,0,1812, + 1813,1,0,0,0,1813,1844,1,0,0,0,1814,1816,5,138,0,0,1815,1817,5,44, + 0,0,1816,1815,1,0,0,0,1816,1817,1,0,0,0,1817,1818,1,0,0,0,1818,1819, + 3,806,403,0,1819,1820,5,191,0,0,1820,1822,5,219,0,0,1821,1823,3, + 416,208,0,1822,1821,1,0,0,0,1822,1823,1,0,0,0,1823,1844,1,0,0,0, + 1824,1826,5,138,0,0,1825,1827,5,44,0,0,1826,1825,1,0,0,0,1826,1827, + 1,0,0,0,1827,1828,1,0,0,0,1828,1831,3,806,403,0,1829,1830,5,333, + 0,0,1830,1832,5,174,0,0,1831,1829,1,0,0,0,1831,1832,1,0,0,0,1832, + 1833,1,0,0,0,1833,1834,5,360,0,0,1834,1836,3,648,324,0,1835,1837, + 3,90,45,0,1836,1835,1,0,0,0,1836,1837,1,0,0,0,1837,1840,1,0,0,0, + 1838,1839,5,100,0,0,1839,1841,3,670,335,0,1840,1838,1,0,0,0,1840, + 1841,1,0,0,0,1841,1844,1,0,0,0,1842,1844,3,216,108,0,1843,1610,1, + 0,0,0,1843,1616,1,0,0,0,1843,1625,1,0,0,0,1843,1628,1,0,0,0,1843, + 1637,1,0,0,0,1843,1640,1,0,0,0,1843,1643,1,0,0,0,1843,1645,1,0,0, + 0,1843,1650,1,0,0,0,1843,1657,1,0,0,0,1843,1661,1,0,0,0,1843,1665, + 1,0,0,0,1843,1669,1,0,0,0,1843,1671,1,0,0,0,1843,1673,1,0,0,0,1843, + 1676,1,0,0,0,1843,1679,1,0,0,0,1843,1693,1,0,0,0,1843,1698,1,0,0, + 0,1843,1709,1,0,0,0,1843,1717,1,0,0,0,1843,1726,1,0,0,0,1843,1735, + 1,0,0,0,1843,1745,1,0,0,0,1843,1759,1,0,0,0,1843,1763,1,0,0,0,1843, + 1772,1,0,0,0,1843,1792,1,0,0,0,1843,1814,1,0,0,0,1843,1824,1,0,0, + 0,1843,1842,1,0,0,0,1844,85,1,0,0,0,1845,1846,5,333,0,0,1846,1847, + 5,53,0,0,1847,1851,3,670,335,0,1848,1849,5,191,0,0,1849,1851,5,53, + 0,0,1850,1845,1,0,0,0,1850,1848,1,0,0,0,1851,87,1,0,0,0,1852,1853, + 7,17,0,0,1853,89,1,0,0,0,1854,1855,5,43,0,0,1855,1856,3,310,155, + 0,1856,91,1,0,0,0,1857,1858,5,2,0,0,1858,1863,3,96,48,0,1859,1860, + 5,6,0,0,1860,1862,3,96,48,0,1861,1859,1,0,0,0,1862,1865,1,0,0,0, + 1863,1861,1,0,0,0,1863,1864,1,0,0,0,1864,1866,1,0,0,0,1865,1863, + 1,0,0,0,1866,1867,5,3,0,0,1867,93,1,0,0,0,1868,1869,5,105,0,0,1869, + 1870,3,92,46,0,1870,95,1,0,0,0,1871,1876,3,832,416,0,1872,1873,5, + 10,0,0,1873,1877,3,282,141,0,1874,1875,5,11,0,0,1875,1877,3,280, + 140,0,1876,1872,1,0,0,0,1876,1874,1,0,0,0,1876,1877,1,0,0,0,1877, + 97,1,0,0,0,1878,1879,5,62,0,0,1879,1880,5,422,0,0,1880,1881,5,105, + 0,0,1881,1882,5,2,0,0,1882,1883,5,533,0,0,1883,1884,3,196,98,0,1884, + 1885,5,6,0,0,1885,1886,5,534,0,0,1886,1887,3,196,98,0,1887,1888, + 5,3,0,0,1888,1902,1,0,0,0,1889,1890,5,62,0,0,1890,1891,5,422,0,0, + 1891,1892,5,68,0,0,1892,1902,3,528,264,0,1893,1894,5,62,0,0,1894, + 1895,5,422,0,0,1895,1896,5,64,0,0,1896,1897,3,528,264,0,1897,1898, + 5,94,0,0,1898,1899,3,528,264,0,1899,1902,1,0,0,0,1900,1902,5,53, + 0,0,1901,1878,1,0,0,0,1901,1889,1,0,0,0,1901,1893,1,0,0,0,1901,1900, + 1,0,0,0,1902,99,1,0,0,0,1903,1904,5,138,0,0,1904,1905,5,360,0,0, + 1905,1906,3,310,155,0,1906,1911,3,102,51,0,1907,1908,5,6,0,0,1908, + 1910,3,102,51,0,1909,1907,1,0,0,0,1910,1913,1,0,0,0,1911,1909,1, + 0,0,0,1911,1912,1,0,0,0,1912,101,1,0,0,0,1913,1911,1,0,0,0,1914, + 1915,5,133,0,0,1915,1916,5,143,0,0,1916,1918,3,640,320,0,1917,1919, + 3,88,44,0,1918,1917,1,0,0,0,1918,1919,1,0,0,0,1919,1945,1,0,0,0, + 1920,1921,5,191,0,0,1921,1923,5,143,0,0,1922,1924,3,416,208,0,1923, + 1922,1,0,0,0,1923,1924,1,0,0,0,1924,1925,1,0,0,0,1925,1927,3,826, + 413,0,1926,1928,3,88,44,0,1927,1926,1,0,0,0,1927,1928,1,0,0,0,1928, + 1945,1,0,0,0,1929,1930,5,138,0,0,1930,1931,5,143,0,0,1931,1934,3, + 826,413,0,1932,1933,5,333,0,0,1933,1935,5,174,0,0,1934,1932,1,0, + 0,0,1934,1935,1,0,0,0,1935,1936,1,0,0,0,1936,1937,5,360,0,0,1937, + 1939,3,648,324,0,1938,1940,3,90,45,0,1939,1938,1,0,0,0,1939,1940, + 1,0,0,0,1940,1942,1,0,0,0,1941,1943,3,88,44,0,1942,1941,1,0,0,0, + 1942,1943,1,0,0,0,1943,1945,1,0,0,0,1944,1914,1,0,0,0,1944,1920, + 1,0,0,0,1944,1929,1,0,0,0,1945,103,1,0,0,0,1946,1949,5,157,0,0,1947, + 1950,3,826,413,0,1948,1950,5,30,0,0,1949,1947,1,0,0,0,1949,1948, + 1,0,0,0,1950,105,1,0,0,0,1951,1953,5,169,0,0,1952,1954,5,107,0,0, + 1953,1952,1,0,0,0,1953,1954,1,0,0,0,1954,1955,1,0,0,0,1955,1957, + 3,778,389,0,1956,1958,3,138,69,0,1957,1956,1,0,0,0,1957,1958,1,0, + 0,0,1958,1959,1,0,0,0,1959,1961,7,18,0,0,1960,1962,5,297,0,0,1961, + 1960,1,0,0,0,1961,1962,1,0,0,0,1962,1966,1,0,0,0,1963,1967,3,816, + 408,0,1964,1967,5,343,0,0,1965,1967,5,344,0,0,1966,1963,1,0,0,0, + 1966,1964,1,0,0,0,1966,1965,1,0,0,0,1967,1973,1,0,0,0,1968,1970, + 5,100,0,0,1969,1968,1,0,0,0,1969,1970,1,0,0,0,1970,1971,1,0,0,0, + 1971,1972,5,184,0,0,1972,1974,3,816,408,0,1973,1969,1,0,0,0,1973, + 1974,1,0,0,0,1974,1976,1,0,0,0,1975,1977,5,105,0,0,1976,1975,1,0, + 0,0,1976,1977,1,0,0,0,1977,1978,1,0,0,0,1978,1980,3,110,55,0,1979, + 1981,3,634,317,0,1980,1979,1,0,0,0,1980,1981,1,0,0,0,1981,2001,1, + 0,0,0,1982,1983,5,169,0,0,1983,1984,5,2,0,0,1984,1985,3,524,262, + 0,1985,1986,5,3,0,0,1986,1988,5,94,0,0,1987,1989,5,297,0,0,1988, + 1987,1,0,0,0,1988,1989,1,0,0,0,1989,1993,1,0,0,0,1990,1994,3,816, + 408,0,1991,1994,5,343,0,0,1992,1994,5,344,0,0,1993,1990,1,0,0,0, + 1993,1991,1,0,0,0,1993,1992,1,0,0,0,1994,1996,1,0,0,0,1995,1997, + 5,105,0,0,1996,1995,1,0,0,0,1996,1997,1,0,0,0,1997,1998,1,0,0,0, + 1998,1999,3,110,55,0,1999,2001,1,0,0,0,2000,1951,1,0,0,0,2000,1982, + 1,0,0,0,2001,107,1,0,0,0,2002,2045,5,107,0,0,2003,2045,5,112,0,0, + 2004,2006,7,19,0,0,2005,2007,5,36,0,0,2006,2005,1,0,0,0,2006,2007, + 1,0,0,0,2007,2008,1,0,0,0,2008,2045,3,816,408,0,2009,2045,5,171, + 0,0,2010,2045,5,216,0,0,2011,2012,5,209,0,0,2012,2015,5,298,0,0, + 2013,2016,3,142,71,0,2014,2016,5,9,0,0,2015,2013,1,0,0,0,2015,2014, + 1,0,0,0,2016,2045,1,0,0,0,2017,2019,5,209,0,0,2018,2020,5,77,0,0, + 2019,2018,1,0,0,0,2019,2020,1,0,0,0,2020,2021,1,0,0,0,2021,2022, + 5,78,0,0,2022,2045,3,142,71,0,2023,2024,5,194,0,0,2024,2045,3,816, + 408,0,2025,2042,7,20,0,0,2026,2029,5,2,0,0,2027,2030,3,142,71,0, + 2028,2030,5,9,0,0,2029,2027,1,0,0,0,2029,2028,1,0,0,0,2030,2038, + 1,0,0,0,2031,2034,5,6,0,0,2032,2035,3,142,71,0,2033,2035,5,9,0,0, + 2034,2032,1,0,0,0,2034,2033,1,0,0,0,2035,2037,1,0,0,0,2036,2031, + 1,0,0,0,2037,2040,1,0,0,0,2038,2036,1,0,0,0,2038,2039,1,0,0,0,2039, + 2041,1,0,0,0,2040,2038,1,0,0,0,2041,2043,5,3,0,0,2042,2026,1,0,0, + 0,2042,2043,1,0,0,0,2043,2045,1,0,0,0,2044,2002,1,0,0,0,2044,2003, + 1,0,0,0,2044,2004,1,0,0,0,2044,2009,1,0,0,0,2044,2010,1,0,0,0,2044, + 2011,1,0,0,0,2044,2017,1,0,0,0,2044,2023,1,0,0,0,2044,2025,1,0,0, + 0,2045,2048,1,0,0,0,2046,2044,1,0,0,0,2046,2047,1,0,0,0,2047,109, + 1,0,0,0,2048,2046,1,0,0,0,2049,2068,3,108,54,0,2050,2053,5,2,0,0, + 2051,2054,3,108,54,0,2052,2054,3,112,56,0,2053,2051,1,0,0,0,2053, + 2052,1,0,0,0,2054,2062,1,0,0,0,2055,2058,5,6,0,0,2056,2059,3,108, + 54,0,2057,2059,3,112,56,0,2058,2056,1,0,0,0,2058,2057,1,0,0,0,2059, + 2061,1,0,0,0,2060,2055,1,0,0,0,2061,2064,1,0,0,0,2062,2060,1,0,0, + 0,2062,2063,1,0,0,0,2063,2065,1,0,0,0,2064,2062,1,0,0,0,2065,2066, + 5,3,0,0,2066,2068,1,0,0,0,2067,2049,1,0,0,0,2067,2050,1,0,0,0,2068, + 111,1,0,0,0,2069,2084,3,832,416,0,2070,2085,3,54,27,0,2071,2085, + 3,196,98,0,2072,2085,5,9,0,0,2073,2074,5,2,0,0,2074,2079,3,52,26, + 0,2075,2076,5,6,0,0,2076,2078,3,52,26,0,2077,2075,1,0,0,0,2078,2081, + 1,0,0,0,2079,2077,1,0,0,0,2079,2080,1,0,0,0,2080,2082,1,0,0,0,2081, + 2079,1,0,0,0,2082,2083,5,3,0,0,2083,2085,1,0,0,0,2084,2070,1,0,0, + 0,2084,2071,1,0,0,0,2084,2072,1,0,0,0,2084,2073,1,0,0,0,2084,2085, + 1,0,0,0,2085,113,1,0,0,0,2086,2088,5,46,0,0,2087,2089,3,116,58,0, + 2088,2087,1,0,0,0,2088,2089,1,0,0,0,2089,2090,1,0,0,0,2090,2092, + 5,92,0,0,2091,2093,3,288,144,0,2092,2091,1,0,0,0,2092,2093,1,0,0, + 0,2093,2094,1,0,0,0,2094,2160,3,776,388,0,2095,2097,5,2,0,0,2096, + 2098,3,120,60,0,2097,2096,1,0,0,0,2097,2098,1,0,0,0,2098,2099,1, + 0,0,0,2099,2101,5,3,0,0,2100,2102,3,158,79,0,2101,2100,1,0,0,0,2101, + 2102,1,0,0,0,2102,2104,1,0,0,0,2103,2105,3,160,80,0,2104,2103,1, + 0,0,0,2104,2105,1,0,0,0,2105,2107,1,0,0,0,2106,2108,3,164,82,0,2107, + 2106,1,0,0,0,2107,2108,1,0,0,0,2108,2110,1,0,0,0,2109,2111,3,166, + 83,0,2110,2109,1,0,0,0,2110,2111,1,0,0,0,2111,2113,1,0,0,0,2112, + 2114,3,168,84,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, + 2161,1,0,0,0,2118,2119,5,275,0,0,2119,2121,3,310,155,0,2120,2122, + 3,118,59,0,2121,2120,1,0,0,0,2121,2122,1,0,0,0,2122,2124,1,0,0,0, + 2123,2125,3,160,80,0,2124,2123,1,0,0,0,2124,2125,1,0,0,0,2125,2127, + 1,0,0,0,2126,2128,3,164,82,0,2127,2126,1,0,0,0,2127,2128,1,0,0,0, + 2128,2130,1,0,0,0,2129,2131,3,166,83,0,2130,2129,1,0,0,0,2130,2131, + 1,0,0,0,2131,2133,1,0,0,0,2132,2134,3,168,84,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,2161,1,0,0,0,2138,2139,5,285,0,0, + 2139,2140,5,275,0,0,2140,2142,3,784,392,0,2141,2143,3,118,59,0,2142, + 2141,1,0,0,0,2142,2143,1,0,0,0,2143,2144,1,0,0,0,2144,2146,3,98, + 49,0,2145,2147,3,160,80,0,2146,2145,1,0,0,0,2146,2147,1,0,0,0,2147, + 2149,1,0,0,0,2148,2150,3,164,82,0,2149,2148,1,0,0,0,2149,2150,1, + 0,0,0,2150,2152,1,0,0,0,2151,2153,3,166,83,0,2152,2151,1,0,0,0,2152, + 2153,1,0,0,0,2153,2155,1,0,0,0,2154,2156,3,168,84,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,2095,1,0,0, + 0,2160,2118,1,0,0,0,2160,2138,1,0,0,0,2161,115,1,0,0,0,2162,2168, + 5,354,0,0,2163,2168,5,352,0,0,2164,2165,7,21,0,0,2165,2168,7,22, + 0,0,2166,2168,5,367,0,0,2167,2162,1,0,0,0,2167,2163,1,0,0,0,2167, + 2164,1,0,0,0,2167,2166,1,0,0,0,2168,117,1,0,0,0,2169,2170,5,2,0, + 0,2170,2175,3,124,62,0,2171,2172,5,6,0,0,2172,2174,3,124,62,0,2173, + 2171,1,0,0,0,2174,2177,1,0,0,0,2175,2173,1,0,0,0,2175,2176,1,0,0, + 0,2176,2178,1,0,0,0,2177,2175,1,0,0,0,2178,2179,5,3,0,0,2179,119, + 1,0,0,0,2180,2185,3,122,61,0,2181,2182,5,6,0,0,2182,2184,3,122,61, + 0,2183,2181,1,0,0,0,2184,2187,1,0,0,0,2185,2183,1,0,0,0,2185,2186, + 1,0,0,0,2186,121,1,0,0,0,2187,2185,1,0,0,0,2188,2189,5,45,0,0,2189, + 2191,3,826,413,0,2190,2188,1,0,0,0,2190,2191,1,0,0,0,2191,2192,1, + 0,0,0,2192,2204,3,136,68,0,2193,2204,3,126,63,0,2194,2195,5,120, + 0,0,2195,2200,3,784,392,0,2196,2197,7,23,0,0,2197,2199,3,134,67, + 0,2198,2196,1,0,0,0,2199,2202,1,0,0,0,2200,2198,1,0,0,0,2200,2201, + 1,0,0,0,2201,2204,1,0,0,0,2202,2200,1,0,0,0,2203,2190,1,0,0,0,2203, + 2193,1,0,0,0,2203,2194,1,0,0,0,2204,123,1,0,0,0,2205,2208,3,810, + 405,0,2206,2207,5,105,0,0,2207,2209,5,280,0,0,2208,2206,1,0,0,0, + 2208,2209,1,0,0,0,2209,2213,1,0,0,0,2210,2212,3,128,64,0,2211,2210, + 1,0,0,0,2212,2215,1,0,0,0,2213,2211,1,0,0,0,2213,2214,1,0,0,0,2214, + 2222,1,0,0,0,2215,2213,1,0,0,0,2216,2217,5,45,0,0,2217,2219,3,826, + 413,0,2218,2216,1,0,0,0,2218,2219,1,0,0,0,2219,2220,1,0,0,0,2220, + 2222,3,136,68,0,2221,2205,1,0,0,0,2221,2218,1,0,0,0,2222,125,1,0, + 0,0,2223,2224,3,810,405,0,2224,2226,3,648,324,0,2225,2227,3,214, + 107,0,2226,2225,1,0,0,0,2226,2227,1,0,0,0,2227,2237,1,0,0,0,2228, + 2235,5,345,0,0,2229,2236,5,544,0,0,2230,2236,5,205,0,0,2231,2236, + 5,545,0,0,2232,2236,5,546,0,0,2233,2236,5,53,0,0,2234,2236,3,826, + 413,0,2235,2229,1,0,0,0,2235,2230,1,0,0,0,2235,2231,1,0,0,0,2235, + 2232,1,0,0,0,2235,2233,1,0,0,0,2235,2234,1,0,0,0,2236,2238,1,0,0, + 0,2237,2228,1,0,0,0,2237,2238,1,0,0,0,2238,2241,1,0,0,0,2239,2240, + 5,543,0,0,2240,2242,3,826,413,0,2241,2239,1,0,0,0,2241,2242,1,0, + 0,0,2242,2244,1,0,0,0,2243,2245,3,90,45,0,2244,2243,1,0,0,0,2244, + 2245,1,0,0,0,2245,2248,1,0,0,0,2246,2247,5,105,0,0,2247,2249,5,280, + 0,0,2248,2246,1,0,0,0,2248,2249,1,0,0,0,2249,2253,1,0,0,0,2250,2252, + 3,128,64,0,2251,2250,1,0,0,0,2252,2255,1,0,0,0,2253,2251,1,0,0,0, + 2253,2254,1,0,0,0,2254,127,1,0,0,0,2255,2253,1,0,0,0,2256,2257,5, + 45,0,0,2257,2259,3,826,413,0,2258,2256,1,0,0,0,2258,2259,1,0,0,0, + 2259,2260,1,0,0,0,2260,2265,3,130,65,0,2261,2263,5,77,0,0,2262,2261, + 1,0,0,0,2262,2263,1,0,0,0,2263,2264,1,0,0,0,2264,2266,5,54,0,0,2265, + 2262,1,0,0,0,2265,2266,1,0,0,0,2266,2269,1,0,0,0,2267,2268,5,69, + 0,0,2268,2270,7,9,0,0,2269,2267,1,0,0,0,2269,2270,1,0,0,0,2270,129, + 1,0,0,0,2271,2273,5,77,0,0,2272,2271,1,0,0,0,2272,2273,1,0,0,0,2273, + 2274,1,0,0,0,2274,2352,5,78,0,0,2275,2277,5,98,0,0,2276,2278,3,394, + 197,0,2277,2276,1,0,0,0,2277,2278,1,0,0,0,2278,2280,1,0,0,0,2279, + 2281,3,172,86,0,2280,2279,1,0,0,0,2280,2281,1,0,0,0,2281,2352,1, + 0,0,0,2282,2288,5,98,0,0,2283,2285,5,273,0,0,2284,2286,5,77,0,0, + 2285,2284,1,0,0,0,2285,2286,1,0,0,0,2286,2287,1,0,0,0,2287,2289, + 5,56,0,0,2288,2283,1,0,0,0,2288,2289,1,0,0,0,2289,2292,1,0,0,0,2290, + 2291,5,441,0,0,2291,2293,3,354,177,0,2292,2290,1,0,0,0,2292,2293, + 1,0,0,0,2293,2295,1,0,0,0,2294,2296,3,566,283,0,2295,2294,1,0,0, + 0,2295,2296,1,0,0,0,2296,2298,1,0,0,0,2297,2299,3,172,86,0,2298, + 2297,1,0,0,0,2298,2299,1,0,0,0,2299,2352,1,0,0,0,2300,2301,5,85, + 0,0,2301,2303,5,245,0,0,2302,2304,3,394,197,0,2303,2302,1,0,0,0, + 2303,2304,1,0,0,0,2304,2306,1,0,0,0,2305,2307,3,172,86,0,2306,2305, + 1,0,0,0,2306,2307,1,0,0,0,2307,2352,1,0,0,0,2308,2309,5,42,0,0,2309, + 2310,5,2,0,0,2310,2311,3,670,335,0,2311,2314,5,3,0,0,2312,2313,5, + 269,0,0,2313,2315,5,228,0,0,2314,2312,1,0,0,0,2314,2315,1,0,0,0, + 2315,2352,1,0,0,0,2316,2317,5,53,0,0,2317,2352,3,678,339,0,2318, + 2319,5,438,0,0,2319,2320,3,132,66,0,2320,2337,5,36,0,0,2321,2330, + 5,219,0,0,2322,2324,5,2,0,0,2323,2325,3,194,97,0,2324,2323,1,0,0, + 0,2325,2326,1,0,0,0,2326,2324,1,0,0,0,2326,2327,1,0,0,0,2327,2328, + 1,0,0,0,2328,2329,5,3,0,0,2329,2331,1,0,0,0,2330,2322,1,0,0,0,2330, + 2331,1,0,0,0,2331,2338,1,0,0,0,2332,2333,5,2,0,0,2333,2334,3,670, + 335,0,2334,2335,5,3,0,0,2335,2336,5,440,0,0,2336,2338,1,0,0,0,2337, + 2321,1,0,0,0,2337,2332,1,0,0,0,2338,2352,1,0,0,0,2339,2340,5,86, + 0,0,2340,2342,3,784,392,0,2341,2343,3,138,69,0,2342,2341,1,0,0,0, + 2342,2343,1,0,0,0,2343,2345,1,0,0,0,2344,2346,3,146,73,0,2345,2344, + 1,0,0,0,2345,2346,1,0,0,0,2346,2348,1,0,0,0,2347,2349,3,150,75,0, + 2348,2347,1,0,0,0,2348,2349,1,0,0,0,2349,2352,1,0,0,0,2350,2352, + 3,90,45,0,2351,2272,1,0,0,0,2351,2275,1,0,0,0,2351,2282,1,0,0,0, + 2351,2300,1,0,0,0,2351,2308,1,0,0,0,2351,2316,1,0,0,0,2351,2318, + 1,0,0,0,2351,2339,1,0,0,0,2351,2350,1,0,0,0,2352,131,1,0,0,0,2353, + 2357,5,139,0,0,2354,2355,5,147,0,0,2355,2357,5,53,0,0,2356,2353, + 1,0,0,0,2356,2354,1,0,0,0,2357,133,1,0,0,0,2358,2359,7,24,0,0,2359, + 135,1,0,0,0,2360,2361,5,42,0,0,2361,2362,5,2,0,0,2362,2363,3,670, + 335,0,2363,2367,5,3,0,0,2364,2366,3,266,133,0,2365,2364,1,0,0,0, + 2366,2369,1,0,0,0,2367,2365,1,0,0,0,2367,2368,1,0,0,0,2368,2457, + 1,0,0,0,2369,2367,1,0,0,0,2370,2374,5,98,0,0,2371,2372,5,85,0,0, + 2372,2374,5,245,0,0,2373,2370,1,0,0,0,2373,2371,1,0,0,0,2374,2398, + 1,0,0,0,2375,2377,3,138,69,0,2376,2378,3,144,72,0,2377,2376,1,0, + 0,0,2377,2378,1,0,0,0,2378,2380,1,0,0,0,2379,2381,3,394,197,0,2380, + 2379,1,0,0,0,2380,2381,1,0,0,0,2381,2383,1,0,0,0,2382,2384,3,172, + 86,0,2383,2382,1,0,0,0,2383,2384,1,0,0,0,2384,2388,1,0,0,0,2385, + 2387,3,266,133,0,2386,2385,1,0,0,0,2387,2390,1,0,0,0,2388,2386,1, + 0,0,0,2388,2389,1,0,0,0,2389,2399,1,0,0,0,2390,2388,1,0,0,0,2391, + 2395,3,174,87,0,2392,2394,3,266,133,0,2393,2392,1,0,0,0,2394,2397, + 1,0,0,0,2395,2393,1,0,0,0,2395,2396,1,0,0,0,2396,2399,1,0,0,0,2397, + 2395,1,0,0,0,2398,2375,1,0,0,0,2398,2391,1,0,0,0,2399,2457,1,0,0, + 0,2400,2402,5,199,0,0,2401,2403,3,164,82,0,2402,2401,1,0,0,0,2402, + 2403,1,0,0,0,2403,2404,1,0,0,0,2404,2405,5,2,0,0,2405,2410,3,148, + 74,0,2406,2407,5,6,0,0,2407,2409,3,148,74,0,2408,2406,1,0,0,0,2409, + 2412,1,0,0,0,2410,2408,1,0,0,0,2410,2411,1,0,0,0,2411,2413,1,0,0, + 0,2412,2410,1,0,0,0,2413,2415,5,3,0,0,2414,2416,3,144,72,0,2415, + 2414,1,0,0,0,2415,2416,1,0,0,0,2416,2418,1,0,0,0,2417,2419,3,394, + 197,0,2418,2417,1,0,0,0,2418,2419,1,0,0,0,2419,2421,1,0,0,0,2420, + 2422,3,172,86,0,2421,2420,1,0,0,0,2421,2422,1,0,0,0,2422,2428,1, + 0,0,0,2423,2424,5,103,0,0,2424,2425,5,2,0,0,2425,2426,3,670,335, + 0,2426,2427,5,3,0,0,2427,2429,1,0,0,0,2428,2423,1,0,0,0,2428,2429, + 1,0,0,0,2429,2433,1,0,0,0,2430,2432,3,266,133,0,2431,2430,1,0,0, + 0,2432,2435,1,0,0,0,2433,2431,1,0,0,0,2433,2434,1,0,0,0,2434,2457, + 1,0,0,0,2435,2433,1,0,0,0,2436,2437,5,63,0,0,2437,2438,5,245,0,0, + 2438,2439,3,138,69,0,2439,2440,5,86,0,0,2440,2442,3,784,392,0,2441, + 2443,3,138,69,0,2442,2441,1,0,0,0,2442,2443,1,0,0,0,2443,2445,1, + 0,0,0,2444,2446,3,146,73,0,2445,2444,1,0,0,0,2445,2446,1,0,0,0,2446, + 2448,1,0,0,0,2447,2449,3,150,75,0,2448,2447,1,0,0,0,2448,2449,1, + 0,0,0,2449,2453,1,0,0,0,2450,2452,3,266,133,0,2451,2450,1,0,0,0, + 2452,2455,1,0,0,0,2453,2451,1,0,0,0,2453,2454,1,0,0,0,2454,2457, + 1,0,0,0,2455,2453,1,0,0,0,2456,2360,1,0,0,0,2456,2373,1,0,0,0,2456, + 2400,1,0,0,0,2456,2436,1,0,0,0,2457,137,1,0,0,0,2458,2459,5,2,0, + 0,2459,2460,3,142,71,0,2460,2461,5,3,0,0,2461,139,1,0,0,0,2462,2463, + 5,2,0,0,2463,2468,3,810,405,0,2464,2465,5,6,0,0,2465,2467,3,810, + 405,0,2466,2464,1,0,0,0,2467,2470,1,0,0,0,2468,2466,1,0,0,0,2468, + 2469,1,0,0,0,2469,2471,1,0,0,0,2470,2468,1,0,0,0,2471,2472,5,3,0, + 0,2472,141,1,0,0,0,2473,2478,3,806,403,0,2474,2475,5,6,0,0,2475, + 2477,3,806,403,0,2476,2474,1,0,0,0,2477,2480,1,0,0,0,2478,2476,1, + 0,0,0,2478,2479,1,0,0,0,2479,143,1,0,0,0,2480,2478,1,0,0,0,2481, + 2482,5,441,0,0,2482,2483,3,138,69,0,2483,145,1,0,0,0,2484,2485,5, + 258,0,0,2485,2486,7,25,0,0,2486,147,1,0,0,0,2487,2488,3,356,178, + 0,2488,2495,5,105,0,0,2489,2496,3,408,204,0,2490,2491,5,278,0,0, + 2491,2492,5,2,0,0,2492,2493,3,408,204,0,2493,2494,5,3,0,0,2494,2496, + 1,0,0,0,2495,2489,1,0,0,0,2495,2490,1,0,0,0,2496,149,1,0,0,0,2497, + 2499,3,152,76,0,2498,2500,3,154,77,0,2499,2498,1,0,0,0,2499,2500, + 1,0,0,0,2500,2506,1,0,0,0,2501,2503,3,154,77,0,2502,2504,3,152,76, + 0,2503,2502,1,0,0,0,2503,2504,1,0,0,0,2504,2506,1,0,0,0,2505,2497, + 1,0,0,0,2505,2501,1,0,0,0,2506,151,1,0,0,0,2507,2508,5,80,0,0,2508, + 2509,5,369,0,0,2509,2510,3,156,78,0,2510,153,1,0,0,0,2511,2512,5, + 80,0,0,2512,2513,5,182,0,0,2513,2514,3,156,78,0,2514,155,1,0,0,0, + 2515,2516,5,269,0,0,2516,2525,5,132,0,0,2517,2525,5,315,0,0,2518, + 2525,5,150,0,0,2519,2520,5,333,0,0,2520,2522,7,26,0,0,2521,2523, + 3,142,71,0,2522,2521,1,0,0,0,2522,2523,1,0,0,0,2523,2525,1,0,0,0, + 2524,2515,1,0,0,0,2524,2517,1,0,0,0,2524,2518,1,0,0,0,2524,2519, + 1,0,0,0,2525,157,1,0,0,0,2526,2527,5,238,0,0,2527,2528,5,2,0,0,2528, + 2529,3,764,382,0,2529,2530,5,3,0,0,2530,159,1,0,0,0,2531,2532,5, + 285,0,0,2532,2533,5,147,0,0,2533,2534,3,826,413,0,2534,2535,5,2, + 0,0,2535,2540,3,162,81,0,2536,2537,5,6,0,0,2537,2539,3,162,81,0, + 2538,2536,1,0,0,0,2539,2542,1,0,0,0,2540,2538,1,0,0,0,2540,2541, + 1,0,0,0,2541,2543,1,0,0,0,2542,2540,1,0,0,0,2543,2544,5,3,0,0,2544, + 161,1,0,0,0,2545,2552,3,806,403,0,2546,2552,3,684,342,0,2547,2548, + 5,2,0,0,2548,2549,3,670,335,0,2549,2550,5,3,0,0,2550,2552,1,0,0, + 0,2551,2545,1,0,0,0,2551,2546,1,0,0,0,2551,2547,1,0,0,0,2552,2554, + 1,0,0,0,2553,2555,3,90,45,0,2554,2553,1,0,0,0,2554,2555,1,0,0,0, + 2555,2557,1,0,0,0,2556,2558,3,310,155,0,2557,2556,1,0,0,0,2557,2558, + 1,0,0,0,2558,163,1,0,0,0,2559,2560,5,100,0,0,2560,2561,3,826,413, + 0,2561,165,1,0,0,0,2562,2563,5,105,0,0,2563,2567,3,92,46,0,2564, + 2565,7,27,0,0,2565,2567,5,277,0,0,2566,2562,1,0,0,0,2566,2564,1, + 0,0,0,2567,167,1,0,0,0,2568,2569,5,80,0,0,2569,2575,5,161,0,0,2570, + 2576,5,191,0,0,2571,2572,5,182,0,0,2572,2576,5,320,0,0,2573,2574, + 5,292,0,0,2574,2576,5,320,0,0,2575,2570,1,0,0,0,2575,2571,1,0,0, + 0,2575,2573,1,0,0,0,2576,169,1,0,0,0,2577,2578,5,351,0,0,2578,2579, + 3,774,387,0,2579,171,1,0,0,0,2580,2581,5,100,0,0,2581,2582,5,226, + 0,0,2582,2583,3,170,85,0,2583,173,1,0,0,0,2584,2585,5,100,0,0,2585, + 2586,5,226,0,0,2586,2587,3,826,413,0,2587,175,1,0,0,0,2588,2589, + 5,46,0,0,2589,2594,5,342,0,0,2590,2592,3,288,144,0,2591,2590,1,0, + 0,0,2591,2592,1,0,0,0,2592,2593,1,0,0,0,2593,2595,3,310,155,0,2594, + 2591,1,0,0,0,2594,2595,1,0,0,0,2595,2597,1,0,0,0,2596,2598,3,138, + 69,0,2597,2596,1,0,0,0,2597,2598,1,0,0,0,2598,2599,1,0,0,0,2599, + 2609,5,80,0,0,2600,2605,3,734,367,0,2601,2602,5,6,0,0,2602,2604, + 3,734,367,0,2603,2601,1,0,0,0,2604,2607,1,0,0,0,2605,2603,1,0,0, + 0,2605,2606,1,0,0,0,2606,2610,1,0,0,0,2607,2605,1,0,0,0,2608,2610, + 3,728,364,0,2609,2600,1,0,0,0,2609,2608,1,0,0,0,2610,2611,1,0,0, + 0,2611,2612,3,604,302,0,2612,177,1,0,0,0,2613,2614,5,138,0,0,2614, + 2616,5,342,0,0,2615,2617,3,416,208,0,2616,2615,1,0,0,0,2616,2617, + 1,0,0,0,2617,2618,1,0,0,0,2618,2619,3,310,155,0,2619,2620,5,333, + 0,0,2620,2621,5,342,0,0,2621,2622,3,820,410,0,2622,179,1,0,0,0,2623, + 2625,5,46,0,0,2624,2626,3,116,58,0,2625,2624,1,0,0,0,2625,2626,1, + 0,0,0,2626,2627,1,0,0,0,2627,2629,5,92,0,0,2628,2630,3,288,144,0, + 2629,2628,1,0,0,0,2629,2630,1,0,0,0,2630,2631,1,0,0,0,2631,2632, + 3,182,91,0,2632,2633,5,36,0,0,2633,2635,3,554,277,0,2634,2636,3, + 184,92,0,2635,2634,1,0,0,0,2635,2636,1,0,0,0,2636,181,1,0,0,0,2637, + 2639,3,776,388,0,2638,2640,3,140,70,0,2639,2638,1,0,0,0,2639,2640, + 1,0,0,0,2640,2642,1,0,0,0,2641,2643,3,164,82,0,2642,2641,1,0,0,0, + 2642,2643,1,0,0,0,2643,2645,1,0,0,0,2644,2646,3,166,83,0,2645,2644, + 1,0,0,0,2645,2646,1,0,0,0,2646,2648,1,0,0,0,2647,2649,3,168,84,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,183,1,0,0,0, + 2653,2657,5,105,0,0,2654,2658,5,174,0,0,2655,2656,5,269,0,0,2656, + 2658,5,174,0,0,2657,2654,1,0,0,0,2657,2655,1,0,0,0,2658,185,1,0, + 0,0,2659,2661,5,46,0,0,2660,2662,5,367,0,0,2661,2660,1,0,0,0,2661, + 2662,1,0,0,0,2662,2663,1,0,0,0,2663,2664,5,259,0,0,2664,2666,5,376, + 0,0,2665,2667,3,288,144,0,2666,2665,1,0,0,0,2666,2667,1,0,0,0,2667, + 2668,1,0,0,0,2668,2670,3,780,390,0,2669,2671,3,140,70,0,2670,2669, + 1,0,0,0,2670,2671,1,0,0,0,2671,2673,1,0,0,0,2672,2674,3,164,82,0, + 2673,2672,1,0,0,0,2673,2674,1,0,0,0,2674,2676,1,0,0,0,2675,2677, + 3,94,47,0,2676,2675,1,0,0,0,2676,2677,1,0,0,0,2677,2679,1,0,0,0, + 2678,2680,3,170,85,0,2679,2678,1,0,0,0,2679,2680,1,0,0,0,2680,2681, + 1,0,0,0,2681,2682,5,36,0,0,2682,2684,3,554,277,0,2683,2685,3,184, + 92,0,2684,2683,1,0,0,0,2684,2685,1,0,0,0,2685,187,1,0,0,0,2686,2687, + 5,305,0,0,2687,2688,5,259,0,0,2688,2690,5,376,0,0,2689,2691,5,109, + 0,0,2690,2689,1,0,0,0,2690,2691,1,0,0,0,2691,2692,1,0,0,0,2692,2694, + 3,782,391,0,2693,2695,3,184,92,0,2694,2693,1,0,0,0,2694,2695,1,0, + 0,0,2695,189,1,0,0,0,2696,2698,5,46,0,0,2697,2699,3,116,58,0,2698, + 2697,1,0,0,0,2698,2699,1,0,0,0,2699,2700,1,0,0,0,2700,2702,5,328, + 0,0,2701,2703,3,288,144,0,2702,2701,1,0,0,0,2702,2703,1,0,0,0,2703, + 2704,1,0,0,0,2704,2710,3,784,392,0,2705,2707,3,194,97,0,2706,2705, + 1,0,0,0,2707,2708,1,0,0,0,2708,2706,1,0,0,0,2708,2709,1,0,0,0,2709, + 2711,1,0,0,0,2710,2706,1,0,0,0,2710,2711,1,0,0,0,2711,191,1,0,0, + 0,2712,2713,5,138,0,0,2713,2715,5,328,0,0,2714,2716,3,416,208,0, + 2715,2714,1,0,0,0,2715,2716,1,0,0,0,2716,2717,1,0,0,0,2717,2719, + 3,784,392,0,2718,2720,3,194,97,0,2719,2718,1,0,0,0,2720,2721,1,0, + 0,0,2721,2719,1,0,0,0,2721,2722,1,0,0,0,2722,193,1,0,0,0,2723,2724, + 5,36,0,0,2724,2757,3,650,325,0,2725,2727,5,148,0,0,2726,2728,3,196, + 98,0,2727,2726,1,0,0,0,2727,2728,1,0,0,0,2728,2757,1,0,0,0,2729, + 2731,5,225,0,0,2730,2732,5,147,0,0,2731,2730,1,0,0,0,2731,2732,1, + 0,0,0,2732,2733,1,0,0,0,2733,2757,3,196,98,0,2734,2735,7,28,0,0, + 2735,2757,3,196,98,0,2736,2737,5,269,0,0,2737,2757,7,29,0,0,2738, + 2739,5,281,0,0,2739,2740,5,147,0,0,2740,2757,3,806,403,0,2741,2742, + 5,328,0,0,2742,2743,5,266,0,0,2743,2757,3,310,155,0,2744,2746,5, + 340,0,0,2745,2747,5,105,0,0,2746,2745,1,0,0,0,2746,2747,1,0,0,0, + 2747,2748,1,0,0,0,2748,2757,3,196,98,0,2749,2751,5,314,0,0,2750, + 2752,5,105,0,0,2751,2750,1,0,0,0,2751,2752,1,0,0,0,2752,2754,1,0, + 0,0,2753,2755,3,196,98,0,2754,2753,1,0,0,0,2754,2755,1,0,0,0,2755, + 2757,1,0,0,0,2756,2723,1,0,0,0,2756,2725,1,0,0,0,2756,2729,1,0,0, + 0,2756,2734,1,0,0,0,2756,2736,1,0,0,0,2756,2738,1,0,0,0,2756,2741, + 1,0,0,0,2756,2744,1,0,0,0,2756,2749,1,0,0,0,2757,195,1,0,0,0,2758, + 2760,7,30,0,0,2759,2758,1,0,0,0,2759,2760,1,0,0,0,2760,2761,1,0, + 0,0,2761,2764,5,576,0,0,2762,2764,3,820,410,0,2763,2759,1,0,0,0, + 2763,2762,1,0,0,0,2764,197,1,0,0,0,2765,2767,5,46,0,0,2766,2768, + 3,360,180,0,2767,2766,1,0,0,0,2767,2768,1,0,0,0,2768,2770,1,0,0, + 0,2769,2771,5,359,0,0,2770,2769,1,0,0,0,2770,2771,1,0,0,0,2771,2773, + 1,0,0,0,2772,2774,5,295,0,0,2773,2772,1,0,0,0,2773,2774,1,0,0,0, + 2774,2775,1,0,0,0,2775,2776,5,247,0,0,2776,2789,3,826,413,0,2777, + 2778,5,215,0,0,2778,2781,3,310,155,0,2779,2780,5,239,0,0,2780,2782, + 3,310,155,0,2781,2779,1,0,0,0,2781,2782,1,0,0,0,2782,2787,1,0,0, + 0,2783,2784,5,373,0,0,2784,2788,3,310,155,0,2785,2786,5,269,0,0, + 2786,2788,5,373,0,0,2787,2783,1,0,0,0,2787,2785,1,0,0,0,2787,2788, + 1,0,0,0,2788,2790,1,0,0,0,2789,2777,1,0,0,0,2789,2790,1,0,0,0,2790, + 199,1,0,0,0,2791,2792,5,46,0,0,2792,2795,3,170,85,0,2793,2794,5, + 282,0,0,2794,2796,3,822,411,0,2795,2793,1,0,0,0,2795,2796,1,0,0, + 0,2796,2797,1,0,0,0,2797,2798,5,255,0,0,2798,2800,3,816,408,0,2799, + 2801,3,94,47,0,2800,2799,1,0,0,0,2800,2801,1,0,0,0,2801,201,1,0, + 0,0,2802,2803,5,46,0,0,2803,2805,5,204,0,0,2804,2806,3,288,144,0, + 2805,2804,1,0,0,0,2805,2806,1,0,0,0,2806,2807,1,0,0,0,2807,2809, + 3,826,413,0,2808,2810,5,105,0,0,2809,2808,1,0,0,0,2809,2810,1,0, + 0,0,2810,2818,1,0,0,0,2811,2812,5,323,0,0,2812,2817,3,794,397,0, + 2813,2814,7,31,0,0,2814,2817,3,58,29,0,2815,2817,5,150,0,0,2816, + 2811,1,0,0,0,2816,2813,1,0,0,0,2816,2815,1,0,0,0,2817,2820,1,0,0, + 0,2818,2816,1,0,0,0,2818,2819,1,0,0,0,2819,203,1,0,0,0,2820,2818, + 1,0,0,0,2821,2822,5,138,0,0,2822,2823,5,204,0,0,2823,2824,3,826, + 413,0,2824,2829,5,369,0,0,2825,2826,5,94,0,0,2826,2828,3,58,29,0, + 2827,2825,1,0,0,0,2828,2831,1,0,0,0,2829,2827,1,0,0,0,2829,2830, + 1,0,0,0,2830,205,1,0,0,0,2831,2829,1,0,0,0,2832,2833,5,138,0,0,2833, + 2834,5,204,0,0,2834,2835,3,826,413,0,2835,2868,7,6,0,0,2836,2837, + 5,443,0,0,2837,2838,5,62,0,0,2838,2839,3,648,324,0,2839,2840,5,247, + 0,0,2840,2841,3,826,413,0,2841,2869,1,0,0,0,2842,2843,5,442,0,0, + 2843,2869,3,368,184,0,2844,2845,5,296,0,0,2845,2869,3,372,186,0, + 2846,2847,5,278,0,0,2847,2848,7,32,0,0,2848,2849,3,310,155,0,2849, + 2850,3,164,82,0,2850,2869,1,0,0,0,2851,2852,5,278,0,0,2852,2869, + 3,410,205,0,2853,2854,5,211,0,0,2854,2869,3,376,188,0,2855,2856, + 7,33,0,0,2856,2869,3,648,324,0,2857,2858,5,41,0,0,2858,2859,5,2, + 0,0,2859,2860,3,648,324,0,2860,2861,5,36,0,0,2861,2862,3,648,324, + 0,2862,2863,5,3,0,0,2863,2869,1,0,0,0,2864,2865,5,136,0,0,2865,2869, + 3,388,194,0,2866,2869,3,306,153,0,2867,2869,3,304,152,0,2868,2836, + 1,0,0,0,2868,2842,1,0,0,0,2868,2844,1,0,0,0,2868,2846,1,0,0,0,2868, + 2851,1,0,0,0,2868,2853,1,0,0,0,2868,2855,1,0,0,0,2868,2857,1,0,0, + 0,2868,2864,1,0,0,0,2868,2866,1,0,0,0,2868,2867,1,0,0,0,2869,207, + 1,0,0,0,2870,2871,5,46,0,0,2871,2872,5,63,0,0,2872,2873,5,174,0, + 0,2873,2874,5,381,0,0,2874,2880,3,826,413,0,2875,2877,3,210,105, + 0,2876,2875,1,0,0,0,2877,2878,1,0,0,0,2878,2876,1,0,0,0,2878,2879, + 1,0,0,0,2879,2881,1,0,0,0,2880,2876,1,0,0,0,2880,2881,1,0,0,0,2881, + 2883,1,0,0,0,2882,2884,3,214,107,0,2883,2882,1,0,0,0,2883,2884,1, + 0,0,0,2884,209,1,0,0,0,2885,2887,7,34,0,0,2886,2888,3,310,155,0, + 2887,2886,1,0,0,0,2887,2888,1,0,0,0,2888,2892,1,0,0,0,2889,2890, + 5,269,0,0,2890,2892,7,34,0,0,2891,2885,1,0,0,0,2891,2889,1,0,0,0, + 2892,211,1,0,0,0,2893,2894,5,138,0,0,2894,2895,5,63,0,0,2895,2896, + 5,174,0,0,2896,2897,5,381,0,0,2897,2911,3,826,413,0,2898,2900,3, + 210,105,0,2899,2898,1,0,0,0,2900,2901,1,0,0,0,2901,2899,1,0,0,0, + 2901,2902,1,0,0,0,2902,2904,1,0,0,0,2903,2899,1,0,0,0,2903,2904, + 1,0,0,0,2904,2905,1,0,0,0,2905,2912,3,216,108,0,2906,2908,3,210, + 105,0,2907,2906,1,0,0,0,2908,2909,1,0,0,0,2909,2907,1,0,0,0,2909, + 2910,1,0,0,0,2910,2912,1,0,0,0,2911,2903,1,0,0,0,2911,2907,1,0,0, + 0,2912,213,1,0,0,0,2913,2914,5,280,0,0,2914,2915,5,2,0,0,2915,2920, + 3,220,110,0,2916,2917,5,6,0,0,2917,2919,3,220,110,0,2918,2916,1, + 0,0,0,2919,2922,1,0,0,0,2920,2918,1,0,0,0,2920,2921,1,0,0,0,2921, + 2923,1,0,0,0,2922,2920,1,0,0,0,2923,2924,5,3,0,0,2924,215,1,0,0, + 0,2925,2926,5,280,0,0,2926,2927,5,2,0,0,2927,2932,3,218,109,0,2928, + 2929,5,6,0,0,2929,2931,3,218,109,0,2930,2928,1,0,0,0,2931,2934,1, + 0,0,0,2932,2930,1,0,0,0,2932,2933,1,0,0,0,2933,2935,1,0,0,0,2934, + 2932,1,0,0,0,2935,2936,5,3,0,0,2936,217,1,0,0,0,2937,2938,7,35,0, + 0,2938,2939,3,220,110,0,2939,219,1,0,0,0,2940,2941,3,832,416,0,2941, + 2942,3,816,408,0,2942,221,1,0,0,0,2943,2944,5,46,0,0,2944,2946,5, + 331,0,0,2945,2947,3,288,144,0,2946,2945,1,0,0,0,2946,2947,1,0,0, + 0,2947,2948,1,0,0,0,2948,2951,3,826,413,0,2949,2950,5,360,0,0,2950, + 2952,3,816,408,0,2951,2949,1,0,0,0,2951,2952,1,0,0,0,2952,2954,1, + 0,0,0,2953,2955,3,224,112,0,2954,2953,1,0,0,0,2954,2955,1,0,0,0, + 2955,2956,1,0,0,0,2956,2957,5,63,0,0,2957,2958,5,174,0,0,2958,2959, + 5,381,0,0,2959,2961,3,826,413,0,2960,2962,3,214,107,0,2961,2960, + 1,0,0,0,2961,2962,1,0,0,0,2962,223,1,0,0,0,2963,2966,5,375,0,0,2964, + 2967,3,816,408,0,2965,2967,5,78,0,0,2966,2964,1,0,0,0,2966,2965, + 1,0,0,0,2967,225,1,0,0,0,2968,2969,5,138,0,0,2969,2970,5,331,0,0, + 2970,2976,3,826,413,0,2971,2977,3,216,108,0,2972,2974,3,224,112, + 0,2973,2975,3,216,108,0,2974,2973,1,0,0,0,2974,2975,1,0,0,0,2975, + 2977,1,0,0,0,2976,2971,1,0,0,0,2976,2972,1,0,0,0,2977,227,1,0,0, + 0,2978,2979,5,46,0,0,2979,2980,5,63,0,0,2980,2982,5,92,0,0,2981, + 2983,3,288,144,0,2982,2981,1,0,0,0,2982,2983,1,0,0,0,2983,2984,1, + 0,0,0,2984,2985,3,776,388,0,2985,2987,5,2,0,0,2986,2988,3,120,60, + 0,2987,2986,1,0,0,0,2987,2988,1,0,0,0,2988,2989,1,0,0,0,2989,2991, + 5,3,0,0,2990,2992,3,158,79,0,2991,2990,1,0,0,0,2991,2992,1,0,0,0, + 2992,2993,1,0,0,0,2993,2994,5,331,0,0,2994,2996,3,826,413,0,2995, + 2997,3,214,107,0,2996,2995,1,0,0,0,2996,2997,1,0,0,0,2997,3018,1, + 0,0,0,2998,2999,5,46,0,0,2999,3000,5,63,0,0,3000,3002,5,92,0,0,3001, + 3003,3,288,144,0,3002,3001,1,0,0,0,3002,3003,1,0,0,0,3003,3004,1, + 0,0,0,3004,3005,3,776,388,0,3005,3006,5,285,0,0,3006,3007,5,275, + 0,0,3007,3009,3,778,389,0,3008,3010,3,118,59,0,3009,3008,1,0,0,0, + 3009,3010,1,0,0,0,3010,3011,1,0,0,0,3011,3012,3,98,49,0,3012,3013, + 5,331,0,0,3013,3015,3,826,413,0,3014,3016,3,214,107,0,3015,3014, + 1,0,0,0,3015,3016,1,0,0,0,3016,3018,1,0,0,0,3017,2978,1,0,0,0,3017, + 2998,1,0,0,0,3018,229,1,0,0,0,3019,3020,5,444,0,0,3020,3021,5,63, + 0,0,3021,3022,5,323,0,0,3022,3032,3,794,397,0,3023,3024,5,74,0,0, + 3024,3027,5,94,0,0,3025,3027,5,59,0,0,3026,3023,1,0,0,0,3026,3025, + 1,0,0,0,3027,3028,1,0,0,0,3028,3029,5,2,0,0,3029,3030,3,624,312, + 0,3030,3031,5,3,0,0,3031,3033,1,0,0,0,3032,3026,1,0,0,0,3032,3033, + 1,0,0,0,3033,3034,1,0,0,0,3034,3035,5,64,0,0,3035,3036,5,331,0,0, + 3036,3037,3,826,413,0,3037,3038,5,71,0,0,3038,3040,3,826,413,0,3039, + 3041,3,214,107,0,3040,3039,1,0,0,0,3040,3041,1,0,0,0,3041,231,1, + 0,0,0,3042,3043,5,46,0,0,3043,3044,5,99,0,0,3044,3046,5,257,0,0, + 3045,3047,3,288,144,0,3046,3045,1,0,0,0,3046,3047,1,0,0,0,3047,3048, + 1,0,0,0,3048,3051,5,62,0,0,3049,3052,3,822,411,0,3050,3052,5,99, + 0,0,3051,3049,1,0,0,0,3051,3050,1,0,0,0,3052,3053,1,0,0,0,3053,3054, + 5,331,0,0,3054,3056,3,826,413,0,3055,3057,3,214,107,0,3056,3055, + 1,0,0,0,3056,3057,1,0,0,0,3057,233,1,0,0,0,3058,3059,5,138,0,0,3059, + 3060,5,99,0,0,3060,3061,5,257,0,0,3061,3064,5,62,0,0,3062,3065,3, + 822,411,0,3063,3065,5,99,0,0,3064,3062,1,0,0,0,3064,3063,1,0,0,0, + 3065,3066,1,0,0,0,3066,3067,5,331,0,0,3067,3068,3,826,413,0,3068, + 3069,3,216,108,0,3069,235,1,0,0,0,3070,3071,5,46,0,0,3071,3072,5, + 445,0,0,3072,3073,3,826,413,0,3073,3074,5,80,0,0,3074,3081,3,784, + 392,0,3075,3079,5,36,0,0,3076,3080,5,541,0,0,3077,3080,5,542,0,0, + 3078,3080,3,836,418,0,3079,3076,1,0,0,0,3079,3077,1,0,0,0,3079,3078, + 1,0,0,0,3080,3082,1,0,0,0,3081,3075,1,0,0,0,3081,3082,1,0,0,0,3082, + 3085,1,0,0,0,3083,3084,5,62,0,0,3084,3086,7,36,0,0,3085,3083,1,0, + 0,0,3085,3086,1,0,0,0,3086,3089,1,0,0,0,3087,3088,5,94,0,0,3088, + 3090,3,824,412,0,3089,3087,1,0,0,0,3089,3090,1,0,0,0,3090,3092,1, + 0,0,0,3091,3093,3,244,122,0,3092,3091,1,0,0,0,3092,3093,1,0,0,0, + 3093,3095,1,0,0,0,3094,3096,3,246,123,0,3095,3094,1,0,0,0,3095,3096, + 1,0,0,0,3096,237,1,0,0,0,3097,3098,5,138,0,0,3098,3099,5,445,0,0, + 3099,3100,3,826,413,0,3100,3101,5,80,0,0,3101,3104,3,784,392,0,3102, + 3103,5,94,0,0,3103,3105,3,824,412,0,3104,3102,1,0,0,0,3104,3105, + 1,0,0,0,3105,3107,1,0,0,0,3106,3108,3,244,122,0,3107,3106,1,0,0, + 0,3107,3108,1,0,0,0,3108,3110,1,0,0,0,3109,3111,3,246,123,0,3110, + 3109,1,0,0,0,3110,3111,1,0,0,0,3111,239,1,0,0,0,3112,3113,5,138, + 0,0,3113,3114,5,296,0,0,3114,3116,3,800,400,0,3115,3117,3,362,181, + 0,3116,3115,1,0,0,0,3116,3117,1,0,0,0,3117,3144,1,0,0,0,3118,3122, + 3,242,121,0,3119,3121,3,242,121,0,3120,3119,1,0,0,0,3121,3124,1, + 0,0,0,3122,3120,1,0,0,0,3122,3123,1,0,0,0,3123,3126,1,0,0,0,3124, + 3122,1,0,0,0,3125,3127,5,315,0,0,3126,3125,1,0,0,0,3126,3127,1,0, + 0,0,3127,3145,1,0,0,0,3128,3129,5,309,0,0,3129,3130,5,94,0,0,3130, + 3145,3,802,401,0,3131,3132,5,282,0,0,3132,3133,5,94,0,0,3133,3145, + 3,822,411,0,3134,3135,5,333,0,0,3135,3136,5,323,0,0,3136,3145,3, + 32,16,0,3137,3139,5,269,0,0,3138,3137,1,0,0,0,3138,3139,1,0,0,0, + 3139,3140,1,0,0,0,3140,3141,5,462,0,0,3141,3142,5,80,0,0,3142,3143, + 5,204,0,0,3143,3145,3,826,413,0,3144,3118,1,0,0,0,3144,3128,1,0, + 0,0,3144,3131,1,0,0,0,3144,3134,1,0,0,0,3144,3138,1,0,0,0,3145,241, + 1,0,0,0,3146,3148,5,205,0,0,3147,3146,1,0,0,0,3147,3148,1,0,0,0, + 3148,3149,1,0,0,0,3149,3150,5,327,0,0,3150,3157,5,243,0,0,3151,3153, + 5,205,0,0,3152,3151,1,0,0,0,3152,3153,1,0,0,0,3153,3154,1,0,0,0, + 3154,3155,5,327,0,0,3155,3157,5,181,0,0,3156,3147,1,0,0,0,3156,3152, + 1,0,0,0,3157,3176,1,0,0,0,3158,3159,5,333,0,0,3159,3160,3,826,413, + 0,3160,3163,7,37,0,0,3161,3164,3,826,413,0,3162,3164,5,53,0,0,3163, + 3161,1,0,0,0,3163,3162,1,0,0,0,3164,3176,1,0,0,0,3165,3166,5,333, + 0,0,3166,3167,3,826,413,0,3167,3168,5,64,0,0,3168,3169,5,434,0,0, + 3169,3176,1,0,0,0,3170,3173,5,313,0,0,3171,3174,3,826,413,0,3172, + 3174,5,30,0,0,3173,3171,1,0,0,0,3173,3172,1,0,0,0,3174,3176,1,0, + 0,0,3175,3156,1,0,0,0,3175,3158,1,0,0,0,3175,3165,1,0,0,0,3175,3170, + 1,0,0,0,3176,243,1,0,0,0,3177,3178,5,100,0,0,3178,3179,5,2,0,0,3179, + 3180,3,670,335,0,3180,3181,5,3,0,0,3181,245,1,0,0,0,3182,3183,5, + 105,0,0,3183,3184,5,42,0,0,3184,3185,5,2,0,0,3185,3186,3,670,335, + 0,3186,3187,5,3,0,0,3187,247,1,0,0,0,3188,3189,5,46,0,0,3189,3190, + 5,131,0,0,3190,3191,5,446,0,0,3191,3192,3,826,413,0,3192,3193,5, + 360,0,0,3193,3194,7,38,0,0,3194,3195,5,215,0,0,3195,3196,3,310,155, + 0,3196,249,1,0,0,0,3197,3199,5,46,0,0,3198,3200,3,360,180,0,3199, + 3198,1,0,0,0,3199,3200,1,0,0,0,3200,3201,1,0,0,0,3201,3202,5,357, + 0,0,3202,3203,3,826,413,0,3203,3204,3,252,126,0,3204,3205,3,254, + 127,0,3205,3206,5,80,0,0,3206,3218,3,778,389,0,3207,3214,5,447,0, + 0,3208,3209,7,39,0,0,3209,3211,7,40,0,0,3210,3212,5,36,0,0,3211, + 3210,1,0,0,0,3211,3212,1,0,0,0,3212,3213,1,0,0,0,3213,3215,3,826, + 413,0,3214,3208,1,0,0,0,3215,3216,1,0,0,0,3216,3214,1,0,0,0,3216, + 3217,1,0,0,0,3217,3219,1,0,0,0,3218,3207,1,0,0,0,3218,3219,1,0,0, + 0,3219,3225,1,0,0,0,3220,3222,5,62,0,0,3221,3223,5,192,0,0,3222, + 3221,1,0,0,0,3222,3223,1,0,0,0,3223,3224,1,0,0,0,3224,3226,7,41, + 0,0,3225,3220,1,0,0,0,3225,3226,1,0,0,0,3226,3228,1,0,0,0,3227,3229, + 3,258,129,0,3228,3227,1,0,0,0,3228,3229,1,0,0,0,3229,3230,1,0,0, + 0,3230,3231,5,202,0,0,3231,3232,3,260,130,0,3232,3233,5,2,0,0,3233, + 3234,3,262,131,0,3234,3235,5,3,0,0,3235,3276,1,0,0,0,3236,3238,5, + 46,0,0,3237,3239,3,360,180,0,3238,3237,1,0,0,0,3238,3239,1,0,0,0, + 3239,3241,1,0,0,0,3240,3242,5,45,0,0,3241,3240,1,0,0,0,3241,3242, + 1,0,0,0,3242,3243,1,0,0,0,3243,3244,5,357,0,0,3244,3245,3,826,413, + 0,3245,3246,3,252,126,0,3246,3247,3,254,127,0,3247,3248,5,80,0,0, + 3248,3251,3,778,389,0,3249,3250,5,64,0,0,3250,3252,3,784,392,0,3251, + 3249,1,0,0,0,3251,3252,1,0,0,0,3252,3256,1,0,0,0,3253,3255,3,266, + 133,0,3254,3253,1,0,0,0,3255,3258,1,0,0,0,3256,3254,1,0,0,0,3256, + 3257,1,0,0,0,3257,3264,1,0,0,0,3258,3256,1,0,0,0,3259,3261,5,62, + 0,0,3260,3262,5,192,0,0,3261,3260,1,0,0,0,3261,3262,1,0,0,0,3262, + 3263,1,0,0,0,3263,3265,7,41,0,0,3264,3259,1,0,0,0,3264,3265,1,0, + 0,0,3265,3267,1,0,0,0,3266,3268,3,258,129,0,3267,3266,1,0,0,0,3267, + 3268,1,0,0,0,3268,3269,1,0,0,0,3269,3270,5,202,0,0,3270,3271,3,260, + 130,0,3271,3272,5,2,0,0,3272,3273,3,262,131,0,3273,3274,5,3,0,0, + 3274,3276,1,0,0,0,3275,3197,1,0,0,0,3275,3236,1,0,0,0,3276,251,1, + 0,0,0,3277,3282,5,145,0,0,3278,3282,5,135,0,0,3279,3280,5,242,0, + 0,3280,3282,5,275,0,0,3281,3277,1,0,0,0,3281,3278,1,0,0,0,3281,3279, + 1,0,0,0,3282,253,1,0,0,0,3283,3288,3,256,128,0,3284,3285,5,82,0, + 0,3285,3287,3,256,128,0,3286,3284,1,0,0,0,3287,3290,1,0,0,0,3288, + 3286,1,0,0,0,3288,3289,1,0,0,0,3289,255,1,0,0,0,3290,3288,1,0,0, + 0,3291,3300,5,241,0,0,3292,3300,5,182,0,0,3293,3296,5,369,0,0,3294, + 3295,5,275,0,0,3295,3297,3,142,71,0,3296,3294,1,0,0,0,3296,3297, + 1,0,0,0,3297,3300,1,0,0,0,3298,3300,5,358,0,0,3299,3291,1,0,0,0, + 3299,3292,1,0,0,0,3299,3293,1,0,0,0,3299,3298,1,0,0,0,3300,257,1, + 0,0,0,3301,3302,5,102,0,0,3302,3303,5,2,0,0,3303,3304,3,670,335, + 0,3304,3305,5,3,0,0,3305,259,1,0,0,0,3306,3307,5,211,0,0,3307,3311, + 3,814,407,0,3308,3309,5,296,0,0,3309,3311,3,800,400,0,3310,3306, + 1,0,0,0,3310,3308,1,0,0,0,3311,261,1,0,0,0,3312,3315,3,264,132,0, + 3313,3315,1,0,0,0,3314,3312,1,0,0,0,3314,3313,1,0,0,0,3315,3320, + 1,0,0,0,3316,3317,5,6,0,0,3317,3319,3,264,132,0,3318,3316,1,0,0, + 0,3319,3322,1,0,0,0,3320,3318,1,0,0,0,3320,3321,1,0,0,0,3321,263, + 1,0,0,0,3322,3320,1,0,0,0,3323,3328,5,574,0,0,3324,3328,5,576,0, + 0,3325,3328,3,816,408,0,3326,3328,3,832,416,0,3327,3323,1,0,0,0, + 3327,3324,1,0,0,0,3327,3325,1,0,0,0,3327,3326,1,0,0,0,3328,265,1, + 0,0,0,3329,3331,5,77,0,0,3330,3329,1,0,0,0,3330,3331,1,0,0,0,3331, + 3332,1,0,0,0,3332,3340,5,54,0,0,3333,3334,5,69,0,0,3334,3340,7,9, + 0,0,3335,3336,5,77,0,0,3336,3340,5,371,0,0,3337,3338,5,269,0,0,3338, + 3340,5,228,0,0,3339,3330,1,0,0,0,3339,3333,1,0,0,0,3339,3335,1,0, + 0,0,3339,3337,1,0,0,0,3340,267,1,0,0,0,3341,3342,5,46,0,0,3342,3343, + 5,198,0,0,3343,3344,5,357,0,0,3344,3345,3,826,413,0,3345,3346,5, + 80,0,0,3346,3356,3,832,416,0,3347,3348,5,102,0,0,3348,3353,3,270, + 135,0,3349,3350,5,33,0,0,3350,3352,3,270,135,0,3351,3349,1,0,0,0, + 3352,3355,1,0,0,0,3353,3351,1,0,0,0,3353,3354,1,0,0,0,3354,3357, + 1,0,0,0,3355,3353,1,0,0,0,3356,3347,1,0,0,0,3356,3357,1,0,0,0,3357, + 3358,1,0,0,0,3358,3359,5,202,0,0,3359,3360,3,260,130,0,3360,3361, + 5,2,0,0,3361,3362,5,3,0,0,3362,269,1,0,0,0,3363,3364,3,826,413,0, + 3364,3365,5,68,0,0,3365,3366,5,2,0,0,3366,3370,3,816,408,0,3367, + 3369,3,456,228,0,3368,3367,1,0,0,0,3369,3372,1,0,0,0,3370,3368,1, + 0,0,0,3370,3371,1,0,0,0,3371,3373,1,0,0,0,3372,3370,1,0,0,0,3373, + 3374,5,3,0,0,3374,271,1,0,0,0,3375,3376,5,138,0,0,3376,3377,5,198, + 0,0,3377,3378,5,357,0,0,3378,3384,3,826,413,0,3379,3381,5,193,0, + 0,3380,3382,7,14,0,0,3381,3380,1,0,0,0,3381,3382,1,0,0,0,3382,3385, + 1,0,0,0,3383,3385,5,186,0,0,3384,3379,1,0,0,0,3384,3383,1,0,0,0, + 3385,273,1,0,0,0,3386,3387,5,46,0,0,3387,3388,5,140,0,0,3388,3389, + 3,310,155,0,3389,3390,5,42,0,0,3390,3391,5,2,0,0,3391,3392,3,670, + 335,0,3392,3396,5,3,0,0,3393,3395,3,266,133,0,3394,3393,1,0,0,0, + 3395,3398,1,0,0,0,3396,3394,1,0,0,0,3396,3397,1,0,0,0,3397,275,1, + 0,0,0,3398,3396,1,0,0,0,3399,3401,5,46,0,0,3400,3402,3,360,180,0, + 3401,3400,1,0,0,0,3401,3402,1,0,0,0,3402,3403,1,0,0,0,3403,3404, + 5,136,0,0,3404,3419,3,814,407,0,3405,3406,3,386,193,0,3406,3407, + 3,278,139,0,3407,3420,1,0,0,0,3408,3409,5,2,0,0,3409,3414,3,284, + 142,0,3410,3411,5,6,0,0,3411,3413,3,284,142,0,3412,3410,1,0,0,0, + 3413,3416,1,0,0,0,3414,3412,1,0,0,0,3414,3415,1,0,0,0,3415,3417, + 1,0,0,0,3416,3414,1,0,0,0,3417,3418,5,3,0,0,3418,3420,1,0,0,0,3419, + 3405,1,0,0,0,3419,3408,1,0,0,0,3420,3478,1,0,0,0,3421,3422,5,46, + 0,0,3422,3423,5,278,0,0,3423,3424,3,408,204,0,3424,3425,3,278,139, + 0,3425,3478,1,0,0,0,3426,3427,5,46,0,0,3427,3428,5,360,0,0,3428, + 3429,3,310,155,0,3429,3447,5,36,0,0,3430,3432,5,2,0,0,3431,3433, + 3,638,319,0,3432,3431,1,0,0,0,3432,3433,1,0,0,0,3433,3434,1,0,0, + 0,3434,3448,5,3,0,0,3435,3436,5,196,0,0,3436,3444,5,2,0,0,3437,3441, + 3,816,408,0,3438,3440,3,456,228,0,3439,3438,1,0,0,0,3440,3443,1, + 0,0,0,3441,3439,1,0,0,0,3441,3442,1,0,0,0,3442,3445,1,0,0,0,3443, + 3441,1,0,0,0,3444,3437,1,0,0,0,3444,3445,1,0,0,0,3445,3446,1,0,0, + 0,3446,3448,5,3,0,0,3447,3430,1,0,0,0,3447,3435,1,0,0,0,3448,3478, + 1,0,0,0,3449,3450,5,46,0,0,3450,3451,5,360,0,0,3451,3457,3,310,155, + 0,3452,3453,5,36,0,0,3453,3455,5,299,0,0,3454,3452,1,0,0,0,3454, + 3455,1,0,0,0,3455,3456,1,0,0,0,3456,3458,3,278,139,0,3457,3454,1, + 0,0,0,3457,3458,1,0,0,0,3458,3478,1,0,0,0,3459,3460,5,46,0,0,3460, + 3461,5,355,0,0,3461,3462,5,325,0,0,3462,3463,7,42,0,0,3463,3464, + 3,310,155,0,3464,3465,3,278,139,0,3465,3478,1,0,0,0,3466,3467,5, + 46,0,0,3467,3469,5,108,0,0,3468,3470,3,288,144,0,3469,3468,1,0,0, + 0,3469,3470,1,0,0,0,3470,3471,1,0,0,0,3471,3475,3,310,155,0,3472, + 3476,3,278,139,0,3473,3474,5,64,0,0,3474,3476,3,310,155,0,3475,3472, + 1,0,0,0,3475,3473,1,0,0,0,3476,3478,1,0,0,0,3477,3399,1,0,0,0,3477, + 3421,1,0,0,0,3477,3426,1,0,0,0,3477,3449,1,0,0,0,3477,3459,1,0,0, + 0,3477,3466,1,0,0,0,3478,277,1,0,0,0,3479,3480,5,2,0,0,3480,3485, + 3,280,140,0,3481,3482,5,6,0,0,3482,3484,3,280,140,0,3483,3481,1, + 0,0,0,3484,3487,1,0,0,0,3485,3483,1,0,0,0,3485,3486,1,0,0,0,3486, + 3488,1,0,0,0,3487,3485,1,0,0,0,3488,3489,5,3,0,0,3489,279,1,0,0, + 0,3490,3493,3,832,416,0,3491,3492,5,10,0,0,3492,3494,3,282,141,0, + 3493,3491,1,0,0,0,3493,3494,1,0,0,0,3494,281,1,0,0,0,3495,3502,3, + 382,191,0,3496,3502,3,844,422,0,3497,3502,3,724,362,0,3498,3502, + 3,196,98,0,3499,3502,3,816,408,0,3500,3502,5,407,0,0,3501,3495,1, + 0,0,0,3501,3496,1,0,0,0,3501,3497,1,0,0,0,3501,3498,1,0,0,0,3501, + 3499,1,0,0,0,3501,3500,1,0,0,0,3502,283,1,0,0,0,3503,3504,3,836, + 418,0,3504,3505,5,10,0,0,3505,3506,3,282,141,0,3506,285,1,0,0,0, + 3507,3508,5,138,0,0,3508,3509,5,360,0,0,3509,3510,3,310,155,0,3510, + 3511,5,133,0,0,3511,3513,5,450,0,0,3512,3514,3,288,144,0,3513,3512, + 1,0,0,0,3513,3514,1,0,0,0,3514,3515,1,0,0,0,3515,3518,3,816,408, + 0,3516,3517,7,43,0,0,3517,3519,3,816,408,0,3518,3516,1,0,0,0,3518, + 3519,1,0,0,0,3519,3530,1,0,0,0,3520,3521,5,138,0,0,3521,3522,5,360, + 0,0,3522,3523,3,310,155,0,3523,3524,5,309,0,0,3524,3525,5,450,0, + 0,3525,3526,3,816,408,0,3526,3527,5,94,0,0,3527,3528,3,816,408,0, + 3528,3530,1,0,0,0,3529,3507,1,0,0,0,3529,3520,1,0,0,0,3530,287,1, + 0,0,0,3531,3532,5,220,0,0,3532,3533,5,77,0,0,3533,3534,5,396,0,0, + 3534,289,1,0,0,0,3535,3536,5,46,0,0,3536,3537,5,278,0,0,3537,3538, + 5,156,0,0,3538,3540,3,310,155,0,3539,3541,5,53,0,0,3540,3539,1,0, + 0,0,3540,3541,1,0,0,0,3541,3542,1,0,0,0,3542,3543,5,62,0,0,3543, + 3544,5,360,0,0,3544,3545,3,648,324,0,3545,3548,3,164,82,0,3546,3547, + 5,206,0,0,3547,3549,3,310,155,0,3548,3546,1,0,0,0,3548,3549,1,0, + 0,0,3549,3550,1,0,0,0,3550,3551,5,36,0,0,3551,3556,3,292,146,0,3552, + 3553,5,6,0,0,3553,3555,3,292,146,0,3554,3552,1,0,0,0,3555,3558,1, + 0,0,0,3556,3554,1,0,0,0,3556,3557,1,0,0,0,3557,291,1,0,0,0,3558, + 3556,1,0,0,0,3559,3560,5,278,0,0,3560,3561,5,574,0,0,3561,3563,3, + 408,204,0,3562,3564,3,406,203,0,3563,3562,1,0,0,0,3563,3564,1,0, + 0,0,3564,3572,1,0,0,0,3565,3570,5,62,0,0,3566,3571,5,325,0,0,3567, + 3568,5,83,0,0,3568,3569,5,147,0,0,3569,3571,3,310,155,0,3570,3566, + 1,0,0,0,3570,3567,1,0,0,0,3571,3573,1,0,0,0,3572,3565,1,0,0,0,3572, + 3573,1,0,0,0,3573,3575,1,0,0,0,3574,3576,5,302,0,0,3575,3574,1,0, + 0,0,3575,3576,1,0,0,0,3576,3586,1,0,0,0,3577,3578,5,211,0,0,3578, + 3580,5,574,0,0,3579,3581,3,522,261,0,3580,3579,1,0,0,0,3580,3581, + 1,0,0,0,3581,3582,1,0,0,0,3582,3586,3,376,188,0,3583,3584,5,345, + 0,0,3584,3586,3,648,324,0,3585,3559,1,0,0,0,3585,3577,1,0,0,0,3585, + 3583,1,0,0,0,3586,293,1,0,0,0,3587,3588,5,46,0,0,3588,3589,5,278, + 0,0,3589,3590,5,206,0,0,3590,3591,3,310,155,0,3591,3592,3,164,82, + 0,3592,295,1,0,0,0,3593,3594,5,138,0,0,3594,3595,5,278,0,0,3595, + 3596,5,206,0,0,3596,3597,3,310,155,0,3597,3616,3,164,82,0,3598,3599, + 5,133,0,0,3599,3604,3,292,146,0,3600,3601,5,6,0,0,3601,3603,3,292, + 146,0,3602,3600,1,0,0,0,3603,3606,1,0,0,0,3604,3602,1,0,0,0,3604, + 3605,1,0,0,0,3605,3617,1,0,0,0,3606,3604,1,0,0,0,3607,3608,5,191, + 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,3617,1,0,0,0,3615,3613,1,0,0,0,3616,3598,1,0,0,0,3616, + 3607,1,0,0,0,3617,297,1,0,0,0,3618,3619,7,44,0,0,3619,3620,5,574, + 0,0,3620,3621,3,522,261,0,3621,299,1,0,0,0,3622,3623,5,301,0,0,3623, + 3624,5,281,0,0,3624,3625,5,147,0,0,3625,3626,3,824,412,0,3626,3627, + 5,94,0,0,3627,3628,3,822,411,0,3628,301,1,0,0,0,3629,3652,5,191, + 0,0,3630,3653,5,328,0,0,3631,3653,5,226,0,0,3632,3653,5,108,0,0, + 3633,3653,5,168,0,0,3634,3653,5,342,0,0,3635,3653,5,452,0,0,3636, + 3653,5,331,0,0,3637,3638,5,131,0,0,3638,3653,5,446,0,0,3639,3640, + 5,198,0,0,3640,3653,5,357,0,0,3641,3653,5,204,0,0,3642,3644,5,295, + 0,0,3643,3642,1,0,0,0,3643,3644,1,0,0,0,3644,3645,1,0,0,0,3645,3653, + 5,247,0,0,3646,3647,5,63,0,0,3647,3648,5,174,0,0,3648,3653,5,381, + 0,0,3649,3650,5,355,0,0,3650,3651,5,325,0,0,3651,3653,7,42,0,0,3652, + 3630,1,0,0,0,3652,3631,1,0,0,0,3652,3632,1,0,0,0,3652,3633,1,0,0, + 0,3652,3634,1,0,0,0,3652,3635,1,0,0,0,3652,3636,1,0,0,0,3652,3637, + 1,0,0,0,3652,3639,1,0,0,0,3652,3641,1,0,0,0,3652,3643,1,0,0,0,3652, + 3646,1,0,0,0,3652,3649,1,0,0,0,3653,3655,1,0,0,0,3654,3656,3,416, + 208,0,3655,3654,1,0,0,0,3655,3656,1,0,0,0,3656,3657,1,0,0,0,3657, + 3659,3,788,394,0,3658,3660,3,88,44,0,3659,3658,1,0,0,0,3659,3660, + 1,0,0,0,3660,3837,1,0,0,0,3661,3663,5,191,0,0,3662,3664,5,259,0, + 0,3663,3662,1,0,0,0,3663,3664,1,0,0,0,3664,3665,1,0,0,0,3665,3667, + 5,376,0,0,3666,3668,3,416,208,0,3667,3666,1,0,0,0,3667,3668,1,0, + 0,0,3668,3669,1,0,0,0,3669,3674,3,782,391,0,3670,3671,5,6,0,0,3671, + 3673,3,782,391,0,3672,3670,1,0,0,0,3673,3676,1,0,0,0,3674,3672,1, + 0,0,0,3674,3675,1,0,0,0,3675,3678,1,0,0,0,3676,3674,1,0,0,0,3677, + 3679,3,88,44,0,3678,3677,1,0,0,0,3678,3679,1,0,0,0,3679,3837,1,0, + 0,0,3680,3682,5,191,0,0,3681,3683,5,63,0,0,3682,3681,1,0,0,0,3682, + 3683,1,0,0,0,3683,3684,1,0,0,0,3684,3686,5,92,0,0,3685,3687,3,416, + 208,0,3686,3685,1,0,0,0,3686,3687,1,0,0,0,3687,3688,1,0,0,0,3688, + 3690,3,766,383,0,3689,3691,3,88,44,0,3690,3689,1,0,0,0,3690,3691, + 1,0,0,0,3691,3837,1,0,0,0,3692,3693,5,191,0,0,3693,3695,5,323,0, + 0,3694,3696,3,416,208,0,3695,3694,1,0,0,0,3695,3696,1,0,0,0,3696, + 3697,1,0,0,0,3697,3699,3,768,384,0,3698,3700,3,88,44,0,3699,3698, + 1,0,0,0,3699,3700,1,0,0,0,3700,3837,1,0,0,0,3701,3702,5,191,0,0, + 3702,3704,7,45,0,0,3703,3705,3,416,208,0,3704,3703,1,0,0,0,3704, + 3705,1,0,0,0,3705,3706,1,0,0,0,3706,3707,3,826,413,0,3707,3708,5, + 80,0,0,3708,3710,3,310,155,0,3709,3711,3,88,44,0,3710,3709,1,0,0, + 0,3710,3711,1,0,0,0,3711,3837,1,0,0,0,3712,3713,5,191,0,0,3713,3715, + 7,33,0,0,3714,3716,3,416,208,0,3715,3714,1,0,0,0,3715,3716,1,0,0, + 0,3716,3717,1,0,0,0,3717,3722,3,648,324,0,3718,3719,5,6,0,0,3719, + 3721,3,648,324,0,3720,3718,1,0,0,0,3721,3724,1,0,0,0,3722,3720,1, + 0,0,0,3722,3723,1,0,0,0,3723,3726,1,0,0,0,3724,3722,1,0,0,0,3725, + 3727,3,88,44,0,3726,3725,1,0,0,0,3726,3727,1,0,0,0,3727,3837,1,0, + 0,0,3728,3729,5,191,0,0,3729,3730,5,226,0,0,3730,3732,5,109,0,0, + 3731,3733,3,416,208,0,3732,3731,1,0,0,0,3732,3733,1,0,0,0,3733,3734, + 1,0,0,0,3734,3736,3,308,154,0,3735,3737,3,88,44,0,3736,3735,1,0, + 0,0,3736,3737,1,0,0,0,3737,3837,1,0,0,0,3738,3739,5,191,0,0,3739, + 3741,5,41,0,0,3740,3742,3,416,208,0,3741,3740,1,0,0,0,3741,3742, + 1,0,0,0,3742,3743,1,0,0,0,3743,3744,5,2,0,0,3744,3745,3,648,324, + 0,3745,3746,5,36,0,0,3746,3747,3,648,324,0,3747,3749,5,3,0,0,3748, + 3750,3,88,44,0,3749,3748,1,0,0,0,3749,3750,1,0,0,0,3750,3837,1,0, + 0,0,3751,3752,5,191,0,0,3752,3753,5,278,0,0,3753,3755,7,32,0,0,3754, + 3756,3,416,208,0,3755,3754,1,0,0,0,3755,3756,1,0,0,0,3756,3757,1, + 0,0,0,3757,3758,3,310,155,0,3758,3760,3,164,82,0,3759,3761,3,88, + 44,0,3760,3759,1,0,0,0,3760,3761,1,0,0,0,3761,3837,1,0,0,0,3762, + 3763,5,191,0,0,3763,3764,5,281,0,0,3764,3765,5,147,0,0,3765,3767, + 3,824,412,0,3766,3768,3,88,44,0,3767,3766,1,0,0,0,3767,3768,1,0, + 0,0,3768,3837,1,0,0,0,3769,3770,5,191,0,0,3770,3772,5,451,0,0,3771, + 3773,3,416,208,0,3772,3771,1,0,0,0,3772,3773,1,0,0,0,3773,3774,1, + 0,0,0,3774,3776,3,826,413,0,3775,3777,3,88,44,0,3776,3775,1,0,0, + 0,3776,3777,1,0,0,0,3777,3837,1,0,0,0,3778,3779,5,191,0,0,3779,3781, + 5,351,0,0,3780,3782,3,416,208,0,3781,3780,1,0,0,0,3781,3782,1,0, + 0,0,3782,3783,1,0,0,0,3783,3837,3,774,387,0,3784,3785,5,191,0,0, + 3785,3787,5,443,0,0,3786,3788,3,416,208,0,3787,3786,1,0,0,0,3787, + 3788,1,0,0,0,3788,3789,1,0,0,0,3789,3790,5,62,0,0,3790,3791,3,648, + 324,0,3791,3792,5,247,0,0,3792,3794,3,826,413,0,3793,3795,3,88,44, + 0,3794,3793,1,0,0,0,3794,3795,1,0,0,0,3795,3837,1,0,0,0,3796,3797, + 5,191,0,0,3797,3799,7,46,0,0,3798,3800,3,416,208,0,3799,3798,1,0, + 0,0,3799,3800,1,0,0,0,3800,3801,1,0,0,0,3801,3837,3,824,412,0,3802, + 3803,5,191,0,0,3803,3804,5,99,0,0,3804,3806,5,257,0,0,3805,3807, + 3,416,208,0,3806,3805,1,0,0,0,3806,3807,1,0,0,0,3807,3808,1,0,0, + 0,3808,3811,5,62,0,0,3809,3812,3,822,411,0,3810,3812,5,99,0,0,3811, + 3809,1,0,0,0,3811,3810,1,0,0,0,3812,3813,1,0,0,0,3813,3814,5,331, + 0,0,3814,3837,3,826,413,0,3815,3816,5,191,0,0,3816,3818,5,175,0, + 0,3817,3819,3,416,208,0,3818,3817,1,0,0,0,3818,3819,1,0,0,0,3819, + 3820,1,0,0,0,3820,3834,3,792,396,0,3821,3823,5,105,0,0,3822,3821, + 1,0,0,0,3822,3823,1,0,0,0,3823,3824,1,0,0,0,3824,3825,5,2,0,0,3825, + 3830,5,209,0,0,3826,3827,5,6,0,0,3827,3829,5,209,0,0,3828,3826,1, + 0,0,0,3829,3832,1,0,0,0,3830,3828,1,0,0,0,3830,3831,1,0,0,0,3831, + 3833,1,0,0,0,3832,3830,1,0,0,0,3833,3835,5,3,0,0,3834,3822,1,0,0, + 0,3834,3835,1,0,0,0,3835,3837,1,0,0,0,3836,3629,1,0,0,0,3836,3661, + 1,0,0,0,3836,3680,1,0,0,0,3836,3692,1,0,0,0,3836,3701,1,0,0,0,3836, + 3712,1,0,0,0,3836,3728,1,0,0,0,3836,3738,1,0,0,0,3836,3751,1,0,0, + 0,3836,3762,1,0,0,0,3836,3769,1,0,0,0,3836,3778,1,0,0,0,3836,3784, + 1,0,0,0,3836,3796,1,0,0,0,3836,3802,1,0,0,0,3836,3815,1,0,0,0,3837, + 303,1,0,0,0,3838,3840,5,63,0,0,3839,3838,1,0,0,0,3839,3840,1,0,0, + 0,3840,3841,1,0,0,0,3841,3842,5,92,0,0,3842,3855,3,778,389,0,3843, + 3845,5,259,0,0,3844,3843,1,0,0,0,3844,3845,1,0,0,0,3845,3846,1,0, + 0,0,3846,3847,5,376,0,0,3847,3855,3,782,391,0,3848,3849,7,47,0,0, + 3849,3855,3,310,155,0,3850,3851,5,355,0,0,3851,3852,5,325,0,0,3852, + 3853,7,42,0,0,3853,3855,3,310,155,0,3854,3839,1,0,0,0,3854,3844, + 1,0,0,0,3854,3848,1,0,0,0,3854,3850,1,0,0,0,3855,305,1,0,0,0,3856, + 3857,5,198,0,0,3857,3873,5,357,0,0,3858,3859,5,131,0,0,3859,3873, + 5,446,0,0,3860,3873,5,204,0,0,3861,3873,5,452,0,0,3862,3873,5,331, + 0,0,3863,3873,5,318,0,0,3864,3873,5,451,0,0,3865,3866,5,63,0,0,3866, + 3867,5,174,0,0,3867,3873,5,381,0,0,3868,3870,5,295,0,0,3869,3868, + 1,0,0,0,3869,3870,1,0,0,0,3870,3871,1,0,0,0,3871,3873,5,247,0,0, + 3872,3856,1,0,0,0,3872,3858,1,0,0,0,3872,3860,1,0,0,0,3872,3861, + 1,0,0,0,3872,3862,1,0,0,0,3872,3863,1,0,0,0,3872,3864,1,0,0,0,3872, + 3865,1,0,0,0,3872,3869,1,0,0,0,3873,3874,1,0,0,0,3874,3881,3,826, + 413,0,3875,3876,5,323,0,0,3876,3881,3,794,397,0,3877,3878,5,175, + 0,0,3878,3881,3,792,396,0,3879,3881,3,170,85,0,3880,3872,1,0,0,0, + 3880,3875,1,0,0,0,3880,3877,1,0,0,0,3880,3879,1,0,0,0,3881,307,1, + 0,0,0,3882,3887,3,310,155,0,3883,3884,5,6,0,0,3884,3886,3,310,155, + 0,3885,3883,1,0,0,0,3886,3889,1,0,0,0,3887,3885,1,0,0,0,3887,3888, + 1,0,0,0,3888,309,1,0,0,0,3889,3887,1,0,0,0,3890,3892,3,826,413,0, + 3891,3893,3,312,156,0,3892,3891,1,0,0,0,3892,3893,1,0,0,0,3893,311, + 1,0,0,0,3894,3895,5,11,0,0,3895,3897,3,832,416,0,3896,3894,1,0,0, + 0,3897,3898,1,0,0,0,3898,3896,1,0,0,0,3898,3899,1,0,0,0,3899,313, + 1,0,0,0,3900,3902,5,358,0,0,3901,3903,5,92,0,0,3902,3901,1,0,0,0, + 3902,3903,1,0,0,0,3903,3904,1,0,0,0,3904,3909,3,316,158,0,3905,3906, + 5,6,0,0,3906,3908,3,316,158,0,3907,3905,1,0,0,0,3908,3911,1,0,0, + 0,3909,3907,1,0,0,0,3909,3910,1,0,0,0,3910,3914,1,0,0,0,3911,3909, + 1,0,0,0,3912,3913,7,48,0,0,3913,3915,5,219,0,0,3914,3912,1,0,0,0, + 3914,3915,1,0,0,0,3915,3917,1,0,0,0,3916,3918,3,88,44,0,3917,3916, + 1,0,0,0,3917,3918,1,0,0,0,3918,315,1,0,0,0,3919,3921,5,81,0,0,3920, + 3919,1,0,0,0,3920,3921,1,0,0,0,3921,3922,1,0,0,0,3922,3924,3,778, + 389,0,3923,3925,5,9,0,0,3924,3923,1,0,0,0,3924,3925,1,0,0,0,3925, + 317,1,0,0,0,3926,3927,5,159,0,0,3927,3986,5,80,0,0,3928,3987,3,304, + 152,0,3929,3987,3,306,153,0,3930,3931,5,44,0,0,3931,3933,3,826,413, + 0,3932,3934,3,312,156,0,3933,3932,1,0,0,0,3933,3934,1,0,0,0,3934, + 3935,1,0,0,0,3935,3936,5,11,0,0,3936,3937,3,806,403,0,3937,3987, + 1,0,0,0,3938,3939,7,33,0,0,3939,3987,3,648,324,0,3940,3941,5,136, + 0,0,3941,3987,3,388,194,0,3942,3943,5,211,0,0,3943,3987,3,376,188, + 0,3944,3945,5,278,0,0,3945,3987,3,410,205,0,3946,3947,5,45,0,0,3947, + 3948,3,826,413,0,3948,3954,5,80,0,0,3949,3955,3,778,389,0,3950,3952, + 5,189,0,0,3951,3950,1,0,0,0,3951,3952,1,0,0,0,3952,3953,1,0,0,0, + 3953,3955,3,310,155,0,3954,3949,1,0,0,0,3954,3951,1,0,0,0,3955,3987, + 1,0,0,0,3956,3957,7,45,0,0,3957,3958,3,826,413,0,3958,3959,5,80, + 0,0,3959,3960,3,310,155,0,3960,3987,1,0,0,0,3961,3962,5,296,0,0, + 3962,3987,3,372,186,0,3963,3964,5,442,0,0,3964,3987,3,368,184,0, + 3965,3966,5,443,0,0,3966,3967,5,62,0,0,3967,3968,3,648,324,0,3968, + 3969,5,247,0,0,3969,3970,3,826,413,0,3970,3987,1,0,0,0,3971,3972, + 5,278,0,0,3972,3973,7,32,0,0,3973,3974,3,310,155,0,3974,3975,3,164, + 82,0,3975,3987,1,0,0,0,3976,3977,5,248,0,0,3977,3978,5,274,0,0,3978, + 3987,3,196,98,0,3979,3980,5,41,0,0,3980,3981,5,2,0,0,3981,3982,3, + 648,324,0,3982,3983,5,36,0,0,3983,3984,3,648,324,0,3984,3985,5,3, + 0,0,3985,3987,1,0,0,0,3986,3928,1,0,0,0,3986,3929,1,0,0,0,3986,3930, + 1,0,0,0,3986,3938,1,0,0,0,3986,3940,1,0,0,0,3986,3942,1,0,0,0,3986, + 3944,1,0,0,0,3986,3946,1,0,0,0,3986,3956,1,0,0,0,3986,3961,1,0,0, + 0,3986,3963,1,0,0,0,3986,3965,1,0,0,0,3986,3971,1,0,0,0,3986,3976, + 1,0,0,0,3986,3979,1,0,0,0,3987,3988,1,0,0,0,3988,3991,5,116,0,0, + 3989,3992,3,816,408,0,3990,3992,5,78,0,0,3991,3989,1,0,0,0,3991, + 3990,1,0,0,0,3992,319,1,0,0,0,3993,3994,5,327,0,0,3994,3997,5,246, + 0,0,3995,3996,5,62,0,0,3996,3998,3,58,29,0,3997,3995,1,0,0,0,3997, + 3998,1,0,0,0,3998,3999,1,0,0,0,3999,4017,5,80,0,0,4000,4001,7,33, + 0,0,4001,4018,3,648,324,0,4002,4003,5,136,0,0,4003,4018,3,388,194, + 0,4004,4005,5,44,0,0,4005,4018,3,806,403,0,4006,4007,5,211,0,0,4007, + 4018,3,376,188,0,4008,4009,5,248,0,0,4009,4010,5,274,0,0,4010,4018, + 3,196,98,0,4011,4012,5,296,0,0,4012,4018,3,372,186,0,4013,4014,5, + 442,0,0,4014,4018,3,368,184,0,4015,4018,3,304,152,0,4016,4018,3, + 306,153,0,4017,4000,1,0,0,0,4017,4002,1,0,0,0,4017,4004,1,0,0,0, + 4017,4006,1,0,0,0,4017,4008,1,0,0,0,4017,4011,1,0,0,0,4017,4013, + 1,0,0,0,4017,4015,1,0,0,0,4017,4016,1,0,0,0,4018,4019,1,0,0,0,4019, + 4022,5,116,0,0,4020,4023,3,816,408,0,4021,4023,5,78,0,0,4022,4020, + 1,0,0,0,4022,4021,1,0,0,0,4023,321,1,0,0,0,4024,4025,7,49,0,0,4025, + 4026,3,324,162,0,4026,323,1,0,0,0,4027,4029,7,50,0,0,4028,4027,1, + 0,0,0,4028,4029,1,0,0,0,4029,4031,1,0,0,0,4030,4032,3,326,163,0, + 4031,4030,1,0,0,0,4031,4032,1,0,0,0,4032,4033,1,0,0,0,4033,4071, + 3,826,413,0,4034,4036,7,51,0,0,4035,4034,1,0,0,0,4035,4036,1,0,0, + 0,4036,4037,1,0,0,0,4037,4039,3,820,410,0,4038,4040,3,326,163,0, + 4039,4038,1,0,0,0,4039,4040,1,0,0,0,4040,4041,1,0,0,0,4041,4042, + 3,826,413,0,4042,4071,1,0,0,0,4043,4045,5,210,0,0,4044,4046,3,820, + 410,0,4045,4044,1,0,0,0,4045,4046,1,0,0,0,4046,4048,1,0,0,0,4047, + 4049,3,326,163,0,4048,4047,1,0,0,0,4048,4049,1,0,0,0,4049,4050,1, + 0,0,0,4050,4071,3,826,413,0,4051,4053,5,210,0,0,4052,4051,1,0,0, + 0,4052,4053,1,0,0,0,4053,4054,1,0,0,0,4054,4056,5,30,0,0,4055,4057, + 3,326,163,0,4056,4055,1,0,0,0,4056,4057,1,0,0,0,4057,4058,1,0,0, + 0,4058,4071,3,826,413,0,4059,4064,5,144,0,0,4060,4062,5,30,0,0,4061, + 4060,1,0,0,0,4061,4062,1,0,0,0,4062,4065,1,0,0,0,4063,4065,3,820, + 410,0,4064,4061,1,0,0,0,4064,4063,1,0,0,0,4065,4067,1,0,0,0,4066, + 4068,3,326,163,0,4067,4066,1,0,0,0,4067,4068,1,0,0,0,4068,4069,1, + 0,0,0,4069,4071,3,826,413,0,4070,4028,1,0,0,0,4070,4035,1,0,0,0, + 4070,4043,1,0,0,0,4070,4052,1,0,0,0,4070,4059,1,0,0,0,4071,325,1, + 0,0,0,4072,4073,7,52,0,0,4073,327,1,0,0,0,4074,4075,5,65,0,0,4075, + 4076,3,332,166,0,4076,4077,5,80,0,0,4077,4078,3,338,169,0,4078,4079, + 5,94,0,0,4079,4083,3,340,170,0,4080,4081,5,105,0,0,4081,4082,5,65, + 0,0,4082,4084,5,279,0,0,4083,4080,1,0,0,0,4083,4084,1,0,0,0,4084, + 329,1,0,0,0,4085,4089,5,317,0,0,4086,4087,5,65,0,0,4087,4088,5,279, + 0,0,4088,4090,5,62,0,0,4089,4086,1,0,0,0,4089,4090,1,0,0,0,4090, + 4091,1,0,0,0,4091,4092,3,332,166,0,4092,4093,5,80,0,0,4093,4094, + 3,338,169,0,4094,4095,5,64,0,0,4095,4097,3,340,170,0,4096,4098,3, + 88,44,0,4097,4096,1,0,0,0,4097,4098,1,0,0,0,4098,331,1,0,0,0,4099, + 4104,3,336,168,0,4100,4101,5,6,0,0,4101,4103,3,336,168,0,4102,4100, + 1,0,0,0,4103,4106,1,0,0,0,4104,4102,1,0,0,0,4104,4105,1,0,0,0,4105, + 4123,1,0,0,0,4106,4104,1,0,0,0,4107,4109,5,30,0,0,4108,4110,5,294, + 0,0,4109,4108,1,0,0,0,4109,4110,1,0,0,0,4110,4112,1,0,0,0,4111,4113, + 3,138,69,0,4112,4111,1,0,0,0,4112,4113,1,0,0,0,4113,4123,1,0,0,0, + 4114,4119,3,334,167,0,4115,4116,5,6,0,0,4116,4118,3,334,167,0,4117, + 4115,1,0,0,0,4118,4121,1,0,0,0,4119,4117,1,0,0,0,4119,4120,1,0,0, + 0,4120,4123,1,0,0,0,4121,4119,1,0,0,0,4122,4099,1,0,0,0,4122,4107, + 1,0,0,0,4122,4114,1,0,0,0,4123,333,1,0,0,0,4124,4125,7,53,0,0,4125, + 335,1,0,0,0,4126,4131,5,88,0,0,4127,4131,5,86,0,0,4128,4131,5,46, + 0,0,4129,4131,3,826,413,0,4130,4126,1,0,0,0,4130,4127,1,0,0,0,4130, + 4128,1,0,0,0,4130,4129,1,0,0,0,4131,4133,1,0,0,0,4132,4134,3,138, + 69,0,4133,4132,1,0,0,0,4133,4134,1,0,0,0,4134,337,1,0,0,0,4135,4136, + 5,92,0,0,4136,4181,3,766,383,0,4137,4139,5,328,0,0,4138,4137,1,0, + 0,0,4138,4139,1,0,0,0,4139,4140,1,0,0,0,4140,4181,3,764,382,0,4141, + 4145,5,63,0,0,4142,4143,5,174,0,0,4143,4146,5,381,0,0,4144,4146, + 5,331,0,0,4145,4142,1,0,0,0,4145,4144,1,0,0,0,4146,4149,1,0,0,0, + 4147,4149,5,247,0,0,4148,4141,1,0,0,0,4148,4147,1,0,0,0,4149,4150, + 1,0,0,0,4150,4181,3,788,394,0,4151,4152,5,211,0,0,4152,4181,3,374, + 187,0,4153,4154,5,296,0,0,4154,4181,3,370,185,0,4155,4156,5,442, + 0,0,4156,4181,3,366,183,0,4157,4158,5,175,0,0,4158,4181,3,770,385, + 0,4159,4160,7,33,0,0,4160,4181,3,308,154,0,4161,4162,5,248,0,0,4162, + 4163,5,274,0,0,4163,4168,3,196,98,0,4164,4165,5,6,0,0,4165,4167, + 3,196,98,0,4166,4164,1,0,0,0,4167,4170,1,0,0,0,4168,4166,1,0,0,0, + 4168,4169,1,0,0,0,4169,4181,1,0,0,0,4170,4168,1,0,0,0,4171,4172, + 5,323,0,0,4172,4181,3,768,384,0,4173,4174,5,351,0,0,4174,4181,3, + 786,393,0,4175,4176,5,30,0,0,4176,4177,7,54,0,0,4177,4178,5,68,0, + 0,4178,4179,5,323,0,0,4179,4181,3,768,384,0,4180,4135,1,0,0,0,4180, + 4138,1,0,0,0,4180,4148,1,0,0,0,4180,4151,1,0,0,0,4180,4153,1,0,0, + 0,4180,4155,1,0,0,0,4180,4157,1,0,0,0,4180,4159,1,0,0,0,4180,4161, + 1,0,0,0,4180,4171,1,0,0,0,4180,4173,1,0,0,0,4180,4175,1,0,0,0,4181, + 339,1,0,0,0,4182,4184,5,66,0,0,4183,4182,1,0,0,0,4183,4184,1,0,0, + 0,4184,4185,1,0,0,0,4185,4186,3,822,411,0,4186,4194,1,0,0,0,4187, + 4189,5,6,0,0,4188,4190,5,66,0,0,4189,4188,1,0,0,0,4189,4190,1,0, + 0,0,4190,4191,1,0,0,0,4191,4193,3,822,411,0,4192,4187,1,0,0,0,4193, + 4196,1,0,0,0,4194,4192,1,0,0,0,4194,4195,1,0,0,0,4195,341,1,0,0, + 0,4196,4194,1,0,0,0,4197,4198,5,65,0,0,4198,4203,3,336,168,0,4199, + 4200,5,6,0,0,4200,4202,3,336,168,0,4201,4199,1,0,0,0,4202,4205,1, + 0,0,0,4203,4201,1,0,0,0,4203,4204,1,0,0,0,4204,4206,1,0,0,0,4205, + 4203,1,0,0,0,4206,4207,5,94,0,0,4207,4211,3,824,412,0,4208,4209, + 5,105,0,0,4209,4210,5,134,0,0,4210,4212,5,279,0,0,4211,4208,1,0, + 0,0,4211,4212,1,0,0,0,4212,4216,1,0,0,0,4213,4214,5,214,0,0,4214, + 4215,5,147,0,0,4215,4217,3,822,411,0,4216,4213,1,0,0,0,4216,4217, + 1,0,0,0,4217,343,1,0,0,0,4218,4222,5,317,0,0,4219,4220,5,134,0,0, + 4220,4221,5,279,0,0,4221,4223,5,62,0,0,4222,4219,1,0,0,0,4222,4223, + 1,0,0,0,4223,4224,1,0,0,0,4224,4229,3,336,168,0,4225,4226,5,6,0, + 0,4226,4228,3,336,168,0,4227,4225,1,0,0,0,4228,4231,1,0,0,0,4229, + 4227,1,0,0,0,4229,4230,1,0,0,0,4230,4232,1,0,0,0,4231,4229,1,0,0, + 0,4232,4233,5,64,0,0,4233,4237,3,824,412,0,4234,4235,5,214,0,0,4235, + 4236,5,147,0,0,4236,4238,3,822,411,0,4237,4234,1,0,0,0,4237,4238, + 1,0,0,0,4238,4240,1,0,0,0,4239,4241,3,88,44,0,4240,4239,1,0,0,0, + 4240,4241,1,0,0,0,4241,345,1,0,0,0,4242,4243,5,138,0,0,4243,4244, + 5,53,0,0,4244,4253,5,294,0,0,4245,4246,5,68,0,0,4246,4247,5,323, + 0,0,4247,4252,3,768,384,0,4248,4249,5,62,0,0,4249,4250,7,2,0,0,4250, + 4252,3,824,412,0,4251,4245,1,0,0,0,4251,4248,1,0,0,0,4252,4255,1, + 0,0,0,4253,4251,1,0,0,0,4253,4254,1,0,0,0,4254,4256,1,0,0,0,4255, + 4253,1,0,0,0,4256,4257,3,348,174,0,4257,347,1,0,0,0,4258,4259,5, + 65,0,0,4259,4260,3,332,166,0,4260,4261,5,80,0,0,4261,4262,3,350, + 175,0,4262,4263,5,94,0,0,4263,4267,3,340,170,0,4264,4265,5,105,0, + 0,4265,4266,5,65,0,0,4266,4268,5,279,0,0,4267,4264,1,0,0,0,4267, + 4268,1,0,0,0,4268,4284,1,0,0,0,4269,4273,5,317,0,0,4270,4271,5,65, + 0,0,4271,4272,5,279,0,0,4272,4274,5,62,0,0,4273,4270,1,0,0,0,4273, + 4274,1,0,0,0,4274,4275,1,0,0,0,4275,4276,3,332,166,0,4276,4277,5, + 80,0,0,4277,4278,3,350,175,0,4278,4279,5,64,0,0,4279,4281,3,340, + 170,0,4280,4282,3,88,44,0,4281,4280,1,0,0,0,4281,4282,1,0,0,0,4282, + 4284,1,0,0,0,4283,4258,1,0,0,0,4283,4269,1,0,0,0,4284,349,1,0,0, + 0,4285,4286,7,55,0,0,4286,351,1,0,0,0,4287,4289,5,46,0,0,4288,4290, + 5,98,0,0,4289,4288,1,0,0,0,4289,4290,1,0,0,0,4290,4291,1,0,0,0,4291, + 4293,5,226,0,0,4292,4294,5,109,0,0,4293,4292,1,0,0,0,4293,4294,1, + 0,0,0,4294,4296,1,0,0,0,4295,4297,3,288,144,0,4296,4295,1,0,0,0, + 4296,4297,1,0,0,0,4297,4299,1,0,0,0,4298,4300,3,826,413,0,4299,4298, + 1,0,0,0,4299,4300,1,0,0,0,4300,4301,1,0,0,0,4301,4302,5,80,0,0,4302, + 4304,3,620,310,0,4303,4305,3,164,82,0,4304,4303,1,0,0,0,4304,4305, + 1,0,0,0,4305,4306,1,0,0,0,4306,4309,3,354,177,0,4307,4308,5,441, + 0,0,4308,4310,3,354,177,0,4309,4307,1,0,0,0,4309,4310,1,0,0,0,4310, + 4316,1,0,0,0,4311,4313,5,273,0,0,4312,4314,5,77,0,0,4313,4312,1, + 0,0,0,4313,4314,1,0,0,0,4314,4315,1,0,0,0,4315,4317,5,56,0,0,4316, + 4311,1,0,0,0,4316,4317,1,0,0,0,4317,4319,1,0,0,0,4318,4320,3,94, + 47,0,4319,4318,1,0,0,0,4319,4320,1,0,0,0,4320,4322,1,0,0,0,4321, + 4323,3,170,85,0,4322,4321,1,0,0,0,4322,4323,1,0,0,0,4323,4325,1, + 0,0,0,4324,4326,3,634,317,0,4325,4324,1,0,0,0,4325,4326,1,0,0,0, + 4326,353,1,0,0,0,4327,4328,5,2,0,0,4328,4333,3,356,178,0,4329,4330, + 5,6,0,0,4330,4332,3,356,178,0,4331,4329,1,0,0,0,4332,4335,1,0,0, + 0,4333,4331,1,0,0,0,4333,4334,1,0,0,0,4334,4336,1,0,0,0,4335,4333, + 1,0,0,0,4336,4337,5,3,0,0,4337,355,1,0,0,0,4338,4345,3,806,403,0, + 4339,4345,3,684,342,0,4340,4341,5,2,0,0,4341,4342,3,670,335,0,4342, + 4343,5,3,0,0,4343,4345,1,0,0,0,4344,4338,1,0,0,0,4344,4339,1,0,0, + 0,4344,4340,1,0,0,0,4345,4347,1,0,0,0,4346,4348,3,90,45,0,4347,4346, + 1,0,0,0,4347,4348,1,0,0,0,4348,4355,1,0,0,0,4349,4351,3,310,155, + 0,4350,4349,1,0,0,0,4350,4351,1,0,0,0,4351,4356,1,0,0,0,4352,4353, + 3,310,155,0,4353,4354,3,92,46,0,4354,4356,1,0,0,0,4355,4350,1,0, + 0,0,4355,4352,1,0,0,0,4356,4358,1,0,0,0,4357,4359,7,56,0,0,4358, + 4357,1,0,0,0,4358,4359,1,0,0,0,4359,4362,1,0,0,0,4360,4361,5,273, + 0,0,4361,4363,7,57,0,0,4362,4360,1,0,0,0,4362,4363,1,0,0,0,4363, + 357,1,0,0,0,4364,4366,5,46,0,0,4365,4367,3,360,180,0,4366,4365,1, + 0,0,0,4366,4367,1,0,0,0,4367,4372,1,0,0,0,4368,4369,5,211,0,0,4369, + 4373,3,812,406,0,4370,4371,5,296,0,0,4371,4373,3,802,401,0,4372, + 4368,1,0,0,0,4372,4370,1,0,0,0,4373,4374,1,0,0,0,4374,4383,5,2,0, + 0,4375,4380,3,384,192,0,4376,4377,5,6,0,0,4377,4379,3,384,192,0, + 4378,4376,1,0,0,0,4379,4382,1,0,0,0,4380,4378,1,0,0,0,4380,4381, + 1,0,0,0,4381,4384,1,0,0,0,4382,4380,1,0,0,0,4383,4375,1,0,0,0,4383, + 4384,1,0,0,0,4384,4385,1,0,0,0,4385,4386,5,3,0,0,4386,4403,1,0,0, + 0,4387,4401,5,316,0,0,4388,4402,3,382,191,0,4389,4390,5,92,0,0,4390, + 4391,5,2,0,0,4391,4396,3,396,198,0,4392,4393,5,6,0,0,4393,4395,3, + 396,198,0,4394,4392,1,0,0,0,4395,4398,1,0,0,0,4396,4394,1,0,0,0, + 4396,4397,1,0,0,0,4397,4399,1,0,0,0,4398,4396,1,0,0,0,4399,4400, + 5,3,0,0,4400,4402,1,0,0,0,4401,4388,1,0,0,0,4401,4389,1,0,0,0,4402, + 4404,1,0,0,0,4403,4387,1,0,0,0,4403,4404,1,0,0,0,4404,4406,1,0,0, + 0,4405,4407,3,392,196,0,4406,4405,1,0,0,0,4407,4408,1,0,0,0,4408, + 4406,1,0,0,0,4408,4409,1,0,0,0,4409,4415,1,0,0,0,4410,4411,5,105, + 0,0,4411,4412,5,2,0,0,4412,4413,3,788,394,0,4413,4414,5,3,0,0,4414, + 4416,1,0,0,0,4415,4410,1,0,0,0,4415,4416,1,0,0,0,4416,359,1,0,0, + 0,4417,4418,5,82,0,0,4418,4419,5,311,0,0,4419,361,1,0,0,0,4420,4422, + 5,2,0,0,4421,4423,3,364,182,0,4422,4421,1,0,0,0,4422,4423,1,0,0, + 0,4423,4424,1,0,0,0,4424,4425,5,3,0,0,4425,363,1,0,0,0,4426,4431, + 3,378,189,0,4427,4428,5,6,0,0,4428,4430,3,378,189,0,4429,4427,1, + 0,0,0,4430,4433,1,0,0,0,4431,4429,1,0,0,0,4431,4432,1,0,0,0,4432, + 365,1,0,0,0,4433,4431,1,0,0,0,4434,4439,3,368,184,0,4435,4436,5, + 6,0,0,4436,4438,3,368,184,0,4437,4435,1,0,0,0,4438,4441,1,0,0,0, + 4439,4437,1,0,0,0,4439,4440,1,0,0,0,4440,367,1,0,0,0,4441,4439,1, + 0,0,0,4442,4443,3,798,399,0,4443,4444,3,362,181,0,4444,4448,1,0, + 0,0,4445,4448,3,842,421,0,4446,4448,3,784,392,0,4447,4442,1,0,0, + 0,4447,4445,1,0,0,0,4447,4446,1,0,0,0,4448,369,1,0,0,0,4449,4454, + 3,372,186,0,4450,4451,5,6,0,0,4451,4453,3,372,186,0,4452,4450,1, + 0,0,0,4453,4456,1,0,0,0,4454,4452,1,0,0,0,4454,4455,1,0,0,0,4455, + 371,1,0,0,0,4456,4454,1,0,0,0,4457,4458,3,800,400,0,4458,4459,3, + 362,181,0,4459,4463,1,0,0,0,4460,4463,3,842,421,0,4461,4463,3,784, + 392,0,4462,4457,1,0,0,0,4462,4460,1,0,0,0,4462,4461,1,0,0,0,4463, + 373,1,0,0,0,4464,4469,3,376,188,0,4465,4466,5,6,0,0,4466,4468,3, + 376,188,0,4467,4465,1,0,0,0,4468,4471,1,0,0,0,4469,4467,1,0,0,0, + 4469,4470,1,0,0,0,4470,375,1,0,0,0,4471,4469,1,0,0,0,4472,4473,3, + 814,407,0,4473,4474,3,362,181,0,4474,4478,1,0,0,0,4475,4478,3,842, + 421,0,4476,4478,3,784,392,0,4477,4472,1,0,0,0,4477,4475,1,0,0,0, + 4477,4476,1,0,0,0,4478,377,1,0,0,0,4479,4481,3,380,190,0,4480,4482, + 3,828,414,0,4481,4480,1,0,0,0,4481,4482,1,0,0,0,4482,4488,1,0,0, + 0,4483,4485,3,828,414,0,4484,4486,3,380,190,0,4485,4484,1,0,0,0, + 4485,4486,1,0,0,0,4486,4488,1,0,0,0,4487,4479,1,0,0,0,4487,4483, + 1,0,0,0,4487,4488,1,0,0,0,4488,4489,1,0,0,0,4489,4490,3,382,191, + 0,4490,379,1,0,0,0,4491,4493,5,68,0,0,4492,4494,5,453,0,0,4493,4492, + 1,0,0,0,4493,4494,1,0,0,0,4494,4499,1,0,0,0,4495,4499,5,453,0,0, + 4496,4499,5,400,0,0,4497,4499,5,101,0,0,4498,4491,1,0,0,0,4498,4495, + 1,0,0,0,4498,4496,1,0,0,0,4498,4497,1,0,0,0,4499,381,1,0,0,0,4500, + 4510,3,648,324,0,4501,4503,5,415,0,0,4502,4501,1,0,0,0,4502,4503, + 1,0,0,0,4503,4504,1,0,0,0,4504,4505,3,828,414,0,4505,4506,3,312, + 156,0,4506,4507,5,27,0,0,4507,4508,5,360,0,0,4508,4510,1,0,0,0,4509, + 4500,1,0,0,0,4509,4502,1,0,0,0,4510,383,1,0,0,0,4511,4514,3,378, + 189,0,4512,4513,7,58,0,0,4513,4515,3,670,335,0,4514,4512,1,0,0,0, + 4514,4515,1,0,0,0,4515,385,1,0,0,0,4516,4526,5,2,0,0,4517,4527,5, + 9,0,0,4518,4520,3,364,182,0,4519,4518,1,0,0,0,4519,4520,1,0,0,0, + 4520,4524,1,0,0,0,4521,4522,5,83,0,0,4522,4523,5,147,0,0,4523,4525, + 3,364,182,0,4524,4521,1,0,0,0,4524,4525,1,0,0,0,4525,4527,1,0,0, + 0,4526,4517,1,0,0,0,4526,4519,1,0,0,0,4527,4528,1,0,0,0,4528,4529, + 5,3,0,0,4529,387,1,0,0,0,4530,4531,3,814,407,0,4531,4532,3,386,193, + 0,4532,389,1,0,0,0,4533,4534,5,316,0,0,4534,4537,5,78,0,0,4535,4537, + 5,149,0,0,4536,4533,1,0,0,0,4536,4535,1,0,0,0,4537,4538,1,0,0,0, + 4538,4539,5,80,0,0,4539,4540,5,78,0,0,4540,4563,5,458,0,0,4541,4563, + 5,346,0,0,4542,4563,5,222,0,0,4543,4563,5,338,0,0,4544,4563,5,377, + 0,0,4545,4547,5,205,0,0,4546,4545,1,0,0,0,4546,4547,1,0,0,0,4547, + 4548,1,0,0,0,4548,4549,5,327,0,0,4549,4563,7,59,0,0,4550,4563,5, + 250,0,0,4551,4552,5,77,0,0,4552,4563,5,250,0,0,4553,4554,7,60,0, + 0,4554,4563,3,196,98,0,4555,4556,5,459,0,0,4556,4563,3,310,155,0, + 4557,4558,5,333,0,0,4558,4563,3,42,21,0,4559,4563,3,60,30,0,4560, + 4561,5,460,0,0,4561,4563,3,826,413,0,4562,4536,1,0,0,0,4562,4541, + 1,0,0,0,4562,4542,1,0,0,0,4562,4543,1,0,0,0,4562,4544,1,0,0,0,4562, + 4546,1,0,0,0,4562,4550,1,0,0,0,4562,4551,1,0,0,0,4562,4553,1,0,0, + 0,4562,4555,1,0,0,0,4562,4557,1,0,0,0,4562,4559,1,0,0,0,4562,4560, + 1,0,0,0,4563,391,1,0,0,0,4564,4565,5,36,0,0,4565,4566,3,816,408, + 0,4566,4567,3,456,228,0,4567,4600,1,0,0,0,4568,4569,5,247,0,0,4569, + 4600,3,58,29,0,4570,4571,5,443,0,0,4571,4572,5,62,0,0,4572,4573, + 5,360,0,0,4573,4580,3,648,324,0,4574,4575,5,6,0,0,4575,4576,5,62, + 0,0,4576,4577,5,360,0,0,4577,4579,3,648,324,0,4578,4574,1,0,0,0, + 4579,4582,1,0,0,0,4580,4578,1,0,0,0,4580,4581,1,0,0,0,4581,4600, + 1,0,0,0,4582,4580,1,0,0,0,4583,4600,5,104,0,0,4584,4585,5,333,0, + 0,4585,4592,3,826,413,0,4586,4587,5,94,0,0,4587,4593,3,826,413,0, + 4588,4589,5,10,0,0,4589,4593,3,826,413,0,4590,4591,5,64,0,0,4591, + 4593,5,434,0,0,4592,4586,1,0,0,0,4592,4588,1,0,0,0,4592,4590,1,0, + 0,0,4593,4600,1,0,0,0,4594,4595,5,36,0,0,4595,4600,3,826,413,0,4596, + 4600,3,4,2,0,4597,4600,3,390,195,0,4598,4600,3,826,413,0,4599,4564, + 1,0,0,0,4599,4568,1,0,0,0,4599,4570,1,0,0,0,4599,4583,1,0,0,0,4599, + 4584,1,0,0,0,4599,4594,1,0,0,0,4599,4596,1,0,0,0,4599,4597,1,0,0, + 0,4599,4598,1,0,0,0,4600,393,1,0,0,0,4601,4602,5,105,0,0,4602,4603, + 3,278,139,0,4603,395,1,0,0,0,4604,4605,3,806,403,0,4605,4606,3,382, + 191,0,4606,397,1,0,0,0,4607,4614,5,138,0,0,4608,4609,5,211,0,0,4609, + 4615,3,376,188,0,4610,4611,5,296,0,0,4611,4615,3,372,186,0,4612, + 4613,5,442,0,0,4613,4615,3,368,184,0,4614,4608,1,0,0,0,4614,4610, + 1,0,0,0,4614,4612,1,0,0,0,4615,4617,1,0,0,0,4616,4618,3,390,195, + 0,4617,4616,1,0,0,0,4618,4619,1,0,0,0,4619,4617,1,0,0,0,4619,4620, + 1,0,0,0,4620,4622,1,0,0,0,4621,4623,5,315,0,0,4622,4621,1,0,0,0, + 4622,4623,1,0,0,0,4623,399,1,0,0,0,4624,4640,5,191,0,0,4625,4627, + 5,211,0,0,4626,4628,3,416,208,0,4627,4626,1,0,0,0,4627,4628,1,0, + 0,0,4628,4629,1,0,0,0,4629,4641,3,374,187,0,4630,4632,5,296,0,0, + 4631,4633,3,416,208,0,4632,4631,1,0,0,0,4632,4633,1,0,0,0,4633,4634, + 1,0,0,0,4634,4641,3,370,185,0,4635,4637,5,442,0,0,4636,4638,3,416, + 208,0,4637,4636,1,0,0,0,4637,4638,1,0,0,0,4638,4639,1,0,0,0,4639, + 4641,3,366,183,0,4640,4625,1,0,0,0,4640,4630,1,0,0,0,4640,4635,1, + 0,0,0,4641,4643,1,0,0,0,4642,4644,3,88,44,0,4643,4642,1,0,0,0,4643, + 4644,1,0,0,0,4644,401,1,0,0,0,4645,4646,5,191,0,0,4646,4648,5,136, + 0,0,4647,4649,3,416,208,0,4648,4647,1,0,0,0,4648,4649,1,0,0,0,4649, + 4650,1,0,0,0,4650,4655,3,388,194,0,4651,4652,5,6,0,0,4652,4654,3, + 388,194,0,4653,4651,1,0,0,0,4654,4657,1,0,0,0,4655,4653,1,0,0,0, + 4655,4656,1,0,0,0,4656,4659,1,0,0,0,4657,4655,1,0,0,0,4658,4660, + 3,88,44,0,4659,4658,1,0,0,0,4659,4660,1,0,0,0,4660,403,1,0,0,0,4661, + 4662,5,191,0,0,4662,4664,5,278,0,0,4663,4665,3,416,208,0,4664,4663, + 1,0,0,0,4664,4665,1,0,0,0,4665,4666,1,0,0,0,4666,4671,3,410,205, + 0,4667,4668,5,6,0,0,4668,4670,3,410,205,0,4669,4667,1,0,0,0,4670, + 4673,1,0,0,0,4671,4669,1,0,0,0,4671,4672,1,0,0,0,4672,4675,1,0,0, + 0,4673,4671,1,0,0,0,4674,4676,3,88,44,0,4675,4674,1,0,0,0,4675,4676, + 1,0,0,0,4676,405,1,0,0,0,4677,4690,5,2,0,0,4678,4681,3,648,324,0, + 4679,4680,5,6,0,0,4680,4682,3,648,324,0,4681,4679,1,0,0,0,4681,4682, + 1,0,0,0,4682,4691,1,0,0,0,4683,4684,5,407,0,0,4684,4685,5,6,0,0, + 4685,4691,3,648,324,0,4686,4687,3,648,324,0,4687,4688,5,6,0,0,4688, + 4689,5,407,0,0,4689,4691,1,0,0,0,4690,4678,1,0,0,0,4690,4683,1,0, + 0,0,4690,4686,1,0,0,0,4691,4692,1,0,0,0,4692,4693,5,3,0,0,4693,407, + 1,0,0,0,4694,4695,3,826,413,0,4695,4696,5,11,0,0,4696,4698,1,0,0, + 0,4697,4694,1,0,0,0,4698,4701,1,0,0,0,4699,4697,1,0,0,0,4699,4700, + 1,0,0,0,4700,4702,1,0,0,0,4701,4699,1,0,0,0,4702,4703,3,718,359, + 0,4703,409,1,0,0,0,4704,4705,3,408,204,0,4705,4706,3,406,203,0,4706, + 411,1,0,0,0,4707,4711,5,57,0,0,4708,4712,3,816,408,0,4709,4710,5, + 247,0,0,4710,4712,3,58,29,0,4711,4708,1,0,0,0,4711,4709,1,0,0,0, + 4712,4713,1,0,0,0,4713,4711,1,0,0,0,4713,4714,1,0,0,0,4714,413,1, + 0,0,0,4715,4716,5,46,0,0,4716,4717,5,41,0,0,4717,4718,5,2,0,0,4718, + 4719,3,648,324,0,4719,4720,5,36,0,0,4720,4721,3,648,324,0,4721,4738, + 5,3,0,0,4722,4723,5,379,0,0,4723,4726,5,211,0,0,4724,4725,5,36,0, + 0,4725,4727,7,61,0,0,4726,4724,1,0,0,0,4726,4727,1,0,0,0,4727,4739, + 1,0,0,0,4728,4732,5,105,0,0,4729,4730,5,211,0,0,4730,4733,3,376, + 188,0,4731,4733,5,400,0,0,4732,4729,1,0,0,0,4732,4731,1,0,0,0,4733, + 4736,1,0,0,0,4734,4735,5,36,0,0,4735,4737,7,61,0,0,4736,4734,1,0, + 0,0,4736,4737,1,0,0,0,4737,4739,1,0,0,0,4738,4722,1,0,0,0,4738,4728, + 1,0,0,0,4739,415,1,0,0,0,4740,4741,5,220,0,0,4741,4742,5,396,0,0, + 4742,417,1,0,0,0,4743,4745,5,46,0,0,4744,4746,3,360,180,0,4745,4744, + 1,0,0,0,4745,4746,1,0,0,0,4746,4747,1,0,0,0,4747,4748,5,443,0,0, + 4748,4749,5,62,0,0,4749,4750,3,648,324,0,4750,4751,5,247,0,0,4751, + 4752,3,826,413,0,4752,4767,5,2,0,0,4753,4754,5,64,0,0,4754,4758, + 3,420,210,0,4755,4756,5,6,0,0,4756,4757,5,94,0,0,4757,4759,3,420, + 210,0,4758,4755,1,0,0,0,4758,4759,1,0,0,0,4759,4768,1,0,0,0,4760, + 4761,5,94,0,0,4761,4765,3,420,210,0,4762,4763,5,6,0,0,4763,4764, + 5,64,0,0,4764,4766,3,420,210,0,4765,4762,1,0,0,0,4765,4766,1,0,0, + 0,4766,4768,1,0,0,0,4767,4753,1,0,0,0,4767,4760,1,0,0,0,4768,4769, + 1,0,0,0,4769,4770,5,3,0,0,4770,419,1,0,0,0,4771,4772,5,461,0,0,4772, + 4773,5,105,0,0,4773,4774,5,211,0,0,4774,4775,3,376,188,0,4775,421, + 1,0,0,0,4776,4787,5,306,0,0,4777,4778,5,2,0,0,4778,4783,5,128,0, + 0,4779,4780,5,6,0,0,4780,4782,5,128,0,0,4781,4779,1,0,0,0,4782,4785, + 1,0,0,0,4783,4781,1,0,0,0,4783,4784,1,0,0,0,4784,4786,1,0,0,0,4785, + 4783,1,0,0,0,4786,4788,5,3,0,0,4787,4777,1,0,0,0,4787,4788,1,0,0, + 0,4788,4814,1,0,0,0,4789,4791,5,226,0,0,4790,4792,5,109,0,0,4791, + 4790,1,0,0,0,4791,4792,1,0,0,0,4792,4793,1,0,0,0,4793,4815,3,784, + 392,0,4794,4796,5,92,0,0,4795,4797,5,109,0,0,4796,4795,1,0,0,0,4796, + 4797,1,0,0,0,4797,4798,1,0,0,0,4798,4815,3,778,389,0,4799,4801,5, + 323,0,0,4800,4802,5,109,0,0,4801,4800,1,0,0,0,4801,4802,1,0,0,0, + 4802,4803,1,0,0,0,4803,4815,3,794,397,0,4804,4806,5,349,0,0,4805, + 4807,5,109,0,0,4806,4805,1,0,0,0,4806,4807,1,0,0,0,4807,4808,1,0, + 0,0,4808,4815,3,826,413,0,4809,4811,5,175,0,0,4810,4812,5,109,0, + 0,4811,4810,1,0,0,0,4811,4812,1,0,0,0,4812,4813,1,0,0,0,4813,4815, + 3,792,396,0,4814,4789,1,0,0,0,4814,4794,1,0,0,0,4814,4799,1,0,0, + 0,4814,4804,1,0,0,0,4814,4809,1,0,0,0,4815,423,1,0,0,0,4816,4817, + 5,138,0,0,4817,4818,3,170,85,0,4818,4819,7,16,0,0,4819,4820,3,92, + 46,0,4820,425,1,0,0,0,4821,4826,5,138,0,0,4822,4823,5,136,0,0,4823, + 4827,3,388,194,0,4824,4825,5,442,0,0,4825,4827,3,368,184,0,4826, + 4822,1,0,0,0,4826,4824,1,0,0,0,4827,4828,1,0,0,0,4828,4829,5,309, + 0,0,4829,4830,5,94,0,0,4830,4831,3,826,413,0,4831,5029,1,0,0,0,4832, + 4833,5,138,0,0,4833,4834,5,175,0,0,4834,4835,3,792,396,0,4835,4836, + 5,309,0,0,4836,4837,5,94,0,0,4837,4838,3,790,395,0,4838,5029,1,0, + 0,0,4839,4840,5,138,0,0,4840,4841,7,62,0,0,4841,4842,3,310,155,0, + 4842,4843,5,309,0,0,4843,4844,5,94,0,0,4844,4845,3,826,413,0,4845, + 5029,1,0,0,0,4846,4847,5,138,0,0,4847,4848,5,211,0,0,4848,4849,3, + 376,188,0,4849,4850,5,309,0,0,4850,4851,5,94,0,0,4851,4852,3,812, + 406,0,4852,5029,1,0,0,0,4853,4854,5,138,0,0,4854,4855,5,278,0,0, + 4855,4856,7,32,0,0,4856,4857,3,310,155,0,4857,4858,3,164,82,0,4858, + 4859,5,309,0,0,4859,4860,5,94,0,0,4860,4861,3,826,413,0,4861,5029, + 1,0,0,0,4862,4863,5,138,0,0,4863,4864,5,296,0,0,4864,4865,3,372, + 186,0,4865,4866,5,309,0,0,4866,4867,5,94,0,0,4867,4868,3,802,401, + 0,4868,5029,1,0,0,0,4869,4870,5,138,0,0,4870,4871,5,323,0,0,4871, + 4872,3,794,397,0,4872,4873,5,309,0,0,4873,4874,5,94,0,0,4874,4875, + 3,32,16,0,4875,5029,1,0,0,0,4876,4877,5,138,0,0,4877,4879,7,63,0, + 0,4878,4880,3,416,208,0,4879,4878,1,0,0,0,4879,4880,1,0,0,0,4880, + 4881,1,0,0,0,4881,4882,3,784,392,0,4882,4883,5,309,0,0,4883,4884, + 5,94,0,0,4884,4885,3,826,413,0,4885,5029,1,0,0,0,4886,4888,5,138, + 0,0,4887,4889,5,259,0,0,4888,4887,1,0,0,0,4888,4889,1,0,0,0,4889, + 4890,1,0,0,0,4890,4892,5,376,0,0,4891,4893,3,416,208,0,4892,4891, + 1,0,0,0,4892,4893,1,0,0,0,4893,4894,1,0,0,0,4894,4895,3,782,391, + 0,4895,4896,5,309,0,0,4896,4897,5,94,0,0,4897,4898,3,780,390,0,4898, + 5029,1,0,0,0,4899,4901,5,138,0,0,4900,4902,5,63,0,0,4901,4900,1, + 0,0,0,4901,4902,1,0,0,0,4902,4903,1,0,0,0,4903,4905,5,92,0,0,4904, + 4906,3,416,208,0,4905,4904,1,0,0,0,4905,4906,1,0,0,0,4906,4907,1, + 0,0,0,4907,4908,3,620,310,0,4908,4909,5,309,0,0,4909,4910,5,94,0, + 0,4910,4911,3,776,388,0,4911,5029,1,0,0,0,4912,4937,5,138,0,0,4913, + 4915,5,63,0,0,4914,4913,1,0,0,0,4914,4915,1,0,0,0,4915,4916,1,0, + 0,0,4916,4918,5,92,0,0,4917,4919,3,416,208,0,4918,4917,1,0,0,0,4918, + 4919,1,0,0,0,4919,4920,1,0,0,0,4920,4921,3,620,310,0,4921,4923,5, + 309,0,0,4922,4924,5,44,0,0,4923,4922,1,0,0,0,4923,4924,1,0,0,0,4924, + 4938,1,0,0,0,4925,4927,5,259,0,0,4926,4925,1,0,0,0,4926,4927,1,0, + 0,0,4927,4928,1,0,0,0,4928,4930,5,376,0,0,4929,4931,3,416,208,0, + 4930,4929,1,0,0,0,4930,4931,1,0,0,0,4931,4932,1,0,0,0,4932,4933, + 3,782,391,0,4933,4935,5,309,0,0,4934,4936,5,44,0,0,4935,4934,1,0, + 0,0,4935,4936,1,0,0,0,4936,4938,1,0,0,0,4937,4914,1,0,0,0,4937,4926, + 1,0,0,0,4938,4939,1,0,0,0,4939,4940,3,806,403,0,4940,4941,5,94,0, + 0,4941,4942,3,810,405,0,4942,5029,1,0,0,0,4943,4951,5,138,0,0,4944, + 4946,5,92,0,0,4945,4947,3,416,208,0,4946,4945,1,0,0,0,4946,4947, + 1,0,0,0,4947,4948,1,0,0,0,4948,4952,3,620,310,0,4949,4950,5,189, + 0,0,4950,4952,3,310,155,0,4951,4944,1,0,0,0,4951,4949,1,0,0,0,4952, + 4953,1,0,0,0,4953,4954,5,309,0,0,4954,4955,5,45,0,0,4955,4956,3, + 826,413,0,4956,4957,5,94,0,0,4957,4958,3,826,413,0,4958,5029,1,0, + 0,0,4959,4966,5,138,0,0,4960,4962,5,445,0,0,4961,4963,3,416,208, + 0,4962,4961,1,0,0,0,4962,4963,1,0,0,0,4963,4967,1,0,0,0,4964,4967, + 5,321,0,0,4965,4967,5,357,0,0,4966,4960,1,0,0,0,4966,4964,1,0,0, + 0,4966,4965,1,0,0,0,4967,4968,1,0,0,0,4968,4969,3,826,413,0,4969, + 4970,5,80,0,0,4970,4971,3,784,392,0,4971,4972,5,309,0,0,4972,4973, + 5,94,0,0,4973,4974,3,826,413,0,4974,5029,1,0,0,0,4975,4988,5,138, + 0,0,4976,4977,5,63,0,0,4977,4978,5,174,0,0,4978,4989,5,381,0,0,4979, + 4981,5,295,0,0,4980,4979,1,0,0,0,4980,4981,1,0,0,0,4981,4982,1,0, + 0,0,4982,4989,5,247,0,0,4983,4989,5,452,0,0,4984,4989,5,331,0,0, + 4985,4989,5,451,0,0,4986,4987,5,198,0,0,4987,4989,5,357,0,0,4988, + 4976,1,0,0,0,4988,4980,1,0,0,0,4988,4983,1,0,0,0,4988,4984,1,0,0, + 0,4988,4985,1,0,0,0,4988,4986,1,0,0,0,4989,4990,1,0,0,0,4990,4991, + 3,826,413,0,4991,4992,5,309,0,0,4992,4993,5,94,0,0,4993,4994,3,826, + 413,0,4994,5029,1,0,0,0,4995,4996,5,138,0,0,4996,4997,7,46,0,0,4997, + 4998,3,822,411,0,4998,4999,5,309,0,0,4999,5000,5,94,0,0,5000,5001, + 3,822,411,0,5001,5029,1,0,0,0,5002,5003,5,138,0,0,5003,5004,3,170, + 85,0,5004,5005,5,309,0,0,5005,5006,5,94,0,0,5006,5007,3,774,387, + 0,5007,5029,1,0,0,0,5008,5009,5,138,0,0,5009,5010,5,355,0,0,5010, + 5011,5,325,0,0,5011,5012,7,42,0,0,5012,5013,3,310,155,0,5013,5014, + 5,309,0,0,5014,5015,5,94,0,0,5015,5016,3,826,413,0,5016,5029,1,0, + 0,0,5017,5018,5,138,0,0,5018,5019,5,360,0,0,5019,5020,3,310,155, + 0,5020,5021,5,309,0,0,5021,5022,5,143,0,0,5022,5023,3,826,413,0, + 5023,5024,5,94,0,0,5024,5026,3,826,413,0,5025,5027,3,88,44,0,5026, + 5025,1,0,0,0,5026,5027,1,0,0,0,5027,5029,1,0,0,0,5028,4821,1,0,0, + 0,5028,4832,1,0,0,0,5028,4839,1,0,0,0,5028,4846,1,0,0,0,5028,4853, + 1,0,0,0,5028,4862,1,0,0,0,5028,4869,1,0,0,0,5028,4876,1,0,0,0,5028, + 4886,1,0,0,0,5028,4899,1,0,0,0,5028,4912,1,0,0,0,5028,4943,1,0,0, + 0,5028,4959,1,0,0,0,5028,4975,1,0,0,0,5028,4995,1,0,0,0,5028,5002, + 1,0,0,0,5028,5008,1,0,0,0,5028,5017,1,0,0,0,5029,427,1,0,0,0,5030, + 5047,5,138,0,0,5031,5032,5,211,0,0,5032,5048,3,376,188,0,5033,5034, + 5,296,0,0,5034,5048,3,372,186,0,5035,5036,5,442,0,0,5036,5048,3, + 368,184,0,5037,5038,5,357,0,0,5038,5039,3,826,413,0,5039,5040,5, + 80,0,0,5040,5041,3,784,392,0,5041,5048,1,0,0,0,5042,5043,5,259,0, + 0,5043,5044,5,376,0,0,5044,5048,3,782,391,0,5045,5046,5,226,0,0, + 5046,5048,3,784,392,0,5047,5031,1,0,0,0,5047,5033,1,0,0,0,5047,5035, + 1,0,0,0,5047,5037,1,0,0,0,5047,5042,1,0,0,0,5047,5045,1,0,0,0,5048, + 5050,1,0,0,0,5049,5051,5,269,0,0,5050,5049,1,0,0,0,5050,5051,1,0, + 0,0,5051,5052,1,0,0,0,5052,5053,5,462,0,0,5053,5054,5,80,0,0,5054, + 5055,5,204,0,0,5055,5056,3,826,413,0,5056,429,1,0,0,0,5057,5096, + 5,138,0,0,5058,5059,5,136,0,0,5059,5097,3,388,194,0,5060,5061,5, + 204,0,0,5061,5097,3,826,413,0,5062,5063,5,211,0,0,5063,5097,3,376, + 188,0,5064,5065,5,278,0,0,5065,5097,3,410,205,0,5066,5067,5,278, + 0,0,5067,5068,7,32,0,0,5068,5069,3,310,155,0,5069,5070,3,164,82, + 0,5070,5097,1,0,0,0,5071,5072,5,296,0,0,5072,5097,3,372,186,0,5073, + 5074,5,442,0,0,5074,5097,3,368,184,0,5075,5077,5,328,0,0,5076,5078, + 3,416,208,0,5077,5076,1,0,0,0,5077,5078,1,0,0,0,5078,5079,1,0,0, + 0,5079,5097,3,784,392,0,5080,5082,5,259,0,0,5081,5080,1,0,0,0,5081, + 5082,1,0,0,0,5082,5083,1,0,0,0,5083,5085,5,376,0,0,5084,5086,3,416, + 208,0,5085,5084,1,0,0,0,5085,5086,1,0,0,0,5086,5087,1,0,0,0,5087, + 5097,3,782,391,0,5088,5090,5,63,0,0,5089,5088,1,0,0,0,5089,5090, + 1,0,0,0,5090,5091,1,0,0,0,5091,5093,5,92,0,0,5092,5094,3,416,208, + 0,5093,5092,1,0,0,0,5093,5094,1,0,0,0,5094,5095,1,0,0,0,5095,5097, + 3,620,310,0,5096,5058,1,0,0,0,5096,5060,1,0,0,0,5096,5062,1,0,0, + 0,5096,5064,1,0,0,0,5096,5066,1,0,0,0,5096,5071,1,0,0,0,5096,5073, + 1,0,0,0,5096,5075,1,0,0,0,5096,5081,1,0,0,0,5096,5089,1,0,0,0,5097, + 5098,1,0,0,0,5098,5099,5,333,0,0,5099,5100,5,323,0,0,5100,5101,3, + 794,397,0,5101,5119,1,0,0,0,5102,5111,5,138,0,0,5103,5104,5,355, + 0,0,5104,5105,5,325,0,0,5105,5112,7,42,0,0,5106,5112,5,108,0,0,5107, + 5112,5,168,0,0,5108,5112,5,189,0,0,5109,5112,5,342,0,0,5110,5112, + 5,360,0,0,5111,5103,1,0,0,0,5111,5106,1,0,0,0,5111,5107,1,0,0,0, + 5111,5108,1,0,0,0,5111,5109,1,0,0,0,5111,5110,1,0,0,0,5112,5113, + 1,0,0,0,5113,5114,3,310,155,0,5114,5115,5,333,0,0,5115,5116,5,323, + 0,0,5116,5117,3,794,397,0,5117,5119,1,0,0,0,5118,5057,1,0,0,0,5118, + 5102,1,0,0,0,5119,431,1,0,0,0,5120,5121,5,138,0,0,5121,5122,5,278, + 0,0,5122,5123,3,410,205,0,5123,5124,5,333,0,0,5124,5125,3,434,217, + 0,5125,433,1,0,0,0,5126,5127,5,2,0,0,5127,5132,3,436,218,0,5128, + 5129,5,6,0,0,5129,5131,3,436,218,0,5130,5128,1,0,0,0,5131,5134,1, + 0,0,0,5132,5130,1,0,0,0,5132,5133,1,0,0,0,5133,5135,1,0,0,0,5134, + 5132,1,0,0,0,5135,5136,5,3,0,0,5136,435,1,0,0,0,5137,5138,3,832, + 416,0,5138,5145,5,10,0,0,5139,5146,5,407,0,0,5140,5146,3,382,191, + 0,5141,5146,3,844,422,0,5142,5146,3,724,362,0,5143,5146,3,196,98, + 0,5144,5146,3,816,408,0,5145,5139,1,0,0,0,5145,5140,1,0,0,0,5145, + 5141,1,0,0,0,5145,5142,1,0,0,0,5145,5143,1,0,0,0,5145,5144,1,0,0, + 0,5146,437,1,0,0,0,5147,5148,5,138,0,0,5148,5149,5,360,0,0,5149, + 5150,3,310,155,0,5150,5151,5,333,0,0,5151,5152,3,434,217,0,5152, + 439,1,0,0,0,5153,5154,5,138,0,0,5154,5155,5,278,0,0,5155,5156,7, + 32,0,0,5156,5157,3,310,155,0,5157,5158,3,164,82,0,5158,5159,5,282, + 0,0,5159,5160,5,94,0,0,5160,5161,3,822,411,0,5161,5228,1,0,0,0,5162, + 5189,5,138,0,0,5163,5164,5,136,0,0,5164,5190,3,388,194,0,5165,5166, + 5,175,0,0,5166,5190,3,792,396,0,5167,5168,5,211,0,0,5168,5190,3, + 376,188,0,5169,5171,5,295,0,0,5170,5169,1,0,0,0,5170,5171,1,0,0, + 0,5171,5172,1,0,0,0,5172,5173,5,247,0,0,5173,5190,3,826,413,0,5174, + 5175,5,248,0,0,5175,5176,5,274,0,0,5176,5190,3,196,98,0,5177,5178, + 5,248,0,0,5178,5179,5,274,0,0,5179,5190,3,196,98,0,5180,5181,5,278, + 0,0,5181,5190,3,410,205,0,5182,5183,5,296,0,0,5183,5190,3,372,186, + 0,5184,5185,5,442,0,0,5185,5190,3,368,184,0,5186,5187,5,323,0,0, + 5187,5190,3,794,397,0,5188,5190,3,170,85,0,5189,5163,1,0,0,0,5189, + 5165,1,0,0,0,5189,5167,1,0,0,0,5189,5170,1,0,0,0,5189,5174,1,0,0, + 0,5189,5177,1,0,0,0,5189,5180,1,0,0,0,5189,5182,1,0,0,0,5189,5184, + 1,0,0,0,5189,5186,1,0,0,0,5189,5188,1,0,0,0,5190,5191,1,0,0,0,5191, + 5192,5,282,0,0,5192,5193,5,94,0,0,5193,5194,3,822,411,0,5194,5228, + 1,0,0,0,5195,5204,5,138,0,0,5196,5197,5,355,0,0,5197,5198,5,325, + 0,0,5198,5205,7,64,0,0,5199,5205,5,108,0,0,5200,5205,5,168,0,0,5201, + 5205,5,189,0,0,5202,5205,5,360,0,0,5203,5205,5,342,0,0,5204,5196, + 1,0,0,0,5204,5199,1,0,0,0,5204,5200,1,0,0,0,5204,5201,1,0,0,0,5204, + 5202,1,0,0,0,5204,5203,1,0,0,0,5205,5206,1,0,0,0,5206,5207,3,310, + 155,0,5207,5208,5,282,0,0,5208,5209,5,94,0,0,5209,5210,3,822,411, + 0,5210,5228,1,0,0,0,5211,5220,5,138,0,0,5212,5221,5,331,0,0,5213, + 5214,5,63,0,0,5214,5215,5,174,0,0,5215,5221,5,381,0,0,5216,5217, + 5,198,0,0,5217,5221,5,357,0,0,5218,5221,5,452,0,0,5219,5221,5,451, + 0,0,5220,5212,1,0,0,0,5220,5213,1,0,0,0,5220,5216,1,0,0,0,5220,5218, + 1,0,0,0,5220,5219,1,0,0,0,5221,5222,1,0,0,0,5222,5223,3,826,413, + 0,5223,5224,5,282,0,0,5224,5225,5,94,0,0,5225,5226,3,822,411,0,5226, + 5228,1,0,0,0,5227,5153,1,0,0,0,5227,5162,1,0,0,0,5227,5195,1,0,0, + 0,5227,5211,1,0,0,0,5228,441,1,0,0,0,5229,5230,5,46,0,0,5230,5231, + 5,452,0,0,5231,5238,3,826,413,0,5232,5233,5,62,0,0,5233,5234,5,92, + 0,0,5234,5239,3,624,312,0,5235,5236,5,62,0,0,5236,5237,5,30,0,0, + 5237,5239,5,350,0,0,5238,5232,1,0,0,0,5238,5235,1,0,0,0,5238,5239, + 1,0,0,0,5239,5241,1,0,0,0,5240,5242,3,394,197,0,5241,5240,1,0,0, + 0,5241,5242,1,0,0,0,5242,443,1,0,0,0,5243,5244,5,138,0,0,5244,5245, + 5,452,0,0,5245,5263,3,826,413,0,5246,5247,5,282,0,0,5247,5248,5, + 94,0,0,5248,5264,3,822,411,0,5249,5250,5,333,0,0,5250,5264,3,278, + 139,0,5251,5252,5,309,0,0,5252,5253,5,94,0,0,5253,5264,3,826,413, + 0,5254,5255,7,35,0,0,5255,5260,3,622,311,0,5256,5257,5,6,0,0,5257, + 5259,3,622,311,0,5258,5256,1,0,0,0,5259,5262,1,0,0,0,5260,5258,1, + 0,0,0,5260,5261,1,0,0,0,5261,5264,1,0,0,0,5262,5260,1,0,0,0,5263, + 5246,1,0,0,0,5263,5249,1,0,0,0,5263,5251,1,0,0,0,5263,5254,1,0,0, + 0,5264,445,1,0,0,0,5265,5266,5,46,0,0,5266,5267,5,451,0,0,5267,5268, + 3,826,413,0,5268,5269,5,164,0,0,5269,5270,3,816,408,0,5270,5271, + 5,452,0,0,5271,5276,3,832,416,0,5272,5273,5,6,0,0,5273,5275,3,832, + 416,0,5274,5272,1,0,0,0,5275,5278,1,0,0,0,5276,5274,1,0,0,0,5276, + 5277,1,0,0,0,5277,5280,1,0,0,0,5278,5276,1,0,0,0,5279,5281,3,394, + 197,0,5280,5279,1,0,0,0,5280,5281,1,0,0,0,5281,447,1,0,0,0,5282, + 5283,5,138,0,0,5283,5284,5,451,0,0,5284,5285,3,826,413,0,5285,5286, + 5,333,0,0,5286,5287,3,278,139,0,5287,5339,1,0,0,0,5288,5289,5,138, + 0,0,5289,5290,5,451,0,0,5290,5291,3,826,413,0,5291,5292,5,164,0, + 0,5292,5293,3,816,408,0,5293,5339,1,0,0,0,5294,5295,5,138,0,0,5295, + 5296,5,451,0,0,5296,5297,3,826,413,0,5297,5298,5,305,0,0,5298,5300, + 5,452,0,0,5299,5301,3,394,197,0,5300,5299,1,0,0,0,5300,5301,1,0, + 0,0,5301,5339,1,0,0,0,5302,5303,5,138,0,0,5303,5304,5,451,0,0,5304, + 5305,3,826,413,0,5305,5306,7,35,0,0,5306,5307,5,452,0,0,5307,5312, + 3,832,416,0,5308,5309,5,6,0,0,5309,5311,3,832,416,0,5310,5308,1, + 0,0,0,5311,5314,1,0,0,0,5312,5310,1,0,0,0,5312,5313,1,0,0,0,5313, + 5316,1,0,0,0,5314,5312,1,0,0,0,5315,5317,3,394,197,0,5316,5315,1, + 0,0,0,5316,5317,1,0,0,0,5317,5339,1,0,0,0,5318,5319,5,138,0,0,5319, + 5320,5,451,0,0,5320,5321,3,826,413,0,5321,5322,7,65,0,0,5322,5339, + 1,0,0,0,5323,5324,5,138,0,0,5324,5325,5,451,0,0,5325,5326,3,826, + 413,0,5326,5327,5,465,0,0,5327,5328,5,2,0,0,5328,5329,3,284,142, + 0,5329,5330,5,3,0,0,5330,5339,1,0,0,0,5331,5332,5,138,0,0,5332,5333, + 5,451,0,0,5333,5334,3,826,413,0,5334,5335,5,282,0,0,5335,5336,5, + 94,0,0,5336,5337,3,822,411,0,5337,5339,1,0,0,0,5338,5282,1,0,0,0, + 5338,5288,1,0,0,0,5338,5294,1,0,0,0,5338,5302,1,0,0,0,5338,5318, + 1,0,0,0,5338,5323,1,0,0,0,5338,5331,1,0,0,0,5339,449,1,0,0,0,5340, + 5342,5,46,0,0,5341,5343,3,360,180,0,5342,5341,1,0,0,0,5342,5343, + 1,0,0,0,5343,5344,1,0,0,0,5344,5345,5,321,0,0,5345,5346,3,826,413, + 0,5346,5347,5,36,0,0,5347,5348,5,80,0,0,5348,5349,7,66,0,0,5349, + 5350,5,94,0,0,5350,5352,3,784,392,0,5351,5353,3,634,317,0,5352,5351, + 1,0,0,0,5352,5353,1,0,0,0,5353,5354,1,0,0,0,5354,5356,5,57,0,0,5355, + 5357,7,67,0,0,5356,5355,1,0,0,0,5356,5357,1,0,0,0,5357,5374,1,0, + 0,0,5358,5375,5,270,0,0,5359,5375,3,452,226,0,5360,5362,5,2,0,0, + 5361,5363,3,452,226,0,5362,5361,1,0,0,0,5362,5363,1,0,0,0,5363,5370, + 1,0,0,0,5364,5366,5,7,0,0,5365,5367,3,452,226,0,5366,5365,1,0,0, + 0,5366,5367,1,0,0,0,5367,5369,1,0,0,0,5368,5364,1,0,0,0,5369,5372, + 1,0,0,0,5370,5368,1,0,0,0,5370,5371,1,0,0,0,5371,5373,1,0,0,0,5372, + 5370,1,0,0,0,5373,5375,5,3,0,0,5374,5358,1,0,0,0,5374,5359,1,0,0, + 0,5374,5360,1,0,0,0,5375,451,1,0,0,0,5376,5382,3,554,277,0,5377, + 5382,3,532,266,0,5378,5382,3,546,273,0,5379,5382,3,542,271,0,5380, + 5382,3,454,227,0,5381,5376,1,0,0,0,5381,5377,1,0,0,0,5381,5378,1, + 0,0,0,5381,5379,1,0,0,0,5381,5380,1,0,0,0,5382,453,1,0,0,0,5383, + 5384,5,271,0,0,5384,5386,3,826,413,0,5385,5387,3,456,228,0,5386, + 5385,1,0,0,0,5386,5387,1,0,0,0,5387,455,1,0,0,0,5388,5389,5,6,0, + 0,5389,5390,3,816,408,0,5390,457,1,0,0,0,5391,5392,5,252,0,0,5392, + 5393,3,826,413,0,5393,459,1,0,0,0,5394,5397,5,366,0,0,5395,5398, + 3,826,413,0,5396,5398,5,9,0,0,5397,5395,1,0,0,0,5397,5396,1,0,0, + 0,5398,461,1,0,0,0,5399,5401,5,146,0,0,5400,5402,3,464,232,0,5401, + 5400,1,0,0,0,5401,5402,1,0,0,0,5402,5404,1,0,0,0,5403,5405,3,468, + 234,0,5404,5403,1,0,0,0,5404,5405,1,0,0,0,5405,5445,1,0,0,0,5406, + 5407,5,340,0,0,5407,5409,5,356,0,0,5408,5410,3,468,234,0,5409,5408, + 1,0,0,0,5409,5410,1,0,0,0,5410,5445,1,0,0,0,5411,5412,5,322,0,0, + 5412,5445,3,826,413,0,5413,5415,5,308,0,0,5414,5416,5,322,0,0,5415, + 5414,1,0,0,0,5415,5416,1,0,0,0,5416,5417,1,0,0,0,5417,5445,3,826, + 413,0,5418,5419,5,290,0,0,5419,5420,5,356,0,0,5420,5445,3,816,408, + 0,5421,5422,7,68,0,0,5422,5423,5,291,0,0,5423,5445,3,816,408,0,5424, + 5426,7,69,0,0,5425,5427,3,464,232,0,5426,5425,1,0,0,0,5426,5427, + 1,0,0,0,5427,5433,1,0,0,0,5428,5430,5,33,0,0,5429,5431,5,269,0,0, + 5430,5429,1,0,0,0,5430,5431,1,0,0,0,5431,5432,1,0,0,0,5432,5434, + 5,153,0,0,5433,5428,1,0,0,0,5433,5434,1,0,0,0,5434,5445,1,0,0,0, + 5435,5437,5,319,0,0,5436,5438,3,464,232,0,5437,5436,1,0,0,0,5437, + 5438,1,0,0,0,5438,5439,1,0,0,0,5439,5441,5,94,0,0,5440,5442,5,322, + 0,0,5441,5440,1,0,0,0,5441,5442,1,0,0,0,5442,5443,1,0,0,0,5443,5445, + 3,826,413,0,5444,5399,1,0,0,0,5444,5406,1,0,0,0,5444,5411,1,0,0, + 0,5444,5413,1,0,0,0,5444,5418,1,0,0,0,5444,5421,1,0,0,0,5444,5424, + 1,0,0,0,5444,5435,1,0,0,0,5445,463,1,0,0,0,5446,5447,7,70,0,0,5447, + 465,1,0,0,0,5448,5449,5,244,0,0,5449,5450,5,251,0,0,5450,5458,3, + 50,25,0,5451,5452,5,300,0,0,5452,5458,7,71,0,0,5453,5455,5,77,0, + 0,5454,5453,1,0,0,0,5454,5455,1,0,0,0,5455,5456,1,0,0,0,5456,5458, + 5,54,0,0,5457,5448,1,0,0,0,5457,5451,1,0,0,0,5457,5454,1,0,0,0,5458, + 467,1,0,0,0,5459,5466,3,466,233,0,5460,5462,5,6,0,0,5461,5460,1, + 0,0,0,5461,5462,1,0,0,0,5462,5463,1,0,0,0,5463,5465,3,466,233,0, + 5464,5461,1,0,0,0,5465,5468,1,0,0,0,5466,5464,1,0,0,0,5466,5467, + 1,0,0,0,5467,469,1,0,0,0,5468,5466,1,0,0,0,5469,5472,5,46,0,0,5470, + 5471,5,82,0,0,5471,5473,5,311,0,0,5472,5470,1,0,0,0,5472,5473,1, + 0,0,0,5473,5475,1,0,0,0,5474,5476,3,116,58,0,5475,5474,1,0,0,0,5475, + 5476,1,0,0,0,5476,5492,1,0,0,0,5477,5478,5,376,0,0,5478,5480,3,780, + 390,0,5479,5481,3,140,70,0,5480,5479,1,0,0,0,5480,5481,1,0,0,0,5481, + 5483,1,0,0,0,5482,5484,3,94,47,0,5483,5482,1,0,0,0,5483,5484,1,0, + 0,0,5484,5493,1,0,0,0,5485,5486,5,303,0,0,5486,5487,5,376,0,0,5487, + 5488,3,780,390,0,5488,5490,3,138,69,0,5489,5491,3,94,47,0,5490,5489, + 1,0,0,0,5490,5491,1,0,0,0,5491,5493,1,0,0,0,5492,5477,1,0,0,0,5492, + 5485,1,0,0,0,5493,5494,1,0,0,0,5494,5495,5,36,0,0,5495,5502,3,554, + 277,0,5496,5498,5,105,0,0,5497,5499,7,72,0,0,5498,5497,1,0,0,0,5498, + 5499,1,0,0,0,5499,5500,1,0,0,0,5500,5501,5,42,0,0,5501,5503,5,279, + 0,0,5502,5496,1,0,0,0,5502,5503,1,0,0,0,5503,471,1,0,0,0,5504,5505, + 5,253,0,0,5505,5506,3,816,408,0,5506,473,1,0,0,0,5507,5508,5,46, + 0,0,5508,5509,5,175,0,0,5509,5511,3,790,395,0,5510,5512,5,105,0, + 0,5511,5510,1,0,0,0,5511,5512,1,0,0,0,5512,5518,1,0,0,0,5513,5515, + 3,476,238,0,5514,5513,1,0,0,0,5515,5516,1,0,0,0,5516,5514,1,0,0, + 0,5516,5517,1,0,0,0,5517,5519,1,0,0,0,5518,5514,1,0,0,0,5518,5519, + 1,0,0,0,5519,475,1,0,0,0,5520,5521,5,164,0,0,5521,5529,5,74,0,0, + 5522,5529,5,194,0,0,5523,5529,5,255,0,0,5524,5529,5,282,0,0,5525, + 5529,5,351,0,0,5526,5529,5,353,0,0,5527,5529,3,836,418,0,5528,5520, + 1,0,0,0,5528,5522,1,0,0,0,5528,5523,1,0,0,0,5528,5524,1,0,0,0,5528, + 5525,1,0,0,0,5528,5526,1,0,0,0,5528,5527,1,0,0,0,5529,5531,1,0,0, + 0,5530,5532,5,10,0,0,5531,5530,1,0,0,0,5531,5532,1,0,0,0,5532,5536, + 1,0,0,0,5533,5537,3,820,410,0,5534,5537,3,54,27,0,5535,5537,5,53, + 0,0,5536,5533,1,0,0,0,5536,5534,1,0,0,0,5536,5535,1,0,0,0,5537,477, + 1,0,0,0,5538,5539,5,138,0,0,5539,5540,5,175,0,0,5540,5556,3,792, + 396,0,5541,5542,5,333,0,0,5542,5543,5,351,0,0,5543,5545,3,774,387, + 0,5544,5541,1,0,0,0,5544,5545,1,0,0,0,5545,5557,1,0,0,0,5546,5548, + 5,105,0,0,5547,5546,1,0,0,0,5547,5548,1,0,0,0,5548,5550,1,0,0,0, + 5549,5551,3,476,238,0,5550,5549,1,0,0,0,5551,5552,1,0,0,0,5552,5550, + 1,0,0,0,5552,5553,1,0,0,0,5553,5555,1,0,0,0,5554,5547,1,0,0,0,5554, + 5555,1,0,0,0,5555,5557,1,0,0,0,5556,5544,1,0,0,0,5556,5554,1,0,0, + 0,5557,479,1,0,0,0,5558,5559,5,138,0,0,5559,5560,5,175,0,0,5560, + 5562,3,792,396,0,5561,5563,3,64,32,0,5562,5561,1,0,0,0,5562,5563, + 1,0,0,0,5563,481,1,0,0,0,5564,5565,5,138,0,0,5565,5566,5,108,0,0, + 5566,5567,3,310,155,0,5567,5568,5,305,0,0,5568,5569,5,375,0,0,5569, + 483,1,0,0,0,5570,5571,5,138,0,0,5571,5572,5,349,0,0,5572,5573,7, + 16,0,0,5573,5574,3,40,20,0,5574,485,1,0,0,0,5575,5576,5,46,0,0,5576, + 5577,5,189,0,0,5577,5579,3,310,155,0,5578,5580,5,36,0,0,5579,5578, + 1,0,0,0,5579,5580,1,0,0,0,5580,5581,1,0,0,0,5581,5585,3,648,324, + 0,5582,5584,3,128,64,0,5583,5582,1,0,0,0,5584,5587,1,0,0,0,5585, + 5583,1,0,0,0,5585,5586,1,0,0,0,5586,487,1,0,0,0,5587,5585,1,0,0, + 0,5588,5589,5,138,0,0,5589,5590,5,189,0,0,5590,5613,3,310,155,0, + 5591,5614,3,86,43,0,5592,5593,7,15,0,0,5593,5594,5,77,0,0,5594,5614, + 5,78,0,0,5595,5598,5,133,0,0,5596,5597,5,45,0,0,5597,5599,3,826, + 413,0,5598,5596,1,0,0,0,5598,5599,1,0,0,0,5599,5600,1,0,0,0,5600, + 5614,3,136,68,0,5601,5602,5,191,0,0,5602,5604,5,45,0,0,5603,5605, + 3,416,208,0,5604,5603,1,0,0,0,5604,5605,1,0,0,0,5605,5606,1,0,0, + 0,5606,5608,3,826,413,0,5607,5609,3,88,44,0,5608,5607,1,0,0,0,5608, + 5609,1,0,0,0,5609,5614,1,0,0,0,5610,5611,5,372,0,0,5611,5612,5,45, + 0,0,5612,5614,3,826,413,0,5613,5591,1,0,0,0,5613,5592,1,0,0,0,5613, + 5595,1,0,0,0,5613,5601,1,0,0,0,5613,5610,1,0,0,0,5614,489,1,0,0, + 0,5615,5616,5,138,0,0,5616,5617,5,355,0,0,5617,5618,5,325,0,0,5618, + 5619,5,185,0,0,5619,5620,3,310,155,0,5620,5621,3,278,139,0,5621, + 491,1,0,0,0,5622,5623,5,138,0,0,5623,5624,5,355,0,0,5624,5625,5, + 325,0,0,5625,5626,5,163,0,0,5626,5627,3,310,155,0,5627,5628,7,73, + 0,0,5628,5629,5,257,0,0,5629,5630,5,62,0,0,5630,5631,3,788,394,0, + 5631,5632,5,105,0,0,5632,5633,3,308,154,0,5633,5664,1,0,0,0,5634, + 5635,5,138,0,0,5635,5636,5,355,0,0,5636,5637,5,325,0,0,5637,5638, + 5,163,0,0,5638,5639,3,310,155,0,5639,5640,5,138,0,0,5640,5643,5, + 257,0,0,5641,5642,5,62,0,0,5642,5644,3,788,394,0,5643,5641,1,0,0, + 0,5643,5644,1,0,0,0,5644,5645,1,0,0,0,5645,5646,5,311,0,0,5646,5647, + 3,310,155,0,5647,5648,5,105,0,0,5648,5649,3,310,155,0,5649,5664, + 1,0,0,0,5650,5651,5,138,0,0,5651,5652,5,355,0,0,5652,5653,5,325, + 0,0,5653,5654,5,163,0,0,5654,5655,3,310,155,0,5655,5656,5,191,0, + 0,5656,5658,5,257,0,0,5657,5659,3,416,208,0,5658,5657,1,0,0,0,5658, + 5659,1,0,0,0,5659,5660,1,0,0,0,5660,5661,5,62,0,0,5661,5662,3,788, + 394,0,5662,5664,1,0,0,0,5663,5622,1,0,0,0,5663,5634,1,0,0,0,5663, + 5650,1,0,0,0,5664,493,1,0,0,0,5665,5667,5,46,0,0,5666,5668,5,53, + 0,0,5667,5666,1,0,0,0,5667,5668,1,0,0,0,5668,5669,1,0,0,0,5669,5670, + 5,168,0,0,5670,5671,3,310,155,0,5671,5672,5,62,0,0,5672,5673,3,816, + 408,0,5673,5674,5,94,0,0,5674,5675,3,816,408,0,5675,5676,5,64,0, + 0,5676,5677,3,310,155,0,5677,495,1,0,0,0,5678,5680,5,158,0,0,5679, + 5681,3,508,254,0,5680,5679,1,0,0,0,5680,5681,1,0,0,0,5681,5686,1, + 0,0,0,5682,5684,3,778,389,0,5683,5685,3,164,82,0,5684,5683,1,0,0, + 0,5684,5685,1,0,0,0,5685,5687,1,0,0,0,5686,5682,1,0,0,0,5686,5687, + 1,0,0,0,5687,5704,1,0,0,0,5688,5689,5,158,0,0,5689,5690,5,2,0,0, + 5690,5695,3,508,254,0,5691,5692,5,6,0,0,5692,5694,3,508,254,0,5693, + 5691,1,0,0,0,5694,5697,1,0,0,0,5695,5693,1,0,0,0,5695,5696,1,0,0, + 0,5696,5698,1,0,0,0,5697,5695,1,0,0,0,5698,5699,5,3,0,0,5699,5701, + 3,778,389,0,5700,5702,3,164,82,0,5701,5700,1,0,0,0,5701,5702,1,0, + 0,0,5702,5704,1,0,0,0,5703,5678,1,0,0,0,5703,5688,1,0,0,0,5704,497, + 1,0,0,0,5705,5721,5,370,0,0,5706,5708,5,113,0,0,5707,5706,1,0,0, + 0,5707,5708,1,0,0,0,5708,5710,1,0,0,0,5709,5711,5,112,0,0,5710,5709, + 1,0,0,0,5710,5711,1,0,0,0,5711,5713,1,0,0,0,5712,5714,3,508,254, + 0,5713,5712,1,0,0,0,5713,5714,1,0,0,0,5714,5716,1,0,0,0,5715,5717, + 3,502,251,0,5716,5715,1,0,0,0,5716,5717,1,0,0,0,5717,5722,1,0,0, + 0,5718,5720,3,518,259,0,5719,5718,1,0,0,0,5719,5720,1,0,0,0,5720, + 5722,1,0,0,0,5721,5707,1,0,0,0,5721,5719,1,0,0,0,5722,5724,1,0,0, + 0,5723,5725,3,512,256,0,5724,5723,1,0,0,0,5724,5725,1,0,0,0,5725, + 499,1,0,0,0,5726,5741,3,502,251,0,5727,5729,3,508,254,0,5728,5727, + 1,0,0,0,5728,5729,1,0,0,0,5729,5742,1,0,0,0,5730,5731,5,2,0,0,5731, + 5736,3,506,253,0,5732,5733,5,6,0,0,5733,5735,3,506,253,0,5734,5732, + 1,0,0,0,5735,5738,1,0,0,0,5736,5734,1,0,0,0,5736,5737,1,0,0,0,5737, + 5739,1,0,0,0,5738,5736,1,0,0,0,5739,5740,5,3,0,0,5740,5742,1,0,0, + 0,5741,5728,1,0,0,0,5741,5730,1,0,0,0,5742,5744,1,0,0,0,5743,5745, + 3,512,256,0,5744,5743,1,0,0,0,5744,5745,1,0,0,0,5745,501,1,0,0,0, + 5746,5747,7,74,0,0,5747,503,1,0,0,0,5748,5751,3,830,415,0,5749,5751, + 3,502,251,0,5750,5748,1,0,0,0,5750,5749,1,0,0,0,5751,5754,1,0,0, + 0,5752,5755,3,54,27,0,5753,5755,3,196,98,0,5754,5752,1,0,0,0,5754, + 5753,1,0,0,0,5754,5755,1,0,0,0,5755,505,1,0,0,0,5756,5758,7,75,0, + 0,5757,5759,7,76,0,0,5758,5757,1,0,0,0,5758,5759,1,0,0,0,5759,5766, + 1,0,0,0,5760,5763,5,548,0,0,5761,5764,3,196,98,0,5762,5764,3,816, + 408,0,5763,5761,1,0,0,0,5763,5762,1,0,0,0,5764,5766,1,0,0,0,5765, + 5756,1,0,0,0,5765,5760,1,0,0,0,5766,507,1,0,0,0,5767,5769,5,128, + 0,0,5768,5770,7,76,0,0,5769,5768,1,0,0,0,5769,5770,1,0,0,0,5770, + 509,1,0,0,0,5771,5773,3,778,389,0,5772,5774,3,138,69,0,5773,5772, + 1,0,0,0,5773,5774,1,0,0,0,5774,511,1,0,0,0,5775,5780,3,510,255,0, + 5776,5777,5,6,0,0,5777,5779,3,510,255,0,5778,5776,1,0,0,0,5779,5782, + 1,0,0,0,5780,5778,1,0,0,0,5780,5781,1,0,0,0,5781,513,1,0,0,0,5782, + 5780,1,0,0,0,5783,5794,5,203,0,0,5784,5795,3,518,259,0,5785,5787, + 5,128,0,0,5786,5785,1,0,0,0,5786,5787,1,0,0,0,5787,5795,1,0,0,0, + 5788,5790,3,502,251,0,5789,5791,3,508,254,0,5790,5789,1,0,0,0,5790, + 5791,1,0,0,0,5791,5793,1,0,0,0,5792,5788,1,0,0,0,5792,5793,1,0,0, + 0,5793,5795,1,0,0,0,5794,5784,1,0,0,0,5794,5786,1,0,0,0,5794,5792, + 1,0,0,0,5795,5796,1,0,0,0,5796,5797,3,516,258,0,5797,515,1,0,0,0, + 5798,5808,3,554,277,0,5799,5808,3,532,266,0,5800,5808,3,546,273, + 0,5801,5808,3,542,271,0,5802,5808,3,552,276,0,5803,5808,3,180,90, + 0,5804,5808,3,186,93,0,5805,5808,3,188,94,0,5806,5808,3,526,263, + 0,5807,5798,1,0,0,0,5807,5799,1,0,0,0,5807,5800,1,0,0,0,5807,5801, + 1,0,0,0,5807,5802,1,0,0,0,5807,5803,1,0,0,0,5807,5804,1,0,0,0,5807, + 5805,1,0,0,0,5807,5806,1,0,0,0,5808,517,1,0,0,0,5809,5810,5,2,0, + 0,5810,5815,3,504,252,0,5811,5812,5,6,0,0,5812,5814,3,504,252,0, + 5813,5811,1,0,0,0,5814,5817,1,0,0,0,5815,5813,1,0,0,0,5815,5816, + 1,0,0,0,5816,5818,1,0,0,0,5817,5815,1,0,0,0,5818,5819,5,3,0,0,5819, + 519,1,0,0,0,5820,5821,5,290,0,0,5821,5823,3,826,413,0,5822,5824, + 3,522,261,0,5823,5822,1,0,0,0,5823,5824,1,0,0,0,5824,5825,1,0,0, + 0,5825,5826,5,36,0,0,5826,5827,3,524,262,0,5827,521,1,0,0,0,5828, + 5829,5,2,0,0,5829,5834,3,648,324,0,5830,5831,5,6,0,0,5831,5833,3, + 648,324,0,5832,5830,1,0,0,0,5833,5836,1,0,0,0,5834,5832,1,0,0,0, + 5834,5835,1,0,0,0,5835,5837,1,0,0,0,5836,5834,1,0,0,0,5837,5838, + 5,3,0,0,5838,523,1,0,0,0,5839,5845,3,554,277,0,5840,5845,3,532,266, + 0,5841,5845,3,546,273,0,5842,5845,3,542,271,0,5843,5845,3,910,455, + 0,5844,5839,1,0,0,0,5844,5840,1,0,0,0,5844,5841,1,0,0,0,5844,5842, + 1,0,0,0,5844,5843,1,0,0,0,5845,525,1,0,0,0,5846,5847,5,202,0,0,5847, + 5849,3,826,413,0,5848,5850,3,528,264,0,5849,5848,1,0,0,0,5849,5850, + 1,0,0,0,5850,5870,1,0,0,0,5851,5853,5,46,0,0,5852,5854,3,116,58, + 0,5853,5852,1,0,0,0,5853,5854,1,0,0,0,5854,5855,1,0,0,0,5855,5857, + 5,92,0,0,5856,5858,3,288,144,0,5857,5856,1,0,0,0,5857,5858,1,0,0, + 0,5858,5859,1,0,0,0,5859,5860,3,182,91,0,5860,5861,5,36,0,0,5861, + 5862,5,202,0,0,5862,5864,3,826,413,0,5863,5865,3,528,264,0,5864, + 5863,1,0,0,0,5864,5865,1,0,0,0,5865,5867,1,0,0,0,5866,5868,3,184, + 92,0,5867,5866,1,0,0,0,5867,5868,1,0,0,0,5868,5870,1,0,0,0,5869, + 5846,1,0,0,0,5869,5851,1,0,0,0,5870,527,1,0,0,0,5871,5872,5,2,0, + 0,5872,5873,3,728,364,0,5873,5874,5,3,0,0,5874,529,1,0,0,0,5875, + 5877,5,177,0,0,5876,5878,5,290,0,0,5877,5876,1,0,0,0,5877,5878,1, + 0,0,0,5878,5881,1,0,0,0,5879,5882,3,826,413,0,5880,5882,5,30,0,0, + 5881,5879,1,0,0,0,5881,5880,1,0,0,0,5882,531,1,0,0,0,5883,5885,3, + 566,283,0,5884,5883,1,0,0,0,5884,5885,1,0,0,0,5885,5886,1,0,0,0, + 5886,5887,5,241,0,0,5887,5888,5,71,0,0,5888,5891,3,778,389,0,5889, + 5890,5,36,0,0,5890,5892,3,826,413,0,5891,5889,1,0,0,0,5891,5892, + 1,0,0,0,5892,5893,1,0,0,0,5893,5915,3,534,267,0,5894,5895,5,80,0, + 0,5895,5903,5,464,0,0,5896,5898,3,354,177,0,5897,5899,3,634,317, + 0,5898,5897,1,0,0,0,5898,5899,1,0,0,0,5899,5904,1,0,0,0,5900,5901, + 5,80,0,0,5901,5902,5,45,0,0,5902,5904,3,826,413,0,5903,5896,1,0, + 0,0,5903,5900,1,0,0,0,5903,5904,1,0,0,0,5904,5905,1,0,0,0,5905,5913, + 5,57,0,0,5906,5907,5,369,0,0,5907,5908,5,333,0,0,5908,5910,3,548, + 274,0,5909,5911,3,634,317,0,5910,5909,1,0,0,0,5910,5911,1,0,0,0, + 5911,5914,1,0,0,0,5912,5914,5,270,0,0,5913,5906,1,0,0,0,5913,5912, + 1,0,0,0,5914,5916,1,0,0,0,5915,5894,1,0,0,0,5915,5916,1,0,0,0,5916, + 5918,1,0,0,0,5917,5919,3,540,270,0,5918,5917,1,0,0,0,5918,5919,1, + 0,0,0,5919,533,1,0,0,0,5920,5921,5,2,0,0,5921,5922,3,536,268,0,5922, + 5923,5,3,0,0,5923,5925,1,0,0,0,5924,5920,1,0,0,0,5924,5925,1,0,0, + 0,5925,5929,1,0,0,0,5926,5927,5,463,0,0,5927,5928,7,77,0,0,5928, + 5930,5,450,0,0,5929,5926,1,0,0,0,5929,5930,1,0,0,0,5930,5933,1,0, + 0,0,5931,5934,3,920,460,0,5932,5934,3,554,277,0,5933,5931,1,0,0, + 0,5933,5932,1,0,0,0,5934,535,1,0,0,0,5935,5940,3,538,269,0,5936, + 5937,5,6,0,0,5937,5939,3,538,269,0,5938,5936,1,0,0,0,5939,5942,1, + 0,0,0,5940,5938,1,0,0,0,5940,5941,1,0,0,0,5941,537,1,0,0,0,5942, + 5940,1,0,0,0,5943,5944,3,806,403,0,5944,5945,3,756,378,0,5945,539, + 1,0,0,0,5946,5947,5,87,0,0,5947,5948,3,758,379,0,5948,541,1,0,0, + 0,5949,5951,3,566,283,0,5950,5949,1,0,0,0,5950,5951,1,0,0,0,5951, + 5952,1,0,0,0,5952,5953,5,182,0,0,5953,5954,5,64,0,0,5954,5957,3, + 626,313,0,5955,5956,5,100,0,0,5956,5958,3,606,303,0,5957,5955,1, + 0,0,0,5957,5958,1,0,0,0,5958,5960,1,0,0,0,5959,5961,3,636,318,0, + 5960,5959,1,0,0,0,5960,5961,1,0,0,0,5961,5963,1,0,0,0,5962,5964, + 3,540,270,0,5963,5962,1,0,0,0,5963,5964,1,0,0,0,5964,543,1,0,0,0, + 5965,5967,5,256,0,0,5966,5968,5,92,0,0,5967,5966,1,0,0,0,5967,5968, + 1,0,0,0,5968,5969,1,0,0,0,5969,5984,3,624,312,0,5970,5981,5,68,0, + 0,5971,5972,7,78,0,0,5972,5982,7,79,0,0,5973,5978,5,334,0,0,5974, + 5975,5,369,0,0,5975,5979,5,201,0,0,5976,5977,5,414,0,0,5977,5979, + 5,201,0,0,5978,5974,1,0,0,0,5978,5976,1,0,0,0,5978,5979,1,0,0,0, + 5979,5982,1,0,0,0,5980,5982,5,201,0,0,5981,5971,1,0,0,0,5981,5973, + 1,0,0,0,5981,5980,1,0,0,0,5982,5983,1,0,0,0,5983,5985,5,263,0,0, + 5984,5970,1,0,0,0,5984,5985,1,0,0,0,5985,5987,1,0,0,0,5986,5988, + 5,272,0,0,5987,5986,1,0,0,0,5987,5988,1,0,0,0,5988,545,1,0,0,0,5989, + 5991,3,566,283,0,5990,5989,1,0,0,0,5990,5991,1,0,0,0,5991,5992,1, + 0,0,0,5992,5993,5,369,0,0,5993,5994,3,626,313,0,5994,5995,5,333, + 0,0,5995,5997,3,548,274,0,5996,5998,3,604,302,0,5997,5996,1,0,0, + 0,5997,5998,1,0,0,0,5998,6000,1,0,0,0,5999,6001,3,636,318,0,6000, + 5999,1,0,0,0,6000,6001,1,0,0,0,6001,6003,1,0,0,0,6002,6004,3,540, + 270,0,6003,6002,1,0,0,0,6003,6004,1,0,0,0,6004,547,1,0,0,0,6005, + 6010,3,550,275,0,6006,6007,5,6,0,0,6007,6009,3,550,275,0,6008,6006, + 1,0,0,0,6009,6012,1,0,0,0,6010,6008,1,0,0,0,6010,6011,1,0,0,0,6011, + 549,1,0,0,0,6012,6010,1,0,0,0,6013,6014,3,538,269,0,6014,6015,5, + 10,0,0,6015,6016,3,670,335,0,6016,6032,1,0,0,0,6017,6018,5,2,0,0, + 6018,6019,3,536,268,0,6019,6020,5,3,0,0,6020,6029,5,10,0,0,6021, + 6023,5,414,0,0,6022,6021,1,0,0,0,6022,6023,1,0,0,0,6023,6024,1,0, + 0,0,6024,6030,3,670,335,0,6025,6026,5,2,0,0,6026,6027,3,560,280, + 0,6027,6028,5,3,0,0,6028,6030,1,0,0,0,6029,6022,1,0,0,0,6029,6025, + 1,0,0,0,6030,6032,1,0,0,0,6031,6013,1,0,0,0,6031,6017,1,0,0,0,6032, + 551,1,0,0,0,6033,6034,5,178,0,0,6034,6043,3,826,413,0,6035,6037, + 5,269,0,0,6036,6035,1,0,0,0,6036,6037,1,0,0,0,6037,6038,1,0,0,0, + 6038,6042,5,324,0,0,6039,6042,5,107,0,0,6040,6042,5,240,0,0,6041, + 6036,1,0,0,0,6041,6039,1,0,0,0,6041,6040,1,0,0,0,6042,6045,1,0,0, + 0,6043,6041,1,0,0,0,6043,6044,1,0,0,0,6044,6046,1,0,0,0,6045,6043, + 1,0,0,0,6046,6049,5,172,0,0,6047,6048,7,27,0,0,6048,6050,5,217,0, + 0,6049,6047,1,0,0,0,6049,6050,1,0,0,0,6050,6051,1,0,0,0,6051,6052, + 5,62,0,0,6052,6053,3,554,277,0,6053,553,1,0,0,0,6054,6057,3,558, + 279,0,6055,6057,3,556,278,0,6056,6054,1,0,0,0,6056,6055,1,0,0,0, + 6057,555,1,0,0,0,6058,6061,5,2,0,0,6059,6062,3,558,279,0,6060,6062, + 3,556,278,0,6061,6059,1,0,0,0,6061,6060,1,0,0,0,6062,6063,1,0,0, + 0,6063,6064,5,3,0,0,6064,557,1,0,0,0,6065,6067,3,566,283,0,6066, + 6065,1,0,0,0,6066,6067,1,0,0,0,6067,6068,1,0,0,0,6068,6070,3,560, + 280,0,6069,6071,3,580,290,0,6070,6069,1,0,0,0,6070,6071,1,0,0,0, + 6071,6080,1,0,0,0,6072,6074,3,600,300,0,6073,6075,3,584,292,0,6074, + 6073,1,0,0,0,6074,6075,1,0,0,0,6075,6081,1,0,0,0,6076,6078,3,584, + 292,0,6077,6079,3,600,300,0,6078,6077,1,0,0,0,6078,6079,1,0,0,0, + 6079,6081,1,0,0,0,6080,6072,1,0,0,0,6080,6076,1,0,0,0,6080,6081, + 1,0,0,0,6081,559,1,0,0,0,6082,6085,3,562,281,0,6083,6085,3,556,278, + 0,6084,6082,1,0,0,0,6084,6083,1,0,0,0,6085,561,1,0,0,0,6086,6096, + 5,88,0,0,6087,6089,5,30,0,0,6088,6087,1,0,0,0,6088,6089,1,0,0,0, + 6089,6091,1,0,0,0,6090,6092,3,574,287,0,6091,6090,1,0,0,0,6091,6092, + 1,0,0,0,6092,6097,1,0,0,0,6093,6095,3,578,289,0,6094,6093,1,0,0, + 0,6094,6095,1,0,0,0,6095,6097,1,0,0,0,6096,6088,1,0,0,0,6096,6094, + 1,0,0,0,6097,6098,1,0,0,0,6098,6109,3,940,470,0,6099,6109,3,602, + 301,0,6100,6101,5,92,0,0,6101,6109,3,620,310,0,6102,6103,3,556,278, + 0,6103,6106,3,564,282,0,6104,6107,3,562,281,0,6105,6107,3,556,278, + 0,6106,6104,1,0,0,0,6106,6105,1,0,0,0,6107,6109,1,0,0,0,6108,6086, + 1,0,0,0,6108,6099,1,0,0,0,6108,6100,1,0,0,0,6108,6102,1,0,0,0,6109, + 6117,1,0,0,0,6110,6113,3,564,282,0,6111,6114,3,562,281,0,6112,6114, + 3,556,278,0,6113,6111,1,0,0,0,6113,6112,1,0,0,0,6114,6116,1,0,0, + 0,6115,6110,1,0,0,0,6116,6119,1,0,0,0,6117,6115,1,0,0,0,6117,6118, + 1,0,0,0,6118,563,1,0,0,0,6119,6117,1,0,0,0,6120,6122,7,80,0,0,6121, + 6123,7,81,0,0,6122,6121,1,0,0,0,6122,6123,1,0,0,0,6123,565,1,0,0, + 0,6124,6126,5,105,0,0,6125,6127,5,303,0,0,6126,6125,1,0,0,0,6126, + 6127,1,0,0,0,6127,6128,1,0,0,0,6128,6133,3,568,284,0,6129,6130,5, + 6,0,0,6130,6132,3,568,284,0,6131,6129,1,0,0,0,6132,6135,1,0,0,0, + 6133,6131,1,0,0,0,6133,6134,1,0,0,0,6134,567,1,0,0,0,6135,6133,1, + 0,0,0,6136,6138,3,826,413,0,6137,6139,3,138,69,0,6138,6137,1,0,0, + 0,6138,6139,1,0,0,0,6139,6140,1,0,0,0,6140,6145,5,36,0,0,6141,6143, + 5,77,0,0,6142,6141,1,0,0,0,6142,6143,1,0,0,0,6143,6144,1,0,0,0,6144, + 6146,5,259,0,0,6145,6142,1,0,0,0,6145,6146,1,0,0,0,6146,6147,1,0, + 0,0,6147,6148,5,2,0,0,6148,6149,3,524,262,0,6149,6151,5,3,0,0,6150, + 6152,3,570,285,0,6151,6150,1,0,0,0,6151,6152,1,0,0,0,6152,6154,1, + 0,0,0,6153,6155,3,572,286,0,6154,6153,1,0,0,0,6154,6155,1,0,0,0, + 6155,569,1,0,0,0,6156,6157,5,325,0,0,6157,6158,7,82,0,0,6158,6159, + 5,207,0,0,6159,6160,5,147,0,0,6160,6161,3,142,71,0,6161,6162,5,333, + 0,0,6162,6163,3,806,403,0,6163,571,1,0,0,0,6164,6165,5,173,0,0,6165, + 6166,3,142,71,0,6166,6167,5,333,0,0,6167,6173,3,806,403,0,6168,6169, + 5,94,0,0,6169,6170,3,826,413,0,6170,6171,5,53,0,0,6171,6172,3,826, + 413,0,6172,6174,1,0,0,0,6173,6168,1,0,0,0,6173,6174,1,0,0,0,6174, + 6175,1,0,0,0,6175,6176,5,100,0,0,6176,6177,3,806,403,0,6177,573, + 1,0,0,0,6178,6184,5,71,0,0,6179,6181,5,346,0,0,6180,6179,1,0,0,0, + 6180,6181,1,0,0,0,6181,6182,1,0,0,0,6182,6185,3,576,288,0,6183,6185, + 3,728,364,0,6184,6180,1,0,0,0,6184,6183,1,0,0,0,6185,575,1,0,0,0, + 6186,6188,7,21,0,0,6187,6186,1,0,0,0,6187,6188,1,0,0,0,6188,6189, + 1,0,0,0,6189,6191,7,22,0,0,6190,6192,5,92,0,0,6191,6190,1,0,0,0, + 6191,6192,1,0,0,0,6192,6193,1,0,0,0,6193,6202,3,776,388,0,6194,6196, + 5,367,0,0,6195,6194,1,0,0,0,6195,6196,1,0,0,0,6196,6198,1,0,0,0, + 6197,6199,5,92,0,0,6198,6197,1,0,0,0,6198,6199,1,0,0,0,6199,6200, + 1,0,0,0,6200,6202,3,776,388,0,6201,6187,1,0,0,0,6201,6195,1,0,0, + 0,6202,577,1,0,0,0,6203,6206,5,56,0,0,6204,6205,5,80,0,0,6205,6207, + 3,528,264,0,6206,6204,1,0,0,0,6206,6207,1,0,0,0,6207,579,1,0,0,0, + 6208,6209,5,83,0,0,6209,6210,5,147,0,0,6210,6215,3,582,291,0,6211, + 6212,5,6,0,0,6212,6214,3,582,291,0,6213,6211,1,0,0,0,6214,6217,1, + 0,0,0,6215,6213,1,0,0,0,6215,6216,1,0,0,0,6216,581,1,0,0,0,6217, + 6215,1,0,0,0,6218,6222,3,736,368,0,6219,6220,5,100,0,0,6220,6223, + 3,724,362,0,6221,6223,7,56,0,0,6222,6219,1,0,0,0,6222,6221,1,0,0, + 0,6222,6223,1,0,0,0,6223,6226,1,0,0,0,6224,6225,5,273,0,0,6225,6227, + 7,57,0,0,6226,6224,1,0,0,0,6226,6227,1,0,0,0,6227,583,1,0,0,0,6228, + 6230,3,590,295,0,6229,6231,3,588,294,0,6230,6229,1,0,0,0,6230,6231, + 1,0,0,0,6231,6240,1,0,0,0,6232,6235,3,586,293,0,6233,6235,3,588, + 294,0,6234,6232,1,0,0,0,6234,6233,1,0,0,0,6235,6237,1,0,0,0,6236, + 6238,3,590,295,0,6237,6236,1,0,0,0,6237,6238,1,0,0,0,6238,6240,1, + 0,0,0,6239,6228,1,0,0,0,6239,6234,1,0,0,0,6240,585,1,0,0,0,6241, + 6244,5,74,0,0,6242,6245,3,670,335,0,6243,6245,5,30,0,0,6244,6242, + 1,0,0,0,6244,6243,1,0,0,0,6245,6248,1,0,0,0,6246,6247,5,6,0,0,6247, + 6249,3,670,335,0,6248,6246,1,0,0,0,6248,6249,1,0,0,0,6249,587,1, + 0,0,0,6250,6251,5,61,0,0,6251,6253,7,83,0,0,6252,6254,3,592,296, + 0,6253,6252,1,0,0,0,6253,6254,1,0,0,0,6254,6255,1,0,0,0,6255,6259, + 7,84,0,0,6256,6260,5,81,0,0,6257,6258,5,105,0,0,6258,6260,5,467, + 0,0,6259,6256,1,0,0,0,6259,6257,1,0,0,0,6260,589,1,0,0,0,6261,6266, + 5,79,0,0,6262,6263,3,592,296,0,6263,6264,7,84,0,0,6264,6267,1,0, + 0,0,6265,6267,3,670,335,0,6266,6262,1,0,0,0,6266,6265,1,0,0,0,6267, + 591,1,0,0,0,6268,6269,7,30,0,0,6269,6272,7,85,0,0,6270,6272,3,678, + 339,0,6271,6268,1,0,0,0,6271,6270,1,0,0,0,6272,593,1,0,0,0,6273, + 6274,5,66,0,0,6274,6276,5,147,0,0,6275,6277,7,81,0,0,6276,6275,1, + 0,0,0,6276,6277,1,0,0,0,6277,6278,1,0,0,0,6278,6279,3,596,298,0, + 6279,595,1,0,0,0,6280,6285,3,598,299,0,6281,6282,5,6,0,0,6282,6284, + 3,598,299,0,6283,6281,1,0,0,0,6284,6287,1,0,0,0,6285,6283,1,0,0, + 0,6285,6286,1,0,0,0,6286,597,1,0,0,0,6287,6285,1,0,0,0,6288,6312, + 3,736,368,0,6289,6290,5,2,0,0,6290,6312,5,3,0,0,6291,6293,7,86,0, + 0,6292,6291,1,0,0,0,6292,6293,1,0,0,0,6293,6294,1,0,0,0,6294,6295, + 5,2,0,0,6295,6300,3,736,368,0,6296,6297,5,6,0,0,6297,6299,3,736, + 368,0,6298,6296,1,0,0,0,6299,6302,1,0,0,0,6300,6298,1,0,0,0,6300, + 6301,1,0,0,0,6301,6303,1,0,0,0,6302,6300,1,0,0,0,6303,6304,5,3,0, + 0,6304,6312,1,0,0,0,6305,6306,5,470,0,0,6306,6307,5,471,0,0,6307, + 6308,5,2,0,0,6308,6309,3,596,298,0,6309,6310,5,3,0,0,6310,6312,1, + 0,0,0,6311,6288,1,0,0,0,6311,6289,1,0,0,0,6311,6292,1,0,0,0,6311, + 6305,1,0,0,0,6312,599,1,0,0,0,6313,6323,5,62,0,0,6314,6315,5,269, + 0,0,6315,6317,5,245,0,0,6316,6314,1,0,0,0,6316,6317,1,0,0,0,6317, + 6318,1,0,0,0,6318,6324,5,369,0,0,6319,6321,5,245,0,0,6320,6319,1, + 0,0,0,6320,6321,1,0,0,0,6321,6322,1,0,0,0,6322,6324,5,334,0,0,6323, + 6316,1,0,0,0,6323,6320,1,0,0,0,6324,6327,1,0,0,0,6325,6326,5,275, + 0,0,6326,6328,3,764,382,0,6327,6325,1,0,0,0,6327,6328,1,0,0,0,6328, + 6332,1,0,0,0,6329,6333,5,272,0,0,6330,6331,5,465,0,0,6331,6333,5, + 466,0,0,6332,6329,1,0,0,0,6332,6330,1,0,0,0,6332,6333,1,0,0,0,6333, + 6335,1,0,0,0,6334,6313,1,0,0,0,6335,6336,1,0,0,0,6336,6334,1,0,0, + 0,6336,6337,1,0,0,0,6337,6342,1,0,0,0,6338,6339,5,62,0,0,6339,6340, + 5,300,0,0,6340,6342,5,81,0,0,6341,6334,1,0,0,0,6341,6338,1,0,0,0, + 6342,601,1,0,0,0,6343,6344,5,422,0,0,6344,6349,3,528,264,0,6345, + 6346,5,6,0,0,6346,6348,3,528,264,0,6347,6345,1,0,0,0,6348,6351,1, + 0,0,0,6349,6347,1,0,0,0,6349,6350,1,0,0,0,6350,603,1,0,0,0,6351, + 6349,1,0,0,0,6352,6353,5,64,0,0,6353,6354,3,606,303,0,6354,605,1, + 0,0,0,6355,6360,3,608,304,0,6356,6357,5,6,0,0,6357,6359,3,608,304, + 0,6358,6356,1,0,0,0,6359,6362,1,0,0,0,6360,6358,1,0,0,0,6360,6361, + 1,0,0,0,6361,607,1,0,0,0,6362,6360,1,0,0,0,6363,6378,3,620,310,0, + 6364,6366,5,81,0,0,6365,6364,1,0,0,0,6365,6366,1,0,0,0,6366,6367, + 1,0,0,0,6367,6369,3,782,391,0,6368,6370,5,9,0,0,6369,6368,1,0,0, + 0,6369,6370,1,0,0,0,6370,6372,1,0,0,0,6371,6373,3,142,71,0,6372, + 6371,1,0,0,0,6372,6373,1,0,0,0,6373,6375,1,0,0,0,6374,6376,3,634, + 317,0,6375,6374,1,0,0,0,6375,6376,1,0,0,0,6376,6378,1,0,0,0,6377, + 6363,1,0,0,0,6377,6365,1,0,0,0,6378,6380,1,0,0,0,6379,6381,3,612, + 306,0,6380,6379,1,0,0,0,6380,6381,1,0,0,0,6381,6383,1,0,0,0,6382, + 6384,3,628,314,0,6383,6382,1,0,0,0,6383,6384,1,0,0,0,6384,6414,1, + 0,0,0,6385,6387,5,72,0,0,6386,6385,1,0,0,0,6386,6387,1,0,0,0,6387, + 6388,1,0,0,0,6388,6414,3,610,305,0,6389,6390,5,2,0,0,6390,6407,3, + 608,304,0,6391,6392,5,110,0,0,6392,6393,5,118,0,0,6393,6408,3,608, + 304,0,6394,6396,5,121,0,0,6395,6397,3,616,308,0,6396,6395,1,0,0, + 0,6396,6397,1,0,0,0,6397,6398,1,0,0,0,6398,6399,5,118,0,0,6399,6408, + 3,608,304,0,6400,6402,3,616,308,0,6401,6400,1,0,0,0,6401,6402,1, + 0,0,0,6402,6403,1,0,0,0,6403,6404,5,118,0,0,6404,6405,3,608,304, + 0,6405,6406,3,618,309,0,6406,6408,1,0,0,0,6407,6391,1,0,0,0,6407, + 6394,1,0,0,0,6407,6401,1,0,0,0,6407,6408,1,0,0,0,6408,6409,1,0,0, + 0,6409,6411,5,3,0,0,6410,6412,3,612,306,0,6411,6410,1,0,0,0,6411, + 6412,1,0,0,0,6412,6414,1,0,0,0,6413,6377,1,0,0,0,6413,6386,1,0,0, + 0,6413,6389,1,0,0,0,6414,6433,1,0,0,0,6415,6416,5,110,0,0,6416,6417, + 5,118,0,0,6417,6432,3,608,304,0,6418,6420,5,121,0,0,6419,6421,3, + 616,308,0,6420,6419,1,0,0,0,6420,6421,1,0,0,0,6421,6422,1,0,0,0, + 6422,6423,5,118,0,0,6423,6432,3,608,304,0,6424,6426,3,616,308,0, + 6425,6424,1,0,0,0,6425,6426,1,0,0,0,6426,6427,1,0,0,0,6427,6428, + 5,118,0,0,6428,6429,3,608,304,0,6429,6430,3,618,309,0,6430,6432, + 1,0,0,0,6431,6415,1,0,0,0,6431,6418,1,0,0,0,6431,6425,1,0,0,0,6432, + 6435,1,0,0,0,6433,6431,1,0,0,0,6433,6434,1,0,0,0,6434,609,1,0,0, + 0,6435,6433,1,0,0,0,6436,6438,3,642,321,0,6437,6439,3,612,306,0, + 6438,6437,1,0,0,0,6438,6439,1,0,0,0,6439,6449,1,0,0,0,6440,6442, + 3,630,315,0,6441,6443,3,614,307,0,6442,6441,1,0,0,0,6442,6443,1, + 0,0,0,6443,6449,1,0,0,0,6444,6446,3,556,278,0,6445,6447,3,612,306, + 0,6446,6445,1,0,0,0,6446,6447,1,0,0,0,6447,6449,1,0,0,0,6448,6436, + 1,0,0,0,6448,6440,1,0,0,0,6448,6444,1,0,0,0,6449,611,1,0,0,0,6450, + 6452,5,36,0,0,6451,6450,1,0,0,0,6451,6452,1,0,0,0,6452,6453,1,0, + 0,0,6453,6458,3,826,413,0,6454,6455,5,2,0,0,6455,6456,3,788,394, + 0,6456,6457,5,3,0,0,6457,6459,1,0,0,0,6458,6454,1,0,0,0,6458,6459, + 1,0,0,0,6459,613,1,0,0,0,6460,6473,3,612,306,0,6461,6463,5,36,0, + 0,6462,6464,3,826,413,0,6463,6462,1,0,0,0,6463,6464,1,0,0,0,6464, + 6467,1,0,0,0,6465,6467,3,826,413,0,6466,6461,1,0,0,0,6466,6465,1, + 0,0,0,6467,6468,1,0,0,0,6468,6469,5,2,0,0,6469,6470,3,638,319,0, + 6470,6471,5,3,0,0,6471,6473,1,0,0,0,6472,6460,1,0,0,0,6472,6466, + 1,0,0,0,6473,615,1,0,0,0,6474,6476,7,87,0,0,6475,6477,5,123,0,0, + 6476,6475,1,0,0,0,6476,6477,1,0,0,0,6477,617,1,0,0,0,6478,6479,5, + 100,0,0,6479,6483,3,138,69,0,6480,6481,5,80,0,0,6481,6483,3,670, + 335,0,6482,6478,1,0,0,0,6482,6480,1,0,0,0,6483,619,1,0,0,0,6484, + 6500,3,316,158,0,6485,6491,5,81,0,0,6486,6492,3,778,389,0,6487,6488, + 5,2,0,0,6488,6489,3,778,389,0,6489,6490,5,3,0,0,6490,6492,1,0,0, + 0,6491,6486,1,0,0,0,6491,6487,1,0,0,0,6492,6500,1,0,0,0,6493,6494, + 5,68,0,0,6494,6497,5,323,0,0,6495,6498,3,794,397,0,6496,6498,5,111, + 0,0,6497,6495,1,0,0,0,6497,6496,1,0,0,0,6498,6500,1,0,0,0,6499,6484, + 1,0,0,0,6499,6485,1,0,0,0,6499,6493,1,0,0,0,6500,621,1,0,0,0,6501, + 6502,5,92,0,0,6502,6504,3,316,158,0,6503,6505,3,138,69,0,6504,6503, + 1,0,0,0,6504,6505,1,0,0,0,6505,6507,1,0,0,0,6506,6508,3,634,317, + 0,6507,6506,1,0,0,0,6507,6508,1,0,0,0,6508,6526,1,0,0,0,6509,6510, + 5,92,0,0,6510,6516,5,81,0,0,6511,6517,3,778,389,0,6512,6513,5,2, + 0,0,6513,6514,3,778,389,0,6514,6515,5,3,0,0,6515,6517,1,0,0,0,6516, + 6511,1,0,0,0,6516,6512,1,0,0,0,6517,6526,1,0,0,0,6518,6519,5,350, + 0,0,6519,6520,5,68,0,0,6520,6523,5,323,0,0,6521,6524,3,794,397,0, + 6522,6524,5,111,0,0,6523,6521,1,0,0,0,6523,6522,1,0,0,0,6524,6526, + 1,0,0,0,6525,6501,1,0,0,0,6525,6509,1,0,0,0,6525,6518,1,0,0,0,6526, + 623,1,0,0,0,6527,6532,3,620,310,0,6528,6529,5,6,0,0,6529,6531,3, + 620,310,0,6530,6528,1,0,0,0,6531,6534,1,0,0,0,6532,6530,1,0,0,0, + 6532,6533,1,0,0,0,6533,625,1,0,0,0,6534,6532,1,0,0,0,6535,6540,3, + 620,310,0,6536,6538,5,36,0,0,6537,6536,1,0,0,0,6537,6538,1,0,0,0, + 6538,6539,1,0,0,0,6539,6541,3,826,413,0,6540,6537,1,0,0,0,6540,6541, + 1,0,0,0,6541,627,1,0,0,0,6542,6543,5,472,0,0,6543,6544,3,814,407, + 0,6544,6550,3,528,264,0,6545,6546,5,310,0,0,6546,6547,5,2,0,0,6547, + 6548,3,670,335,0,6548,6549,5,3,0,0,6549,6551,1,0,0,0,6550,6545,1, + 0,0,0,6550,6551,1,0,0,0,6551,629,1,0,0,0,6552,6567,3,684,342,0,6553, + 6554,5,320,0,0,6554,6555,5,64,0,0,6555,6556,5,2,0,0,6556,6561,3, + 632,316,0,6557,6558,5,6,0,0,6558,6560,3,632,316,0,6559,6557,1,0, + 0,0,6560,6563,1,0,0,0,6561,6559,1,0,0,0,6561,6562,1,0,0,0,6562,6564, + 1,0,0,0,6563,6561,1,0,0,0,6564,6565,5,3,0,0,6565,6567,1,0,0,0,6566, + 6552,1,0,0,0,6566,6553,1,0,0,0,6567,6570,1,0,0,0,6568,6569,5,105, + 0,0,6569,6571,5,473,0,0,6570,6568,1,0,0,0,6570,6571,1,0,0,0,6571, + 631,1,0,0,0,6572,6578,3,684,342,0,6573,6574,5,36,0,0,6574,6575,5, + 2,0,0,6575,6576,3,638,319,0,6576,6577,5,3,0,0,6577,6579,1,0,0,0, + 6578,6573,1,0,0,0,6578,6579,1,0,0,0,6579,633,1,0,0,0,6580,6581,5, + 103,0,0,6581,6582,3,736,368,0,6582,635,1,0,0,0,6583,6588,5,103,0, + 0,6584,6585,5,434,0,0,6585,6586,5,275,0,0,6586,6589,3,826,413,0, + 6587,6589,3,670,335,0,6588,6584,1,0,0,0,6588,6587,1,0,0,0,6589,637, + 1,0,0,0,6590,6595,3,640,320,0,6591,6592,5,6,0,0,6592,6594,3,640, + 320,0,6593,6591,1,0,0,0,6594,6597,1,0,0,0,6595,6593,1,0,0,0,6595, + 6596,1,0,0,0,6596,639,1,0,0,0,6597,6595,1,0,0,0,6598,6599,3,826, + 413,0,6599,6601,3,648,324,0,6600,6602,3,90,45,0,6601,6600,1,0,0, + 0,6601,6602,1,0,0,0,6602,641,1,0,0,0,6603,6604,5,474,0,0,6604,6618, + 5,2,0,0,6605,6606,5,476,0,0,6606,6607,5,2,0,0,6607,6612,3,646,323, + 0,6608,6609,5,6,0,0,6609,6611,3,646,323,0,6610,6608,1,0,0,0,6611, + 6614,1,0,0,0,6612,6610,1,0,0,0,6612,6613,1,0,0,0,6613,6615,1,0,0, + 0,6614,6612,1,0,0,0,6615,6616,5,3,0,0,6616,6617,5,6,0,0,6617,6619, + 1,0,0,0,6618,6605,1,0,0,0,6618,6619,1,0,0,0,6619,6620,1,0,0,0,6620, + 6621,3,678,339,0,6621,6622,3,694,347,0,6622,6623,5,475,0,0,6623, + 6628,3,644,322,0,6624,6625,5,6,0,0,6625,6627,3,644,322,0,6626,6624, + 1,0,0,0,6627,6630,1,0,0,0,6628,6626,1,0,0,0,6628,6629,1,0,0,0,6629, + 6631,1,0,0,0,6630,6628,1,0,0,0,6631,6632,5,3,0,0,6632,643,1,0,0, + 0,6633,6652,3,826,413,0,6634,6648,3,648,324,0,6635,6638,5,53,0,0, + 6636,6638,3,836,418,0,6637,6635,1,0,0,0,6637,6636,1,0,0,0,6638,6639, + 1,0,0,0,6639,6645,3,670,335,0,6640,6642,5,77,0,0,6641,6640,1,0,0, + 0,6641,6642,1,0,0,0,6642,6643,1,0,0,0,6643,6645,5,78,0,0,6644,6637, + 1,0,0,0,6644,6641,1,0,0,0,6645,6646,1,0,0,0,6646,6644,1,0,0,0,6646, + 6647,1,0,0,0,6647,6649,1,0,0,0,6648,6644,1,0,0,0,6648,6649,1,0,0, + 0,6649,6653,1,0,0,0,6650,6651,5,62,0,0,6651,6653,5,473,0,0,6652, + 6634,1,0,0,0,6652,6650,1,0,0,0,6653,645,1,0,0,0,6654,6655,3,678, + 339,0,6655,6656,5,36,0,0,6656,6657,3,832,416,0,6657,6661,1,0,0,0, + 6658,6659,5,53,0,0,6659,6661,3,678,339,0,6660,6654,1,0,0,0,6660, + 6658,1,0,0,0,6661,647,1,0,0,0,6662,6664,5,415,0,0,6663,6662,1,0, + 0,0,6663,6664,1,0,0,0,6664,6665,1,0,0,0,6665,6682,3,650,325,0,6666, + 6668,5,4,0,0,6667,6669,5,574,0,0,6668,6667,1,0,0,0,6668,6669,1,0, + 0,0,6669,6670,1,0,0,0,6670,6672,5,5,0,0,6671,6666,1,0,0,0,6672,6675, + 1,0,0,0,6673,6671,1,0,0,0,6673,6674,1,0,0,0,6674,6683,1,0,0,0,6675, + 6673,1,0,0,0,6676,6680,5,35,0,0,6677,6678,5,4,0,0,6678,6679,5,574, + 0,0,6679,6681,5,5,0,0,6680,6677,1,0,0,0,6680,6681,1,0,0,0,6681,6683, + 1,0,0,0,6682,6673,1,0,0,0,6682,6676,1,0,0,0,6683,6689,1,0,0,0,6684, + 6685,3,784,392,0,6685,6686,5,27,0,0,6686,6687,7,88,0,0,6687,6689, + 1,0,0,0,6688,6663,1,0,0,0,6688,6684,1,0,0,0,6689,649,1,0,0,0,6690, + 6692,3,828,414,0,6691,6693,3,312,156,0,6692,6691,1,0,0,0,6692,6693, + 1,0,0,0,6693,6695,1,0,0,0,6694,6696,3,528,264,0,6695,6694,1,0,0, + 0,6695,6696,1,0,0,0,6696,6706,1,0,0,0,6697,6706,3,652,326,0,6698, + 6703,5,403,0,0,6699,6701,3,664,332,0,6700,6699,1,0,0,0,6700,6701, + 1,0,0,0,6701,6704,1,0,0,0,6702,6704,3,656,328,0,6703,6700,1,0,0, + 0,6703,6702,1,0,0,0,6704,6706,1,0,0,0,6705,6690,1,0,0,0,6705,6697, + 1,0,0,0,6705,6698,1,0,0,0,6706,651,1,0,0,0,6707,6712,3,654,327,0, + 6708,6712,3,658,329,0,6709,6712,3,660,330,0,6710,6712,3,662,331, + 0,6711,6707,1,0,0,0,6711,6708,1,0,0,0,6711,6709,1,0,0,0,6711,6710, + 1,0,0,0,6712,653,1,0,0,0,6713,6730,5,401,0,0,6714,6730,5,402,0,0, + 6715,6730,5,416,0,0,6716,6730,5,388,0,0,6717,6730,5,413,0,0,6718, + 6720,5,398,0,0,6719,6721,3,656,328,0,6720,6719,1,0,0,0,6720,6721, + 1,0,0,0,6721,6730,1,0,0,0,6722,6723,5,190,0,0,6723,6730,5,412,0, + 0,6724,6726,7,89,0,0,6725,6727,3,528,264,0,6726,6725,1,0,0,0,6726, + 6727,1,0,0,0,6727,6730,1,0,0,0,6728,6730,5,390,0,0,6729,6713,1,0, + 0,0,6729,6714,1,0,0,0,6729,6715,1,0,0,0,6729,6716,1,0,0,0,6729,6717, + 1,0,0,0,6729,6718,1,0,0,0,6729,6722,1,0,0,0,6729,6724,1,0,0,0,6729, + 6728,1,0,0,0,6730,655,1,0,0,0,6731,6732,5,2,0,0,6732,6733,5,574, + 0,0,6733,6734,5,3,0,0,6734,657,1,0,0,0,6735,6737,5,389,0,0,6736, + 6738,5,374,0,0,6737,6736,1,0,0,0,6737,6738,1,0,0,0,6738,6740,1,0, + 0,0,6739,6741,3,528,264,0,6740,6739,1,0,0,0,6740,6741,1,0,0,0,6741, + 659,1,0,0,0,6742,6744,7,90,0,0,6743,6745,5,374,0,0,6744,6743,1,0, + 0,0,6744,6745,1,0,0,0,6745,6753,1,0,0,0,6746,6753,5,423,0,0,6747, + 6748,5,405,0,0,6748,6750,7,91,0,0,6749,6751,5,374,0,0,6750,6749, + 1,0,0,0,6750,6751,1,0,0,0,6751,6753,1,0,0,0,6752,6742,1,0,0,0,6752, + 6746,1,0,0,0,6752,6747,1,0,0,0,6753,6755,1,0,0,0,6754,6756,3,656, + 328,0,6755,6754,1,0,0,0,6755,6756,1,0,0,0,6756,661,1,0,0,0,6757, + 6759,7,92,0,0,6758,6760,3,656,328,0,6759,6758,1,0,0,0,6759,6760, + 1,0,0,0,6760,6764,1,0,0,0,6761,6762,7,27,0,0,6762,6763,5,418,0,0, + 6763,6765,5,386,0,0,6764,6761,1,0,0,0,6764,6765,1,0,0,0,6765,663, + 1,0,0,0,6766,6796,5,264,0,0,6767,6796,3,666,333,0,6768,6771,5,384, + 0,0,6769,6770,5,94,0,0,6770,6772,5,264,0,0,6771,6769,1,0,0,0,6771, + 6772,1,0,0,0,6772,6796,1,0,0,0,6773,6780,5,176,0,0,6774,6778,5,94, + 0,0,6775,6779,5,218,0,0,6776,6779,5,261,0,0,6777,6779,3,666,333, + 0,6778,6775,1,0,0,0,6778,6776,1,0,0,0,6778,6777,1,0,0,0,6779,6781, + 1,0,0,0,6780,6774,1,0,0,0,6780,6781,1,0,0,0,6781,6796,1,0,0,0,6782, + 6788,5,218,0,0,6783,6786,5,94,0,0,6784,6787,5,261,0,0,6785,6787, + 3,666,333,0,6786,6784,1,0,0,0,6786,6785,1,0,0,0,6787,6789,1,0,0, + 0,6788,6783,1,0,0,0,6788,6789,1,0,0,0,6789,6796,1,0,0,0,6790,6793, + 5,261,0,0,6791,6792,5,94,0,0,6792,6794,3,666,333,0,6793,6791,1,0, + 0,0,6793,6794,1,0,0,0,6794,6796,1,0,0,0,6795,6766,1,0,0,0,6795,6767, + 1,0,0,0,6795,6768,1,0,0,0,6795,6773,1,0,0,0,6795,6782,1,0,0,0,6795, + 6790,1,0,0,0,6796,665,1,0,0,0,6797,6799,5,326,0,0,6798,6800,3,656, + 328,0,6799,6798,1,0,0,0,6799,6800,1,0,0,0,6800,667,1,0,0,0,6801, + 6802,7,93,0,0,6802,669,1,0,0,0,6803,6804,3,672,336,0,6804,671,1, + 0,0,0,6805,6806,6,336,-1,0,6806,6808,3,676,338,0,6807,6809,3,674, + 337,0,6808,6807,1,0,0,0,6808,6809,1,0,0,0,6809,6813,1,0,0,0,6810, + 6811,5,77,0,0,6811,6813,3,672,336,3,6812,6805,1,0,0,0,6812,6810, + 1,0,0,0,6813,6822,1,0,0,0,6814,6815,10,2,0,0,6815,6816,5,33,0,0, + 6816,6821,3,672,336,3,6817,6818,10,1,0,0,6818,6819,5,82,0,0,6819, + 6821,3,672,336,2,6820,6814,1,0,0,0,6820,6817,1,0,0,0,6821,6824,1, + 0,0,0,6822,6820,1,0,0,0,6822,6823,1,0,0,0,6823,673,1,0,0,0,6824, + 6822,1,0,0,0,6825,6826,3,668,334,0,6826,6827,3,676,338,0,6827,6897, + 1,0,0,0,6828,6829,3,668,334,0,6829,6830,3,726,363,0,6830,6836,3, + 716,358,0,6831,6837,3,556,278,0,6832,6833,5,2,0,0,6833,6834,3,670, + 335,0,6834,6835,5,3,0,0,6835,6837,1,0,0,0,6836,6831,1,0,0,0,6836, + 6832,1,0,0,0,6837,6897,1,0,0,0,6838,6840,5,77,0,0,6839,6838,1,0, + 0,0,6839,6840,1,0,0,0,6840,6841,1,0,0,0,6841,6842,5,387,0,0,6842, + 6843,3,676,338,0,6843,6844,5,33,0,0,6844,6845,3,676,338,0,6845,6897, + 1,0,0,0,6846,6848,5,77,0,0,6847,6846,1,0,0,0,6847,6848,1,0,0,0,6848, + 6849,1,0,0,0,6849,6850,5,68,0,0,6850,6851,5,2,0,0,6851,6856,3,670, + 335,0,6852,6853,5,6,0,0,6853,6855,3,670,335,0,6854,6852,1,0,0,0, + 6855,6858,1,0,0,0,6856,6854,1,0,0,0,6856,6857,1,0,0,0,6857,6859, + 1,0,0,0,6858,6856,1,0,0,0,6859,6860,5,3,0,0,6860,6897,1,0,0,0,6861, + 6863,5,77,0,0,6862,6861,1,0,0,0,6862,6863,1,0,0,0,6863,6864,1,0, + 0,0,6864,6865,5,68,0,0,6865,6897,3,556,278,0,6866,6868,5,77,0,0, + 6867,6866,1,0,0,0,6867,6868,1,0,0,0,6868,6877,1,0,0,0,6869,6878, + 5,120,0,0,6870,6878,5,114,0,0,6871,6872,5,127,0,0,6872,6878,5,94, + 0,0,6873,6875,5,387,0,0,6874,6876,5,91,0,0,6875,6874,1,0,0,0,6875, + 6876,1,0,0,0,6876,6878,1,0,0,0,6877,6869,1,0,0,0,6877,6870,1,0,0, + 0,6877,6871,1,0,0,0,6877,6873,1,0,0,0,6878,6879,1,0,0,0,6879,6882, + 3,676,338,0,6880,6881,5,197,0,0,6881,6883,3,676,338,0,6882,6880, + 1,0,0,0,6882,6883,1,0,0,0,6883,6897,1,0,0,0,6884,6886,5,116,0,0, + 6885,6887,5,77,0,0,6886,6885,1,0,0,0,6886,6887,1,0,0,0,6887,6888, + 1,0,0,0,6888,6897,5,78,0,0,6889,6891,5,116,0,0,6890,6892,5,77,0, + 0,6891,6890,1,0,0,0,6891,6892,1,0,0,0,6892,6893,1,0,0,0,6893,6894, + 5,56,0,0,6894,6895,5,64,0,0,6895,6897,3,676,338,0,6896,6825,1,0, + 0,0,6896,6828,1,0,0,0,6896,6839,1,0,0,0,6896,6847,1,0,0,0,6896,6862, + 1,0,0,0,6896,6867,1,0,0,0,6896,6884,1,0,0,0,6896,6889,1,0,0,0,6897, + 675,1,0,0,0,6898,6899,6,338,-1,0,6899,6903,3,678,339,0,6900,6901, + 7,30,0,0,6901,6903,3,676,338,4,6902,6898,1,0,0,0,6902,6900,1,0,0, + 0,6903,6920,1,0,0,0,6904,6905,10,3,0,0,6905,6906,7,94,0,0,6906,6919, + 3,676,338,4,6907,6908,10,2,0,0,6908,6909,7,30,0,0,6909,6919,3,676, + 338,3,6910,6911,10,1,0,0,6911,6912,5,15,0,0,6912,6919,3,676,338, + 2,6913,6914,10,5,0,0,6914,6915,5,142,0,0,6915,6916,5,418,0,0,6916, + 6917,5,386,0,0,6917,6919,3,670,335,0,6918,6904,1,0,0,0,6918,6907, + 1,0,0,0,6918,6910,1,0,0,0,6918,6913,1,0,0,0,6919,6922,1,0,0,0,6920, + 6918,1,0,0,0,6920,6921,1,0,0,0,6921,677,1,0,0,0,6922,6920,1,0,0, + 0,6923,6924,6,339,-1,0,6924,6925,7,95,0,0,6925,7012,3,556,278,0, + 6926,6929,5,35,0,0,6927,6930,3,556,278,0,6928,6930,3,742,371,0,6929, + 6927,1,0,0,0,6929,6928,1,0,0,0,6930,7012,1,0,0,0,6931,6932,5,28, + 0,0,6932,7012,3,756,378,0,6933,6934,5,470,0,0,6934,7012,3,528,264, + 0,6935,7012,5,574,0,0,6936,7012,5,576,0,0,6937,7012,5,566,0,0,6938, + 7012,5,570,0,0,6939,6949,3,814,407,0,6940,6950,3,816,408,0,6941, + 6942,5,2,0,0,6942,6944,3,738,369,0,6943,6945,3,580,290,0,6944,6943, + 1,0,0,0,6944,6945,1,0,0,0,6945,6946,1,0,0,0,6946,6947,5,3,0,0,6947, + 6948,3,816,408,0,6948,6950,1,0,0,0,6949,6940,1,0,0,0,6949,6941,1, + 0,0,0,6950,7012,1,0,0,0,6951,6953,3,652,326,0,6952,6951,1,0,0,0, + 6952,6953,1,0,0,0,6953,6954,1,0,0,0,6954,7012,3,816,408,0,6955,6963, + 5,403,0,0,6956,6958,3,816,408,0,6957,6959,3,664,332,0,6958,6957, + 1,0,0,0,6958,6959,1,0,0,0,6959,6964,1,0,0,0,6960,6961,3,656,328, + 0,6961,6962,3,816,408,0,6962,6964,1,0,0,0,6963,6956,1,0,0,0,6963, + 6960,1,0,0,0,6964,7012,1,0,0,0,6965,7012,5,96,0,0,6966,7012,5,60, + 0,0,6967,7012,5,78,0,0,6968,7012,5,577,0,0,6969,6970,5,2,0,0,6970, + 6971,3,670,335,0,6971,6972,5,3,0,0,6972,6973,3,756,378,0,6973,7012, + 1,0,0,0,6974,6976,5,40,0,0,6975,6977,3,670,335,0,6976,6975,1,0,0, + 0,6976,6977,1,0,0,0,6977,6979,1,0,0,0,6978,6980,3,750,375,0,6979, + 6978,1,0,0,0,6980,6981,1,0,0,0,6981,6979,1,0,0,0,6981,6982,1,0,0, + 0,6982,6985,1,0,0,0,6983,6984,5,58,0,0,6984,6986,3,670,335,0,6985, + 6983,1,0,0,0,6985,6986,1,0,0,0,6986,6987,1,0,0,0,6987,6988,5,454, + 0,0,6988,7012,1,0,0,0,6989,7012,3,682,341,0,6990,6992,3,556,278, + 0,6991,6993,3,754,377,0,6992,6991,1,0,0,0,6992,6993,1,0,0,0,6993, + 7012,1,0,0,0,6994,7012,3,714,357,0,6995,6996,5,2,0,0,6996,6997,3, + 670,335,0,6997,6998,5,6,0,0,6998,6999,3,728,364,0,6999,7000,5,3, + 0,0,7000,7012,1,0,0,0,7001,7002,3,712,356,0,7002,7003,5,125,0,0, + 7003,7004,3,712,356,0,7004,7012,1,0,0,0,7005,7012,3,808,404,0,7006, + 7007,7,30,0,0,7007,7012,3,678,339,5,7008,7009,3,722,361,0,7009,7010, + 3,678,339,2,7010,7012,1,0,0,0,7011,6923,1,0,0,0,7011,6926,1,0,0, + 0,7011,6931,1,0,0,0,7011,6933,1,0,0,0,7011,6935,1,0,0,0,7011,6936, + 1,0,0,0,7011,6937,1,0,0,0,7011,6938,1,0,0,0,7011,6939,1,0,0,0,7011, + 6952,1,0,0,0,7011,6955,1,0,0,0,7011,6965,1,0,0,0,7011,6966,1,0,0, + 0,7011,6967,1,0,0,0,7011,6968,1,0,0,0,7011,6969,1,0,0,0,7011,6974, + 1,0,0,0,7011,6989,1,0,0,0,7011,6990,1,0,0,0,7011,6994,1,0,0,0,7011, + 6995,1,0,0,0,7011,7001,1,0,0,0,7011,7005,1,0,0,0,7011,7006,1,0,0, + 0,7011,7008,1,0,0,0,7012,7040,1,0,0,0,7013,7014,10,3,0,0,7014,7015, + 3,720,360,0,7015,7016,3,678,339,4,7016,7039,1,0,0,0,7017,7018,10, + 6,0,0,7018,7019,5,26,0,0,7019,7039,3,648,324,0,7020,7021,10,4,0, + 0,7021,7023,3,722,361,0,7022,7024,3,678,339,0,7023,7022,1,0,0,0, + 7023,7024,1,0,0,0,7024,7039,1,0,0,0,7025,7026,10,1,0,0,7026,7028, + 5,116,0,0,7027,7029,5,77,0,0,7028,7027,1,0,0,0,7028,7029,1,0,0,0, + 7029,7036,1,0,0,0,7030,7031,5,56,0,0,7031,7032,5,64,0,0,7032,7037, + 3,678,339,0,7033,7034,5,275,0,0,7034,7037,3,522,261,0,7035,7037, + 5,188,0,0,7036,7030,1,0,0,0,7036,7033,1,0,0,0,7036,7035,1,0,0,0, + 7037,7039,1,0,0,0,7038,7013,1,0,0,0,7038,7017,1,0,0,0,7038,7020, + 1,0,0,0,7038,7025,1,0,0,0,7039,7042,1,0,0,0,7040,7038,1,0,0,0,7040, + 7041,1,0,0,0,7041,679,1,0,0,0,7042,7040,1,0,0,0,7043,7044,3,814, + 407,0,7044,7065,5,2,0,0,7045,7049,3,738,369,0,7046,7047,5,6,0,0, + 7047,7048,5,101,0,0,7048,7050,3,740,370,0,7049,7046,1,0,0,0,7049, + 7050,1,0,0,0,7050,7052,1,0,0,0,7051,7053,3,580,290,0,7052,7051,1, + 0,0,0,7052,7053,1,0,0,0,7053,7066,1,0,0,0,7054,7055,5,101,0,0,7055, + 7057,3,740,370,0,7056,7058,3,580,290,0,7057,7056,1,0,0,0,7057,7058, + 1,0,0,0,7058,7066,1,0,0,0,7059,7060,7,81,0,0,7060,7062,3,738,369, + 0,7061,7063,3,580,290,0,7062,7061,1,0,0,0,7062,7063,1,0,0,0,7063, + 7066,1,0,0,0,7064,7066,5,9,0,0,7065,7045,1,0,0,0,7065,7054,1,0,0, + 0,7065,7059,1,0,0,0,7065,7064,1,0,0,0,7065,7066,1,0,0,0,7066,7067, + 1,0,0,0,7067,7068,5,3,0,0,7068,681,1,0,0,0,7069,7076,3,680,340,0, + 7070,7071,5,479,0,0,7071,7072,5,66,0,0,7072,7073,5,2,0,0,7073,7074, + 3,580,290,0,7074,7075,5,3,0,0,7075,7077,1,0,0,0,7076,7070,1,0,0, + 0,7076,7077,1,0,0,0,7077,7084,1,0,0,0,7078,7079,5,480,0,0,7079,7080, + 5,2,0,0,7080,7081,5,103,0,0,7081,7082,3,670,335,0,7082,7083,5,3, + 0,0,7083,7085,1,0,0,0,7084,7078,1,0,0,0,7084,7085,1,0,0,0,7085,7091, + 1,0,0,0,7086,7089,5,124,0,0,7087,7090,3,706,353,0,7088,7090,3,826, + 413,0,7089,7087,1,0,0,0,7089,7088,1,0,0,0,7090,7092,1,0,0,0,7091, + 7086,1,0,0,0,7091,7092,1,0,0,0,7092,7095,1,0,0,0,7093,7095,3,686, + 343,0,7094,7069,1,0,0,0,7094,7093,1,0,0,0,7095,683,1,0,0,0,7096, + 7099,3,680,340,0,7097,7099,3,686,343,0,7098,7096,1,0,0,0,7098,7097, + 1,0,0,0,7099,685,1,0,0,0,7100,7101,5,108,0,0,7101,7102,5,62,0,0, + 7102,7103,5,2,0,0,7103,7104,3,670,335,0,7104,7105,5,3,0,0,7105,7275, + 1,0,0,0,7106,7275,5,48,0,0,7107,7109,7,96,0,0,7108,7110,3,656,328, + 0,7109,7108,1,0,0,0,7109,7110,1,0,0,0,7110,7275,1,0,0,0,7111,7275, + 5,49,0,0,7112,7275,5,52,0,0,7113,7275,5,89,0,0,7114,7275,5,99,0, + 0,7115,7275,5,47,0,0,7116,7275,5,111,0,0,7117,7118,7,97,0,0,7118, + 7119,5,2,0,0,7119,7120,3,670,335,0,7120,7121,5,36,0,0,7121,7122, + 3,648,324,0,7122,7123,5,3,0,0,7123,7275,1,0,0,0,7124,7125,5,397, + 0,0,7125,7130,5,2,0,0,7126,7127,3,744,372,0,7127,7128,5,64,0,0,7128, + 7129,3,670,335,0,7129,7131,1,0,0,0,7130,7126,1,0,0,0,7130,7131,1, + 0,0,0,7131,7132,1,0,0,0,7132,7275,5,3,0,0,7133,7134,5,489,0,0,7134, + 7135,5,2,0,0,7135,7138,3,670,335,0,7136,7137,5,6,0,0,7137,7139,3, + 746,373,0,7138,7136,1,0,0,0,7138,7139,1,0,0,0,7139,7140,1,0,0,0, + 7140,7141,5,3,0,0,7141,7275,1,0,0,0,7142,7143,5,410,0,0,7143,7144, + 5,2,0,0,7144,7145,3,670,335,0,7145,7146,5,84,0,0,7146,7147,3,670, + 335,0,7147,7148,5,64,0,0,7148,7151,3,670,335,0,7149,7150,5,62,0, + 0,7150,7152,3,670,335,0,7151,7149,1,0,0,0,7151,7152,1,0,0,0,7152, + 7153,1,0,0,0,7153,7154,5,3,0,0,7154,7275,1,0,0,0,7155,7156,5,411, + 0,0,7156,7161,5,2,0,0,7157,7158,3,678,339,0,7158,7159,5,68,0,0,7159, + 7160,3,678,339,0,7160,7162,1,0,0,0,7161,7157,1,0,0,0,7161,7162,1, + 0,0,0,7162,7163,1,0,0,0,7163,7275,5,3,0,0,7164,7165,5,417,0,0,7165, + 7167,5,2,0,0,7166,7168,3,748,374,0,7167,7166,1,0,0,0,7167,7168,1, + 0,0,0,7168,7169,1,0,0,0,7169,7275,5,3,0,0,7170,7171,5,421,0,0,7171, + 7173,5,2,0,0,7172,7174,7,98,0,0,7173,7172,1,0,0,0,7173,7174,1,0, + 0,0,7174,7179,1,0,0,0,7175,7177,3,670,335,0,7176,7175,1,0,0,0,7176, + 7177,1,0,0,0,7177,7178,1,0,0,0,7178,7180,5,64,0,0,7179,7176,1,0, + 0,0,7179,7180,1,0,0,0,7180,7181,1,0,0,0,7181,7182,3,728,364,0,7182, + 7183,1,0,0,0,7183,7184,5,3,0,0,7184,7275,1,0,0,0,7185,7186,5,408, + 0,0,7186,7187,5,2,0,0,7187,7188,3,670,335,0,7188,7189,5,6,0,0,7189, + 7190,3,670,335,0,7190,7191,5,3,0,0,7191,7275,1,0,0,0,7192,7193,7, + 99,0,0,7193,7275,3,528,264,0,7194,7195,5,426,0,0,7195,7196,5,2,0, + 0,7196,7197,5,266,0,0,7197,7207,3,832,416,0,7198,7205,5,6,0,0,7199, + 7200,5,424,0,0,7200,7201,5,2,0,0,7201,7202,3,688,344,0,7202,7203, + 5,3,0,0,7203,7206,1,0,0,0,7204,7206,3,728,364,0,7205,7199,1,0,0, + 0,7205,7204,1,0,0,0,7206,7208,1,0,0,0,7207,7198,1,0,0,0,7207,7208, + 1,0,0,0,7208,7209,1,0,0,0,7209,7210,5,3,0,0,7210,7275,1,0,0,0,7211, + 7212,5,427,0,0,7212,7213,5,2,0,0,7213,7214,3,678,339,0,7214,7215, + 3,694,347,0,7215,7216,5,3,0,0,7216,7275,1,0,0,0,7217,7218,5,428, + 0,0,7218,7219,5,2,0,0,7219,7220,3,688,344,0,7220,7221,5,3,0,0,7221, + 7275,1,0,0,0,7222,7223,5,429,0,0,7223,7224,5,2,0,0,7224,7225,3,692, + 346,0,7225,7228,3,670,335,0,7226,7227,7,100,0,0,7227,7229,5,378, + 0,0,7228,7226,1,0,0,0,7228,7229,1,0,0,0,7229,7230,1,0,0,0,7230,7231, + 5,3,0,0,7231,7275,1,0,0,0,7232,7233,5,430,0,0,7233,7234,5,2,0,0, + 7234,7235,5,266,0,0,7235,7238,3,832,416,0,7236,7237,5,6,0,0,7237, + 7239,3,670,335,0,7238,7236,1,0,0,0,7238,7239,1,0,0,0,7239,7240,1, + 0,0,0,7240,7241,5,3,0,0,7241,7275,1,0,0,0,7242,7243,5,431,0,0,7243, + 7244,5,2,0,0,7244,7245,5,383,0,0,7245,7246,3,670,335,0,7246,7247, + 5,6,0,0,7247,7251,5,375,0,0,7248,7249,5,269,0,0,7249,7252,5,450, + 0,0,7250,7252,3,670,335,0,7251,7248,1,0,0,0,7251,7250,1,0,0,0,7252, + 7262,1,0,0,0,7253,7254,5,6,0,0,7254,7260,5,339,0,0,7255,7257,5,269, + 0,0,7256,7255,1,0,0,0,7256,7257,1,0,0,0,7257,7258,1,0,0,0,7258,7261, + 5,450,0,0,7259,7261,5,385,0,0,7260,7256,1,0,0,0,7260,7259,1,0,0, + 0,7261,7263,1,0,0,0,7262,7253,1,0,0,0,7262,7263,1,0,0,0,7263,7264, + 1,0,0,0,7264,7265,5,3,0,0,7265,7275,1,0,0,0,7266,7267,5,432,0,0, + 7267,7268,5,2,0,0,7268,7269,3,692,346,0,7269,7270,3,670,335,0,7270, + 7271,5,36,0,0,7271,7272,3,650,325,0,7272,7273,5,3,0,0,7273,7275, + 1,0,0,0,7274,7100,1,0,0,0,7274,7106,1,0,0,0,7274,7107,1,0,0,0,7274, + 7111,1,0,0,0,7274,7112,1,0,0,0,7274,7113,1,0,0,0,7274,7114,1,0,0, + 0,7274,7115,1,0,0,0,7274,7116,1,0,0,0,7274,7117,1,0,0,0,7274,7124, + 1,0,0,0,7274,7133,1,0,0,0,7274,7142,1,0,0,0,7274,7155,1,0,0,0,7274, + 7164,1,0,0,0,7274,7170,1,0,0,0,7274,7185,1,0,0,0,7274,7192,1,0,0, + 0,7274,7194,1,0,0,0,7274,7211,1,0,0,0,7274,7217,1,0,0,0,7274,7222, + 1,0,0,0,7274,7232,1,0,0,0,7274,7242,1,0,0,0,7274,7266,1,0,0,0,7275, + 687,1,0,0,0,7276,7281,3,690,345,0,7277,7278,5,6,0,0,7278,7280,3, + 690,345,0,7279,7277,1,0,0,0,7280,7283,1,0,0,0,7281,7279,1,0,0,0, + 7281,7282,1,0,0,0,7282,689,1,0,0,0,7283,7281,1,0,0,0,7284,7287,3, + 670,335,0,7285,7286,5,36,0,0,7286,7288,3,832,416,0,7287,7285,1,0, + 0,0,7287,7288,1,0,0,0,7288,691,1,0,0,0,7289,7290,7,101,0,0,7290, + 693,1,0,0,0,7291,7293,5,286,0,0,7292,7294,3,696,348,0,7293,7292, + 1,0,0,0,7293,7294,1,0,0,0,7294,7295,1,0,0,0,7295,7297,3,678,339, + 0,7296,7298,3,696,348,0,7297,7296,1,0,0,0,7297,7298,1,0,0,0,7298, + 695,1,0,0,0,7299,7300,5,147,0,0,7300,7301,7,102,0,0,7301,697,1,0, + 0,0,7302,7303,5,104,0,0,7303,7308,3,702,351,0,7304,7305,5,6,0,0, + 7305,7307,3,702,351,0,7306,7304,1,0,0,0,7307,7310,1,0,0,0,7308,7306, + 1,0,0,0,7308,7309,1,0,0,0,7309,699,1,0,0,0,7310,7308,1,0,0,0,7311, + 7312,5,67,0,0,7312,7313,3,670,335,0,7313,701,1,0,0,0,7314,7315,3, + 826,413,0,7315,7316,5,36,0,0,7316,7317,3,706,353,0,7317,703,1,0, + 0,0,7318,7321,5,124,0,0,7319,7322,3,706,353,0,7320,7322,3,826,413, + 0,7321,7319,1,0,0,0,7321,7320,1,0,0,0,7322,705,1,0,0,0,7323,7325, + 5,2,0,0,7324,7326,3,826,413,0,7325,7324,1,0,0,0,7325,7326,1,0,0, + 0,7326,7330,1,0,0,0,7327,7328,5,285,0,0,7328,7329,5,147,0,0,7329, + 7331,3,728,364,0,7330,7327,1,0,0,0,7330,7331,1,0,0,0,7331,7333,1, + 0,0,0,7332,7334,3,580,290,0,7333,7332,1,0,0,0,7333,7334,1,0,0,0, + 7334,7336,1,0,0,0,7335,7337,3,708,354,0,7336,7335,1,0,0,0,7336,7337, + 1,0,0,0,7337,7338,1,0,0,0,7338,7339,5,3,0,0,7339,707,1,0,0,0,7340, + 7345,7,103,0,0,7341,7342,5,387,0,0,7342,7343,3,710,355,0,7343,7344, + 5,33,0,0,7344,7346,1,0,0,0,7345,7341,1,0,0,0,7345,7346,1,0,0,0,7346, + 7347,1,0,0,0,7347,7348,3,710,355,0,7348,7358,1,0,0,0,7349,7356,5, + 199,0,0,7350,7351,5,434,0,0,7351,7357,5,414,0,0,7352,7357,5,66,0, + 0,7353,7357,5,467,0,0,7354,7355,5,269,0,0,7355,7357,5,482,0,0,7356, + 7350,1,0,0,0,7356,7352,1,0,0,0,7356,7353,1,0,0,0,7356,7354,1,0,0, + 0,7357,7359,1,0,0,0,7358,7349,1,0,0,0,7358,7359,1,0,0,0,7359,709, + 1,0,0,0,7360,7363,5,362,0,0,7361,7363,3,670,335,0,7362,7360,1,0, + 0,0,7362,7361,1,0,0,0,7363,7364,1,0,0,0,7364,7368,7,104,0,0,7365, + 7366,5,434,0,0,7366,7368,5,414,0,0,7367,7362,1,0,0,0,7367,7365,1, + 0,0,0,7368,711,1,0,0,0,7369,7377,3,714,357,0,7370,7371,5,2,0,0,7371, + 7372,3,728,364,0,7372,7373,5,6,0,0,7373,7374,3,670,335,0,7374,7375, + 5,3,0,0,7375,7377,1,0,0,0,7376,7369,1,0,0,0,7376,7370,1,0,0,0,7377, + 713,1,0,0,0,7378,7379,5,414,0,0,7379,7381,5,2,0,0,7380,7382,3,728, + 364,0,7381,7380,1,0,0,0,7381,7382,1,0,0,0,7382,7383,1,0,0,0,7383, + 7384,5,3,0,0,7384,715,1,0,0,0,7385,7386,7,105,0,0,7386,717,1,0,0, + 0,7387,7390,5,29,0,0,7388,7390,3,720,360,0,7389,7387,1,0,0,0,7389, + 7388,1,0,0,0,7390,719,1,0,0,0,7391,7392,7,106,0,0,7392,721,1,0,0, + 0,7393,7400,5,29,0,0,7394,7395,5,278,0,0,7395,7396,5,2,0,0,7396, + 7397,3,408,204,0,7397,7398,5,3,0,0,7398,7400,1,0,0,0,7399,7393,1, + 0,0,0,7399,7394,1,0,0,0,7400,723,1,0,0,0,7401,7408,3,718,359,0,7402, + 7403,5,278,0,0,7403,7404,5,2,0,0,7404,7405,3,408,204,0,7405,7406, + 5,3,0,0,7406,7408,1,0,0,0,7407,7401,1,0,0,0,7407,7402,1,0,0,0,7408, + 725,1,0,0,0,7409,7415,3,724,362,0,7410,7412,5,77,0,0,7411,7410,1, + 0,0,0,7411,7412,1,0,0,0,7412,7413,1,0,0,0,7413,7415,7,107,0,0,7414, + 7409,1,0,0,0,7414,7411,1,0,0,0,7415,727,1,0,0,0,7416,7421,3,670, + 335,0,7417,7418,5,6,0,0,7418,7420,3,670,335,0,7419,7417,1,0,0,0, + 7420,7423,1,0,0,0,7421,7419,1,0,0,0,7421,7422,1,0,0,0,7422,729,1, + 0,0,0,7423,7421,1,0,0,0,7424,7425,3,670,335,0,7425,731,1,0,0,0,7426, + 7427,3,806,403,0,7427,733,1,0,0,0,7428,7429,5,2,0,0,7429,7430,3, + 670,335,0,7430,7431,5,3,0,0,7431,7434,1,0,0,0,7432,7434,3,806,403, + 0,7433,7428,1,0,0,0,7433,7432,1,0,0,0,7434,735,1,0,0,0,7435,7438, + 3,670,335,0,7436,7438,3,806,403,0,7437,7435,1,0,0,0,7437,7436,1, + 0,0,0,7438,737,1,0,0,0,7439,7444,3,740,370,0,7440,7441,5,6,0,0,7441, + 7443,3,740,370,0,7442,7440,1,0,0,0,7443,7446,1,0,0,0,7444,7442,1, + 0,0,0,7444,7445,1,0,0,0,7445,739,1,0,0,0,7446,7444,1,0,0,0,7447, + 7455,3,806,403,0,7448,7455,3,670,335,0,7449,7452,3,828,414,0,7450, + 7451,7,108,0,0,7451,7453,3,670,335,0,7452,7450,1,0,0,0,7452,7453, + 1,0,0,0,7453,7455,1,0,0,0,7454,7447,1,0,0,0,7454,7448,1,0,0,0,7454, + 7449,1,0,0,0,7455,741,1,0,0,0,7456,7466,5,4,0,0,7457,7467,3,728, + 364,0,7458,7463,3,742,371,0,7459,7460,5,6,0,0,7460,7462,3,742,371, + 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,743,1,0,0,0,7470,7479,3,836,418,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,816,408,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,745,1,0,0,0,7480,7481,7,109,0,0,7481,747,1,0,0,0,7482,7483, + 3,670,335,0,7483,7484,5,64,0,0,7484,7487,3,670,335,0,7485,7486,5, + 62,0,0,7486,7488,3,670,335,0,7487,7485,1,0,0,0,7487,7488,1,0,0,0, + 7488,7504,1,0,0,0,7489,7490,3,670,335,0,7490,7491,5,62,0,0,7491, + 7494,3,670,335,0,7492,7493,5,64,0,0,7493,7495,3,670,335,0,7494,7492, + 1,0,0,0,7494,7495,1,0,0,0,7495,7504,1,0,0,0,7496,7497,3,670,335, + 0,7497,7498,5,127,0,0,7498,7499,3,670,335,0,7499,7500,5,197,0,0, + 7500,7501,3,670,335,0,7501,7504,1,0,0,0,7502,7504,3,728,364,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,749,1,0,0,0,7505,7506,5,102,0,0,7506,7507,3,670,335,0,7507, + 7508,5,93,0,0,7508,7509,3,670,335,0,7509,751,1,0,0,0,7510,7511,5, + 11,0,0,7511,7527,3,834,417,0,7512,7513,5,11,0,0,7513,7527,5,9,0, + 0,7514,7523,5,4,0,0,7515,7524,3,670,335,0,7516,7518,3,670,335,0, + 7517,7516,1,0,0,0,7517,7518,1,0,0,0,7518,7519,1,0,0,0,7519,7521, + 5,8,0,0,7520,7522,3,670,335,0,7521,7520,1,0,0,0,7521,7522,1,0,0, + 0,7522,7524,1,0,0,0,7523,7515,1,0,0,0,7523,7517,1,0,0,0,7524,7525, + 1,0,0,0,7525,7527,5,5,0,0,7526,7510,1,0,0,0,7526,7512,1,0,0,0,7526, + 7514,1,0,0,0,7527,753,1,0,0,0,7528,7530,3,752,376,0,7529,7528,1, + 0,0,0,7530,7531,1,0,0,0,7531,7529,1,0,0,0,7531,7532,1,0,0,0,7532, + 755,1,0,0,0,7533,7535,3,752,376,0,7534,7533,1,0,0,0,7535,7538,1, + 0,0,0,7536,7534,1,0,0,0,7536,7537,1,0,0,0,7537,757,1,0,0,0,7538, + 7536,1,0,0,0,7539,7544,3,760,380,0,7540,7541,5,6,0,0,7541,7543,3, + 760,380,0,7542,7540,1,0,0,0,7543,7546,1,0,0,0,7544,7542,1,0,0,0, + 7544,7545,1,0,0,0,7545,759,1,0,0,0,7546,7544,1,0,0,0,7547,7567,3, + 762,381,0,7548,7551,3,732,366,0,7549,7551,3,730,365,0,7550,7548, + 1,0,0,0,7550,7549,1,0,0,0,7551,7557,1,0,0,0,7552,7554,5,36,0,0,7553, + 7552,1,0,0,0,7553,7554,1,0,0,0,7554,7555,1,0,0,0,7555,7558,3,836, + 418,0,7556,7558,1,0,0,0,7557,7553,1,0,0,0,7557,7556,1,0,0,0,7558, + 7567,1,0,0,0,7559,7560,3,826,413,0,7560,7561,5,11,0,0,7561,7562, + 4,380,10,0,7562,7563,3,804,402,0,7563,7567,1,0,0,0,7564,7565,4,380, + 11,0,7565,7567,3,804,402,0,7566,7547,1,0,0,0,7566,7550,1,0,0,0,7566, + 7559,1,0,0,0,7566,7564,1,0,0,0,7567,761,1,0,0,0,7568,7569,3,826, + 413,0,7569,7570,5,11,0,0,7570,7572,1,0,0,0,7571,7568,1,0,0,0,7572, + 7575,1,0,0,0,7573,7571,1,0,0,0,7573,7574,1,0,0,0,7574,7576,1,0,0, + 0,7575,7573,1,0,0,0,7576,7577,5,9,0,0,7577,763,1,0,0,0,7578,7583, + 3,784,392,0,7579,7580,5,6,0,0,7580,7582,3,784,392,0,7581,7579,1, + 0,0,0,7582,7585,1,0,0,0,7583,7581,1,0,0,0,7583,7584,1,0,0,0,7584, + 765,1,0,0,0,7585,7583,1,0,0,0,7586,7591,3,778,389,0,7587,7588,5, + 6,0,0,7588,7590,3,778,389,0,7589,7587,1,0,0,0,7590,7593,1,0,0,0, + 7591,7589,1,0,0,0,7591,7592,1,0,0,0,7592,767,1,0,0,0,7593,7591,1, + 0,0,0,7594,7599,3,794,397,0,7595,7596,5,6,0,0,7596,7598,3,794,397, 0,7597,7595,1,0,0,0,7598,7601,1,0,0,0,7599,7597,1,0,0,0,7599,7600, - 1,0,0,0,7600,771,1,0,0,0,7601,7599,1,0,0,0,7602,7603,3,784,392,0, - 7603,773,1,0,0,0,7604,7605,3,784,392,0,7605,775,1,0,0,0,7606,7607, - 3,784,392,0,7607,777,1,0,0,0,7608,7609,3,784,392,0,7609,779,1,0, - 0,0,7610,7611,3,784,392,0,7611,781,1,0,0,0,7612,7613,3,310,155,0, - 7613,783,1,0,0,0,7614,7616,3,826,413,0,7615,7617,3,754,377,0,7616, - 7615,1,0,0,0,7616,7617,1,0,0,0,7617,785,1,0,0,0,7618,7623,3,774, - 387,0,7619,7620,5,6,0,0,7620,7622,3,774,387,0,7621,7619,1,0,0,0, - 7622,7625,1,0,0,0,7623,7621,1,0,0,0,7623,7624,1,0,0,0,7624,787,1, - 0,0,0,7625,7623,1,0,0,0,7626,7631,3,826,413,0,7627,7628,5,6,0,0, - 7628,7630,3,826,413,0,7629,7627,1,0,0,0,7630,7633,1,0,0,0,7631,7629, - 1,0,0,0,7631,7632,1,0,0,0,7632,789,1,0,0,0,7633,7631,1,0,0,0,7634, - 7635,3,310,155,0,7635,791,1,0,0,0,7636,7637,3,310,155,0,7637,793, - 1,0,0,0,7638,7639,3,310,155,0,7639,795,1,0,0,0,7640,7641,3,826,413, - 0,7641,797,1,0,0,0,7642,7643,3,826,413,0,7643,799,1,0,0,0,7644,7649, - 3,828,414,0,7645,7646,3,826,413,0,7646,7647,3,754,377,0,7647,7649, - 1,0,0,0,7648,7644,1,0,0,0,7648,7645,1,0,0,0,7649,801,1,0,0,0,7650, - 7655,3,828,414,0,7651,7652,3,826,413,0,7652,7653,3,754,377,0,7653, - 7655,1,0,0,0,7654,7650,1,0,0,0,7654,7651,1,0,0,0,7655,803,1,0,0, - 0,7656,7657,1,0,0,0,7657,805,1,0,0,0,7658,7659,3,826,413,0,7659, - 7660,3,756,378,0,7660,7670,1,0,0,0,7661,7667,4,403,10,0,7662,7663, - 3,826,413,0,7663,7664,5,11,0,0,7664,7665,3,804,402,0,7665,7668,1, - 0,0,0,7666,7668,3,804,402,0,7667,7662,1,0,0,0,7667,7666,1,0,0,0, - 7668,7670,1,0,0,0,7669,7658,1,0,0,0,7669,7661,1,0,0,0,7670,807,1, - 0,0,0,7671,7672,3,826,413,0,7672,7673,3,756,378,0,7673,7683,1,0, - 0,0,7674,7680,4,404,11,0,7675,7676,3,826,413,0,7676,7677,5,11,0, - 0,7677,7678,3,804,402,0,7678,7681,1,0,0,0,7679,7681,3,804,402,0, - 7680,7675,1,0,0,0,7680,7679,1,0,0,0,7681,7683,1,0,0,0,7682,7671, - 1,0,0,0,7682,7674,1,0,0,0,7683,809,1,0,0,0,7684,7685,3,826,413,0, - 7685,811,1,0,0,0,7686,7691,3,828,414,0,7687,7688,3,826,413,0,7688, - 7689,3,754,377,0,7689,7691,1,0,0,0,7690,7686,1,0,0,0,7690,7687,1, - 0,0,0,7691,813,1,0,0,0,7692,7697,3,828,414,0,7693,7694,3,826,413, - 0,7694,7695,3,754,377,0,7695,7697,1,0,0,0,7696,7692,1,0,0,0,7696, - 7693,1,0,0,0,7697,815,1,0,0,0,7698,7701,3,818,409,0,7699,7700,5, - 487,0,0,7700,7702,3,818,409,0,7701,7699,1,0,0,0,7701,7702,1,0,0, - 0,7702,817,1,0,0,0,7703,7715,5,561,0,0,7704,7715,5,563,0,0,7705, - 7709,5,565,0,0,7706,7708,5,590,0,0,7707,7706,1,0,0,0,7708,7711,1, - 0,0,0,7709,7707,1,0,0,0,7709,7710,1,0,0,0,7710,7712,1,0,0,0,7711, - 7709,1,0,0,0,7712,7715,5,591,0,0,7713,7715,5,586,0,0,7714,7703,1, - 0,0,0,7714,7704,1,0,0,0,7714,7705,1,0,0,0,7714,7713,1,0,0,0,7715, - 819,1,0,0,0,7716,7718,7,30,0,0,7717,7716,1,0,0,0,7717,7718,1,0,0, - 0,7718,7719,1,0,0,0,7719,7720,5,574,0,0,7720,821,1,0,0,0,7721,7727, - 3,830,415,0,7722,7727,5,52,0,0,7723,7727,5,49,0,0,7724,7727,5,89, - 0,0,7725,7727,5,524,0,0,7726,7721,1,0,0,0,7726,7722,1,0,0,0,7726, - 7723,1,0,0,0,7726,7724,1,0,0,0,7726,7725,1,0,0,0,7727,823,1,0,0, - 0,7728,7733,3,822,411,0,7729,7730,5,6,0,0,7730,7732,3,822,411,0, - 7731,7729,1,0,0,0,7732,7735,1,0,0,0,7733,7731,1,0,0,0,7733,7734, - 1,0,0,0,7734,825,1,0,0,0,7735,7733,1,0,0,0,7736,7739,3,834,417,0, - 7737,7739,3,838,419,0,7738,7736,1,0,0,0,7738,7737,1,0,0,0,7739,827, - 1,0,0,0,7740,7743,3,834,417,0,7741,7743,3,840,420,0,7742,7740,1, - 0,0,0,7742,7741,1,0,0,0,7743,829,1,0,0,0,7744,7748,3,834,417,0,7745, - 7748,3,838,419,0,7746,7748,3,840,420,0,7747,7744,1,0,0,0,7747,7745, - 1,0,0,0,7747,7746,1,0,0,0,7748,831,1,0,0,0,7749,7754,3,834,417,0, - 7750,7754,3,838,419,0,7751,7754,3,840,420,0,7752,7754,3,842,421, - 0,7753,7749,1,0,0,0,7753,7750,1,0,0,0,7753,7751,1,0,0,0,7753,7752, - 1,0,0,0,7754,833,1,0,0,0,7755,7758,5,552,0,0,7756,7757,5,487,0,0, - 7757,7759,3,818,409,0,7758,7756,1,0,0,0,7758,7759,1,0,0,0,7759,7767, - 1,0,0,0,7760,7767,3,816,408,0,7761,7767,5,553,0,0,7762,7767,5,557, - 0,0,7763,7767,5,577,0,0,7764,7767,5,578,0,0,7765,7767,3,836,418, - 0,7766,7755,1,0,0,0,7766,7760,1,0,0,0,7766,7761,1,0,0,0,7766,7762, - 1,0,0,0,7766,7763,1,0,0,0,7766,7764,1,0,0,0,7766,7765,1,0,0,0,7767, - 835,1,0,0,0,7768,7769,7,110,0,0,7769,837,1,0,0,0,7770,7822,5,387, - 0,0,7771,7822,5,388,0,0,7772,7822,3,658,329,0,7773,7822,5,390,0, - 0,7774,7822,5,391,0,0,7775,7822,3,660,330,0,7776,7822,5,393,0,0, - 7777,7822,5,394,0,0,7778,7822,5,395,0,0,7779,7822,5,396,0,0,7780, - 7822,5,397,0,0,7781,7822,5,398,0,0,7782,7822,5,399,0,0,7783,7822, - 5,470,0,0,7784,7822,5,400,0,0,7785,7822,5,401,0,0,7786,7822,5,402, - 0,0,7787,7822,5,403,0,0,7788,7822,5,404,0,0,7789,7822,5,405,0,0, - 7790,7822,5,406,0,0,7791,7822,5,407,0,0,7792,7822,5,489,0,0,7793, - 7822,5,408,0,0,7794,7822,3,654,327,0,7795,7822,5,453,0,0,7796,7822, - 5,410,0,0,7797,7822,5,411,0,0,7798,7822,5,412,0,0,7799,7822,5,413, - 0,0,7800,7822,5,414,0,0,7801,7822,5,415,0,0,7802,7822,5,416,0,0, - 7803,7822,5,417,0,0,7804,7822,5,418,0,0,7805,7822,5,419,0,0,7806, - 7822,5,420,0,0,7807,7822,5,421,0,0,7808,7822,5,422,0,0,7809,7822, - 5,423,0,0,7810,7822,5,424,0,0,7811,7822,5,425,0,0,7812,7822,5,426, - 0,0,7813,7822,5,427,0,0,7814,7822,5,428,0,0,7815,7822,5,476,0,0, - 7816,7822,5,429,0,0,7817,7822,5,430,0,0,7818,7822,5,431,0,0,7819, - 7822,5,432,0,0,7820,7822,5,474,0,0,7821,7770,1,0,0,0,7821,7771,1, - 0,0,0,7821,7772,1,0,0,0,7821,7773,1,0,0,0,7821,7774,1,0,0,0,7821, - 7775,1,0,0,0,7821,7776,1,0,0,0,7821,7777,1,0,0,0,7821,7778,1,0,0, - 0,7821,7779,1,0,0,0,7821,7780,1,0,0,0,7821,7781,1,0,0,0,7821,7782, - 1,0,0,0,7821,7783,1,0,0,0,7821,7784,1,0,0,0,7821,7785,1,0,0,0,7821, - 7786,1,0,0,0,7821,7787,1,0,0,0,7821,7788,1,0,0,0,7821,7789,1,0,0, - 0,7821,7790,1,0,0,0,7821,7791,1,0,0,0,7821,7792,1,0,0,0,7821,7793, - 1,0,0,0,7821,7794,1,0,0,0,7821,7795,1,0,0,0,7821,7796,1,0,0,0,7821, - 7797,1,0,0,0,7821,7798,1,0,0,0,7821,7799,1,0,0,0,7821,7800,1,0,0, - 0,7821,7801,1,0,0,0,7821,7802,1,0,0,0,7821,7803,1,0,0,0,7821,7804, - 1,0,0,0,7821,7805,1,0,0,0,7821,7806,1,0,0,0,7821,7807,1,0,0,0,7821, - 7808,1,0,0,0,7821,7809,1,0,0,0,7821,7810,1,0,0,0,7821,7811,1,0,0, - 0,7821,7812,1,0,0,0,7821,7813,1,0,0,0,7821,7814,1,0,0,0,7821,7815, - 1,0,0,0,7821,7816,1,0,0,0,7821,7817,1,0,0,0,7821,7818,1,0,0,0,7821, - 7819,1,0,0,0,7821,7820,1,0,0,0,7822,839,1,0,0,0,7823,7824,7,111, - 0,0,7824,841,1,0,0,0,7825,7826,7,112,0,0,7826,843,1,0,0,0,7827,7829, - 3,846,423,0,7828,7827,1,0,0,0,7828,7829,1,0,0,0,7829,7840,1,0,0, - 0,7830,7838,5,178,0,0,7831,7835,3,848,424,0,7832,7835,5,178,0,0, - 7833,7835,3,846,423,0,7834,7831,1,0,0,0,7834,7832,1,0,0,0,7834,7833, - 1,0,0,0,7835,7836,1,0,0,0,7836,7834,1,0,0,0,7836,7837,1,0,0,0,7837, - 7839,1,0,0,0,7838,7834,1,0,0,0,7838,7839,1,0,0,0,7839,7841,1,0,0, - 0,7840,7830,1,0,0,0,7840,7841,1,0,0,0,7841,7842,1,0,0,0,7842,7846, - 5,146,0,0,7843,7845,3,854,427,0,7844,7843,1,0,0,0,7845,7848,1,0, - 0,0,7846,7844,1,0,0,0,7846,7847,1,0,0,0,7847,7850,1,0,0,0,7848,7846, - 1,0,0,0,7849,7851,3,932,466,0,7850,7849,1,0,0,0,7850,7851,1,0,0, - 0,7851,7852,1,0,0,0,7852,7854,5,454,0,0,7853,7855,3,936,468,0,7854, - 7853,1,0,0,0,7854,7855,1,0,0,0,7855,845,1,0,0,0,7856,7857,5,18,0, - 0,7857,7858,3,936,468,0,7858,7859,5,19,0,0,7859,847,1,0,0,0,7860, - 7907,3,936,468,0,7861,7862,5,496,0,0,7862,7865,5,62,0,0,7863,7866, - 5,28,0,0,7864,7866,3,826,413,0,7865,7863,1,0,0,0,7865,7864,1,0,0, - 0,7866,7908,1,0,0,0,7867,7869,5,497,0,0,7868,7867,1,0,0,0,7868,7869, - 1,0,0,0,7869,7870,1,0,0,0,7870,7872,3,648,324,0,7871,7873,3,90,45, - 0,7872,7871,1,0,0,0,7872,7873,1,0,0,0,7873,7876,1,0,0,0,7874,7875, - 5,77,0,0,7875,7877,5,78,0,0,7876,7874,1,0,0,0,7876,7877,1,0,0,0, - 7877,7883,1,0,0,0,7878,7881,3,852,426,0,7879,7881,5,53,0,0,7880, - 7878,1,0,0,0,7880,7879,1,0,0,0,7881,7882,1,0,0,0,7882,7884,3,938, - 469,0,7883,7880,1,0,0,0,7883,7884,1,0,0,0,7884,7908,1,0,0,0,7885, - 7887,5,269,0,0,7886,7885,1,0,0,0,7886,7887,1,0,0,0,7887,7888,1,0, - 0,0,7888,7890,5,324,0,0,7889,7886,1,0,0,0,7889,7890,1,0,0,0,7890, - 7891,1,0,0,0,7891,7903,5,172,0,0,7892,7893,5,2,0,0,7893,7898,3,850, - 425,0,7894,7895,5,6,0,0,7895,7897,3,850,425,0,7896,7894,1,0,0,0, - 7897,7900,1,0,0,0,7898,7896,1,0,0,0,7898,7899,1,0,0,0,7899,7901, - 1,0,0,0,7900,7898,1,0,0,0,7901,7902,5,3,0,0,7902,7904,1,0,0,0,7903, - 7892,1,0,0,0,7903,7904,1,0,0,0,7904,7905,1,0,0,0,7905,7906,7,113, - 0,0,7906,7908,3,554,277,0,7907,7861,1,0,0,0,7907,7868,1,0,0,0,7907, - 7889,1,0,0,0,7908,7909,1,0,0,0,7909,7910,5,7,0,0,7910,849,1,0,0, - 0,7911,7912,3,936,468,0,7912,7913,3,648,324,0,7913,851,1,0,0,0,7914, - 7915,7,114,0,0,7915,853,1,0,0,0,7916,7917,3,844,422,0,7917,7918, - 5,7,0,0,7918,7941,1,0,0,0,7919,7941,3,882,441,0,7920,7941,3,884, - 442,0,7921,7941,3,860,430,0,7922,7941,3,868,434,0,7923,7941,3,872, - 436,0,7924,7941,3,874,437,0,7925,7941,3,878,439,0,7926,7941,3,880, - 440,0,7927,7941,3,888,444,0,7928,7941,3,892,446,0,7929,7941,3,894, - 447,0,7930,7941,3,856,428,0,7931,7941,3,858,429,0,7932,7941,3,862, - 431,0,7933,7941,3,898,449,0,7934,7941,3,902,451,0,7935,7941,3,906, - 453,0,7936,7941,3,922,461,0,7937,7941,3,924,462,0,7938,7941,3,926, - 463,0,7939,7941,3,928,464,0,7940,7916,1,0,0,0,7940,7919,1,0,0,0, - 7940,7920,1,0,0,0,7940,7921,1,0,0,0,7940,7922,1,0,0,0,7940,7923, - 1,0,0,0,7940,7924,1,0,0,0,7940,7925,1,0,0,0,7940,7926,1,0,0,0,7940, - 7927,1,0,0,0,7940,7928,1,0,0,0,7940,7929,1,0,0,0,7940,7930,1,0,0, - 0,7940,7931,1,0,0,0,7940,7932,1,0,0,0,7940,7933,1,0,0,0,7940,7934, - 1,0,0,0,7940,7935,1,0,0,0,7940,7936,1,0,0,0,7940,7937,1,0,0,0,7940, - 7938,1,0,0,0,7940,7939,1,0,0,0,7941,855,1,0,0,0,7942,7943,5,498, - 0,0,7943,7944,3,938,469,0,7944,7945,5,7,0,0,7945,857,1,0,0,0,7946, - 7947,5,433,0,0,7947,7954,3,936,468,0,7948,7950,5,2,0,0,7949,7951, - 3,728,364,0,7950,7949,1,0,0,0,7950,7951,1,0,0,0,7951,7952,1,0,0, - 0,7952,7953,5,3,0,0,7953,7955,5,7,0,0,7954,7948,1,0,0,0,7954,7955, - 1,0,0,0,7955,7966,1,0,0,0,7956,7957,5,57,0,0,7957,7958,3,936,468, - 0,7958,7960,5,2,0,0,7959,7961,3,728,364,0,7960,7959,1,0,0,0,7960, - 7961,1,0,0,0,7961,7962,1,0,0,0,7962,7963,5,3,0,0,7963,7964,5,7,0, - 0,7964,7966,1,0,0,0,7965,7946,1,0,0,0,7965,7956,1,0,0,0,7966,859, - 1,0,0,0,7967,7968,3,866,433,0,7968,7969,3,852,426,0,7969,7970,3, - 938,469,0,7970,7971,5,7,0,0,7971,861,1,0,0,0,7972,7974,5,499,0,0, - 7973,7975,7,115,0,0,7974,7973,1,0,0,0,7974,7975,1,0,0,0,7975,7976, - 1,0,0,0,7976,7977,5,500,0,0,7977,7982,3,864,432,0,7978,7979,5,6, - 0,0,7979,7981,3,864,432,0,7980,7978,1,0,0,0,7981,7984,1,0,0,0,7982, - 7980,1,0,0,0,7982,7983,1,0,0,0,7983,7985,1,0,0,0,7984,7982,1,0,0, - 0,7985,7986,5,7,0,0,7986,863,1,0,0,0,7987,7988,3,866,433,0,7988, - 7989,3,852,426,0,7989,7990,3,826,413,0,7990,865,1,0,0,0,7991,7994, - 3,310,155,0,7992,7994,5,28,0,0,7993,7991,1,0,0,0,7993,7992,1,0,0, - 0,7994,8001,1,0,0,0,7995,7996,5,4,0,0,7996,7997,3,670,335,0,7997, - 7998,5,5,0,0,7998,8000,1,0,0,0,7999,7995,1,0,0,0,8000,8003,1,0,0, - 0,8001,7999,1,0,0,0,8001,8002,1,0,0,0,8002,867,1,0,0,0,8003,8001, - 1,0,0,0,8004,8005,5,220,0,0,8005,8006,3,938,469,0,8006,8010,5,93, - 0,0,8007,8009,3,854,427,0,8008,8007,1,0,0,0,8009,8012,1,0,0,0,8010, - 8008,1,0,0,0,8010,8011,1,0,0,0,8011,8024,1,0,0,0,8012,8010,1,0,0, - 0,8013,8014,5,502,0,0,8014,8015,3,670,335,0,8015,8019,5,93,0,0,8016, - 8018,3,854,427,0,8017,8016,1,0,0,0,8018,8021,1,0,0,0,8019,8017,1, - 0,0,0,8019,8020,1,0,0,0,8020,8023,1,0,0,0,8021,8019,1,0,0,0,8022, - 8013,1,0,0,0,8023,8026,1,0,0,0,8024,8022,1,0,0,0,8024,8025,1,0,0, - 0,8025,8028,1,0,0,0,8026,8024,1,0,0,0,8027,8029,3,870,435,0,8028, - 8027,1,0,0,0,8028,8029,1,0,0,0,8029,8030,1,0,0,0,8030,8031,5,454, - 0,0,8031,8032,5,220,0,0,8032,8033,5,7,0,0,8033,869,1,0,0,0,8034, - 8038,5,58,0,0,8035,8037,3,854,427,0,8036,8035,1,0,0,0,8037,8040, - 1,0,0,0,8038,8036,1,0,0,0,8038,8039,1,0,0,0,8039,871,1,0,0,0,8040, - 8038,1,0,0,0,8041,8043,5,40,0,0,8042,8044,3,938,469,0,8043,8042, - 1,0,0,0,8043,8044,1,0,0,0,8044,8054,1,0,0,0,8045,8046,5,102,0,0, - 8046,8047,3,728,364,0,8047,8051,5,93,0,0,8048,8050,3,854,427,0,8049, - 8048,1,0,0,0,8050,8053,1,0,0,0,8051,8049,1,0,0,0,8051,8052,1,0,0, - 0,8052,8055,1,0,0,0,8053,8051,1,0,0,0,8054,8045,1,0,0,0,8055,8056, - 1,0,0,0,8056,8054,1,0,0,0,8056,8057,1,0,0,0,8057,8059,1,0,0,0,8058, - 8060,3,870,435,0,8059,8058,1,0,0,0,8059,8060,1,0,0,0,8060,8061,1, - 0,0,0,8061,8062,5,454,0,0,8062,8063,5,40,0,0,8063,8064,5,7,0,0,8064, - 873,1,0,0,0,8065,8067,3,846,423,0,8066,8065,1,0,0,0,8066,8067,1, - 0,0,0,8067,8072,1,0,0,0,8068,8069,5,503,0,0,8069,8073,3,670,335, - 0,8070,8071,5,62,0,0,8071,8073,3,876,438,0,8072,8068,1,0,0,0,8072, - 8070,1,0,0,0,8072,8073,1,0,0,0,8073,8074,1,0,0,0,8074,8075,3,890, - 445,0,8075,875,1,0,0,0,8076,8077,3,308,154,0,8077,8100,5,68,0,0, - 8078,8080,3,826,413,0,8079,8081,3,528,264,0,8080,8079,1,0,0,0,8080, - 8081,1,0,0,0,8081,8101,1,0,0,0,8082,8101,3,554,277,0,8083,8101,3, - 514,257,0,8084,8085,5,202,0,0,8085,8088,3,670,335,0,8086,8087,5, - 100,0,0,8087,8089,3,728,364,0,8088,8086,1,0,0,0,8088,8089,1,0,0, - 0,8089,8101,1,0,0,0,8090,8092,5,504,0,0,8091,8090,1,0,0,0,8091,8092, - 1,0,0,0,8092,8093,1,0,0,0,8093,8094,3,670,335,0,8094,8095,5,24,0, - 0,8095,8098,3,670,335,0,8096,8097,5,147,0,0,8097,8099,3,670,335, - 0,8098,8096,1,0,0,0,8098,8099,1,0,0,0,8099,8101,1,0,0,0,8100,8078, - 1,0,0,0,8100,8082,1,0,0,0,8100,8083,1,0,0,0,8100,8084,1,0,0,0,8100, - 8091,1,0,0,0,8101,877,1,0,0,0,8102,8104,3,846,423,0,8103,8102,1, - 0,0,0,8103,8104,1,0,0,0,8104,8105,1,0,0,0,8105,8106,5,505,0,0,8106, - 8109,3,308,154,0,8107,8108,5,506,0,0,8108,8110,5,574,0,0,8109,8107, - 1,0,0,0,8109,8110,1,0,0,0,8110,8111,1,0,0,0,8111,8112,5,68,0,0,8112, - 8113,5,35,0,0,8113,8114,3,670,335,0,8114,8115,3,890,445,0,8115,879, - 1,0,0,0,8116,8118,7,116,0,0,8117,8119,3,936,468,0,8118,8117,1,0, - 0,0,8118,8119,1,0,0,0,8119,8122,1,0,0,0,8120,8121,5,102,0,0,8121, - 8123,3,938,469,0,8122,8120,1,0,0,0,8122,8123,1,0,0,0,8123,8124,1, - 0,0,0,8124,8125,5,7,0,0,8125,881,1,0,0,0,8126,8141,5,508,0,0,8127, - 8128,5,268,0,0,8128,8142,3,938,469,0,8129,8136,5,509,0,0,8130,8131, - 5,202,0,0,8131,8132,3,670,335,0,8132,8133,5,100,0,0,8133,8134,3, - 728,364,0,8134,8137,1,0,0,0,8135,8137,3,554,277,0,8136,8130,1,0, - 0,0,8136,8135,1,0,0,0,8137,8142,1,0,0,0,8138,8140,3,938,469,0,8139, - 8138,1,0,0,0,8139,8140,1,0,0,0,8140,8142,1,0,0,0,8141,8127,1,0,0, - 0,8141,8129,1,0,0,0,8141,8139,1,0,0,0,8142,8143,1,0,0,0,8143,8144, - 5,7,0,0,8144,883,1,0,0,0,8145,8175,5,510,0,0,8146,8148,7,117,0,0, - 8147,8146,1,0,0,0,8147,8148,1,0,0,0,8148,8161,1,0,0,0,8149,8162, - 3,834,417,0,8150,8151,5,511,0,0,8151,8162,3,816,408,0,8152,8159, - 3,816,408,0,8153,8154,5,6,0,0,8154,8156,3,670,335,0,8155,8153,1, - 0,0,0,8156,8157,1,0,0,0,8157,8155,1,0,0,0,8157,8158,1,0,0,0,8158, - 8160,1,0,0,0,8159,8155,1,0,0,0,8159,8160,1,0,0,0,8160,8162,1,0,0, - 0,8161,8149,1,0,0,0,8161,8150,1,0,0,0,8161,8152,1,0,0,0,8161,8162, - 1,0,0,0,8162,8172,1,0,0,0,8163,8164,5,100,0,0,8164,8169,3,886,443, - 0,8165,8166,5,6,0,0,8166,8168,3,886,443,0,8167,8165,1,0,0,0,8168, - 8171,1,0,0,0,8169,8167,1,0,0,0,8169,8170,1,0,0,0,8170,8173,1,0,0, - 0,8171,8169,1,0,0,0,8172,8163,1,0,0,0,8172,8173,1,0,0,0,8173,8174, - 1,0,0,0,8174,8176,5,7,0,0,8175,8147,1,0,0,0,8175,8176,1,0,0,0,8176, - 885,1,0,0,0,8177,8178,3,834,417,0,8178,8179,5,10,0,0,8179,8180,3, - 670,335,0,8180,887,1,0,0,0,8181,8182,5,518,0,0,8182,8185,3,938,469, - 0,8183,8184,5,6,0,0,8184,8186,3,938,469,0,8185,8183,1,0,0,0,8185, - 8186,1,0,0,0,8186,8187,1,0,0,0,8187,8188,5,7,0,0,8188,889,1,0,0, - 0,8189,8193,5,519,0,0,8190,8192,3,854,427,0,8191,8190,1,0,0,0,8192, - 8195,1,0,0,0,8193,8191,1,0,0,0,8193,8194,1,0,0,0,8194,8196,1,0,0, - 0,8195,8193,1,0,0,0,8196,8197,5,454,0,0,8197,8199,5,519,0,0,8198, - 8200,3,936,468,0,8199,8198,1,0,0,0,8199,8200,1,0,0,0,8200,8201,1, - 0,0,0,8201,8202,5,7,0,0,8202,891,1,0,0,0,8203,8205,3,4,2,0,8204, - 8206,3,896,448,0,8205,8204,1,0,0,0,8205,8206,1,0,0,0,8206,8207,1, - 0,0,0,8207,8208,5,7,0,0,8208,893,1,0,0,0,8209,8210,5,202,0,0,8210, - 8226,3,670,335,0,8211,8213,3,896,448,0,8212,8211,1,0,0,0,8212,8213, - 1,0,0,0,8213,8216,1,0,0,0,8214,8215,5,100,0,0,8215,8217,3,728,364, - 0,8216,8214,1,0,0,0,8216,8217,1,0,0,0,8217,8227,1,0,0,0,8218,8219, - 5,100,0,0,8219,8221,3,728,364,0,8220,8218,1,0,0,0,8220,8221,1,0, - 0,0,8221,8223,1,0,0,0,8222,8224,3,896,448,0,8223,8222,1,0,0,0,8223, - 8224,1,0,0,0,8224,8227,1,0,0,0,8225,8227,1,0,0,0,8226,8212,1,0,0, - 0,8226,8220,1,0,0,0,8226,8225,1,0,0,0,8227,8228,1,0,0,0,8228,8229, - 5,7,0,0,8229,895,1,0,0,0,8230,8232,5,71,0,0,8231,8233,5,346,0,0, - 8232,8231,1,0,0,0,8232,8233,1,0,0,0,8233,8234,1,0,0,0,8234,8235, - 3,728,364,0,8235,897,1,0,0,0,8236,8268,5,520,0,0,8237,8242,3,930, - 465,0,8238,8240,5,269,0,0,8239,8238,1,0,0,0,8239,8240,1,0,0,0,8240, - 8241,1,0,0,0,8241,8243,5,324,0,0,8242,8239,1,0,0,0,8242,8243,1,0, - 0,0,8243,8244,1,0,0,0,8244,8252,5,62,0,0,8245,8253,3,554,277,0,8246, - 8247,5,202,0,0,8247,8250,3,938,469,0,8248,8249,5,100,0,0,8249,8251, - 3,728,364,0,8250,8248,1,0,0,0,8250,8251,1,0,0,0,8251,8253,1,0,0, - 0,8252,8245,1,0,0,0,8252,8246,1,0,0,0,8253,8269,1,0,0,0,8254,8266, - 3,826,413,0,8255,8256,5,2,0,0,8256,8261,3,900,450,0,8257,8258,5, - 6,0,0,8258,8260,3,900,450,0,8259,8257,1,0,0,0,8260,8263,1,0,0,0, - 8261,8259,1,0,0,0,8261,8262,1,0,0,0,8262,8264,1,0,0,0,8263,8261, - 1,0,0,0,8264,8265,5,3,0,0,8265,8267,1,0,0,0,8266,8255,1,0,0,0,8266, - 8267,1,0,0,0,8267,8269,1,0,0,0,8268,8237,1,0,0,0,8268,8254,1,0,0, - 0,8269,8270,1,0,0,0,8270,8271,5,7,0,0,8271,899,1,0,0,0,8272,8273, - 3,826,413,0,8273,8274,5,20,0,0,8274,8276,1,0,0,0,8275,8272,1,0,0, - 0,8275,8276,1,0,0,0,8276,8277,1,0,0,0,8277,8278,3,670,335,0,8278, - 901,1,0,0,0,8279,8281,5,61,0,0,8280,8282,3,904,452,0,8281,8280,1, - 0,0,0,8281,8282,1,0,0,0,8282,8284,1,0,0,0,8283,8285,3,326,163,0, - 8284,8283,1,0,0,0,8284,8285,1,0,0,0,8285,8286,1,0,0,0,8286,8287, - 3,930,465,0,8287,8288,5,71,0,0,8288,8289,3,728,364,0,8289,8290,5, - 7,0,0,8290,903,1,0,0,0,8291,8306,5,268,0,0,8292,8306,5,293,0,0,8293, - 8306,5,207,0,0,8294,8306,5,249,0,0,8295,8297,7,51,0,0,8296,8295, - 1,0,0,0,8296,8297,1,0,0,0,8297,8298,1,0,0,0,8298,8306,3,670,335, - 0,8299,8306,5,30,0,0,8300,8303,7,118,0,0,8301,8304,3,670,335,0,8302, - 8304,5,30,0,0,8303,8301,1,0,0,0,8303,8302,1,0,0,0,8303,8304,1,0, - 0,0,8304,8306,1,0,0,0,8305,8291,1,0,0,0,8305,8292,1,0,0,0,8305,8293, - 1,0,0,0,8305,8294,1,0,0,0,8305,8296,1,0,0,0,8305,8299,1,0,0,0,8305, - 8300,1,0,0,0,8306,905,1,0,0,0,8307,8309,5,265,0,0,8308,8310,3,904, - 452,0,8309,8308,1,0,0,0,8309,8310,1,0,0,0,8310,8311,1,0,0,0,8311, - 8312,3,930,465,0,8312,8313,5,7,0,0,8313,907,1,0,0,0,8314,8316,3, - 566,283,0,8315,8314,1,0,0,0,8315,8316,1,0,0,0,8316,8317,1,0,0,0, - 8317,8318,5,525,0,0,8318,8320,5,71,0,0,8319,8321,5,81,0,0,8320,8319, - 1,0,0,0,8320,8321,1,0,0,0,8321,8322,1,0,0,0,8322,8324,3,778,389, - 0,8323,8325,5,9,0,0,8324,8323,1,0,0,0,8324,8325,1,0,0,0,8325,8330, - 1,0,0,0,8326,8328,5,36,0,0,8327,8326,1,0,0,0,8327,8328,1,0,0,0,8328, - 8329,1,0,0,0,8329,8331,3,826,413,0,8330,8327,1,0,0,0,8330,8331,1, - 0,0,0,8331,8332,1,0,0,0,8332,8333,5,100,0,0,8333,8334,3,910,455, - 0,8334,8335,5,80,0,0,8335,8337,3,670,335,0,8336,8338,3,912,456,0, - 8337,8336,1,0,0,0,8338,8339,1,0,0,0,8339,8337,1,0,0,0,8339,8340, - 1,0,0,0,8340,8342,1,0,0,0,8341,8343,3,540,270,0,8342,8341,1,0,0, - 0,8342,8343,1,0,0,0,8343,909,1,0,0,0,8344,8346,5,81,0,0,8345,8344, - 1,0,0,0,8345,8346,1,0,0,0,8346,8347,1,0,0,0,8347,8349,3,778,389, - 0,8348,8350,5,9,0,0,8349,8348,1,0,0,0,8349,8350,1,0,0,0,8350,8356, - 1,0,0,0,8351,8354,3,558,279,0,8352,8354,3,602,301,0,8353,8351,1, - 0,0,0,8353,8352,1,0,0,0,8354,8356,1,0,0,0,8355,8345,1,0,0,0,8355, - 8353,1,0,0,0,8356,8361,1,0,0,0,8357,8359,5,36,0,0,8358,8357,1,0, - 0,0,8358,8359,1,0,0,0,8359,8360,1,0,0,0,8360,8362,3,826,413,0,8361, - 8358,1,0,0,0,8361,8362,1,0,0,0,8362,911,1,0,0,0,8363,8364,5,102, - 0,0,8364,8367,5,526,0,0,8365,8366,5,33,0,0,8366,8368,3,670,335,0, - 8367,8365,1,0,0,0,8367,8368,1,0,0,0,8368,8369,1,0,0,0,8369,8374, - 5,93,0,0,8370,8375,3,916,458,0,8371,8375,5,182,0,0,8372,8373,5,57, - 0,0,8373,8375,5,270,0,0,8374,8370,1,0,0,0,8374,8371,1,0,0,0,8374, - 8372,1,0,0,0,8375,8390,1,0,0,0,8376,8377,5,102,0,0,8377,8378,5,77, - 0,0,8378,8381,5,526,0,0,8379,8380,5,33,0,0,8380,8382,3,670,335,0, - 8381,8379,1,0,0,0,8381,8382,1,0,0,0,8382,8383,1,0,0,0,8383,8387, - 5,93,0,0,8384,8388,3,914,457,0,8385,8386,5,57,0,0,8386,8388,5,270, - 0,0,8387,8384,1,0,0,0,8387,8385,1,0,0,0,8388,8390,1,0,0,0,8389,8363, - 1,0,0,0,8389,8376,1,0,0,0,8390,913,1,0,0,0,8391,8393,5,241,0,0,8392, - 8394,3,138,69,0,8393,8392,1,0,0,0,8393,8394,1,0,0,0,8394,8398,1, - 0,0,0,8395,8396,5,463,0,0,8396,8397,7,77,0,0,8397,8399,5,450,0,0, - 8398,8395,1,0,0,0,8398,8399,1,0,0,0,8399,8400,1,0,0,0,8400,8401, - 3,918,459,0,8401,915,1,0,0,0,8402,8403,5,369,0,0,8403,8421,5,333, - 0,0,8404,8405,3,806,403,0,8405,8406,5,10,0,0,8406,8407,3,920,460, - 0,8407,8422,1,0,0,0,8408,8409,3,138,69,0,8409,8410,5,10,0,0,8410, - 8411,5,2,0,0,8411,8416,3,920,460,0,8412,8413,5,6,0,0,8413,8415,3, - 920,460,0,8414,8412,1,0,0,0,8415,8418,1,0,0,0,8416,8414,1,0,0,0, - 8416,8417,1,0,0,0,8417,8419,1,0,0,0,8418,8416,1,0,0,0,8419,8420, - 5,3,0,0,8420,8422,1,0,0,0,8421,8404,1,0,0,0,8421,8408,1,0,0,0,8422, - 8423,1,0,0,0,8423,8421,1,0,0,0,8423,8424,1,0,0,0,8424,917,1,0,0, - 0,8425,8426,5,422,0,0,8426,8427,5,2,0,0,8427,8432,3,920,460,0,8428, - 8429,5,6,0,0,8429,8431,3,920,460,0,8430,8428,1,0,0,0,8431,8434,1, - 0,0,0,8432,8430,1,0,0,0,8432,8433,1,0,0,0,8433,8435,1,0,0,0,8434, - 8432,1,0,0,0,8435,8436,5,3,0,0,8436,8440,1,0,0,0,8437,8438,5,53, - 0,0,8438,8440,5,422,0,0,8439,8425,1,0,0,0,8439,8437,1,0,0,0,8440, - 919,1,0,0,0,8441,8444,3,582,291,0,8442,8444,5,53,0,0,8443,8441,1, - 0,0,0,8443,8442,1,0,0,0,8444,921,1,0,0,0,8445,8446,5,157,0,0,8446, - 8447,3,930,465,0,8447,8448,5,7,0,0,8448,923,1,0,0,0,8449,8450,5, - 78,0,0,8450,8451,5,7,0,0,8451,925,1,0,0,0,8452,8458,7,68,0,0,8453, - 8455,5,33,0,0,8454,8456,5,269,0,0,8455,8454,1,0,0,0,8455,8456,1, - 0,0,0,8456,8457,1,0,0,0,8457,8459,5,153,0,0,8458,8453,1,0,0,0,8458, - 8459,1,0,0,0,8459,8460,1,0,0,0,8460,8461,5,7,0,0,8461,927,1,0,0, - 0,8462,8463,5,333,0,0,8463,8464,3,310,155,0,8464,8465,5,94,0,0,8465, - 8466,5,53,0,0,8466,8467,5,7,0,0,8467,8475,1,0,0,0,8468,8471,5,313, - 0,0,8469,8472,3,310,155,0,8470,8472,5,30,0,0,8471,8469,1,0,0,0,8471, - 8470,1,0,0,0,8472,8473,1,0,0,0,8473,8475,5,7,0,0,8474,8462,1,0,0, - 0,8474,8468,1,0,0,0,8475,929,1,0,0,0,8476,8479,3,826,413,0,8477, - 8479,5,28,0,0,8478,8476,1,0,0,0,8478,8477,1,0,0,0,8479,931,1,0,0, - 0,8480,8497,5,517,0,0,8481,8482,5,102,0,0,8482,8487,3,934,467,0, - 8483,8484,5,82,0,0,8484,8486,3,934,467,0,8485,8483,1,0,0,0,8486, - 8489,1,0,0,0,8487,8485,1,0,0,0,8487,8488,1,0,0,0,8488,8490,1,0,0, - 0,8489,8487,1,0,0,0,8490,8494,5,93,0,0,8491,8493,3,854,427,0,8492, - 8491,1,0,0,0,8493,8496,1,0,0,0,8494,8492,1,0,0,0,8494,8495,1,0,0, - 0,8495,8498,1,0,0,0,8496,8494,1,0,0,0,8497,8481,1,0,0,0,8498,8499, - 1,0,0,0,8499,8497,1,0,0,0,8499,8500,1,0,0,0,8500,933,1,0,0,0,8501, - 8505,3,936,468,0,8502,8503,5,511,0,0,8503,8505,3,816,408,0,8504, - 8501,1,0,0,0,8504,8502,1,0,0,0,8505,935,1,0,0,0,8506,8509,3,826, - 413,0,8507,8509,3,836,418,0,8508,8506,1,0,0,0,8508,8507,1,0,0,0, - 8509,937,1,0,0,0,8510,8512,3,758,379,0,8511,8510,1,0,0,0,8511,8512, - 1,0,0,0,8512,8514,1,0,0,0,8513,8515,3,574,287,0,8514,8513,1,0,0, - 0,8514,8515,1,0,0,0,8515,8517,1,0,0,0,8516,8518,3,604,302,0,8517, - 8516,1,0,0,0,8517,8518,1,0,0,0,8518,8520,1,0,0,0,8519,8521,3,634, - 317,0,8520,8519,1,0,0,0,8520,8521,1,0,0,0,8521,8523,1,0,0,0,8522, - 8524,3,594,297,0,8523,8522,1,0,0,0,8523,8524,1,0,0,0,8524,8526,1, - 0,0,0,8525,8527,3,700,350,0,8526,8525,1,0,0,0,8526,8527,1,0,0,0, - 8527,8529,1,0,0,0,8528,8530,3,698,349,0,8529,8528,1,0,0,0,8529,8530, - 1,0,0,0,8530,939,1,0,0,0,1196,943,950,1070,1072,1081,1086,1092,1127, - 1137,1143,1148,1155,1160,1167,1178,1186,1190,1202,1208,1214,1218, - 1223,1227,1240,1250,1252,1258,1263,1276,1279,1284,1289,1300,1304, - 1316,1320,1323,1327,1339,1357,1364,1372,1377,1384,1392,1398,1406, - 1414,1418,1432,1437,1442,1454,1460,1472,1477,1487,1493,1498,1507, - 1514,1519,1524,1534,1539,1544,1551,1555,1569,1575,1581,1586,1593, - 1602,1611,1620,1629,1633,1645,1653,1663,1683,1688,1691,1698,1701, - 1705,1709,1712,1717,1722,1726,1735,1741,1745,1754,1757,1763,1772, - 1784,1788,1792,1797,1800,1806,1808,1810,1814,1820,1824,1829,1834, - 1838,1841,1848,1861,1874,1899,1909,1916,1921,1925,1932,1937,1940, - 1942,1947,1951,1955,1959,1964,1967,1971,1974,1978,1986,1991,1994, - 1998,2004,2013,2017,2027,2032,2036,2040,2042,2044,2051,2056,2060, - 2065,2077,2082,2086,2090,2095,2099,2102,2105,2108,2111,2114,2119, - 2122,2125,2128,2131,2134,2140,2144,2147,2150,2153,2156,2158,2165, - 2173,2183,2188,2198,2201,2206,2211,2216,2219,2224,2233,2235,2239, - 2242,2246,2251,2256,2260,2263,2267,2270,2275,2278,2283,2286,2290, - 2293,2296,2301,2304,2312,2324,2328,2335,2340,2343,2346,2349,2354, - 2365,2371,2375,2378,2381,2386,2393,2396,2400,2408,2413,2416,2419, - 2426,2431,2440,2443,2446,2451,2454,2466,2476,2493,2497,2501,2503, - 2520,2522,2538,2549,2552,2555,2564,2573,2589,2592,2595,2603,2607, - 2614,2623,2627,2633,2637,2640,2643,2646,2649,2655,2659,2664,2668, - 2671,2674,2677,2682,2688,2692,2696,2700,2706,2708,2713,2719,2725, - 2729,2744,2749,2752,2754,2757,2761,2765,2768,2771,2779,2785,2787, - 2793,2798,2803,2807,2814,2816,2827,2866,2876,2878,2881,2885,2889, - 2899,2901,2907,2909,2918,2930,2944,2949,2952,2959,2964,2972,2974, - 2980,2985,2989,2994,3000,3007,3013,3015,3024,3030,3038,3044,3049, - 3054,3062,3077,3079,3083,3087,3090,3093,3102,3105,3108,3114,3120, - 3124,3136,3142,3145,3150,3154,3161,3171,3173,3197,3209,3214,3216, - 3220,3223,3226,3236,3239,3249,3254,3259,3262,3265,3273,3279,3286, - 3294,3297,3308,3312,3318,3325,3328,3337,3351,3354,3368,3379,3382, - 3394,3399,3412,3417,3430,3439,3442,3445,3452,3455,3467,3473,3475, - 3483,3491,3499,3511,3516,3527,3538,3546,3554,3561,3568,3570,3573, - 3578,3583,3602,3611,3614,3641,3650,3653,3657,3661,3665,3672,3676, - 3680,3684,3688,3693,3697,3702,3708,3713,3720,3724,3730,3734,3739, - 3747,3753,3758,3765,3770,3774,3779,3785,3792,3797,3804,3809,3816, - 3820,3828,3832,3834,3837,3842,3852,3867,3870,3878,3885,3890,3896, - 3900,3907,3912,3915,3918,3922,3931,3949,3952,3984,3989,3995,4015, - 4020,4026,4029,4033,4037,4043,4046,4050,4054,4059,4062,4065,4068, - 4081,4087,4095,4102,4107,4110,4117,4120,4128,4131,4136,4143,4146, - 4166,4178,4181,4187,4192,4201,4209,4214,4220,4227,4235,4238,4249, - 4251,4265,4271,4279,4281,4287,4291,4294,4297,4302,4307,4311,4314, - 4317,4320,4323,4331,4342,4345,4348,4353,4356,4360,4364,4370,4378, - 4381,4394,4399,4401,4406,4413,4420,4429,4437,4445,4452,4460,4467, - 4475,4479,4483,4485,4491,4496,4500,4507,4512,4517,4522,4524,4534, - 4544,4560,4578,4590,4597,4612,4617,4620,4625,4630,4635,4638,4641, - 4646,4653,4657,4662,4669,4673,4679,4688,4697,4709,4711,4724,4730, - 4734,4736,4743,4756,4763,4765,4781,4785,4789,4794,4799,4804,4809, - 4812,4824,4877,4886,4890,4899,4903,4912,4916,4921,4924,4928,4933, - 4935,4944,4949,4960,4964,4978,4986,5024,5026,5045,5048,5075,5079, - 5083,5087,5091,5094,5109,5116,5130,5143,5168,5187,5202,5218,5225, - 5236,5239,5258,5261,5274,5278,5298,5310,5314,5336,5340,5350,5354, - 5360,5364,5368,5372,5379,5384,5395,5399,5402,5407,5413,5424,5428, - 5431,5435,5439,5442,5452,5455,5459,5464,5470,5473,5478,5481,5488, - 5490,5496,5500,5509,5514,5516,5526,5529,5534,5542,5545,5550,5552, - 5554,5560,5577,5583,5596,5602,5606,5611,5641,5656,5661,5665,5678, - 5682,5684,5693,5699,5701,5705,5708,5711,5714,5717,5719,5722,5726, - 5734,5739,5742,5748,5752,5756,5761,5763,5767,5771,5778,5784,5788, - 5790,5792,5805,5813,5821,5832,5842,5847,5851,5855,5862,5865,5867, - 5875,5879,5882,5889,5896,5901,5908,5911,5913,5916,5922,5927,5931, - 5938,5948,5955,5958,5961,5965,5976,5979,5982,5985,5988,5995,5998, - 6001,6008,6020,6027,6029,6034,6039,6041,6047,6054,6059,6064,6068, - 6072,6076,6078,6082,6086,6089,6092,6094,6104,6106,6111,6115,6120, - 6124,6131,6136,6140,6143,6149,6152,6171,6178,6182,6185,6189,6193, - 6196,6199,6204,6213,6220,6224,6228,6232,6235,6237,6242,6246,6251, - 6257,6264,6269,6274,6283,6290,6298,6309,6314,6318,6321,6325,6330, - 6334,6339,6347,6358,6363,6367,6370,6373,6375,6378,6381,6384,6394, - 6399,6405,6409,6411,6418,6423,6429,6431,6436,6440,6444,6446,6449, - 6456,6461,6464,6470,6474,6480,6489,6495,6497,6502,6505,6514,6521, - 6523,6530,6535,6538,6548,6559,6564,6568,6576,6586,6593,6599,6610, - 6616,6626,6635,6639,6642,6644,6646,6650,6658,6661,6666,6671,6678, - 6680,6686,6690,6693,6698,6701,6703,6709,6718,6724,6727,6735,6738, - 6742,6748,6750,6753,6757,6762,6769,6776,6778,6784,6786,6791,6793, - 6797,6806,6810,6818,6820,6834,6837,6845,6854,6860,6865,6873,6875, - 6880,6884,6889,6894,6900,6916,6918,6927,6942,6947,6950,6956,6961, - 6974,6979,6983,6990,7009,7021,7026,7034,7036,7038,7047,7050,7055, - 7060,7063,7074,7082,7087,7089,7092,7096,7107,7128,7136,7149,7159, - 7165,7171,7174,7177,7203,7205,7226,7236,7249,7254,7258,7260,7272, - 7279,7285,7291,7295,7306,7319,7323,7328,7331,7334,7343,7354,7356, - 7360,7365,7374,7379,7387,7397,7405,7409,7412,7419,7431,7435,7442, - 7450,7452,7461,7464,7476,7485,7492,7501,7511,7516,7520,7522,7525, - 7530,7535,7543,7549,7552,7556,7558,7565,7575,7583,7591,7599,7616, - 7623,7631,7648,7654,7667,7669,7680,7682,7690,7696,7701,7709,7714, - 7717,7726,7733,7738,7742,7747,7753,7758,7766,7821,7828,7834,7836, - 7838,7840,7846,7850,7854,7865,7868,7872,7876,7880,7883,7886,7889, - 7898,7903,7907,7940,7950,7954,7960,7965,7974,7982,7993,8001,8010, - 8019,8024,8028,8038,8043,8051,8056,8059,8066,8072,8080,8088,8091, - 8098,8100,8103,8109,8118,8122,8136,8139,8141,8147,8157,8159,8161, - 8169,8172,8175,8185,8193,8199,8205,8212,8216,8220,8223,8226,8232, - 8239,8242,8250,8252,8261,8266,8268,8275,8281,8284,8296,8303,8305, - 8309,8315,8320,8324,8327,8330,8339,8342,8345,8349,8353,8355,8358, - 8361,8367,8374,8381,8387,8389,8393,8398,8416,8421,8423,8432,8439, - 8443,8455,8458,8471,8474,8478,8487,8494,8499,8504,8508,8511,8514, - 8517,8520,8523,8526,8529 + 1,0,0,0,7600,769,1,0,0,0,7601,7599,1,0,0,0,7602,7607,3,792,396,0, + 7603,7604,5,6,0,0,7604,7606,3,792,396,0,7605,7603,1,0,0,0,7606,7609, + 1,0,0,0,7607,7605,1,0,0,0,7607,7608,1,0,0,0,7608,771,1,0,0,0,7609, + 7607,1,0,0,0,7610,7611,3,784,392,0,7611,773,1,0,0,0,7612,7613,3, + 784,392,0,7613,775,1,0,0,0,7614,7615,3,784,392,0,7615,777,1,0,0, + 0,7616,7617,3,784,392,0,7617,779,1,0,0,0,7618,7619,3,784,392,0,7619, + 781,1,0,0,0,7620,7621,3,310,155,0,7621,783,1,0,0,0,7622,7624,3,826, + 413,0,7623,7625,3,754,377,0,7624,7623,1,0,0,0,7624,7625,1,0,0,0, + 7625,785,1,0,0,0,7626,7631,3,774,387,0,7627,7628,5,6,0,0,7628,7630, + 3,774,387,0,7629,7627,1,0,0,0,7630,7633,1,0,0,0,7631,7629,1,0,0, + 0,7631,7632,1,0,0,0,7632,787,1,0,0,0,7633,7631,1,0,0,0,7634,7639, + 3,826,413,0,7635,7636,5,6,0,0,7636,7638,3,826,413,0,7637,7635,1, + 0,0,0,7638,7641,1,0,0,0,7639,7637,1,0,0,0,7639,7640,1,0,0,0,7640, + 789,1,0,0,0,7641,7639,1,0,0,0,7642,7643,3,310,155,0,7643,791,1,0, + 0,0,7644,7645,3,310,155,0,7645,793,1,0,0,0,7646,7647,3,310,155,0, + 7647,795,1,0,0,0,7648,7649,3,826,413,0,7649,797,1,0,0,0,7650,7651, + 3,826,413,0,7651,799,1,0,0,0,7652,7657,3,828,414,0,7653,7654,3,826, + 413,0,7654,7655,3,754,377,0,7655,7657,1,0,0,0,7656,7652,1,0,0,0, + 7656,7653,1,0,0,0,7657,801,1,0,0,0,7658,7663,3,828,414,0,7659,7660, + 3,826,413,0,7660,7661,3,754,377,0,7661,7663,1,0,0,0,7662,7658,1, + 0,0,0,7662,7659,1,0,0,0,7663,803,1,0,0,0,7664,7665,1,0,0,0,7665, + 805,1,0,0,0,7666,7667,3,826,413,0,7667,7668,3,756,378,0,7668,807, + 1,0,0,0,7669,7670,3,826,413,0,7670,7671,3,756,378,0,7671,809,1,0, + 0,0,7672,7673,3,826,413,0,7673,811,1,0,0,0,7674,7679,3,828,414,0, + 7675,7676,3,826,413,0,7676,7677,3,754,377,0,7677,7679,1,0,0,0,7678, + 7674,1,0,0,0,7678,7675,1,0,0,0,7679,813,1,0,0,0,7680,7685,3,828, + 414,0,7681,7682,3,826,413,0,7682,7683,3,754,377,0,7683,7685,1,0, + 0,0,7684,7680,1,0,0,0,7684,7681,1,0,0,0,7685,815,1,0,0,0,7686,7689, + 3,818,409,0,7687,7688,5,487,0,0,7688,7690,3,818,409,0,7689,7687, + 1,0,0,0,7689,7690,1,0,0,0,7690,817,1,0,0,0,7691,7703,5,561,0,0,7692, + 7703,5,563,0,0,7693,7697,5,565,0,0,7694,7696,5,590,0,0,7695,7694, + 1,0,0,0,7696,7699,1,0,0,0,7697,7695,1,0,0,0,7697,7698,1,0,0,0,7698, + 7700,1,0,0,0,7699,7697,1,0,0,0,7700,7703,5,591,0,0,7701,7703,5,586, + 0,0,7702,7691,1,0,0,0,7702,7692,1,0,0,0,7702,7693,1,0,0,0,7702,7701, + 1,0,0,0,7703,819,1,0,0,0,7704,7706,7,30,0,0,7705,7704,1,0,0,0,7705, + 7706,1,0,0,0,7706,7707,1,0,0,0,7707,7708,5,574,0,0,7708,821,1,0, + 0,0,7709,7715,3,830,415,0,7710,7715,5,52,0,0,7711,7715,5,49,0,0, + 7712,7715,5,89,0,0,7713,7715,5,524,0,0,7714,7709,1,0,0,0,7714,7710, + 1,0,0,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,822,411,0,7717,7718,5,6,0,0,7718,7720,3, + 822,411,0,7719,7717,1,0,0,0,7720,7723,1,0,0,0,7721,7719,1,0,0,0, + 7721,7722,1,0,0,0,7722,825,1,0,0,0,7723,7721,1,0,0,0,7724,7727,3, + 836,418,0,7725,7727,3,840,420,0,7726,7724,1,0,0,0,7726,7725,1,0, + 0,0,7727,827,1,0,0,0,7728,7731,3,836,418,0,7729,7731,3,842,421,0, + 7730,7728,1,0,0,0,7730,7729,1,0,0,0,7731,829,1,0,0,0,7732,7736,3, + 836,418,0,7733,7736,3,840,420,0,7734,7736,3,842,421,0,7735,7732, + 1,0,0,0,7735,7733,1,0,0,0,7735,7734,1,0,0,0,7736,831,1,0,0,0,7737, + 7742,3,836,418,0,7738,7742,3,840,420,0,7739,7742,3,842,421,0,7740, + 7742,3,844,422,0,7741,7737,1,0,0,0,7741,7738,1,0,0,0,7741,7739,1, + 0,0,0,7741,7740,1,0,0,0,7742,833,1,0,0,0,7743,7747,3,836,418,0,7744, + 7747,3,840,420,0,7745,7747,3,842,421,0,7746,7743,1,0,0,0,7746,7744, + 1,0,0,0,7746,7745,1,0,0,0,7747,835,1,0,0,0,7748,7751,5,552,0,0,7749, + 7750,5,487,0,0,7750,7752,3,818,409,0,7751,7749,1,0,0,0,7751,7752, + 1,0,0,0,7752,7760,1,0,0,0,7753,7760,3,816,408,0,7754,7760,5,553, + 0,0,7755,7760,5,557,0,0,7756,7760,5,577,0,0,7757,7760,5,578,0,0, + 7758,7760,3,838,419,0,7759,7748,1,0,0,0,7759,7753,1,0,0,0,7759,7754, + 1,0,0,0,7759,7755,1,0,0,0,7759,7756,1,0,0,0,7759,7757,1,0,0,0,7759, + 7758,1,0,0,0,7760,837,1,0,0,0,7761,7762,7,110,0,0,7762,839,1,0,0, + 0,7763,7815,5,387,0,0,7764,7815,5,388,0,0,7765,7815,3,658,329,0, + 7766,7815,5,390,0,0,7767,7815,5,391,0,0,7768,7815,3,660,330,0,7769, + 7815,5,393,0,0,7770,7815,5,394,0,0,7771,7815,5,395,0,0,7772,7815, + 5,396,0,0,7773,7815,5,397,0,0,7774,7815,5,398,0,0,7775,7815,5,399, + 0,0,7776,7815,5,470,0,0,7777,7815,5,400,0,0,7778,7815,5,401,0,0, + 7779,7815,5,402,0,0,7780,7815,5,403,0,0,7781,7815,5,404,0,0,7782, + 7815,5,405,0,0,7783,7815,5,406,0,0,7784,7815,5,407,0,0,7785,7815, + 5,489,0,0,7786,7815,5,408,0,0,7787,7815,3,654,327,0,7788,7815,5, + 453,0,0,7789,7815,5,410,0,0,7790,7815,5,411,0,0,7791,7815,5,412, + 0,0,7792,7815,5,413,0,0,7793,7815,5,414,0,0,7794,7815,5,415,0,0, + 7795,7815,5,416,0,0,7796,7815,5,417,0,0,7797,7815,5,418,0,0,7798, + 7815,5,419,0,0,7799,7815,5,420,0,0,7800,7815,5,421,0,0,7801,7815, + 5,422,0,0,7802,7815,5,423,0,0,7803,7815,5,424,0,0,7804,7815,5,425, + 0,0,7805,7815,5,426,0,0,7806,7815,5,427,0,0,7807,7815,5,428,0,0, + 7808,7815,5,476,0,0,7809,7815,5,429,0,0,7810,7815,5,430,0,0,7811, + 7815,5,431,0,0,7812,7815,5,432,0,0,7813,7815,5,474,0,0,7814,7763, + 1,0,0,0,7814,7764,1,0,0,0,7814,7765,1,0,0,0,7814,7766,1,0,0,0,7814, + 7767,1,0,0,0,7814,7768,1,0,0,0,7814,7769,1,0,0,0,7814,7770,1,0,0, + 0,7814,7771,1,0,0,0,7814,7772,1,0,0,0,7814,7773,1,0,0,0,7814,7774, + 1,0,0,0,7814,7775,1,0,0,0,7814,7776,1,0,0,0,7814,7777,1,0,0,0,7814, + 7778,1,0,0,0,7814,7779,1,0,0,0,7814,7780,1,0,0,0,7814,7781,1,0,0, + 0,7814,7782,1,0,0,0,7814,7783,1,0,0,0,7814,7784,1,0,0,0,7814,7785, + 1,0,0,0,7814,7786,1,0,0,0,7814,7787,1,0,0,0,7814,7788,1,0,0,0,7814, + 7789,1,0,0,0,7814,7790,1,0,0,0,7814,7791,1,0,0,0,7814,7792,1,0,0, + 0,7814,7793,1,0,0,0,7814,7794,1,0,0,0,7814,7795,1,0,0,0,7814,7796, + 1,0,0,0,7814,7797,1,0,0,0,7814,7798,1,0,0,0,7814,7799,1,0,0,0,7814, + 7800,1,0,0,0,7814,7801,1,0,0,0,7814,7802,1,0,0,0,7814,7803,1,0,0, + 0,7814,7804,1,0,0,0,7814,7805,1,0,0,0,7814,7806,1,0,0,0,7814,7807, + 1,0,0,0,7814,7808,1,0,0,0,7814,7809,1,0,0,0,7814,7810,1,0,0,0,7814, + 7811,1,0,0,0,7814,7812,1,0,0,0,7814,7813,1,0,0,0,7815,841,1,0,0, + 0,7816,7817,7,111,0,0,7817,843,1,0,0,0,7818,7819,7,112,0,0,7819, + 845,1,0,0,0,7820,7822,3,848,424,0,7821,7820,1,0,0,0,7821,7822,1, + 0,0,0,7822,7833,1,0,0,0,7823,7831,5,178,0,0,7824,7828,3,850,425, + 0,7825,7828,5,178,0,0,7826,7828,3,848,424,0,7827,7824,1,0,0,0,7827, + 7825,1,0,0,0,7827,7826,1,0,0,0,7828,7829,1,0,0,0,7829,7827,1,0,0, + 0,7829,7830,1,0,0,0,7830,7832,1,0,0,0,7831,7827,1,0,0,0,7831,7832, + 1,0,0,0,7832,7834,1,0,0,0,7833,7823,1,0,0,0,7833,7834,1,0,0,0,7834, + 7835,1,0,0,0,7835,7839,5,146,0,0,7836,7838,3,856,428,0,7837,7836, + 1,0,0,0,7838,7841,1,0,0,0,7839,7837,1,0,0,0,7839,7840,1,0,0,0,7840, + 7843,1,0,0,0,7841,7839,1,0,0,0,7842,7844,3,934,467,0,7843,7842,1, + 0,0,0,7843,7844,1,0,0,0,7844,7845,1,0,0,0,7845,7847,5,454,0,0,7846, + 7848,3,938,469,0,7847,7846,1,0,0,0,7847,7848,1,0,0,0,7848,847,1, + 0,0,0,7849,7850,5,18,0,0,7850,7851,3,938,469,0,7851,7852,5,19,0, + 0,7852,849,1,0,0,0,7853,7900,3,938,469,0,7854,7855,5,496,0,0,7855, + 7858,5,62,0,0,7856,7859,5,28,0,0,7857,7859,3,826,413,0,7858,7856, + 1,0,0,0,7858,7857,1,0,0,0,7859,7901,1,0,0,0,7860,7862,5,497,0,0, + 7861,7860,1,0,0,0,7861,7862,1,0,0,0,7862,7863,1,0,0,0,7863,7865, + 3,648,324,0,7864,7866,3,90,45,0,7865,7864,1,0,0,0,7865,7866,1,0, + 0,0,7866,7869,1,0,0,0,7867,7868,5,77,0,0,7868,7870,5,78,0,0,7869, + 7867,1,0,0,0,7869,7870,1,0,0,0,7870,7876,1,0,0,0,7871,7874,3,854, + 427,0,7872,7874,5,53,0,0,7873,7871,1,0,0,0,7873,7872,1,0,0,0,7874, + 7875,1,0,0,0,7875,7877,3,940,470,0,7876,7873,1,0,0,0,7876,7877,1, + 0,0,0,7877,7901,1,0,0,0,7878,7880,5,269,0,0,7879,7878,1,0,0,0,7879, + 7880,1,0,0,0,7880,7881,1,0,0,0,7881,7883,5,324,0,0,7882,7879,1,0, + 0,0,7882,7883,1,0,0,0,7883,7884,1,0,0,0,7884,7896,5,172,0,0,7885, + 7886,5,2,0,0,7886,7891,3,852,426,0,7887,7888,5,6,0,0,7888,7890,3, + 852,426,0,7889,7887,1,0,0,0,7890,7893,1,0,0,0,7891,7889,1,0,0,0, + 7891,7892,1,0,0,0,7892,7894,1,0,0,0,7893,7891,1,0,0,0,7894,7895, + 5,3,0,0,7895,7897,1,0,0,0,7896,7885,1,0,0,0,7896,7897,1,0,0,0,7897, + 7898,1,0,0,0,7898,7899,7,113,0,0,7899,7901,3,554,277,0,7900,7854, + 1,0,0,0,7900,7861,1,0,0,0,7900,7882,1,0,0,0,7901,7902,1,0,0,0,7902, + 7903,5,7,0,0,7903,851,1,0,0,0,7904,7905,3,938,469,0,7905,7906,3, + 648,324,0,7906,853,1,0,0,0,7907,7908,7,114,0,0,7908,855,1,0,0,0, + 7909,7910,3,846,423,0,7910,7911,5,7,0,0,7911,7934,1,0,0,0,7912,7934, + 3,884,442,0,7913,7934,3,886,443,0,7914,7934,3,862,431,0,7915,7934, + 3,870,435,0,7916,7934,3,874,437,0,7917,7934,3,876,438,0,7918,7934, + 3,880,440,0,7919,7934,3,882,441,0,7920,7934,3,890,445,0,7921,7934, + 3,894,447,0,7922,7934,3,896,448,0,7923,7934,3,858,429,0,7924,7934, + 3,860,430,0,7925,7934,3,864,432,0,7926,7934,3,900,450,0,7927,7934, + 3,904,452,0,7928,7934,3,908,454,0,7929,7934,3,924,462,0,7930,7934, + 3,926,463,0,7931,7934,3,928,464,0,7932,7934,3,930,465,0,7933,7909, + 1,0,0,0,7933,7912,1,0,0,0,7933,7913,1,0,0,0,7933,7914,1,0,0,0,7933, + 7915,1,0,0,0,7933,7916,1,0,0,0,7933,7917,1,0,0,0,7933,7918,1,0,0, + 0,7933,7919,1,0,0,0,7933,7920,1,0,0,0,7933,7921,1,0,0,0,7933,7922, + 1,0,0,0,7933,7923,1,0,0,0,7933,7924,1,0,0,0,7933,7925,1,0,0,0,7933, + 7926,1,0,0,0,7933,7927,1,0,0,0,7933,7928,1,0,0,0,7933,7929,1,0,0, + 0,7933,7930,1,0,0,0,7933,7931,1,0,0,0,7933,7932,1,0,0,0,7934,857, + 1,0,0,0,7935,7936,5,498,0,0,7936,7937,3,940,470,0,7937,7938,5,7, + 0,0,7938,859,1,0,0,0,7939,7940,5,433,0,0,7940,7947,3,938,469,0,7941, + 7943,5,2,0,0,7942,7944,3,728,364,0,7943,7942,1,0,0,0,7943,7944,1, + 0,0,0,7944,7945,1,0,0,0,7945,7946,5,3,0,0,7946,7948,5,7,0,0,7947, + 7941,1,0,0,0,7947,7948,1,0,0,0,7948,7959,1,0,0,0,7949,7950,5,57, + 0,0,7950,7951,3,938,469,0,7951,7953,5,2,0,0,7952,7954,3,728,364, + 0,7953,7952,1,0,0,0,7953,7954,1,0,0,0,7954,7955,1,0,0,0,7955,7956, + 5,3,0,0,7956,7957,5,7,0,0,7957,7959,1,0,0,0,7958,7939,1,0,0,0,7958, + 7949,1,0,0,0,7959,861,1,0,0,0,7960,7961,3,868,434,0,7961,7962,3, + 854,427,0,7962,7963,3,940,470,0,7963,7964,5,7,0,0,7964,863,1,0,0, + 0,7965,7967,5,499,0,0,7966,7968,7,115,0,0,7967,7966,1,0,0,0,7967, + 7968,1,0,0,0,7968,7969,1,0,0,0,7969,7970,5,500,0,0,7970,7975,3,866, + 433,0,7971,7972,5,6,0,0,7972,7974,3,866,433,0,7973,7971,1,0,0,0, + 7974,7977,1,0,0,0,7975,7973,1,0,0,0,7975,7976,1,0,0,0,7976,7978, + 1,0,0,0,7977,7975,1,0,0,0,7978,7979,5,7,0,0,7979,865,1,0,0,0,7980, + 7981,3,868,434,0,7981,7982,3,854,427,0,7982,7983,3,826,413,0,7983, + 867,1,0,0,0,7984,7987,3,310,155,0,7985,7987,5,28,0,0,7986,7984,1, + 0,0,0,7986,7985,1,0,0,0,7987,7994,1,0,0,0,7988,7989,5,4,0,0,7989, + 7990,3,670,335,0,7990,7991,5,5,0,0,7991,7993,1,0,0,0,7992,7988,1, + 0,0,0,7993,7996,1,0,0,0,7994,7992,1,0,0,0,7994,7995,1,0,0,0,7995, + 869,1,0,0,0,7996,7994,1,0,0,0,7997,7998,5,220,0,0,7998,7999,3,940, + 470,0,7999,8003,5,93,0,0,8000,8002,3,856,428,0,8001,8000,1,0,0,0, + 8002,8005,1,0,0,0,8003,8001,1,0,0,0,8003,8004,1,0,0,0,8004,8017, + 1,0,0,0,8005,8003,1,0,0,0,8006,8007,5,502,0,0,8007,8008,3,670,335, + 0,8008,8012,5,93,0,0,8009,8011,3,856,428,0,8010,8009,1,0,0,0,8011, + 8014,1,0,0,0,8012,8010,1,0,0,0,8012,8013,1,0,0,0,8013,8016,1,0,0, + 0,8014,8012,1,0,0,0,8015,8006,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, + 8022,3,872,436,0,8021,8020,1,0,0,0,8021,8022,1,0,0,0,8022,8023,1, + 0,0,0,8023,8024,5,454,0,0,8024,8025,5,220,0,0,8025,8026,5,7,0,0, + 8026,871,1,0,0,0,8027,8031,5,58,0,0,8028,8030,3,856,428,0,8029,8028, + 1,0,0,0,8030,8033,1,0,0,0,8031,8029,1,0,0,0,8031,8032,1,0,0,0,8032, + 873,1,0,0,0,8033,8031,1,0,0,0,8034,8036,5,40,0,0,8035,8037,3,940, + 470,0,8036,8035,1,0,0,0,8036,8037,1,0,0,0,8037,8047,1,0,0,0,8038, + 8039,5,102,0,0,8039,8040,3,728,364,0,8040,8044,5,93,0,0,8041,8043, + 3,856,428,0,8042,8041,1,0,0,0,8043,8046,1,0,0,0,8044,8042,1,0,0, + 0,8044,8045,1,0,0,0,8045,8048,1,0,0,0,8046,8044,1,0,0,0,8047,8038, + 1,0,0,0,8048,8049,1,0,0,0,8049,8047,1,0,0,0,8049,8050,1,0,0,0,8050, + 8052,1,0,0,0,8051,8053,3,872,436,0,8052,8051,1,0,0,0,8052,8053,1, + 0,0,0,8053,8054,1,0,0,0,8054,8055,5,454,0,0,8055,8056,5,40,0,0,8056, + 8057,5,7,0,0,8057,875,1,0,0,0,8058,8060,3,848,424,0,8059,8058,1, + 0,0,0,8059,8060,1,0,0,0,8060,8065,1,0,0,0,8061,8062,5,503,0,0,8062, + 8066,3,670,335,0,8063,8064,5,62,0,0,8064,8066,3,878,439,0,8065,8061, + 1,0,0,0,8065,8063,1,0,0,0,8065,8066,1,0,0,0,8066,8067,1,0,0,0,8067, + 8068,3,892,446,0,8068,877,1,0,0,0,8069,8070,3,308,154,0,8070,8093, + 5,68,0,0,8071,8073,3,826,413,0,8072,8074,3,528,264,0,8073,8072,1, + 0,0,0,8073,8074,1,0,0,0,8074,8094,1,0,0,0,8075,8094,3,554,277,0, + 8076,8094,3,514,257,0,8077,8078,5,202,0,0,8078,8081,3,670,335,0, + 8079,8080,5,100,0,0,8080,8082,3,728,364,0,8081,8079,1,0,0,0,8081, + 8082,1,0,0,0,8082,8094,1,0,0,0,8083,8085,5,504,0,0,8084,8083,1,0, + 0,0,8084,8085,1,0,0,0,8085,8086,1,0,0,0,8086,8087,3,670,335,0,8087, + 8088,5,24,0,0,8088,8091,3,670,335,0,8089,8090,5,147,0,0,8090,8092, + 3,670,335,0,8091,8089,1,0,0,0,8091,8092,1,0,0,0,8092,8094,1,0,0, + 0,8093,8071,1,0,0,0,8093,8075,1,0,0,0,8093,8076,1,0,0,0,8093,8077, + 1,0,0,0,8093,8084,1,0,0,0,8094,879,1,0,0,0,8095,8097,3,848,424,0, + 8096,8095,1,0,0,0,8096,8097,1,0,0,0,8097,8098,1,0,0,0,8098,8099, + 5,505,0,0,8099,8102,3,308,154,0,8100,8101,5,506,0,0,8101,8103,5, + 574,0,0,8102,8100,1,0,0,0,8102,8103,1,0,0,0,8103,8104,1,0,0,0,8104, + 8105,5,68,0,0,8105,8106,5,35,0,0,8106,8107,3,670,335,0,8107,8108, + 3,892,446,0,8108,881,1,0,0,0,8109,8111,7,116,0,0,8110,8112,3,938, + 469,0,8111,8110,1,0,0,0,8111,8112,1,0,0,0,8112,8115,1,0,0,0,8113, + 8114,5,102,0,0,8114,8116,3,940,470,0,8115,8113,1,0,0,0,8115,8116, + 1,0,0,0,8116,8117,1,0,0,0,8117,8118,5,7,0,0,8118,883,1,0,0,0,8119, + 8134,5,508,0,0,8120,8121,5,268,0,0,8121,8135,3,940,470,0,8122,8129, + 5,509,0,0,8123,8124,5,202,0,0,8124,8125,3,670,335,0,8125,8126,5, + 100,0,0,8126,8127,3,728,364,0,8127,8130,1,0,0,0,8128,8130,3,554, + 277,0,8129,8123,1,0,0,0,8129,8128,1,0,0,0,8130,8135,1,0,0,0,8131, + 8133,3,940,470,0,8132,8131,1,0,0,0,8132,8133,1,0,0,0,8133,8135,1, + 0,0,0,8134,8120,1,0,0,0,8134,8122,1,0,0,0,8134,8132,1,0,0,0,8135, + 8136,1,0,0,0,8136,8137,5,7,0,0,8137,885,1,0,0,0,8138,8168,5,510, + 0,0,8139,8141,7,117,0,0,8140,8139,1,0,0,0,8140,8141,1,0,0,0,8141, + 8154,1,0,0,0,8142,8155,3,836,418,0,8143,8144,5,511,0,0,8144,8155, + 3,816,408,0,8145,8152,3,816,408,0,8146,8147,5,6,0,0,8147,8149,3, + 670,335,0,8148,8146,1,0,0,0,8149,8150,1,0,0,0,8150,8148,1,0,0,0, + 8150,8151,1,0,0,0,8151,8153,1,0,0,0,8152,8148,1,0,0,0,8152,8153, + 1,0,0,0,8153,8155,1,0,0,0,8154,8142,1,0,0,0,8154,8143,1,0,0,0,8154, + 8145,1,0,0,0,8154,8155,1,0,0,0,8155,8165,1,0,0,0,8156,8157,5,100, + 0,0,8157,8162,3,888,444,0,8158,8159,5,6,0,0,8159,8161,3,888,444, + 0,8160,8158,1,0,0,0,8161,8164,1,0,0,0,8162,8160,1,0,0,0,8162,8163, + 1,0,0,0,8163,8166,1,0,0,0,8164,8162,1,0,0,0,8165,8156,1,0,0,0,8165, + 8166,1,0,0,0,8166,8167,1,0,0,0,8167,8169,5,7,0,0,8168,8140,1,0,0, + 0,8168,8169,1,0,0,0,8169,887,1,0,0,0,8170,8171,3,836,418,0,8171, + 8172,5,10,0,0,8172,8173,3,670,335,0,8173,889,1,0,0,0,8174,8175,5, + 518,0,0,8175,8178,3,940,470,0,8176,8177,5,6,0,0,8177,8179,3,940, + 470,0,8178,8176,1,0,0,0,8178,8179,1,0,0,0,8179,8180,1,0,0,0,8180, + 8181,5,7,0,0,8181,891,1,0,0,0,8182,8186,5,519,0,0,8183,8185,3,856, + 428,0,8184,8183,1,0,0,0,8185,8188,1,0,0,0,8186,8184,1,0,0,0,8186, + 8187,1,0,0,0,8187,8189,1,0,0,0,8188,8186,1,0,0,0,8189,8190,5,454, + 0,0,8190,8192,5,519,0,0,8191,8193,3,938,469,0,8192,8191,1,0,0,0, + 8192,8193,1,0,0,0,8193,8194,1,0,0,0,8194,8195,5,7,0,0,8195,893,1, + 0,0,0,8196,8198,3,4,2,0,8197,8199,3,898,449,0,8198,8197,1,0,0,0, + 8198,8199,1,0,0,0,8199,8200,1,0,0,0,8200,8201,5,7,0,0,8201,895,1, + 0,0,0,8202,8203,5,202,0,0,8203,8219,3,670,335,0,8204,8206,3,898, + 449,0,8205,8204,1,0,0,0,8205,8206,1,0,0,0,8206,8209,1,0,0,0,8207, + 8208,5,100,0,0,8208,8210,3,728,364,0,8209,8207,1,0,0,0,8209,8210, + 1,0,0,0,8210,8220,1,0,0,0,8211,8212,5,100,0,0,8212,8214,3,728,364, + 0,8213,8211,1,0,0,0,8213,8214,1,0,0,0,8214,8216,1,0,0,0,8215,8217, + 3,898,449,0,8216,8215,1,0,0,0,8216,8217,1,0,0,0,8217,8220,1,0,0, + 0,8218,8220,1,0,0,0,8219,8205,1,0,0,0,8219,8213,1,0,0,0,8219,8218, + 1,0,0,0,8220,8221,1,0,0,0,8221,8222,5,7,0,0,8222,897,1,0,0,0,8223, + 8225,5,71,0,0,8224,8226,5,346,0,0,8225,8224,1,0,0,0,8225,8226,1, + 0,0,0,8226,8227,1,0,0,0,8227,8228,3,728,364,0,8228,899,1,0,0,0,8229, + 8261,5,520,0,0,8230,8235,3,932,466,0,8231,8233,5,269,0,0,8232,8231, + 1,0,0,0,8232,8233,1,0,0,0,8233,8234,1,0,0,0,8234,8236,5,324,0,0, + 8235,8232,1,0,0,0,8235,8236,1,0,0,0,8236,8237,1,0,0,0,8237,8245, + 5,62,0,0,8238,8246,3,554,277,0,8239,8240,5,202,0,0,8240,8243,3,940, + 470,0,8241,8242,5,100,0,0,8242,8244,3,728,364,0,8243,8241,1,0,0, + 0,8243,8244,1,0,0,0,8244,8246,1,0,0,0,8245,8238,1,0,0,0,8245,8239, + 1,0,0,0,8246,8262,1,0,0,0,8247,8259,3,826,413,0,8248,8249,5,2,0, + 0,8249,8254,3,902,451,0,8250,8251,5,6,0,0,8251,8253,3,902,451,0, + 8252,8250,1,0,0,0,8253,8256,1,0,0,0,8254,8252,1,0,0,0,8254,8255, + 1,0,0,0,8255,8257,1,0,0,0,8256,8254,1,0,0,0,8257,8258,5,3,0,0,8258, + 8260,1,0,0,0,8259,8248,1,0,0,0,8259,8260,1,0,0,0,8260,8262,1,0,0, + 0,8261,8230,1,0,0,0,8261,8247,1,0,0,0,8262,8263,1,0,0,0,8263,8264, + 5,7,0,0,8264,901,1,0,0,0,8265,8266,3,826,413,0,8266,8267,5,20,0, + 0,8267,8269,1,0,0,0,8268,8265,1,0,0,0,8268,8269,1,0,0,0,8269,8270, + 1,0,0,0,8270,8271,3,670,335,0,8271,903,1,0,0,0,8272,8274,5,61,0, + 0,8273,8275,3,906,453,0,8274,8273,1,0,0,0,8274,8275,1,0,0,0,8275, + 8277,1,0,0,0,8276,8278,3,326,163,0,8277,8276,1,0,0,0,8277,8278,1, + 0,0,0,8278,8279,1,0,0,0,8279,8280,3,932,466,0,8280,8281,5,71,0,0, + 8281,8282,3,728,364,0,8282,8283,5,7,0,0,8283,905,1,0,0,0,8284,8299, + 5,268,0,0,8285,8299,5,293,0,0,8286,8299,5,207,0,0,8287,8299,5,249, + 0,0,8288,8290,7,51,0,0,8289,8288,1,0,0,0,8289,8290,1,0,0,0,8290, + 8291,1,0,0,0,8291,8299,3,670,335,0,8292,8299,5,30,0,0,8293,8296, + 7,118,0,0,8294,8297,3,670,335,0,8295,8297,5,30,0,0,8296,8294,1,0, + 0,0,8296,8295,1,0,0,0,8296,8297,1,0,0,0,8297,8299,1,0,0,0,8298,8284, + 1,0,0,0,8298,8285,1,0,0,0,8298,8286,1,0,0,0,8298,8287,1,0,0,0,8298, + 8289,1,0,0,0,8298,8292,1,0,0,0,8298,8293,1,0,0,0,8299,907,1,0,0, + 0,8300,8302,5,265,0,0,8301,8303,3,906,453,0,8302,8301,1,0,0,0,8302, + 8303,1,0,0,0,8303,8304,1,0,0,0,8304,8305,3,932,466,0,8305,8306,5, + 7,0,0,8306,909,1,0,0,0,8307,8309,3,566,283,0,8308,8307,1,0,0,0,8308, + 8309,1,0,0,0,8309,8310,1,0,0,0,8310,8311,5,525,0,0,8311,8313,5,71, + 0,0,8312,8314,5,81,0,0,8313,8312,1,0,0,0,8313,8314,1,0,0,0,8314, + 8315,1,0,0,0,8315,8317,3,778,389,0,8316,8318,5,9,0,0,8317,8316,1, + 0,0,0,8317,8318,1,0,0,0,8318,8323,1,0,0,0,8319,8321,5,36,0,0,8320, + 8319,1,0,0,0,8320,8321,1,0,0,0,8321,8322,1,0,0,0,8322,8324,3,826, + 413,0,8323,8320,1,0,0,0,8323,8324,1,0,0,0,8324,8325,1,0,0,0,8325, + 8326,5,100,0,0,8326,8327,3,912,456,0,8327,8328,5,80,0,0,8328,8330, + 3,670,335,0,8329,8331,3,914,457,0,8330,8329,1,0,0,0,8331,8332,1, + 0,0,0,8332,8330,1,0,0,0,8332,8333,1,0,0,0,8333,8335,1,0,0,0,8334, + 8336,3,540,270,0,8335,8334,1,0,0,0,8335,8336,1,0,0,0,8336,911,1, + 0,0,0,8337,8339,5,81,0,0,8338,8337,1,0,0,0,8338,8339,1,0,0,0,8339, + 8340,1,0,0,0,8340,8342,3,778,389,0,8341,8343,5,9,0,0,8342,8341,1, + 0,0,0,8342,8343,1,0,0,0,8343,8349,1,0,0,0,8344,8347,3,558,279,0, + 8345,8347,3,602,301,0,8346,8344,1,0,0,0,8346,8345,1,0,0,0,8347,8349, + 1,0,0,0,8348,8338,1,0,0,0,8348,8346,1,0,0,0,8349,8354,1,0,0,0,8350, + 8352,5,36,0,0,8351,8350,1,0,0,0,8351,8352,1,0,0,0,8352,8353,1,0, + 0,0,8353,8355,3,826,413,0,8354,8351,1,0,0,0,8354,8355,1,0,0,0,8355, + 913,1,0,0,0,8356,8357,5,102,0,0,8357,8360,5,526,0,0,8358,8359,5, + 33,0,0,8359,8361,3,670,335,0,8360,8358,1,0,0,0,8360,8361,1,0,0,0, + 8361,8362,1,0,0,0,8362,8367,5,93,0,0,8363,8368,3,918,459,0,8364, + 8368,5,182,0,0,8365,8366,5,57,0,0,8366,8368,5,270,0,0,8367,8363, + 1,0,0,0,8367,8364,1,0,0,0,8367,8365,1,0,0,0,8368,8383,1,0,0,0,8369, + 8370,5,102,0,0,8370,8371,5,77,0,0,8371,8374,5,526,0,0,8372,8373, + 5,33,0,0,8373,8375,3,670,335,0,8374,8372,1,0,0,0,8374,8375,1,0,0, + 0,8375,8376,1,0,0,0,8376,8380,5,93,0,0,8377,8381,3,916,458,0,8378, + 8379,5,57,0,0,8379,8381,5,270,0,0,8380,8377,1,0,0,0,8380,8378,1, + 0,0,0,8381,8383,1,0,0,0,8382,8356,1,0,0,0,8382,8369,1,0,0,0,8383, + 915,1,0,0,0,8384,8386,5,241,0,0,8385,8387,3,138,69,0,8386,8385,1, + 0,0,0,8386,8387,1,0,0,0,8387,8391,1,0,0,0,8388,8389,5,463,0,0,8389, + 8390,7,77,0,0,8390,8392,5,450,0,0,8391,8388,1,0,0,0,8391,8392,1, + 0,0,0,8392,8393,1,0,0,0,8393,8394,3,920,460,0,8394,917,1,0,0,0,8395, + 8396,5,369,0,0,8396,8414,5,333,0,0,8397,8398,3,806,403,0,8398,8399, + 5,10,0,0,8399,8400,3,922,461,0,8400,8415,1,0,0,0,8401,8402,3,138, + 69,0,8402,8403,5,10,0,0,8403,8404,5,2,0,0,8404,8409,3,922,461,0, + 8405,8406,5,6,0,0,8406,8408,3,922,461,0,8407,8405,1,0,0,0,8408,8411, + 1,0,0,0,8409,8407,1,0,0,0,8409,8410,1,0,0,0,8410,8412,1,0,0,0,8411, + 8409,1,0,0,0,8412,8413,5,3,0,0,8413,8415,1,0,0,0,8414,8397,1,0,0, + 0,8414,8401,1,0,0,0,8415,8416,1,0,0,0,8416,8414,1,0,0,0,8416,8417, + 1,0,0,0,8417,919,1,0,0,0,8418,8419,5,422,0,0,8419,8420,5,2,0,0,8420, + 8425,3,922,461,0,8421,8422,5,6,0,0,8422,8424,3,922,461,0,8423,8421, + 1,0,0,0,8424,8427,1,0,0,0,8425,8423,1,0,0,0,8425,8426,1,0,0,0,8426, + 8428,1,0,0,0,8427,8425,1,0,0,0,8428,8429,5,3,0,0,8429,8433,1,0,0, + 0,8430,8431,5,53,0,0,8431,8433,5,422,0,0,8432,8418,1,0,0,0,8432, + 8430,1,0,0,0,8433,921,1,0,0,0,8434,8437,3,582,291,0,8435,8437,5, + 53,0,0,8436,8434,1,0,0,0,8436,8435,1,0,0,0,8437,923,1,0,0,0,8438, + 8439,5,157,0,0,8439,8440,3,932,466,0,8440,8441,5,7,0,0,8441,925, + 1,0,0,0,8442,8443,5,78,0,0,8443,8444,5,7,0,0,8444,927,1,0,0,0,8445, + 8451,7,68,0,0,8446,8448,5,33,0,0,8447,8449,5,269,0,0,8448,8447,1, + 0,0,0,8448,8449,1,0,0,0,8449,8450,1,0,0,0,8450,8452,5,153,0,0,8451, + 8446,1,0,0,0,8451,8452,1,0,0,0,8452,8453,1,0,0,0,8453,8454,5,7,0, + 0,8454,929,1,0,0,0,8455,8456,5,333,0,0,8456,8457,3,310,155,0,8457, + 8458,5,94,0,0,8458,8459,5,53,0,0,8459,8460,5,7,0,0,8460,8468,1,0, + 0,0,8461,8464,5,313,0,0,8462,8465,3,310,155,0,8463,8465,5,30,0,0, + 8464,8462,1,0,0,0,8464,8463,1,0,0,0,8465,8466,1,0,0,0,8466,8468, + 5,7,0,0,8467,8455,1,0,0,0,8467,8461,1,0,0,0,8468,931,1,0,0,0,8469, + 8472,3,826,413,0,8470,8472,5,28,0,0,8471,8469,1,0,0,0,8471,8470, + 1,0,0,0,8472,933,1,0,0,0,8473,8490,5,517,0,0,8474,8475,5,102,0,0, + 8475,8480,3,936,468,0,8476,8477,5,82,0,0,8477,8479,3,936,468,0,8478, + 8476,1,0,0,0,8479,8482,1,0,0,0,8480,8478,1,0,0,0,8480,8481,1,0,0, + 0,8481,8483,1,0,0,0,8482,8480,1,0,0,0,8483,8487,5,93,0,0,8484,8486, + 3,856,428,0,8485,8484,1,0,0,0,8486,8489,1,0,0,0,8487,8485,1,0,0, + 0,8487,8488,1,0,0,0,8488,8491,1,0,0,0,8489,8487,1,0,0,0,8490,8474, + 1,0,0,0,8491,8492,1,0,0,0,8492,8490,1,0,0,0,8492,8493,1,0,0,0,8493, + 935,1,0,0,0,8494,8498,3,938,469,0,8495,8496,5,511,0,0,8496,8498, + 3,816,408,0,8497,8494,1,0,0,0,8497,8495,1,0,0,0,8498,937,1,0,0,0, + 8499,8502,3,826,413,0,8500,8502,3,838,419,0,8501,8499,1,0,0,0,8501, + 8500,1,0,0,0,8502,939,1,0,0,0,8503,8505,3,758,379,0,8504,8503,1, + 0,0,0,8504,8505,1,0,0,0,8505,8507,1,0,0,0,8506,8508,3,574,287,0, + 8507,8506,1,0,0,0,8507,8508,1,0,0,0,8508,8510,1,0,0,0,8509,8511, + 3,604,302,0,8510,8509,1,0,0,0,8510,8511,1,0,0,0,8511,8513,1,0,0, + 0,8512,8514,3,634,317,0,8513,8512,1,0,0,0,8513,8514,1,0,0,0,8514, + 8516,1,0,0,0,8515,8517,3,594,297,0,8516,8515,1,0,0,0,8516,8517,1, + 0,0,0,8517,8519,1,0,0,0,8518,8520,3,700,350,0,8519,8518,1,0,0,0, + 8519,8520,1,0,0,0,8520,8522,1,0,0,0,8521,8523,3,698,349,0,8522,8521, + 1,0,0,0,8522,8523,1,0,0,0,8523,941,1,0,0,0,1192,945,952,1072,1074, + 1083,1088,1094,1129,1139,1145,1150,1157,1162,1169,1180,1188,1192, + 1204,1210,1216,1220,1225,1229,1242,1252,1254,1260,1265,1278,1281, + 1286,1291,1302,1306,1318,1322,1325,1329,1341,1359,1366,1374,1379, + 1386,1394,1400,1408,1416,1420,1434,1439,1444,1456,1462,1474,1479, + 1489,1495,1500,1509,1516,1521,1526,1536,1541,1546,1553,1557,1571, + 1577,1583,1588,1595,1604,1613,1622,1631,1635,1647,1655,1665,1685, + 1690,1693,1700,1703,1707,1711,1714,1719,1724,1728,1737,1743,1747, + 1756,1759,1765,1774,1786,1790,1794,1799,1802,1808,1810,1812,1816, + 1822,1826,1831,1836,1840,1843,1850,1863,1876,1901,1911,1918,1923, + 1927,1934,1939,1942,1944,1949,1953,1957,1961,1966,1969,1973,1976, + 1980,1988,1993,1996,2000,2006,2015,2019,2029,2034,2038,2042,2044, + 2046,2053,2058,2062,2067,2079,2084,2088,2092,2097,2101,2104,2107, + 2110,2113,2116,2121,2124,2127,2130,2133,2136,2142,2146,2149,2152, + 2155,2158,2160,2167,2175,2185,2190,2200,2203,2208,2213,2218,2221, + 2226,2235,2237,2241,2244,2248,2253,2258,2262,2265,2269,2272,2277, + 2280,2285,2288,2292,2295,2298,2303,2306,2314,2326,2330,2337,2342, + 2345,2348,2351,2356,2367,2373,2377,2380,2383,2388,2395,2398,2402, + 2410,2415,2418,2421,2428,2433,2442,2445,2448,2453,2456,2468,2478, + 2495,2499,2503,2505,2522,2524,2540,2551,2554,2557,2566,2575,2591, + 2594,2597,2605,2609,2616,2625,2629,2635,2639,2642,2645,2648,2651, + 2657,2661,2666,2670,2673,2676,2679,2684,2690,2694,2698,2702,2708, + 2710,2715,2721,2727,2731,2746,2751,2754,2756,2759,2763,2767,2770, + 2773,2781,2787,2789,2795,2800,2805,2809,2816,2818,2829,2868,2878, + 2880,2883,2887,2891,2901,2903,2909,2911,2920,2932,2946,2951,2954, + 2961,2966,2974,2976,2982,2987,2991,2996,3002,3009,3015,3017,3026, + 3032,3040,3046,3051,3056,3064,3079,3081,3085,3089,3092,3095,3104, + 3107,3110,3116,3122,3126,3138,3144,3147,3152,3156,3163,3173,3175, + 3199,3211,3216,3218,3222,3225,3228,3238,3241,3251,3256,3261,3264, + 3267,3275,3281,3288,3296,3299,3310,3314,3320,3327,3330,3339,3353, + 3356,3370,3381,3384,3396,3401,3414,3419,3432,3441,3444,3447,3454, + 3457,3469,3475,3477,3485,3493,3501,3513,3518,3529,3540,3548,3556, + 3563,3570,3572,3575,3580,3585,3604,3613,3616,3643,3652,3655,3659, + 3663,3667,3674,3678,3682,3686,3690,3695,3699,3704,3710,3715,3722, + 3726,3732,3736,3741,3749,3755,3760,3767,3772,3776,3781,3787,3794, + 3799,3806,3811,3818,3822,3830,3834,3836,3839,3844,3854,3869,3872, + 3880,3887,3892,3898,3902,3909,3914,3917,3920,3924,3933,3951,3954, + 3986,3991,3997,4017,4022,4028,4031,4035,4039,4045,4048,4052,4056, + 4061,4064,4067,4070,4083,4089,4097,4104,4109,4112,4119,4122,4130, + 4133,4138,4145,4148,4168,4180,4183,4189,4194,4203,4211,4216,4222, + 4229,4237,4240,4251,4253,4267,4273,4281,4283,4289,4293,4296,4299, + 4304,4309,4313,4316,4319,4322,4325,4333,4344,4347,4350,4355,4358, + 4362,4366,4372,4380,4383,4396,4401,4403,4408,4415,4422,4431,4439, + 4447,4454,4462,4469,4477,4481,4485,4487,4493,4498,4502,4509,4514, + 4519,4524,4526,4536,4546,4562,4580,4592,4599,4614,4619,4622,4627, + 4632,4637,4640,4643,4648,4655,4659,4664,4671,4675,4681,4690,4699, + 4711,4713,4726,4732,4736,4738,4745,4758,4765,4767,4783,4787,4791, + 4796,4801,4806,4811,4814,4826,4879,4888,4892,4901,4905,4914,4918, + 4923,4926,4930,4935,4937,4946,4951,4962,4966,4980,4988,5026,5028, + 5047,5050,5077,5081,5085,5089,5093,5096,5111,5118,5132,5145,5170, + 5189,5204,5220,5227,5238,5241,5260,5263,5276,5280,5300,5312,5316, + 5338,5342,5352,5356,5362,5366,5370,5374,5381,5386,5397,5401,5404, + 5409,5415,5426,5430,5433,5437,5441,5444,5454,5457,5461,5466,5472, + 5475,5480,5483,5490,5492,5498,5502,5511,5516,5518,5528,5531,5536, + 5544,5547,5552,5554,5556,5562,5579,5585,5598,5604,5608,5613,5643, + 5658,5663,5667,5680,5684,5686,5695,5701,5703,5707,5710,5713,5716, + 5719,5721,5724,5728,5736,5741,5744,5750,5754,5758,5763,5765,5769, + 5773,5780,5786,5790,5792,5794,5807,5815,5823,5834,5844,5849,5853, + 5857,5864,5867,5869,5877,5881,5884,5891,5898,5903,5910,5913,5915, + 5918,5924,5929,5933,5940,5950,5957,5960,5963,5967,5978,5981,5984, + 5987,5990,5997,6000,6003,6010,6022,6029,6031,6036,6041,6043,6049, + 6056,6061,6066,6070,6074,6078,6080,6084,6088,6091,6094,6096,6106, + 6108,6113,6117,6122,6126,6133,6138,6142,6145,6151,6154,6173,6180, + 6184,6187,6191,6195,6198,6201,6206,6215,6222,6226,6230,6234,6237, + 6239,6244,6248,6253,6259,6266,6271,6276,6285,6292,6300,6311,6316, + 6320,6323,6327,6332,6336,6341,6349,6360,6365,6369,6372,6375,6377, + 6380,6383,6386,6396,6401,6407,6411,6413,6420,6425,6431,6433,6438, + 6442,6446,6448,6451,6458,6463,6466,6472,6476,6482,6491,6497,6499, + 6504,6507,6516,6523,6525,6532,6537,6540,6550,6561,6566,6570,6578, + 6588,6595,6601,6612,6618,6628,6637,6641,6644,6646,6648,6652,6660, + 6663,6668,6673,6680,6682,6688,6692,6695,6700,6703,6705,6711,6720, + 6726,6729,6737,6740,6744,6750,6752,6755,6759,6764,6771,6778,6780, + 6786,6788,6793,6795,6799,6808,6812,6820,6822,6836,6839,6847,6856, + 6862,6867,6875,6877,6882,6886,6891,6896,6902,6918,6920,6929,6944, + 6949,6952,6958,6963,6976,6981,6985,6992,7011,7023,7028,7036,7038, + 7040,7049,7052,7057,7062,7065,7076,7084,7089,7091,7094,7098,7109, + 7130,7138,7151,7161,7167,7173,7176,7179,7205,7207,7228,7238,7251, + 7256,7260,7262,7274,7281,7287,7293,7297,7308,7321,7325,7330,7333, + 7336,7345,7356,7358,7362,7367,7376,7381,7389,7399,7407,7411,7414, + 7421,7433,7437,7444,7452,7454,7463,7466,7478,7487,7494,7503,7517, + 7521,7523,7526,7531,7536,7544,7550,7553,7557,7566,7573,7583,7591, + 7599,7607,7624,7631,7639,7656,7662,7678,7684,7689,7697,7702,7705, + 7714,7721,7726,7730,7735,7741,7746,7751,7759,7814,7821,7827,7829, + 7831,7833,7839,7843,7847,7858,7861,7865,7869,7873,7876,7879,7882, + 7891,7896,7900,7933,7943,7947,7953,7958,7967,7975,7986,7994,8003, + 8012,8017,8021,8031,8036,8044,8049,8052,8059,8065,8073,8081,8084, + 8091,8093,8096,8102,8111,8115,8129,8132,8134,8140,8150,8152,8154, + 8162,8165,8168,8178,8186,8192,8198,8205,8209,8213,8216,8219,8225, + 8232,8235,8243,8245,8254,8259,8261,8268,8274,8277,8289,8296,8298, + 8302,8308,8313,8317,8320,8323,8332,8335,8338,8342,8346,8348,8351, + 8354,8360,8367,8374,8380,8382,8386,8391,8409,8414,8416,8425,8432, + 8436,8448,8451,8464,8467,8471,8480,8487,8492,8497,8501,8504,8507, + 8510,8513,8516,8519,8522 ]; private static __ATN: antlr.ATN; @@ -79410,8 +83480,8 @@ export class IndirectionElContext extends antlr.ParserRuleContext { public DOT(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.DOT, 0); } - public colLabel(): ColLabelContext | null { - return this.getRuleContext(0, ColLabelContext); + public indirectionLabel(): IndirectionLabelContext | null { + return this.getRuleContext(0, IndirectionLabelContext); } public STAR(): antlr.TerminalNode | null { return this.getToken(PostgreSqlParser.STAR, 0); @@ -79585,6 +83655,64 @@ export class TargetElContext extends antlr.ParserRuleContext { super.copyFrom(ctx); } } +export class Target_emptyContext extends TargetElContext { + public constructor(ctx: TargetElContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public emptyColumn(): EmptyColumnContext { + return this.getRuleContext(0, EmptyColumnContext)!; + } + public override enterRule(listener: PostgreSqlParserListener): void { + if(listener.enterTarget_empty) { + listener.enterTarget_empty(this); + } + } + public override exitRule(listener: PostgreSqlParserListener): void { + if(listener.exitTarget_empty) { + listener.exitTarget_empty(this); + } + } + public override accept(visitor: PostgreSqlParserVisitor): Result | null { + if (visitor.visitTarget_empty) { + return visitor.visitTarget_empty(this); + } else { + return visitor.visitChildren(this); + } + } +} +export class Target_dot_emptyContext extends TargetElContext { + public constructor(ctx: TargetElContext) { + super(ctx.parent, ctx.invokingState); + super.copyFrom(ctx); + } + public colId(): ColIdContext { + return this.getRuleContext(0, ColIdContext)!; + } + public DOT(): antlr.TerminalNode { + return this.getToken(PostgreSqlParser.DOT, 0)!; + } + public emptyColumn(): EmptyColumnContext { + return this.getRuleContext(0, EmptyColumnContext)!; + } + public override enterRule(listener: PostgreSqlParserListener): void { + if(listener.enterTarget_dot_empty) { + listener.enterTarget_dot_empty(this); + } + } + public override exitRule(listener: PostgreSqlParserListener): void { + if(listener.exitTarget_dot_empty) { + listener.exitTarget_dot_empty(this); + } + } + public override accept(visitor: PostgreSqlParserVisitor): Result | null { + if (visitor.visitTarget_dot_empty) { + return visitor.visitTarget_dot_empty(this); + } else { + return visitor.visitChildren(this); + } + } +} export class Target_starContext extends TargetElContext { public constructor(ctx: TargetElContext) { super(ctx.parent, ctx.invokingState); @@ -80433,17 +84561,11 @@ export class ColumnNameContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public colId(): ColIdContext | null { - return this.getRuleContext(0, ColIdContext); - } - public optIndirection(): OptIndirectionContext | null { - return this.getRuleContext(0, OptIndirectionContext); - } - public DOT(): antlr.TerminalNode | null { - return this.getToken(PostgreSqlParser.DOT, 0); + public colId(): ColIdContext { + return this.getRuleContext(0, ColIdContext)!; } - public emptyColumn(): EmptyColumnContext | null { - return this.getRuleContext(0, EmptyColumnContext); + public optIndirection(): OptIndirectionContext { + return this.getRuleContext(0, OptIndirectionContext)!; } public override get ruleIndex(): number { return PostgreSqlParser.RULE_columnName; @@ -80472,17 +84594,11 @@ export class ColumnNamePathContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); } - public colId(): ColIdContext | null { - return this.getRuleContext(0, ColIdContext); - } - public optIndirection(): OptIndirectionContext | null { - return this.getRuleContext(0, OptIndirectionContext); - } - public DOT(): antlr.TerminalNode | null { - return this.getToken(PostgreSqlParser.DOT, 0); + public colId(): ColIdContext { + return this.getRuleContext(0, ColIdContext)!; } - public emptyColumn(): EmptyColumnContext | null { - return this.getRuleContext(0, EmptyColumnContext); + public optIndirection(): OptIndirectionContext { + return this.getRuleContext(0, OptIndirectionContext)!; } public override get ruleIndex(): number { return PostgreSqlParser.RULE_columnNamePath; @@ -80963,6 +85079,42 @@ export class ColLabelContext extends antlr.ParserRuleContext { } +export class IndirectionLabelContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public identifier(): IdentifierContext | null { + return this.getRuleContext(0, IdentifierContext); + } + public colNameKeyword(): ColNameKeywordContext | null { + return this.getRuleContext(0, ColNameKeywordContext); + } + public typeFuncNameKeyword(): TypeFuncNameKeywordContext | null { + return this.getRuleContext(0, TypeFuncNameKeywordContext); + } + public override get ruleIndex(): number { + return PostgreSqlParser.RULE_indirectionLabel; + } + public override enterRule(listener: PostgreSqlParserListener): void { + if(listener.enterIndirectionLabel) { + listener.enterIndirectionLabel(this); + } + } + public override exitRule(listener: PostgreSqlParserListener): void { + if(listener.exitIndirectionLabel) { + listener.exitIndirectionLabel(this); + } + } + public override accept(visitor: PostgreSqlParserVisitor): Result | null { + if (visitor.visitIndirectionLabel) { + return visitor.visitIndirectionLabel(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class IdentifierContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); diff --git a/src/lib/postgresql/PostgreSqlParserListener.ts b/src/lib/postgresql/PostgreSqlParserListener.ts index 6bb354d2d..3d6650903 100644 --- a/src/lib/postgresql/PostgreSqlParserListener.ts +++ b/src/lib/postgresql/PostgreSqlParserListener.ts @@ -404,6 +404,8 @@ import { OptIndirectionContext } from "./PostgreSqlParser.js"; import { TargetListContext } from "./PostgreSqlParser.js"; import { Target_starContext } from "./PostgreSqlParser.js"; import { Target_labelContext } from "./PostgreSqlParser.js"; +import { Target_dot_emptyContext } from "./PostgreSqlParser.js"; +import { Target_emptyContext } from "./PostgreSqlParser.js"; import { TableAllColumnsContext } from "./PostgreSqlParser.js"; import { QualifiedNameListContext } from "./PostgreSqlParser.js"; import { TableNameListContext } from "./PostgreSqlParser.js"; @@ -440,6 +442,7 @@ import { ColIdContext } from "./PostgreSqlParser.js"; import { TypeFunctionNameContext } from "./PostgreSqlParser.js"; import { NonReservedWordContext } from "./PostgreSqlParser.js"; import { ColLabelContext } from "./PostgreSqlParser.js"; +import { IndirectionLabelContext } from "./PostgreSqlParser.js"; import { IdentifierContext } from "./PostgreSqlParser.js"; import { UnreservedKeywordContext } from "./PostgreSqlParser.js"; import { ColNameKeywordContext } from "./PostgreSqlParser.js"; @@ -4514,6 +4517,30 @@ export class PostgreSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitTarget_label?: (ctx: Target_labelContext) => void; + /** + * Enter a parse tree produced by the `target_dot_empty` + * labeled alternative in `PostgreSqlParser.targetEl`. + * @param ctx the parse tree + */ + enterTarget_dot_empty?: (ctx: Target_dot_emptyContext) => void; + /** + * Exit a parse tree produced by the `target_dot_empty` + * labeled alternative in `PostgreSqlParser.targetEl`. + * @param ctx the parse tree + */ + exitTarget_dot_empty?: (ctx: Target_dot_emptyContext) => void; + /** + * Enter a parse tree produced by the `target_empty` + * labeled alternative in `PostgreSqlParser.targetEl`. + * @param ctx the parse tree + */ + enterTarget_empty?: (ctx: Target_emptyContext) => void; + /** + * Exit a parse tree produced by the `target_empty` + * labeled alternative in `PostgreSqlParser.targetEl`. + * @param ctx the parse tree + */ + exitTarget_empty?: (ctx: Target_emptyContext) => void; /** * Enter a parse tree produced by `PostgreSqlParser.tableAllColumns`. * @param ctx the parse tree @@ -4874,6 +4901,16 @@ export class PostgreSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitColLabel?: (ctx: ColLabelContext) => void; + /** + * Enter a parse tree produced by `PostgreSqlParser.indirectionLabel`. + * @param ctx the parse tree + */ + enterIndirectionLabel?: (ctx: IndirectionLabelContext) => void; + /** + * Exit a parse tree produced by `PostgreSqlParser.indirectionLabel`. + * @param ctx the parse tree + */ + exitIndirectionLabel?: (ctx: IndirectionLabelContext) => void; /** * Enter a parse tree produced by `PostgreSqlParser.identifier`. * @param ctx the parse tree diff --git a/src/lib/postgresql/PostgreSqlParserVisitor.ts b/src/lib/postgresql/PostgreSqlParserVisitor.ts index 04bcded71..88cfc12df 100644 --- a/src/lib/postgresql/PostgreSqlParserVisitor.ts +++ b/src/lib/postgresql/PostgreSqlParserVisitor.ts @@ -404,6 +404,8 @@ import { OptIndirectionContext } from "./PostgreSqlParser.js"; import { TargetListContext } from "./PostgreSqlParser.js"; import { Target_starContext } from "./PostgreSqlParser.js"; import { Target_labelContext } from "./PostgreSqlParser.js"; +import { Target_dot_emptyContext } from "./PostgreSqlParser.js"; +import { Target_emptyContext } from "./PostgreSqlParser.js"; import { TableAllColumnsContext } from "./PostgreSqlParser.js"; import { QualifiedNameListContext } from "./PostgreSqlParser.js"; import { TableNameListContext } from "./PostgreSqlParser.js"; @@ -440,6 +442,7 @@ import { ColIdContext } from "./PostgreSqlParser.js"; import { TypeFunctionNameContext } from "./PostgreSqlParser.js"; import { NonReservedWordContext } from "./PostgreSqlParser.js"; import { ColLabelContext } from "./PostgreSqlParser.js"; +import { IndirectionLabelContext } from "./PostgreSqlParser.js"; import { IdentifierContext } from "./PostgreSqlParser.js"; import { UnreservedKeywordContext } from "./PostgreSqlParser.js"; import { ColNameKeywordContext } from "./PostgreSqlParser.js"; @@ -2906,6 +2909,20 @@ export class PostgreSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by the `target_dot_empty` + * labeled alternative in `PostgreSqlParser.targetEl`. + * @param ctx the parse tree + * @return the visitor result + */ + visitTarget_dot_empty?: (ctx: Target_dot_emptyContext) => Result; + /** + * Visit a parse tree produced by the `target_empty` + * labeled alternative in `PostgreSqlParser.targetEl`. + * @param ctx the parse tree + * @return the visitor result + */ + visitTarget_empty?: (ctx: Target_emptyContext) => Result; /** * Visit a parse tree produced by `PostgreSqlParser.tableAllColumns`. * @param ctx the parse tree @@ -3122,6 +3139,12 @@ export class PostgreSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `PostgreSqlParser.indirectionLabel`. + * @param ctx the parse tree + * @return the visitor result + */ + visitIndirectionLabel?: (ctx: IndirectionLabelContext) => Result; /** * Visit a parse tree produced by `PostgreSqlParser.identifier`. * @param ctx the parse tree diff --git a/src/lib/spark/SparkSqlParser.interp b/src/lib/spark/SparkSqlParser.interp index aab2f55dd..830c50d14 100644 --- a/src/lib/spark/SparkSqlParser.interp +++ b/src/lib/spark/SparkSqlParser.interp @@ -980,4 +980,4 @@ nonReserved atn: -[4, 1, 393, 3828, 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, 1, 0, 5, 0, 374, 8, 0, 10, 0, 12, 0, 377, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 383, 8, 1, 1, 2, 1, 2, 3, 2, 387, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 392, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 399, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 404, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 414, 8, 2, 10, 2, 12, 2, 417, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 436, 8, 2, 1, 2, 1, 2, 3, 2, 440, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 446, 8, 2, 1, 2, 3, 2, 449, 8, 2, 1, 2, 3, 2, 452, 8, 2, 1, 2, 1, 2, 3, 2, 456, 8, 2, 1, 2, 3, 2, 459, 8, 2, 1, 2, 1, 2, 3, 2, 463, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 470, 8, 2, 1, 2, 3, 2, 473, 8, 2, 1, 2, 1, 2, 3, 2, 477, 8, 2, 1, 2, 3, 2, 480, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 485, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 498, 8, 2, 10, 2, 12, 2, 501, 9, 2, 1, 2, 1, 2, 3, 2, 505, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 514, 8, 2, 1, 2, 3, 2, 517, 8, 2, 1, 2, 1, 2, 3, 2, 521, 8, 2, 1, 2, 3, 2, 524, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 530, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 541, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 547, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 552, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 585, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 595, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 606, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 617, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 628, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 633, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 642, 8, 2, 1, 2, 1, 2, 3, 2, 646, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 652, 8, 2, 1, 2, 1, 2, 3, 2, 656, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 661, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 667, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 679, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 687, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 693, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 704, 8, 2, 1, 2, 1, 2, 3, 2, 708, 8, 2, 1, 2, 4, 2, 711, 8, 2, 11, 2, 12, 2, 712, 1, 2, 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, 728, 8, 2, 1, 2, 1, 2, 3, 2, 732, 8, 2, 1, 2, 1, 2, 1, 2, 5, 2, 737, 8, 2, 10, 2, 12, 2, 740, 9, 2, 1, 2, 3, 2, 743, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 749, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 779, 8, 2, 1, 2, 1, 2, 3, 2, 783, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 788, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 795, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 801, 8, 2, 1, 2, 3, 2, 804, 8, 2, 1, 2, 3, 2, 807, 8, 2, 1, 2, 1, 2, 3, 2, 811, 8, 2, 1, 2, 1, 2, 3, 2, 815, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 824, 8, 2, 10, 2, 12, 2, 827, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 835, 8, 2, 1, 2, 3, 2, 838, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 847, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 852, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 858, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 865, 8, 2, 1, 2, 3, 2, 868, 8, 2, 1, 2, 1, 2, 3, 2, 872, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 885, 8, 2, 10, 2, 12, 2, 888, 9, 2, 3, 2, 890, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 896, 8, 2, 1, 2, 1, 2, 3, 2, 900, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 917, 8, 2, 10, 2, 12, 2, 920, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 927, 8, 2, 1, 2, 1, 2, 3, 2, 931, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 937, 8, 2, 1, 2, 3, 2, 940, 8, 2, 1, 2, 1, 2, 3, 2, 944, 8, 2, 1, 2, 3, 2, 947, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 953, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 958, 8, 2, 1, 2, 1, 2, 3, 2, 962, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 969, 8, 2, 1, 2, 3, 2, 972, 8, 2, 1, 2, 3, 2, 975, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 982, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 987, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 996, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1004, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1010, 8, 2, 1, 2, 3, 2, 1013, 8, 2, 1, 2, 3, 2, 1016, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1022, 8, 2, 1, 2, 1, 2, 3, 2, 1026, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1031, 8, 2, 1, 2, 3, 2, 1034, 8, 2, 1, 2, 1, 2, 3, 2, 1038, 8, 2, 3, 2, 1040, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1048, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1056, 8, 2, 1, 2, 3, 2, 1059, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1066, 8, 2, 1, 2, 3, 2, 1069, 8, 2, 1, 2, 3, 2, 1072, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1081, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1086, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1092, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1097, 8, 2, 1, 2, 3, 2, 1100, 8, 2, 1, 2, 1, 2, 3, 2, 1104, 8, 2, 1, 2, 3, 2, 1107, 8, 2, 1, 2, 1, 2, 3, 2, 1111, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1121, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1126, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1137, 8, 2, 10, 2, 12, 2, 1140, 9, 2, 3, 2, 1142, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1150, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1156, 8, 2, 1, 2, 3, 2, 1159, 8, 2, 1, 2, 3, 2, 1162, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1167, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1175, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1180, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1186, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1192, 8, 2, 1, 2, 3, 2, 1195, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1202, 8, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1207, 8, 2, 10, 2, 12, 2, 1210, 9, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1215, 8, 2, 10, 2, 12, 2, 1218, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1229, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1235, 8, 2, 10, 2, 12, 2, 1238, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1262, 8, 2, 10, 2, 12, 2, 1265, 9, 2, 3, 2, 1267, 8, 2, 1, 2, 1, 2, 5, 2, 1271, 8, 2, 10, 2, 12, 2, 1274, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1280, 8, 2, 10, 2, 12, 2, 1283, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1289, 8, 2, 10, 2, 12, 2, 1292, 9, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1297, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1302, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1307, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1314, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1319, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1324, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1331, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1337, 8, 2, 10, 2, 12, 2, 1340, 9, 2, 3, 2, 1342, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1348, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1355, 8, 3, 1, 3, 1, 3, 3, 3, 1359, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1422, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1430, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1437, 8, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 1445, 8, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 1457, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 1462, 8, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 8, 3, 8, 1471, 8, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 3, 9, 1479, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1484, 8, 9, 3, 9, 1486, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1494, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1499, 8, 9, 1, 9, 1, 9, 3, 9, 1503, 8, 9, 1, 9, 3, 9, 1506, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1514, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1519, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1528, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1533, 8, 9, 1, 9, 3, 9, 1536, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1541, 8, 9, 1, 9, 1, 9, 3, 9, 1545, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1550, 8, 9, 3, 9, 1552, 8, 9, 1, 10, 1, 10, 1, 10, 3, 10, 1557, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 1564, 8, 11, 10, 11, 12, 11, 1567, 9, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 3, 12, 1574, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1580, 8, 12, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1589, 8, 14, 1, 15, 1, 15, 1, 15, 5, 15, 1594, 8, 15, 10, 15, 12, 15, 1597, 9, 15, 1, 16, 1, 16, 1, 16, 1, 16, 5, 16, 1603, 8, 16, 10, 16, 12, 16, 1606, 9, 16, 1, 17, 1, 17, 3, 17, 1610, 8, 17, 1, 17, 3, 17, 1613, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 5, 19, 1638, 8, 19, 10, 19, 12, 19, 1641, 9, 19, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 1650, 8, 21, 10, 21, 12, 21, 1653, 9, 21, 1, 21, 1, 21, 1, 22, 1, 22, 3, 22, 1659, 8, 22, 1, 22, 3, 22, 1662, 8, 22, 1, 23, 1, 23, 1, 23, 5, 23, 1667, 8, 23, 10, 23, 12, 23, 1670, 9, 23, 1, 23, 3, 23, 1673, 8, 23, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 1679, 8, 24, 1, 25, 1, 25, 1, 25, 1, 25, 5, 25, 1685, 8, 25, 10, 25, 12, 25, 1688, 9, 25, 1, 25, 1, 25, 1, 26, 1, 26, 3, 26, 1694, 8, 26, 1, 26, 3, 26, 1697, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 1703, 8, 27, 10, 27, 12, 27, 1706, 9, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 1714, 8, 28, 10, 28, 12, 28, 1717, 9, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 1727, 8, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 1735, 8, 30, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 1741, 8, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 4, 32, 1750, 8, 32, 11, 32, 12, 32, 1751, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1759, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1766, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1778, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 1784, 8, 32, 10, 32, 12, 32, 1787, 9, 32, 1, 32, 5, 32, 1790, 8, 32, 10, 32, 12, 32, 1793, 9, 32, 1, 32, 5, 32, 1796, 8, 32, 10, 32, 12, 32, 1799, 9, 32, 3, 32, 1801, 8, 32, 1, 33, 1, 33, 1, 34, 1, 34, 1, 35, 1, 35, 1, 36, 1, 36, 1, 37, 1, 37, 1, 38, 1, 38, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 3, 40, 1820, 8, 40, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 3, 42, 1827, 8, 42, 1, 43, 1, 43, 1, 43, 5, 43, 1832, 8, 43, 10, 43, 12, 43, 1835, 9, 43, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1845, 8, 45, 1, 46, 1, 46, 1, 46, 3, 46, 1850, 8, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1855, 8, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1860, 8, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1865, 8, 46, 1, 46, 3, 46, 1868, 8, 46, 1, 46, 3, 46, 1871, 8, 46, 1, 46, 1, 46, 3, 46, 1875, 8, 46, 1, 47, 1, 47, 1, 47, 3, 47, 1880, 8, 47, 1, 48, 1, 48, 1, 48, 5, 48, 1885, 8, 48, 10, 48, 12, 48, 1888, 9, 48, 1, 49, 1, 49, 1, 49, 5, 49, 1893, 8, 49, 10, 49, 12, 49, 1896, 9, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1904, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1910, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1916, 8, 50, 1, 50, 5, 50, 1919, 8, 50, 10, 50, 12, 50, 1922, 9, 50, 1, 51, 1, 51, 1, 51, 4, 51, 1927, 8, 51, 11, 51, 12, 51, 1928, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 5, 51, 1937, 8, 51, 10, 51, 12, 51, 1940, 9, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1948, 8, 51, 1, 52, 1, 52, 3, 52, 1952, 8, 52, 1, 52, 3, 52, 1955, 8, 52, 1, 52, 1, 52, 3, 52, 1959, 8, 52, 1, 53, 1, 53, 3, 53, 1963, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 1969, 8, 53, 10, 53, 12, 53, 1972, 9, 53, 1, 53, 3, 53, 1975, 8, 53, 1, 53, 3, 53, 1978, 8, 53, 1, 53, 3, 53, 1981, 8, 53, 1, 53, 3, 53, 1984, 8, 53, 1, 53, 1, 53, 3, 53, 1988, 8, 53, 1, 54, 1, 54, 3, 54, 1992, 8, 54, 1, 54, 5, 54, 1995, 8, 54, 10, 54, 12, 54, 1998, 9, 54, 1, 54, 3, 54, 2001, 8, 54, 1, 54, 3, 54, 2004, 8, 54, 1, 54, 3, 54, 2007, 8, 54, 1, 54, 3, 54, 2010, 8, 54, 1, 54, 1, 54, 3, 54, 2014, 8, 54, 1, 54, 5, 54, 2017, 8, 54, 10, 54, 12, 54, 2020, 9, 54, 1, 54, 3, 54, 2023, 8, 54, 1, 54, 3, 54, 2026, 8, 54, 1, 54, 3, 54, 2029, 8, 54, 1, 54, 3, 54, 2032, 8, 54, 3, 54, 2034, 8, 54, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 2040, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 2047, 8, 55, 1, 55, 1, 55, 1, 55, 3, 55, 2052, 8, 55, 1, 55, 3, 55, 2055, 8, 55, 1, 55, 3, 55, 2058, 8, 55, 1, 55, 1, 55, 3, 55, 2062, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 2072, 8, 55, 1, 55, 1, 55, 3, 55, 2076, 8, 55, 3, 55, 2078, 8, 55, 1, 55, 3, 55, 2081, 8, 55, 1, 55, 1, 55, 3, 55, 2085, 8, 55, 1, 56, 1, 56, 5, 56, 2089, 8, 56, 10, 56, 12, 56, 2092, 9, 56, 1, 56, 3, 56, 2095, 8, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2106, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2114, 8, 58, 3, 58, 2116, 8, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 2123, 8, 59, 1, 59, 1, 59, 3, 59, 2127, 8, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2139, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2146, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 5, 61, 2159, 8, 61, 10, 61, 12, 61, 2162, 9, 61, 1, 61, 1, 61, 3, 61, 2166, 8, 61, 1, 62, 1, 62, 1, 62, 5, 62, 2171, 8, 62, 10, 62, 12, 62, 2174, 9, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 3, 66, 2189, 8, 66, 1, 66, 5, 66, 2192, 8, 66, 10, 66, 12, 66, 2195, 9, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 5, 67, 2205, 8, 67, 10, 67, 12, 67, 2208, 9, 67, 1, 67, 1, 67, 3, 67, 2212, 8, 67, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2218, 8, 68, 10, 68, 12, 68, 2221, 9, 68, 1, 68, 5, 68, 2224, 8, 68, 10, 68, 12, 68, 2227, 9, 68, 1, 68, 3, 68, 2230, 8, 68, 1, 68, 3, 68, 2233, 8, 68, 1, 69, 3, 69, 2236, 8, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 2243, 8, 69, 1, 69, 3, 69, 2246, 8, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 2252, 8, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 2259, 8, 70, 10, 70, 12, 70, 2262, 9, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 2269, 8, 70, 10, 70, 12, 70, 2272, 9, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 2284, 8, 70, 10, 70, 12, 70, 2287, 9, 70, 1, 70, 1, 70, 3, 70, 2291, 8, 70, 3, 70, 2293, 8, 70, 1, 71, 1, 71, 1, 71, 3, 71, 2298, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2305, 8, 72, 10, 72, 12, 72, 2308, 9, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2317, 8, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2322, 8, 72, 5, 72, 2324, 8, 72, 10, 72, 12, 72, 2327, 9, 72, 1, 72, 1, 72, 3, 72, 2331, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2338, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2343, 8, 73, 5, 73, 2345, 8, 73, 10, 73, 12, 73, 2348, 9, 73, 3, 73, 2350, 8, 73, 1, 73, 3, 73, 2353, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 5, 74, 2365, 8, 74, 10, 74, 12, 74, 2368, 9, 74, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 2378, 8, 75, 10, 75, 12, 75, 2381, 9, 75, 1, 75, 1, 75, 3, 75, 2385, 8, 75, 1, 76, 1, 76, 3, 76, 2389, 8, 76, 1, 76, 3, 76, 2392, 8, 76, 1, 77, 1, 77, 1, 77, 3, 77, 2397, 8, 77, 1, 77, 1, 77, 1, 77, 3, 77, 2402, 8, 77, 1, 77, 1, 77, 3, 77, 2406, 8, 77, 1, 77, 3, 77, 2409, 8, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 5, 78, 2419, 8, 78, 10, 78, 12, 78, 2422, 9, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 5, 79, 2430, 8, 79, 10, 79, 12, 79, 2433, 9, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 5, 79, 2443, 8, 79, 10, 79, 12, 79, 2446, 9, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 5, 80, 2454, 8, 80, 10, 80, 12, 80, 2457, 9, 80, 1, 80, 1, 80, 3, 80, 2461, 8, 80, 1, 80, 3, 80, 2464, 8, 80, 1, 81, 1, 81, 3, 81, 2468, 8, 81, 1, 81, 3, 81, 2471, 8, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 3, 84, 2483, 8, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 5, 84, 2490, 8, 84, 10, 84, 12, 84, 2493, 9, 84, 3, 84, 2495, 8, 84, 1, 84, 1, 84, 1, 84, 3, 84, 2500, 8, 84, 1, 84, 1, 84, 1, 84, 5, 84, 2505, 8, 84, 10, 84, 12, 84, 2508, 9, 84, 3, 84, 2510, 8, 84, 1, 85, 1, 85, 1, 86, 1, 86, 3, 86, 2516, 8, 86, 1, 86, 1, 86, 1, 86, 1, 86, 5, 86, 2522, 8, 86, 10, 86, 12, 86, 2525, 9, 86, 3, 86, 2527, 8, 86, 1, 87, 1, 87, 1, 87, 3, 87, 2532, 8, 87, 1, 87, 1, 87, 3, 87, 2536, 8, 87, 1, 87, 1, 87, 1, 87, 1, 87, 3, 87, 2542, 8, 87, 1, 87, 1, 87, 3, 87, 2546, 8, 87, 1, 88, 3, 88, 2549, 8, 88, 1, 88, 1, 88, 1, 88, 3, 88, 2554, 8, 88, 1, 88, 3, 88, 2557, 8, 88, 1, 88, 1, 88, 1, 88, 3, 88, 2562, 8, 88, 3, 88, 2564, 8, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 3, 89, 2571, 8, 89, 3, 89, 2573, 8, 89, 1, 89, 1, 89, 3, 89, 2577, 8, 89, 1, 90, 1, 90, 1, 90, 3, 90, 2582, 8, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 2589, 8, 90, 1, 91, 3, 91, 2592, 8, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 3, 91, 2610, 8, 91, 3, 91, 2612, 8, 91, 1, 91, 3, 91, 2615, 8, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 5, 93, 2624, 8, 93, 10, 93, 12, 93, 2627, 9, 93, 1, 94, 1, 94, 1, 94, 1, 94, 5, 94, 2633, 8, 94, 10, 94, 12, 94, 2636, 9, 94, 1, 94, 1, 94, 1, 95, 1, 95, 3, 95, 2642, 8, 95, 1, 96, 1, 96, 1, 96, 1, 96, 5, 96, 2648, 8, 96, 10, 96, 12, 96, 2651, 9, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 3, 97, 2658, 8, 97, 1, 98, 1, 98, 1, 98, 3, 98, 2663, 8, 98, 1, 98, 3, 98, 2666, 8, 98, 1, 98, 3, 98, 2669, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 2675, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 2683, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 2691, 8, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 5, 100, 2701, 8, 100, 10, 100, 12, 100, 2704, 9, 100, 1, 101, 1, 101, 1, 101, 3, 101, 2709, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 2716, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 2723, 8, 101, 3, 101, 2725, 8, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 2736, 8, 102, 10, 102, 12, 102, 2739, 9, 102, 1, 102, 1, 102, 1, 102, 3, 102, 2744, 8, 102, 3, 102, 2746, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 2755, 8, 102, 3, 102, 2757, 8, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 3, 104, 2765, 8, 104, 1, 105, 1, 105, 3, 105, 2769, 8, 105, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 5, 107, 2779, 8, 107, 10, 107, 12, 107, 2782, 9, 107, 3, 107, 2784, 8, 107, 1, 107, 1, 107, 1, 108, 3, 108, 2789, 8, 108, 1, 108, 1, 108, 3, 108, 2793, 8, 108, 3, 108, 2795, 8, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 2804, 8, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 2816, 8, 109, 3, 109, 2818, 8, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 2825, 8, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 2832, 8, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 2838, 8, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 2844, 8, 109, 3, 109, 2846, 8, 109, 1, 110, 1, 110, 1, 110, 5, 110, 2851, 8, 110, 10, 110, 12, 110, 2854, 9, 110, 1, 111, 1, 111, 1, 111, 5, 111, 2859, 8, 111, 10, 111, 12, 111, 2862, 9, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 3, 112, 2870, 8, 112, 1, 113, 1, 113, 1, 113, 5, 113, 2875, 8, 113, 10, 113, 12, 113, 2878, 9, 113, 1, 114, 1, 114, 1, 114, 3, 114, 2883, 8, 114, 1, 115, 1, 115, 1, 115, 3, 115, 2888, 8, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 3, 116, 2895, 8, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 5, 119, 2906, 8, 119, 10, 119, 12, 119, 2909, 9, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 3, 120, 2916, 8, 120, 1, 120, 3, 120, 2919, 8, 120, 1, 120, 1, 120, 3, 120, 2923, 8, 120, 3, 120, 2925, 8, 120, 1, 121, 1, 121, 1, 121, 5, 121, 2930, 8, 121, 10, 121, 12, 121, 2933, 9, 121, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 5, 123, 2941, 8, 123, 10, 123, 12, 123, 2944, 9, 123, 1, 123, 1, 123, 1, 124, 1, 124, 3, 124, 2950, 8, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 5, 125, 2958, 8, 125, 10, 125, 12, 125, 2961, 9, 125, 1, 125, 1, 125, 3, 125, 2965, 8, 125, 1, 126, 1, 126, 3, 126, 2969, 8, 126, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 3, 129, 2979, 8, 129, 1, 130, 1, 130, 1, 130, 5, 130, 2984, 8, 130, 10, 130, 12, 130, 2987, 9, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 2999, 8, 131, 3, 131, 3001, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 5, 131, 3009, 8, 131, 10, 131, 12, 131, 3012, 9, 131, 1, 132, 3, 132, 3015, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3023, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 5, 132, 3030, 8, 132, 10, 132, 12, 132, 3033, 9, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3038, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3046, 8, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3051, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 5, 132, 3061, 8, 132, 10, 132, 12, 132, 3064, 9, 132, 1, 132, 1, 132, 3, 132, 3068, 8, 132, 1, 132, 3, 132, 3071, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3077, 8, 132, 1, 132, 1, 132, 3, 132, 3081, 8, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3086, 8, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3091, 8, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3096, 8, 132, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 3102, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 5, 133, 3123, 8, 133, 10, 133, 12, 133, 3126, 9, 133, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 3136, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 3148, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 4, 135, 3158, 8, 135, 11, 135, 12, 135, 3159, 1, 135, 1, 135, 3, 135, 3164, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 4, 135, 3171, 8, 135, 11, 135, 12, 135, 3172, 1, 135, 1, 135, 3, 135, 3177, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 5, 135, 3193, 8, 135, 10, 135, 12, 135, 3196, 9, 135, 3, 135, 3198, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 3206, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 3215, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 3224, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 4, 135, 3245, 8, 135, 11, 135, 12, 135, 3246, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 3263, 8, 135, 1, 135, 1, 135, 1, 135, 5, 135, 3268, 8, 135, 10, 135, 12, 135, 3271, 9, 135, 3, 135, 3273, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 3282, 8, 135, 1, 135, 1, 135, 3, 135, 3286, 8, 135, 1, 135, 1, 135, 3, 135, 3290, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 4, 135, 3300, 8, 135, 11, 135, 12, 135, 3301, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 3327, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 3334, 8, 135, 1, 135, 3, 135, 3337, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 3352, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 3373, 8, 135, 1, 135, 1, 135, 3, 135, 3377, 8, 135, 3, 135, 3379, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 5, 135, 3389, 8, 135, 10, 135, 12, 135, 3392, 9, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 3401, 8, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 4, 137, 3414, 8, 137, 11, 137, 12, 137, 3415, 3, 137, 3418, 8, 137, 1, 138, 1, 138, 1, 139, 1, 139, 1, 140, 1, 140, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 3, 142, 3431, 8, 142, 1, 143, 1, 143, 3, 143, 3435, 8, 143, 1, 144, 1, 144, 1, 144, 4, 144, 3440, 8, 144, 11, 144, 12, 144, 3441, 1, 145, 1, 145, 1, 145, 3, 145, 3447, 8, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 147, 3, 147, 3455, 8, 147, 1, 147, 1, 147, 1, 147, 3, 147, 3460, 8, 147, 1, 148, 1, 148, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 3, 150, 3469, 8, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3501, 8, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 5, 152, 3520, 8, 152, 10, 152, 12, 152, 3523, 9, 152, 3, 152, 3525, 8, 152, 1, 152, 1, 152, 3, 152, 3529, 8, 152, 1, 152, 1, 152, 1, 152, 1, 152, 3, 152, 3535, 8, 152, 1, 152, 1, 152, 1, 152, 1, 152, 3, 152, 3541, 8, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 5, 152, 3548, 8, 152, 10, 152, 12, 152, 3551, 9, 152, 1, 152, 3, 152, 3554, 8, 152, 3, 152, 3556, 8, 152, 1, 153, 1, 153, 1, 153, 5, 153, 3561, 8, 153, 10, 153, 12, 153, 3564, 9, 153, 1, 154, 1, 154, 1, 154, 5, 154, 3569, 8, 154, 10, 154, 12, 154, 3572, 9, 154, 1, 155, 1, 155, 1, 155, 5, 155, 3577, 8, 155, 10, 155, 12, 155, 3580, 9, 155, 1, 156, 1, 156, 1, 156, 5, 156, 3585, 8, 156, 10, 156, 12, 156, 3588, 9, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 3597, 8, 157, 1, 158, 1, 158, 1, 158, 1, 159, 1, 159, 1, 159, 5, 159, 3605, 8, 159, 10, 159, 12, 159, 3608, 9, 159, 1, 160, 1, 160, 1, 160, 1, 160, 3, 160, 3614, 8, 160, 1, 160, 1, 160, 3, 160, 3618, 8, 160, 1, 161, 1, 161, 1, 161, 5, 161, 3623, 8, 161, 10, 161, 12, 161, 3626, 9, 161, 1, 162, 1, 162, 1, 162, 5, 162, 3631, 8, 162, 10, 162, 12, 162, 3634, 9, 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, 3, 163, 3649, 8, 163, 1, 164, 1, 164, 3, 164, 3653, 8, 164, 1, 164, 1, 164, 1, 164, 3, 164, 3658, 8, 164, 1, 164, 1, 164, 3, 164, 3662, 8, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 5, 166, 3678, 8, 166, 10, 166, 12, 166, 3681, 9, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 5, 168, 3698, 8, 168, 10, 168, 12, 168, 3701, 9, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 5, 168, 3708, 8, 168, 10, 168, 12, 168, 3711, 9, 168, 3, 168, 3713, 8, 168, 1, 168, 1, 168, 1, 168, 3, 168, 3718, 8, 168, 3, 168, 3720, 8, 168, 1, 168, 3, 168, 3723, 8, 168, 1, 168, 3, 168, 3726, 8, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 3, 169, 3736, 8, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 3745, 8, 170, 1, 171, 1, 171, 1, 171, 5, 171, 3750, 8, 171, 10, 171, 12, 171, 3753, 9, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 3764, 8, 172, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 5, 174, 3771, 8, 174, 10, 174, 12, 174, 3774, 9, 174, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 4, 176, 3781, 8, 176, 11, 176, 12, 176, 3782, 1, 176, 3, 176, 3786, 8, 176, 1, 177, 1, 177, 3, 177, 3790, 8, 177, 1, 178, 1, 178, 1, 178, 1, 178, 3, 178, 3796, 8, 178, 1, 179, 1, 179, 1, 180, 3, 180, 3801, 8, 180, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 3818, 8, 181, 1, 182, 1, 182, 1, 183, 1, 183, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 9, 1138, 1208, 1216, 1236, 1263, 1272, 1281, 1290, 1338, 4, 100, 262, 266, 270, 186, 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, 0, 76, 2, 0, 78, 78, 229, 229, 2, 0, 34, 34, 247, 247, 3, 0, 73, 73, 191, 191, 262, 262, 2, 0, 123, 123, 140, 140, 2, 0, 11, 11, 39, 39, 2, 0, 91, 91, 98, 98, 5, 0, 46, 46, 58, 58, 108, 108, 122, 122, 173, 173, 3, 0, 10, 10, 290, 290, 331, 331, 1, 0, 86, 87, 2, 0, 108, 108, 122, 122, 3, 0, 8, 8, 96, 96, 289, 289, 2, 0, 8, 8, 167, 167, 1, 0, 335, 336, 2, 0, 59, 59, 96, 96, 2, 0, 129, 129, 249, 249, 6, 0, 54, 54, 129, 129, 143, 143, 172, 172, 228, 228, 313, 313, 3, 0, 11, 11, 59, 59, 96, 96, 4, 0, 107, 107, 139, 139, 171, 171, 326, 326, 2, 0, 171, 171, 326, 326, 3, 0, 45, 45, 275, 275, 279, 279, 2, 0, 45, 45, 275, 275, 3, 0, 18, 18, 103, 103, 320, 320, 3, 0, 72, 72, 190, 190, 261, 261, 4, 0, 102, 102, 148, 148, 270, 270, 323, 323, 3, 0, 102, 102, 270, 270, 323, 323, 2, 0, 21, 21, 86, 86, 2, 0, 116, 116, 157, 157, 2, 0, 292, 292, 337, 337, 2, 0, 291, 291, 303, 303, 2, 0, 61, 61, 256, 256, 2, 0, 104, 104, 141, 141, 2, 0, 10, 10, 92, 92, 2, 0, 15, 15, 264, 264, 2, 0, 124, 124, 250, 250, 2, 0, 382, 382, 384, 384, 2, 0, 93, 93, 217, 217, 2, 0, 209, 209, 278, 278, 2, 0, 197, 197, 360, 360, 1, 0, 251, 252, 1, 0, 163, 164, 3, 0, 10, 10, 16, 16, 277, 277, 3, 0, 111, 111, 316, 316, 325, 325, 2, 0, 361, 362, 366, 366, 2, 0, 94, 94, 363, 365, 2, 0, 361, 362, 369, 369, 11, 0, 67, 67, 69, 69, 134, 134, 180, 180, 182, 182, 184, 184, 186, 186, 231, 231, 259, 259, 341, 341, 348, 348, 4, 0, 63, 63, 65, 66, 268, 268, 331, 331, 2, 0, 74, 75, 306, 306, 3, 0, 76, 77, 302, 302, 307, 307, 2, 0, 36, 36, 318, 318, 2, 0, 138, 138, 246, 246, 1, 0, 287, 288, 2, 0, 4, 4, 123, 123, 2, 0, 4, 4, 119, 119, 3, 0, 28, 28, 160, 160, 311, 311, 1, 0, 220, 221, 1, 0, 352, 359, 2, 0, 94, 94, 361, 370, 4, 0, 14, 14, 140, 140, 197, 197, 208, 208, 2, 0, 111, 111, 316, 316, 1, 0, 361, 362, 7, 0, 67, 68, 134, 135, 180, 187, 192, 193, 259, 260, 341, 342, 348, 349, 6, 0, 67, 67, 134, 134, 184, 184, 186, 186, 259, 259, 348, 348, 2, 0, 186, 186, 348, 348, 4, 0, 67, 67, 134, 134, 184, 184, 259, 259, 3, 0, 134, 134, 184, 184, 259, 259, 2, 0, 82, 82, 352, 352, 2, 0, 233, 233, 258, 258, 2, 0, 118, 118, 226, 226, 2, 0, 378, 378, 389, 389, 1, 0, 379, 387, 2, 0, 96, 96, 269, 269, 1, 0, 377, 378, 52, 0, 8, 9, 11, 13, 15, 15, 17, 19, 21, 22, 24, 27, 29, 34, 37, 41, 43, 46, 48, 48, 50, 56, 58, 58, 61, 62, 67, 91, 93, 96, 98, 98, 101, 101, 103, 110, 113, 113, 115, 118, 121, 122, 125, 128, 131, 131, 133, 139, 141, 143, 145, 147, 149, 151, 154, 154, 156, 157, 159, 159, 163, 193, 195, 195, 199, 201, 205, 207, 210, 210, 212, 213, 215, 219, 222, 226, 228, 238, 240, 249, 251, 262, 264, 267, 269, 276, 278, 292, 294, 299, 302, 308, 310, 310, 312, 322, 326, 330, 333, 342, 345, 345, 348, 351, 16, 0, 15, 15, 60, 60, 102, 102, 124, 124, 144, 144, 148, 148, 155, 155, 158, 158, 161, 161, 194, 194, 203, 203, 250, 250, 264, 264, 270, 270, 323, 323, 332, 332, 19, 0, 8, 14, 16, 59, 61, 101, 103, 122, 125, 143, 145, 147, 149, 154, 156, 157, 159, 160, 162, 193, 195, 195, 197, 202, 204, 249, 251, 262, 265, 269, 271, 292, 294, 322, 324, 331, 333, 351, 4416, 0, 375, 1, 0, 0, 0, 2, 380, 1, 0, 0, 0, 4, 1341, 1, 0, 0, 0, 6, 1436, 1, 0, 0, 0, 8, 1438, 1, 0, 0, 0, 10, 1450, 1, 0, 0, 0, 12, 1463, 1, 0, 0, 0, 14, 1466, 1, 0, 0, 0, 16, 1470, 1, 0, 0, 0, 18, 1551, 1, 0, 0, 0, 20, 1553, 1, 0, 0, 0, 22, 1558, 1, 0, 0, 0, 24, 1579, 1, 0, 0, 0, 26, 1581, 1, 0, 0, 0, 28, 1588, 1, 0, 0, 0, 30, 1590, 1, 0, 0, 0, 32, 1598, 1, 0, 0, 0, 34, 1607, 1, 0, 0, 0, 36, 1618, 1, 0, 0, 0, 38, 1639, 1, 0, 0, 0, 40, 1642, 1, 0, 0, 0, 42, 1645, 1, 0, 0, 0, 44, 1656, 1, 0, 0, 0, 46, 1672, 1, 0, 0, 0, 48, 1678, 1, 0, 0, 0, 50, 1680, 1, 0, 0, 0, 52, 1691, 1, 0, 0, 0, 54, 1698, 1, 0, 0, 0, 56, 1709, 1, 0, 0, 0, 58, 1726, 1, 0, 0, 0, 60, 1734, 1, 0, 0, 0, 62, 1736, 1, 0, 0, 0, 64, 1800, 1, 0, 0, 0, 66, 1802, 1, 0, 0, 0, 68, 1804, 1, 0, 0, 0, 70, 1806, 1, 0, 0, 0, 72, 1808, 1, 0, 0, 0, 74, 1810, 1, 0, 0, 0, 76, 1812, 1, 0, 0, 0, 78, 1814, 1, 0, 0, 0, 80, 1819, 1, 0, 0, 0, 82, 1821, 1, 0, 0, 0, 84, 1826, 1, 0, 0, 0, 86, 1828, 1, 0, 0, 0, 88, 1836, 1, 0, 0, 0, 90, 1844, 1, 0, 0, 0, 92, 1849, 1, 0, 0, 0, 94, 1876, 1, 0, 0, 0, 96, 1881, 1, 0, 0, 0, 98, 1889, 1, 0, 0, 0, 100, 1897, 1, 0, 0, 0, 102, 1947, 1, 0, 0, 0, 104, 1951, 1, 0, 0, 0, 106, 1987, 1, 0, 0, 0, 108, 2033, 1, 0, 0, 0, 110, 2054, 1, 0, 0, 0, 112, 2086, 1, 0, 0, 0, 114, 2098, 1, 0, 0, 0, 116, 2101, 1, 0, 0, 0, 118, 2117, 1, 0, 0, 0, 120, 2131, 1, 0, 0, 0, 122, 2165, 1, 0, 0, 0, 124, 2167, 1, 0, 0, 0, 126, 2175, 1, 0, 0, 0, 128, 2179, 1, 0, 0, 0, 130, 2182, 1, 0, 0, 0, 132, 2185, 1, 0, 0, 0, 134, 2211, 1, 0, 0, 0, 136, 2213, 1, 0, 0, 0, 138, 2251, 1, 0, 0, 0, 140, 2292, 1, 0, 0, 0, 142, 2297, 1, 0, 0, 0, 144, 2330, 1, 0, 0, 0, 146, 2352, 1, 0, 0, 0, 148, 2354, 1, 0, 0, 0, 150, 2384, 1, 0, 0, 0, 152, 2386, 1, 0, 0, 0, 154, 2393, 1, 0, 0, 0, 156, 2410, 1, 0, 0, 0, 158, 2425, 1, 0, 0, 0, 160, 2449, 1, 0, 0, 0, 162, 2465, 1, 0, 0, 0, 164, 2472, 1, 0, 0, 0, 166, 2476, 1, 0, 0, 0, 168, 2479, 1, 0, 0, 0, 170, 2511, 1, 0, 0, 0, 172, 2526, 1, 0, 0, 0, 174, 2545, 1, 0, 0, 0, 176, 2563, 1, 0, 0, 0, 178, 2576, 1, 0, 0, 0, 180, 2578, 1, 0, 0, 0, 182, 2614, 1, 0, 0, 0, 184, 2616, 1, 0, 0, 0, 186, 2620, 1, 0, 0, 0, 188, 2628, 1, 0, 0, 0, 190, 2639, 1, 0, 0, 0, 192, 2643, 1, 0, 0, 0, 194, 2654, 1, 0, 0, 0, 196, 2690, 1, 0, 0, 0, 198, 2692, 1, 0, 0, 0, 200, 2696, 1, 0, 0, 0, 202, 2724, 1, 0, 0, 0, 204, 2745, 1, 0, 0, 0, 206, 2758, 1, 0, 0, 0, 208, 2764, 1, 0, 0, 0, 210, 2768, 1, 0, 0, 0, 212, 2770, 1, 0, 0, 0, 214, 2773, 1, 0, 0, 0, 216, 2794, 1, 0, 0, 0, 218, 2845, 1, 0, 0, 0, 220, 2847, 1, 0, 0, 0, 222, 2855, 1, 0, 0, 0, 224, 2869, 1, 0, 0, 0, 226, 2871, 1, 0, 0, 0, 228, 2879, 1, 0, 0, 0, 230, 2887, 1, 0, 0, 0, 232, 2894, 1, 0, 0, 0, 234, 2898, 1, 0, 0, 0, 236, 2900, 1, 0, 0, 0, 238, 2907, 1, 0, 0, 0, 240, 2915, 1, 0, 0, 0, 242, 2926, 1, 0, 0, 0, 244, 2934, 1, 0, 0, 0, 246, 2936, 1, 0, 0, 0, 248, 2949, 1, 0, 0, 0, 250, 2964, 1, 0, 0, 0, 252, 2968, 1, 0, 0, 0, 254, 2970, 1, 0, 0, 0, 256, 2972, 1, 0, 0, 0, 258, 2978, 1, 0, 0, 0, 260, 2980, 1, 0, 0, 0, 262, 3000, 1, 0, 0, 0, 264, 3095, 1, 0, 0, 0, 266, 3101, 1, 0, 0, 0, 268, 3127, 1, 0, 0, 0, 270, 3378, 1, 0, 0, 0, 272, 3400, 1, 0, 0, 0, 274, 3417, 1, 0, 0, 0, 276, 3419, 1, 0, 0, 0, 278, 3421, 1, 0, 0, 0, 280, 3423, 1, 0, 0, 0, 282, 3425, 1, 0, 0, 0, 284, 3427, 1, 0, 0, 0, 286, 3432, 1, 0, 0, 0, 288, 3439, 1, 0, 0, 0, 290, 3443, 1, 0, 0, 0, 292, 3448, 1, 0, 0, 0, 294, 3454, 1, 0, 0, 0, 296, 3461, 1, 0, 0, 0, 298, 3463, 1, 0, 0, 0, 300, 3468, 1, 0, 0, 0, 302, 3500, 1, 0, 0, 0, 304, 3555, 1, 0, 0, 0, 306, 3557, 1, 0, 0, 0, 308, 3565, 1, 0, 0, 0, 310, 3573, 1, 0, 0, 0, 312, 3581, 1, 0, 0, 0, 314, 3596, 1, 0, 0, 0, 316, 3598, 1, 0, 0, 0, 318, 3601, 1, 0, 0, 0, 320, 3609, 1, 0, 0, 0, 322, 3619, 1, 0, 0, 0, 324, 3627, 1, 0, 0, 0, 326, 3648, 1, 0, 0, 0, 328, 3650, 1, 0, 0, 0, 330, 3663, 1, 0, 0, 0, 332, 3668, 1, 0, 0, 0, 334, 3682, 1, 0, 0, 0, 336, 3725, 1, 0, 0, 0, 338, 3735, 1, 0, 0, 0, 340, 3744, 1, 0, 0, 0, 342, 3746, 1, 0, 0, 0, 344, 3763, 1, 0, 0, 0, 346, 3765, 1, 0, 0, 0, 348, 3767, 1, 0, 0, 0, 350, 3775, 1, 0, 0, 0, 352, 3785, 1, 0, 0, 0, 354, 3789, 1, 0, 0, 0, 356, 3795, 1, 0, 0, 0, 358, 3797, 1, 0, 0, 0, 360, 3800, 1, 0, 0, 0, 362, 3817, 1, 0, 0, 0, 364, 3819, 1, 0, 0, 0, 366, 3821, 1, 0, 0, 0, 368, 3823, 1, 0, 0, 0, 370, 3825, 1, 0, 0, 0, 372, 374, 3, 2, 1, 0, 373, 372, 1, 0, 0, 0, 374, 377, 1, 0, 0, 0, 375, 373, 1, 0, 0, 0, 375, 376, 1, 0, 0, 0, 376, 378, 1, 0, 0, 0, 377, 375, 1, 0, 0, 0, 378, 379, 5, 0, 0, 1, 379, 1, 1, 0, 0, 0, 380, 382, 3, 4, 2, 0, 381, 383, 5, 1, 0, 0, 382, 381, 1, 0, 0, 0, 382, 383, 1, 0, 0, 0, 383, 3, 1, 0, 0, 0, 384, 1342, 3, 16, 8, 0, 385, 387, 3, 32, 16, 0, 386, 385, 1, 0, 0, 0, 386, 387, 1, 0, 0, 0, 387, 388, 1, 0, 0, 0, 388, 1342, 3, 64, 32, 0, 389, 391, 5, 330, 0, 0, 390, 392, 3, 26, 13, 0, 391, 390, 1, 0, 0, 0, 391, 392, 1, 0, 0, 0, 392, 393, 1, 0, 0, 0, 393, 1342, 3, 66, 33, 0, 394, 395, 5, 269, 0, 0, 395, 398, 5, 37, 0, 0, 396, 399, 3, 354, 177, 0, 397, 399, 3, 364, 182, 0, 398, 396, 1, 0, 0, 0, 398, 397, 1, 0, 0, 0, 399, 1342, 1, 0, 0, 0, 400, 401, 5, 59, 0, 0, 401, 403, 3, 26, 13, 0, 402, 404, 3, 164, 82, 0, 403, 402, 1, 0, 0, 0, 403, 404, 1, 0, 0, 0, 404, 405, 1, 0, 0, 0, 405, 415, 3, 68, 34, 0, 406, 407, 5, 51, 0, 0, 407, 414, 3, 364, 182, 0, 408, 409, 5, 170, 0, 0, 409, 414, 3, 364, 182, 0, 410, 411, 5, 346, 0, 0, 411, 412, 7, 0, 0, 0, 412, 414, 3, 42, 21, 0, 413, 406, 1, 0, 0, 0, 413, 408, 1, 0, 0, 0, 413, 410, 1, 0, 0, 0, 414, 417, 1, 0, 0, 0, 415, 413, 1, 0, 0, 0, 415, 416, 1, 0, 0, 0, 416, 1342, 1, 0, 0, 0, 417, 415, 1, 0, 0, 0, 418, 419, 5, 11, 0, 0, 419, 420, 3, 26, 13, 0, 420, 421, 3, 66, 33, 0, 421, 422, 5, 269, 0, 0, 422, 423, 7, 0, 0, 0, 423, 424, 3, 42, 21, 0, 424, 1342, 1, 0, 0, 0, 425, 426, 5, 11, 0, 0, 426, 427, 3, 26, 13, 0, 427, 428, 3, 66, 33, 0, 428, 429, 5, 269, 0, 0, 429, 430, 5, 170, 0, 0, 430, 431, 3, 364, 182, 0, 431, 1342, 1, 0, 0, 0, 432, 433, 5, 96, 0, 0, 433, 435, 3, 26, 13, 0, 434, 436, 3, 166, 83, 0, 435, 434, 1, 0, 0, 0, 435, 436, 1, 0, 0, 0, 436, 437, 1, 0, 0, 0, 437, 439, 3, 66, 33, 0, 438, 440, 7, 1, 0, 0, 439, 438, 1, 0, 0, 0, 439, 440, 1, 0, 0, 0, 440, 1342, 1, 0, 0, 0, 441, 442, 5, 273, 0, 0, 442, 445, 7, 2, 0, 0, 443, 444, 7, 3, 0, 0, 444, 446, 3, 222, 111, 0, 445, 443, 1, 0, 0, 0, 445, 446, 1, 0, 0, 0, 446, 451, 1, 0, 0, 0, 447, 449, 5, 163, 0, 0, 448, 447, 1, 0, 0, 0, 448, 449, 1, 0, 0, 0, 449, 450, 1, 0, 0, 0, 450, 452, 3, 364, 182, 0, 451, 448, 1, 0, 0, 0, 451, 452, 1, 0, 0, 0, 452, 1342, 1, 0, 0, 0, 453, 455, 5, 59, 0, 0, 454, 456, 5, 298, 0, 0, 455, 454, 1, 0, 0, 0, 455, 456, 1, 0, 0, 0, 456, 458, 1, 0, 0, 0, 457, 459, 5, 109, 0, 0, 458, 457, 1, 0, 0, 0, 458, 459, 1, 0, 0, 0, 459, 460, 1, 0, 0, 0, 460, 462, 5, 293, 0, 0, 461, 463, 3, 164, 82, 0, 462, 461, 1, 0, 0, 0, 462, 463, 1, 0, 0, 0, 463, 464, 1, 0, 0, 0, 464, 469, 3, 70, 35, 0, 465, 466, 5, 2, 0, 0, 466, 467, 3, 322, 161, 0, 467, 468, 5, 3, 0, 0, 468, 470, 1, 0, 0, 0, 469, 465, 1, 0, 0, 0, 469, 470, 1, 0, 0, 0, 470, 472, 1, 0, 0, 0, 471, 473, 3, 36, 18, 0, 472, 471, 1, 0, 0, 0, 472, 473, 1, 0, 0, 0, 473, 474, 1, 0, 0, 0, 474, 479, 3, 38, 19, 0, 475, 477, 5, 20, 0, 0, 476, 475, 1, 0, 0, 0, 476, 477, 1, 0, 0, 0, 477, 478, 1, 0, 0, 0, 478, 480, 3, 16, 8, 0, 479, 476, 1, 0, 0, 0, 479, 480, 1, 0, 0, 0, 480, 1342, 1, 0, 0, 0, 481, 482, 5, 59, 0, 0, 482, 484, 5, 293, 0, 0, 483, 485, 3, 164, 82, 0, 484, 483, 1, 0, 0, 0, 484, 485, 1, 0, 0, 0, 485, 486, 1, 0, 0, 0, 486, 487, 3, 70, 35, 0, 487, 488, 5, 163, 0, 0, 488, 499, 3, 72, 36, 0, 489, 498, 3, 36, 18, 0, 490, 498, 3, 218, 109, 0, 491, 498, 3, 58, 29, 0, 492, 493, 5, 170, 0, 0, 493, 498, 3, 364, 182, 0, 494, 495, 5, 297, 0, 0, 495, 498, 3, 42, 21, 0, 496, 498, 3, 40, 20, 0, 497, 489, 1, 0, 0, 0, 497, 490, 1, 0, 0, 0, 497, 491, 1, 0, 0, 0, 497, 492, 1, 0, 0, 0, 497, 494, 1, 0, 0, 0, 497, 496, 1, 0, 0, 0, 498, 501, 1, 0, 0, 0, 499, 497, 1, 0, 0, 0, 499, 500, 1, 0, 0, 0, 500, 1342, 1, 0, 0, 0, 501, 499, 1, 0, 0, 0, 502, 503, 5, 59, 0, 0, 503, 505, 5, 208, 0, 0, 504, 502, 1, 0, 0, 0, 504, 505, 1, 0, 0, 0, 505, 506, 1, 0, 0, 0, 506, 507, 5, 244, 0, 0, 507, 508, 5, 293, 0, 0, 508, 513, 3, 70, 35, 0, 509, 510, 5, 2, 0, 0, 510, 511, 3, 322, 161, 0, 511, 512, 5, 3, 0, 0, 512, 514, 1, 0, 0, 0, 513, 509, 1, 0, 0, 0, 513, 514, 1, 0, 0, 0, 514, 516, 1, 0, 0, 0, 515, 517, 3, 36, 18, 0, 516, 515, 1, 0, 0, 0, 516, 517, 1, 0, 0, 0, 517, 518, 1, 0, 0, 0, 518, 523, 3, 38, 19, 0, 519, 521, 5, 20, 0, 0, 520, 519, 1, 0, 0, 0, 520, 521, 1, 0, 0, 0, 521, 522, 1, 0, 0, 0, 522, 524, 3, 16, 8, 0, 523, 520, 1, 0, 0, 0, 523, 524, 1, 0, 0, 0, 524, 1342, 1, 0, 0, 0, 525, 526, 5, 13, 0, 0, 526, 527, 5, 293, 0, 0, 527, 529, 3, 72, 36, 0, 528, 530, 3, 22, 11, 0, 529, 528, 1, 0, 0, 0, 529, 530, 1, 0, 0, 0, 530, 531, 1, 0, 0, 0, 531, 532, 5, 55, 0, 0, 532, 540, 5, 282, 0, 0, 533, 541, 5, 196, 0, 0, 534, 535, 5, 119, 0, 0, 535, 536, 5, 50, 0, 0, 536, 541, 3, 86, 43, 0, 537, 538, 5, 119, 0, 0, 538, 539, 5, 10, 0, 0, 539, 541, 5, 50, 0, 0, 540, 533, 1, 0, 0, 0, 540, 534, 1, 0, 0, 0, 540, 537, 1, 0, 0, 0, 540, 541, 1, 0, 0, 0, 541, 1342, 1, 0, 0, 0, 542, 543, 5, 13, 0, 0, 543, 546, 5, 294, 0, 0, 544, 545, 7, 3, 0, 0, 545, 547, 3, 66, 33, 0, 546, 544, 1, 0, 0, 0, 546, 547, 1, 0, 0, 0, 547, 548, 1, 0, 0, 0, 548, 549, 5, 55, 0, 0, 549, 551, 5, 282, 0, 0, 550, 552, 5, 196, 0, 0, 551, 550, 1, 0, 0, 0, 551, 552, 1, 0, 0, 0, 552, 1342, 1, 0, 0, 0, 553, 554, 5, 11, 0, 0, 554, 555, 5, 293, 0, 0, 555, 556, 3, 72, 36, 0, 556, 557, 5, 8, 0, 0, 557, 558, 5, 49, 0, 0, 558, 559, 3, 308, 154, 0, 559, 1342, 1, 0, 0, 0, 560, 561, 5, 11, 0, 0, 561, 562, 5, 293, 0, 0, 562, 563, 3, 72, 36, 0, 563, 564, 5, 8, 0, 0, 564, 565, 5, 50, 0, 0, 565, 566, 5, 2, 0, 0, 566, 567, 3, 306, 153, 0, 567, 568, 5, 3, 0, 0, 568, 1342, 1, 0, 0, 0, 569, 570, 5, 11, 0, 0, 570, 571, 5, 293, 0, 0, 571, 572, 3, 72, 36, 0, 572, 573, 5, 241, 0, 0, 573, 574, 5, 49, 0, 0, 574, 575, 3, 80, 40, 0, 575, 576, 5, 309, 0, 0, 576, 577, 3, 88, 44, 0, 577, 1342, 1, 0, 0, 0, 578, 579, 5, 11, 0, 0, 579, 580, 5, 293, 0, 0, 580, 581, 3, 72, 36, 0, 581, 582, 5, 96, 0, 0, 582, 584, 5, 49, 0, 0, 583, 585, 3, 166, 83, 0, 584, 583, 1, 0, 0, 0, 584, 585, 1, 0, 0, 0, 585, 586, 1, 0, 0, 0, 586, 587, 3, 80, 40, 0, 587, 1342, 1, 0, 0, 0, 588, 589, 5, 11, 0, 0, 589, 590, 5, 293, 0, 0, 590, 591, 3, 72, 36, 0, 591, 592, 5, 96, 0, 0, 592, 594, 5, 50, 0, 0, 593, 595, 3, 166, 83, 0, 594, 593, 1, 0, 0, 0, 594, 595, 1, 0, 0, 0, 595, 596, 1, 0, 0, 0, 596, 597, 5, 2, 0, 0, 597, 598, 3, 86, 43, 0, 598, 599, 5, 3, 0, 0, 599, 1342, 1, 0, 0, 0, 600, 605, 5, 11, 0, 0, 601, 602, 5, 293, 0, 0, 602, 606, 3, 72, 36, 0, 603, 604, 5, 338, 0, 0, 604, 606, 3, 76, 38, 0, 605, 601, 1, 0, 0, 0, 605, 603, 1, 0, 0, 0, 606, 607, 1, 0, 0, 0, 607, 608, 5, 241, 0, 0, 608, 609, 5, 309, 0, 0, 609, 610, 3, 222, 111, 0, 610, 1342, 1, 0, 0, 0, 611, 616, 5, 11, 0, 0, 612, 613, 5, 293, 0, 0, 613, 617, 3, 72, 36, 0, 614, 615, 5, 338, 0, 0, 615, 617, 3, 76, 38, 0, 616, 612, 1, 0, 0, 0, 616, 614, 1, 0, 0, 0, 617, 618, 1, 0, 0, 0, 618, 619, 5, 269, 0, 0, 619, 620, 5, 297, 0, 0, 620, 621, 3, 42, 21, 0, 621, 1342, 1, 0, 0, 0, 622, 627, 5, 11, 0, 0, 623, 624, 5, 293, 0, 0, 624, 628, 3, 72, 36, 0, 625, 626, 5, 338, 0, 0, 626, 628, 3, 76, 38, 0, 627, 623, 1, 0, 0, 0, 627, 625, 1, 0, 0, 0, 628, 629, 1, 0, 0, 0, 629, 630, 5, 328, 0, 0, 630, 632, 5, 297, 0, 0, 631, 633, 3, 166, 83, 0, 632, 631, 1, 0, 0, 0, 632, 633, 1, 0, 0, 0, 633, 634, 1, 0, 0, 0, 634, 635, 3, 42, 21, 0, 635, 1342, 1, 0, 0, 0, 636, 637, 5, 11, 0, 0, 637, 638, 5, 293, 0, 0, 638, 639, 3, 72, 36, 0, 639, 641, 7, 4, 0, 0, 640, 642, 5, 49, 0, 0, 641, 640, 1, 0, 0, 0, 641, 642, 1, 0, 0, 0, 642, 643, 1, 0, 0, 0, 643, 645, 3, 80, 40, 0, 644, 646, 3, 362, 181, 0, 645, 644, 1, 0, 0, 0, 645, 646, 1, 0, 0, 0, 646, 1342, 1, 0, 0, 0, 647, 648, 5, 11, 0, 0, 648, 649, 5, 293, 0, 0, 649, 651, 3, 72, 36, 0, 650, 652, 3, 22, 11, 0, 651, 650, 1, 0, 0, 0, 651, 652, 1, 0, 0, 0, 652, 653, 1, 0, 0, 0, 653, 655, 5, 39, 0, 0, 654, 656, 5, 49, 0, 0, 655, 654, 1, 0, 0, 0, 655, 656, 1, 0, 0, 0, 656, 657, 1, 0, 0, 0, 657, 658, 3, 80, 40, 0, 658, 660, 3, 320, 160, 0, 659, 661, 3, 300, 150, 0, 660, 659, 1, 0, 0, 0, 660, 661, 1, 0, 0, 0, 661, 1342, 1, 0, 0, 0, 662, 663, 5, 11, 0, 0, 663, 664, 5, 293, 0, 0, 664, 666, 3, 72, 36, 0, 665, 667, 3, 22, 11, 0, 666, 665, 1, 0, 0, 0, 666, 667, 1, 0, 0, 0, 667, 668, 1, 0, 0, 0, 668, 669, 5, 244, 0, 0, 669, 670, 5, 50, 0, 0, 670, 671, 5, 2, 0, 0, 671, 672, 3, 310, 155, 0, 672, 673, 5, 3, 0, 0, 673, 1342, 1, 0, 0, 0, 674, 675, 5, 11, 0, 0, 675, 676, 5, 293, 0, 0, 676, 678, 3, 72, 36, 0, 677, 679, 3, 22, 11, 0, 678, 677, 1, 0, 0, 0, 678, 679, 1, 0, 0, 0, 679, 680, 1, 0, 0, 0, 680, 681, 5, 269, 0, 0, 681, 682, 5, 266, 0, 0, 682, 686, 3, 364, 182, 0, 683, 684, 5, 346, 0, 0, 684, 685, 5, 267, 0, 0, 685, 687, 3, 42, 21, 0, 686, 683, 1, 0, 0, 0, 686, 687, 1, 0, 0, 0, 687, 1342, 1, 0, 0, 0, 688, 689, 5, 11, 0, 0, 689, 690, 5, 293, 0, 0, 690, 692, 3, 72, 36, 0, 691, 693, 3, 22, 11, 0, 692, 691, 1, 0, 0, 0, 692, 693, 1, 0, 0, 0, 693, 694, 1, 0, 0, 0, 694, 695, 5, 269, 0, 0, 695, 696, 5, 267, 0, 0, 696, 697, 3, 42, 21, 0, 697, 1342, 1, 0, 0, 0, 698, 703, 5, 11, 0, 0, 699, 700, 5, 293, 0, 0, 700, 704, 3, 72, 36, 0, 701, 702, 5, 338, 0, 0, 702, 704, 3, 76, 38, 0, 703, 699, 1, 0, 0, 0, 703, 701, 1, 0, 0, 0, 704, 705, 1, 0, 0, 0, 705, 707, 5, 8, 0, 0, 706, 708, 3, 164, 82, 0, 707, 706, 1, 0, 0, 0, 707, 708, 1, 0, 0, 0, 708, 710, 1, 0, 0, 0, 709, 711, 3, 20, 10, 0, 710, 709, 1, 0, 0, 0, 711, 712, 1, 0, 0, 0, 712, 710, 1, 0, 0, 0, 712, 713, 1, 0, 0, 0, 713, 1342, 1, 0, 0, 0, 714, 715, 5, 11, 0, 0, 715, 716, 5, 293, 0, 0, 716, 717, 3, 72, 36, 0, 717, 718, 3, 22, 11, 0, 718, 719, 5, 241, 0, 0, 719, 720, 5, 309, 0, 0, 720, 721, 3, 22, 11, 0, 721, 1342, 1, 0, 0, 0, 722, 727, 5, 11, 0, 0, 723, 724, 5, 293, 0, 0, 724, 728, 3, 72, 36, 0, 725, 726, 5, 338, 0, 0, 726, 728, 3, 76, 38, 0, 727, 723, 1, 0, 0, 0, 727, 725, 1, 0, 0, 0, 728, 729, 1, 0, 0, 0, 729, 731, 5, 96, 0, 0, 730, 732, 3, 166, 83, 0, 731, 730, 1, 0, 0, 0, 731, 732, 1, 0, 0, 0, 732, 733, 1, 0, 0, 0, 733, 738, 3, 22, 11, 0, 734, 735, 5, 4, 0, 0, 735, 737, 3, 22, 11, 0, 736, 734, 1, 0, 0, 0, 737, 740, 1, 0, 0, 0, 738, 736, 1, 0, 0, 0, 738, 739, 1, 0, 0, 0, 739, 742, 1, 0, 0, 0, 740, 738, 1, 0, 0, 0, 741, 743, 5, 230, 0, 0, 742, 741, 1, 0, 0, 0, 742, 743, 1, 0, 0, 0, 743, 1342, 1, 0, 0, 0, 744, 745, 5, 11, 0, 0, 745, 746, 5, 293, 0, 0, 746, 748, 3, 72, 36, 0, 747, 749, 3, 22, 11, 0, 748, 747, 1, 0, 0, 0, 748, 749, 1, 0, 0, 0, 749, 750, 1, 0, 0, 0, 750, 751, 5, 269, 0, 0, 751, 752, 5, 170, 0, 0, 752, 753, 3, 364, 182, 0, 753, 1342, 1, 0, 0, 0, 754, 755, 5, 11, 0, 0, 755, 756, 5, 293, 0, 0, 756, 757, 3, 72, 36, 0, 757, 758, 5, 237, 0, 0, 758, 759, 5, 219, 0, 0, 759, 1342, 1, 0, 0, 0, 760, 761, 5, 11, 0, 0, 761, 762, 5, 176, 0, 0, 762, 763, 5, 338, 0, 0, 763, 764, 3, 76, 38, 0, 764, 765, 7, 5, 0, 0, 765, 766, 5, 248, 0, 0, 766, 1342, 1, 0, 0, 0, 767, 768, 5, 11, 0, 0, 768, 769, 5, 176, 0, 0, 769, 770, 5, 338, 0, 0, 770, 771, 3, 76, 38, 0, 771, 772, 5, 269, 0, 0, 772, 773, 5, 297, 0, 0, 773, 774, 3, 42, 21, 0, 774, 1342, 1, 0, 0, 0, 775, 776, 5, 96, 0, 0, 776, 778, 5, 293, 0, 0, 777, 779, 3, 166, 83, 0, 778, 777, 1, 0, 0, 0, 778, 779, 1, 0, 0, 0, 779, 780, 1, 0, 0, 0, 780, 782, 3, 72, 36, 0, 781, 783, 5, 230, 0, 0, 782, 781, 1, 0, 0, 0, 782, 783, 1, 0, 0, 0, 783, 1342, 1, 0, 0, 0, 784, 785, 5, 96, 0, 0, 785, 787, 5, 338, 0, 0, 786, 788, 3, 166, 83, 0, 787, 786, 1, 0, 0, 0, 787, 788, 1, 0, 0, 0, 788, 789, 1, 0, 0, 0, 789, 1342, 3, 76, 38, 0, 790, 791, 5, 96, 0, 0, 791, 792, 5, 176, 0, 0, 792, 794, 5, 338, 0, 0, 793, 795, 3, 166, 83, 0, 794, 793, 1, 0, 0, 0, 794, 795, 1, 0, 0, 0, 795, 796, 1, 0, 0, 0, 796, 1342, 3, 76, 38, 0, 797, 800, 5, 59, 0, 0, 798, 799, 5, 208, 0, 0, 799, 801, 5, 244, 0, 0, 800, 798, 1, 0, 0, 0, 800, 801, 1, 0, 0, 0, 801, 806, 1, 0, 0, 0, 802, 804, 5, 128, 0, 0, 803, 802, 1, 0, 0, 0, 803, 804, 1, 0, 0, 0, 804, 805, 1, 0, 0, 0, 805, 807, 5, 298, 0, 0, 806, 803, 1, 0, 0, 0, 806, 807, 1, 0, 0, 0, 807, 808, 1, 0, 0, 0, 808, 810, 5, 338, 0, 0, 809, 811, 3, 164, 82, 0, 810, 809, 1, 0, 0, 0, 810, 811, 1, 0, 0, 0, 811, 812, 1, 0, 0, 0, 812, 814, 3, 74, 37, 0, 813, 815, 3, 192, 96, 0, 814, 813, 1, 0, 0, 0, 814, 815, 1, 0, 0, 0, 815, 825, 1, 0, 0, 0, 816, 817, 5, 51, 0, 0, 817, 824, 3, 364, 182, 0, 818, 819, 5, 218, 0, 0, 819, 820, 5, 203, 0, 0, 820, 824, 3, 184, 92, 0, 821, 822, 5, 297, 0, 0, 822, 824, 3, 42, 21, 0, 823, 816, 1, 0, 0, 0, 823, 818, 1, 0, 0, 0, 823, 821, 1, 0, 0, 0, 824, 827, 1, 0, 0, 0, 825, 823, 1, 0, 0, 0, 825, 826, 1, 0, 0, 0, 826, 828, 1, 0, 0, 0, 827, 825, 1, 0, 0, 0, 828, 829, 5, 20, 0, 0, 829, 830, 3, 16, 8, 0, 830, 1342, 1, 0, 0, 0, 831, 834, 5, 59, 0, 0, 832, 833, 5, 208, 0, 0, 833, 835, 5, 244, 0, 0, 834, 832, 1, 0, 0, 0, 834, 835, 1, 0, 0, 0, 835, 837, 1, 0, 0, 0, 836, 838, 5, 128, 0, 0, 837, 836, 1, 0, 0, 0, 837, 838, 1, 0, 0, 0, 838, 839, 1, 0, 0, 0, 839, 840, 5, 298, 0, 0, 840, 841, 5, 338, 0, 0, 841, 846, 3, 74, 37, 0, 842, 843, 5, 2, 0, 0, 843, 844, 3, 318, 159, 0, 844, 845, 5, 3, 0, 0, 845, 847, 1, 0, 0, 0, 846, 842, 1, 0, 0, 0, 846, 847, 1, 0, 0, 0, 847, 848, 1, 0, 0, 0, 848, 851, 3, 36, 18, 0, 849, 850, 5, 207, 0, 0, 850, 852, 3, 42, 21, 0, 851, 849, 1, 0, 0, 0, 851, 852, 1, 0, 0, 0, 852, 1342, 1, 0, 0, 0, 853, 854, 5, 11, 0, 0, 854, 855, 5, 338, 0, 0, 855, 857, 3, 76, 38, 0, 856, 858, 5, 20, 0, 0, 857, 856, 1, 0, 0, 0, 857, 858, 1, 0, 0, 0, 858, 859, 1, 0, 0, 0, 859, 860, 3, 16, 8, 0, 860, 1342, 1, 0, 0, 0, 861, 864, 5, 59, 0, 0, 862, 863, 5, 208, 0, 0, 863, 865, 5, 244, 0, 0, 864, 862, 1, 0, 0, 0, 864, 865, 1, 0, 0, 0, 865, 867, 1, 0, 0, 0, 866, 868, 5, 298, 0, 0, 867, 866, 1, 0, 0, 0, 867, 868, 1, 0, 0, 0, 868, 869, 1, 0, 0, 0, 869, 871, 5, 125, 0, 0, 870, 872, 3, 164, 82, 0, 871, 870, 1, 0, 0, 0, 871, 872, 1, 0, 0, 0, 872, 873, 1, 0, 0, 0, 873, 874, 3, 346, 173, 0, 874, 875, 5, 20, 0, 0, 875, 889, 3, 364, 182, 0, 876, 877, 5, 332, 0, 0, 877, 878, 3, 354, 177, 0, 878, 879, 3, 364, 182, 0, 879, 886, 1, 0, 0, 0, 880, 881, 5, 4, 0, 0, 881, 882, 3, 354, 177, 0, 882, 883, 3, 364, 182, 0, 883, 885, 1, 0, 0, 0, 884, 880, 1, 0, 0, 0, 885, 888, 1, 0, 0, 0, 886, 884, 1, 0, 0, 0, 886, 887, 1, 0, 0, 0, 887, 890, 1, 0, 0, 0, 888, 886, 1, 0, 0, 0, 889, 876, 1, 0, 0, 0, 889, 890, 1, 0, 0, 0, 890, 1342, 1, 0, 0, 0, 891, 892, 5, 59, 0, 0, 892, 893, 5, 176, 0, 0, 893, 895, 5, 338, 0, 0, 894, 896, 3, 164, 82, 0, 895, 894, 1, 0, 0, 0, 895, 896, 1, 0, 0, 0, 896, 897, 1, 0, 0, 0, 897, 899, 3, 74, 37, 0, 898, 900, 3, 36, 18, 0, 899, 898, 1, 0, 0, 0, 899, 900, 1, 0, 0, 0, 900, 918, 1, 0, 0, 0, 901, 902, 5, 207, 0, 0, 902, 917, 3, 42, 21, 0, 903, 904, 5, 218, 0, 0, 904, 905, 5, 31, 0, 0, 905, 917, 3, 246, 123, 0, 906, 917, 3, 10, 5, 0, 907, 917, 3, 8, 4, 0, 908, 917, 3, 218, 109, 0, 909, 917, 3, 58, 29, 0, 910, 911, 5, 170, 0, 0, 911, 917, 3, 364, 182, 0, 912, 913, 5, 51, 0, 0, 913, 917, 3, 364, 182, 0, 914, 915, 5, 297, 0, 0, 915, 917, 3, 42, 21, 0, 916, 901, 1, 0, 0, 0, 916, 903, 1, 0, 0, 0, 916, 906, 1, 0, 0, 0, 916, 907, 1, 0, 0, 0, 916, 908, 1, 0, 0, 0, 916, 909, 1, 0, 0, 0, 916, 910, 1, 0, 0, 0, 916, 912, 1, 0, 0, 0, 916, 914, 1, 0, 0, 0, 917, 920, 1, 0, 0, 0, 918, 916, 1, 0, 0, 0, 918, 919, 1, 0, 0, 0, 919, 921, 1, 0, 0, 0, 920, 918, 1, 0, 0, 0, 921, 922, 5, 20, 0, 0, 922, 923, 3, 16, 8, 0, 923, 1342, 1, 0, 0, 0, 924, 926, 5, 96, 0, 0, 925, 927, 5, 298, 0, 0, 926, 925, 1, 0, 0, 0, 926, 927, 1, 0, 0, 0, 927, 928, 1, 0, 0, 0, 928, 930, 5, 125, 0, 0, 929, 931, 3, 166, 83, 0, 930, 929, 1, 0, 0, 0, 930, 931, 1, 0, 0, 0, 931, 932, 1, 0, 0, 0, 932, 1342, 3, 344, 172, 0, 933, 936, 5, 81, 0, 0, 934, 935, 5, 208, 0, 0, 935, 937, 5, 244, 0, 0, 936, 934, 1, 0, 0, 0, 936, 937, 1, 0, 0, 0, 937, 939, 1, 0, 0, 0, 938, 940, 5, 336, 0, 0, 939, 938, 1, 0, 0, 0, 939, 940, 1, 0, 0, 0, 940, 941, 1, 0, 0, 0, 941, 943, 3, 344, 172, 0, 942, 944, 3, 304, 152, 0, 943, 942, 1, 0, 0, 0, 943, 944, 1, 0, 0, 0, 944, 946, 1, 0, 0, 0, 945, 947, 3, 316, 158, 0, 946, 945, 1, 0, 0, 0, 946, 947, 1, 0, 0, 0, 947, 1342, 1, 0, 0, 0, 948, 949, 5, 96, 0, 0, 949, 950, 5, 298, 0, 0, 950, 952, 5, 336, 0, 0, 951, 953, 3, 166, 83, 0, 952, 951, 1, 0, 0, 0, 952, 953, 1, 0, 0, 0, 953, 957, 1, 0, 0, 0, 954, 958, 3, 72, 36, 0, 955, 958, 3, 76, 38, 0, 956, 958, 3, 344, 172, 0, 957, 954, 1, 0, 0, 0, 957, 955, 1, 0, 0, 0, 957, 956, 1, 0, 0, 0, 958, 1342, 1, 0, 0, 0, 959, 961, 5, 106, 0, 0, 960, 962, 7, 6, 0, 0, 961, 960, 1, 0, 0, 0, 961, 962, 1, 0, 0, 0, 962, 963, 1, 0, 0, 0, 963, 1342, 3, 4, 2, 0, 964, 965, 5, 273, 0, 0, 965, 968, 5, 294, 0, 0, 966, 967, 7, 3, 0, 0, 967, 969, 3, 66, 33, 0, 968, 966, 1, 0, 0, 0, 968, 969, 1, 0, 0, 0, 969, 974, 1, 0, 0, 0, 970, 972, 5, 163, 0, 0, 971, 970, 1, 0, 0, 0, 971, 972, 1, 0, 0, 0, 972, 973, 1, 0, 0, 0, 973, 975, 3, 364, 182, 0, 974, 971, 1, 0, 0, 0, 974, 975, 1, 0, 0, 0, 975, 1342, 1, 0, 0, 0, 976, 977, 5, 273, 0, 0, 977, 978, 5, 293, 0, 0, 978, 981, 5, 108, 0, 0, 979, 980, 7, 3, 0, 0, 980, 982, 3, 66, 33, 0, 981, 979, 1, 0, 0, 0, 981, 982, 1, 0, 0, 0, 982, 983, 1, 0, 0, 0, 983, 984, 5, 163, 0, 0, 984, 986, 3, 364, 182, 0, 985, 987, 3, 22, 11, 0, 986, 985, 1, 0, 0, 0, 986, 987, 1, 0, 0, 0, 987, 1342, 1, 0, 0, 0, 988, 989, 5, 273, 0, 0, 989, 990, 5, 297, 0, 0, 990, 995, 3, 72, 36, 0, 991, 992, 5, 2, 0, 0, 992, 993, 3, 46, 23, 0, 993, 994, 5, 3, 0, 0, 994, 996, 1, 0, 0, 0, 995, 991, 1, 0, 0, 0, 995, 996, 1, 0, 0, 0, 996, 1342, 1, 0, 0, 0, 997, 998, 5, 273, 0, 0, 998, 999, 5, 50, 0, 0, 999, 1000, 7, 3, 0, 0, 1000, 1003, 3, 72, 36, 0, 1001, 1002, 7, 3, 0, 0, 1002, 1004, 3, 66, 33, 0, 1003, 1001, 1, 0, 0, 0, 1003, 1004, 1, 0, 0, 0, 1004, 1342, 1, 0, 0, 0, 1005, 1006, 5, 273, 0, 0, 1006, 1009, 5, 339, 0, 0, 1007, 1008, 7, 3, 0, 0, 1008, 1010, 3, 66, 33, 0, 1009, 1007, 1, 0, 0, 0, 1009, 1010, 1, 0, 0, 0, 1010, 1015, 1, 0, 0, 0, 1011, 1013, 5, 163, 0, 0, 1012, 1011, 1, 0, 0, 0, 1012, 1013, 1, 0, 0, 0, 1013, 1014, 1, 0, 0, 0, 1014, 1016, 3, 364, 182, 0, 1015, 1012, 1, 0, 0, 0, 1015, 1016, 1, 0, 0, 0, 1016, 1342, 1, 0, 0, 0, 1017, 1018, 5, 273, 0, 0, 1018, 1019, 5, 219, 0, 0, 1019, 1021, 3, 72, 36, 0, 1020, 1022, 3, 22, 11, 0, 1021, 1020, 1, 0, 0, 0, 1021, 1022, 1, 0, 0, 0, 1022, 1342, 1, 0, 0, 0, 1023, 1025, 5, 273, 0, 0, 1024, 1026, 7, 7, 0, 0, 1025, 1024, 1, 0, 0, 0, 1025, 1026, 1, 0, 0, 0, 1026, 1027, 1, 0, 0, 0, 1027, 1030, 5, 126, 0, 0, 1028, 1029, 7, 3, 0, 0, 1029, 1031, 3, 66, 33, 0, 1030, 1028, 1, 0, 0, 0, 1030, 1031, 1, 0, 0, 0, 1031, 1039, 1, 0, 0, 0, 1032, 1034, 5, 163, 0, 0, 1033, 1032, 1, 0, 0, 0, 1033, 1034, 1, 0, 0, 0, 1034, 1037, 1, 0, 0, 0, 1035, 1038, 3, 222, 111, 0, 1036, 1038, 3, 364, 182, 0, 1037, 1035, 1, 0, 0, 0, 1037, 1036, 1, 0, 0, 0, 1038, 1040, 1, 0, 0, 0, 1039, 1033, 1, 0, 0, 0, 1039, 1040, 1, 0, 0, 0, 1040, 1342, 1, 0, 0, 0, 1041, 1042, 5, 273, 0, 0, 1042, 1043, 5, 59, 0, 0, 1043, 1044, 5, 293, 0, 0, 1044, 1047, 3, 72, 36, 0, 1045, 1046, 5, 20, 0, 0, 1046, 1048, 5, 266, 0, 0, 1047, 1045, 1, 0, 0, 0, 1047, 1048, 1, 0, 0, 0, 1048, 1342, 1, 0, 0, 0, 1049, 1050, 5, 273, 0, 0, 1050, 1051, 5, 62, 0, 0, 1051, 1342, 3, 26, 13, 0, 1052, 1053, 5, 273, 0, 0, 1053, 1058, 5, 38, 0, 0, 1054, 1056, 5, 163, 0, 0, 1055, 1054, 1, 0, 0, 0, 1055, 1056, 1, 0, 0, 0, 1056, 1057, 1, 0, 0, 0, 1057, 1059, 3, 364, 182, 0, 1058, 1055, 1, 0, 0, 0, 1058, 1059, 1, 0, 0, 0, 1059, 1342, 1, 0, 0, 0, 1060, 1061, 5, 273, 0, 0, 1061, 1062, 5, 176, 0, 0, 1062, 1065, 5, 339, 0, 0, 1063, 1064, 7, 3, 0, 0, 1064, 1066, 3, 66, 33, 0, 1065, 1063, 1, 0, 0, 0, 1065, 1066, 1, 0, 0, 0, 1066, 1071, 1, 0, 0, 0, 1067, 1069, 5, 163, 0, 0, 1068, 1067, 1, 0, 0, 0, 1068, 1069, 1, 0, 0, 0, 1069, 1070, 1, 0, 0, 0, 1070, 1072, 3, 364, 182, 0, 1071, 1068, 1, 0, 0, 0, 1071, 1072, 1, 0, 0, 0, 1072, 1342, 1, 0, 0, 0, 1073, 1074, 5, 273, 0, 0, 1074, 1075, 5, 59, 0, 0, 1075, 1076, 5, 176, 0, 0, 1076, 1077, 5, 338, 0, 0, 1077, 1080, 3, 76, 38, 0, 1078, 1079, 5, 20, 0, 0, 1079, 1081, 5, 266, 0, 0, 1080, 1078, 1, 0, 0, 0, 1080, 1081, 1, 0, 0, 0, 1081, 1342, 1, 0, 0, 0, 1082, 1083, 7, 8, 0, 0, 1083, 1085, 5, 125, 0, 0, 1084, 1086, 5, 108, 0, 0, 1085, 1084, 1, 0, 0, 0, 1085, 1086, 1, 0, 0, 0, 1086, 1087, 1, 0, 0, 0, 1087, 1342, 3, 28, 14, 0, 1088, 1089, 7, 8, 0, 0, 1089, 1091, 5, 72, 0, 0, 1090, 1092, 5, 108, 0, 0, 1091, 1090, 1, 0, 0, 0, 1091, 1092, 1, 0, 0, 0, 1092, 1093, 1, 0, 0, 0, 1093, 1342, 3, 66, 33, 0, 1094, 1096, 7, 8, 0, 0, 1095, 1097, 5, 293, 0, 0, 1096, 1095, 1, 0, 0, 0, 1096, 1097, 1, 0, 0, 0, 1097, 1099, 1, 0, 0, 0, 1098, 1100, 7, 9, 0, 0, 1099, 1098, 1, 0, 0, 0, 1099, 1100, 1, 0, 0, 0, 1100, 1101, 1, 0, 0, 0, 1101, 1103, 3, 72, 36, 0, 1102, 1104, 3, 22, 11, 0, 1103, 1102, 1, 0, 0, 0, 1103, 1104, 1, 0, 0, 0, 1104, 1106, 1, 0, 0, 0, 1105, 1107, 3, 30, 15, 0, 1106, 1105, 1, 0, 0, 0, 1106, 1107, 1, 0, 0, 0, 1107, 1342, 1, 0, 0, 0, 1108, 1110, 7, 8, 0, 0, 1109, 1111, 5, 232, 0, 0, 1110, 1109, 1, 0, 0, 0, 1110, 1111, 1, 0, 0, 0, 1111, 1112, 1, 0, 0, 0, 1112, 1342, 3, 16, 8, 0, 1113, 1114, 5, 51, 0, 0, 1114, 1120, 5, 203, 0, 0, 1115, 1116, 3, 26, 13, 0, 1116, 1117, 3, 66, 33, 0, 1117, 1121, 1, 0, 0, 0, 1118, 1119, 5, 293, 0, 0, 1119, 1121, 3, 72, 36, 0, 1120, 1115, 1, 0, 0, 0, 1120, 1118, 1, 0, 0, 0, 1121, 1122, 1, 0, 0, 0, 1122, 1125, 5, 153, 0, 0, 1123, 1126, 3, 364, 182, 0, 1124, 1126, 5, 198, 0, 0, 1125, 1123, 1, 0, 0, 0, 1125, 1124, 1, 0, 0, 0, 1126, 1342, 1, 0, 0, 0, 1127, 1128, 5, 240, 0, 0, 1128, 1129, 5, 293, 0, 0, 1129, 1342, 3, 72, 36, 0, 1130, 1131, 5, 240, 0, 0, 1131, 1132, 5, 125, 0, 0, 1132, 1342, 3, 344, 172, 0, 1133, 1141, 5, 240, 0, 0, 1134, 1142, 3, 364, 182, 0, 1135, 1137, 9, 0, 0, 0, 1136, 1135, 1, 0, 0, 0, 1137, 1140, 1, 0, 0, 0, 1138, 1139, 1, 0, 0, 0, 1138, 1136, 1, 0, 0, 0, 1139, 1142, 1, 0, 0, 0, 1140, 1138, 1, 0, 0, 0, 1141, 1134, 1, 0, 0, 0, 1141, 1138, 1, 0, 0, 0, 1142, 1342, 1, 0, 0, 0, 1143, 1144, 5, 240, 0, 0, 1144, 1145, 5, 176, 0, 0, 1145, 1146, 5, 338, 0, 0, 1146, 1342, 3, 76, 38, 0, 1147, 1149, 5, 33, 0, 0, 1148, 1150, 5, 159, 0, 0, 1149, 1148, 1, 0, 0, 0, 1149, 1150, 1, 0, 0, 0, 1150, 1151, 1, 0, 0, 0, 1151, 1152, 5, 293, 0, 0, 1152, 1155, 3, 72, 36, 0, 1153, 1154, 5, 207, 0, 0, 1154, 1156, 3, 42, 21, 0, 1155, 1153, 1, 0, 0, 0, 1155, 1156, 1, 0, 0, 0, 1156, 1161, 1, 0, 0, 0, 1157, 1159, 5, 20, 0, 0, 1158, 1157, 1, 0, 0, 0, 1158, 1159, 1, 0, 0, 0, 1159, 1160, 1, 0, 0, 0, 1160, 1162, 3, 16, 8, 0, 1161, 1158, 1, 0, 0, 0, 1161, 1162, 1, 0, 0, 0, 1162, 1342, 1, 0, 0, 0, 1163, 1164, 5, 322, 0, 0, 1164, 1166, 5, 293, 0, 0, 1165, 1167, 3, 166, 83, 0, 1166, 1165, 1, 0, 0, 0, 1166, 1167, 1, 0, 0, 0, 1167, 1168, 1, 0, 0, 0, 1168, 1342, 3, 72, 36, 0, 1169, 1170, 5, 43, 0, 0, 1170, 1342, 5, 33, 0, 0, 1171, 1172, 5, 168, 0, 0, 1172, 1174, 5, 70, 0, 0, 1173, 1175, 5, 169, 0, 0, 1174, 1173, 1, 0, 0, 0, 1174, 1175, 1, 0, 0, 0, 1175, 1176, 1, 0, 0, 0, 1176, 1177, 5, 145, 0, 0, 1177, 1179, 3, 364, 182, 0, 1178, 1180, 5, 216, 0, 0, 1179, 1178, 1, 0, 0, 0, 1179, 1180, 1, 0, 0, 0, 1180, 1181, 1, 0, 0, 0, 1181, 1182, 5, 152, 0, 0, 1182, 1183, 5, 293, 0, 0, 1183, 1185, 3, 72, 36, 0, 1184, 1186, 3, 22, 11, 0, 1185, 1184, 1, 0, 0, 0, 1185, 1186, 1, 0, 0, 0, 1186, 1342, 1, 0, 0, 0, 1187, 1188, 5, 317, 0, 0, 1188, 1189, 5, 293, 0, 0, 1189, 1191, 3, 72, 36, 0, 1190, 1192, 3, 22, 11, 0, 1191, 1190, 1, 0, 0, 0, 1191, 1192, 1, 0, 0, 0, 1192, 1342, 1, 0, 0, 0, 1193, 1195, 5, 188, 0, 0, 1194, 1193, 1, 0, 0, 0, 1194, 1195, 1, 0, 0, 0, 1195, 1196, 1, 0, 0, 0, 1196, 1197, 5, 242, 0, 0, 1197, 1198, 5, 293, 0, 0, 1198, 1201, 3, 72, 36, 0, 1199, 1200, 7, 10, 0, 0, 1200, 1202, 5, 219, 0, 0, 1201, 1199, 1, 0, 0, 0, 1201, 1202, 1, 0, 0, 0, 1202, 1342, 1, 0, 0, 0, 1203, 1204, 7, 11, 0, 0, 1204, 1208, 3, 354, 177, 0, 1205, 1207, 9, 0, 0, 0, 1206, 1205, 1, 0, 0, 0, 1207, 1210, 1, 0, 0, 0, 1208, 1209, 1, 0, 0, 0, 1208, 1206, 1, 0, 0, 0, 1209, 1342, 1, 0, 0, 0, 1210, 1208, 1, 0, 0, 0, 1211, 1212, 5, 269, 0, 0, 1212, 1216, 5, 253, 0, 0, 1213, 1215, 9, 0, 0, 0, 1214, 1213, 1, 0, 0, 0, 1215, 1218, 1, 0, 0, 0, 1216, 1217, 1, 0, 0, 0, 1216, 1214, 1, 0, 0, 0, 1217, 1342, 1, 0, 0, 0, 1218, 1216, 1, 0, 0, 0, 1219, 1220, 5, 269, 0, 0, 1220, 1221, 5, 301, 0, 0, 1221, 1222, 5, 350, 0, 0, 1222, 1342, 3, 284, 142, 0, 1223, 1224, 5, 269, 0, 0, 1224, 1225, 5, 301, 0, 0, 1225, 1228, 5, 350, 0, 0, 1226, 1229, 3, 364, 182, 0, 1227, 1229, 5, 169, 0, 0, 1228, 1226, 1, 0, 0, 0, 1228, 1227, 1, 0, 0, 0, 1229, 1342, 1, 0, 0, 0, 1230, 1231, 5, 269, 0, 0, 1231, 1232, 5, 301, 0, 0, 1232, 1236, 5, 350, 0, 0, 1233, 1235, 9, 0, 0, 0, 1234, 1233, 1, 0, 0, 0, 1235, 1238, 1, 0, 0, 0, 1236, 1237, 1, 0, 0, 0, 1236, 1234, 1, 0, 0, 0, 1237, 1342, 1, 0, 0, 0, 1238, 1236, 1, 0, 0, 0, 1239, 1240, 5, 269, 0, 0, 1240, 1241, 7, 12, 0, 0, 1241, 1342, 3, 124, 62, 0, 1242, 1243, 5, 269, 0, 0, 1243, 1244, 7, 12, 0, 0, 1244, 1245, 5, 2, 0, 0, 1245, 1246, 3, 220, 110, 0, 1246, 1247, 5, 3, 0, 0, 1247, 1248, 5, 352, 0, 0, 1248, 1249, 5, 2, 0, 0, 1249, 1250, 3, 16, 8, 0, 1250, 1251, 5, 3, 0, 0, 1251, 1342, 1, 0, 0, 0, 1252, 1253, 5, 269, 0, 0, 1253, 1254, 3, 358, 179, 0, 1254, 1255, 5, 352, 0, 0, 1255, 1256, 5, 389, 0, 0, 1256, 1342, 1, 0, 0, 0, 1257, 1258, 5, 269, 0, 0, 1258, 1266, 3, 358, 179, 0, 1259, 1263, 5, 352, 0, 0, 1260, 1262, 9, 0, 0, 0, 1261, 1260, 1, 0, 0, 0, 1262, 1265, 1, 0, 0, 0, 1263, 1264, 1, 0, 0, 0, 1263, 1261, 1, 0, 0, 0, 1264, 1267, 1, 0, 0, 0, 1265, 1263, 1, 0, 0, 0, 1266, 1259, 1, 0, 0, 0, 1266, 1267, 1, 0, 0, 0, 1267, 1342, 1, 0, 0, 0, 1268, 1272, 5, 269, 0, 0, 1269, 1271, 9, 0, 0, 0, 1270, 1269, 1, 0, 0, 0, 1271, 1274, 1, 0, 0, 0, 1272, 1273, 1, 0, 0, 0, 1272, 1270, 1, 0, 0, 0, 1273, 1275, 1, 0, 0, 0, 1274, 1272, 1, 0, 0, 0, 1275, 1276, 5, 352, 0, 0, 1276, 1342, 5, 389, 0, 0, 1277, 1281, 5, 269, 0, 0, 1278, 1280, 9, 0, 0, 0, 1279, 1278, 1, 0, 0, 0, 1280, 1283, 1, 0, 0, 0, 1281, 1282, 1, 0, 0, 0, 1281, 1279, 1, 0, 0, 0, 1282, 1342, 1, 0, 0, 0, 1283, 1281, 1, 0, 0, 0, 1284, 1285, 5, 245, 0, 0, 1285, 1342, 3, 358, 179, 0, 1286, 1290, 5, 245, 0, 0, 1287, 1289, 9, 0, 0, 0, 1288, 1287, 1, 0, 0, 0, 1289, 1292, 1, 0, 0, 0, 1290, 1291, 1, 0, 0, 0, 1290, 1288, 1, 0, 0, 0, 1291, 1342, 1, 0, 0, 0, 1292, 1290, 1, 0, 0, 0, 1293, 1294, 5, 59, 0, 0, 1294, 1296, 5, 142, 0, 0, 1295, 1297, 3, 164, 82, 0, 1296, 1295, 1, 0, 0, 0, 1296, 1297, 1, 0, 0, 0, 1297, 1298, 1, 0, 0, 0, 1298, 1299, 3, 354, 177, 0, 1299, 1301, 5, 203, 0, 0, 1300, 1302, 5, 293, 0, 0, 1301, 1300, 1, 0, 0, 0, 1301, 1302, 1, 0, 0, 0, 1302, 1303, 1, 0, 0, 0, 1303, 1306, 3, 72, 36, 0, 1304, 1305, 5, 332, 0, 0, 1305, 1307, 3, 354, 177, 0, 1306, 1304, 1, 0, 0, 0, 1306, 1307, 1, 0, 0, 0, 1307, 1308, 1, 0, 0, 0, 1308, 1309, 5, 2, 0, 0, 1309, 1310, 3, 226, 113, 0, 1310, 1313, 5, 3, 0, 0, 1311, 1312, 5, 207, 0, 0, 1312, 1314, 3, 42, 21, 0, 1313, 1311, 1, 0, 0, 0, 1313, 1314, 1, 0, 0, 0, 1314, 1342, 1, 0, 0, 0, 1315, 1316, 5, 96, 0, 0, 1316, 1318, 5, 142, 0, 0, 1317, 1319, 3, 166, 83, 0, 1318, 1317, 1, 0, 0, 0, 1318, 1319, 1, 0, 0, 0, 1319, 1320, 1, 0, 0, 0, 1320, 1321, 3, 354, 177, 0, 1321, 1323, 5, 203, 0, 0, 1322, 1324, 5, 293, 0, 0, 1323, 1322, 1, 0, 0, 0, 1323, 1324, 1, 0, 0, 0, 1324, 1325, 1, 0, 0, 0, 1325, 1326, 3, 72, 36, 0, 1326, 1342, 1, 0, 0, 0, 1327, 1328, 5, 205, 0, 0, 1328, 1330, 3, 72, 36, 0, 1329, 1331, 3, 128, 64, 0, 1330, 1329, 1, 0, 0, 0, 1330, 1331, 1, 0, 0, 0, 1331, 1332, 1, 0, 0, 0, 1332, 1333, 3, 334, 167, 0, 1333, 1342, 1, 0, 0, 0, 1334, 1338, 3, 6, 3, 0, 1335, 1337, 9, 0, 0, 0, 1336, 1335, 1, 0, 0, 0, 1337, 1340, 1, 0, 0, 0, 1338, 1339, 1, 0, 0, 0, 1338, 1336, 1, 0, 0, 0, 1339, 1342, 1, 0, 0, 0, 1340, 1338, 1, 0, 0, 0, 1341, 384, 1, 0, 0, 0, 1341, 386, 1, 0, 0, 0, 1341, 389, 1, 0, 0, 0, 1341, 394, 1, 0, 0, 0, 1341, 400, 1, 0, 0, 0, 1341, 418, 1, 0, 0, 0, 1341, 425, 1, 0, 0, 0, 1341, 432, 1, 0, 0, 0, 1341, 441, 1, 0, 0, 0, 1341, 453, 1, 0, 0, 0, 1341, 481, 1, 0, 0, 0, 1341, 504, 1, 0, 0, 0, 1341, 525, 1, 0, 0, 0, 1341, 542, 1, 0, 0, 0, 1341, 553, 1, 0, 0, 0, 1341, 560, 1, 0, 0, 0, 1341, 569, 1, 0, 0, 0, 1341, 578, 1, 0, 0, 0, 1341, 588, 1, 0, 0, 0, 1341, 600, 1, 0, 0, 0, 1341, 611, 1, 0, 0, 0, 1341, 622, 1, 0, 0, 0, 1341, 636, 1, 0, 0, 0, 1341, 647, 1, 0, 0, 0, 1341, 662, 1, 0, 0, 0, 1341, 674, 1, 0, 0, 0, 1341, 688, 1, 0, 0, 0, 1341, 698, 1, 0, 0, 0, 1341, 714, 1, 0, 0, 0, 1341, 722, 1, 0, 0, 0, 1341, 744, 1, 0, 0, 0, 1341, 754, 1, 0, 0, 0, 1341, 760, 1, 0, 0, 0, 1341, 767, 1, 0, 0, 0, 1341, 775, 1, 0, 0, 0, 1341, 784, 1, 0, 0, 0, 1341, 790, 1, 0, 0, 0, 1341, 797, 1, 0, 0, 0, 1341, 831, 1, 0, 0, 0, 1341, 853, 1, 0, 0, 0, 1341, 861, 1, 0, 0, 0, 1341, 891, 1, 0, 0, 0, 1341, 924, 1, 0, 0, 0, 1341, 933, 1, 0, 0, 0, 1341, 948, 1, 0, 0, 0, 1341, 959, 1, 0, 0, 0, 1341, 964, 1, 0, 0, 0, 1341, 976, 1, 0, 0, 0, 1341, 988, 1, 0, 0, 0, 1341, 997, 1, 0, 0, 0, 1341, 1005, 1, 0, 0, 0, 1341, 1017, 1, 0, 0, 0, 1341, 1023, 1, 0, 0, 0, 1341, 1041, 1, 0, 0, 0, 1341, 1049, 1, 0, 0, 0, 1341, 1052, 1, 0, 0, 0, 1341, 1060, 1, 0, 0, 0, 1341, 1073, 1, 0, 0, 0, 1341, 1082, 1, 0, 0, 0, 1341, 1088, 1, 0, 0, 0, 1341, 1094, 1, 0, 0, 0, 1341, 1108, 1, 0, 0, 0, 1341, 1113, 1, 0, 0, 0, 1341, 1127, 1, 0, 0, 0, 1341, 1130, 1, 0, 0, 0, 1341, 1133, 1, 0, 0, 0, 1341, 1143, 1, 0, 0, 0, 1341, 1147, 1, 0, 0, 0, 1341, 1163, 1, 0, 0, 0, 1341, 1169, 1, 0, 0, 0, 1341, 1171, 1, 0, 0, 0, 1341, 1187, 1, 0, 0, 0, 1341, 1194, 1, 0, 0, 0, 1341, 1203, 1, 0, 0, 0, 1341, 1211, 1, 0, 0, 0, 1341, 1219, 1, 0, 0, 0, 1341, 1223, 1, 0, 0, 0, 1341, 1230, 1, 0, 0, 0, 1341, 1239, 1, 0, 0, 0, 1341, 1242, 1, 0, 0, 0, 1341, 1252, 1, 0, 0, 0, 1341, 1257, 1, 0, 0, 0, 1341, 1268, 1, 0, 0, 0, 1341, 1277, 1, 0, 0, 0, 1341, 1284, 1, 0, 0, 0, 1341, 1286, 1, 0, 0, 0, 1341, 1293, 1, 0, 0, 0, 1341, 1315, 1, 0, 0, 0, 1341, 1327, 1, 0, 0, 0, 1341, 1334, 1, 0, 0, 0, 1342, 5, 1, 0, 0, 0, 1343, 1344, 7, 13, 0, 0, 1344, 1437, 5, 253, 0, 0, 1345, 1347, 7, 14, 0, 0, 1346, 1348, 5, 253, 0, 0, 1347, 1346, 1, 0, 0, 0, 1347, 1348, 1, 0, 0, 0, 1348, 1437, 1, 0, 0, 0, 1349, 1350, 5, 273, 0, 0, 1350, 1437, 7, 15, 0, 0, 1351, 1352, 5, 273, 0, 0, 1352, 1354, 5, 253, 0, 0, 1353, 1355, 5, 129, 0, 0, 1354, 1353, 1, 0, 0, 0, 1354, 1355, 1, 0, 0, 0, 1355, 1437, 1, 0, 0, 0, 1356, 1358, 5, 273, 0, 0, 1357, 1359, 5, 62, 0, 0, 1358, 1357, 1, 0, 0, 0, 1358, 1359, 1, 0, 0, 0, 1359, 1360, 1, 0, 0, 0, 1360, 1437, 5, 254, 0, 0, 1361, 1362, 5, 273, 0, 0, 1362, 1363, 5, 59, 0, 0, 1363, 1437, 5, 293, 0, 0, 1364, 1365, 7, 16, 0, 0, 1365, 1437, 5, 142, 0, 0, 1366, 1367, 7, 17, 0, 0, 1367, 1437, 5, 293, 0, 0, 1368, 1369, 7, 18, 0, 0, 1369, 1437, 5, 72, 0, 0, 1370, 1371, 7, 13, 0, 0, 1371, 1372, 5, 298, 0, 0, 1372, 1437, 5, 175, 0, 0, 1373, 1374, 5, 11, 0, 0, 1374, 1375, 5, 293, 0, 0, 1375, 1376, 3, 72, 36, 0, 1376, 1377, 5, 197, 0, 0, 1377, 1378, 7, 19, 0, 0, 1378, 1437, 1, 0, 0, 0, 1379, 1380, 5, 11, 0, 0, 1380, 1381, 5, 293, 0, 0, 1381, 1382, 3, 72, 36, 0, 1382, 1383, 7, 20, 0, 0, 1383, 1384, 5, 31, 0, 0, 1384, 1437, 1, 0, 0, 0, 1385, 1386, 5, 11, 0, 0, 1386, 1387, 5, 293, 0, 0, 1387, 1388, 3, 72, 36, 0, 1388, 1389, 5, 275, 0, 0, 1389, 1390, 5, 31, 0, 0, 1390, 1437, 1, 0, 0, 0, 1391, 1392, 5, 11, 0, 0, 1392, 1393, 5, 293, 0, 0, 1393, 1394, 3, 72, 36, 0, 1394, 1395, 5, 197, 0, 0, 1395, 1396, 5, 283, 0, 0, 1396, 1397, 5, 20, 0, 0, 1397, 1398, 5, 89, 0, 0, 1398, 1437, 1, 0, 0, 0, 1399, 1400, 5, 11, 0, 0, 1400, 1401, 5, 293, 0, 0, 1401, 1402, 3, 72, 36, 0, 1402, 1403, 5, 269, 0, 0, 1403, 1404, 5, 275, 0, 0, 1404, 1405, 5, 170, 0, 0, 1405, 1437, 1, 0, 0, 0, 1406, 1407, 5, 11, 0, 0, 1407, 1408, 5, 293, 0, 0, 1408, 1409, 3, 72, 36, 0, 1409, 1410, 7, 21, 0, 0, 1410, 1411, 5, 217, 0, 0, 1411, 1437, 1, 0, 0, 0, 1412, 1413, 5, 11, 0, 0, 1413, 1414, 5, 293, 0, 0, 1414, 1415, 3, 72, 36, 0, 1415, 1416, 5, 310, 0, 0, 1416, 1437, 1, 0, 0, 0, 1417, 1418, 5, 11, 0, 0, 1418, 1419, 5, 293, 0, 0, 1419, 1421, 3, 72, 36, 0, 1420, 1422, 3, 22, 11, 0, 1421, 1420, 1, 0, 0, 0, 1421, 1422, 1, 0, 0, 0, 1422, 1429, 1, 0, 0, 0, 1423, 1430, 5, 53, 0, 0, 1424, 1430, 5, 56, 0, 0, 1425, 1426, 5, 269, 0, 0, 1426, 1430, 5, 115, 0, 0, 1427, 1428, 5, 244, 0, 0, 1428, 1430, 5, 50, 0, 0, 1429, 1423, 1, 0, 0, 0, 1429, 1424, 1, 0, 0, 0, 1429, 1425, 1, 0, 0, 0, 1429, 1427, 1, 0, 0, 0, 1430, 1437, 1, 0, 0, 0, 1431, 1432, 5, 281, 0, 0, 1432, 1437, 5, 312, 0, 0, 1433, 1437, 5, 52, 0, 0, 1434, 1437, 5, 255, 0, 0, 1435, 1437, 5, 88, 0, 0, 1436, 1343, 1, 0, 0, 0, 1436, 1345, 1, 0, 0, 0, 1436, 1349, 1, 0, 0, 0, 1436, 1351, 1, 0, 0, 0, 1436, 1356, 1, 0, 0, 0, 1436, 1361, 1, 0, 0, 0, 1436, 1364, 1, 0, 0, 0, 1436, 1366, 1, 0, 0, 0, 1436, 1368, 1, 0, 0, 0, 1436, 1370, 1, 0, 0, 0, 1436, 1373, 1, 0, 0, 0, 1436, 1379, 1, 0, 0, 0, 1436, 1385, 1, 0, 0, 0, 1436, 1391, 1, 0, 0, 0, 1436, 1399, 1, 0, 0, 0, 1436, 1406, 1, 0, 0, 0, 1436, 1412, 1, 0, 0, 0, 1436, 1417, 1, 0, 0, 0, 1436, 1431, 1, 0, 0, 0, 1436, 1433, 1, 0, 0, 0, 1436, 1434, 1, 0, 0, 0, 1436, 1435, 1, 0, 0, 0, 1437, 7, 1, 0, 0, 0, 1438, 1439, 5, 45, 0, 0, 1439, 1440, 5, 31, 0, 0, 1440, 1444, 3, 184, 92, 0, 1441, 1442, 5, 279, 0, 0, 1442, 1443, 5, 31, 0, 0, 1443, 1445, 3, 188, 94, 0, 1444, 1441, 1, 0, 0, 0, 1444, 1445, 1, 0, 0, 0, 1445, 1446, 1, 0, 0, 0, 1446, 1447, 5, 152, 0, 0, 1447, 1448, 5, 382, 0, 0, 1448, 1449, 5, 30, 0, 0, 1449, 9, 1, 0, 0, 0, 1450, 1451, 5, 275, 0, 0, 1451, 1452, 5, 31, 0, 0, 1452, 1453, 3, 184, 92, 0, 1453, 1456, 5, 203, 0, 0, 1454, 1457, 3, 54, 27, 0, 1455, 1457, 3, 56, 28, 0, 1456, 1454, 1, 0, 0, 0, 1456, 1455, 1, 0, 0, 0, 1457, 1461, 1, 0, 0, 0, 1458, 1459, 5, 283, 0, 0, 1459, 1460, 5, 20, 0, 0, 1460, 1462, 5, 89, 0, 0, 1461, 1458, 1, 0, 0, 0, 1461, 1462, 1, 0, 0, 0, 1462, 11, 1, 0, 0, 0, 1463, 1464, 5, 170, 0, 0, 1464, 1465, 3, 364, 182, 0, 1465, 13, 1, 0, 0, 0, 1466, 1467, 5, 51, 0, 0, 1467, 1468, 3, 364, 182, 0, 1468, 15, 1, 0, 0, 0, 1469, 1471, 3, 32, 16, 0, 1470, 1469, 1, 0, 0, 0, 1470, 1471, 1, 0, 0, 0, 1471, 1472, 1, 0, 0, 0, 1472, 1473, 3, 100, 50, 0, 1473, 1474, 3, 92, 46, 0, 1474, 17, 1, 0, 0, 0, 1475, 1476, 5, 147, 0, 0, 1476, 1478, 5, 216, 0, 0, 1477, 1479, 5, 293, 0, 0, 1478, 1477, 1, 0, 0, 0, 1478, 1479, 1, 0, 0, 0, 1479, 1480, 1, 0, 0, 0, 1480, 1485, 3, 72, 36, 0, 1481, 1483, 3, 22, 11, 0, 1482, 1484, 3, 164, 82, 0, 1483, 1482, 1, 0, 0, 0, 1483, 1484, 1, 0, 0, 0, 1484, 1486, 1, 0, 0, 0, 1485, 1481, 1, 0, 0, 0, 1485, 1486, 1, 0, 0, 0, 1486, 1493, 1, 0, 0, 0, 1487, 1488, 5, 31, 0, 0, 1488, 1494, 5, 189, 0, 0, 1489, 1490, 5, 2, 0, 0, 1490, 1491, 3, 86, 43, 0, 1491, 1492, 5, 3, 0, 0, 1492, 1494, 1, 0, 0, 0, 1493, 1487, 1, 0, 0, 0, 1493, 1489, 1, 0, 0, 0, 1493, 1494, 1, 0, 0, 0, 1494, 1552, 1, 0, 0, 0, 1495, 1496, 5, 147, 0, 0, 1496, 1498, 5, 152, 0, 0, 1497, 1499, 5, 293, 0, 0, 1498, 1497, 1, 0, 0, 0, 1498, 1499, 1, 0, 0, 0, 1499, 1500, 1, 0, 0, 0, 1500, 1502, 3, 72, 36, 0, 1501, 1503, 3, 22, 11, 0, 1502, 1501, 1, 0, 0, 0, 1502, 1503, 1, 0, 0, 0, 1503, 1505, 1, 0, 0, 0, 1504, 1506, 3, 164, 82, 0, 1505, 1504, 1, 0, 0, 0, 1505, 1506, 1, 0, 0, 0, 1506, 1513, 1, 0, 0, 0, 1507, 1508, 5, 31, 0, 0, 1508, 1514, 5, 189, 0, 0, 1509, 1510, 5, 2, 0, 0, 1510, 1511, 3, 86, 43, 0, 1511, 1512, 5, 3, 0, 0, 1512, 1514, 1, 0, 0, 0, 1513, 1507, 1, 0, 0, 0, 1513, 1509, 1, 0, 0, 0, 1513, 1514, 1, 0, 0, 0, 1514, 1552, 1, 0, 0, 0, 1515, 1516, 5, 147, 0, 0, 1516, 1518, 5, 152, 0, 0, 1517, 1519, 5, 293, 0, 0, 1518, 1517, 1, 0, 0, 0, 1518, 1519, 1, 0, 0, 0, 1519, 1520, 1, 0, 0, 0, 1520, 1521, 3, 72, 36, 0, 1521, 1522, 5, 244, 0, 0, 1522, 1523, 3, 128, 64, 0, 1523, 1552, 1, 0, 0, 0, 1524, 1525, 5, 147, 0, 0, 1525, 1527, 5, 216, 0, 0, 1526, 1528, 5, 169, 0, 0, 1527, 1526, 1, 0, 0, 0, 1527, 1528, 1, 0, 0, 0, 1528, 1529, 1, 0, 0, 0, 1529, 1530, 5, 90, 0, 0, 1530, 1532, 3, 364, 182, 0, 1531, 1533, 3, 218, 109, 0, 1532, 1531, 1, 0, 0, 0, 1532, 1533, 1, 0, 0, 0, 1533, 1535, 1, 0, 0, 0, 1534, 1536, 3, 58, 29, 0, 1535, 1534, 1, 0, 0, 0, 1535, 1536, 1, 0, 0, 0, 1536, 1552, 1, 0, 0, 0, 1537, 1538, 5, 147, 0, 0, 1538, 1540, 5, 216, 0, 0, 1539, 1541, 5, 169, 0, 0, 1540, 1539, 1, 0, 0, 0, 1540, 1541, 1, 0, 0, 0, 1541, 1542, 1, 0, 0, 0, 1542, 1544, 5, 90, 0, 0, 1543, 1545, 3, 364, 182, 0, 1544, 1543, 1, 0, 0, 0, 1544, 1545, 1, 0, 0, 0, 1545, 1546, 1, 0, 0, 0, 1546, 1549, 3, 36, 18, 0, 1547, 1548, 5, 207, 0, 0, 1548, 1550, 3, 42, 21, 0, 1549, 1547, 1, 0, 0, 0, 1549, 1550, 1, 0, 0, 0, 1550, 1552, 1, 0, 0, 0, 1551, 1475, 1, 0, 0, 0, 1551, 1495, 1, 0, 0, 0, 1551, 1515, 1, 0, 0, 0, 1551, 1524, 1, 0, 0, 0, 1551, 1537, 1, 0, 0, 0, 1552, 19, 1, 0, 0, 0, 1553, 1556, 3, 22, 11, 0, 1554, 1555, 5, 170, 0, 0, 1555, 1557, 3, 364, 182, 0, 1556, 1554, 1, 0, 0, 0, 1556, 1557, 1, 0, 0, 0, 1557, 21, 1, 0, 0, 0, 1558, 1559, 5, 217, 0, 0, 1559, 1560, 5, 2, 0, 0, 1560, 1565, 3, 24, 12, 0, 1561, 1562, 5, 4, 0, 0, 1562, 1564, 3, 24, 12, 0, 1563, 1561, 1, 0, 0, 0, 1564, 1567, 1, 0, 0, 0, 1565, 1563, 1, 0, 0, 0, 1565, 1566, 1, 0, 0, 0, 1566, 1568, 1, 0, 0, 0, 1567, 1565, 1, 0, 0, 0, 1568, 1569, 5, 3, 0, 0, 1569, 23, 1, 0, 0, 0, 1570, 1573, 3, 354, 177, 0, 1571, 1572, 5, 352, 0, 0, 1572, 1574, 3, 274, 137, 0, 1573, 1571, 1, 0, 0, 0, 1573, 1574, 1, 0, 0, 0, 1574, 1580, 1, 0, 0, 0, 1575, 1576, 3, 354, 177, 0, 1576, 1577, 5, 352, 0, 0, 1577, 1578, 5, 82, 0, 0, 1578, 1580, 1, 0, 0, 0, 1579, 1570, 1, 0, 0, 0, 1579, 1575, 1, 0, 0, 0, 1580, 25, 1, 0, 0, 0, 1581, 1582, 7, 22, 0, 0, 1582, 27, 1, 0, 0, 0, 1583, 1589, 3, 90, 45, 0, 1584, 1589, 3, 364, 182, 0, 1585, 1589, 3, 276, 138, 0, 1586, 1589, 3, 278, 139, 0, 1587, 1589, 3, 280, 140, 0, 1588, 1583, 1, 0, 0, 0, 1588, 1584, 1, 0, 0, 0, 1588, 1585, 1, 0, 0, 0, 1588, 1586, 1, 0, 0, 0, 1588, 1587, 1, 0, 0, 0, 1589, 29, 1, 0, 0, 0, 1590, 1595, 3, 354, 177, 0, 1591, 1592, 5, 5, 0, 0, 1592, 1594, 3, 354, 177, 0, 1593, 1591, 1, 0, 0, 0, 1594, 1597, 1, 0, 0, 0, 1595, 1593, 1, 0, 0, 0, 1595, 1596, 1, 0, 0, 0, 1596, 31, 1, 0, 0, 0, 1597, 1595, 1, 0, 0, 0, 1598, 1599, 5, 346, 0, 0, 1599, 1604, 3, 34, 17, 0, 1600, 1601, 5, 4, 0, 0, 1601, 1603, 3, 34, 17, 0, 1602, 1600, 1, 0, 0, 0, 1603, 1606, 1, 0, 0, 0, 1604, 1602, 1, 0, 0, 0, 1604, 1605, 1, 0, 0, 0, 1605, 33, 1, 0, 0, 0, 1606, 1604, 1, 0, 0, 0, 1607, 1609, 3, 350, 175, 0, 1608, 1610, 3, 184, 92, 0, 1609, 1608, 1, 0, 0, 0, 1609, 1610, 1, 0, 0, 0, 1610, 1612, 1, 0, 0, 0, 1611, 1613, 5, 20, 0, 0, 1612, 1611, 1, 0, 0, 0, 1612, 1613, 1, 0, 0, 0, 1613, 1614, 1, 0, 0, 0, 1614, 1615, 5, 2, 0, 0, 1615, 1616, 3, 16, 8, 0, 1616, 1617, 5, 3, 0, 0, 1617, 35, 1, 0, 0, 0, 1618, 1619, 5, 332, 0, 0, 1619, 1620, 3, 222, 111, 0, 1620, 37, 1, 0, 0, 0, 1621, 1622, 5, 207, 0, 0, 1622, 1638, 3, 50, 25, 0, 1623, 1624, 5, 218, 0, 0, 1624, 1625, 5, 31, 0, 0, 1625, 1638, 3, 246, 123, 0, 1626, 1638, 3, 10, 5, 0, 1627, 1638, 3, 8, 4, 0, 1628, 1638, 3, 218, 109, 0, 1629, 1638, 3, 58, 29, 0, 1630, 1631, 5, 170, 0, 0, 1631, 1638, 3, 364, 182, 0, 1632, 1633, 5, 51, 0, 0, 1633, 1638, 3, 364, 182, 0, 1634, 1635, 5, 297, 0, 0, 1635, 1638, 3, 42, 21, 0, 1636, 1638, 3, 40, 20, 0, 1637, 1621, 1, 0, 0, 0, 1637, 1623, 1, 0, 0, 0, 1637, 1626, 1, 0, 0, 0, 1637, 1627, 1, 0, 0, 0, 1637, 1628, 1, 0, 0, 0, 1637, 1629, 1, 0, 0, 0, 1637, 1630, 1, 0, 0, 0, 1637, 1632, 1, 0, 0, 0, 1637, 1634, 1, 0, 0, 0, 1637, 1636, 1, 0, 0, 0, 1638, 1641, 1, 0, 0, 0, 1639, 1637, 1, 0, 0, 0, 1639, 1640, 1, 0, 0, 0, 1640, 39, 1, 0, 0, 0, 1641, 1639, 1, 0, 0, 0, 1642, 1643, 5, 162, 0, 0, 1643, 1644, 5, 382, 0, 0, 1644, 41, 1, 0, 0, 0, 1645, 1646, 5, 2, 0, 0, 1646, 1651, 3, 44, 22, 0, 1647, 1648, 5, 4, 0, 0, 1648, 1650, 3, 44, 22, 0, 1649, 1647, 1, 0, 0, 0, 1650, 1653, 1, 0, 0, 0, 1651, 1649, 1, 0, 0, 0, 1651, 1652, 1, 0, 0, 0, 1652, 1654, 1, 0, 0, 0, 1653, 1651, 1, 0, 0, 0, 1654, 1655, 5, 3, 0, 0, 1655, 43, 1, 0, 0, 0, 1656, 1661, 3, 46, 23, 0, 1657, 1659, 5, 352, 0, 0, 1658, 1657, 1, 0, 0, 0, 1658, 1659, 1, 0, 0, 0, 1659, 1660, 1, 0, 0, 0, 1660, 1662, 3, 48, 24, 0, 1661, 1658, 1, 0, 0, 0, 1661, 1662, 1, 0, 0, 0, 1662, 45, 1, 0, 0, 0, 1663, 1668, 3, 354, 177, 0, 1664, 1665, 5, 5, 0, 0, 1665, 1667, 3, 354, 177, 0, 1666, 1664, 1, 0, 0, 0, 1667, 1670, 1, 0, 0, 0, 1668, 1666, 1, 0, 0, 0, 1668, 1669, 1, 0, 0, 0, 1669, 1673, 1, 0, 0, 0, 1670, 1668, 1, 0, 0, 0, 1671, 1673, 3, 364, 182, 0, 1672, 1663, 1, 0, 0, 0, 1672, 1671, 1, 0, 0, 0, 1673, 47, 1, 0, 0, 0, 1674, 1679, 5, 382, 0, 0, 1675, 1679, 5, 384, 0, 0, 1676, 1679, 3, 282, 141, 0, 1677, 1679, 3, 364, 182, 0, 1678, 1674, 1, 0, 0, 0, 1678, 1675, 1, 0, 0, 0, 1678, 1676, 1, 0, 0, 0, 1678, 1677, 1, 0, 0, 0, 1679, 49, 1, 0, 0, 0, 1680, 1681, 5, 2, 0, 0, 1681, 1686, 3, 52, 26, 0, 1682, 1683, 5, 4, 0, 0, 1683, 1685, 3, 52, 26, 0, 1684, 1682, 1, 0, 0, 0, 1685, 1688, 1, 0, 0, 0, 1686, 1684, 1, 0, 0, 0, 1686, 1687, 1, 0, 0, 0, 1687, 1689, 1, 0, 0, 0, 1688, 1686, 1, 0, 0, 0, 1689, 1690, 5, 3, 0, 0, 1690, 51, 1, 0, 0, 0, 1691, 1696, 3, 46, 23, 0, 1692, 1694, 5, 352, 0, 0, 1693, 1692, 1, 0, 0, 0, 1693, 1694, 1, 0, 0, 0, 1694, 1695, 1, 0, 0, 0, 1695, 1697, 3, 254, 127, 0, 1696, 1693, 1, 0, 0, 0, 1696, 1697, 1, 0, 0, 0, 1697, 53, 1, 0, 0, 0, 1698, 1699, 5, 2, 0, 0, 1699, 1704, 3, 274, 137, 0, 1700, 1701, 5, 4, 0, 0, 1701, 1703, 3, 274, 137, 0, 1702, 1700, 1, 0, 0, 0, 1703, 1706, 1, 0, 0, 0, 1704, 1702, 1, 0, 0, 0, 1704, 1705, 1, 0, 0, 0, 1705, 1707, 1, 0, 0, 0, 1706, 1704, 1, 0, 0, 0, 1707, 1708, 5, 3, 0, 0, 1708, 55, 1, 0, 0, 0, 1709, 1710, 5, 2, 0, 0, 1710, 1715, 3, 54, 27, 0, 1711, 1712, 5, 4, 0, 0, 1712, 1714, 3, 54, 27, 0, 1713, 1711, 1, 0, 0, 0, 1714, 1717, 1, 0, 0, 0, 1715, 1713, 1, 0, 0, 0, 1715, 1716, 1, 0, 0, 0, 1716, 1718, 1, 0, 0, 0, 1717, 1715, 1, 0, 0, 0, 1718, 1719, 5, 3, 0, 0, 1719, 57, 1, 0, 0, 0, 1720, 1721, 5, 283, 0, 0, 1721, 1722, 5, 20, 0, 0, 1722, 1727, 3, 60, 30, 0, 1723, 1724, 5, 283, 0, 0, 1724, 1725, 5, 31, 0, 0, 1725, 1727, 3, 62, 31, 0, 1726, 1720, 1, 0, 0, 0, 1726, 1723, 1, 0, 0, 0, 1727, 59, 1, 0, 0, 0, 1728, 1729, 5, 146, 0, 0, 1729, 1730, 3, 364, 182, 0, 1730, 1731, 5, 212, 0, 0, 1731, 1732, 3, 364, 182, 0, 1732, 1735, 1, 0, 0, 0, 1733, 1735, 3, 354, 177, 0, 1734, 1728, 1, 0, 0, 0, 1734, 1733, 1, 0, 0, 0, 1735, 61, 1, 0, 0, 0, 1736, 1740, 3, 364, 182, 0, 1737, 1738, 5, 346, 0, 0, 1738, 1739, 5, 267, 0, 0, 1739, 1741, 3, 42, 21, 0, 1740, 1737, 1, 0, 0, 0, 1740, 1741, 1, 0, 0, 0, 1741, 63, 1, 0, 0, 0, 1742, 1743, 3, 18, 9, 0, 1743, 1744, 3, 16, 8, 0, 1744, 1801, 1, 0, 0, 0, 1745, 1749, 3, 136, 68, 0, 1746, 1747, 3, 18, 9, 0, 1747, 1748, 3, 106, 53, 0, 1748, 1750, 1, 0, 0, 0, 1749, 1746, 1, 0, 0, 0, 1750, 1751, 1, 0, 0, 0, 1751, 1749, 1, 0, 0, 0, 1751, 1752, 1, 0, 0, 0, 1752, 1801, 1, 0, 0, 0, 1753, 1754, 5, 84, 0, 0, 1754, 1755, 5, 123, 0, 0, 1755, 1756, 3, 72, 36, 0, 1756, 1758, 3, 216, 108, 0, 1757, 1759, 3, 128, 64, 0, 1758, 1757, 1, 0, 0, 0, 1758, 1759, 1, 0, 0, 0, 1759, 1801, 1, 0, 0, 0, 1760, 1761, 5, 329, 0, 0, 1761, 1762, 3, 72, 36, 0, 1762, 1763, 3, 216, 108, 0, 1763, 1765, 3, 114, 57, 0, 1764, 1766, 3, 128, 64, 0, 1765, 1764, 1, 0, 0, 0, 1765, 1766, 1, 0, 0, 0, 1766, 1801, 1, 0, 0, 0, 1767, 1768, 5, 179, 0, 0, 1768, 1769, 5, 152, 0, 0, 1769, 1770, 3, 72, 36, 0, 1770, 1771, 3, 216, 108, 0, 1771, 1777, 5, 332, 0, 0, 1772, 1778, 3, 90, 45, 0, 1773, 1774, 5, 2, 0, 0, 1774, 1775, 3, 16, 8, 0, 1775, 1776, 5, 3, 0, 0, 1776, 1778, 1, 0, 0, 0, 1777, 1772, 1, 0, 0, 0, 1777, 1773, 1, 0, 0, 0, 1778, 1779, 1, 0, 0, 0, 1779, 1780, 3, 216, 108, 0, 1780, 1781, 5, 203, 0, 0, 1781, 1785, 3, 262, 131, 0, 1782, 1784, 3, 116, 58, 0, 1783, 1782, 1, 0, 0, 0, 1784, 1787, 1, 0, 0, 0, 1785, 1783, 1, 0, 0, 0, 1785, 1786, 1, 0, 0, 0, 1786, 1791, 1, 0, 0, 0, 1787, 1785, 1, 0, 0, 0, 1788, 1790, 3, 118, 59, 0, 1789, 1788, 1, 0, 0, 0, 1790, 1793, 1, 0, 0, 0, 1791, 1789, 1, 0, 0, 0, 1791, 1792, 1, 0, 0, 0, 1792, 1797, 1, 0, 0, 0, 1793, 1791, 1, 0, 0, 0, 1794, 1796, 3, 120, 60, 0, 1795, 1794, 1, 0, 0, 0, 1796, 1799, 1, 0, 0, 0, 1797, 1795, 1, 0, 0, 0, 1797, 1798, 1, 0, 0, 0, 1798, 1801, 1, 0, 0, 0, 1799, 1797, 1, 0, 0, 0, 1800, 1742, 1, 0, 0, 0, 1800, 1745, 1, 0, 0, 0, 1800, 1753, 1, 0, 0, 0, 1800, 1760, 1, 0, 0, 0, 1800, 1767, 1, 0, 0, 0, 1801, 65, 1, 0, 0, 0, 1802, 1803, 3, 90, 45, 0, 1803, 67, 1, 0, 0, 0, 1804, 1805, 3, 90, 45, 0, 1805, 69, 1, 0, 0, 0, 1806, 1807, 3, 230, 115, 0, 1807, 71, 1, 0, 0, 0, 1808, 1809, 3, 230, 115, 0, 1809, 73, 1, 0, 0, 0, 1810, 1811, 3, 232, 116, 0, 1811, 75, 1, 0, 0, 0, 1812, 1813, 3, 232, 116, 0, 1813, 77, 1, 0, 0, 0, 1814, 1815, 1, 0, 0, 0, 1815, 79, 1, 0, 0, 0, 1816, 1820, 3, 224, 112, 0, 1817, 1818, 4, 40, 0, 0, 1818, 1820, 3, 78, 39, 0, 1819, 1816, 1, 0, 0, 0, 1819, 1817, 1, 0, 0, 0, 1820, 81, 1, 0, 0, 0, 1821, 1822, 3, 222, 111, 0, 1822, 83, 1, 0, 0, 0, 1823, 1827, 3, 224, 112, 0, 1824, 1825, 4, 42, 1, 0, 1825, 1827, 3, 78, 39, 0, 1826, 1823, 1, 0, 0, 0, 1826, 1824, 1, 0, 0, 0, 1827, 85, 1, 0, 0, 0, 1828, 1833, 3, 80, 40, 0, 1829, 1830, 5, 4, 0, 0, 1830, 1832, 3, 80, 40, 0, 1831, 1829, 1, 0, 0, 0, 1832, 1835, 1, 0, 0, 0, 1833, 1831, 1, 0, 0, 0, 1833, 1834, 1, 0, 0, 0, 1834, 87, 1, 0, 0, 0, 1835, 1833, 1, 0, 0, 0, 1836, 1837, 3, 350, 175, 0, 1837, 89, 1, 0, 0, 0, 1838, 1839, 5, 136, 0, 0, 1839, 1840, 5, 2, 0, 0, 1840, 1841, 3, 254, 127, 0, 1841, 1842, 5, 3, 0, 0, 1842, 1845, 1, 0, 0, 0, 1843, 1845, 3, 222, 111, 0, 1844, 1838, 1, 0, 0, 0, 1844, 1843, 1, 0, 0, 0, 1845, 91, 1, 0, 0, 0, 1846, 1847, 5, 209, 0, 0, 1847, 1848, 5, 31, 0, 0, 1848, 1850, 3, 96, 48, 0, 1849, 1846, 1, 0, 0, 0, 1849, 1850, 1, 0, 0, 0, 1850, 1854, 1, 0, 0, 0, 1851, 1852, 5, 44, 0, 0, 1852, 1853, 5, 31, 0, 0, 1853, 1855, 3, 98, 49, 0, 1854, 1851, 1, 0, 0, 0, 1854, 1855, 1, 0, 0, 0, 1855, 1859, 1, 0, 0, 0, 1856, 1857, 5, 93, 0, 0, 1857, 1858, 5, 31, 0, 0, 1858, 1860, 3, 98, 49, 0, 1859, 1856, 1, 0, 0, 0, 1859, 1860, 1, 0, 0, 0, 1860, 1864, 1, 0, 0, 0, 1861, 1862, 5, 278, 0, 0, 1862, 1863, 5, 31, 0, 0, 1863, 1865, 3, 96, 48, 0, 1864, 1861, 1, 0, 0, 0, 1864, 1865, 1, 0, 0, 0, 1865, 1867, 1, 0, 0, 0, 1866, 1868, 3, 332, 166, 0, 1867, 1866, 1, 0, 0, 0, 1867, 1868, 1, 0, 0, 0, 1868, 1870, 1, 0, 0, 0, 1869, 1871, 3, 94, 47, 0, 1870, 1869, 1, 0, 0, 0, 1870, 1871, 1, 0, 0, 0, 1871, 1874, 1, 0, 0, 0, 1872, 1873, 5, 202, 0, 0, 1873, 1875, 3, 254, 127, 0, 1874, 1872, 1, 0, 0, 0, 1874, 1875, 1, 0, 0, 0, 1875, 93, 1, 0, 0, 0, 1876, 1879, 5, 165, 0, 0, 1877, 1880, 5, 10, 0, 0, 1878, 1880, 3, 254, 127, 0, 1879, 1877, 1, 0, 0, 0, 1879, 1878, 1, 0, 0, 0, 1880, 95, 1, 0, 0, 0, 1881, 1886, 3, 104, 52, 0, 1882, 1883, 5, 4, 0, 0, 1883, 1885, 3, 104, 52, 0, 1884, 1882, 1, 0, 0, 0, 1885, 1888, 1, 0, 0, 0, 1886, 1884, 1, 0, 0, 0, 1886, 1887, 1, 0, 0, 0, 1887, 97, 1, 0, 0, 0, 1888, 1886, 1, 0, 0, 0, 1889, 1894, 3, 254, 127, 0, 1890, 1891, 5, 4, 0, 0, 1891, 1893, 3, 254, 127, 0, 1892, 1890, 1, 0, 0, 0, 1893, 1896, 1, 0, 0, 0, 1894, 1892, 1, 0, 0, 0, 1894, 1895, 1, 0, 0, 0, 1895, 99, 1, 0, 0, 0, 1896, 1894, 1, 0, 0, 0, 1897, 1898, 6, 50, -1, 0, 1898, 1899, 3, 102, 51, 0, 1899, 1920, 1, 0, 0, 0, 1900, 1901, 10, 3, 0, 0, 1901, 1903, 7, 23, 0, 0, 1902, 1904, 3, 170, 85, 0, 1903, 1902, 1, 0, 0, 0, 1903, 1904, 1, 0, 0, 0, 1904, 1905, 1, 0, 0, 0, 1905, 1919, 3, 100, 50, 4, 1906, 1907, 10, 2, 0, 0, 1907, 1909, 5, 148, 0, 0, 1908, 1910, 3, 170, 85, 0, 1909, 1908, 1, 0, 0, 0, 1909, 1910, 1, 0, 0, 0, 1910, 1911, 1, 0, 0, 0, 1911, 1919, 3, 100, 50, 3, 1912, 1913, 10, 1, 0, 0, 1913, 1915, 7, 24, 0, 0, 1914, 1916, 3, 170, 85, 0, 1915, 1914, 1, 0, 0, 0, 1915, 1916, 1, 0, 0, 0, 1916, 1917, 1, 0, 0, 0, 1917, 1919, 3, 100, 50, 2, 1918, 1900, 1, 0, 0, 0, 1918, 1906, 1, 0, 0, 0, 1918, 1912, 1, 0, 0, 0, 1919, 1922, 1, 0, 0, 0, 1920, 1918, 1, 0, 0, 0, 1920, 1921, 1, 0, 0, 0, 1921, 101, 1, 0, 0, 0, 1922, 1920, 1, 0, 0, 0, 1923, 1948, 3, 108, 54, 0, 1924, 1926, 3, 136, 68, 0, 1925, 1927, 3, 106, 53, 0, 1926, 1925, 1, 0, 0, 0, 1927, 1928, 1, 0, 0, 0, 1928, 1926, 1, 0, 0, 0, 1928, 1929, 1, 0, 0, 0, 1929, 1948, 1, 0, 0, 0, 1930, 1931, 5, 293, 0, 0, 1931, 1948, 3, 72, 36, 0, 1932, 1933, 5, 333, 0, 0, 1933, 1938, 3, 254, 127, 0, 1934, 1935, 5, 4, 0, 0, 1935, 1937, 3, 254, 127, 0, 1936, 1934, 1, 0, 0, 0, 1937, 1940, 1, 0, 0, 0, 1938, 1936, 1, 0, 0, 0, 1938, 1939, 1, 0, 0, 0, 1939, 1941, 1, 0, 0, 0, 1940, 1938, 1, 0, 0, 0, 1941, 1942, 3, 216, 108, 0, 1942, 1948, 1, 0, 0, 0, 1943, 1944, 5, 2, 0, 0, 1944, 1945, 3, 16, 8, 0, 1945, 1946, 5, 3, 0, 0, 1946, 1948, 1, 0, 0, 0, 1947, 1923, 1, 0, 0, 0, 1947, 1924, 1, 0, 0, 0, 1947, 1930, 1, 0, 0, 0, 1947, 1932, 1, 0, 0, 0, 1947, 1943, 1, 0, 0, 0, 1948, 103, 1, 0, 0, 0, 1949, 1952, 3, 80, 40, 0, 1950, 1952, 3, 254, 127, 0, 1951, 1949, 1, 0, 0, 0, 1951, 1950, 1, 0, 0, 0, 1952, 1954, 1, 0, 0, 0, 1953, 1955, 7, 25, 0, 0, 1954, 1953, 1, 0, 0, 0, 1954, 1955, 1, 0, 0, 0, 1955, 1958, 1, 0, 0, 0, 1956, 1957, 5, 199, 0, 0, 1957, 1959, 7, 26, 0, 0, 1958, 1956, 1, 0, 0, 0, 1958, 1959, 1, 0, 0, 0, 1959, 105, 1, 0, 0, 0, 1960, 1962, 3, 110, 55, 0, 1961, 1963, 3, 128, 64, 0, 1962, 1961, 1, 0, 0, 0, 1962, 1963, 1, 0, 0, 0, 1963, 1964, 1, 0, 0, 0, 1964, 1965, 3, 92, 46, 0, 1965, 1988, 1, 0, 0, 0, 1966, 1970, 3, 112, 56, 0, 1967, 1969, 3, 168, 84, 0, 1968, 1967, 1, 0, 0, 0, 1969, 1972, 1, 0, 0, 0, 1970, 1968, 1, 0, 0, 0, 1970, 1971, 1, 0, 0, 0, 1971, 1974, 1, 0, 0, 0, 1972, 1970, 1, 0, 0, 0, 1973, 1975, 3, 128, 64, 0, 1974, 1973, 1, 0, 0, 0, 1974, 1975, 1, 0, 0, 0, 1975, 1977, 1, 0, 0, 0, 1976, 1978, 3, 140, 70, 0, 1977, 1976, 1, 0, 0, 0, 1977, 1978, 1, 0, 0, 0, 1978, 1980, 1, 0, 0, 0, 1979, 1981, 3, 130, 65, 0, 1980, 1979, 1, 0, 0, 0, 1980, 1981, 1, 0, 0, 0, 1981, 1983, 1, 0, 0, 0, 1982, 1984, 3, 332, 166, 0, 1983, 1982, 1, 0, 0, 0, 1983, 1984, 1, 0, 0, 0, 1984, 1985, 1, 0, 0, 0, 1985, 1986, 3, 92, 46, 0, 1986, 1988, 1, 0, 0, 0, 1987, 1960, 1, 0, 0, 0, 1987, 1966, 1, 0, 0, 0, 1988, 107, 1, 0, 0, 0, 1989, 1991, 3, 110, 55, 0, 1990, 1992, 3, 136, 68, 0, 1991, 1990, 1, 0, 0, 0, 1991, 1992, 1, 0, 0, 0, 1992, 1996, 1, 0, 0, 0, 1993, 1995, 3, 168, 84, 0, 1994, 1993, 1, 0, 0, 0, 1995, 1998, 1, 0, 0, 0, 1996, 1994, 1, 0, 0, 0, 1996, 1997, 1, 0, 0, 0, 1997, 2000, 1, 0, 0, 0, 1998, 1996, 1, 0, 0, 0, 1999, 2001, 3, 128, 64, 0, 2000, 1999, 1, 0, 0, 0, 2000, 2001, 1, 0, 0, 0, 2001, 2003, 1, 0, 0, 0, 2002, 2004, 3, 140, 70, 0, 2003, 2002, 1, 0, 0, 0, 2003, 2004, 1, 0, 0, 0, 2004, 2006, 1, 0, 0, 0, 2005, 2007, 3, 130, 65, 0, 2006, 2005, 1, 0, 0, 0, 2006, 2007, 1, 0, 0, 0, 2007, 2009, 1, 0, 0, 0, 2008, 2010, 3, 332, 166, 0, 2009, 2008, 1, 0, 0, 0, 2009, 2010, 1, 0, 0, 0, 2010, 2034, 1, 0, 0, 0, 2011, 2013, 3, 112, 56, 0, 2012, 2014, 3, 136, 68, 0, 2013, 2012, 1, 0, 0, 0, 2013, 2014, 1, 0, 0, 0, 2014, 2018, 1, 0, 0, 0, 2015, 2017, 3, 168, 84, 0, 2016, 2015, 1, 0, 0, 0, 2017, 2020, 1, 0, 0, 0, 2018, 2016, 1, 0, 0, 0, 2018, 2019, 1, 0, 0, 0, 2019, 2022, 1, 0, 0, 0, 2020, 2018, 1, 0, 0, 0, 2021, 2023, 3, 128, 64, 0, 2022, 2021, 1, 0, 0, 0, 2022, 2023, 1, 0, 0, 0, 2023, 2025, 1, 0, 0, 0, 2024, 2026, 3, 140, 70, 0, 2025, 2024, 1, 0, 0, 0, 2025, 2026, 1, 0, 0, 0, 2026, 2028, 1, 0, 0, 0, 2027, 2029, 3, 130, 65, 0, 2028, 2027, 1, 0, 0, 0, 2028, 2029, 1, 0, 0, 0, 2029, 2031, 1, 0, 0, 0, 2030, 2032, 3, 332, 166, 0, 2031, 2030, 1, 0, 0, 0, 2031, 2032, 1, 0, 0, 0, 2032, 2034, 1, 0, 0, 0, 2033, 1989, 1, 0, 0, 0, 2033, 2011, 1, 0, 0, 0, 2034, 109, 1, 0, 0, 0, 2035, 2036, 5, 263, 0, 0, 2036, 2037, 5, 314, 0, 0, 2037, 2039, 5, 2, 0, 0, 2038, 2040, 3, 170, 85, 0, 2039, 2038, 1, 0, 0, 0, 2039, 2040, 1, 0, 0, 0, 2040, 2041, 1, 0, 0, 0, 2041, 2042, 3, 260, 130, 0, 2042, 2043, 5, 3, 0, 0, 2043, 2055, 1, 0, 0, 0, 2044, 2046, 5, 177, 0, 0, 2045, 2047, 3, 170, 85, 0, 2046, 2045, 1, 0, 0, 0, 2046, 2047, 1, 0, 0, 0, 2047, 2048, 1, 0, 0, 0, 2048, 2055, 3, 260, 130, 0, 2049, 2051, 5, 238, 0, 0, 2050, 2052, 3, 170, 85, 0, 2051, 2050, 1, 0, 0, 0, 2051, 2052, 1, 0, 0, 0, 2052, 2053, 1, 0, 0, 0, 2053, 2055, 3, 260, 130, 0, 2054, 2035, 1, 0, 0, 0, 2054, 2044, 1, 0, 0, 0, 2054, 2049, 1, 0, 0, 0, 2055, 2057, 1, 0, 0, 0, 2056, 2058, 3, 218, 109, 0, 2057, 2056, 1, 0, 0, 0, 2057, 2058, 1, 0, 0, 0, 2058, 2061, 1, 0, 0, 0, 2059, 2060, 5, 236, 0, 0, 2060, 2062, 3, 364, 182, 0, 2061, 2059, 1, 0, 0, 0, 2061, 2062, 1, 0, 0, 0, 2062, 2063, 1, 0, 0, 0, 2063, 2064, 5, 332, 0, 0, 2064, 2077, 3, 364, 182, 0, 2065, 2075, 5, 20, 0, 0, 2066, 2076, 3, 186, 93, 0, 2067, 2076, 3, 318, 159, 0, 2068, 2071, 5, 2, 0, 0, 2069, 2072, 3, 186, 93, 0, 2070, 2072, 3, 318, 159, 0, 2071, 2069, 1, 0, 0, 0, 2071, 2070, 1, 0, 0, 0, 2072, 2073, 1, 0, 0, 0, 2073, 2074, 5, 3, 0, 0, 2074, 2076, 1, 0, 0, 0, 2075, 2066, 1, 0, 0, 0, 2075, 2067, 1, 0, 0, 0, 2075, 2068, 1, 0, 0, 0, 2076, 2078, 1, 0, 0, 0, 2077, 2065, 1, 0, 0, 0, 2077, 2078, 1, 0, 0, 0, 2078, 2080, 1, 0, 0, 0, 2079, 2081, 3, 218, 109, 0, 2080, 2079, 1, 0, 0, 0, 2080, 2081, 1, 0, 0, 0, 2081, 2084, 1, 0, 0, 0, 2082, 2083, 5, 235, 0, 0, 2083, 2085, 3, 364, 182, 0, 2084, 2082, 1, 0, 0, 0, 2084, 2085, 1, 0, 0, 0, 2085, 111, 1, 0, 0, 0, 2086, 2090, 5, 263, 0, 0, 2087, 2089, 3, 132, 66, 0, 2088, 2087, 1, 0, 0, 0, 2089, 2092, 1, 0, 0, 0, 2090, 2088, 1, 0, 0, 0, 2090, 2091, 1, 0, 0, 0, 2091, 2094, 1, 0, 0, 0, 2092, 2090, 1, 0, 0, 0, 2093, 2095, 3, 170, 85, 0, 2094, 2093, 1, 0, 0, 0, 2094, 2095, 1, 0, 0, 0, 2095, 2096, 1, 0, 0, 0, 2096, 2097, 3, 244, 122, 0, 2097, 113, 1, 0, 0, 0, 2098, 2099, 5, 269, 0, 0, 2099, 2100, 3, 124, 62, 0, 2100, 115, 1, 0, 0, 0, 2101, 2102, 5, 343, 0, 0, 2102, 2105, 5, 178, 0, 0, 2103, 2104, 5, 14, 0, 0, 2104, 2106, 3, 262, 131, 0, 2105, 2103, 1, 0, 0, 0, 2105, 2106, 1, 0, 0, 0, 2106, 2107, 1, 0, 0, 0, 2107, 2115, 5, 300, 0, 0, 2108, 2116, 5, 84, 0, 0, 2109, 2110, 5, 329, 0, 0, 2110, 2113, 5, 269, 0, 0, 2111, 2114, 5, 363, 0, 0, 2112, 2114, 3, 124, 62, 0, 2113, 2111, 1, 0, 0, 0, 2113, 2112, 1, 0, 0, 0, 2114, 2116, 1, 0, 0, 0, 2115, 2108, 1, 0, 0, 0, 2115, 2109, 1, 0, 0, 0, 2116, 117, 1, 0, 0, 0, 2117, 2118, 5, 343, 0, 0, 2118, 2119, 5, 197, 0, 0, 2119, 2122, 5, 178, 0, 0, 2120, 2121, 5, 31, 0, 0, 2121, 2123, 5, 296, 0, 0, 2122, 2120, 1, 0, 0, 0, 2122, 2123, 1, 0, 0, 0, 2123, 2126, 1, 0, 0, 0, 2124, 2125, 5, 14, 0, 0, 2125, 2127, 3, 262, 131, 0, 2126, 2124, 1, 0, 0, 0, 2126, 2127, 1, 0, 0, 0, 2127, 2128, 1, 0, 0, 0, 2128, 2129, 5, 300, 0, 0, 2129, 2130, 3, 122, 61, 0, 2130, 119, 1, 0, 0, 0, 2131, 2132, 5, 343, 0, 0, 2132, 2133, 5, 197, 0, 0, 2133, 2134, 5, 178, 0, 0, 2134, 2135, 5, 31, 0, 0, 2135, 2138, 5, 280, 0, 0, 2136, 2137, 5, 14, 0, 0, 2137, 2139, 3, 262, 131, 0, 2138, 2136, 1, 0, 0, 0, 2138, 2139, 1, 0, 0, 0, 2139, 2140, 1, 0, 0, 0, 2140, 2145, 5, 300, 0, 0, 2141, 2146, 5, 84, 0, 0, 2142, 2143, 5, 329, 0, 0, 2143, 2144, 5, 269, 0, 0, 2144, 2146, 3, 124, 62, 0, 2145, 2141, 1, 0, 0, 0, 2145, 2142, 1, 0, 0, 0, 2146, 121, 1, 0, 0, 0, 2147, 2148, 5, 147, 0, 0, 2148, 2166, 5, 363, 0, 0, 2149, 2150, 5, 147, 0, 0, 2150, 2151, 5, 2, 0, 0, 2151, 2152, 3, 220, 110, 0, 2152, 2153, 5, 3, 0, 0, 2153, 2154, 5, 333, 0, 0, 2154, 2155, 5, 2, 0, 0, 2155, 2160, 3, 254, 127, 0, 2156, 2157, 5, 4, 0, 0, 2157, 2159, 3, 254, 127, 0, 2158, 2156, 1, 0, 0, 0, 2159, 2162, 1, 0, 0, 0, 2160, 2158, 1, 0, 0, 0, 2160, 2161, 1, 0, 0, 0, 2161, 2163, 1, 0, 0, 0, 2162, 2160, 1, 0, 0, 0, 2163, 2164, 5, 3, 0, 0, 2164, 2166, 1, 0, 0, 0, 2165, 2147, 1, 0, 0, 0, 2165, 2149, 1, 0, 0, 0, 2166, 123, 1, 0, 0, 0, 2167, 2172, 3, 126, 63, 0, 2168, 2169, 5, 4, 0, 0, 2169, 2171, 3, 126, 63, 0, 2170, 2168, 1, 0, 0, 0, 2171, 2174, 1, 0, 0, 0, 2172, 2170, 1, 0, 0, 0, 2172, 2173, 1, 0, 0, 0, 2173, 125, 1, 0, 0, 0, 2174, 2172, 1, 0, 0, 0, 2175, 2176, 3, 222, 111, 0, 2176, 2177, 5, 352, 0, 0, 2177, 2178, 3, 254, 127, 0, 2178, 127, 1, 0, 0, 0, 2179, 2180, 5, 344, 0, 0, 2180, 2181, 3, 262, 131, 0, 2181, 129, 1, 0, 0, 0, 2182, 2183, 5, 132, 0, 0, 2183, 2184, 3, 262, 131, 0, 2184, 131, 1, 0, 0, 0, 2185, 2186, 5, 374, 0, 0, 2186, 2193, 3, 134, 67, 0, 2187, 2189, 5, 4, 0, 0, 2188, 2187, 1, 0, 0, 0, 2188, 2189, 1, 0, 0, 0, 2189, 2190, 1, 0, 0, 0, 2190, 2192, 3, 134, 67, 0, 2191, 2188, 1, 0, 0, 0, 2192, 2195, 1, 0, 0, 0, 2193, 2191, 1, 0, 0, 0, 2193, 2194, 1, 0, 0, 0, 2194, 2196, 1, 0, 0, 0, 2195, 2193, 1, 0, 0, 0, 2196, 2197, 5, 375, 0, 0, 2197, 133, 1, 0, 0, 0, 2198, 2212, 3, 354, 177, 0, 2199, 2200, 3, 354, 177, 0, 2200, 2201, 5, 2, 0, 0, 2201, 2206, 3, 270, 135, 0, 2202, 2203, 5, 4, 0, 0, 2203, 2205, 3, 270, 135, 0, 2204, 2202, 1, 0, 0, 0, 2205, 2208, 1, 0, 0, 0, 2206, 2204, 1, 0, 0, 0, 2206, 2207, 1, 0, 0, 0, 2207, 2209, 1, 0, 0, 0, 2208, 2206, 1, 0, 0, 0, 2209, 2210, 5, 3, 0, 0, 2210, 2212, 1, 0, 0, 0, 2211, 2198, 1, 0, 0, 0, 2211, 2199, 1, 0, 0, 0, 2212, 135, 1, 0, 0, 0, 2213, 2214, 5, 123, 0, 0, 2214, 2219, 3, 172, 86, 0, 2215, 2216, 5, 4, 0, 0, 2216, 2218, 3, 172, 86, 0, 2217, 2215, 1, 0, 0, 0, 2218, 2221, 1, 0, 0, 0, 2219, 2217, 1, 0, 0, 0, 2219, 2220, 1, 0, 0, 0, 2220, 2225, 1, 0, 0, 0, 2221, 2219, 1, 0, 0, 0, 2222, 2224, 3, 168, 84, 0, 2223, 2222, 1, 0, 0, 0, 2224, 2227, 1, 0, 0, 0, 2225, 2223, 1, 0, 0, 0, 2225, 2226, 1, 0, 0, 0, 2226, 2229, 1, 0, 0, 0, 2227, 2225, 1, 0, 0, 0, 2228, 2230, 3, 148, 74, 0, 2229, 2228, 1, 0, 0, 0, 2229, 2230, 1, 0, 0, 0, 2230, 2232, 1, 0, 0, 0, 2231, 2233, 3, 154, 77, 0, 2232, 2231, 1, 0, 0, 0, 2232, 2233, 1, 0, 0, 0, 2233, 137, 1, 0, 0, 0, 2234, 2236, 5, 119, 0, 0, 2235, 2234, 1, 0, 0, 0, 2235, 2236, 1, 0, 0, 0, 2236, 2237, 1, 0, 0, 0, 2237, 2238, 7, 27, 0, 0, 2238, 2239, 5, 20, 0, 0, 2239, 2242, 5, 201, 0, 0, 2240, 2243, 5, 382, 0, 0, 2241, 2243, 3, 364, 182, 0, 2242, 2240, 1, 0, 0, 0, 2242, 2241, 1, 0, 0, 0, 2243, 2252, 1, 0, 0, 0, 2244, 2246, 5, 119, 0, 0, 2245, 2244, 1, 0, 0, 0, 2245, 2246, 1, 0, 0, 0, 2246, 2247, 1, 0, 0, 0, 2247, 2248, 7, 28, 0, 0, 2248, 2249, 5, 20, 0, 0, 2249, 2250, 5, 201, 0, 0, 2250, 2252, 3, 266, 133, 0, 2251, 2235, 1, 0, 0, 0, 2251, 2245, 1, 0, 0, 0, 2252, 139, 1, 0, 0, 0, 2253, 2254, 5, 130, 0, 0, 2254, 2255, 5, 31, 0, 0, 2255, 2260, 3, 142, 71, 0, 2256, 2257, 5, 4, 0, 0, 2257, 2259, 3, 142, 71, 0, 2258, 2256, 1, 0, 0, 0, 2259, 2262, 1, 0, 0, 0, 2260, 2258, 1, 0, 0, 0, 2260, 2261, 1, 0, 0, 0, 2261, 2293, 1, 0, 0, 0, 2262, 2260, 1, 0, 0, 0, 2263, 2264, 5, 130, 0, 0, 2264, 2265, 5, 31, 0, 0, 2265, 2270, 3, 254, 127, 0, 2266, 2267, 5, 4, 0, 0, 2267, 2269, 3, 254, 127, 0, 2268, 2266, 1, 0, 0, 0, 2269, 2272, 1, 0, 0, 0, 2270, 2268, 1, 0, 0, 0, 2270, 2271, 1, 0, 0, 0, 2271, 2290, 1, 0, 0, 0, 2272, 2270, 1, 0, 0, 0, 2273, 2274, 5, 346, 0, 0, 2274, 2291, 5, 256, 0, 0, 2275, 2276, 5, 346, 0, 0, 2276, 2291, 5, 61, 0, 0, 2277, 2278, 5, 131, 0, 0, 2278, 2279, 5, 271, 0, 0, 2279, 2280, 5, 2, 0, 0, 2280, 2285, 3, 146, 73, 0, 2281, 2282, 5, 4, 0, 0, 2282, 2284, 3, 146, 73, 0, 2283, 2281, 1, 0, 0, 0, 2284, 2287, 1, 0, 0, 0, 2285, 2283, 1, 0, 0, 0, 2285, 2286, 1, 0, 0, 0, 2286, 2288, 1, 0, 0, 0, 2287, 2285, 1, 0, 0, 0, 2288, 2289, 5, 3, 0, 0, 2289, 2291, 1, 0, 0, 0, 2290, 2273, 1, 0, 0, 0, 2290, 2275, 1, 0, 0, 0, 2290, 2277, 1, 0, 0, 0, 2290, 2291, 1, 0, 0, 0, 2291, 2293, 1, 0, 0, 0, 2292, 2253, 1, 0, 0, 0, 2292, 2263, 1, 0, 0, 0, 2293, 141, 1, 0, 0, 0, 2294, 2298, 3, 80, 40, 0, 2295, 2298, 3, 144, 72, 0, 2296, 2298, 3, 254, 127, 0, 2297, 2294, 1, 0, 0, 0, 2297, 2295, 1, 0, 0, 0, 2297, 2296, 1, 0, 0, 0, 2298, 143, 1, 0, 0, 0, 2299, 2300, 7, 29, 0, 0, 2300, 2301, 5, 2, 0, 0, 2301, 2306, 3, 146, 73, 0, 2302, 2303, 5, 4, 0, 0, 2303, 2305, 3, 146, 73, 0, 2304, 2302, 1, 0, 0, 0, 2305, 2308, 1, 0, 0, 0, 2306, 2304, 1, 0, 0, 0, 2306, 2307, 1, 0, 0, 0, 2307, 2309, 1, 0, 0, 0, 2308, 2306, 1, 0, 0, 0, 2309, 2310, 5, 3, 0, 0, 2310, 2331, 1, 0, 0, 0, 2311, 2312, 5, 131, 0, 0, 2312, 2313, 5, 271, 0, 0, 2313, 2316, 5, 2, 0, 0, 2314, 2317, 3, 144, 72, 0, 2315, 2317, 3, 146, 73, 0, 2316, 2314, 1, 0, 0, 0, 2316, 2315, 1, 0, 0, 0, 2317, 2325, 1, 0, 0, 0, 2318, 2321, 5, 4, 0, 0, 2319, 2322, 3, 144, 72, 0, 2320, 2322, 3, 146, 73, 0, 2321, 2319, 1, 0, 0, 0, 2321, 2320, 1, 0, 0, 0, 2322, 2324, 1, 0, 0, 0, 2323, 2318, 1, 0, 0, 0, 2324, 2327, 1, 0, 0, 0, 2325, 2323, 1, 0, 0, 0, 2325, 2326, 1, 0, 0, 0, 2326, 2328, 1, 0, 0, 0, 2327, 2325, 1, 0, 0, 0, 2328, 2329, 5, 3, 0, 0, 2329, 2331, 1, 0, 0, 0, 2330, 2299, 1, 0, 0, 0, 2330, 2311, 1, 0, 0, 0, 2331, 145, 1, 0, 0, 0, 2332, 2353, 3, 80, 40, 0, 2333, 2353, 3, 254, 127, 0, 2334, 2349, 5, 2, 0, 0, 2335, 2338, 3, 80, 40, 0, 2336, 2338, 3, 254, 127, 0, 2337, 2335, 1, 0, 0, 0, 2337, 2336, 1, 0, 0, 0, 2338, 2346, 1, 0, 0, 0, 2339, 2342, 5, 4, 0, 0, 2340, 2343, 3, 80, 40, 0, 2341, 2343, 3, 254, 127, 0, 2342, 2340, 1, 0, 0, 0, 2342, 2341, 1, 0, 0, 0, 2343, 2345, 1, 0, 0, 0, 2344, 2339, 1, 0, 0, 0, 2345, 2348, 1, 0, 0, 0, 2346, 2344, 1, 0, 0, 0, 2346, 2347, 1, 0, 0, 0, 2347, 2350, 1, 0, 0, 0, 2348, 2346, 1, 0, 0, 0, 2349, 2337, 1, 0, 0, 0, 2349, 2350, 1, 0, 0, 0, 2350, 2351, 1, 0, 0, 0, 2351, 2353, 5, 3, 0, 0, 2352, 2332, 1, 0, 0, 0, 2352, 2333, 1, 0, 0, 0, 2352, 2334, 1, 0, 0, 0, 2353, 147, 1, 0, 0, 0, 2354, 2355, 5, 223, 0, 0, 2355, 2356, 5, 2, 0, 0, 2356, 2357, 3, 242, 121, 0, 2357, 2358, 5, 119, 0, 0, 2358, 2359, 3, 150, 75, 0, 2359, 2360, 5, 140, 0, 0, 2360, 2361, 5, 2, 0, 0, 2361, 2366, 3, 152, 76, 0, 2362, 2363, 5, 4, 0, 0, 2363, 2365, 3, 152, 76, 0, 2364, 2362, 1, 0, 0, 0, 2365, 2368, 1, 0, 0, 0, 2366, 2364, 1, 0, 0, 0, 2366, 2367, 1, 0, 0, 0, 2367, 2369, 1, 0, 0, 0, 2368, 2366, 1, 0, 0, 0, 2369, 2370, 5, 3, 0, 0, 2370, 2371, 5, 3, 0, 0, 2371, 149, 1, 0, 0, 0, 2372, 2385, 3, 354, 177, 0, 2373, 2374, 5, 2, 0, 0, 2374, 2379, 3, 354, 177, 0, 2375, 2376, 5, 4, 0, 0, 2376, 2378, 3, 354, 177, 0, 2377, 2375, 1, 0, 0, 0, 2378, 2381, 1, 0, 0, 0, 2379, 2377, 1, 0, 0, 0, 2379, 2380, 1, 0, 0, 0, 2380, 2382, 1, 0, 0, 0, 2381, 2379, 1, 0, 0, 0, 2382, 2383, 5, 3, 0, 0, 2383, 2385, 1, 0, 0, 0, 2384, 2372, 1, 0, 0, 0, 2384, 2373, 1, 0, 0, 0, 2385, 151, 1, 0, 0, 0, 2386, 2391, 3, 254, 127, 0, 2387, 2389, 5, 20, 0, 0, 2388, 2387, 1, 0, 0, 0, 2388, 2389, 1, 0, 0, 0, 2389, 2390, 1, 0, 0, 0, 2390, 2392, 3, 354, 177, 0, 2391, 2388, 1, 0, 0, 0, 2391, 2392, 1, 0, 0, 0, 2392, 153, 1, 0, 0, 0, 2393, 2396, 5, 327, 0, 0, 2394, 2395, 7, 30, 0, 0, 2395, 2397, 5, 199, 0, 0, 2396, 2394, 1, 0, 0, 0, 2396, 2397, 1, 0, 0, 0, 2397, 2398, 1, 0, 0, 0, 2398, 2401, 5, 2, 0, 0, 2399, 2402, 3, 156, 78, 0, 2400, 2402, 3, 158, 79, 0, 2401, 2399, 1, 0, 0, 0, 2401, 2400, 1, 0, 0, 0, 2402, 2403, 1, 0, 0, 0, 2403, 2408, 5, 3, 0, 0, 2404, 2406, 5, 20, 0, 0, 2405, 2404, 1, 0, 0, 0, 2405, 2406, 1, 0, 0, 0, 2406, 2407, 1, 0, 0, 0, 2407, 2409, 3, 354, 177, 0, 2408, 2405, 1, 0, 0, 0, 2408, 2409, 1, 0, 0, 0, 2409, 155, 1, 0, 0, 0, 2410, 2411, 3, 354, 177, 0, 2411, 2412, 5, 119, 0, 0, 2412, 2413, 3, 354, 177, 0, 2413, 2414, 5, 140, 0, 0, 2414, 2415, 5, 2, 0, 0, 2415, 2420, 3, 162, 81, 0, 2416, 2417, 5, 4, 0, 0, 2417, 2419, 3, 162, 81, 0, 2418, 2416, 1, 0, 0, 0, 2419, 2422, 1, 0, 0, 0, 2420, 2418, 1, 0, 0, 0, 2420, 2421, 1, 0, 0, 0, 2421, 2423, 1, 0, 0, 0, 2422, 2420, 1, 0, 0, 0, 2423, 2424, 5, 3, 0, 0, 2424, 157, 1, 0, 0, 0, 2425, 2426, 5, 2, 0, 0, 2426, 2431, 3, 354, 177, 0, 2427, 2428, 5, 4, 0, 0, 2428, 2430, 3, 354, 177, 0, 2429, 2427, 1, 0, 0, 0, 2430, 2433, 1, 0, 0, 0, 2431, 2429, 1, 0, 0, 0, 2431, 2432, 1, 0, 0, 0, 2432, 2434, 1, 0, 0, 0, 2433, 2431, 1, 0, 0, 0, 2434, 2435, 5, 3, 0, 0, 2435, 2436, 5, 119, 0, 0, 2436, 2437, 3, 354, 177, 0, 2437, 2438, 5, 140, 0, 0, 2438, 2439, 5, 2, 0, 0, 2439, 2444, 3, 160, 80, 0, 2440, 2441, 5, 4, 0, 0, 2441, 2443, 3, 160, 80, 0, 2442, 2440, 1, 0, 0, 0, 2443, 2446, 1, 0, 0, 0, 2444, 2442, 1, 0, 0, 0, 2444, 2445, 1, 0, 0, 0, 2445, 2447, 1, 0, 0, 0, 2446, 2444, 1, 0, 0, 0, 2447, 2448, 5, 3, 0, 0, 2448, 159, 1, 0, 0, 0, 2449, 2450, 5, 2, 0, 0, 2450, 2455, 3, 222, 111, 0, 2451, 2452, 5, 4, 0, 0, 2452, 2454, 3, 222, 111, 0, 2453, 2451, 1, 0, 0, 0, 2454, 2457, 1, 0, 0, 0, 2455, 2453, 1, 0, 0, 0, 2455, 2456, 1, 0, 0, 0, 2456, 2458, 1, 0, 0, 0, 2457, 2455, 1, 0, 0, 0, 2458, 2463, 5, 3, 0, 0, 2459, 2461, 5, 20, 0, 0, 2460, 2459, 1, 0, 0, 0, 2460, 2461, 1, 0, 0, 0, 2461, 2462, 1, 0, 0, 0, 2462, 2464, 3, 354, 177, 0, 2463, 2460, 1, 0, 0, 0, 2463, 2464, 1, 0, 0, 0, 2464, 161, 1, 0, 0, 0, 2465, 2470, 3, 222, 111, 0, 2466, 2468, 5, 20, 0, 0, 2467, 2466, 1, 0, 0, 0, 2467, 2468, 1, 0, 0, 0, 2468, 2469, 1, 0, 0, 0, 2469, 2471, 3, 354, 177, 0, 2470, 2467, 1, 0, 0, 0, 2470, 2471, 1, 0, 0, 0, 2471, 163, 1, 0, 0, 0, 2472, 2473, 5, 137, 0, 0, 2473, 2474, 5, 197, 0, 0, 2474, 2475, 5, 105, 0, 0, 2475, 165, 1, 0, 0, 0, 2476, 2477, 5, 137, 0, 0, 2477, 2478, 5, 105, 0, 0, 2478, 167, 1, 0, 0, 0, 2479, 2480, 5, 158, 0, 0, 2480, 2482, 5, 338, 0, 0, 2481, 2483, 5, 211, 0, 0, 2482, 2481, 1, 0, 0, 0, 2482, 2483, 1, 0, 0, 0, 2483, 2484, 1, 0, 0, 0, 2484, 2485, 3, 76, 38, 0, 2485, 2494, 5, 2, 0, 0, 2486, 2491, 3, 254, 127, 0, 2487, 2488, 5, 4, 0, 0, 2488, 2490, 3, 254, 127, 0, 2489, 2487, 1, 0, 0, 0, 2490, 2493, 1, 0, 0, 0, 2491, 2489, 1, 0, 0, 0, 2491, 2492, 1, 0, 0, 0, 2492, 2495, 1, 0, 0, 0, 2493, 2491, 1, 0, 0, 0, 2494, 2486, 1, 0, 0, 0, 2494, 2495, 1, 0, 0, 0, 2495, 2496, 1, 0, 0, 0, 2496, 2497, 5, 3, 0, 0, 2497, 2509, 3, 216, 108, 0, 2498, 2500, 5, 20, 0, 0, 2499, 2498, 1, 0, 0, 0, 2499, 2500, 1, 0, 0, 0, 2500, 2501, 1, 0, 0, 0, 2501, 2506, 3, 354, 177, 0, 2502, 2503, 5, 4, 0, 0, 2503, 2505, 3, 354, 177, 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, 2499, 1, 0, 0, 0, 2509, 2510, 1, 0, 0, 0, 2510, 169, 1, 0, 0, 0, 2511, 2512, 7, 31, 0, 0, 2512, 171, 1, 0, 0, 0, 2513, 2527, 3, 72, 36, 0, 2514, 2516, 5, 158, 0, 0, 2515, 2514, 1, 0, 0, 0, 2515, 2516, 1, 0, 0, 0, 2516, 2517, 1, 0, 0, 0, 2517, 2523, 3, 196, 98, 0, 2518, 2522, 3, 174, 87, 0, 2519, 2522, 3, 148, 74, 0, 2520, 2522, 3, 154, 77, 0, 2521, 2518, 1, 0, 0, 0, 2521, 2519, 1, 0, 0, 0, 2521, 2520, 1, 0, 0, 0, 2522, 2525, 1, 0, 0, 0, 2523, 2521, 1, 0, 0, 0, 2523, 2524, 1, 0, 0, 0, 2524, 2527, 1, 0, 0, 0, 2525, 2523, 1, 0, 0, 0, 2526, 2513, 1, 0, 0, 0, 2526, 2515, 1, 0, 0, 0, 2527, 173, 1, 0, 0, 0, 2528, 2529, 3, 176, 88, 0, 2529, 2531, 5, 155, 0, 0, 2530, 2532, 5, 158, 0, 0, 2531, 2530, 1, 0, 0, 0, 2531, 2532, 1, 0, 0, 0, 2532, 2533, 1, 0, 0, 0, 2533, 2535, 3, 196, 98, 0, 2534, 2536, 3, 178, 89, 0, 2535, 2534, 1, 0, 0, 0, 2535, 2536, 1, 0, 0, 0, 2536, 2546, 1, 0, 0, 0, 2537, 2538, 5, 194, 0, 0, 2538, 2539, 3, 176, 88, 0, 2539, 2541, 5, 155, 0, 0, 2540, 2542, 5, 158, 0, 0, 2541, 2540, 1, 0, 0, 0, 2541, 2542, 1, 0, 0, 0, 2542, 2543, 1, 0, 0, 0, 2543, 2544, 3, 196, 98, 0, 2544, 2546, 1, 0, 0, 0, 2545, 2528, 1, 0, 0, 0, 2545, 2537, 1, 0, 0, 0, 2546, 175, 1, 0, 0, 0, 2547, 2549, 5, 144, 0, 0, 2548, 2547, 1, 0, 0, 0, 2548, 2549, 1, 0, 0, 0, 2549, 2564, 1, 0, 0, 0, 2550, 2564, 5, 60, 0, 0, 2551, 2553, 5, 161, 0, 0, 2552, 2554, 5, 211, 0, 0, 2553, 2552, 1, 0, 0, 0, 2553, 2554, 1, 0, 0, 0, 2554, 2564, 1, 0, 0, 0, 2555, 2557, 5, 161, 0, 0, 2556, 2555, 1, 0, 0, 0, 2556, 2557, 1, 0, 0, 0, 2557, 2558, 1, 0, 0, 0, 2558, 2564, 7, 32, 0, 0, 2559, 2561, 7, 33, 0, 0, 2560, 2562, 5, 211, 0, 0, 2561, 2560, 1, 0, 0, 0, 2561, 2562, 1, 0, 0, 0, 2562, 2564, 1, 0, 0, 0, 2563, 2548, 1, 0, 0, 0, 2563, 2550, 1, 0, 0, 0, 2563, 2551, 1, 0, 0, 0, 2563, 2556, 1, 0, 0, 0, 2563, 2559, 1, 0, 0, 0, 2564, 177, 1, 0, 0, 0, 2565, 2572, 5, 203, 0, 0, 2566, 2573, 3, 262, 131, 0, 2567, 2570, 3, 84, 42, 0, 2568, 2569, 5, 352, 0, 0, 2569, 2571, 3, 84, 42, 0, 2570, 2568, 1, 0, 0, 0, 2570, 2571, 1, 0, 0, 0, 2571, 2573, 1, 0, 0, 0, 2572, 2566, 1, 0, 0, 0, 2572, 2567, 1, 0, 0, 0, 2573, 2577, 1, 0, 0, 0, 2574, 2575, 5, 332, 0, 0, 2575, 2577, 3, 184, 92, 0, 2576, 2565, 1, 0, 0, 0, 2576, 2574, 1, 0, 0, 0, 2577, 179, 1, 0, 0, 0, 2578, 2579, 5, 295, 0, 0, 2579, 2581, 5, 2, 0, 0, 2580, 2582, 3, 182, 91, 0, 2581, 2580, 1, 0, 0, 0, 2581, 2582, 1, 0, 0, 0, 2582, 2583, 1, 0, 0, 0, 2583, 2588, 5, 3, 0, 0, 2584, 2585, 5, 243, 0, 0, 2585, 2586, 5, 2, 0, 0, 2586, 2587, 5, 382, 0, 0, 2587, 2589, 5, 3, 0, 0, 2588, 2584, 1, 0, 0, 0, 2588, 2589, 1, 0, 0, 0, 2589, 181, 1, 0, 0, 0, 2590, 2592, 5, 362, 0, 0, 2591, 2590, 1, 0, 0, 0, 2591, 2592, 1, 0, 0, 0, 2592, 2593, 1, 0, 0, 0, 2593, 2594, 7, 34, 0, 0, 2594, 2615, 5, 222, 0, 0, 2595, 2596, 3, 254, 127, 0, 2596, 2597, 5, 258, 0, 0, 2597, 2615, 1, 0, 0, 0, 2598, 2599, 5, 29, 0, 0, 2599, 2600, 5, 382, 0, 0, 2600, 2601, 5, 210, 0, 0, 2601, 2602, 5, 201, 0, 0, 2602, 2611, 5, 382, 0, 0, 2603, 2609, 5, 203, 0, 0, 2604, 2610, 3, 354, 177, 0, 2605, 2606, 3, 348, 174, 0, 2606, 2607, 5, 2, 0, 0, 2607, 2608, 5, 3, 0, 0, 2608, 2610, 1, 0, 0, 0, 2609, 2604, 1, 0, 0, 0, 2609, 2605, 1, 0, 0, 0, 2610, 2612, 1, 0, 0, 0, 2611, 2603, 1, 0, 0, 0, 2611, 2612, 1, 0, 0, 0, 2612, 2615, 1, 0, 0, 0, 2613, 2615, 3, 254, 127, 0, 2614, 2591, 1, 0, 0, 0, 2614, 2595, 1, 0, 0, 0, 2614, 2598, 1, 0, 0, 0, 2614, 2613, 1, 0, 0, 0, 2615, 183, 1, 0, 0, 0, 2616, 2617, 5, 2, 0, 0, 2617, 2618, 3, 186, 93, 0, 2618, 2619, 5, 3, 0, 0, 2619, 185, 1, 0, 0, 0, 2620, 2625, 3, 350, 175, 0, 2621, 2622, 5, 4, 0, 0, 2622, 2624, 3, 350, 175, 0, 2623, 2621, 1, 0, 0, 0, 2624, 2627, 1, 0, 0, 0, 2625, 2623, 1, 0, 0, 0, 2625, 2626, 1, 0, 0, 0, 2626, 187, 1, 0, 0, 0, 2627, 2625, 1, 0, 0, 0, 2628, 2629, 5, 2, 0, 0, 2629, 2634, 3, 190, 95, 0, 2630, 2631, 5, 4, 0, 0, 2631, 2633, 3, 190, 95, 0, 2632, 2630, 1, 0, 0, 0, 2633, 2636, 1, 0, 0, 0, 2634, 2632, 1, 0, 0, 0, 2634, 2635, 1, 0, 0, 0, 2635, 2637, 1, 0, 0, 0, 2636, 2634, 1, 0, 0, 0, 2637, 2638, 5, 3, 0, 0, 2638, 189, 1, 0, 0, 0, 2639, 2641, 3, 350, 175, 0, 2640, 2642, 7, 25, 0, 0, 2641, 2640, 1, 0, 0, 0, 2641, 2642, 1, 0, 0, 0, 2642, 191, 1, 0, 0, 0, 2643, 2644, 5, 2, 0, 0, 2644, 2649, 3, 194, 97, 0, 2645, 2646, 5, 4, 0, 0, 2646, 2648, 3, 194, 97, 0, 2647, 2645, 1, 0, 0, 0, 2648, 2651, 1, 0, 0, 0, 2649, 2647, 1, 0, 0, 0, 2649, 2650, 1, 0, 0, 0, 2650, 2652, 1, 0, 0, 0, 2651, 2649, 1, 0, 0, 0, 2652, 2653, 5, 3, 0, 0, 2653, 193, 1, 0, 0, 0, 2654, 2657, 3, 88, 44, 0, 2655, 2656, 5, 51, 0, 0, 2656, 2658, 3, 364, 182, 0, 2657, 2655, 1, 0, 0, 0, 2657, 2658, 1, 0, 0, 0, 2658, 195, 1, 0, 0, 0, 2659, 2663, 3, 72, 36, 0, 2660, 2663, 3, 76, 38, 0, 2661, 2663, 3, 90, 45, 0, 2662, 2659, 1, 0, 0, 0, 2662, 2660, 1, 0, 0, 0, 2662, 2661, 1, 0, 0, 0, 2663, 2665, 1, 0, 0, 0, 2664, 2666, 3, 138, 69, 0, 2665, 2664, 1, 0, 0, 0, 2665, 2666, 1, 0, 0, 0, 2666, 2668, 1, 0, 0, 0, 2667, 2669, 3, 180, 90, 0, 2668, 2667, 1, 0, 0, 0, 2668, 2669, 1, 0, 0, 0, 2669, 2670, 1, 0, 0, 0, 2670, 2671, 3, 216, 108, 0, 2671, 2691, 1, 0, 0, 0, 2672, 2674, 3, 198, 99, 0, 2673, 2675, 3, 180, 90, 0, 2674, 2673, 1, 0, 0, 0, 2674, 2675, 1, 0, 0, 0, 2675, 2676, 1, 0, 0, 0, 2676, 2677, 3, 216, 108, 0, 2677, 2691, 1, 0, 0, 0, 2678, 2679, 5, 2, 0, 0, 2679, 2680, 3, 172, 86, 0, 2680, 2682, 5, 3, 0, 0, 2681, 2683, 3, 180, 90, 0, 2682, 2681, 1, 0, 0, 0, 2682, 2683, 1, 0, 0, 0, 2683, 2684, 1, 0, 0, 0, 2684, 2685, 3, 216, 108, 0, 2685, 2691, 1, 0, 0, 0, 2686, 2687, 3, 200, 100, 0, 2687, 2688, 3, 216, 108, 0, 2688, 2691, 1, 0, 0, 0, 2689, 2691, 3, 212, 106, 0, 2690, 2662, 1, 0, 0, 0, 2690, 2672, 1, 0, 0, 0, 2690, 2678, 1, 0, 0, 0, 2690, 2686, 1, 0, 0, 0, 2690, 2689, 1, 0, 0, 0, 2691, 197, 1, 0, 0, 0, 2692, 2693, 5, 2, 0, 0, 2693, 2694, 3, 16, 8, 0, 2694, 2695, 5, 3, 0, 0, 2695, 199, 1, 0, 0, 0, 2696, 2697, 5, 333, 0, 0, 2697, 2702, 3, 254, 127, 0, 2698, 2699, 5, 4, 0, 0, 2699, 2701, 3, 254, 127, 0, 2700, 2698, 1, 0, 0, 0, 2701, 2704, 1, 0, 0, 0, 2702, 2700, 1, 0, 0, 0, 2702, 2703, 1, 0, 0, 0, 2703, 201, 1, 0, 0, 0, 2704, 2702, 1, 0, 0, 0, 2705, 2706, 5, 293, 0, 0, 2706, 2708, 3, 72, 36, 0, 2707, 2709, 3, 204, 102, 0, 2708, 2707, 1, 0, 0, 0, 2708, 2709, 1, 0, 0, 0, 2709, 2725, 1, 0, 0, 0, 2710, 2711, 5, 293, 0, 0, 2711, 2712, 5, 2, 0, 0, 2712, 2713, 3, 72, 36, 0, 2713, 2715, 5, 3, 0, 0, 2714, 2716, 3, 204, 102, 0, 2715, 2714, 1, 0, 0, 0, 2715, 2716, 1, 0, 0, 0, 2716, 2725, 1, 0, 0, 0, 2717, 2718, 5, 293, 0, 0, 2718, 2719, 5, 2, 0, 0, 2719, 2720, 3, 16, 8, 0, 2720, 2722, 5, 3, 0, 0, 2721, 2723, 3, 204, 102, 0, 2722, 2721, 1, 0, 0, 0, 2722, 2723, 1, 0, 0, 0, 2723, 2725, 1, 0, 0, 0, 2724, 2705, 1, 0, 0, 0, 2724, 2710, 1, 0, 0, 0, 2724, 2717, 1, 0, 0, 0, 2725, 203, 1, 0, 0, 0, 2726, 2727, 5, 346, 0, 0, 2727, 2728, 5, 274, 0, 0, 2728, 2746, 5, 217, 0, 0, 2729, 2730, 7, 35, 0, 0, 2730, 2743, 5, 31, 0, 0, 2731, 2732, 5, 2, 0, 0, 2732, 2737, 3, 254, 127, 0, 2733, 2734, 5, 4, 0, 0, 2734, 2736, 3, 254, 127, 0, 2735, 2733, 1, 0, 0, 0, 2736, 2739, 1, 0, 0, 0, 2737, 2735, 1, 0, 0, 0, 2737, 2738, 1, 0, 0, 0, 2738, 2740, 1, 0, 0, 0, 2739, 2737, 1, 0, 0, 0, 2740, 2741, 5, 3, 0, 0, 2741, 2744, 1, 0, 0, 0, 2742, 2744, 3, 254, 127, 0, 2743, 2731, 1, 0, 0, 0, 2743, 2742, 1, 0, 0, 0, 2744, 2746, 1, 0, 0, 0, 2745, 2726, 1, 0, 0, 0, 2745, 2729, 1, 0, 0, 0, 2746, 2756, 1, 0, 0, 0, 2747, 2748, 7, 36, 0, 0, 2748, 2754, 5, 31, 0, 0, 2749, 2750, 5, 2, 0, 0, 2750, 2751, 3, 96, 48, 0, 2751, 2752, 5, 3, 0, 0, 2752, 2755, 1, 0, 0, 0, 2753, 2755, 3, 104, 52, 0, 2754, 2749, 1, 0, 0, 0, 2754, 2753, 1, 0, 0, 0, 2755, 2757, 1, 0, 0, 0, 2756, 2747, 1, 0, 0, 0, 2756, 2757, 1, 0, 0, 0, 2757, 205, 1, 0, 0, 0, 2758, 2759, 3, 354, 177, 0, 2759, 2760, 5, 373, 0, 0, 2760, 2761, 3, 202, 101, 0, 2761, 207, 1, 0, 0, 0, 2762, 2765, 3, 202, 101, 0, 2763, 2765, 3, 206, 103, 0, 2764, 2762, 1, 0, 0, 0, 2764, 2763, 1, 0, 0, 0, 2765, 209, 1, 0, 0, 0, 2766, 2769, 3, 208, 104, 0, 2767, 2769, 3, 258, 129, 0, 2768, 2766, 1, 0, 0, 0, 2768, 2767, 1, 0, 0, 0, 2769, 211, 1, 0, 0, 0, 2770, 2771, 3, 214, 107, 0, 2771, 2772, 3, 216, 108, 0, 2772, 213, 1, 0, 0, 0, 2773, 2774, 3, 344, 172, 0, 2774, 2783, 5, 2, 0, 0, 2775, 2780, 3, 210, 105, 0, 2776, 2777, 5, 4, 0, 0, 2777, 2779, 3, 210, 105, 0, 2778, 2776, 1, 0, 0, 0, 2779, 2782, 1, 0, 0, 0, 2780, 2778, 1, 0, 0, 0, 2780, 2781, 1, 0, 0, 0, 2781, 2784, 1, 0, 0, 0, 2782, 2780, 1, 0, 0, 0, 2783, 2775, 1, 0, 0, 0, 2783, 2784, 1, 0, 0, 0, 2784, 2785, 1, 0, 0, 0, 2785, 2786, 5, 3, 0, 0, 2786, 215, 1, 0, 0, 0, 2787, 2789, 5, 20, 0, 0, 2788, 2787, 1, 0, 0, 0, 2788, 2789, 1, 0, 0, 0, 2789, 2790, 1, 0, 0, 0, 2790, 2792, 3, 356, 178, 0, 2791, 2793, 3, 184, 92, 0, 2792, 2791, 1, 0, 0, 0, 2792, 2793, 1, 0, 0, 0, 2793, 2795, 1, 0, 0, 0, 2794, 2788, 1, 0, 0, 0, 2794, 2795, 1, 0, 0, 0, 2795, 217, 1, 0, 0, 0, 2796, 2797, 5, 257, 0, 0, 2797, 2798, 5, 121, 0, 0, 2798, 2799, 5, 266, 0, 0, 2799, 2803, 3, 364, 182, 0, 2800, 2801, 5, 346, 0, 0, 2801, 2802, 5, 267, 0, 0, 2802, 2804, 3, 42, 21, 0, 2803, 2800, 1, 0, 0, 0, 2803, 2804, 1, 0, 0, 0, 2804, 2846, 1, 0, 0, 0, 2805, 2806, 5, 257, 0, 0, 2806, 2807, 5, 121, 0, 0, 2807, 2817, 5, 85, 0, 0, 2808, 2809, 5, 113, 0, 0, 2809, 2810, 5, 299, 0, 0, 2810, 2811, 5, 31, 0, 0, 2811, 2815, 3, 364, 182, 0, 2812, 2813, 5, 101, 0, 0, 2813, 2814, 5, 31, 0, 0, 2814, 2816, 3, 364, 182, 0, 2815, 2812, 1, 0, 0, 0, 2815, 2816, 1, 0, 0, 0, 2816, 2818, 1, 0, 0, 0, 2817, 2808, 1, 0, 0, 0, 2817, 2818, 1, 0, 0, 0, 2818, 2824, 1, 0, 0, 0, 2819, 2820, 5, 48, 0, 0, 2820, 2821, 5, 154, 0, 0, 2821, 2822, 5, 299, 0, 0, 2822, 2823, 5, 31, 0, 0, 2823, 2825, 3, 364, 182, 0, 2824, 2819, 1, 0, 0, 0, 2824, 2825, 1, 0, 0, 0, 2825, 2831, 1, 0, 0, 0, 2826, 2827, 5, 177, 0, 0, 2827, 2828, 5, 156, 0, 0, 2828, 2829, 5, 299, 0, 0, 2829, 2830, 5, 31, 0, 0, 2830, 2832, 3, 364, 182, 0, 2831, 2826, 1, 0, 0, 0, 2831, 2832, 1, 0, 0, 0, 2832, 2837, 1, 0, 0, 0, 2833, 2834, 5, 166, 0, 0, 2834, 2835, 5, 299, 0, 0, 2835, 2836, 5, 31, 0, 0, 2836, 2838, 3, 364, 182, 0, 2837, 2833, 1, 0, 0, 0, 2837, 2838, 1, 0, 0, 0, 2838, 2843, 1, 0, 0, 0, 2839, 2840, 5, 198, 0, 0, 2840, 2841, 5, 83, 0, 0, 2841, 2842, 5, 20, 0, 0, 2842, 2844, 3, 364, 182, 0, 2843, 2839, 1, 0, 0, 0, 2843, 2844, 1, 0, 0, 0, 2844, 2846, 1, 0, 0, 0, 2845, 2796, 1, 0, 0, 0, 2845, 2805, 1, 0, 0, 0, 2846, 219, 1, 0, 0, 0, 2847, 2852, 3, 222, 111, 0, 2848, 2849, 5, 4, 0, 0, 2849, 2851, 3, 222, 111, 0, 2850, 2848, 1, 0, 0, 0, 2851, 2854, 1, 0, 0, 0, 2852, 2850, 1, 0, 0, 0, 2852, 2853, 1, 0, 0, 0, 2853, 221, 1, 0, 0, 0, 2854, 2852, 1, 0, 0, 0, 2855, 2860, 3, 350, 175, 0, 2856, 2857, 5, 5, 0, 0, 2857, 2859, 3, 350, 175, 0, 2858, 2856, 1, 0, 0, 0, 2859, 2862, 1, 0, 0, 0, 2860, 2858, 1, 0, 0, 0, 2860, 2861, 1, 0, 0, 0, 2861, 223, 1, 0, 0, 0, 2862, 2860, 1, 0, 0, 0, 2863, 2870, 3, 222, 111, 0, 2864, 2865, 4, 112, 5, 0, 2865, 2866, 3, 222, 111, 0, 2866, 2867, 5, 5, 0, 0, 2867, 2868, 3, 78, 39, 0, 2868, 2870, 1, 0, 0, 0, 2869, 2863, 1, 0, 0, 0, 2869, 2864, 1, 0, 0, 0, 2870, 225, 1, 0, 0, 0, 2871, 2876, 3, 228, 114, 0, 2872, 2873, 5, 4, 0, 0, 2873, 2875, 3, 228, 114, 0, 2874, 2872, 1, 0, 0, 0, 2875, 2878, 1, 0, 0, 0, 2876, 2874, 1, 0, 0, 0, 2876, 2877, 1, 0, 0, 0, 2877, 227, 1, 0, 0, 0, 2878, 2876, 1, 0, 0, 0, 2879, 2882, 3, 222, 111, 0, 2880, 2881, 5, 207, 0, 0, 2881, 2883, 3, 42, 21, 0, 2882, 2880, 1, 0, 0, 0, 2882, 2883, 1, 0, 0, 0, 2883, 229, 1, 0, 0, 0, 2884, 2885, 3, 350, 175, 0, 2885, 2886, 5, 5, 0, 0, 2886, 2888, 1, 0, 0, 0, 2887, 2884, 1, 0, 0, 0, 2887, 2888, 1, 0, 0, 0, 2888, 2889, 1, 0, 0, 0, 2889, 2890, 3, 350, 175, 0, 2890, 231, 1, 0, 0, 0, 2891, 2892, 3, 350, 175, 0, 2892, 2893, 5, 5, 0, 0, 2893, 2895, 1, 0, 0, 0, 2894, 2891, 1, 0, 0, 0, 2894, 2895, 1, 0, 0, 0, 2895, 2896, 1, 0, 0, 0, 2896, 2897, 3, 350, 175, 0, 2897, 233, 1, 0, 0, 0, 2898, 2899, 3, 80, 40, 0, 2899, 235, 1, 0, 0, 0, 2900, 2901, 3, 254, 127, 0, 2901, 237, 1, 0, 0, 0, 2902, 2903, 3, 348, 174, 0, 2903, 2904, 5, 5, 0, 0, 2904, 2906, 1, 0, 0, 0, 2905, 2902, 1, 0, 0, 0, 2906, 2909, 1, 0, 0, 0, 2907, 2905, 1, 0, 0, 0, 2907, 2908, 1, 0, 0, 0, 2908, 2910, 1, 0, 0, 0, 2909, 2907, 1, 0, 0, 0, 2910, 2911, 5, 363, 0, 0, 2911, 239, 1, 0, 0, 0, 2912, 2916, 3, 238, 119, 0, 2913, 2916, 3, 234, 117, 0, 2914, 2916, 3, 236, 118, 0, 2915, 2912, 1, 0, 0, 0, 2915, 2913, 1, 0, 0, 0, 2915, 2914, 1, 0, 0, 0, 2916, 2924, 1, 0, 0, 0, 2917, 2919, 5, 20, 0, 0, 2918, 2917, 1, 0, 0, 0, 2918, 2919, 1, 0, 0, 0, 2919, 2922, 1, 0, 0, 0, 2920, 2923, 3, 350, 175, 0, 2921, 2923, 3, 184, 92, 0, 2922, 2920, 1, 0, 0, 0, 2922, 2921, 1, 0, 0, 0, 2923, 2925, 1, 0, 0, 0, 2924, 2918, 1, 0, 0, 0, 2924, 2925, 1, 0, 0, 0, 2925, 241, 1, 0, 0, 0, 2926, 2931, 3, 240, 120, 0, 2927, 2928, 5, 4, 0, 0, 2928, 2930, 3, 240, 120, 0, 2929, 2927, 1, 0, 0, 0, 2930, 2933, 1, 0, 0, 0, 2931, 2929, 1, 0, 0, 0, 2931, 2932, 1, 0, 0, 0, 2932, 243, 1, 0, 0, 0, 2933, 2931, 1, 0, 0, 0, 2934, 2935, 3, 242, 121, 0, 2935, 245, 1, 0, 0, 0, 2936, 2937, 5, 2, 0, 0, 2937, 2942, 3, 248, 124, 0, 2938, 2939, 5, 4, 0, 0, 2939, 2941, 3, 248, 124, 0, 2940, 2938, 1, 0, 0, 0, 2941, 2944, 1, 0, 0, 0, 2942, 2940, 1, 0, 0, 0, 2942, 2943, 1, 0, 0, 0, 2943, 2945, 1, 0, 0, 0, 2944, 2942, 1, 0, 0, 0, 2945, 2946, 5, 3, 0, 0, 2946, 247, 1, 0, 0, 0, 2947, 2950, 3, 250, 125, 0, 2948, 2950, 3, 320, 160, 0, 2949, 2947, 1, 0, 0, 0, 2949, 2948, 1, 0, 0, 0, 2950, 249, 1, 0, 0, 0, 2951, 2965, 3, 348, 174, 0, 2952, 2953, 3, 354, 177, 0, 2953, 2954, 5, 2, 0, 0, 2954, 2959, 3, 252, 126, 0, 2955, 2956, 5, 4, 0, 0, 2956, 2958, 3, 252, 126, 0, 2957, 2955, 1, 0, 0, 0, 2958, 2961, 1, 0, 0, 0, 2959, 2957, 1, 0, 0, 0, 2959, 2960, 1, 0, 0, 0, 2960, 2962, 1, 0, 0, 0, 2961, 2959, 1, 0, 0, 0, 2962, 2963, 5, 3, 0, 0, 2963, 2965, 1, 0, 0, 0, 2964, 2951, 1, 0, 0, 0, 2964, 2952, 1, 0, 0, 0, 2965, 251, 1, 0, 0, 0, 2966, 2969, 3, 348, 174, 0, 2967, 2969, 3, 274, 137, 0, 2968, 2966, 1, 0, 0, 0, 2968, 2967, 1, 0, 0, 0, 2969, 253, 1, 0, 0, 0, 2970, 2971, 3, 262, 131, 0, 2971, 255, 1, 0, 0, 0, 2972, 2973, 3, 354, 177, 0, 2973, 2974, 5, 373, 0, 0, 2974, 2975, 3, 254, 127, 0, 2975, 257, 1, 0, 0, 0, 2976, 2979, 3, 254, 127, 0, 2977, 2979, 3, 256, 128, 0, 2978, 2976, 1, 0, 0, 0, 2978, 2977, 1, 0, 0, 0, 2979, 259, 1, 0, 0, 0, 2980, 2985, 3, 254, 127, 0, 2981, 2982, 5, 4, 0, 0, 2982, 2984, 3, 254, 127, 0, 2983, 2981, 1, 0, 0, 0, 2984, 2987, 1, 0, 0, 0, 2985, 2983, 1, 0, 0, 0, 2985, 2986, 1, 0, 0, 0, 2986, 261, 1, 0, 0, 0, 2987, 2985, 1, 0, 0, 0, 2988, 2989, 6, 131, -1, 0, 2989, 2990, 7, 37, 0, 0, 2990, 3001, 3, 262, 131, 5, 2991, 2992, 5, 105, 0, 0, 2992, 2993, 5, 2, 0, 0, 2993, 2994, 3, 16, 8, 0, 2994, 2995, 5, 3, 0, 0, 2995, 3001, 1, 0, 0, 0, 2996, 2998, 3, 266, 133, 0, 2997, 2999, 3, 264, 132, 0, 2998, 2997, 1, 0, 0, 0, 2998, 2999, 1, 0, 0, 0, 2999, 3001, 1, 0, 0, 0, 3000, 2988, 1, 0, 0, 0, 3000, 2991, 1, 0, 0, 0, 3000, 2996, 1, 0, 0, 0, 3001, 3010, 1, 0, 0, 0, 3002, 3003, 10, 2, 0, 0, 3003, 3004, 5, 14, 0, 0, 3004, 3009, 3, 262, 131, 3, 3005, 3006, 10, 1, 0, 0, 3006, 3007, 5, 208, 0, 0, 3007, 3009, 3, 262, 131, 2, 3008, 3002, 1, 0, 0, 0, 3008, 3005, 1, 0, 0, 0, 3009, 3012, 1, 0, 0, 0, 3010, 3008, 1, 0, 0, 0, 3010, 3011, 1, 0, 0, 0, 3011, 263, 1, 0, 0, 0, 3012, 3010, 1, 0, 0, 0, 3013, 3015, 5, 197, 0, 0, 3014, 3013, 1, 0, 0, 0, 3014, 3015, 1, 0, 0, 0, 3015, 3016, 1, 0, 0, 0, 3016, 3017, 5, 24, 0, 0, 3017, 3018, 3, 266, 133, 0, 3018, 3019, 5, 14, 0, 0, 3019, 3020, 3, 266, 133, 0, 3020, 3096, 1, 0, 0, 0, 3021, 3023, 5, 197, 0, 0, 3022, 3021, 1, 0, 0, 0, 3022, 3023, 1, 0, 0, 0, 3023, 3024, 1, 0, 0, 0, 3024, 3025, 5, 140, 0, 0, 3025, 3026, 5, 2, 0, 0, 3026, 3031, 3, 254, 127, 0, 3027, 3028, 5, 4, 0, 0, 3028, 3030, 3, 254, 127, 0, 3029, 3027, 1, 0, 0, 0, 3030, 3033, 1, 0, 0, 0, 3031, 3029, 1, 0, 0, 0, 3031, 3032, 1, 0, 0, 0, 3032, 3034, 1, 0, 0, 0, 3033, 3031, 1, 0, 0, 0, 3034, 3035, 5, 3, 0, 0, 3035, 3096, 1, 0, 0, 0, 3036, 3038, 5, 197, 0, 0, 3037, 3036, 1, 0, 0, 0, 3037, 3038, 1, 0, 0, 0, 3038, 3039, 1, 0, 0, 0, 3039, 3040, 5, 140, 0, 0, 3040, 3041, 5, 2, 0, 0, 3041, 3042, 3, 16, 8, 0, 3042, 3043, 5, 3, 0, 0, 3043, 3096, 1, 0, 0, 0, 3044, 3046, 5, 197, 0, 0, 3045, 3044, 1, 0, 0, 0, 3045, 3046, 1, 0, 0, 0, 3046, 3047, 1, 0, 0, 0, 3047, 3048, 7, 38, 0, 0, 3048, 3096, 3, 266, 133, 0, 3049, 3051, 5, 197, 0, 0, 3050, 3049, 1, 0, 0, 0, 3050, 3051, 1, 0, 0, 0, 3051, 3052, 1, 0, 0, 0, 3052, 3053, 7, 39, 0, 0, 3053, 3067, 7, 40, 0, 0, 3054, 3055, 5, 2, 0, 0, 3055, 3068, 5, 3, 0, 0, 3056, 3057, 5, 2, 0, 0, 3057, 3062, 3, 254, 127, 0, 3058, 3059, 5, 4, 0, 0, 3059, 3061, 3, 254, 127, 0, 3060, 3058, 1, 0, 0, 0, 3061, 3064, 1, 0, 0, 0, 3062, 3060, 1, 0, 0, 0, 3062, 3063, 1, 0, 0, 0, 3063, 3065, 1, 0, 0, 0, 3064, 3062, 1, 0, 0, 0, 3065, 3066, 5, 3, 0, 0, 3066, 3068, 1, 0, 0, 0, 3067, 3054, 1, 0, 0, 0, 3067, 3056, 1, 0, 0, 0, 3068, 3096, 1, 0, 0, 0, 3069, 3071, 5, 197, 0, 0, 3070, 3069, 1, 0, 0, 0, 3070, 3071, 1, 0, 0, 0, 3071, 3072, 1, 0, 0, 0, 3072, 3073, 7, 39, 0, 0, 3073, 3076, 3, 266, 133, 0, 3074, 3075, 5, 100, 0, 0, 3075, 3077, 3, 364, 182, 0, 3076, 3074, 1, 0, 0, 0, 3076, 3077, 1, 0, 0, 0, 3077, 3096, 1, 0, 0, 0, 3078, 3080, 5, 153, 0, 0, 3079, 3081, 5, 197, 0, 0, 3080, 3079, 1, 0, 0, 0, 3080, 3081, 1, 0, 0, 0, 3081, 3082, 1, 0, 0, 0, 3082, 3096, 5, 198, 0, 0, 3083, 3085, 5, 153, 0, 0, 3084, 3086, 5, 197, 0, 0, 3085, 3084, 1, 0, 0, 0, 3085, 3086, 1, 0, 0, 0, 3086, 3087, 1, 0, 0, 0, 3087, 3096, 7, 41, 0, 0, 3088, 3090, 5, 153, 0, 0, 3089, 3091, 5, 197, 0, 0, 3090, 3089, 1, 0, 0, 0, 3090, 3091, 1, 0, 0, 0, 3091, 3092, 1, 0, 0, 0, 3092, 3093, 5, 92, 0, 0, 3093, 3094, 5, 123, 0, 0, 3094, 3096, 3, 266, 133, 0, 3095, 3014, 1, 0, 0, 0, 3095, 3022, 1, 0, 0, 0, 3095, 3037, 1, 0, 0, 0, 3095, 3045, 1, 0, 0, 0, 3095, 3050, 1, 0, 0, 0, 3095, 3070, 1, 0, 0, 0, 3095, 3078, 1, 0, 0, 0, 3095, 3083, 1, 0, 0, 0, 3095, 3088, 1, 0, 0, 0, 3096, 265, 1, 0, 0, 0, 3097, 3098, 6, 133, -1, 0, 3098, 3102, 3, 270, 135, 0, 3099, 3100, 7, 42, 0, 0, 3100, 3102, 3, 266, 133, 7, 3101, 3097, 1, 0, 0, 0, 3101, 3099, 1, 0, 0, 0, 3102, 3124, 1, 0, 0, 0, 3103, 3104, 10, 6, 0, 0, 3104, 3105, 7, 43, 0, 0, 3105, 3123, 3, 266, 133, 7, 3106, 3107, 10, 5, 0, 0, 3107, 3108, 7, 44, 0, 0, 3108, 3123, 3, 266, 133, 6, 3109, 3110, 10, 4, 0, 0, 3110, 3111, 5, 367, 0, 0, 3111, 3123, 3, 266, 133, 5, 3112, 3113, 10, 3, 0, 0, 3113, 3114, 5, 370, 0, 0, 3114, 3123, 3, 266, 133, 4, 3115, 3116, 10, 2, 0, 0, 3116, 3117, 5, 368, 0, 0, 3117, 3123, 3, 266, 133, 3, 3118, 3119, 10, 1, 0, 0, 3119, 3120, 3, 276, 138, 0, 3120, 3121, 3, 266, 133, 2, 3121, 3123, 1, 0, 0, 0, 3122, 3103, 1, 0, 0, 0, 3122, 3106, 1, 0, 0, 0, 3122, 3109, 1, 0, 0, 0, 3122, 3112, 1, 0, 0, 0, 3122, 3115, 1, 0, 0, 0, 3122, 3118, 1, 0, 0, 0, 3123, 3126, 1, 0, 0, 0, 3124, 3122, 1, 0, 0, 0, 3124, 3125, 1, 0, 0, 0, 3125, 267, 1, 0, 0, 0, 3126, 3124, 1, 0, 0, 0, 3127, 3128, 7, 45, 0, 0, 3128, 269, 1, 0, 0, 0, 3129, 3130, 6, 135, -1, 0, 3130, 3379, 7, 46, 0, 0, 3131, 3132, 7, 47, 0, 0, 3132, 3135, 5, 2, 0, 0, 3133, 3136, 3, 268, 134, 0, 3134, 3136, 3, 364, 182, 0, 3135, 3133, 1, 0, 0, 0, 3135, 3134, 1, 0, 0, 0, 3136, 3137, 1, 0, 0, 0, 3137, 3138, 5, 4, 0, 0, 3138, 3139, 3, 266, 133, 0, 3139, 3140, 5, 4, 0, 0, 3140, 3141, 3, 266, 133, 0, 3141, 3142, 5, 3, 0, 0, 3142, 3379, 1, 0, 0, 0, 3143, 3144, 7, 48, 0, 0, 3144, 3147, 5, 2, 0, 0, 3145, 3148, 3, 268, 134, 0, 3146, 3148, 3, 364, 182, 0, 3147, 3145, 1, 0, 0, 0, 3147, 3146, 1, 0, 0, 0, 3148, 3149, 1, 0, 0, 0, 3149, 3150, 5, 4, 0, 0, 3150, 3151, 3, 266, 133, 0, 3151, 3152, 5, 4, 0, 0, 3152, 3153, 3, 266, 133, 0, 3153, 3154, 5, 3, 0, 0, 3154, 3379, 1, 0, 0, 0, 3155, 3157, 5, 35, 0, 0, 3156, 3158, 3, 330, 165, 0, 3157, 3156, 1, 0, 0, 0, 3158, 3159, 1, 0, 0, 0, 3159, 3157, 1, 0, 0, 0, 3159, 3160, 1, 0, 0, 0, 3160, 3163, 1, 0, 0, 0, 3161, 3162, 5, 97, 0, 0, 3162, 3164, 3, 254, 127, 0, 3163, 3161, 1, 0, 0, 0, 3163, 3164, 1, 0, 0, 0, 3164, 3165, 1, 0, 0, 0, 3165, 3166, 5, 99, 0, 0, 3166, 3379, 1, 0, 0, 0, 3167, 3168, 5, 35, 0, 0, 3168, 3170, 3, 254, 127, 0, 3169, 3171, 3, 330, 165, 0, 3170, 3169, 1, 0, 0, 0, 3171, 3172, 1, 0, 0, 0, 3172, 3170, 1, 0, 0, 0, 3172, 3173, 1, 0, 0, 0, 3173, 3176, 1, 0, 0, 0, 3174, 3175, 5, 97, 0, 0, 3175, 3177, 3, 254, 127, 0, 3176, 3174, 1, 0, 0, 0, 3176, 3177, 1, 0, 0, 0, 3177, 3178, 1, 0, 0, 0, 3178, 3179, 5, 99, 0, 0, 3179, 3379, 1, 0, 0, 0, 3180, 3181, 7, 49, 0, 0, 3181, 3182, 5, 2, 0, 0, 3182, 3183, 3, 254, 127, 0, 3183, 3184, 5, 20, 0, 0, 3184, 3185, 3, 304, 152, 0, 3185, 3186, 5, 3, 0, 0, 3186, 3379, 1, 0, 0, 0, 3187, 3188, 5, 286, 0, 0, 3188, 3197, 5, 2, 0, 0, 3189, 3194, 3, 240, 120, 0, 3190, 3191, 5, 4, 0, 0, 3191, 3193, 3, 240, 120, 0, 3192, 3190, 1, 0, 0, 0, 3193, 3196, 1, 0, 0, 0, 3194, 3192, 1, 0, 0, 0, 3194, 3195, 1, 0, 0, 0, 3195, 3198, 1, 0, 0, 0, 3196, 3194, 1, 0, 0, 0, 3197, 3189, 1, 0, 0, 0, 3197, 3198, 1, 0, 0, 0, 3198, 3199, 1, 0, 0, 0, 3199, 3379, 5, 3, 0, 0, 3200, 3201, 5, 116, 0, 0, 3201, 3202, 5, 2, 0, 0, 3202, 3205, 3, 254, 127, 0, 3203, 3204, 5, 138, 0, 0, 3204, 3206, 5, 199, 0, 0, 3205, 3203, 1, 0, 0, 0, 3205, 3206, 1, 0, 0, 0, 3206, 3207, 1, 0, 0, 0, 3207, 3208, 5, 3, 0, 0, 3208, 3379, 1, 0, 0, 0, 3209, 3210, 5, 17, 0, 0, 3210, 3211, 5, 2, 0, 0, 3211, 3214, 3, 254, 127, 0, 3212, 3213, 5, 138, 0, 0, 3213, 3215, 5, 199, 0, 0, 3214, 3212, 1, 0, 0, 0, 3214, 3215, 1, 0, 0, 0, 3215, 3216, 1, 0, 0, 0, 3216, 3217, 5, 3, 0, 0, 3217, 3379, 1, 0, 0, 0, 3218, 3219, 5, 157, 0, 0, 3219, 3220, 5, 2, 0, 0, 3220, 3223, 3, 254, 127, 0, 3221, 3222, 5, 138, 0, 0, 3222, 3224, 5, 199, 0, 0, 3223, 3221, 1, 0, 0, 0, 3223, 3224, 1, 0, 0, 0, 3224, 3225, 1, 0, 0, 0, 3225, 3226, 5, 3, 0, 0, 3226, 3379, 1, 0, 0, 0, 3227, 3228, 5, 225, 0, 0, 3228, 3229, 5, 2, 0, 0, 3229, 3230, 3, 266, 133, 0, 3230, 3231, 5, 140, 0, 0, 3231, 3232, 3, 266, 133, 0, 3232, 3233, 5, 3, 0, 0, 3233, 3379, 1, 0, 0, 0, 3234, 3379, 3, 274, 137, 0, 3235, 3379, 5, 363, 0, 0, 3236, 3237, 3, 348, 174, 0, 3237, 3238, 5, 5, 0, 0, 3238, 3239, 5, 363, 0, 0, 3239, 3379, 1, 0, 0, 0, 3240, 3241, 5, 2, 0, 0, 3241, 3244, 3, 240, 120, 0, 3242, 3243, 5, 4, 0, 0, 3243, 3245, 3, 240, 120, 0, 3244, 3242, 1, 0, 0, 0, 3245, 3246, 1, 0, 0, 0, 3246, 3244, 1, 0, 0, 0, 3246, 3247, 1, 0, 0, 0, 3247, 3248, 1, 0, 0, 0, 3248, 3249, 5, 3, 0, 0, 3249, 3379, 1, 0, 0, 0, 3250, 3251, 5, 2, 0, 0, 3251, 3252, 3, 16, 8, 0, 3252, 3253, 5, 3, 0, 0, 3253, 3379, 1, 0, 0, 0, 3254, 3255, 5, 136, 0, 0, 3255, 3256, 5, 2, 0, 0, 3256, 3257, 3, 254, 127, 0, 3257, 3258, 5, 3, 0, 0, 3258, 3379, 1, 0, 0, 0, 3259, 3260, 3, 344, 172, 0, 3260, 3272, 5, 2, 0, 0, 3261, 3263, 3, 170, 85, 0, 3262, 3261, 1, 0, 0, 0, 3262, 3263, 1, 0, 0, 0, 3263, 3264, 1, 0, 0, 0, 3264, 3269, 3, 258, 129, 0, 3265, 3266, 5, 4, 0, 0, 3266, 3268, 3, 258, 129, 0, 3267, 3265, 1, 0, 0, 0, 3268, 3271, 1, 0, 0, 0, 3269, 3267, 1, 0, 0, 0, 3269, 3270, 1, 0, 0, 0, 3270, 3273, 1, 0, 0, 0, 3271, 3269, 1, 0, 0, 0, 3272, 3262, 1, 0, 0, 0, 3272, 3273, 1, 0, 0, 0, 3273, 3274, 1, 0, 0, 0, 3274, 3281, 5, 3, 0, 0, 3275, 3276, 5, 114, 0, 0, 3276, 3277, 5, 2, 0, 0, 3277, 3278, 5, 344, 0, 0, 3278, 3279, 3, 262, 131, 0, 3279, 3280, 5, 3, 0, 0, 3280, 3282, 1, 0, 0, 0, 3281, 3275, 1, 0, 0, 0, 3281, 3282, 1, 0, 0, 0, 3282, 3285, 1, 0, 0, 0, 3283, 3284, 7, 50, 0, 0, 3284, 3286, 5, 199, 0, 0, 3285, 3283, 1, 0, 0, 0, 3285, 3286, 1, 0, 0, 0, 3286, 3289, 1, 0, 0, 0, 3287, 3288, 5, 213, 0, 0, 3288, 3290, 3, 336, 168, 0, 3289, 3287, 1, 0, 0, 0, 3289, 3290, 1, 0, 0, 0, 3290, 3379, 1, 0, 0, 0, 3291, 3292, 3, 354, 177, 0, 3292, 3293, 5, 372, 0, 0, 3293, 3294, 3, 254, 127, 0, 3294, 3379, 1, 0, 0, 0, 3295, 3296, 5, 2, 0, 0, 3296, 3299, 3, 354, 177, 0, 3297, 3298, 5, 4, 0, 0, 3298, 3300, 3, 354, 177, 0, 3299, 3297, 1, 0, 0, 0, 3300, 3301, 1, 0, 0, 0, 3301, 3299, 1, 0, 0, 0, 3301, 3302, 1, 0, 0, 0, 3302, 3303, 1, 0, 0, 0, 3303, 3304, 5, 3, 0, 0, 3304, 3305, 5, 372, 0, 0, 3305, 3306, 3, 254, 127, 0, 3306, 3379, 1, 0, 0, 0, 3307, 3379, 3, 82, 41, 0, 3308, 3309, 5, 2, 0, 0, 3309, 3310, 3, 254, 127, 0, 3310, 3311, 5, 3, 0, 0, 3311, 3379, 1, 0, 0, 0, 3312, 3313, 5, 110, 0, 0, 3313, 3314, 5, 2, 0, 0, 3314, 3315, 3, 354, 177, 0, 3315, 3316, 5, 123, 0, 0, 3316, 3317, 3, 266, 133, 0, 3317, 3318, 5, 3, 0, 0, 3318, 3379, 1, 0, 0, 0, 3319, 3320, 7, 51, 0, 0, 3320, 3321, 5, 2, 0, 0, 3321, 3322, 3, 266, 133, 0, 3322, 3323, 7, 52, 0, 0, 3323, 3326, 3, 266, 133, 0, 3324, 3325, 7, 53, 0, 0, 3325, 3327, 3, 266, 133, 0, 3326, 3324, 1, 0, 0, 0, 3326, 3327, 1, 0, 0, 0, 3327, 3328, 1, 0, 0, 0, 3328, 3329, 5, 3, 0, 0, 3329, 3379, 1, 0, 0, 0, 3330, 3331, 5, 315, 0, 0, 3331, 3333, 5, 2, 0, 0, 3332, 3334, 7, 54, 0, 0, 3333, 3332, 1, 0, 0, 0, 3333, 3334, 1, 0, 0, 0, 3334, 3336, 1, 0, 0, 0, 3335, 3337, 3, 266, 133, 0, 3336, 3335, 1, 0, 0, 0, 3336, 3337, 1, 0, 0, 0, 3337, 3338, 1, 0, 0, 0, 3338, 3339, 5, 123, 0, 0, 3339, 3340, 3, 266, 133, 0, 3340, 3341, 5, 3, 0, 0, 3341, 3379, 1, 0, 0, 0, 3342, 3343, 5, 215, 0, 0, 3343, 3344, 5, 2, 0, 0, 3344, 3345, 3, 266, 133, 0, 3345, 3346, 5, 224, 0, 0, 3346, 3347, 3, 266, 133, 0, 3347, 3348, 5, 123, 0, 0, 3348, 3351, 3, 266, 133, 0, 3349, 3350, 5, 119, 0, 0, 3350, 3352, 3, 266, 133, 0, 3351, 3349, 1, 0, 0, 0, 3351, 3352, 1, 0, 0, 0, 3352, 3353, 1, 0, 0, 0, 3353, 3354, 5, 3, 0, 0, 3354, 3379, 1, 0, 0, 0, 3355, 3356, 7, 55, 0, 0, 3356, 3357, 5, 2, 0, 0, 3357, 3358, 3, 266, 133, 0, 3358, 3359, 5, 3, 0, 0, 3359, 3360, 5, 347, 0, 0, 3360, 3361, 5, 130, 0, 0, 3361, 3362, 5, 2, 0, 0, 3362, 3363, 5, 209, 0, 0, 3363, 3364, 5, 31, 0, 0, 3364, 3365, 3, 104, 52, 0, 3365, 3372, 5, 3, 0, 0, 3366, 3367, 5, 114, 0, 0, 3367, 3368, 5, 2, 0, 0, 3368, 3369, 5, 344, 0, 0, 3369, 3370, 3, 262, 131, 0, 3370, 3371, 5, 3, 0, 0, 3371, 3373, 1, 0, 0, 0, 3372, 3366, 1, 0, 0, 0, 3372, 3373, 1, 0, 0, 0, 3373, 3376, 1, 0, 0, 0, 3374, 3375, 5, 213, 0, 0, 3375, 3377, 3, 336, 168, 0, 3376, 3374, 1, 0, 0, 0, 3376, 3377, 1, 0, 0, 0, 3377, 3379, 1, 0, 0, 0, 3378, 3129, 1, 0, 0, 0, 3378, 3131, 1, 0, 0, 0, 3378, 3143, 1, 0, 0, 0, 3378, 3155, 1, 0, 0, 0, 3378, 3167, 1, 0, 0, 0, 3378, 3180, 1, 0, 0, 0, 3378, 3187, 1, 0, 0, 0, 3378, 3200, 1, 0, 0, 0, 3378, 3209, 1, 0, 0, 0, 3378, 3218, 1, 0, 0, 0, 3378, 3227, 1, 0, 0, 0, 3378, 3234, 1, 0, 0, 0, 3378, 3235, 1, 0, 0, 0, 3378, 3236, 1, 0, 0, 0, 3378, 3240, 1, 0, 0, 0, 3378, 3250, 1, 0, 0, 0, 3378, 3254, 1, 0, 0, 0, 3378, 3259, 1, 0, 0, 0, 3378, 3291, 1, 0, 0, 0, 3378, 3295, 1, 0, 0, 0, 3378, 3307, 1, 0, 0, 0, 3378, 3308, 1, 0, 0, 0, 3378, 3312, 1, 0, 0, 0, 3378, 3319, 1, 0, 0, 0, 3378, 3330, 1, 0, 0, 0, 3378, 3342, 1, 0, 0, 0, 3378, 3355, 1, 0, 0, 0, 3379, 3390, 1, 0, 0, 0, 3380, 3381, 10, 9, 0, 0, 3381, 3382, 5, 6, 0, 0, 3382, 3383, 3, 266, 133, 0, 3383, 3384, 5, 7, 0, 0, 3384, 3389, 1, 0, 0, 0, 3385, 3386, 10, 7, 0, 0, 3386, 3387, 5, 5, 0, 0, 3387, 3389, 3, 354, 177, 0, 3388, 3380, 1, 0, 0, 0, 3388, 3385, 1, 0, 0, 0, 3389, 3392, 1, 0, 0, 0, 3390, 3388, 1, 0, 0, 0, 3390, 3391, 1, 0, 0, 0, 3391, 271, 1, 0, 0, 0, 3392, 3390, 1, 0, 0, 0, 3393, 3401, 5, 71, 0, 0, 3394, 3401, 5, 303, 0, 0, 3395, 3401, 5, 304, 0, 0, 3396, 3401, 5, 305, 0, 0, 3397, 3401, 5, 149, 0, 0, 3398, 3401, 5, 133, 0, 0, 3399, 3401, 3, 354, 177, 0, 3400, 3393, 1, 0, 0, 0, 3400, 3394, 1, 0, 0, 0, 3400, 3395, 1, 0, 0, 0, 3400, 3396, 1, 0, 0, 0, 3400, 3397, 1, 0, 0, 0, 3400, 3398, 1, 0, 0, 0, 3400, 3399, 1, 0, 0, 0, 3401, 273, 1, 0, 0, 0, 3402, 3418, 5, 198, 0, 0, 3403, 3418, 5, 376, 0, 0, 3404, 3405, 5, 371, 0, 0, 3405, 3418, 3, 354, 177, 0, 3406, 3418, 3, 284, 142, 0, 3407, 3408, 3, 272, 136, 0, 3408, 3409, 3, 364, 182, 0, 3409, 3418, 1, 0, 0, 0, 3410, 3418, 3, 360, 180, 0, 3411, 3418, 3, 282, 141, 0, 3412, 3414, 3, 364, 182, 0, 3413, 3412, 1, 0, 0, 0, 3414, 3415, 1, 0, 0, 0, 3415, 3413, 1, 0, 0, 0, 3415, 3416, 1, 0, 0, 0, 3416, 3418, 1, 0, 0, 0, 3417, 3402, 1, 0, 0, 0, 3417, 3403, 1, 0, 0, 0, 3417, 3404, 1, 0, 0, 0, 3417, 3406, 1, 0, 0, 0, 3417, 3407, 1, 0, 0, 0, 3417, 3410, 1, 0, 0, 0, 3417, 3411, 1, 0, 0, 0, 3417, 3413, 1, 0, 0, 0, 3418, 275, 1, 0, 0, 0, 3419, 3420, 7, 56, 0, 0, 3420, 277, 1, 0, 0, 0, 3421, 3422, 7, 57, 0, 0, 3422, 279, 1, 0, 0, 0, 3423, 3424, 7, 58, 0, 0, 3424, 281, 1, 0, 0, 0, 3425, 3426, 7, 59, 0, 0, 3426, 283, 1, 0, 0, 0, 3427, 3430, 5, 149, 0, 0, 3428, 3431, 3, 286, 143, 0, 3429, 3431, 3, 290, 145, 0, 3430, 3428, 1, 0, 0, 0, 3430, 3429, 1, 0, 0, 0, 3431, 285, 1, 0, 0, 0, 3432, 3434, 3, 288, 144, 0, 3433, 3435, 3, 292, 146, 0, 3434, 3433, 1, 0, 0, 0, 3434, 3435, 1, 0, 0, 0, 3435, 287, 1, 0, 0, 0, 3436, 3437, 3, 294, 147, 0, 3437, 3438, 3, 296, 148, 0, 3438, 3440, 1, 0, 0, 0, 3439, 3436, 1, 0, 0, 0, 3440, 3441, 1, 0, 0, 0, 3441, 3439, 1, 0, 0, 0, 3441, 3442, 1, 0, 0, 0, 3442, 289, 1, 0, 0, 0, 3443, 3446, 3, 292, 146, 0, 3444, 3447, 3, 288, 144, 0, 3445, 3447, 3, 292, 146, 0, 3446, 3444, 1, 0, 0, 0, 3446, 3445, 1, 0, 0, 0, 3446, 3447, 1, 0, 0, 0, 3447, 291, 1, 0, 0, 0, 3448, 3449, 3, 294, 147, 0, 3449, 3450, 3, 298, 149, 0, 3450, 3451, 5, 309, 0, 0, 3451, 3452, 3, 298, 149, 0, 3452, 293, 1, 0, 0, 0, 3453, 3455, 7, 60, 0, 0, 3454, 3453, 1, 0, 0, 0, 3454, 3455, 1, 0, 0, 0, 3455, 3459, 1, 0, 0, 0, 3456, 3460, 5, 382, 0, 0, 3457, 3460, 5, 384, 0, 0, 3458, 3460, 3, 364, 182, 0, 3459, 3456, 1, 0, 0, 0, 3459, 3457, 1, 0, 0, 0, 3459, 3458, 1, 0, 0, 0, 3460, 295, 1, 0, 0, 0, 3461, 3462, 7, 61, 0, 0, 3462, 297, 1, 0, 0, 0, 3463, 3464, 7, 62, 0, 0, 3464, 299, 1, 0, 0, 0, 3465, 3469, 5, 116, 0, 0, 3466, 3467, 5, 9, 0, 0, 3467, 3469, 3, 350, 175, 0, 3468, 3465, 1, 0, 0, 0, 3468, 3466, 1, 0, 0, 0, 3469, 301, 1, 0, 0, 0, 3470, 3501, 5, 27, 0, 0, 3471, 3501, 5, 308, 0, 0, 3472, 3501, 5, 32, 0, 0, 3473, 3501, 5, 276, 0, 0, 3474, 3501, 5, 272, 0, 0, 3475, 3501, 5, 150, 0, 0, 3476, 3501, 5, 151, 0, 0, 3477, 3501, 5, 25, 0, 0, 3478, 3501, 5, 174, 0, 0, 3479, 3501, 5, 117, 0, 0, 3480, 3501, 5, 234, 0, 0, 3481, 3501, 5, 95, 0, 0, 3482, 3501, 5, 71, 0, 0, 3483, 3501, 5, 303, 0, 0, 3484, 3501, 5, 305, 0, 0, 3485, 3501, 5, 304, 0, 0, 3486, 3501, 5, 285, 0, 0, 3487, 3501, 5, 41, 0, 0, 3488, 3501, 5, 40, 0, 0, 3489, 3501, 5, 334, 0, 0, 3490, 3501, 5, 26, 0, 0, 3491, 3501, 5, 80, 0, 0, 3492, 3501, 5, 79, 0, 0, 3493, 3501, 5, 200, 0, 0, 3494, 3501, 5, 340, 0, 0, 3495, 3501, 5, 149, 0, 0, 3496, 3501, 5, 19, 0, 0, 3497, 3501, 5, 286, 0, 0, 3498, 3501, 5, 177, 0, 0, 3499, 3501, 3, 354, 177, 0, 3500, 3470, 1, 0, 0, 0, 3500, 3471, 1, 0, 0, 0, 3500, 3472, 1, 0, 0, 0, 3500, 3473, 1, 0, 0, 0, 3500, 3474, 1, 0, 0, 0, 3500, 3475, 1, 0, 0, 0, 3500, 3476, 1, 0, 0, 0, 3500, 3477, 1, 0, 0, 0, 3500, 3478, 1, 0, 0, 0, 3500, 3479, 1, 0, 0, 0, 3500, 3480, 1, 0, 0, 0, 3500, 3481, 1, 0, 0, 0, 3500, 3482, 1, 0, 0, 0, 3500, 3483, 1, 0, 0, 0, 3500, 3484, 1, 0, 0, 0, 3500, 3485, 1, 0, 0, 0, 3500, 3486, 1, 0, 0, 0, 3500, 3487, 1, 0, 0, 0, 3500, 3488, 1, 0, 0, 0, 3500, 3489, 1, 0, 0, 0, 3500, 3490, 1, 0, 0, 0, 3500, 3491, 1, 0, 0, 0, 3500, 3492, 1, 0, 0, 0, 3500, 3493, 1, 0, 0, 0, 3500, 3494, 1, 0, 0, 0, 3500, 3495, 1, 0, 0, 0, 3500, 3496, 1, 0, 0, 0, 3500, 3497, 1, 0, 0, 0, 3500, 3498, 1, 0, 0, 0, 3500, 3499, 1, 0, 0, 0, 3501, 303, 1, 0, 0, 0, 3502, 3503, 5, 19, 0, 0, 3503, 3504, 5, 356, 0, 0, 3504, 3505, 3, 304, 152, 0, 3505, 3506, 5, 358, 0, 0, 3506, 3556, 1, 0, 0, 0, 3507, 3508, 5, 177, 0, 0, 3508, 3509, 5, 356, 0, 0, 3509, 3510, 3, 304, 152, 0, 3510, 3511, 5, 4, 0, 0, 3511, 3512, 3, 304, 152, 0, 3512, 3513, 5, 358, 0, 0, 3513, 3556, 1, 0, 0, 0, 3514, 3528, 5, 286, 0, 0, 3515, 3524, 5, 356, 0, 0, 3516, 3521, 3, 328, 164, 0, 3517, 3518, 5, 4, 0, 0, 3518, 3520, 3, 328, 164, 0, 3519, 3517, 1, 0, 0, 0, 3520, 3523, 1, 0, 0, 0, 3521, 3519, 1, 0, 0, 0, 3521, 3522, 1, 0, 0, 0, 3522, 3525, 1, 0, 0, 0, 3523, 3521, 1, 0, 0, 0, 3524, 3516, 1, 0, 0, 0, 3524, 3525, 1, 0, 0, 0, 3525, 3526, 1, 0, 0, 0, 3526, 3529, 5, 358, 0, 0, 3527, 3529, 5, 354, 0, 0, 3528, 3515, 1, 0, 0, 0, 3528, 3527, 1, 0, 0, 0, 3529, 3556, 1, 0, 0, 0, 3530, 3531, 5, 149, 0, 0, 3531, 3534, 7, 63, 0, 0, 3532, 3533, 5, 309, 0, 0, 3533, 3535, 5, 186, 0, 0, 3534, 3532, 1, 0, 0, 0, 3534, 3535, 1, 0, 0, 0, 3535, 3556, 1, 0, 0, 0, 3536, 3537, 5, 149, 0, 0, 3537, 3540, 7, 64, 0, 0, 3538, 3539, 5, 309, 0, 0, 3539, 3541, 7, 65, 0, 0, 3540, 3538, 1, 0, 0, 0, 3540, 3541, 1, 0, 0, 0, 3541, 3556, 1, 0, 0, 0, 3542, 3553, 3, 302, 151, 0, 3543, 3544, 5, 2, 0, 0, 3544, 3549, 5, 382, 0, 0, 3545, 3546, 5, 4, 0, 0, 3546, 3548, 5, 382, 0, 0, 3547, 3545, 1, 0, 0, 0, 3548, 3551, 1, 0, 0, 0, 3549, 3547, 1, 0, 0, 0, 3549, 3550, 1, 0, 0, 0, 3550, 3552, 1, 0, 0, 0, 3551, 3549, 1, 0, 0, 0, 3552, 3554, 5, 3, 0, 0, 3553, 3543, 1, 0, 0, 0, 3553, 3554, 1, 0, 0, 0, 3554, 3556, 1, 0, 0, 0, 3555, 3502, 1, 0, 0, 0, 3555, 3507, 1, 0, 0, 0, 3555, 3514, 1, 0, 0, 0, 3555, 3530, 1, 0, 0, 0, 3555, 3536, 1, 0, 0, 0, 3555, 3542, 1, 0, 0, 0, 3556, 305, 1, 0, 0, 0, 3557, 3562, 3, 308, 154, 0, 3558, 3559, 5, 4, 0, 0, 3559, 3561, 3, 308, 154, 0, 3560, 3558, 1, 0, 0, 0, 3561, 3564, 1, 0, 0, 0, 3562, 3560, 1, 0, 0, 0, 3562, 3563, 1, 0, 0, 0, 3563, 307, 1, 0, 0, 0, 3564, 3562, 1, 0, 0, 0, 3565, 3566, 3, 88, 44, 0, 3566, 3570, 3, 304, 152, 0, 3567, 3569, 3, 314, 157, 0, 3568, 3567, 1, 0, 0, 0, 3569, 3572, 1, 0, 0, 0, 3570, 3568, 1, 0, 0, 0, 3570, 3571, 1, 0, 0, 0, 3571, 309, 1, 0, 0, 0, 3572, 3570, 1, 0, 0, 0, 3573, 3578, 3, 312, 156, 0, 3574, 3575, 5, 4, 0, 0, 3575, 3577, 3, 312, 156, 0, 3576, 3574, 1, 0, 0, 0, 3577, 3580, 1, 0, 0, 0, 3578, 3576, 1, 0, 0, 0, 3578, 3579, 1, 0, 0, 0, 3579, 311, 1, 0, 0, 0, 3580, 3578, 1, 0, 0, 0, 3581, 3582, 3, 80, 40, 0, 3582, 3586, 3, 304, 152, 0, 3583, 3585, 3, 314, 157, 0, 3584, 3583, 1, 0, 0, 0, 3585, 3588, 1, 0, 0, 0, 3586, 3584, 1, 0, 0, 0, 3586, 3587, 1, 0, 0, 0, 3587, 313, 1, 0, 0, 0, 3588, 3586, 1, 0, 0, 0, 3589, 3590, 5, 197, 0, 0, 3590, 3597, 5, 198, 0, 0, 3591, 3592, 5, 82, 0, 0, 3592, 3597, 3, 254, 127, 0, 3593, 3594, 5, 51, 0, 0, 3594, 3597, 3, 364, 182, 0, 3595, 3597, 3, 300, 150, 0, 3596, 3589, 1, 0, 0, 0, 3596, 3591, 1, 0, 0, 0, 3596, 3593, 1, 0, 0, 0, 3596, 3595, 1, 0, 0, 0, 3597, 315, 1, 0, 0, 0, 3598, 3599, 7, 66, 0, 0, 3599, 3600, 3, 254, 127, 0, 3600, 317, 1, 0, 0, 0, 3601, 3606, 3, 320, 160, 0, 3602, 3603, 5, 4, 0, 0, 3603, 3605, 3, 320, 160, 0, 3604, 3602, 1, 0, 0, 0, 3605, 3608, 1, 0, 0, 0, 3606, 3604, 1, 0, 0, 0, 3606, 3607, 1, 0, 0, 0, 3607, 319, 1, 0, 0, 0, 3608, 3606, 1, 0, 0, 0, 3609, 3610, 3, 350, 175, 0, 3610, 3613, 3, 304, 152, 0, 3611, 3612, 5, 197, 0, 0, 3612, 3614, 5, 198, 0, 0, 3613, 3611, 1, 0, 0, 0, 3613, 3614, 1, 0, 0, 0, 3614, 3617, 1, 0, 0, 0, 3615, 3616, 5, 51, 0, 0, 3616, 3618, 3, 364, 182, 0, 3617, 3615, 1, 0, 0, 0, 3617, 3618, 1, 0, 0, 0, 3618, 321, 1, 0, 0, 0, 3619, 3624, 3, 324, 162, 0, 3620, 3621, 5, 4, 0, 0, 3621, 3623, 3, 324, 162, 0, 3622, 3620, 1, 0, 0, 0, 3623, 3626, 1, 0, 0, 0, 3624, 3622, 1, 0, 0, 0, 3624, 3625, 1, 0, 0, 0, 3625, 323, 1, 0, 0, 0, 3626, 3624, 1, 0, 0, 0, 3627, 3628, 3, 88, 44, 0, 3628, 3632, 3, 304, 152, 0, 3629, 3631, 3, 326, 163, 0, 3630, 3629, 1, 0, 0, 0, 3631, 3634, 1, 0, 0, 0, 3632, 3630, 1, 0, 0, 0, 3632, 3633, 1, 0, 0, 0, 3633, 325, 1, 0, 0, 0, 3634, 3632, 1, 0, 0, 0, 3635, 3636, 5, 197, 0, 0, 3636, 3649, 5, 198, 0, 0, 3637, 3638, 5, 82, 0, 0, 3638, 3649, 3, 254, 127, 0, 3639, 3640, 5, 127, 0, 0, 3640, 3641, 5, 12, 0, 0, 3641, 3642, 5, 20, 0, 0, 3642, 3643, 5, 2, 0, 0, 3643, 3644, 3, 254, 127, 0, 3644, 3645, 5, 3, 0, 0, 3645, 3649, 1, 0, 0, 0, 3646, 3647, 5, 51, 0, 0, 3647, 3649, 3, 364, 182, 0, 3648, 3635, 1, 0, 0, 0, 3648, 3637, 1, 0, 0, 0, 3648, 3639, 1, 0, 0, 0, 3648, 3646, 1, 0, 0, 0, 3649, 327, 1, 0, 0, 0, 3650, 3652, 3, 354, 177, 0, 3651, 3653, 5, 371, 0, 0, 3652, 3651, 1, 0, 0, 0, 3652, 3653, 1, 0, 0, 0, 3653, 3654, 1, 0, 0, 0, 3654, 3657, 3, 304, 152, 0, 3655, 3656, 5, 197, 0, 0, 3656, 3658, 5, 198, 0, 0, 3657, 3655, 1, 0, 0, 0, 3657, 3658, 1, 0, 0, 0, 3658, 3661, 1, 0, 0, 0, 3659, 3660, 5, 51, 0, 0, 3660, 3662, 3, 364, 182, 0, 3661, 3659, 1, 0, 0, 0, 3661, 3662, 1, 0, 0, 0, 3662, 329, 1, 0, 0, 0, 3663, 3664, 5, 343, 0, 0, 3664, 3665, 3, 254, 127, 0, 3665, 3666, 5, 300, 0, 0, 3666, 3667, 3, 254, 127, 0, 3667, 331, 1, 0, 0, 0, 3668, 3669, 5, 345, 0, 0, 3669, 3670, 3, 350, 175, 0, 3670, 3671, 5, 20, 0, 0, 3671, 3679, 3, 336, 168, 0, 3672, 3673, 5, 4, 0, 0, 3673, 3674, 3, 350, 175, 0, 3674, 3675, 5, 20, 0, 0, 3675, 3676, 3, 336, 168, 0, 3676, 3678, 1, 0, 0, 0, 3677, 3672, 1, 0, 0, 0, 3678, 3681, 1, 0, 0, 0, 3679, 3677, 1, 0, 0, 0, 3679, 3680, 1, 0, 0, 0, 3680, 333, 1, 0, 0, 0, 3681, 3679, 1, 0, 0, 0, 3682, 3683, 5, 351, 0, 0, 3683, 3684, 5, 31, 0, 0, 3684, 3685, 3, 86, 43, 0, 3685, 335, 1, 0, 0, 0, 3686, 3726, 3, 350, 175, 0, 3687, 3688, 5, 2, 0, 0, 3688, 3689, 3, 350, 175, 0, 3689, 3690, 5, 3, 0, 0, 3690, 3726, 1, 0, 0, 0, 3691, 3719, 5, 2, 0, 0, 3692, 3693, 5, 44, 0, 0, 3693, 3694, 5, 31, 0, 0, 3694, 3699, 3, 254, 127, 0, 3695, 3696, 5, 4, 0, 0, 3696, 3698, 3, 254, 127, 0, 3697, 3695, 1, 0, 0, 0, 3698, 3701, 1, 0, 0, 0, 3699, 3697, 1, 0, 0, 0, 3699, 3700, 1, 0, 0, 0, 3700, 3720, 1, 0, 0, 0, 3701, 3699, 1, 0, 0, 0, 3702, 3703, 7, 35, 0, 0, 3703, 3704, 5, 31, 0, 0, 3704, 3709, 3, 254, 127, 0, 3705, 3706, 5, 4, 0, 0, 3706, 3708, 3, 254, 127, 0, 3707, 3705, 1, 0, 0, 0, 3708, 3711, 1, 0, 0, 0, 3709, 3707, 1, 0, 0, 0, 3709, 3710, 1, 0, 0, 0, 3710, 3713, 1, 0, 0, 0, 3711, 3709, 1, 0, 0, 0, 3712, 3702, 1, 0, 0, 0, 3712, 3713, 1, 0, 0, 0, 3713, 3717, 1, 0, 0, 0, 3714, 3715, 7, 36, 0, 0, 3715, 3716, 5, 31, 0, 0, 3716, 3718, 3, 96, 48, 0, 3717, 3714, 1, 0, 0, 0, 3717, 3718, 1, 0, 0, 0, 3718, 3720, 1, 0, 0, 0, 3719, 3692, 1, 0, 0, 0, 3719, 3712, 1, 0, 0, 0, 3720, 3722, 1, 0, 0, 0, 3721, 3723, 3, 338, 169, 0, 3722, 3721, 1, 0, 0, 0, 3722, 3723, 1, 0, 0, 0, 3723, 3724, 1, 0, 0, 0, 3724, 3726, 5, 3, 0, 0, 3725, 3686, 1, 0, 0, 0, 3725, 3687, 1, 0, 0, 0, 3725, 3691, 1, 0, 0, 0, 3726, 337, 1, 0, 0, 0, 3727, 3728, 7, 67, 0, 0, 3728, 3736, 3, 340, 170, 0, 3729, 3730, 7, 67, 0, 0, 3730, 3731, 5, 24, 0, 0, 3731, 3732, 3, 340, 170, 0, 3732, 3733, 5, 14, 0, 0, 3733, 3734, 3, 340, 170, 0, 3734, 3736, 1, 0, 0, 0, 3735, 3727, 1, 0, 0, 0, 3735, 3729, 1, 0, 0, 0, 3736, 339, 1, 0, 0, 0, 3737, 3738, 5, 321, 0, 0, 3738, 3745, 7, 68, 0, 0, 3739, 3740, 5, 62, 0, 0, 3740, 3745, 5, 257, 0, 0, 3741, 3742, 3, 254, 127, 0, 3742, 3743, 7, 68, 0, 0, 3743, 3745, 1, 0, 0, 0, 3744, 3737, 1, 0, 0, 0, 3744, 3739, 1, 0, 0, 0, 3744, 3741, 1, 0, 0, 0, 3745, 341, 1, 0, 0, 0, 3746, 3751, 3, 348, 174, 0, 3747, 3748, 5, 4, 0, 0, 3748, 3750, 3, 348, 174, 0, 3749, 3747, 1, 0, 0, 0, 3750, 3753, 1, 0, 0, 0, 3751, 3749, 1, 0, 0, 0, 3751, 3752, 1, 0, 0, 0, 3752, 343, 1, 0, 0, 0, 3753, 3751, 1, 0, 0, 0, 3754, 3755, 5, 136, 0, 0, 3755, 3756, 5, 2, 0, 0, 3756, 3757, 3, 254, 127, 0, 3757, 3758, 5, 3, 0, 0, 3758, 3764, 1, 0, 0, 0, 3759, 3764, 3, 348, 174, 0, 3760, 3764, 5, 114, 0, 0, 3761, 3764, 5, 161, 0, 0, 3762, 3764, 5, 250, 0, 0, 3763, 3754, 1, 0, 0, 0, 3763, 3759, 1, 0, 0, 0, 3763, 3760, 1, 0, 0, 0, 3763, 3761, 1, 0, 0, 0, 3763, 3762, 1, 0, 0, 0, 3764, 345, 1, 0, 0, 0, 3765, 3766, 3, 348, 174, 0, 3766, 347, 1, 0, 0, 0, 3767, 3772, 3, 354, 177, 0, 3768, 3769, 5, 5, 0, 0, 3769, 3771, 3, 354, 177, 0, 3770, 3768, 1, 0, 0, 0, 3771, 3774, 1, 0, 0, 0, 3772, 3770, 1, 0, 0, 0, 3772, 3773, 1, 0, 0, 0, 3773, 349, 1, 0, 0, 0, 3774, 3772, 1, 0, 0, 0, 3775, 3776, 3, 354, 177, 0, 3776, 3777, 3, 352, 176, 0, 3777, 351, 1, 0, 0, 0, 3778, 3779, 5, 362, 0, 0, 3779, 3781, 3, 354, 177, 0, 3780, 3778, 1, 0, 0, 0, 3781, 3782, 1, 0, 0, 0, 3782, 3780, 1, 0, 0, 0, 3782, 3783, 1, 0, 0, 0, 3783, 3786, 1, 0, 0, 0, 3784, 3786, 1, 0, 0, 0, 3785, 3780, 1, 0, 0, 0, 3785, 3784, 1, 0, 0, 0, 3786, 353, 1, 0, 0, 0, 3787, 3790, 3, 356, 178, 0, 3788, 3790, 3, 368, 184, 0, 3789, 3787, 1, 0, 0, 0, 3789, 3788, 1, 0, 0, 0, 3790, 355, 1, 0, 0, 0, 3791, 3796, 5, 388, 0, 0, 3792, 3796, 3, 358, 179, 0, 3793, 3796, 3, 366, 183, 0, 3794, 3796, 3, 370, 185, 0, 3795, 3791, 1, 0, 0, 0, 3795, 3792, 1, 0, 0, 0, 3795, 3793, 1, 0, 0, 0, 3795, 3794, 1, 0, 0, 0, 3796, 357, 1, 0, 0, 0, 3797, 3798, 7, 69, 0, 0, 3798, 359, 1, 0, 0, 0, 3799, 3801, 5, 362, 0, 0, 3800, 3799, 1, 0, 0, 0, 3800, 3801, 1, 0, 0, 0, 3801, 3802, 1, 0, 0, 0, 3802, 3803, 7, 70, 0, 0, 3803, 361, 1, 0, 0, 0, 3804, 3805, 5, 319, 0, 0, 3805, 3818, 3, 304, 152, 0, 3806, 3807, 5, 51, 0, 0, 3807, 3818, 3, 364, 182, 0, 3808, 3818, 3, 300, 150, 0, 3809, 3810, 7, 71, 0, 0, 3810, 3811, 5, 197, 0, 0, 3811, 3818, 5, 198, 0, 0, 3812, 3813, 5, 269, 0, 0, 3813, 3814, 5, 82, 0, 0, 3814, 3818, 3, 254, 127, 0, 3815, 3816, 5, 96, 0, 0, 3816, 3818, 5, 82, 0, 0, 3817, 3804, 1, 0, 0, 0, 3817, 3806, 1, 0, 0, 0, 3817, 3808, 1, 0, 0, 0, 3817, 3809, 1, 0, 0, 0, 3817, 3812, 1, 0, 0, 0, 3817, 3815, 1, 0, 0, 0, 3818, 363, 1, 0, 0, 0, 3819, 3820, 7, 72, 0, 0, 3820, 365, 1, 0, 0, 0, 3821, 3822, 7, 73, 0, 0, 3822, 367, 1, 0, 0, 0, 3823, 3824, 7, 74, 0, 0, 3824, 369, 1, 0, 0, 0, 3825, 3826, 7, 75, 0, 0, 3826, 371, 1, 0, 0, 0, 509, 375, 382, 386, 391, 398, 403, 413, 415, 435, 439, 445, 448, 451, 455, 458, 462, 469, 472, 476, 479, 484, 497, 499, 504, 513, 516, 520, 523, 529, 540, 546, 551, 584, 594, 605, 616, 627, 632, 641, 645, 651, 655, 660, 666, 678, 686, 692, 703, 707, 712, 727, 731, 738, 742, 748, 778, 782, 787, 794, 800, 803, 806, 810, 814, 823, 825, 834, 837, 846, 851, 857, 864, 867, 871, 886, 889, 895, 899, 916, 918, 926, 930, 936, 939, 943, 946, 952, 957, 961, 968, 971, 974, 981, 986, 995, 1003, 1009, 1012, 1015, 1021, 1025, 1030, 1033, 1037, 1039, 1047, 1055, 1058, 1065, 1068, 1071, 1080, 1085, 1091, 1096, 1099, 1103, 1106, 1110, 1120, 1125, 1138, 1141, 1149, 1155, 1158, 1161, 1166, 1174, 1179, 1185, 1191, 1194, 1201, 1208, 1216, 1228, 1236, 1263, 1266, 1272, 1281, 1290, 1296, 1301, 1306, 1313, 1318, 1323, 1330, 1338, 1341, 1347, 1354, 1358, 1421, 1429, 1436, 1444, 1456, 1461, 1470, 1478, 1483, 1485, 1493, 1498, 1502, 1505, 1513, 1518, 1527, 1532, 1535, 1540, 1544, 1549, 1551, 1556, 1565, 1573, 1579, 1588, 1595, 1604, 1609, 1612, 1637, 1639, 1651, 1658, 1661, 1668, 1672, 1678, 1686, 1693, 1696, 1704, 1715, 1726, 1734, 1740, 1751, 1758, 1765, 1777, 1785, 1791, 1797, 1800, 1819, 1826, 1833, 1844, 1849, 1854, 1859, 1864, 1867, 1870, 1874, 1879, 1886, 1894, 1903, 1909, 1915, 1918, 1920, 1928, 1938, 1947, 1951, 1954, 1958, 1962, 1970, 1974, 1977, 1980, 1983, 1987, 1991, 1996, 2000, 2003, 2006, 2009, 2013, 2018, 2022, 2025, 2028, 2031, 2033, 2039, 2046, 2051, 2054, 2057, 2061, 2071, 2075, 2077, 2080, 2084, 2090, 2094, 2105, 2113, 2115, 2122, 2126, 2138, 2145, 2160, 2165, 2172, 2188, 2193, 2206, 2211, 2219, 2225, 2229, 2232, 2235, 2242, 2245, 2251, 2260, 2270, 2285, 2290, 2292, 2297, 2306, 2316, 2321, 2325, 2330, 2337, 2342, 2346, 2349, 2352, 2366, 2379, 2384, 2388, 2391, 2396, 2401, 2405, 2408, 2420, 2431, 2444, 2455, 2460, 2463, 2467, 2470, 2482, 2491, 2494, 2499, 2506, 2509, 2515, 2521, 2523, 2526, 2531, 2535, 2541, 2545, 2548, 2553, 2556, 2561, 2563, 2570, 2572, 2576, 2581, 2588, 2591, 2609, 2611, 2614, 2625, 2634, 2641, 2649, 2657, 2662, 2665, 2668, 2674, 2682, 2690, 2702, 2708, 2715, 2722, 2724, 2737, 2743, 2745, 2754, 2756, 2764, 2768, 2780, 2783, 2788, 2792, 2794, 2803, 2815, 2817, 2824, 2831, 2837, 2843, 2845, 2852, 2860, 2869, 2876, 2882, 2887, 2894, 2907, 2915, 2918, 2922, 2924, 2931, 2942, 2949, 2959, 2964, 2968, 2978, 2985, 2998, 3000, 3008, 3010, 3014, 3022, 3031, 3037, 3045, 3050, 3062, 3067, 3070, 3076, 3080, 3085, 3090, 3095, 3101, 3122, 3124, 3135, 3147, 3159, 3163, 3172, 3176, 3194, 3197, 3205, 3214, 3223, 3246, 3262, 3269, 3272, 3281, 3285, 3289, 3301, 3326, 3333, 3336, 3351, 3372, 3376, 3378, 3388, 3390, 3400, 3415, 3417, 3430, 3434, 3441, 3446, 3454, 3459, 3468, 3500, 3521, 3524, 3528, 3534, 3540, 3549, 3553, 3555, 3562, 3570, 3578, 3586, 3596, 3606, 3613, 3617, 3624, 3632, 3648, 3652, 3657, 3661, 3679, 3699, 3709, 3712, 3717, 3719, 3722, 3725, 3735, 3744, 3751, 3763, 3772, 3782, 3785, 3789, 3795, 3800, 3817] \ No newline at end of file +[4, 1, 393, 3832, 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, 1, 0, 5, 0, 374, 8, 0, 10, 0, 12, 0, 377, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 383, 8, 1, 1, 2, 1, 2, 3, 2, 387, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 392, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 399, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 404, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 414, 8, 2, 10, 2, 12, 2, 417, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 436, 8, 2, 1, 2, 1, 2, 3, 2, 440, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 446, 8, 2, 1, 2, 3, 2, 449, 8, 2, 1, 2, 3, 2, 452, 8, 2, 1, 2, 1, 2, 3, 2, 456, 8, 2, 1, 2, 3, 2, 459, 8, 2, 1, 2, 1, 2, 3, 2, 463, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 470, 8, 2, 1, 2, 3, 2, 473, 8, 2, 1, 2, 1, 2, 3, 2, 477, 8, 2, 1, 2, 3, 2, 480, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 485, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 498, 8, 2, 10, 2, 12, 2, 501, 9, 2, 1, 2, 1, 2, 3, 2, 505, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 514, 8, 2, 1, 2, 3, 2, 517, 8, 2, 1, 2, 1, 2, 3, 2, 521, 8, 2, 1, 2, 3, 2, 524, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 530, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 541, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 547, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 552, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 585, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 595, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 606, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 617, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 628, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 633, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 642, 8, 2, 1, 2, 1, 2, 3, 2, 646, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 652, 8, 2, 1, 2, 1, 2, 3, 2, 656, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 661, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 667, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 679, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 687, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 693, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 704, 8, 2, 1, 2, 1, 2, 3, 2, 708, 8, 2, 1, 2, 4, 2, 711, 8, 2, 11, 2, 12, 2, 712, 1, 2, 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, 728, 8, 2, 1, 2, 1, 2, 3, 2, 732, 8, 2, 1, 2, 1, 2, 1, 2, 5, 2, 737, 8, 2, 10, 2, 12, 2, 740, 9, 2, 1, 2, 3, 2, 743, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 749, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 779, 8, 2, 1, 2, 1, 2, 3, 2, 783, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 788, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 795, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 801, 8, 2, 1, 2, 3, 2, 804, 8, 2, 1, 2, 3, 2, 807, 8, 2, 1, 2, 1, 2, 3, 2, 811, 8, 2, 1, 2, 1, 2, 3, 2, 815, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 824, 8, 2, 10, 2, 12, 2, 827, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 835, 8, 2, 1, 2, 3, 2, 838, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 847, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 852, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 858, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 865, 8, 2, 1, 2, 3, 2, 868, 8, 2, 1, 2, 1, 2, 3, 2, 872, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 885, 8, 2, 10, 2, 12, 2, 888, 9, 2, 3, 2, 890, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 896, 8, 2, 1, 2, 1, 2, 3, 2, 900, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 917, 8, 2, 10, 2, 12, 2, 920, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 927, 8, 2, 1, 2, 1, 2, 3, 2, 931, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 937, 8, 2, 1, 2, 3, 2, 940, 8, 2, 1, 2, 1, 2, 3, 2, 944, 8, 2, 1, 2, 3, 2, 947, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 953, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 958, 8, 2, 1, 2, 1, 2, 3, 2, 962, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 969, 8, 2, 1, 2, 3, 2, 972, 8, 2, 1, 2, 3, 2, 975, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 982, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 987, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 996, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1004, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1010, 8, 2, 1, 2, 3, 2, 1013, 8, 2, 1, 2, 3, 2, 1016, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1022, 8, 2, 1, 2, 1, 2, 3, 2, 1026, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1031, 8, 2, 1, 2, 3, 2, 1034, 8, 2, 1, 2, 1, 2, 3, 2, 1038, 8, 2, 3, 2, 1040, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1048, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1056, 8, 2, 1, 2, 3, 2, 1059, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1066, 8, 2, 1, 2, 3, 2, 1069, 8, 2, 1, 2, 3, 2, 1072, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1081, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1086, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1092, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1097, 8, 2, 1, 2, 3, 2, 1100, 8, 2, 1, 2, 1, 2, 3, 2, 1104, 8, 2, 1, 2, 3, 2, 1107, 8, 2, 1, 2, 1, 2, 3, 2, 1111, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1121, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1126, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1137, 8, 2, 10, 2, 12, 2, 1140, 9, 2, 3, 2, 1142, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1150, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1156, 8, 2, 1, 2, 3, 2, 1159, 8, 2, 1, 2, 3, 2, 1162, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1167, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1175, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1180, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1186, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1192, 8, 2, 1, 2, 3, 2, 1195, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1202, 8, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1207, 8, 2, 10, 2, 12, 2, 1210, 9, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1215, 8, 2, 10, 2, 12, 2, 1218, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1229, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1235, 8, 2, 10, 2, 12, 2, 1238, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1262, 8, 2, 10, 2, 12, 2, 1265, 9, 2, 3, 2, 1267, 8, 2, 1, 2, 1, 2, 5, 2, 1271, 8, 2, 10, 2, 12, 2, 1274, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1280, 8, 2, 10, 2, 12, 2, 1283, 9, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1289, 8, 2, 10, 2, 12, 2, 1292, 9, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1297, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1302, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1307, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1314, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1319, 8, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1324, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1331, 8, 2, 1, 2, 1, 2, 1, 2, 1, 2, 5, 2, 1337, 8, 2, 10, 2, 12, 2, 1340, 9, 2, 3, 2, 1342, 8, 2, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1348, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1355, 8, 3, 1, 3, 1, 3, 3, 3, 1359, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1422, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1430, 8, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 3, 3, 1437, 8, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 1445, 8, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 1457, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 1462, 8, 5, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 8, 3, 8, 1471, 8, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 3, 9, 1479, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1484, 8, 9, 3, 9, 1486, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1494, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1499, 8, 9, 1, 9, 1, 9, 3, 9, 1503, 8, 9, 1, 9, 3, 9, 1506, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1514, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1519, 8, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1528, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1533, 8, 9, 1, 9, 3, 9, 1536, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1541, 8, 9, 1, 9, 1, 9, 3, 9, 1545, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 1550, 8, 9, 3, 9, 1552, 8, 9, 1, 10, 1, 10, 1, 10, 3, 10, 1557, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 1564, 8, 11, 10, 11, 12, 11, 1567, 9, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 3, 12, 1574, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 3, 12, 1580, 8, 12, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 3, 14, 1589, 8, 14, 1, 15, 1, 15, 1, 15, 5, 15, 1594, 8, 15, 10, 15, 12, 15, 1597, 9, 15, 1, 16, 1, 16, 1, 16, 1, 16, 5, 16, 1603, 8, 16, 10, 16, 12, 16, 1606, 9, 16, 1, 17, 1, 17, 3, 17, 1610, 8, 17, 1, 17, 3, 17, 1613, 8, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 5, 19, 1638, 8, 19, 10, 19, 12, 19, 1641, 9, 19, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 5, 21, 1650, 8, 21, 10, 21, 12, 21, 1653, 9, 21, 1, 21, 1, 21, 1, 22, 1, 22, 3, 22, 1659, 8, 22, 1, 22, 3, 22, 1662, 8, 22, 1, 23, 1, 23, 1, 23, 5, 23, 1667, 8, 23, 10, 23, 12, 23, 1670, 9, 23, 1, 23, 3, 23, 1673, 8, 23, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 1679, 8, 24, 1, 25, 1, 25, 1, 25, 1, 25, 5, 25, 1685, 8, 25, 10, 25, 12, 25, 1688, 9, 25, 1, 25, 1, 25, 1, 26, 1, 26, 3, 26, 1694, 8, 26, 1, 26, 3, 26, 1697, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 5, 27, 1703, 8, 27, 10, 27, 12, 27, 1706, 9, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 5, 28, 1714, 8, 28, 10, 28, 12, 28, 1717, 9, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 3, 29, 1727, 8, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 3, 30, 1735, 8, 30, 1, 31, 1, 31, 1, 31, 1, 31, 3, 31, 1741, 8, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 4, 32, 1750, 8, 32, 11, 32, 12, 32, 1751, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1759, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1766, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 1778, 8, 32, 1, 32, 1, 32, 1, 32, 1, 32, 5, 32, 1784, 8, 32, 10, 32, 12, 32, 1787, 9, 32, 1, 32, 5, 32, 1790, 8, 32, 10, 32, 12, 32, 1793, 9, 32, 1, 32, 5, 32, 1796, 8, 32, 10, 32, 12, 32, 1799, 9, 32, 3, 32, 1801, 8, 32, 1, 33, 1, 33, 1, 34, 1, 34, 1, 35, 1, 35, 1, 36, 1, 36, 1, 37, 1, 37, 1, 38, 1, 38, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 3, 40, 1820, 8, 40, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 3, 42, 1827, 8, 42, 1, 43, 1, 43, 1, 43, 5, 43, 1832, 8, 43, 10, 43, 12, 43, 1835, 9, 43, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 1845, 8, 45, 1, 46, 1, 46, 1, 46, 3, 46, 1850, 8, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1855, 8, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1860, 8, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1865, 8, 46, 1, 46, 3, 46, 1868, 8, 46, 1, 46, 3, 46, 1871, 8, 46, 1, 46, 1, 46, 3, 46, 1875, 8, 46, 1, 47, 1, 47, 1, 47, 3, 47, 1880, 8, 47, 1, 48, 1, 48, 1, 48, 5, 48, 1885, 8, 48, 10, 48, 12, 48, 1888, 9, 48, 1, 49, 1, 49, 1, 49, 5, 49, 1893, 8, 49, 10, 49, 12, 49, 1896, 9, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1904, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1910, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1916, 8, 50, 1, 50, 5, 50, 1919, 8, 50, 10, 50, 12, 50, 1922, 9, 50, 1, 51, 1, 51, 1, 51, 4, 51, 1927, 8, 51, 11, 51, 12, 51, 1928, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 5, 51, 1937, 8, 51, 10, 51, 12, 51, 1940, 9, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 1948, 8, 51, 1, 52, 1, 52, 3, 52, 1952, 8, 52, 1, 52, 3, 52, 1955, 8, 52, 1, 52, 1, 52, 3, 52, 1959, 8, 52, 1, 53, 1, 53, 3, 53, 1963, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 1969, 8, 53, 10, 53, 12, 53, 1972, 9, 53, 1, 53, 3, 53, 1975, 8, 53, 1, 53, 3, 53, 1978, 8, 53, 1, 53, 3, 53, 1981, 8, 53, 1, 53, 3, 53, 1984, 8, 53, 1, 53, 1, 53, 3, 53, 1988, 8, 53, 1, 54, 1, 54, 3, 54, 1992, 8, 54, 1, 54, 5, 54, 1995, 8, 54, 10, 54, 12, 54, 1998, 9, 54, 1, 54, 3, 54, 2001, 8, 54, 1, 54, 3, 54, 2004, 8, 54, 1, 54, 3, 54, 2007, 8, 54, 1, 54, 3, 54, 2010, 8, 54, 1, 54, 1, 54, 3, 54, 2014, 8, 54, 1, 54, 5, 54, 2017, 8, 54, 10, 54, 12, 54, 2020, 9, 54, 1, 54, 3, 54, 2023, 8, 54, 1, 54, 3, 54, 2026, 8, 54, 1, 54, 3, 54, 2029, 8, 54, 1, 54, 3, 54, 2032, 8, 54, 3, 54, 2034, 8, 54, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 2040, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 2047, 8, 55, 1, 55, 1, 55, 1, 55, 3, 55, 2052, 8, 55, 1, 55, 3, 55, 2055, 8, 55, 1, 55, 3, 55, 2058, 8, 55, 1, 55, 1, 55, 3, 55, 2062, 8, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 3, 55, 2072, 8, 55, 1, 55, 1, 55, 3, 55, 2076, 8, 55, 3, 55, 2078, 8, 55, 1, 55, 3, 55, 2081, 8, 55, 1, 55, 1, 55, 3, 55, 2085, 8, 55, 1, 56, 1, 56, 5, 56, 2089, 8, 56, 10, 56, 12, 56, 2092, 9, 56, 1, 56, 3, 56, 2095, 8, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2106, 8, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 2114, 8, 58, 3, 58, 2116, 8, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 3, 59, 2123, 8, 59, 1, 59, 1, 59, 3, 59, 2127, 8, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2139, 8, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 3, 60, 2146, 8, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 5, 61, 2159, 8, 61, 10, 61, 12, 61, 2162, 9, 61, 1, 61, 1, 61, 3, 61, 2166, 8, 61, 1, 62, 1, 62, 1, 62, 5, 62, 2171, 8, 62, 10, 62, 12, 62, 2174, 9, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 3, 66, 2189, 8, 66, 1, 66, 5, 66, 2192, 8, 66, 10, 66, 12, 66, 2195, 9, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 5, 67, 2205, 8, 67, 10, 67, 12, 67, 2208, 9, 67, 1, 67, 1, 67, 3, 67, 2212, 8, 67, 1, 68, 1, 68, 1, 68, 1, 68, 5, 68, 2218, 8, 68, 10, 68, 12, 68, 2221, 9, 68, 1, 68, 5, 68, 2224, 8, 68, 10, 68, 12, 68, 2227, 9, 68, 1, 68, 3, 68, 2230, 8, 68, 1, 68, 3, 68, 2233, 8, 68, 1, 69, 3, 69, 2236, 8, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 2243, 8, 69, 1, 69, 3, 69, 2246, 8, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 2252, 8, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 2259, 8, 70, 10, 70, 12, 70, 2262, 9, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 2269, 8, 70, 10, 70, 12, 70, 2272, 9, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 5, 70, 2284, 8, 70, 10, 70, 12, 70, 2287, 9, 70, 1, 70, 1, 70, 3, 70, 2291, 8, 70, 3, 70, 2293, 8, 70, 1, 71, 1, 71, 1, 71, 3, 71, 2298, 8, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 5, 72, 2305, 8, 72, 10, 72, 12, 72, 2308, 9, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2317, 8, 72, 1, 72, 1, 72, 1, 72, 3, 72, 2322, 8, 72, 5, 72, 2324, 8, 72, 10, 72, 12, 72, 2327, 9, 72, 1, 72, 1, 72, 3, 72, 2331, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2338, 8, 73, 1, 73, 1, 73, 1, 73, 3, 73, 2343, 8, 73, 5, 73, 2345, 8, 73, 10, 73, 12, 73, 2348, 9, 73, 3, 73, 2350, 8, 73, 1, 73, 3, 73, 2353, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 5, 74, 2365, 8, 74, 10, 74, 12, 74, 2368, 9, 74, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 5, 75, 2378, 8, 75, 10, 75, 12, 75, 2381, 9, 75, 1, 75, 1, 75, 3, 75, 2385, 8, 75, 1, 76, 1, 76, 3, 76, 2389, 8, 76, 1, 76, 3, 76, 2392, 8, 76, 1, 77, 1, 77, 1, 77, 3, 77, 2397, 8, 77, 1, 77, 1, 77, 1, 77, 3, 77, 2402, 8, 77, 1, 77, 1, 77, 3, 77, 2406, 8, 77, 1, 77, 3, 77, 2409, 8, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 5, 78, 2419, 8, 78, 10, 78, 12, 78, 2422, 9, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 5, 79, 2430, 8, 79, 10, 79, 12, 79, 2433, 9, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 5, 79, 2443, 8, 79, 10, 79, 12, 79, 2446, 9, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 5, 80, 2454, 8, 80, 10, 80, 12, 80, 2457, 9, 80, 1, 80, 1, 80, 3, 80, 2461, 8, 80, 1, 80, 3, 80, 2464, 8, 80, 1, 81, 1, 81, 3, 81, 2468, 8, 81, 1, 81, 3, 81, 2471, 8, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 3, 84, 2483, 8, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 5, 84, 2490, 8, 84, 10, 84, 12, 84, 2493, 9, 84, 3, 84, 2495, 8, 84, 1, 84, 1, 84, 1, 84, 3, 84, 2500, 8, 84, 1, 84, 1, 84, 1, 84, 5, 84, 2505, 8, 84, 10, 84, 12, 84, 2508, 9, 84, 3, 84, 2510, 8, 84, 1, 85, 1, 85, 1, 86, 1, 86, 3, 86, 2516, 8, 86, 1, 86, 1, 86, 1, 86, 1, 86, 5, 86, 2522, 8, 86, 10, 86, 12, 86, 2525, 9, 86, 3, 86, 2527, 8, 86, 1, 87, 1, 87, 1, 87, 3, 87, 2532, 8, 87, 1, 87, 1, 87, 3, 87, 2536, 8, 87, 1, 87, 1, 87, 1, 87, 1, 87, 3, 87, 2542, 8, 87, 1, 87, 1, 87, 3, 87, 2546, 8, 87, 1, 88, 3, 88, 2549, 8, 88, 1, 88, 1, 88, 1, 88, 3, 88, 2554, 8, 88, 1, 88, 3, 88, 2557, 8, 88, 1, 88, 1, 88, 1, 88, 3, 88, 2562, 8, 88, 3, 88, 2564, 8, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 3, 89, 2571, 8, 89, 3, 89, 2573, 8, 89, 1, 89, 1, 89, 3, 89, 2577, 8, 89, 1, 90, 1, 90, 1, 90, 3, 90, 2582, 8, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 3, 90, 2589, 8, 90, 1, 91, 3, 91, 2592, 8, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 3, 91, 2610, 8, 91, 3, 91, 2612, 8, 91, 1, 91, 3, 91, 2615, 8, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 5, 93, 2624, 8, 93, 10, 93, 12, 93, 2627, 9, 93, 1, 94, 1, 94, 1, 94, 1, 94, 5, 94, 2633, 8, 94, 10, 94, 12, 94, 2636, 9, 94, 1, 94, 1, 94, 1, 95, 1, 95, 3, 95, 2642, 8, 95, 1, 96, 1, 96, 1, 96, 1, 96, 5, 96, 2648, 8, 96, 10, 96, 12, 96, 2651, 9, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 3, 97, 2658, 8, 97, 1, 98, 1, 98, 1, 98, 3, 98, 2663, 8, 98, 1, 98, 3, 98, 2666, 8, 98, 1, 98, 3, 98, 2669, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 2675, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 2683, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 2691, 8, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 5, 100, 2701, 8, 100, 10, 100, 12, 100, 2704, 9, 100, 1, 101, 1, 101, 1, 101, 3, 101, 2709, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 2716, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 2723, 8, 101, 3, 101, 2725, 8, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 5, 102, 2736, 8, 102, 10, 102, 12, 102, 2739, 9, 102, 1, 102, 1, 102, 1, 102, 3, 102, 2744, 8, 102, 3, 102, 2746, 8, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 3, 102, 2755, 8, 102, 3, 102, 2757, 8, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 3, 104, 2765, 8, 104, 1, 105, 1, 105, 3, 105, 2769, 8, 105, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 5, 107, 2779, 8, 107, 10, 107, 12, 107, 2782, 9, 107, 3, 107, 2784, 8, 107, 1, 107, 1, 107, 1, 108, 3, 108, 2789, 8, 108, 1, 108, 1, 108, 3, 108, 2793, 8, 108, 3, 108, 2795, 8, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 2804, 8, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 2816, 8, 109, 3, 109, 2818, 8, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 2825, 8, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 2832, 8, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 2838, 8, 109, 1, 109, 1, 109, 1, 109, 1, 109, 3, 109, 2844, 8, 109, 3, 109, 2846, 8, 109, 1, 110, 1, 110, 1, 110, 5, 110, 2851, 8, 110, 10, 110, 12, 110, 2854, 9, 110, 1, 111, 1, 111, 1, 111, 5, 111, 2859, 8, 111, 10, 111, 12, 111, 2862, 9, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 3, 112, 2870, 8, 112, 1, 113, 1, 113, 1, 113, 5, 113, 2875, 8, 113, 10, 113, 12, 113, 2878, 9, 113, 1, 114, 1, 114, 1, 114, 3, 114, 2883, 8, 114, 1, 115, 1, 115, 1, 115, 3, 115, 2888, 8, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 3, 116, 2895, 8, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 5, 119, 2906, 8, 119, 10, 119, 12, 119, 2909, 9, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 3, 120, 2916, 8, 120, 1, 120, 3, 120, 2919, 8, 120, 1, 120, 1, 120, 3, 120, 2923, 8, 120, 3, 120, 2925, 8, 120, 1, 120, 1, 120, 3, 120, 2929, 8, 120, 1, 121, 1, 121, 1, 121, 5, 121, 2934, 8, 121, 10, 121, 12, 121, 2937, 9, 121, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 5, 123, 2945, 8, 123, 10, 123, 12, 123, 2948, 9, 123, 1, 123, 1, 123, 1, 124, 1, 124, 3, 124, 2954, 8, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 5, 125, 2962, 8, 125, 10, 125, 12, 125, 2965, 9, 125, 1, 125, 1, 125, 3, 125, 2969, 8, 125, 1, 126, 1, 126, 3, 126, 2973, 8, 126, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 3, 129, 2983, 8, 129, 1, 130, 1, 130, 1, 130, 5, 130, 2988, 8, 130, 10, 130, 12, 130, 2991, 9, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 3003, 8, 131, 3, 131, 3005, 8, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 5, 131, 3013, 8, 131, 10, 131, 12, 131, 3016, 9, 131, 1, 132, 3, 132, 3019, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3027, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 5, 132, 3034, 8, 132, 10, 132, 12, 132, 3037, 9, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3042, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3050, 8, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3055, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 5, 132, 3065, 8, 132, 10, 132, 12, 132, 3068, 9, 132, 1, 132, 1, 132, 3, 132, 3072, 8, 132, 1, 132, 3, 132, 3075, 8, 132, 1, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3081, 8, 132, 1, 132, 1, 132, 3, 132, 3085, 8, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3090, 8, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3095, 8, 132, 1, 132, 1, 132, 1, 132, 3, 132, 3100, 8, 132, 1, 133, 1, 133, 1, 133, 1, 133, 3, 133, 3106, 8, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 5, 133, 3127, 8, 133, 10, 133, 12, 133, 3130, 9, 133, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 3140, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 3152, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 4, 135, 3162, 8, 135, 11, 135, 12, 135, 3163, 1, 135, 1, 135, 3, 135, 3168, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 4, 135, 3175, 8, 135, 11, 135, 12, 135, 3176, 1, 135, 1, 135, 3, 135, 3181, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 5, 135, 3197, 8, 135, 10, 135, 12, 135, 3200, 9, 135, 3, 135, 3202, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 3210, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 3219, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 3228, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 4, 135, 3249, 8, 135, 11, 135, 12, 135, 3250, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 3267, 8, 135, 1, 135, 1, 135, 1, 135, 5, 135, 3272, 8, 135, 10, 135, 12, 135, 3275, 9, 135, 3, 135, 3277, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 3286, 8, 135, 1, 135, 1, 135, 3, 135, 3290, 8, 135, 1, 135, 1, 135, 3, 135, 3294, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 4, 135, 3304, 8, 135, 11, 135, 12, 135, 3305, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 3331, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 3338, 8, 135, 1, 135, 3, 135, 3341, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 3356, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 3, 135, 3377, 8, 135, 1, 135, 1, 135, 3, 135, 3381, 8, 135, 3, 135, 3383, 8, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 5, 135, 3393, 8, 135, 10, 135, 12, 135, 3396, 9, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 3, 136, 3405, 8, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 4, 137, 3418, 8, 137, 11, 137, 12, 137, 3419, 3, 137, 3422, 8, 137, 1, 138, 1, 138, 1, 139, 1, 139, 1, 140, 1, 140, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 3, 142, 3435, 8, 142, 1, 143, 1, 143, 3, 143, 3439, 8, 143, 1, 144, 1, 144, 1, 144, 4, 144, 3444, 8, 144, 11, 144, 12, 144, 3445, 1, 145, 1, 145, 1, 145, 3, 145, 3451, 8, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 147, 3, 147, 3459, 8, 147, 1, 147, 1, 147, 1, 147, 3, 147, 3464, 8, 147, 1, 148, 1, 148, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 3, 150, 3473, 8, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 3, 151, 3505, 8, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 5, 152, 3524, 8, 152, 10, 152, 12, 152, 3527, 9, 152, 3, 152, 3529, 8, 152, 1, 152, 1, 152, 3, 152, 3533, 8, 152, 1, 152, 1, 152, 1, 152, 1, 152, 3, 152, 3539, 8, 152, 1, 152, 1, 152, 1, 152, 1, 152, 3, 152, 3545, 8, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 5, 152, 3552, 8, 152, 10, 152, 12, 152, 3555, 9, 152, 1, 152, 3, 152, 3558, 8, 152, 3, 152, 3560, 8, 152, 1, 153, 1, 153, 1, 153, 5, 153, 3565, 8, 153, 10, 153, 12, 153, 3568, 9, 153, 1, 154, 1, 154, 1, 154, 5, 154, 3573, 8, 154, 10, 154, 12, 154, 3576, 9, 154, 1, 155, 1, 155, 1, 155, 5, 155, 3581, 8, 155, 10, 155, 12, 155, 3584, 9, 155, 1, 156, 1, 156, 1, 156, 5, 156, 3589, 8, 156, 10, 156, 12, 156, 3592, 9, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 3601, 8, 157, 1, 158, 1, 158, 1, 158, 1, 159, 1, 159, 1, 159, 5, 159, 3609, 8, 159, 10, 159, 12, 159, 3612, 9, 159, 1, 160, 1, 160, 1, 160, 1, 160, 3, 160, 3618, 8, 160, 1, 160, 1, 160, 3, 160, 3622, 8, 160, 1, 161, 1, 161, 1, 161, 5, 161, 3627, 8, 161, 10, 161, 12, 161, 3630, 9, 161, 1, 162, 1, 162, 1, 162, 5, 162, 3635, 8, 162, 10, 162, 12, 162, 3638, 9, 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, 3, 163, 3653, 8, 163, 1, 164, 1, 164, 3, 164, 3657, 8, 164, 1, 164, 1, 164, 1, 164, 3, 164, 3662, 8, 164, 1, 164, 1, 164, 3, 164, 3666, 8, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 5, 166, 3682, 8, 166, 10, 166, 12, 166, 3685, 9, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 5, 168, 3702, 8, 168, 10, 168, 12, 168, 3705, 9, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 5, 168, 3712, 8, 168, 10, 168, 12, 168, 3715, 9, 168, 3, 168, 3717, 8, 168, 1, 168, 1, 168, 1, 168, 3, 168, 3722, 8, 168, 3, 168, 3724, 8, 168, 1, 168, 3, 168, 3727, 8, 168, 1, 168, 3, 168, 3730, 8, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 3, 169, 3740, 8, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 3749, 8, 170, 1, 171, 1, 171, 1, 171, 5, 171, 3754, 8, 171, 10, 171, 12, 171, 3757, 9, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 3768, 8, 172, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 5, 174, 3775, 8, 174, 10, 174, 12, 174, 3778, 9, 174, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 4, 176, 3785, 8, 176, 11, 176, 12, 176, 3786, 1, 176, 3, 176, 3790, 8, 176, 1, 177, 1, 177, 3, 177, 3794, 8, 177, 1, 178, 1, 178, 1, 178, 1, 178, 3, 178, 3800, 8, 178, 1, 179, 1, 179, 1, 180, 3, 180, 3805, 8, 180, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 3, 181, 3822, 8, 181, 1, 182, 1, 182, 1, 183, 1, 183, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 9, 1138, 1208, 1216, 1236, 1263, 1272, 1281, 1290, 1338, 4, 100, 262, 266, 270, 186, 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, 0, 76, 2, 0, 78, 78, 229, 229, 2, 0, 34, 34, 247, 247, 3, 0, 73, 73, 191, 191, 262, 262, 2, 0, 123, 123, 140, 140, 2, 0, 11, 11, 39, 39, 2, 0, 91, 91, 98, 98, 5, 0, 46, 46, 58, 58, 108, 108, 122, 122, 173, 173, 3, 0, 10, 10, 290, 290, 331, 331, 1, 0, 86, 87, 2, 0, 108, 108, 122, 122, 3, 0, 8, 8, 96, 96, 289, 289, 2, 0, 8, 8, 167, 167, 1, 0, 335, 336, 2, 0, 59, 59, 96, 96, 2, 0, 129, 129, 249, 249, 6, 0, 54, 54, 129, 129, 143, 143, 172, 172, 228, 228, 313, 313, 3, 0, 11, 11, 59, 59, 96, 96, 4, 0, 107, 107, 139, 139, 171, 171, 326, 326, 2, 0, 171, 171, 326, 326, 3, 0, 45, 45, 275, 275, 279, 279, 2, 0, 45, 45, 275, 275, 3, 0, 18, 18, 103, 103, 320, 320, 3, 0, 72, 72, 190, 190, 261, 261, 4, 0, 102, 102, 148, 148, 270, 270, 323, 323, 3, 0, 102, 102, 270, 270, 323, 323, 2, 0, 21, 21, 86, 86, 2, 0, 116, 116, 157, 157, 2, 0, 292, 292, 337, 337, 2, 0, 291, 291, 303, 303, 2, 0, 61, 61, 256, 256, 2, 0, 104, 104, 141, 141, 2, 0, 10, 10, 92, 92, 2, 0, 15, 15, 264, 264, 2, 0, 124, 124, 250, 250, 2, 0, 382, 382, 384, 384, 2, 0, 93, 93, 217, 217, 2, 0, 209, 209, 278, 278, 2, 0, 197, 197, 360, 360, 1, 0, 251, 252, 1, 0, 163, 164, 3, 0, 10, 10, 16, 16, 277, 277, 3, 0, 111, 111, 316, 316, 325, 325, 2, 0, 361, 362, 366, 366, 2, 0, 94, 94, 363, 365, 2, 0, 361, 362, 369, 369, 11, 0, 67, 67, 69, 69, 134, 134, 180, 180, 182, 182, 184, 184, 186, 186, 231, 231, 259, 259, 341, 341, 348, 348, 4, 0, 63, 63, 65, 66, 268, 268, 331, 331, 2, 0, 74, 75, 306, 306, 3, 0, 76, 77, 302, 302, 307, 307, 2, 0, 36, 36, 318, 318, 2, 0, 138, 138, 246, 246, 1, 0, 287, 288, 2, 0, 4, 4, 123, 123, 2, 0, 4, 4, 119, 119, 3, 0, 28, 28, 160, 160, 311, 311, 1, 0, 220, 221, 1, 0, 352, 359, 2, 0, 94, 94, 361, 370, 4, 0, 14, 14, 140, 140, 197, 197, 208, 208, 2, 0, 111, 111, 316, 316, 1, 0, 361, 362, 7, 0, 67, 68, 134, 135, 180, 187, 192, 193, 259, 260, 341, 342, 348, 349, 6, 0, 67, 67, 134, 134, 184, 184, 186, 186, 259, 259, 348, 348, 2, 0, 186, 186, 348, 348, 4, 0, 67, 67, 134, 134, 184, 184, 259, 259, 3, 0, 134, 134, 184, 184, 259, 259, 2, 0, 82, 82, 352, 352, 2, 0, 233, 233, 258, 258, 2, 0, 118, 118, 226, 226, 2, 0, 378, 378, 389, 389, 1, 0, 379, 387, 2, 0, 96, 96, 269, 269, 1, 0, 377, 378, 52, 0, 8, 9, 11, 13, 15, 15, 17, 19, 21, 22, 24, 27, 29, 34, 37, 41, 43, 46, 48, 48, 50, 56, 58, 58, 61, 62, 67, 91, 93, 96, 98, 98, 101, 101, 103, 110, 113, 113, 115, 118, 121, 122, 125, 128, 131, 131, 133, 139, 141, 143, 145, 147, 149, 151, 154, 154, 156, 157, 159, 159, 163, 193, 195, 195, 199, 201, 205, 207, 210, 210, 212, 213, 215, 219, 222, 226, 228, 238, 240, 249, 251, 262, 264, 267, 269, 276, 278, 292, 294, 299, 302, 308, 310, 310, 312, 322, 326, 330, 333, 342, 345, 345, 348, 351, 16, 0, 15, 15, 60, 60, 102, 102, 124, 124, 144, 144, 148, 148, 155, 155, 158, 158, 161, 161, 194, 194, 203, 203, 250, 250, 264, 264, 270, 270, 323, 323, 332, 332, 19, 0, 8, 14, 16, 59, 61, 101, 103, 122, 125, 143, 145, 147, 149, 154, 156, 157, 159, 160, 162, 193, 195, 195, 197, 202, 204, 249, 251, 262, 265, 269, 271, 292, 294, 322, 324, 331, 333, 351, 4421, 0, 375, 1, 0, 0, 0, 2, 380, 1, 0, 0, 0, 4, 1341, 1, 0, 0, 0, 6, 1436, 1, 0, 0, 0, 8, 1438, 1, 0, 0, 0, 10, 1450, 1, 0, 0, 0, 12, 1463, 1, 0, 0, 0, 14, 1466, 1, 0, 0, 0, 16, 1470, 1, 0, 0, 0, 18, 1551, 1, 0, 0, 0, 20, 1553, 1, 0, 0, 0, 22, 1558, 1, 0, 0, 0, 24, 1579, 1, 0, 0, 0, 26, 1581, 1, 0, 0, 0, 28, 1588, 1, 0, 0, 0, 30, 1590, 1, 0, 0, 0, 32, 1598, 1, 0, 0, 0, 34, 1607, 1, 0, 0, 0, 36, 1618, 1, 0, 0, 0, 38, 1639, 1, 0, 0, 0, 40, 1642, 1, 0, 0, 0, 42, 1645, 1, 0, 0, 0, 44, 1656, 1, 0, 0, 0, 46, 1672, 1, 0, 0, 0, 48, 1678, 1, 0, 0, 0, 50, 1680, 1, 0, 0, 0, 52, 1691, 1, 0, 0, 0, 54, 1698, 1, 0, 0, 0, 56, 1709, 1, 0, 0, 0, 58, 1726, 1, 0, 0, 0, 60, 1734, 1, 0, 0, 0, 62, 1736, 1, 0, 0, 0, 64, 1800, 1, 0, 0, 0, 66, 1802, 1, 0, 0, 0, 68, 1804, 1, 0, 0, 0, 70, 1806, 1, 0, 0, 0, 72, 1808, 1, 0, 0, 0, 74, 1810, 1, 0, 0, 0, 76, 1812, 1, 0, 0, 0, 78, 1814, 1, 0, 0, 0, 80, 1819, 1, 0, 0, 0, 82, 1821, 1, 0, 0, 0, 84, 1826, 1, 0, 0, 0, 86, 1828, 1, 0, 0, 0, 88, 1836, 1, 0, 0, 0, 90, 1844, 1, 0, 0, 0, 92, 1849, 1, 0, 0, 0, 94, 1876, 1, 0, 0, 0, 96, 1881, 1, 0, 0, 0, 98, 1889, 1, 0, 0, 0, 100, 1897, 1, 0, 0, 0, 102, 1947, 1, 0, 0, 0, 104, 1951, 1, 0, 0, 0, 106, 1987, 1, 0, 0, 0, 108, 2033, 1, 0, 0, 0, 110, 2054, 1, 0, 0, 0, 112, 2086, 1, 0, 0, 0, 114, 2098, 1, 0, 0, 0, 116, 2101, 1, 0, 0, 0, 118, 2117, 1, 0, 0, 0, 120, 2131, 1, 0, 0, 0, 122, 2165, 1, 0, 0, 0, 124, 2167, 1, 0, 0, 0, 126, 2175, 1, 0, 0, 0, 128, 2179, 1, 0, 0, 0, 130, 2182, 1, 0, 0, 0, 132, 2185, 1, 0, 0, 0, 134, 2211, 1, 0, 0, 0, 136, 2213, 1, 0, 0, 0, 138, 2251, 1, 0, 0, 0, 140, 2292, 1, 0, 0, 0, 142, 2297, 1, 0, 0, 0, 144, 2330, 1, 0, 0, 0, 146, 2352, 1, 0, 0, 0, 148, 2354, 1, 0, 0, 0, 150, 2384, 1, 0, 0, 0, 152, 2386, 1, 0, 0, 0, 154, 2393, 1, 0, 0, 0, 156, 2410, 1, 0, 0, 0, 158, 2425, 1, 0, 0, 0, 160, 2449, 1, 0, 0, 0, 162, 2465, 1, 0, 0, 0, 164, 2472, 1, 0, 0, 0, 166, 2476, 1, 0, 0, 0, 168, 2479, 1, 0, 0, 0, 170, 2511, 1, 0, 0, 0, 172, 2526, 1, 0, 0, 0, 174, 2545, 1, 0, 0, 0, 176, 2563, 1, 0, 0, 0, 178, 2576, 1, 0, 0, 0, 180, 2578, 1, 0, 0, 0, 182, 2614, 1, 0, 0, 0, 184, 2616, 1, 0, 0, 0, 186, 2620, 1, 0, 0, 0, 188, 2628, 1, 0, 0, 0, 190, 2639, 1, 0, 0, 0, 192, 2643, 1, 0, 0, 0, 194, 2654, 1, 0, 0, 0, 196, 2690, 1, 0, 0, 0, 198, 2692, 1, 0, 0, 0, 200, 2696, 1, 0, 0, 0, 202, 2724, 1, 0, 0, 0, 204, 2745, 1, 0, 0, 0, 206, 2758, 1, 0, 0, 0, 208, 2764, 1, 0, 0, 0, 210, 2768, 1, 0, 0, 0, 212, 2770, 1, 0, 0, 0, 214, 2773, 1, 0, 0, 0, 216, 2794, 1, 0, 0, 0, 218, 2845, 1, 0, 0, 0, 220, 2847, 1, 0, 0, 0, 222, 2855, 1, 0, 0, 0, 224, 2869, 1, 0, 0, 0, 226, 2871, 1, 0, 0, 0, 228, 2879, 1, 0, 0, 0, 230, 2887, 1, 0, 0, 0, 232, 2894, 1, 0, 0, 0, 234, 2898, 1, 0, 0, 0, 236, 2900, 1, 0, 0, 0, 238, 2907, 1, 0, 0, 0, 240, 2928, 1, 0, 0, 0, 242, 2930, 1, 0, 0, 0, 244, 2938, 1, 0, 0, 0, 246, 2940, 1, 0, 0, 0, 248, 2953, 1, 0, 0, 0, 250, 2968, 1, 0, 0, 0, 252, 2972, 1, 0, 0, 0, 254, 2974, 1, 0, 0, 0, 256, 2976, 1, 0, 0, 0, 258, 2982, 1, 0, 0, 0, 260, 2984, 1, 0, 0, 0, 262, 3004, 1, 0, 0, 0, 264, 3099, 1, 0, 0, 0, 266, 3105, 1, 0, 0, 0, 268, 3131, 1, 0, 0, 0, 270, 3382, 1, 0, 0, 0, 272, 3404, 1, 0, 0, 0, 274, 3421, 1, 0, 0, 0, 276, 3423, 1, 0, 0, 0, 278, 3425, 1, 0, 0, 0, 280, 3427, 1, 0, 0, 0, 282, 3429, 1, 0, 0, 0, 284, 3431, 1, 0, 0, 0, 286, 3436, 1, 0, 0, 0, 288, 3443, 1, 0, 0, 0, 290, 3447, 1, 0, 0, 0, 292, 3452, 1, 0, 0, 0, 294, 3458, 1, 0, 0, 0, 296, 3465, 1, 0, 0, 0, 298, 3467, 1, 0, 0, 0, 300, 3472, 1, 0, 0, 0, 302, 3504, 1, 0, 0, 0, 304, 3559, 1, 0, 0, 0, 306, 3561, 1, 0, 0, 0, 308, 3569, 1, 0, 0, 0, 310, 3577, 1, 0, 0, 0, 312, 3585, 1, 0, 0, 0, 314, 3600, 1, 0, 0, 0, 316, 3602, 1, 0, 0, 0, 318, 3605, 1, 0, 0, 0, 320, 3613, 1, 0, 0, 0, 322, 3623, 1, 0, 0, 0, 324, 3631, 1, 0, 0, 0, 326, 3652, 1, 0, 0, 0, 328, 3654, 1, 0, 0, 0, 330, 3667, 1, 0, 0, 0, 332, 3672, 1, 0, 0, 0, 334, 3686, 1, 0, 0, 0, 336, 3729, 1, 0, 0, 0, 338, 3739, 1, 0, 0, 0, 340, 3748, 1, 0, 0, 0, 342, 3750, 1, 0, 0, 0, 344, 3767, 1, 0, 0, 0, 346, 3769, 1, 0, 0, 0, 348, 3771, 1, 0, 0, 0, 350, 3779, 1, 0, 0, 0, 352, 3789, 1, 0, 0, 0, 354, 3793, 1, 0, 0, 0, 356, 3799, 1, 0, 0, 0, 358, 3801, 1, 0, 0, 0, 360, 3804, 1, 0, 0, 0, 362, 3821, 1, 0, 0, 0, 364, 3823, 1, 0, 0, 0, 366, 3825, 1, 0, 0, 0, 368, 3827, 1, 0, 0, 0, 370, 3829, 1, 0, 0, 0, 372, 374, 3, 2, 1, 0, 373, 372, 1, 0, 0, 0, 374, 377, 1, 0, 0, 0, 375, 373, 1, 0, 0, 0, 375, 376, 1, 0, 0, 0, 376, 378, 1, 0, 0, 0, 377, 375, 1, 0, 0, 0, 378, 379, 5, 0, 0, 1, 379, 1, 1, 0, 0, 0, 380, 382, 3, 4, 2, 0, 381, 383, 5, 1, 0, 0, 382, 381, 1, 0, 0, 0, 382, 383, 1, 0, 0, 0, 383, 3, 1, 0, 0, 0, 384, 1342, 3, 16, 8, 0, 385, 387, 3, 32, 16, 0, 386, 385, 1, 0, 0, 0, 386, 387, 1, 0, 0, 0, 387, 388, 1, 0, 0, 0, 388, 1342, 3, 64, 32, 0, 389, 391, 5, 330, 0, 0, 390, 392, 3, 26, 13, 0, 391, 390, 1, 0, 0, 0, 391, 392, 1, 0, 0, 0, 392, 393, 1, 0, 0, 0, 393, 1342, 3, 66, 33, 0, 394, 395, 5, 269, 0, 0, 395, 398, 5, 37, 0, 0, 396, 399, 3, 354, 177, 0, 397, 399, 3, 364, 182, 0, 398, 396, 1, 0, 0, 0, 398, 397, 1, 0, 0, 0, 399, 1342, 1, 0, 0, 0, 400, 401, 5, 59, 0, 0, 401, 403, 3, 26, 13, 0, 402, 404, 3, 164, 82, 0, 403, 402, 1, 0, 0, 0, 403, 404, 1, 0, 0, 0, 404, 405, 1, 0, 0, 0, 405, 415, 3, 68, 34, 0, 406, 407, 5, 51, 0, 0, 407, 414, 3, 364, 182, 0, 408, 409, 5, 170, 0, 0, 409, 414, 3, 364, 182, 0, 410, 411, 5, 346, 0, 0, 411, 412, 7, 0, 0, 0, 412, 414, 3, 42, 21, 0, 413, 406, 1, 0, 0, 0, 413, 408, 1, 0, 0, 0, 413, 410, 1, 0, 0, 0, 414, 417, 1, 0, 0, 0, 415, 413, 1, 0, 0, 0, 415, 416, 1, 0, 0, 0, 416, 1342, 1, 0, 0, 0, 417, 415, 1, 0, 0, 0, 418, 419, 5, 11, 0, 0, 419, 420, 3, 26, 13, 0, 420, 421, 3, 66, 33, 0, 421, 422, 5, 269, 0, 0, 422, 423, 7, 0, 0, 0, 423, 424, 3, 42, 21, 0, 424, 1342, 1, 0, 0, 0, 425, 426, 5, 11, 0, 0, 426, 427, 3, 26, 13, 0, 427, 428, 3, 66, 33, 0, 428, 429, 5, 269, 0, 0, 429, 430, 5, 170, 0, 0, 430, 431, 3, 364, 182, 0, 431, 1342, 1, 0, 0, 0, 432, 433, 5, 96, 0, 0, 433, 435, 3, 26, 13, 0, 434, 436, 3, 166, 83, 0, 435, 434, 1, 0, 0, 0, 435, 436, 1, 0, 0, 0, 436, 437, 1, 0, 0, 0, 437, 439, 3, 66, 33, 0, 438, 440, 7, 1, 0, 0, 439, 438, 1, 0, 0, 0, 439, 440, 1, 0, 0, 0, 440, 1342, 1, 0, 0, 0, 441, 442, 5, 273, 0, 0, 442, 445, 7, 2, 0, 0, 443, 444, 7, 3, 0, 0, 444, 446, 3, 222, 111, 0, 445, 443, 1, 0, 0, 0, 445, 446, 1, 0, 0, 0, 446, 451, 1, 0, 0, 0, 447, 449, 5, 163, 0, 0, 448, 447, 1, 0, 0, 0, 448, 449, 1, 0, 0, 0, 449, 450, 1, 0, 0, 0, 450, 452, 3, 364, 182, 0, 451, 448, 1, 0, 0, 0, 451, 452, 1, 0, 0, 0, 452, 1342, 1, 0, 0, 0, 453, 455, 5, 59, 0, 0, 454, 456, 5, 298, 0, 0, 455, 454, 1, 0, 0, 0, 455, 456, 1, 0, 0, 0, 456, 458, 1, 0, 0, 0, 457, 459, 5, 109, 0, 0, 458, 457, 1, 0, 0, 0, 458, 459, 1, 0, 0, 0, 459, 460, 1, 0, 0, 0, 460, 462, 5, 293, 0, 0, 461, 463, 3, 164, 82, 0, 462, 461, 1, 0, 0, 0, 462, 463, 1, 0, 0, 0, 463, 464, 1, 0, 0, 0, 464, 469, 3, 70, 35, 0, 465, 466, 5, 2, 0, 0, 466, 467, 3, 322, 161, 0, 467, 468, 5, 3, 0, 0, 468, 470, 1, 0, 0, 0, 469, 465, 1, 0, 0, 0, 469, 470, 1, 0, 0, 0, 470, 472, 1, 0, 0, 0, 471, 473, 3, 36, 18, 0, 472, 471, 1, 0, 0, 0, 472, 473, 1, 0, 0, 0, 473, 474, 1, 0, 0, 0, 474, 479, 3, 38, 19, 0, 475, 477, 5, 20, 0, 0, 476, 475, 1, 0, 0, 0, 476, 477, 1, 0, 0, 0, 477, 478, 1, 0, 0, 0, 478, 480, 3, 16, 8, 0, 479, 476, 1, 0, 0, 0, 479, 480, 1, 0, 0, 0, 480, 1342, 1, 0, 0, 0, 481, 482, 5, 59, 0, 0, 482, 484, 5, 293, 0, 0, 483, 485, 3, 164, 82, 0, 484, 483, 1, 0, 0, 0, 484, 485, 1, 0, 0, 0, 485, 486, 1, 0, 0, 0, 486, 487, 3, 70, 35, 0, 487, 488, 5, 163, 0, 0, 488, 499, 3, 72, 36, 0, 489, 498, 3, 36, 18, 0, 490, 498, 3, 218, 109, 0, 491, 498, 3, 58, 29, 0, 492, 493, 5, 170, 0, 0, 493, 498, 3, 364, 182, 0, 494, 495, 5, 297, 0, 0, 495, 498, 3, 42, 21, 0, 496, 498, 3, 40, 20, 0, 497, 489, 1, 0, 0, 0, 497, 490, 1, 0, 0, 0, 497, 491, 1, 0, 0, 0, 497, 492, 1, 0, 0, 0, 497, 494, 1, 0, 0, 0, 497, 496, 1, 0, 0, 0, 498, 501, 1, 0, 0, 0, 499, 497, 1, 0, 0, 0, 499, 500, 1, 0, 0, 0, 500, 1342, 1, 0, 0, 0, 501, 499, 1, 0, 0, 0, 502, 503, 5, 59, 0, 0, 503, 505, 5, 208, 0, 0, 504, 502, 1, 0, 0, 0, 504, 505, 1, 0, 0, 0, 505, 506, 1, 0, 0, 0, 506, 507, 5, 244, 0, 0, 507, 508, 5, 293, 0, 0, 508, 513, 3, 70, 35, 0, 509, 510, 5, 2, 0, 0, 510, 511, 3, 322, 161, 0, 511, 512, 5, 3, 0, 0, 512, 514, 1, 0, 0, 0, 513, 509, 1, 0, 0, 0, 513, 514, 1, 0, 0, 0, 514, 516, 1, 0, 0, 0, 515, 517, 3, 36, 18, 0, 516, 515, 1, 0, 0, 0, 516, 517, 1, 0, 0, 0, 517, 518, 1, 0, 0, 0, 518, 523, 3, 38, 19, 0, 519, 521, 5, 20, 0, 0, 520, 519, 1, 0, 0, 0, 520, 521, 1, 0, 0, 0, 521, 522, 1, 0, 0, 0, 522, 524, 3, 16, 8, 0, 523, 520, 1, 0, 0, 0, 523, 524, 1, 0, 0, 0, 524, 1342, 1, 0, 0, 0, 525, 526, 5, 13, 0, 0, 526, 527, 5, 293, 0, 0, 527, 529, 3, 72, 36, 0, 528, 530, 3, 22, 11, 0, 529, 528, 1, 0, 0, 0, 529, 530, 1, 0, 0, 0, 530, 531, 1, 0, 0, 0, 531, 532, 5, 55, 0, 0, 532, 540, 5, 282, 0, 0, 533, 541, 5, 196, 0, 0, 534, 535, 5, 119, 0, 0, 535, 536, 5, 50, 0, 0, 536, 541, 3, 86, 43, 0, 537, 538, 5, 119, 0, 0, 538, 539, 5, 10, 0, 0, 539, 541, 5, 50, 0, 0, 540, 533, 1, 0, 0, 0, 540, 534, 1, 0, 0, 0, 540, 537, 1, 0, 0, 0, 540, 541, 1, 0, 0, 0, 541, 1342, 1, 0, 0, 0, 542, 543, 5, 13, 0, 0, 543, 546, 5, 294, 0, 0, 544, 545, 7, 3, 0, 0, 545, 547, 3, 66, 33, 0, 546, 544, 1, 0, 0, 0, 546, 547, 1, 0, 0, 0, 547, 548, 1, 0, 0, 0, 548, 549, 5, 55, 0, 0, 549, 551, 5, 282, 0, 0, 550, 552, 5, 196, 0, 0, 551, 550, 1, 0, 0, 0, 551, 552, 1, 0, 0, 0, 552, 1342, 1, 0, 0, 0, 553, 554, 5, 11, 0, 0, 554, 555, 5, 293, 0, 0, 555, 556, 3, 72, 36, 0, 556, 557, 5, 8, 0, 0, 557, 558, 5, 49, 0, 0, 558, 559, 3, 308, 154, 0, 559, 1342, 1, 0, 0, 0, 560, 561, 5, 11, 0, 0, 561, 562, 5, 293, 0, 0, 562, 563, 3, 72, 36, 0, 563, 564, 5, 8, 0, 0, 564, 565, 5, 50, 0, 0, 565, 566, 5, 2, 0, 0, 566, 567, 3, 306, 153, 0, 567, 568, 5, 3, 0, 0, 568, 1342, 1, 0, 0, 0, 569, 570, 5, 11, 0, 0, 570, 571, 5, 293, 0, 0, 571, 572, 3, 72, 36, 0, 572, 573, 5, 241, 0, 0, 573, 574, 5, 49, 0, 0, 574, 575, 3, 80, 40, 0, 575, 576, 5, 309, 0, 0, 576, 577, 3, 88, 44, 0, 577, 1342, 1, 0, 0, 0, 578, 579, 5, 11, 0, 0, 579, 580, 5, 293, 0, 0, 580, 581, 3, 72, 36, 0, 581, 582, 5, 96, 0, 0, 582, 584, 5, 49, 0, 0, 583, 585, 3, 166, 83, 0, 584, 583, 1, 0, 0, 0, 584, 585, 1, 0, 0, 0, 585, 586, 1, 0, 0, 0, 586, 587, 3, 80, 40, 0, 587, 1342, 1, 0, 0, 0, 588, 589, 5, 11, 0, 0, 589, 590, 5, 293, 0, 0, 590, 591, 3, 72, 36, 0, 591, 592, 5, 96, 0, 0, 592, 594, 5, 50, 0, 0, 593, 595, 3, 166, 83, 0, 594, 593, 1, 0, 0, 0, 594, 595, 1, 0, 0, 0, 595, 596, 1, 0, 0, 0, 596, 597, 5, 2, 0, 0, 597, 598, 3, 86, 43, 0, 598, 599, 5, 3, 0, 0, 599, 1342, 1, 0, 0, 0, 600, 605, 5, 11, 0, 0, 601, 602, 5, 293, 0, 0, 602, 606, 3, 72, 36, 0, 603, 604, 5, 338, 0, 0, 604, 606, 3, 76, 38, 0, 605, 601, 1, 0, 0, 0, 605, 603, 1, 0, 0, 0, 606, 607, 1, 0, 0, 0, 607, 608, 5, 241, 0, 0, 608, 609, 5, 309, 0, 0, 609, 610, 3, 222, 111, 0, 610, 1342, 1, 0, 0, 0, 611, 616, 5, 11, 0, 0, 612, 613, 5, 293, 0, 0, 613, 617, 3, 72, 36, 0, 614, 615, 5, 338, 0, 0, 615, 617, 3, 76, 38, 0, 616, 612, 1, 0, 0, 0, 616, 614, 1, 0, 0, 0, 617, 618, 1, 0, 0, 0, 618, 619, 5, 269, 0, 0, 619, 620, 5, 297, 0, 0, 620, 621, 3, 42, 21, 0, 621, 1342, 1, 0, 0, 0, 622, 627, 5, 11, 0, 0, 623, 624, 5, 293, 0, 0, 624, 628, 3, 72, 36, 0, 625, 626, 5, 338, 0, 0, 626, 628, 3, 76, 38, 0, 627, 623, 1, 0, 0, 0, 627, 625, 1, 0, 0, 0, 628, 629, 1, 0, 0, 0, 629, 630, 5, 328, 0, 0, 630, 632, 5, 297, 0, 0, 631, 633, 3, 166, 83, 0, 632, 631, 1, 0, 0, 0, 632, 633, 1, 0, 0, 0, 633, 634, 1, 0, 0, 0, 634, 635, 3, 42, 21, 0, 635, 1342, 1, 0, 0, 0, 636, 637, 5, 11, 0, 0, 637, 638, 5, 293, 0, 0, 638, 639, 3, 72, 36, 0, 639, 641, 7, 4, 0, 0, 640, 642, 5, 49, 0, 0, 641, 640, 1, 0, 0, 0, 641, 642, 1, 0, 0, 0, 642, 643, 1, 0, 0, 0, 643, 645, 3, 80, 40, 0, 644, 646, 3, 362, 181, 0, 645, 644, 1, 0, 0, 0, 645, 646, 1, 0, 0, 0, 646, 1342, 1, 0, 0, 0, 647, 648, 5, 11, 0, 0, 648, 649, 5, 293, 0, 0, 649, 651, 3, 72, 36, 0, 650, 652, 3, 22, 11, 0, 651, 650, 1, 0, 0, 0, 651, 652, 1, 0, 0, 0, 652, 653, 1, 0, 0, 0, 653, 655, 5, 39, 0, 0, 654, 656, 5, 49, 0, 0, 655, 654, 1, 0, 0, 0, 655, 656, 1, 0, 0, 0, 656, 657, 1, 0, 0, 0, 657, 658, 3, 80, 40, 0, 658, 660, 3, 320, 160, 0, 659, 661, 3, 300, 150, 0, 660, 659, 1, 0, 0, 0, 660, 661, 1, 0, 0, 0, 661, 1342, 1, 0, 0, 0, 662, 663, 5, 11, 0, 0, 663, 664, 5, 293, 0, 0, 664, 666, 3, 72, 36, 0, 665, 667, 3, 22, 11, 0, 666, 665, 1, 0, 0, 0, 666, 667, 1, 0, 0, 0, 667, 668, 1, 0, 0, 0, 668, 669, 5, 244, 0, 0, 669, 670, 5, 50, 0, 0, 670, 671, 5, 2, 0, 0, 671, 672, 3, 310, 155, 0, 672, 673, 5, 3, 0, 0, 673, 1342, 1, 0, 0, 0, 674, 675, 5, 11, 0, 0, 675, 676, 5, 293, 0, 0, 676, 678, 3, 72, 36, 0, 677, 679, 3, 22, 11, 0, 678, 677, 1, 0, 0, 0, 678, 679, 1, 0, 0, 0, 679, 680, 1, 0, 0, 0, 680, 681, 5, 269, 0, 0, 681, 682, 5, 266, 0, 0, 682, 686, 3, 364, 182, 0, 683, 684, 5, 346, 0, 0, 684, 685, 5, 267, 0, 0, 685, 687, 3, 42, 21, 0, 686, 683, 1, 0, 0, 0, 686, 687, 1, 0, 0, 0, 687, 1342, 1, 0, 0, 0, 688, 689, 5, 11, 0, 0, 689, 690, 5, 293, 0, 0, 690, 692, 3, 72, 36, 0, 691, 693, 3, 22, 11, 0, 692, 691, 1, 0, 0, 0, 692, 693, 1, 0, 0, 0, 693, 694, 1, 0, 0, 0, 694, 695, 5, 269, 0, 0, 695, 696, 5, 267, 0, 0, 696, 697, 3, 42, 21, 0, 697, 1342, 1, 0, 0, 0, 698, 703, 5, 11, 0, 0, 699, 700, 5, 293, 0, 0, 700, 704, 3, 72, 36, 0, 701, 702, 5, 338, 0, 0, 702, 704, 3, 76, 38, 0, 703, 699, 1, 0, 0, 0, 703, 701, 1, 0, 0, 0, 704, 705, 1, 0, 0, 0, 705, 707, 5, 8, 0, 0, 706, 708, 3, 164, 82, 0, 707, 706, 1, 0, 0, 0, 707, 708, 1, 0, 0, 0, 708, 710, 1, 0, 0, 0, 709, 711, 3, 20, 10, 0, 710, 709, 1, 0, 0, 0, 711, 712, 1, 0, 0, 0, 712, 710, 1, 0, 0, 0, 712, 713, 1, 0, 0, 0, 713, 1342, 1, 0, 0, 0, 714, 715, 5, 11, 0, 0, 715, 716, 5, 293, 0, 0, 716, 717, 3, 72, 36, 0, 717, 718, 3, 22, 11, 0, 718, 719, 5, 241, 0, 0, 719, 720, 5, 309, 0, 0, 720, 721, 3, 22, 11, 0, 721, 1342, 1, 0, 0, 0, 722, 727, 5, 11, 0, 0, 723, 724, 5, 293, 0, 0, 724, 728, 3, 72, 36, 0, 725, 726, 5, 338, 0, 0, 726, 728, 3, 76, 38, 0, 727, 723, 1, 0, 0, 0, 727, 725, 1, 0, 0, 0, 728, 729, 1, 0, 0, 0, 729, 731, 5, 96, 0, 0, 730, 732, 3, 166, 83, 0, 731, 730, 1, 0, 0, 0, 731, 732, 1, 0, 0, 0, 732, 733, 1, 0, 0, 0, 733, 738, 3, 22, 11, 0, 734, 735, 5, 4, 0, 0, 735, 737, 3, 22, 11, 0, 736, 734, 1, 0, 0, 0, 737, 740, 1, 0, 0, 0, 738, 736, 1, 0, 0, 0, 738, 739, 1, 0, 0, 0, 739, 742, 1, 0, 0, 0, 740, 738, 1, 0, 0, 0, 741, 743, 5, 230, 0, 0, 742, 741, 1, 0, 0, 0, 742, 743, 1, 0, 0, 0, 743, 1342, 1, 0, 0, 0, 744, 745, 5, 11, 0, 0, 745, 746, 5, 293, 0, 0, 746, 748, 3, 72, 36, 0, 747, 749, 3, 22, 11, 0, 748, 747, 1, 0, 0, 0, 748, 749, 1, 0, 0, 0, 749, 750, 1, 0, 0, 0, 750, 751, 5, 269, 0, 0, 751, 752, 5, 170, 0, 0, 752, 753, 3, 364, 182, 0, 753, 1342, 1, 0, 0, 0, 754, 755, 5, 11, 0, 0, 755, 756, 5, 293, 0, 0, 756, 757, 3, 72, 36, 0, 757, 758, 5, 237, 0, 0, 758, 759, 5, 219, 0, 0, 759, 1342, 1, 0, 0, 0, 760, 761, 5, 11, 0, 0, 761, 762, 5, 176, 0, 0, 762, 763, 5, 338, 0, 0, 763, 764, 3, 76, 38, 0, 764, 765, 7, 5, 0, 0, 765, 766, 5, 248, 0, 0, 766, 1342, 1, 0, 0, 0, 767, 768, 5, 11, 0, 0, 768, 769, 5, 176, 0, 0, 769, 770, 5, 338, 0, 0, 770, 771, 3, 76, 38, 0, 771, 772, 5, 269, 0, 0, 772, 773, 5, 297, 0, 0, 773, 774, 3, 42, 21, 0, 774, 1342, 1, 0, 0, 0, 775, 776, 5, 96, 0, 0, 776, 778, 5, 293, 0, 0, 777, 779, 3, 166, 83, 0, 778, 777, 1, 0, 0, 0, 778, 779, 1, 0, 0, 0, 779, 780, 1, 0, 0, 0, 780, 782, 3, 72, 36, 0, 781, 783, 5, 230, 0, 0, 782, 781, 1, 0, 0, 0, 782, 783, 1, 0, 0, 0, 783, 1342, 1, 0, 0, 0, 784, 785, 5, 96, 0, 0, 785, 787, 5, 338, 0, 0, 786, 788, 3, 166, 83, 0, 787, 786, 1, 0, 0, 0, 787, 788, 1, 0, 0, 0, 788, 789, 1, 0, 0, 0, 789, 1342, 3, 76, 38, 0, 790, 791, 5, 96, 0, 0, 791, 792, 5, 176, 0, 0, 792, 794, 5, 338, 0, 0, 793, 795, 3, 166, 83, 0, 794, 793, 1, 0, 0, 0, 794, 795, 1, 0, 0, 0, 795, 796, 1, 0, 0, 0, 796, 1342, 3, 76, 38, 0, 797, 800, 5, 59, 0, 0, 798, 799, 5, 208, 0, 0, 799, 801, 5, 244, 0, 0, 800, 798, 1, 0, 0, 0, 800, 801, 1, 0, 0, 0, 801, 806, 1, 0, 0, 0, 802, 804, 5, 128, 0, 0, 803, 802, 1, 0, 0, 0, 803, 804, 1, 0, 0, 0, 804, 805, 1, 0, 0, 0, 805, 807, 5, 298, 0, 0, 806, 803, 1, 0, 0, 0, 806, 807, 1, 0, 0, 0, 807, 808, 1, 0, 0, 0, 808, 810, 5, 338, 0, 0, 809, 811, 3, 164, 82, 0, 810, 809, 1, 0, 0, 0, 810, 811, 1, 0, 0, 0, 811, 812, 1, 0, 0, 0, 812, 814, 3, 74, 37, 0, 813, 815, 3, 192, 96, 0, 814, 813, 1, 0, 0, 0, 814, 815, 1, 0, 0, 0, 815, 825, 1, 0, 0, 0, 816, 817, 5, 51, 0, 0, 817, 824, 3, 364, 182, 0, 818, 819, 5, 218, 0, 0, 819, 820, 5, 203, 0, 0, 820, 824, 3, 184, 92, 0, 821, 822, 5, 297, 0, 0, 822, 824, 3, 42, 21, 0, 823, 816, 1, 0, 0, 0, 823, 818, 1, 0, 0, 0, 823, 821, 1, 0, 0, 0, 824, 827, 1, 0, 0, 0, 825, 823, 1, 0, 0, 0, 825, 826, 1, 0, 0, 0, 826, 828, 1, 0, 0, 0, 827, 825, 1, 0, 0, 0, 828, 829, 5, 20, 0, 0, 829, 830, 3, 16, 8, 0, 830, 1342, 1, 0, 0, 0, 831, 834, 5, 59, 0, 0, 832, 833, 5, 208, 0, 0, 833, 835, 5, 244, 0, 0, 834, 832, 1, 0, 0, 0, 834, 835, 1, 0, 0, 0, 835, 837, 1, 0, 0, 0, 836, 838, 5, 128, 0, 0, 837, 836, 1, 0, 0, 0, 837, 838, 1, 0, 0, 0, 838, 839, 1, 0, 0, 0, 839, 840, 5, 298, 0, 0, 840, 841, 5, 338, 0, 0, 841, 846, 3, 74, 37, 0, 842, 843, 5, 2, 0, 0, 843, 844, 3, 318, 159, 0, 844, 845, 5, 3, 0, 0, 845, 847, 1, 0, 0, 0, 846, 842, 1, 0, 0, 0, 846, 847, 1, 0, 0, 0, 847, 848, 1, 0, 0, 0, 848, 851, 3, 36, 18, 0, 849, 850, 5, 207, 0, 0, 850, 852, 3, 42, 21, 0, 851, 849, 1, 0, 0, 0, 851, 852, 1, 0, 0, 0, 852, 1342, 1, 0, 0, 0, 853, 854, 5, 11, 0, 0, 854, 855, 5, 338, 0, 0, 855, 857, 3, 76, 38, 0, 856, 858, 5, 20, 0, 0, 857, 856, 1, 0, 0, 0, 857, 858, 1, 0, 0, 0, 858, 859, 1, 0, 0, 0, 859, 860, 3, 16, 8, 0, 860, 1342, 1, 0, 0, 0, 861, 864, 5, 59, 0, 0, 862, 863, 5, 208, 0, 0, 863, 865, 5, 244, 0, 0, 864, 862, 1, 0, 0, 0, 864, 865, 1, 0, 0, 0, 865, 867, 1, 0, 0, 0, 866, 868, 5, 298, 0, 0, 867, 866, 1, 0, 0, 0, 867, 868, 1, 0, 0, 0, 868, 869, 1, 0, 0, 0, 869, 871, 5, 125, 0, 0, 870, 872, 3, 164, 82, 0, 871, 870, 1, 0, 0, 0, 871, 872, 1, 0, 0, 0, 872, 873, 1, 0, 0, 0, 873, 874, 3, 346, 173, 0, 874, 875, 5, 20, 0, 0, 875, 889, 3, 364, 182, 0, 876, 877, 5, 332, 0, 0, 877, 878, 3, 354, 177, 0, 878, 879, 3, 364, 182, 0, 879, 886, 1, 0, 0, 0, 880, 881, 5, 4, 0, 0, 881, 882, 3, 354, 177, 0, 882, 883, 3, 364, 182, 0, 883, 885, 1, 0, 0, 0, 884, 880, 1, 0, 0, 0, 885, 888, 1, 0, 0, 0, 886, 884, 1, 0, 0, 0, 886, 887, 1, 0, 0, 0, 887, 890, 1, 0, 0, 0, 888, 886, 1, 0, 0, 0, 889, 876, 1, 0, 0, 0, 889, 890, 1, 0, 0, 0, 890, 1342, 1, 0, 0, 0, 891, 892, 5, 59, 0, 0, 892, 893, 5, 176, 0, 0, 893, 895, 5, 338, 0, 0, 894, 896, 3, 164, 82, 0, 895, 894, 1, 0, 0, 0, 895, 896, 1, 0, 0, 0, 896, 897, 1, 0, 0, 0, 897, 899, 3, 74, 37, 0, 898, 900, 3, 36, 18, 0, 899, 898, 1, 0, 0, 0, 899, 900, 1, 0, 0, 0, 900, 918, 1, 0, 0, 0, 901, 902, 5, 207, 0, 0, 902, 917, 3, 42, 21, 0, 903, 904, 5, 218, 0, 0, 904, 905, 5, 31, 0, 0, 905, 917, 3, 246, 123, 0, 906, 917, 3, 10, 5, 0, 907, 917, 3, 8, 4, 0, 908, 917, 3, 218, 109, 0, 909, 917, 3, 58, 29, 0, 910, 911, 5, 170, 0, 0, 911, 917, 3, 364, 182, 0, 912, 913, 5, 51, 0, 0, 913, 917, 3, 364, 182, 0, 914, 915, 5, 297, 0, 0, 915, 917, 3, 42, 21, 0, 916, 901, 1, 0, 0, 0, 916, 903, 1, 0, 0, 0, 916, 906, 1, 0, 0, 0, 916, 907, 1, 0, 0, 0, 916, 908, 1, 0, 0, 0, 916, 909, 1, 0, 0, 0, 916, 910, 1, 0, 0, 0, 916, 912, 1, 0, 0, 0, 916, 914, 1, 0, 0, 0, 917, 920, 1, 0, 0, 0, 918, 916, 1, 0, 0, 0, 918, 919, 1, 0, 0, 0, 919, 921, 1, 0, 0, 0, 920, 918, 1, 0, 0, 0, 921, 922, 5, 20, 0, 0, 922, 923, 3, 16, 8, 0, 923, 1342, 1, 0, 0, 0, 924, 926, 5, 96, 0, 0, 925, 927, 5, 298, 0, 0, 926, 925, 1, 0, 0, 0, 926, 927, 1, 0, 0, 0, 927, 928, 1, 0, 0, 0, 928, 930, 5, 125, 0, 0, 929, 931, 3, 166, 83, 0, 930, 929, 1, 0, 0, 0, 930, 931, 1, 0, 0, 0, 931, 932, 1, 0, 0, 0, 932, 1342, 3, 344, 172, 0, 933, 936, 5, 81, 0, 0, 934, 935, 5, 208, 0, 0, 935, 937, 5, 244, 0, 0, 936, 934, 1, 0, 0, 0, 936, 937, 1, 0, 0, 0, 937, 939, 1, 0, 0, 0, 938, 940, 5, 336, 0, 0, 939, 938, 1, 0, 0, 0, 939, 940, 1, 0, 0, 0, 940, 941, 1, 0, 0, 0, 941, 943, 3, 344, 172, 0, 942, 944, 3, 304, 152, 0, 943, 942, 1, 0, 0, 0, 943, 944, 1, 0, 0, 0, 944, 946, 1, 0, 0, 0, 945, 947, 3, 316, 158, 0, 946, 945, 1, 0, 0, 0, 946, 947, 1, 0, 0, 0, 947, 1342, 1, 0, 0, 0, 948, 949, 5, 96, 0, 0, 949, 950, 5, 298, 0, 0, 950, 952, 5, 336, 0, 0, 951, 953, 3, 166, 83, 0, 952, 951, 1, 0, 0, 0, 952, 953, 1, 0, 0, 0, 953, 957, 1, 0, 0, 0, 954, 958, 3, 72, 36, 0, 955, 958, 3, 76, 38, 0, 956, 958, 3, 344, 172, 0, 957, 954, 1, 0, 0, 0, 957, 955, 1, 0, 0, 0, 957, 956, 1, 0, 0, 0, 958, 1342, 1, 0, 0, 0, 959, 961, 5, 106, 0, 0, 960, 962, 7, 6, 0, 0, 961, 960, 1, 0, 0, 0, 961, 962, 1, 0, 0, 0, 962, 963, 1, 0, 0, 0, 963, 1342, 3, 4, 2, 0, 964, 965, 5, 273, 0, 0, 965, 968, 5, 294, 0, 0, 966, 967, 7, 3, 0, 0, 967, 969, 3, 66, 33, 0, 968, 966, 1, 0, 0, 0, 968, 969, 1, 0, 0, 0, 969, 974, 1, 0, 0, 0, 970, 972, 5, 163, 0, 0, 971, 970, 1, 0, 0, 0, 971, 972, 1, 0, 0, 0, 972, 973, 1, 0, 0, 0, 973, 975, 3, 364, 182, 0, 974, 971, 1, 0, 0, 0, 974, 975, 1, 0, 0, 0, 975, 1342, 1, 0, 0, 0, 976, 977, 5, 273, 0, 0, 977, 978, 5, 293, 0, 0, 978, 981, 5, 108, 0, 0, 979, 980, 7, 3, 0, 0, 980, 982, 3, 66, 33, 0, 981, 979, 1, 0, 0, 0, 981, 982, 1, 0, 0, 0, 982, 983, 1, 0, 0, 0, 983, 984, 5, 163, 0, 0, 984, 986, 3, 364, 182, 0, 985, 987, 3, 22, 11, 0, 986, 985, 1, 0, 0, 0, 986, 987, 1, 0, 0, 0, 987, 1342, 1, 0, 0, 0, 988, 989, 5, 273, 0, 0, 989, 990, 5, 297, 0, 0, 990, 995, 3, 72, 36, 0, 991, 992, 5, 2, 0, 0, 992, 993, 3, 46, 23, 0, 993, 994, 5, 3, 0, 0, 994, 996, 1, 0, 0, 0, 995, 991, 1, 0, 0, 0, 995, 996, 1, 0, 0, 0, 996, 1342, 1, 0, 0, 0, 997, 998, 5, 273, 0, 0, 998, 999, 5, 50, 0, 0, 999, 1000, 7, 3, 0, 0, 1000, 1003, 3, 72, 36, 0, 1001, 1002, 7, 3, 0, 0, 1002, 1004, 3, 66, 33, 0, 1003, 1001, 1, 0, 0, 0, 1003, 1004, 1, 0, 0, 0, 1004, 1342, 1, 0, 0, 0, 1005, 1006, 5, 273, 0, 0, 1006, 1009, 5, 339, 0, 0, 1007, 1008, 7, 3, 0, 0, 1008, 1010, 3, 66, 33, 0, 1009, 1007, 1, 0, 0, 0, 1009, 1010, 1, 0, 0, 0, 1010, 1015, 1, 0, 0, 0, 1011, 1013, 5, 163, 0, 0, 1012, 1011, 1, 0, 0, 0, 1012, 1013, 1, 0, 0, 0, 1013, 1014, 1, 0, 0, 0, 1014, 1016, 3, 364, 182, 0, 1015, 1012, 1, 0, 0, 0, 1015, 1016, 1, 0, 0, 0, 1016, 1342, 1, 0, 0, 0, 1017, 1018, 5, 273, 0, 0, 1018, 1019, 5, 219, 0, 0, 1019, 1021, 3, 72, 36, 0, 1020, 1022, 3, 22, 11, 0, 1021, 1020, 1, 0, 0, 0, 1021, 1022, 1, 0, 0, 0, 1022, 1342, 1, 0, 0, 0, 1023, 1025, 5, 273, 0, 0, 1024, 1026, 7, 7, 0, 0, 1025, 1024, 1, 0, 0, 0, 1025, 1026, 1, 0, 0, 0, 1026, 1027, 1, 0, 0, 0, 1027, 1030, 5, 126, 0, 0, 1028, 1029, 7, 3, 0, 0, 1029, 1031, 3, 66, 33, 0, 1030, 1028, 1, 0, 0, 0, 1030, 1031, 1, 0, 0, 0, 1031, 1039, 1, 0, 0, 0, 1032, 1034, 5, 163, 0, 0, 1033, 1032, 1, 0, 0, 0, 1033, 1034, 1, 0, 0, 0, 1034, 1037, 1, 0, 0, 0, 1035, 1038, 3, 222, 111, 0, 1036, 1038, 3, 364, 182, 0, 1037, 1035, 1, 0, 0, 0, 1037, 1036, 1, 0, 0, 0, 1038, 1040, 1, 0, 0, 0, 1039, 1033, 1, 0, 0, 0, 1039, 1040, 1, 0, 0, 0, 1040, 1342, 1, 0, 0, 0, 1041, 1042, 5, 273, 0, 0, 1042, 1043, 5, 59, 0, 0, 1043, 1044, 5, 293, 0, 0, 1044, 1047, 3, 72, 36, 0, 1045, 1046, 5, 20, 0, 0, 1046, 1048, 5, 266, 0, 0, 1047, 1045, 1, 0, 0, 0, 1047, 1048, 1, 0, 0, 0, 1048, 1342, 1, 0, 0, 0, 1049, 1050, 5, 273, 0, 0, 1050, 1051, 5, 62, 0, 0, 1051, 1342, 3, 26, 13, 0, 1052, 1053, 5, 273, 0, 0, 1053, 1058, 5, 38, 0, 0, 1054, 1056, 5, 163, 0, 0, 1055, 1054, 1, 0, 0, 0, 1055, 1056, 1, 0, 0, 0, 1056, 1057, 1, 0, 0, 0, 1057, 1059, 3, 364, 182, 0, 1058, 1055, 1, 0, 0, 0, 1058, 1059, 1, 0, 0, 0, 1059, 1342, 1, 0, 0, 0, 1060, 1061, 5, 273, 0, 0, 1061, 1062, 5, 176, 0, 0, 1062, 1065, 5, 339, 0, 0, 1063, 1064, 7, 3, 0, 0, 1064, 1066, 3, 66, 33, 0, 1065, 1063, 1, 0, 0, 0, 1065, 1066, 1, 0, 0, 0, 1066, 1071, 1, 0, 0, 0, 1067, 1069, 5, 163, 0, 0, 1068, 1067, 1, 0, 0, 0, 1068, 1069, 1, 0, 0, 0, 1069, 1070, 1, 0, 0, 0, 1070, 1072, 3, 364, 182, 0, 1071, 1068, 1, 0, 0, 0, 1071, 1072, 1, 0, 0, 0, 1072, 1342, 1, 0, 0, 0, 1073, 1074, 5, 273, 0, 0, 1074, 1075, 5, 59, 0, 0, 1075, 1076, 5, 176, 0, 0, 1076, 1077, 5, 338, 0, 0, 1077, 1080, 3, 76, 38, 0, 1078, 1079, 5, 20, 0, 0, 1079, 1081, 5, 266, 0, 0, 1080, 1078, 1, 0, 0, 0, 1080, 1081, 1, 0, 0, 0, 1081, 1342, 1, 0, 0, 0, 1082, 1083, 7, 8, 0, 0, 1083, 1085, 5, 125, 0, 0, 1084, 1086, 5, 108, 0, 0, 1085, 1084, 1, 0, 0, 0, 1085, 1086, 1, 0, 0, 0, 1086, 1087, 1, 0, 0, 0, 1087, 1342, 3, 28, 14, 0, 1088, 1089, 7, 8, 0, 0, 1089, 1091, 5, 72, 0, 0, 1090, 1092, 5, 108, 0, 0, 1091, 1090, 1, 0, 0, 0, 1091, 1092, 1, 0, 0, 0, 1092, 1093, 1, 0, 0, 0, 1093, 1342, 3, 66, 33, 0, 1094, 1096, 7, 8, 0, 0, 1095, 1097, 5, 293, 0, 0, 1096, 1095, 1, 0, 0, 0, 1096, 1097, 1, 0, 0, 0, 1097, 1099, 1, 0, 0, 0, 1098, 1100, 7, 9, 0, 0, 1099, 1098, 1, 0, 0, 0, 1099, 1100, 1, 0, 0, 0, 1100, 1101, 1, 0, 0, 0, 1101, 1103, 3, 72, 36, 0, 1102, 1104, 3, 22, 11, 0, 1103, 1102, 1, 0, 0, 0, 1103, 1104, 1, 0, 0, 0, 1104, 1106, 1, 0, 0, 0, 1105, 1107, 3, 30, 15, 0, 1106, 1105, 1, 0, 0, 0, 1106, 1107, 1, 0, 0, 0, 1107, 1342, 1, 0, 0, 0, 1108, 1110, 7, 8, 0, 0, 1109, 1111, 5, 232, 0, 0, 1110, 1109, 1, 0, 0, 0, 1110, 1111, 1, 0, 0, 0, 1111, 1112, 1, 0, 0, 0, 1112, 1342, 3, 16, 8, 0, 1113, 1114, 5, 51, 0, 0, 1114, 1120, 5, 203, 0, 0, 1115, 1116, 3, 26, 13, 0, 1116, 1117, 3, 66, 33, 0, 1117, 1121, 1, 0, 0, 0, 1118, 1119, 5, 293, 0, 0, 1119, 1121, 3, 72, 36, 0, 1120, 1115, 1, 0, 0, 0, 1120, 1118, 1, 0, 0, 0, 1121, 1122, 1, 0, 0, 0, 1122, 1125, 5, 153, 0, 0, 1123, 1126, 3, 364, 182, 0, 1124, 1126, 5, 198, 0, 0, 1125, 1123, 1, 0, 0, 0, 1125, 1124, 1, 0, 0, 0, 1126, 1342, 1, 0, 0, 0, 1127, 1128, 5, 240, 0, 0, 1128, 1129, 5, 293, 0, 0, 1129, 1342, 3, 72, 36, 0, 1130, 1131, 5, 240, 0, 0, 1131, 1132, 5, 125, 0, 0, 1132, 1342, 3, 344, 172, 0, 1133, 1141, 5, 240, 0, 0, 1134, 1142, 3, 364, 182, 0, 1135, 1137, 9, 0, 0, 0, 1136, 1135, 1, 0, 0, 0, 1137, 1140, 1, 0, 0, 0, 1138, 1139, 1, 0, 0, 0, 1138, 1136, 1, 0, 0, 0, 1139, 1142, 1, 0, 0, 0, 1140, 1138, 1, 0, 0, 0, 1141, 1134, 1, 0, 0, 0, 1141, 1138, 1, 0, 0, 0, 1142, 1342, 1, 0, 0, 0, 1143, 1144, 5, 240, 0, 0, 1144, 1145, 5, 176, 0, 0, 1145, 1146, 5, 338, 0, 0, 1146, 1342, 3, 76, 38, 0, 1147, 1149, 5, 33, 0, 0, 1148, 1150, 5, 159, 0, 0, 1149, 1148, 1, 0, 0, 0, 1149, 1150, 1, 0, 0, 0, 1150, 1151, 1, 0, 0, 0, 1151, 1152, 5, 293, 0, 0, 1152, 1155, 3, 72, 36, 0, 1153, 1154, 5, 207, 0, 0, 1154, 1156, 3, 42, 21, 0, 1155, 1153, 1, 0, 0, 0, 1155, 1156, 1, 0, 0, 0, 1156, 1161, 1, 0, 0, 0, 1157, 1159, 5, 20, 0, 0, 1158, 1157, 1, 0, 0, 0, 1158, 1159, 1, 0, 0, 0, 1159, 1160, 1, 0, 0, 0, 1160, 1162, 3, 16, 8, 0, 1161, 1158, 1, 0, 0, 0, 1161, 1162, 1, 0, 0, 0, 1162, 1342, 1, 0, 0, 0, 1163, 1164, 5, 322, 0, 0, 1164, 1166, 5, 293, 0, 0, 1165, 1167, 3, 166, 83, 0, 1166, 1165, 1, 0, 0, 0, 1166, 1167, 1, 0, 0, 0, 1167, 1168, 1, 0, 0, 0, 1168, 1342, 3, 72, 36, 0, 1169, 1170, 5, 43, 0, 0, 1170, 1342, 5, 33, 0, 0, 1171, 1172, 5, 168, 0, 0, 1172, 1174, 5, 70, 0, 0, 1173, 1175, 5, 169, 0, 0, 1174, 1173, 1, 0, 0, 0, 1174, 1175, 1, 0, 0, 0, 1175, 1176, 1, 0, 0, 0, 1176, 1177, 5, 145, 0, 0, 1177, 1179, 3, 364, 182, 0, 1178, 1180, 5, 216, 0, 0, 1179, 1178, 1, 0, 0, 0, 1179, 1180, 1, 0, 0, 0, 1180, 1181, 1, 0, 0, 0, 1181, 1182, 5, 152, 0, 0, 1182, 1183, 5, 293, 0, 0, 1183, 1185, 3, 72, 36, 0, 1184, 1186, 3, 22, 11, 0, 1185, 1184, 1, 0, 0, 0, 1185, 1186, 1, 0, 0, 0, 1186, 1342, 1, 0, 0, 0, 1187, 1188, 5, 317, 0, 0, 1188, 1189, 5, 293, 0, 0, 1189, 1191, 3, 72, 36, 0, 1190, 1192, 3, 22, 11, 0, 1191, 1190, 1, 0, 0, 0, 1191, 1192, 1, 0, 0, 0, 1192, 1342, 1, 0, 0, 0, 1193, 1195, 5, 188, 0, 0, 1194, 1193, 1, 0, 0, 0, 1194, 1195, 1, 0, 0, 0, 1195, 1196, 1, 0, 0, 0, 1196, 1197, 5, 242, 0, 0, 1197, 1198, 5, 293, 0, 0, 1198, 1201, 3, 72, 36, 0, 1199, 1200, 7, 10, 0, 0, 1200, 1202, 5, 219, 0, 0, 1201, 1199, 1, 0, 0, 0, 1201, 1202, 1, 0, 0, 0, 1202, 1342, 1, 0, 0, 0, 1203, 1204, 7, 11, 0, 0, 1204, 1208, 3, 354, 177, 0, 1205, 1207, 9, 0, 0, 0, 1206, 1205, 1, 0, 0, 0, 1207, 1210, 1, 0, 0, 0, 1208, 1209, 1, 0, 0, 0, 1208, 1206, 1, 0, 0, 0, 1209, 1342, 1, 0, 0, 0, 1210, 1208, 1, 0, 0, 0, 1211, 1212, 5, 269, 0, 0, 1212, 1216, 5, 253, 0, 0, 1213, 1215, 9, 0, 0, 0, 1214, 1213, 1, 0, 0, 0, 1215, 1218, 1, 0, 0, 0, 1216, 1217, 1, 0, 0, 0, 1216, 1214, 1, 0, 0, 0, 1217, 1342, 1, 0, 0, 0, 1218, 1216, 1, 0, 0, 0, 1219, 1220, 5, 269, 0, 0, 1220, 1221, 5, 301, 0, 0, 1221, 1222, 5, 350, 0, 0, 1222, 1342, 3, 284, 142, 0, 1223, 1224, 5, 269, 0, 0, 1224, 1225, 5, 301, 0, 0, 1225, 1228, 5, 350, 0, 0, 1226, 1229, 3, 364, 182, 0, 1227, 1229, 5, 169, 0, 0, 1228, 1226, 1, 0, 0, 0, 1228, 1227, 1, 0, 0, 0, 1229, 1342, 1, 0, 0, 0, 1230, 1231, 5, 269, 0, 0, 1231, 1232, 5, 301, 0, 0, 1232, 1236, 5, 350, 0, 0, 1233, 1235, 9, 0, 0, 0, 1234, 1233, 1, 0, 0, 0, 1235, 1238, 1, 0, 0, 0, 1236, 1237, 1, 0, 0, 0, 1236, 1234, 1, 0, 0, 0, 1237, 1342, 1, 0, 0, 0, 1238, 1236, 1, 0, 0, 0, 1239, 1240, 5, 269, 0, 0, 1240, 1241, 7, 12, 0, 0, 1241, 1342, 3, 124, 62, 0, 1242, 1243, 5, 269, 0, 0, 1243, 1244, 7, 12, 0, 0, 1244, 1245, 5, 2, 0, 0, 1245, 1246, 3, 220, 110, 0, 1246, 1247, 5, 3, 0, 0, 1247, 1248, 5, 352, 0, 0, 1248, 1249, 5, 2, 0, 0, 1249, 1250, 3, 16, 8, 0, 1250, 1251, 5, 3, 0, 0, 1251, 1342, 1, 0, 0, 0, 1252, 1253, 5, 269, 0, 0, 1253, 1254, 3, 358, 179, 0, 1254, 1255, 5, 352, 0, 0, 1255, 1256, 5, 389, 0, 0, 1256, 1342, 1, 0, 0, 0, 1257, 1258, 5, 269, 0, 0, 1258, 1266, 3, 358, 179, 0, 1259, 1263, 5, 352, 0, 0, 1260, 1262, 9, 0, 0, 0, 1261, 1260, 1, 0, 0, 0, 1262, 1265, 1, 0, 0, 0, 1263, 1264, 1, 0, 0, 0, 1263, 1261, 1, 0, 0, 0, 1264, 1267, 1, 0, 0, 0, 1265, 1263, 1, 0, 0, 0, 1266, 1259, 1, 0, 0, 0, 1266, 1267, 1, 0, 0, 0, 1267, 1342, 1, 0, 0, 0, 1268, 1272, 5, 269, 0, 0, 1269, 1271, 9, 0, 0, 0, 1270, 1269, 1, 0, 0, 0, 1271, 1274, 1, 0, 0, 0, 1272, 1273, 1, 0, 0, 0, 1272, 1270, 1, 0, 0, 0, 1273, 1275, 1, 0, 0, 0, 1274, 1272, 1, 0, 0, 0, 1275, 1276, 5, 352, 0, 0, 1276, 1342, 5, 389, 0, 0, 1277, 1281, 5, 269, 0, 0, 1278, 1280, 9, 0, 0, 0, 1279, 1278, 1, 0, 0, 0, 1280, 1283, 1, 0, 0, 0, 1281, 1282, 1, 0, 0, 0, 1281, 1279, 1, 0, 0, 0, 1282, 1342, 1, 0, 0, 0, 1283, 1281, 1, 0, 0, 0, 1284, 1285, 5, 245, 0, 0, 1285, 1342, 3, 358, 179, 0, 1286, 1290, 5, 245, 0, 0, 1287, 1289, 9, 0, 0, 0, 1288, 1287, 1, 0, 0, 0, 1289, 1292, 1, 0, 0, 0, 1290, 1291, 1, 0, 0, 0, 1290, 1288, 1, 0, 0, 0, 1291, 1342, 1, 0, 0, 0, 1292, 1290, 1, 0, 0, 0, 1293, 1294, 5, 59, 0, 0, 1294, 1296, 5, 142, 0, 0, 1295, 1297, 3, 164, 82, 0, 1296, 1295, 1, 0, 0, 0, 1296, 1297, 1, 0, 0, 0, 1297, 1298, 1, 0, 0, 0, 1298, 1299, 3, 354, 177, 0, 1299, 1301, 5, 203, 0, 0, 1300, 1302, 5, 293, 0, 0, 1301, 1300, 1, 0, 0, 0, 1301, 1302, 1, 0, 0, 0, 1302, 1303, 1, 0, 0, 0, 1303, 1306, 3, 72, 36, 0, 1304, 1305, 5, 332, 0, 0, 1305, 1307, 3, 354, 177, 0, 1306, 1304, 1, 0, 0, 0, 1306, 1307, 1, 0, 0, 0, 1307, 1308, 1, 0, 0, 0, 1308, 1309, 5, 2, 0, 0, 1309, 1310, 3, 226, 113, 0, 1310, 1313, 5, 3, 0, 0, 1311, 1312, 5, 207, 0, 0, 1312, 1314, 3, 42, 21, 0, 1313, 1311, 1, 0, 0, 0, 1313, 1314, 1, 0, 0, 0, 1314, 1342, 1, 0, 0, 0, 1315, 1316, 5, 96, 0, 0, 1316, 1318, 5, 142, 0, 0, 1317, 1319, 3, 166, 83, 0, 1318, 1317, 1, 0, 0, 0, 1318, 1319, 1, 0, 0, 0, 1319, 1320, 1, 0, 0, 0, 1320, 1321, 3, 354, 177, 0, 1321, 1323, 5, 203, 0, 0, 1322, 1324, 5, 293, 0, 0, 1323, 1322, 1, 0, 0, 0, 1323, 1324, 1, 0, 0, 0, 1324, 1325, 1, 0, 0, 0, 1325, 1326, 3, 72, 36, 0, 1326, 1342, 1, 0, 0, 0, 1327, 1328, 5, 205, 0, 0, 1328, 1330, 3, 72, 36, 0, 1329, 1331, 3, 128, 64, 0, 1330, 1329, 1, 0, 0, 0, 1330, 1331, 1, 0, 0, 0, 1331, 1332, 1, 0, 0, 0, 1332, 1333, 3, 334, 167, 0, 1333, 1342, 1, 0, 0, 0, 1334, 1338, 3, 6, 3, 0, 1335, 1337, 9, 0, 0, 0, 1336, 1335, 1, 0, 0, 0, 1337, 1340, 1, 0, 0, 0, 1338, 1339, 1, 0, 0, 0, 1338, 1336, 1, 0, 0, 0, 1339, 1342, 1, 0, 0, 0, 1340, 1338, 1, 0, 0, 0, 1341, 384, 1, 0, 0, 0, 1341, 386, 1, 0, 0, 0, 1341, 389, 1, 0, 0, 0, 1341, 394, 1, 0, 0, 0, 1341, 400, 1, 0, 0, 0, 1341, 418, 1, 0, 0, 0, 1341, 425, 1, 0, 0, 0, 1341, 432, 1, 0, 0, 0, 1341, 441, 1, 0, 0, 0, 1341, 453, 1, 0, 0, 0, 1341, 481, 1, 0, 0, 0, 1341, 504, 1, 0, 0, 0, 1341, 525, 1, 0, 0, 0, 1341, 542, 1, 0, 0, 0, 1341, 553, 1, 0, 0, 0, 1341, 560, 1, 0, 0, 0, 1341, 569, 1, 0, 0, 0, 1341, 578, 1, 0, 0, 0, 1341, 588, 1, 0, 0, 0, 1341, 600, 1, 0, 0, 0, 1341, 611, 1, 0, 0, 0, 1341, 622, 1, 0, 0, 0, 1341, 636, 1, 0, 0, 0, 1341, 647, 1, 0, 0, 0, 1341, 662, 1, 0, 0, 0, 1341, 674, 1, 0, 0, 0, 1341, 688, 1, 0, 0, 0, 1341, 698, 1, 0, 0, 0, 1341, 714, 1, 0, 0, 0, 1341, 722, 1, 0, 0, 0, 1341, 744, 1, 0, 0, 0, 1341, 754, 1, 0, 0, 0, 1341, 760, 1, 0, 0, 0, 1341, 767, 1, 0, 0, 0, 1341, 775, 1, 0, 0, 0, 1341, 784, 1, 0, 0, 0, 1341, 790, 1, 0, 0, 0, 1341, 797, 1, 0, 0, 0, 1341, 831, 1, 0, 0, 0, 1341, 853, 1, 0, 0, 0, 1341, 861, 1, 0, 0, 0, 1341, 891, 1, 0, 0, 0, 1341, 924, 1, 0, 0, 0, 1341, 933, 1, 0, 0, 0, 1341, 948, 1, 0, 0, 0, 1341, 959, 1, 0, 0, 0, 1341, 964, 1, 0, 0, 0, 1341, 976, 1, 0, 0, 0, 1341, 988, 1, 0, 0, 0, 1341, 997, 1, 0, 0, 0, 1341, 1005, 1, 0, 0, 0, 1341, 1017, 1, 0, 0, 0, 1341, 1023, 1, 0, 0, 0, 1341, 1041, 1, 0, 0, 0, 1341, 1049, 1, 0, 0, 0, 1341, 1052, 1, 0, 0, 0, 1341, 1060, 1, 0, 0, 0, 1341, 1073, 1, 0, 0, 0, 1341, 1082, 1, 0, 0, 0, 1341, 1088, 1, 0, 0, 0, 1341, 1094, 1, 0, 0, 0, 1341, 1108, 1, 0, 0, 0, 1341, 1113, 1, 0, 0, 0, 1341, 1127, 1, 0, 0, 0, 1341, 1130, 1, 0, 0, 0, 1341, 1133, 1, 0, 0, 0, 1341, 1143, 1, 0, 0, 0, 1341, 1147, 1, 0, 0, 0, 1341, 1163, 1, 0, 0, 0, 1341, 1169, 1, 0, 0, 0, 1341, 1171, 1, 0, 0, 0, 1341, 1187, 1, 0, 0, 0, 1341, 1194, 1, 0, 0, 0, 1341, 1203, 1, 0, 0, 0, 1341, 1211, 1, 0, 0, 0, 1341, 1219, 1, 0, 0, 0, 1341, 1223, 1, 0, 0, 0, 1341, 1230, 1, 0, 0, 0, 1341, 1239, 1, 0, 0, 0, 1341, 1242, 1, 0, 0, 0, 1341, 1252, 1, 0, 0, 0, 1341, 1257, 1, 0, 0, 0, 1341, 1268, 1, 0, 0, 0, 1341, 1277, 1, 0, 0, 0, 1341, 1284, 1, 0, 0, 0, 1341, 1286, 1, 0, 0, 0, 1341, 1293, 1, 0, 0, 0, 1341, 1315, 1, 0, 0, 0, 1341, 1327, 1, 0, 0, 0, 1341, 1334, 1, 0, 0, 0, 1342, 5, 1, 0, 0, 0, 1343, 1344, 7, 13, 0, 0, 1344, 1437, 5, 253, 0, 0, 1345, 1347, 7, 14, 0, 0, 1346, 1348, 5, 253, 0, 0, 1347, 1346, 1, 0, 0, 0, 1347, 1348, 1, 0, 0, 0, 1348, 1437, 1, 0, 0, 0, 1349, 1350, 5, 273, 0, 0, 1350, 1437, 7, 15, 0, 0, 1351, 1352, 5, 273, 0, 0, 1352, 1354, 5, 253, 0, 0, 1353, 1355, 5, 129, 0, 0, 1354, 1353, 1, 0, 0, 0, 1354, 1355, 1, 0, 0, 0, 1355, 1437, 1, 0, 0, 0, 1356, 1358, 5, 273, 0, 0, 1357, 1359, 5, 62, 0, 0, 1358, 1357, 1, 0, 0, 0, 1358, 1359, 1, 0, 0, 0, 1359, 1360, 1, 0, 0, 0, 1360, 1437, 5, 254, 0, 0, 1361, 1362, 5, 273, 0, 0, 1362, 1363, 5, 59, 0, 0, 1363, 1437, 5, 293, 0, 0, 1364, 1365, 7, 16, 0, 0, 1365, 1437, 5, 142, 0, 0, 1366, 1367, 7, 17, 0, 0, 1367, 1437, 5, 293, 0, 0, 1368, 1369, 7, 18, 0, 0, 1369, 1437, 5, 72, 0, 0, 1370, 1371, 7, 13, 0, 0, 1371, 1372, 5, 298, 0, 0, 1372, 1437, 5, 175, 0, 0, 1373, 1374, 5, 11, 0, 0, 1374, 1375, 5, 293, 0, 0, 1375, 1376, 3, 72, 36, 0, 1376, 1377, 5, 197, 0, 0, 1377, 1378, 7, 19, 0, 0, 1378, 1437, 1, 0, 0, 0, 1379, 1380, 5, 11, 0, 0, 1380, 1381, 5, 293, 0, 0, 1381, 1382, 3, 72, 36, 0, 1382, 1383, 7, 20, 0, 0, 1383, 1384, 5, 31, 0, 0, 1384, 1437, 1, 0, 0, 0, 1385, 1386, 5, 11, 0, 0, 1386, 1387, 5, 293, 0, 0, 1387, 1388, 3, 72, 36, 0, 1388, 1389, 5, 275, 0, 0, 1389, 1390, 5, 31, 0, 0, 1390, 1437, 1, 0, 0, 0, 1391, 1392, 5, 11, 0, 0, 1392, 1393, 5, 293, 0, 0, 1393, 1394, 3, 72, 36, 0, 1394, 1395, 5, 197, 0, 0, 1395, 1396, 5, 283, 0, 0, 1396, 1397, 5, 20, 0, 0, 1397, 1398, 5, 89, 0, 0, 1398, 1437, 1, 0, 0, 0, 1399, 1400, 5, 11, 0, 0, 1400, 1401, 5, 293, 0, 0, 1401, 1402, 3, 72, 36, 0, 1402, 1403, 5, 269, 0, 0, 1403, 1404, 5, 275, 0, 0, 1404, 1405, 5, 170, 0, 0, 1405, 1437, 1, 0, 0, 0, 1406, 1407, 5, 11, 0, 0, 1407, 1408, 5, 293, 0, 0, 1408, 1409, 3, 72, 36, 0, 1409, 1410, 7, 21, 0, 0, 1410, 1411, 5, 217, 0, 0, 1411, 1437, 1, 0, 0, 0, 1412, 1413, 5, 11, 0, 0, 1413, 1414, 5, 293, 0, 0, 1414, 1415, 3, 72, 36, 0, 1415, 1416, 5, 310, 0, 0, 1416, 1437, 1, 0, 0, 0, 1417, 1418, 5, 11, 0, 0, 1418, 1419, 5, 293, 0, 0, 1419, 1421, 3, 72, 36, 0, 1420, 1422, 3, 22, 11, 0, 1421, 1420, 1, 0, 0, 0, 1421, 1422, 1, 0, 0, 0, 1422, 1429, 1, 0, 0, 0, 1423, 1430, 5, 53, 0, 0, 1424, 1430, 5, 56, 0, 0, 1425, 1426, 5, 269, 0, 0, 1426, 1430, 5, 115, 0, 0, 1427, 1428, 5, 244, 0, 0, 1428, 1430, 5, 50, 0, 0, 1429, 1423, 1, 0, 0, 0, 1429, 1424, 1, 0, 0, 0, 1429, 1425, 1, 0, 0, 0, 1429, 1427, 1, 0, 0, 0, 1430, 1437, 1, 0, 0, 0, 1431, 1432, 5, 281, 0, 0, 1432, 1437, 5, 312, 0, 0, 1433, 1437, 5, 52, 0, 0, 1434, 1437, 5, 255, 0, 0, 1435, 1437, 5, 88, 0, 0, 1436, 1343, 1, 0, 0, 0, 1436, 1345, 1, 0, 0, 0, 1436, 1349, 1, 0, 0, 0, 1436, 1351, 1, 0, 0, 0, 1436, 1356, 1, 0, 0, 0, 1436, 1361, 1, 0, 0, 0, 1436, 1364, 1, 0, 0, 0, 1436, 1366, 1, 0, 0, 0, 1436, 1368, 1, 0, 0, 0, 1436, 1370, 1, 0, 0, 0, 1436, 1373, 1, 0, 0, 0, 1436, 1379, 1, 0, 0, 0, 1436, 1385, 1, 0, 0, 0, 1436, 1391, 1, 0, 0, 0, 1436, 1399, 1, 0, 0, 0, 1436, 1406, 1, 0, 0, 0, 1436, 1412, 1, 0, 0, 0, 1436, 1417, 1, 0, 0, 0, 1436, 1431, 1, 0, 0, 0, 1436, 1433, 1, 0, 0, 0, 1436, 1434, 1, 0, 0, 0, 1436, 1435, 1, 0, 0, 0, 1437, 7, 1, 0, 0, 0, 1438, 1439, 5, 45, 0, 0, 1439, 1440, 5, 31, 0, 0, 1440, 1444, 3, 184, 92, 0, 1441, 1442, 5, 279, 0, 0, 1442, 1443, 5, 31, 0, 0, 1443, 1445, 3, 188, 94, 0, 1444, 1441, 1, 0, 0, 0, 1444, 1445, 1, 0, 0, 0, 1445, 1446, 1, 0, 0, 0, 1446, 1447, 5, 152, 0, 0, 1447, 1448, 5, 382, 0, 0, 1448, 1449, 5, 30, 0, 0, 1449, 9, 1, 0, 0, 0, 1450, 1451, 5, 275, 0, 0, 1451, 1452, 5, 31, 0, 0, 1452, 1453, 3, 184, 92, 0, 1453, 1456, 5, 203, 0, 0, 1454, 1457, 3, 54, 27, 0, 1455, 1457, 3, 56, 28, 0, 1456, 1454, 1, 0, 0, 0, 1456, 1455, 1, 0, 0, 0, 1457, 1461, 1, 0, 0, 0, 1458, 1459, 5, 283, 0, 0, 1459, 1460, 5, 20, 0, 0, 1460, 1462, 5, 89, 0, 0, 1461, 1458, 1, 0, 0, 0, 1461, 1462, 1, 0, 0, 0, 1462, 11, 1, 0, 0, 0, 1463, 1464, 5, 170, 0, 0, 1464, 1465, 3, 364, 182, 0, 1465, 13, 1, 0, 0, 0, 1466, 1467, 5, 51, 0, 0, 1467, 1468, 3, 364, 182, 0, 1468, 15, 1, 0, 0, 0, 1469, 1471, 3, 32, 16, 0, 1470, 1469, 1, 0, 0, 0, 1470, 1471, 1, 0, 0, 0, 1471, 1472, 1, 0, 0, 0, 1472, 1473, 3, 100, 50, 0, 1473, 1474, 3, 92, 46, 0, 1474, 17, 1, 0, 0, 0, 1475, 1476, 5, 147, 0, 0, 1476, 1478, 5, 216, 0, 0, 1477, 1479, 5, 293, 0, 0, 1478, 1477, 1, 0, 0, 0, 1478, 1479, 1, 0, 0, 0, 1479, 1480, 1, 0, 0, 0, 1480, 1485, 3, 72, 36, 0, 1481, 1483, 3, 22, 11, 0, 1482, 1484, 3, 164, 82, 0, 1483, 1482, 1, 0, 0, 0, 1483, 1484, 1, 0, 0, 0, 1484, 1486, 1, 0, 0, 0, 1485, 1481, 1, 0, 0, 0, 1485, 1486, 1, 0, 0, 0, 1486, 1493, 1, 0, 0, 0, 1487, 1488, 5, 31, 0, 0, 1488, 1494, 5, 189, 0, 0, 1489, 1490, 5, 2, 0, 0, 1490, 1491, 3, 86, 43, 0, 1491, 1492, 5, 3, 0, 0, 1492, 1494, 1, 0, 0, 0, 1493, 1487, 1, 0, 0, 0, 1493, 1489, 1, 0, 0, 0, 1493, 1494, 1, 0, 0, 0, 1494, 1552, 1, 0, 0, 0, 1495, 1496, 5, 147, 0, 0, 1496, 1498, 5, 152, 0, 0, 1497, 1499, 5, 293, 0, 0, 1498, 1497, 1, 0, 0, 0, 1498, 1499, 1, 0, 0, 0, 1499, 1500, 1, 0, 0, 0, 1500, 1502, 3, 72, 36, 0, 1501, 1503, 3, 22, 11, 0, 1502, 1501, 1, 0, 0, 0, 1502, 1503, 1, 0, 0, 0, 1503, 1505, 1, 0, 0, 0, 1504, 1506, 3, 164, 82, 0, 1505, 1504, 1, 0, 0, 0, 1505, 1506, 1, 0, 0, 0, 1506, 1513, 1, 0, 0, 0, 1507, 1508, 5, 31, 0, 0, 1508, 1514, 5, 189, 0, 0, 1509, 1510, 5, 2, 0, 0, 1510, 1511, 3, 86, 43, 0, 1511, 1512, 5, 3, 0, 0, 1512, 1514, 1, 0, 0, 0, 1513, 1507, 1, 0, 0, 0, 1513, 1509, 1, 0, 0, 0, 1513, 1514, 1, 0, 0, 0, 1514, 1552, 1, 0, 0, 0, 1515, 1516, 5, 147, 0, 0, 1516, 1518, 5, 152, 0, 0, 1517, 1519, 5, 293, 0, 0, 1518, 1517, 1, 0, 0, 0, 1518, 1519, 1, 0, 0, 0, 1519, 1520, 1, 0, 0, 0, 1520, 1521, 3, 72, 36, 0, 1521, 1522, 5, 244, 0, 0, 1522, 1523, 3, 128, 64, 0, 1523, 1552, 1, 0, 0, 0, 1524, 1525, 5, 147, 0, 0, 1525, 1527, 5, 216, 0, 0, 1526, 1528, 5, 169, 0, 0, 1527, 1526, 1, 0, 0, 0, 1527, 1528, 1, 0, 0, 0, 1528, 1529, 1, 0, 0, 0, 1529, 1530, 5, 90, 0, 0, 1530, 1532, 3, 364, 182, 0, 1531, 1533, 3, 218, 109, 0, 1532, 1531, 1, 0, 0, 0, 1532, 1533, 1, 0, 0, 0, 1533, 1535, 1, 0, 0, 0, 1534, 1536, 3, 58, 29, 0, 1535, 1534, 1, 0, 0, 0, 1535, 1536, 1, 0, 0, 0, 1536, 1552, 1, 0, 0, 0, 1537, 1538, 5, 147, 0, 0, 1538, 1540, 5, 216, 0, 0, 1539, 1541, 5, 169, 0, 0, 1540, 1539, 1, 0, 0, 0, 1540, 1541, 1, 0, 0, 0, 1541, 1542, 1, 0, 0, 0, 1542, 1544, 5, 90, 0, 0, 1543, 1545, 3, 364, 182, 0, 1544, 1543, 1, 0, 0, 0, 1544, 1545, 1, 0, 0, 0, 1545, 1546, 1, 0, 0, 0, 1546, 1549, 3, 36, 18, 0, 1547, 1548, 5, 207, 0, 0, 1548, 1550, 3, 42, 21, 0, 1549, 1547, 1, 0, 0, 0, 1549, 1550, 1, 0, 0, 0, 1550, 1552, 1, 0, 0, 0, 1551, 1475, 1, 0, 0, 0, 1551, 1495, 1, 0, 0, 0, 1551, 1515, 1, 0, 0, 0, 1551, 1524, 1, 0, 0, 0, 1551, 1537, 1, 0, 0, 0, 1552, 19, 1, 0, 0, 0, 1553, 1556, 3, 22, 11, 0, 1554, 1555, 5, 170, 0, 0, 1555, 1557, 3, 364, 182, 0, 1556, 1554, 1, 0, 0, 0, 1556, 1557, 1, 0, 0, 0, 1557, 21, 1, 0, 0, 0, 1558, 1559, 5, 217, 0, 0, 1559, 1560, 5, 2, 0, 0, 1560, 1565, 3, 24, 12, 0, 1561, 1562, 5, 4, 0, 0, 1562, 1564, 3, 24, 12, 0, 1563, 1561, 1, 0, 0, 0, 1564, 1567, 1, 0, 0, 0, 1565, 1563, 1, 0, 0, 0, 1565, 1566, 1, 0, 0, 0, 1566, 1568, 1, 0, 0, 0, 1567, 1565, 1, 0, 0, 0, 1568, 1569, 5, 3, 0, 0, 1569, 23, 1, 0, 0, 0, 1570, 1573, 3, 354, 177, 0, 1571, 1572, 5, 352, 0, 0, 1572, 1574, 3, 274, 137, 0, 1573, 1571, 1, 0, 0, 0, 1573, 1574, 1, 0, 0, 0, 1574, 1580, 1, 0, 0, 0, 1575, 1576, 3, 354, 177, 0, 1576, 1577, 5, 352, 0, 0, 1577, 1578, 5, 82, 0, 0, 1578, 1580, 1, 0, 0, 0, 1579, 1570, 1, 0, 0, 0, 1579, 1575, 1, 0, 0, 0, 1580, 25, 1, 0, 0, 0, 1581, 1582, 7, 22, 0, 0, 1582, 27, 1, 0, 0, 0, 1583, 1589, 3, 90, 45, 0, 1584, 1589, 3, 364, 182, 0, 1585, 1589, 3, 276, 138, 0, 1586, 1589, 3, 278, 139, 0, 1587, 1589, 3, 280, 140, 0, 1588, 1583, 1, 0, 0, 0, 1588, 1584, 1, 0, 0, 0, 1588, 1585, 1, 0, 0, 0, 1588, 1586, 1, 0, 0, 0, 1588, 1587, 1, 0, 0, 0, 1589, 29, 1, 0, 0, 0, 1590, 1595, 3, 354, 177, 0, 1591, 1592, 5, 5, 0, 0, 1592, 1594, 3, 354, 177, 0, 1593, 1591, 1, 0, 0, 0, 1594, 1597, 1, 0, 0, 0, 1595, 1593, 1, 0, 0, 0, 1595, 1596, 1, 0, 0, 0, 1596, 31, 1, 0, 0, 0, 1597, 1595, 1, 0, 0, 0, 1598, 1599, 5, 346, 0, 0, 1599, 1604, 3, 34, 17, 0, 1600, 1601, 5, 4, 0, 0, 1601, 1603, 3, 34, 17, 0, 1602, 1600, 1, 0, 0, 0, 1603, 1606, 1, 0, 0, 0, 1604, 1602, 1, 0, 0, 0, 1604, 1605, 1, 0, 0, 0, 1605, 33, 1, 0, 0, 0, 1606, 1604, 1, 0, 0, 0, 1607, 1609, 3, 350, 175, 0, 1608, 1610, 3, 184, 92, 0, 1609, 1608, 1, 0, 0, 0, 1609, 1610, 1, 0, 0, 0, 1610, 1612, 1, 0, 0, 0, 1611, 1613, 5, 20, 0, 0, 1612, 1611, 1, 0, 0, 0, 1612, 1613, 1, 0, 0, 0, 1613, 1614, 1, 0, 0, 0, 1614, 1615, 5, 2, 0, 0, 1615, 1616, 3, 16, 8, 0, 1616, 1617, 5, 3, 0, 0, 1617, 35, 1, 0, 0, 0, 1618, 1619, 5, 332, 0, 0, 1619, 1620, 3, 222, 111, 0, 1620, 37, 1, 0, 0, 0, 1621, 1622, 5, 207, 0, 0, 1622, 1638, 3, 50, 25, 0, 1623, 1624, 5, 218, 0, 0, 1624, 1625, 5, 31, 0, 0, 1625, 1638, 3, 246, 123, 0, 1626, 1638, 3, 10, 5, 0, 1627, 1638, 3, 8, 4, 0, 1628, 1638, 3, 218, 109, 0, 1629, 1638, 3, 58, 29, 0, 1630, 1631, 5, 170, 0, 0, 1631, 1638, 3, 364, 182, 0, 1632, 1633, 5, 51, 0, 0, 1633, 1638, 3, 364, 182, 0, 1634, 1635, 5, 297, 0, 0, 1635, 1638, 3, 42, 21, 0, 1636, 1638, 3, 40, 20, 0, 1637, 1621, 1, 0, 0, 0, 1637, 1623, 1, 0, 0, 0, 1637, 1626, 1, 0, 0, 0, 1637, 1627, 1, 0, 0, 0, 1637, 1628, 1, 0, 0, 0, 1637, 1629, 1, 0, 0, 0, 1637, 1630, 1, 0, 0, 0, 1637, 1632, 1, 0, 0, 0, 1637, 1634, 1, 0, 0, 0, 1637, 1636, 1, 0, 0, 0, 1638, 1641, 1, 0, 0, 0, 1639, 1637, 1, 0, 0, 0, 1639, 1640, 1, 0, 0, 0, 1640, 39, 1, 0, 0, 0, 1641, 1639, 1, 0, 0, 0, 1642, 1643, 5, 162, 0, 0, 1643, 1644, 5, 382, 0, 0, 1644, 41, 1, 0, 0, 0, 1645, 1646, 5, 2, 0, 0, 1646, 1651, 3, 44, 22, 0, 1647, 1648, 5, 4, 0, 0, 1648, 1650, 3, 44, 22, 0, 1649, 1647, 1, 0, 0, 0, 1650, 1653, 1, 0, 0, 0, 1651, 1649, 1, 0, 0, 0, 1651, 1652, 1, 0, 0, 0, 1652, 1654, 1, 0, 0, 0, 1653, 1651, 1, 0, 0, 0, 1654, 1655, 5, 3, 0, 0, 1655, 43, 1, 0, 0, 0, 1656, 1661, 3, 46, 23, 0, 1657, 1659, 5, 352, 0, 0, 1658, 1657, 1, 0, 0, 0, 1658, 1659, 1, 0, 0, 0, 1659, 1660, 1, 0, 0, 0, 1660, 1662, 3, 48, 24, 0, 1661, 1658, 1, 0, 0, 0, 1661, 1662, 1, 0, 0, 0, 1662, 45, 1, 0, 0, 0, 1663, 1668, 3, 354, 177, 0, 1664, 1665, 5, 5, 0, 0, 1665, 1667, 3, 354, 177, 0, 1666, 1664, 1, 0, 0, 0, 1667, 1670, 1, 0, 0, 0, 1668, 1666, 1, 0, 0, 0, 1668, 1669, 1, 0, 0, 0, 1669, 1673, 1, 0, 0, 0, 1670, 1668, 1, 0, 0, 0, 1671, 1673, 3, 364, 182, 0, 1672, 1663, 1, 0, 0, 0, 1672, 1671, 1, 0, 0, 0, 1673, 47, 1, 0, 0, 0, 1674, 1679, 5, 382, 0, 0, 1675, 1679, 5, 384, 0, 0, 1676, 1679, 3, 282, 141, 0, 1677, 1679, 3, 364, 182, 0, 1678, 1674, 1, 0, 0, 0, 1678, 1675, 1, 0, 0, 0, 1678, 1676, 1, 0, 0, 0, 1678, 1677, 1, 0, 0, 0, 1679, 49, 1, 0, 0, 0, 1680, 1681, 5, 2, 0, 0, 1681, 1686, 3, 52, 26, 0, 1682, 1683, 5, 4, 0, 0, 1683, 1685, 3, 52, 26, 0, 1684, 1682, 1, 0, 0, 0, 1685, 1688, 1, 0, 0, 0, 1686, 1684, 1, 0, 0, 0, 1686, 1687, 1, 0, 0, 0, 1687, 1689, 1, 0, 0, 0, 1688, 1686, 1, 0, 0, 0, 1689, 1690, 5, 3, 0, 0, 1690, 51, 1, 0, 0, 0, 1691, 1696, 3, 46, 23, 0, 1692, 1694, 5, 352, 0, 0, 1693, 1692, 1, 0, 0, 0, 1693, 1694, 1, 0, 0, 0, 1694, 1695, 1, 0, 0, 0, 1695, 1697, 3, 254, 127, 0, 1696, 1693, 1, 0, 0, 0, 1696, 1697, 1, 0, 0, 0, 1697, 53, 1, 0, 0, 0, 1698, 1699, 5, 2, 0, 0, 1699, 1704, 3, 274, 137, 0, 1700, 1701, 5, 4, 0, 0, 1701, 1703, 3, 274, 137, 0, 1702, 1700, 1, 0, 0, 0, 1703, 1706, 1, 0, 0, 0, 1704, 1702, 1, 0, 0, 0, 1704, 1705, 1, 0, 0, 0, 1705, 1707, 1, 0, 0, 0, 1706, 1704, 1, 0, 0, 0, 1707, 1708, 5, 3, 0, 0, 1708, 55, 1, 0, 0, 0, 1709, 1710, 5, 2, 0, 0, 1710, 1715, 3, 54, 27, 0, 1711, 1712, 5, 4, 0, 0, 1712, 1714, 3, 54, 27, 0, 1713, 1711, 1, 0, 0, 0, 1714, 1717, 1, 0, 0, 0, 1715, 1713, 1, 0, 0, 0, 1715, 1716, 1, 0, 0, 0, 1716, 1718, 1, 0, 0, 0, 1717, 1715, 1, 0, 0, 0, 1718, 1719, 5, 3, 0, 0, 1719, 57, 1, 0, 0, 0, 1720, 1721, 5, 283, 0, 0, 1721, 1722, 5, 20, 0, 0, 1722, 1727, 3, 60, 30, 0, 1723, 1724, 5, 283, 0, 0, 1724, 1725, 5, 31, 0, 0, 1725, 1727, 3, 62, 31, 0, 1726, 1720, 1, 0, 0, 0, 1726, 1723, 1, 0, 0, 0, 1727, 59, 1, 0, 0, 0, 1728, 1729, 5, 146, 0, 0, 1729, 1730, 3, 364, 182, 0, 1730, 1731, 5, 212, 0, 0, 1731, 1732, 3, 364, 182, 0, 1732, 1735, 1, 0, 0, 0, 1733, 1735, 3, 354, 177, 0, 1734, 1728, 1, 0, 0, 0, 1734, 1733, 1, 0, 0, 0, 1735, 61, 1, 0, 0, 0, 1736, 1740, 3, 364, 182, 0, 1737, 1738, 5, 346, 0, 0, 1738, 1739, 5, 267, 0, 0, 1739, 1741, 3, 42, 21, 0, 1740, 1737, 1, 0, 0, 0, 1740, 1741, 1, 0, 0, 0, 1741, 63, 1, 0, 0, 0, 1742, 1743, 3, 18, 9, 0, 1743, 1744, 3, 16, 8, 0, 1744, 1801, 1, 0, 0, 0, 1745, 1749, 3, 136, 68, 0, 1746, 1747, 3, 18, 9, 0, 1747, 1748, 3, 106, 53, 0, 1748, 1750, 1, 0, 0, 0, 1749, 1746, 1, 0, 0, 0, 1750, 1751, 1, 0, 0, 0, 1751, 1749, 1, 0, 0, 0, 1751, 1752, 1, 0, 0, 0, 1752, 1801, 1, 0, 0, 0, 1753, 1754, 5, 84, 0, 0, 1754, 1755, 5, 123, 0, 0, 1755, 1756, 3, 72, 36, 0, 1756, 1758, 3, 216, 108, 0, 1757, 1759, 3, 128, 64, 0, 1758, 1757, 1, 0, 0, 0, 1758, 1759, 1, 0, 0, 0, 1759, 1801, 1, 0, 0, 0, 1760, 1761, 5, 329, 0, 0, 1761, 1762, 3, 72, 36, 0, 1762, 1763, 3, 216, 108, 0, 1763, 1765, 3, 114, 57, 0, 1764, 1766, 3, 128, 64, 0, 1765, 1764, 1, 0, 0, 0, 1765, 1766, 1, 0, 0, 0, 1766, 1801, 1, 0, 0, 0, 1767, 1768, 5, 179, 0, 0, 1768, 1769, 5, 152, 0, 0, 1769, 1770, 3, 72, 36, 0, 1770, 1771, 3, 216, 108, 0, 1771, 1777, 5, 332, 0, 0, 1772, 1778, 3, 90, 45, 0, 1773, 1774, 5, 2, 0, 0, 1774, 1775, 3, 16, 8, 0, 1775, 1776, 5, 3, 0, 0, 1776, 1778, 1, 0, 0, 0, 1777, 1772, 1, 0, 0, 0, 1777, 1773, 1, 0, 0, 0, 1778, 1779, 1, 0, 0, 0, 1779, 1780, 3, 216, 108, 0, 1780, 1781, 5, 203, 0, 0, 1781, 1785, 3, 262, 131, 0, 1782, 1784, 3, 116, 58, 0, 1783, 1782, 1, 0, 0, 0, 1784, 1787, 1, 0, 0, 0, 1785, 1783, 1, 0, 0, 0, 1785, 1786, 1, 0, 0, 0, 1786, 1791, 1, 0, 0, 0, 1787, 1785, 1, 0, 0, 0, 1788, 1790, 3, 118, 59, 0, 1789, 1788, 1, 0, 0, 0, 1790, 1793, 1, 0, 0, 0, 1791, 1789, 1, 0, 0, 0, 1791, 1792, 1, 0, 0, 0, 1792, 1797, 1, 0, 0, 0, 1793, 1791, 1, 0, 0, 0, 1794, 1796, 3, 120, 60, 0, 1795, 1794, 1, 0, 0, 0, 1796, 1799, 1, 0, 0, 0, 1797, 1795, 1, 0, 0, 0, 1797, 1798, 1, 0, 0, 0, 1798, 1801, 1, 0, 0, 0, 1799, 1797, 1, 0, 0, 0, 1800, 1742, 1, 0, 0, 0, 1800, 1745, 1, 0, 0, 0, 1800, 1753, 1, 0, 0, 0, 1800, 1760, 1, 0, 0, 0, 1800, 1767, 1, 0, 0, 0, 1801, 65, 1, 0, 0, 0, 1802, 1803, 3, 90, 45, 0, 1803, 67, 1, 0, 0, 0, 1804, 1805, 3, 90, 45, 0, 1805, 69, 1, 0, 0, 0, 1806, 1807, 3, 230, 115, 0, 1807, 71, 1, 0, 0, 0, 1808, 1809, 3, 230, 115, 0, 1809, 73, 1, 0, 0, 0, 1810, 1811, 3, 232, 116, 0, 1811, 75, 1, 0, 0, 0, 1812, 1813, 3, 232, 116, 0, 1813, 77, 1, 0, 0, 0, 1814, 1815, 1, 0, 0, 0, 1815, 79, 1, 0, 0, 0, 1816, 1820, 3, 224, 112, 0, 1817, 1818, 4, 40, 0, 0, 1818, 1820, 3, 78, 39, 0, 1819, 1816, 1, 0, 0, 0, 1819, 1817, 1, 0, 0, 0, 1820, 81, 1, 0, 0, 0, 1821, 1822, 3, 222, 111, 0, 1822, 83, 1, 0, 0, 0, 1823, 1827, 3, 224, 112, 0, 1824, 1825, 4, 42, 1, 0, 1825, 1827, 3, 78, 39, 0, 1826, 1823, 1, 0, 0, 0, 1826, 1824, 1, 0, 0, 0, 1827, 85, 1, 0, 0, 0, 1828, 1833, 3, 80, 40, 0, 1829, 1830, 5, 4, 0, 0, 1830, 1832, 3, 80, 40, 0, 1831, 1829, 1, 0, 0, 0, 1832, 1835, 1, 0, 0, 0, 1833, 1831, 1, 0, 0, 0, 1833, 1834, 1, 0, 0, 0, 1834, 87, 1, 0, 0, 0, 1835, 1833, 1, 0, 0, 0, 1836, 1837, 3, 350, 175, 0, 1837, 89, 1, 0, 0, 0, 1838, 1839, 5, 136, 0, 0, 1839, 1840, 5, 2, 0, 0, 1840, 1841, 3, 254, 127, 0, 1841, 1842, 5, 3, 0, 0, 1842, 1845, 1, 0, 0, 0, 1843, 1845, 3, 222, 111, 0, 1844, 1838, 1, 0, 0, 0, 1844, 1843, 1, 0, 0, 0, 1845, 91, 1, 0, 0, 0, 1846, 1847, 5, 209, 0, 0, 1847, 1848, 5, 31, 0, 0, 1848, 1850, 3, 96, 48, 0, 1849, 1846, 1, 0, 0, 0, 1849, 1850, 1, 0, 0, 0, 1850, 1854, 1, 0, 0, 0, 1851, 1852, 5, 44, 0, 0, 1852, 1853, 5, 31, 0, 0, 1853, 1855, 3, 98, 49, 0, 1854, 1851, 1, 0, 0, 0, 1854, 1855, 1, 0, 0, 0, 1855, 1859, 1, 0, 0, 0, 1856, 1857, 5, 93, 0, 0, 1857, 1858, 5, 31, 0, 0, 1858, 1860, 3, 98, 49, 0, 1859, 1856, 1, 0, 0, 0, 1859, 1860, 1, 0, 0, 0, 1860, 1864, 1, 0, 0, 0, 1861, 1862, 5, 278, 0, 0, 1862, 1863, 5, 31, 0, 0, 1863, 1865, 3, 96, 48, 0, 1864, 1861, 1, 0, 0, 0, 1864, 1865, 1, 0, 0, 0, 1865, 1867, 1, 0, 0, 0, 1866, 1868, 3, 332, 166, 0, 1867, 1866, 1, 0, 0, 0, 1867, 1868, 1, 0, 0, 0, 1868, 1870, 1, 0, 0, 0, 1869, 1871, 3, 94, 47, 0, 1870, 1869, 1, 0, 0, 0, 1870, 1871, 1, 0, 0, 0, 1871, 1874, 1, 0, 0, 0, 1872, 1873, 5, 202, 0, 0, 1873, 1875, 3, 254, 127, 0, 1874, 1872, 1, 0, 0, 0, 1874, 1875, 1, 0, 0, 0, 1875, 93, 1, 0, 0, 0, 1876, 1879, 5, 165, 0, 0, 1877, 1880, 5, 10, 0, 0, 1878, 1880, 3, 254, 127, 0, 1879, 1877, 1, 0, 0, 0, 1879, 1878, 1, 0, 0, 0, 1880, 95, 1, 0, 0, 0, 1881, 1886, 3, 104, 52, 0, 1882, 1883, 5, 4, 0, 0, 1883, 1885, 3, 104, 52, 0, 1884, 1882, 1, 0, 0, 0, 1885, 1888, 1, 0, 0, 0, 1886, 1884, 1, 0, 0, 0, 1886, 1887, 1, 0, 0, 0, 1887, 97, 1, 0, 0, 0, 1888, 1886, 1, 0, 0, 0, 1889, 1894, 3, 254, 127, 0, 1890, 1891, 5, 4, 0, 0, 1891, 1893, 3, 254, 127, 0, 1892, 1890, 1, 0, 0, 0, 1893, 1896, 1, 0, 0, 0, 1894, 1892, 1, 0, 0, 0, 1894, 1895, 1, 0, 0, 0, 1895, 99, 1, 0, 0, 0, 1896, 1894, 1, 0, 0, 0, 1897, 1898, 6, 50, -1, 0, 1898, 1899, 3, 102, 51, 0, 1899, 1920, 1, 0, 0, 0, 1900, 1901, 10, 3, 0, 0, 1901, 1903, 7, 23, 0, 0, 1902, 1904, 3, 170, 85, 0, 1903, 1902, 1, 0, 0, 0, 1903, 1904, 1, 0, 0, 0, 1904, 1905, 1, 0, 0, 0, 1905, 1919, 3, 100, 50, 4, 1906, 1907, 10, 2, 0, 0, 1907, 1909, 5, 148, 0, 0, 1908, 1910, 3, 170, 85, 0, 1909, 1908, 1, 0, 0, 0, 1909, 1910, 1, 0, 0, 0, 1910, 1911, 1, 0, 0, 0, 1911, 1919, 3, 100, 50, 3, 1912, 1913, 10, 1, 0, 0, 1913, 1915, 7, 24, 0, 0, 1914, 1916, 3, 170, 85, 0, 1915, 1914, 1, 0, 0, 0, 1915, 1916, 1, 0, 0, 0, 1916, 1917, 1, 0, 0, 0, 1917, 1919, 3, 100, 50, 2, 1918, 1900, 1, 0, 0, 0, 1918, 1906, 1, 0, 0, 0, 1918, 1912, 1, 0, 0, 0, 1919, 1922, 1, 0, 0, 0, 1920, 1918, 1, 0, 0, 0, 1920, 1921, 1, 0, 0, 0, 1921, 101, 1, 0, 0, 0, 1922, 1920, 1, 0, 0, 0, 1923, 1948, 3, 108, 54, 0, 1924, 1926, 3, 136, 68, 0, 1925, 1927, 3, 106, 53, 0, 1926, 1925, 1, 0, 0, 0, 1927, 1928, 1, 0, 0, 0, 1928, 1926, 1, 0, 0, 0, 1928, 1929, 1, 0, 0, 0, 1929, 1948, 1, 0, 0, 0, 1930, 1931, 5, 293, 0, 0, 1931, 1948, 3, 72, 36, 0, 1932, 1933, 5, 333, 0, 0, 1933, 1938, 3, 254, 127, 0, 1934, 1935, 5, 4, 0, 0, 1935, 1937, 3, 254, 127, 0, 1936, 1934, 1, 0, 0, 0, 1937, 1940, 1, 0, 0, 0, 1938, 1936, 1, 0, 0, 0, 1938, 1939, 1, 0, 0, 0, 1939, 1941, 1, 0, 0, 0, 1940, 1938, 1, 0, 0, 0, 1941, 1942, 3, 216, 108, 0, 1942, 1948, 1, 0, 0, 0, 1943, 1944, 5, 2, 0, 0, 1944, 1945, 3, 16, 8, 0, 1945, 1946, 5, 3, 0, 0, 1946, 1948, 1, 0, 0, 0, 1947, 1923, 1, 0, 0, 0, 1947, 1924, 1, 0, 0, 0, 1947, 1930, 1, 0, 0, 0, 1947, 1932, 1, 0, 0, 0, 1947, 1943, 1, 0, 0, 0, 1948, 103, 1, 0, 0, 0, 1949, 1952, 3, 80, 40, 0, 1950, 1952, 3, 254, 127, 0, 1951, 1949, 1, 0, 0, 0, 1951, 1950, 1, 0, 0, 0, 1952, 1954, 1, 0, 0, 0, 1953, 1955, 7, 25, 0, 0, 1954, 1953, 1, 0, 0, 0, 1954, 1955, 1, 0, 0, 0, 1955, 1958, 1, 0, 0, 0, 1956, 1957, 5, 199, 0, 0, 1957, 1959, 7, 26, 0, 0, 1958, 1956, 1, 0, 0, 0, 1958, 1959, 1, 0, 0, 0, 1959, 105, 1, 0, 0, 0, 1960, 1962, 3, 110, 55, 0, 1961, 1963, 3, 128, 64, 0, 1962, 1961, 1, 0, 0, 0, 1962, 1963, 1, 0, 0, 0, 1963, 1964, 1, 0, 0, 0, 1964, 1965, 3, 92, 46, 0, 1965, 1988, 1, 0, 0, 0, 1966, 1970, 3, 112, 56, 0, 1967, 1969, 3, 168, 84, 0, 1968, 1967, 1, 0, 0, 0, 1969, 1972, 1, 0, 0, 0, 1970, 1968, 1, 0, 0, 0, 1970, 1971, 1, 0, 0, 0, 1971, 1974, 1, 0, 0, 0, 1972, 1970, 1, 0, 0, 0, 1973, 1975, 3, 128, 64, 0, 1974, 1973, 1, 0, 0, 0, 1974, 1975, 1, 0, 0, 0, 1975, 1977, 1, 0, 0, 0, 1976, 1978, 3, 140, 70, 0, 1977, 1976, 1, 0, 0, 0, 1977, 1978, 1, 0, 0, 0, 1978, 1980, 1, 0, 0, 0, 1979, 1981, 3, 130, 65, 0, 1980, 1979, 1, 0, 0, 0, 1980, 1981, 1, 0, 0, 0, 1981, 1983, 1, 0, 0, 0, 1982, 1984, 3, 332, 166, 0, 1983, 1982, 1, 0, 0, 0, 1983, 1984, 1, 0, 0, 0, 1984, 1985, 1, 0, 0, 0, 1985, 1986, 3, 92, 46, 0, 1986, 1988, 1, 0, 0, 0, 1987, 1960, 1, 0, 0, 0, 1987, 1966, 1, 0, 0, 0, 1988, 107, 1, 0, 0, 0, 1989, 1991, 3, 110, 55, 0, 1990, 1992, 3, 136, 68, 0, 1991, 1990, 1, 0, 0, 0, 1991, 1992, 1, 0, 0, 0, 1992, 1996, 1, 0, 0, 0, 1993, 1995, 3, 168, 84, 0, 1994, 1993, 1, 0, 0, 0, 1995, 1998, 1, 0, 0, 0, 1996, 1994, 1, 0, 0, 0, 1996, 1997, 1, 0, 0, 0, 1997, 2000, 1, 0, 0, 0, 1998, 1996, 1, 0, 0, 0, 1999, 2001, 3, 128, 64, 0, 2000, 1999, 1, 0, 0, 0, 2000, 2001, 1, 0, 0, 0, 2001, 2003, 1, 0, 0, 0, 2002, 2004, 3, 140, 70, 0, 2003, 2002, 1, 0, 0, 0, 2003, 2004, 1, 0, 0, 0, 2004, 2006, 1, 0, 0, 0, 2005, 2007, 3, 130, 65, 0, 2006, 2005, 1, 0, 0, 0, 2006, 2007, 1, 0, 0, 0, 2007, 2009, 1, 0, 0, 0, 2008, 2010, 3, 332, 166, 0, 2009, 2008, 1, 0, 0, 0, 2009, 2010, 1, 0, 0, 0, 2010, 2034, 1, 0, 0, 0, 2011, 2013, 3, 112, 56, 0, 2012, 2014, 3, 136, 68, 0, 2013, 2012, 1, 0, 0, 0, 2013, 2014, 1, 0, 0, 0, 2014, 2018, 1, 0, 0, 0, 2015, 2017, 3, 168, 84, 0, 2016, 2015, 1, 0, 0, 0, 2017, 2020, 1, 0, 0, 0, 2018, 2016, 1, 0, 0, 0, 2018, 2019, 1, 0, 0, 0, 2019, 2022, 1, 0, 0, 0, 2020, 2018, 1, 0, 0, 0, 2021, 2023, 3, 128, 64, 0, 2022, 2021, 1, 0, 0, 0, 2022, 2023, 1, 0, 0, 0, 2023, 2025, 1, 0, 0, 0, 2024, 2026, 3, 140, 70, 0, 2025, 2024, 1, 0, 0, 0, 2025, 2026, 1, 0, 0, 0, 2026, 2028, 1, 0, 0, 0, 2027, 2029, 3, 130, 65, 0, 2028, 2027, 1, 0, 0, 0, 2028, 2029, 1, 0, 0, 0, 2029, 2031, 1, 0, 0, 0, 2030, 2032, 3, 332, 166, 0, 2031, 2030, 1, 0, 0, 0, 2031, 2032, 1, 0, 0, 0, 2032, 2034, 1, 0, 0, 0, 2033, 1989, 1, 0, 0, 0, 2033, 2011, 1, 0, 0, 0, 2034, 109, 1, 0, 0, 0, 2035, 2036, 5, 263, 0, 0, 2036, 2037, 5, 314, 0, 0, 2037, 2039, 5, 2, 0, 0, 2038, 2040, 3, 170, 85, 0, 2039, 2038, 1, 0, 0, 0, 2039, 2040, 1, 0, 0, 0, 2040, 2041, 1, 0, 0, 0, 2041, 2042, 3, 260, 130, 0, 2042, 2043, 5, 3, 0, 0, 2043, 2055, 1, 0, 0, 0, 2044, 2046, 5, 177, 0, 0, 2045, 2047, 3, 170, 85, 0, 2046, 2045, 1, 0, 0, 0, 2046, 2047, 1, 0, 0, 0, 2047, 2048, 1, 0, 0, 0, 2048, 2055, 3, 260, 130, 0, 2049, 2051, 5, 238, 0, 0, 2050, 2052, 3, 170, 85, 0, 2051, 2050, 1, 0, 0, 0, 2051, 2052, 1, 0, 0, 0, 2052, 2053, 1, 0, 0, 0, 2053, 2055, 3, 260, 130, 0, 2054, 2035, 1, 0, 0, 0, 2054, 2044, 1, 0, 0, 0, 2054, 2049, 1, 0, 0, 0, 2055, 2057, 1, 0, 0, 0, 2056, 2058, 3, 218, 109, 0, 2057, 2056, 1, 0, 0, 0, 2057, 2058, 1, 0, 0, 0, 2058, 2061, 1, 0, 0, 0, 2059, 2060, 5, 236, 0, 0, 2060, 2062, 3, 364, 182, 0, 2061, 2059, 1, 0, 0, 0, 2061, 2062, 1, 0, 0, 0, 2062, 2063, 1, 0, 0, 0, 2063, 2064, 5, 332, 0, 0, 2064, 2077, 3, 364, 182, 0, 2065, 2075, 5, 20, 0, 0, 2066, 2076, 3, 186, 93, 0, 2067, 2076, 3, 318, 159, 0, 2068, 2071, 5, 2, 0, 0, 2069, 2072, 3, 186, 93, 0, 2070, 2072, 3, 318, 159, 0, 2071, 2069, 1, 0, 0, 0, 2071, 2070, 1, 0, 0, 0, 2072, 2073, 1, 0, 0, 0, 2073, 2074, 5, 3, 0, 0, 2074, 2076, 1, 0, 0, 0, 2075, 2066, 1, 0, 0, 0, 2075, 2067, 1, 0, 0, 0, 2075, 2068, 1, 0, 0, 0, 2076, 2078, 1, 0, 0, 0, 2077, 2065, 1, 0, 0, 0, 2077, 2078, 1, 0, 0, 0, 2078, 2080, 1, 0, 0, 0, 2079, 2081, 3, 218, 109, 0, 2080, 2079, 1, 0, 0, 0, 2080, 2081, 1, 0, 0, 0, 2081, 2084, 1, 0, 0, 0, 2082, 2083, 5, 235, 0, 0, 2083, 2085, 3, 364, 182, 0, 2084, 2082, 1, 0, 0, 0, 2084, 2085, 1, 0, 0, 0, 2085, 111, 1, 0, 0, 0, 2086, 2090, 5, 263, 0, 0, 2087, 2089, 3, 132, 66, 0, 2088, 2087, 1, 0, 0, 0, 2089, 2092, 1, 0, 0, 0, 2090, 2088, 1, 0, 0, 0, 2090, 2091, 1, 0, 0, 0, 2091, 2094, 1, 0, 0, 0, 2092, 2090, 1, 0, 0, 0, 2093, 2095, 3, 170, 85, 0, 2094, 2093, 1, 0, 0, 0, 2094, 2095, 1, 0, 0, 0, 2095, 2096, 1, 0, 0, 0, 2096, 2097, 3, 244, 122, 0, 2097, 113, 1, 0, 0, 0, 2098, 2099, 5, 269, 0, 0, 2099, 2100, 3, 124, 62, 0, 2100, 115, 1, 0, 0, 0, 2101, 2102, 5, 343, 0, 0, 2102, 2105, 5, 178, 0, 0, 2103, 2104, 5, 14, 0, 0, 2104, 2106, 3, 262, 131, 0, 2105, 2103, 1, 0, 0, 0, 2105, 2106, 1, 0, 0, 0, 2106, 2107, 1, 0, 0, 0, 2107, 2115, 5, 300, 0, 0, 2108, 2116, 5, 84, 0, 0, 2109, 2110, 5, 329, 0, 0, 2110, 2113, 5, 269, 0, 0, 2111, 2114, 5, 363, 0, 0, 2112, 2114, 3, 124, 62, 0, 2113, 2111, 1, 0, 0, 0, 2113, 2112, 1, 0, 0, 0, 2114, 2116, 1, 0, 0, 0, 2115, 2108, 1, 0, 0, 0, 2115, 2109, 1, 0, 0, 0, 2116, 117, 1, 0, 0, 0, 2117, 2118, 5, 343, 0, 0, 2118, 2119, 5, 197, 0, 0, 2119, 2122, 5, 178, 0, 0, 2120, 2121, 5, 31, 0, 0, 2121, 2123, 5, 296, 0, 0, 2122, 2120, 1, 0, 0, 0, 2122, 2123, 1, 0, 0, 0, 2123, 2126, 1, 0, 0, 0, 2124, 2125, 5, 14, 0, 0, 2125, 2127, 3, 262, 131, 0, 2126, 2124, 1, 0, 0, 0, 2126, 2127, 1, 0, 0, 0, 2127, 2128, 1, 0, 0, 0, 2128, 2129, 5, 300, 0, 0, 2129, 2130, 3, 122, 61, 0, 2130, 119, 1, 0, 0, 0, 2131, 2132, 5, 343, 0, 0, 2132, 2133, 5, 197, 0, 0, 2133, 2134, 5, 178, 0, 0, 2134, 2135, 5, 31, 0, 0, 2135, 2138, 5, 280, 0, 0, 2136, 2137, 5, 14, 0, 0, 2137, 2139, 3, 262, 131, 0, 2138, 2136, 1, 0, 0, 0, 2138, 2139, 1, 0, 0, 0, 2139, 2140, 1, 0, 0, 0, 2140, 2145, 5, 300, 0, 0, 2141, 2146, 5, 84, 0, 0, 2142, 2143, 5, 329, 0, 0, 2143, 2144, 5, 269, 0, 0, 2144, 2146, 3, 124, 62, 0, 2145, 2141, 1, 0, 0, 0, 2145, 2142, 1, 0, 0, 0, 2146, 121, 1, 0, 0, 0, 2147, 2148, 5, 147, 0, 0, 2148, 2166, 5, 363, 0, 0, 2149, 2150, 5, 147, 0, 0, 2150, 2151, 5, 2, 0, 0, 2151, 2152, 3, 220, 110, 0, 2152, 2153, 5, 3, 0, 0, 2153, 2154, 5, 333, 0, 0, 2154, 2155, 5, 2, 0, 0, 2155, 2160, 3, 254, 127, 0, 2156, 2157, 5, 4, 0, 0, 2157, 2159, 3, 254, 127, 0, 2158, 2156, 1, 0, 0, 0, 2159, 2162, 1, 0, 0, 0, 2160, 2158, 1, 0, 0, 0, 2160, 2161, 1, 0, 0, 0, 2161, 2163, 1, 0, 0, 0, 2162, 2160, 1, 0, 0, 0, 2163, 2164, 5, 3, 0, 0, 2164, 2166, 1, 0, 0, 0, 2165, 2147, 1, 0, 0, 0, 2165, 2149, 1, 0, 0, 0, 2166, 123, 1, 0, 0, 0, 2167, 2172, 3, 126, 63, 0, 2168, 2169, 5, 4, 0, 0, 2169, 2171, 3, 126, 63, 0, 2170, 2168, 1, 0, 0, 0, 2171, 2174, 1, 0, 0, 0, 2172, 2170, 1, 0, 0, 0, 2172, 2173, 1, 0, 0, 0, 2173, 125, 1, 0, 0, 0, 2174, 2172, 1, 0, 0, 0, 2175, 2176, 3, 222, 111, 0, 2176, 2177, 5, 352, 0, 0, 2177, 2178, 3, 254, 127, 0, 2178, 127, 1, 0, 0, 0, 2179, 2180, 5, 344, 0, 0, 2180, 2181, 3, 262, 131, 0, 2181, 129, 1, 0, 0, 0, 2182, 2183, 5, 132, 0, 0, 2183, 2184, 3, 262, 131, 0, 2184, 131, 1, 0, 0, 0, 2185, 2186, 5, 374, 0, 0, 2186, 2193, 3, 134, 67, 0, 2187, 2189, 5, 4, 0, 0, 2188, 2187, 1, 0, 0, 0, 2188, 2189, 1, 0, 0, 0, 2189, 2190, 1, 0, 0, 0, 2190, 2192, 3, 134, 67, 0, 2191, 2188, 1, 0, 0, 0, 2192, 2195, 1, 0, 0, 0, 2193, 2191, 1, 0, 0, 0, 2193, 2194, 1, 0, 0, 0, 2194, 2196, 1, 0, 0, 0, 2195, 2193, 1, 0, 0, 0, 2196, 2197, 5, 375, 0, 0, 2197, 133, 1, 0, 0, 0, 2198, 2212, 3, 354, 177, 0, 2199, 2200, 3, 354, 177, 0, 2200, 2201, 5, 2, 0, 0, 2201, 2206, 3, 270, 135, 0, 2202, 2203, 5, 4, 0, 0, 2203, 2205, 3, 270, 135, 0, 2204, 2202, 1, 0, 0, 0, 2205, 2208, 1, 0, 0, 0, 2206, 2204, 1, 0, 0, 0, 2206, 2207, 1, 0, 0, 0, 2207, 2209, 1, 0, 0, 0, 2208, 2206, 1, 0, 0, 0, 2209, 2210, 5, 3, 0, 0, 2210, 2212, 1, 0, 0, 0, 2211, 2198, 1, 0, 0, 0, 2211, 2199, 1, 0, 0, 0, 2212, 135, 1, 0, 0, 0, 2213, 2214, 5, 123, 0, 0, 2214, 2219, 3, 172, 86, 0, 2215, 2216, 5, 4, 0, 0, 2216, 2218, 3, 172, 86, 0, 2217, 2215, 1, 0, 0, 0, 2218, 2221, 1, 0, 0, 0, 2219, 2217, 1, 0, 0, 0, 2219, 2220, 1, 0, 0, 0, 2220, 2225, 1, 0, 0, 0, 2221, 2219, 1, 0, 0, 0, 2222, 2224, 3, 168, 84, 0, 2223, 2222, 1, 0, 0, 0, 2224, 2227, 1, 0, 0, 0, 2225, 2223, 1, 0, 0, 0, 2225, 2226, 1, 0, 0, 0, 2226, 2229, 1, 0, 0, 0, 2227, 2225, 1, 0, 0, 0, 2228, 2230, 3, 148, 74, 0, 2229, 2228, 1, 0, 0, 0, 2229, 2230, 1, 0, 0, 0, 2230, 2232, 1, 0, 0, 0, 2231, 2233, 3, 154, 77, 0, 2232, 2231, 1, 0, 0, 0, 2232, 2233, 1, 0, 0, 0, 2233, 137, 1, 0, 0, 0, 2234, 2236, 5, 119, 0, 0, 2235, 2234, 1, 0, 0, 0, 2235, 2236, 1, 0, 0, 0, 2236, 2237, 1, 0, 0, 0, 2237, 2238, 7, 27, 0, 0, 2238, 2239, 5, 20, 0, 0, 2239, 2242, 5, 201, 0, 0, 2240, 2243, 5, 382, 0, 0, 2241, 2243, 3, 364, 182, 0, 2242, 2240, 1, 0, 0, 0, 2242, 2241, 1, 0, 0, 0, 2243, 2252, 1, 0, 0, 0, 2244, 2246, 5, 119, 0, 0, 2245, 2244, 1, 0, 0, 0, 2245, 2246, 1, 0, 0, 0, 2246, 2247, 1, 0, 0, 0, 2247, 2248, 7, 28, 0, 0, 2248, 2249, 5, 20, 0, 0, 2249, 2250, 5, 201, 0, 0, 2250, 2252, 3, 266, 133, 0, 2251, 2235, 1, 0, 0, 0, 2251, 2245, 1, 0, 0, 0, 2252, 139, 1, 0, 0, 0, 2253, 2254, 5, 130, 0, 0, 2254, 2255, 5, 31, 0, 0, 2255, 2260, 3, 142, 71, 0, 2256, 2257, 5, 4, 0, 0, 2257, 2259, 3, 142, 71, 0, 2258, 2256, 1, 0, 0, 0, 2259, 2262, 1, 0, 0, 0, 2260, 2258, 1, 0, 0, 0, 2260, 2261, 1, 0, 0, 0, 2261, 2293, 1, 0, 0, 0, 2262, 2260, 1, 0, 0, 0, 2263, 2264, 5, 130, 0, 0, 2264, 2265, 5, 31, 0, 0, 2265, 2270, 3, 254, 127, 0, 2266, 2267, 5, 4, 0, 0, 2267, 2269, 3, 254, 127, 0, 2268, 2266, 1, 0, 0, 0, 2269, 2272, 1, 0, 0, 0, 2270, 2268, 1, 0, 0, 0, 2270, 2271, 1, 0, 0, 0, 2271, 2290, 1, 0, 0, 0, 2272, 2270, 1, 0, 0, 0, 2273, 2274, 5, 346, 0, 0, 2274, 2291, 5, 256, 0, 0, 2275, 2276, 5, 346, 0, 0, 2276, 2291, 5, 61, 0, 0, 2277, 2278, 5, 131, 0, 0, 2278, 2279, 5, 271, 0, 0, 2279, 2280, 5, 2, 0, 0, 2280, 2285, 3, 146, 73, 0, 2281, 2282, 5, 4, 0, 0, 2282, 2284, 3, 146, 73, 0, 2283, 2281, 1, 0, 0, 0, 2284, 2287, 1, 0, 0, 0, 2285, 2283, 1, 0, 0, 0, 2285, 2286, 1, 0, 0, 0, 2286, 2288, 1, 0, 0, 0, 2287, 2285, 1, 0, 0, 0, 2288, 2289, 5, 3, 0, 0, 2289, 2291, 1, 0, 0, 0, 2290, 2273, 1, 0, 0, 0, 2290, 2275, 1, 0, 0, 0, 2290, 2277, 1, 0, 0, 0, 2290, 2291, 1, 0, 0, 0, 2291, 2293, 1, 0, 0, 0, 2292, 2253, 1, 0, 0, 0, 2292, 2263, 1, 0, 0, 0, 2293, 141, 1, 0, 0, 0, 2294, 2298, 3, 80, 40, 0, 2295, 2298, 3, 144, 72, 0, 2296, 2298, 3, 254, 127, 0, 2297, 2294, 1, 0, 0, 0, 2297, 2295, 1, 0, 0, 0, 2297, 2296, 1, 0, 0, 0, 2298, 143, 1, 0, 0, 0, 2299, 2300, 7, 29, 0, 0, 2300, 2301, 5, 2, 0, 0, 2301, 2306, 3, 146, 73, 0, 2302, 2303, 5, 4, 0, 0, 2303, 2305, 3, 146, 73, 0, 2304, 2302, 1, 0, 0, 0, 2305, 2308, 1, 0, 0, 0, 2306, 2304, 1, 0, 0, 0, 2306, 2307, 1, 0, 0, 0, 2307, 2309, 1, 0, 0, 0, 2308, 2306, 1, 0, 0, 0, 2309, 2310, 5, 3, 0, 0, 2310, 2331, 1, 0, 0, 0, 2311, 2312, 5, 131, 0, 0, 2312, 2313, 5, 271, 0, 0, 2313, 2316, 5, 2, 0, 0, 2314, 2317, 3, 144, 72, 0, 2315, 2317, 3, 146, 73, 0, 2316, 2314, 1, 0, 0, 0, 2316, 2315, 1, 0, 0, 0, 2317, 2325, 1, 0, 0, 0, 2318, 2321, 5, 4, 0, 0, 2319, 2322, 3, 144, 72, 0, 2320, 2322, 3, 146, 73, 0, 2321, 2319, 1, 0, 0, 0, 2321, 2320, 1, 0, 0, 0, 2322, 2324, 1, 0, 0, 0, 2323, 2318, 1, 0, 0, 0, 2324, 2327, 1, 0, 0, 0, 2325, 2323, 1, 0, 0, 0, 2325, 2326, 1, 0, 0, 0, 2326, 2328, 1, 0, 0, 0, 2327, 2325, 1, 0, 0, 0, 2328, 2329, 5, 3, 0, 0, 2329, 2331, 1, 0, 0, 0, 2330, 2299, 1, 0, 0, 0, 2330, 2311, 1, 0, 0, 0, 2331, 145, 1, 0, 0, 0, 2332, 2353, 3, 80, 40, 0, 2333, 2353, 3, 254, 127, 0, 2334, 2349, 5, 2, 0, 0, 2335, 2338, 3, 80, 40, 0, 2336, 2338, 3, 254, 127, 0, 2337, 2335, 1, 0, 0, 0, 2337, 2336, 1, 0, 0, 0, 2338, 2346, 1, 0, 0, 0, 2339, 2342, 5, 4, 0, 0, 2340, 2343, 3, 80, 40, 0, 2341, 2343, 3, 254, 127, 0, 2342, 2340, 1, 0, 0, 0, 2342, 2341, 1, 0, 0, 0, 2343, 2345, 1, 0, 0, 0, 2344, 2339, 1, 0, 0, 0, 2345, 2348, 1, 0, 0, 0, 2346, 2344, 1, 0, 0, 0, 2346, 2347, 1, 0, 0, 0, 2347, 2350, 1, 0, 0, 0, 2348, 2346, 1, 0, 0, 0, 2349, 2337, 1, 0, 0, 0, 2349, 2350, 1, 0, 0, 0, 2350, 2351, 1, 0, 0, 0, 2351, 2353, 5, 3, 0, 0, 2352, 2332, 1, 0, 0, 0, 2352, 2333, 1, 0, 0, 0, 2352, 2334, 1, 0, 0, 0, 2353, 147, 1, 0, 0, 0, 2354, 2355, 5, 223, 0, 0, 2355, 2356, 5, 2, 0, 0, 2356, 2357, 3, 242, 121, 0, 2357, 2358, 5, 119, 0, 0, 2358, 2359, 3, 150, 75, 0, 2359, 2360, 5, 140, 0, 0, 2360, 2361, 5, 2, 0, 0, 2361, 2366, 3, 152, 76, 0, 2362, 2363, 5, 4, 0, 0, 2363, 2365, 3, 152, 76, 0, 2364, 2362, 1, 0, 0, 0, 2365, 2368, 1, 0, 0, 0, 2366, 2364, 1, 0, 0, 0, 2366, 2367, 1, 0, 0, 0, 2367, 2369, 1, 0, 0, 0, 2368, 2366, 1, 0, 0, 0, 2369, 2370, 5, 3, 0, 0, 2370, 2371, 5, 3, 0, 0, 2371, 149, 1, 0, 0, 0, 2372, 2385, 3, 354, 177, 0, 2373, 2374, 5, 2, 0, 0, 2374, 2379, 3, 354, 177, 0, 2375, 2376, 5, 4, 0, 0, 2376, 2378, 3, 354, 177, 0, 2377, 2375, 1, 0, 0, 0, 2378, 2381, 1, 0, 0, 0, 2379, 2377, 1, 0, 0, 0, 2379, 2380, 1, 0, 0, 0, 2380, 2382, 1, 0, 0, 0, 2381, 2379, 1, 0, 0, 0, 2382, 2383, 5, 3, 0, 0, 2383, 2385, 1, 0, 0, 0, 2384, 2372, 1, 0, 0, 0, 2384, 2373, 1, 0, 0, 0, 2385, 151, 1, 0, 0, 0, 2386, 2391, 3, 254, 127, 0, 2387, 2389, 5, 20, 0, 0, 2388, 2387, 1, 0, 0, 0, 2388, 2389, 1, 0, 0, 0, 2389, 2390, 1, 0, 0, 0, 2390, 2392, 3, 354, 177, 0, 2391, 2388, 1, 0, 0, 0, 2391, 2392, 1, 0, 0, 0, 2392, 153, 1, 0, 0, 0, 2393, 2396, 5, 327, 0, 0, 2394, 2395, 7, 30, 0, 0, 2395, 2397, 5, 199, 0, 0, 2396, 2394, 1, 0, 0, 0, 2396, 2397, 1, 0, 0, 0, 2397, 2398, 1, 0, 0, 0, 2398, 2401, 5, 2, 0, 0, 2399, 2402, 3, 156, 78, 0, 2400, 2402, 3, 158, 79, 0, 2401, 2399, 1, 0, 0, 0, 2401, 2400, 1, 0, 0, 0, 2402, 2403, 1, 0, 0, 0, 2403, 2408, 5, 3, 0, 0, 2404, 2406, 5, 20, 0, 0, 2405, 2404, 1, 0, 0, 0, 2405, 2406, 1, 0, 0, 0, 2406, 2407, 1, 0, 0, 0, 2407, 2409, 3, 354, 177, 0, 2408, 2405, 1, 0, 0, 0, 2408, 2409, 1, 0, 0, 0, 2409, 155, 1, 0, 0, 0, 2410, 2411, 3, 354, 177, 0, 2411, 2412, 5, 119, 0, 0, 2412, 2413, 3, 354, 177, 0, 2413, 2414, 5, 140, 0, 0, 2414, 2415, 5, 2, 0, 0, 2415, 2420, 3, 162, 81, 0, 2416, 2417, 5, 4, 0, 0, 2417, 2419, 3, 162, 81, 0, 2418, 2416, 1, 0, 0, 0, 2419, 2422, 1, 0, 0, 0, 2420, 2418, 1, 0, 0, 0, 2420, 2421, 1, 0, 0, 0, 2421, 2423, 1, 0, 0, 0, 2422, 2420, 1, 0, 0, 0, 2423, 2424, 5, 3, 0, 0, 2424, 157, 1, 0, 0, 0, 2425, 2426, 5, 2, 0, 0, 2426, 2431, 3, 354, 177, 0, 2427, 2428, 5, 4, 0, 0, 2428, 2430, 3, 354, 177, 0, 2429, 2427, 1, 0, 0, 0, 2430, 2433, 1, 0, 0, 0, 2431, 2429, 1, 0, 0, 0, 2431, 2432, 1, 0, 0, 0, 2432, 2434, 1, 0, 0, 0, 2433, 2431, 1, 0, 0, 0, 2434, 2435, 5, 3, 0, 0, 2435, 2436, 5, 119, 0, 0, 2436, 2437, 3, 354, 177, 0, 2437, 2438, 5, 140, 0, 0, 2438, 2439, 5, 2, 0, 0, 2439, 2444, 3, 160, 80, 0, 2440, 2441, 5, 4, 0, 0, 2441, 2443, 3, 160, 80, 0, 2442, 2440, 1, 0, 0, 0, 2443, 2446, 1, 0, 0, 0, 2444, 2442, 1, 0, 0, 0, 2444, 2445, 1, 0, 0, 0, 2445, 2447, 1, 0, 0, 0, 2446, 2444, 1, 0, 0, 0, 2447, 2448, 5, 3, 0, 0, 2448, 159, 1, 0, 0, 0, 2449, 2450, 5, 2, 0, 0, 2450, 2455, 3, 222, 111, 0, 2451, 2452, 5, 4, 0, 0, 2452, 2454, 3, 222, 111, 0, 2453, 2451, 1, 0, 0, 0, 2454, 2457, 1, 0, 0, 0, 2455, 2453, 1, 0, 0, 0, 2455, 2456, 1, 0, 0, 0, 2456, 2458, 1, 0, 0, 0, 2457, 2455, 1, 0, 0, 0, 2458, 2463, 5, 3, 0, 0, 2459, 2461, 5, 20, 0, 0, 2460, 2459, 1, 0, 0, 0, 2460, 2461, 1, 0, 0, 0, 2461, 2462, 1, 0, 0, 0, 2462, 2464, 3, 354, 177, 0, 2463, 2460, 1, 0, 0, 0, 2463, 2464, 1, 0, 0, 0, 2464, 161, 1, 0, 0, 0, 2465, 2470, 3, 222, 111, 0, 2466, 2468, 5, 20, 0, 0, 2467, 2466, 1, 0, 0, 0, 2467, 2468, 1, 0, 0, 0, 2468, 2469, 1, 0, 0, 0, 2469, 2471, 3, 354, 177, 0, 2470, 2467, 1, 0, 0, 0, 2470, 2471, 1, 0, 0, 0, 2471, 163, 1, 0, 0, 0, 2472, 2473, 5, 137, 0, 0, 2473, 2474, 5, 197, 0, 0, 2474, 2475, 5, 105, 0, 0, 2475, 165, 1, 0, 0, 0, 2476, 2477, 5, 137, 0, 0, 2477, 2478, 5, 105, 0, 0, 2478, 167, 1, 0, 0, 0, 2479, 2480, 5, 158, 0, 0, 2480, 2482, 5, 338, 0, 0, 2481, 2483, 5, 211, 0, 0, 2482, 2481, 1, 0, 0, 0, 2482, 2483, 1, 0, 0, 0, 2483, 2484, 1, 0, 0, 0, 2484, 2485, 3, 76, 38, 0, 2485, 2494, 5, 2, 0, 0, 2486, 2491, 3, 254, 127, 0, 2487, 2488, 5, 4, 0, 0, 2488, 2490, 3, 254, 127, 0, 2489, 2487, 1, 0, 0, 0, 2490, 2493, 1, 0, 0, 0, 2491, 2489, 1, 0, 0, 0, 2491, 2492, 1, 0, 0, 0, 2492, 2495, 1, 0, 0, 0, 2493, 2491, 1, 0, 0, 0, 2494, 2486, 1, 0, 0, 0, 2494, 2495, 1, 0, 0, 0, 2495, 2496, 1, 0, 0, 0, 2496, 2497, 5, 3, 0, 0, 2497, 2509, 3, 216, 108, 0, 2498, 2500, 5, 20, 0, 0, 2499, 2498, 1, 0, 0, 0, 2499, 2500, 1, 0, 0, 0, 2500, 2501, 1, 0, 0, 0, 2501, 2506, 3, 354, 177, 0, 2502, 2503, 5, 4, 0, 0, 2503, 2505, 3, 354, 177, 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, 2499, 1, 0, 0, 0, 2509, 2510, 1, 0, 0, 0, 2510, 169, 1, 0, 0, 0, 2511, 2512, 7, 31, 0, 0, 2512, 171, 1, 0, 0, 0, 2513, 2527, 3, 72, 36, 0, 2514, 2516, 5, 158, 0, 0, 2515, 2514, 1, 0, 0, 0, 2515, 2516, 1, 0, 0, 0, 2516, 2517, 1, 0, 0, 0, 2517, 2523, 3, 196, 98, 0, 2518, 2522, 3, 174, 87, 0, 2519, 2522, 3, 148, 74, 0, 2520, 2522, 3, 154, 77, 0, 2521, 2518, 1, 0, 0, 0, 2521, 2519, 1, 0, 0, 0, 2521, 2520, 1, 0, 0, 0, 2522, 2525, 1, 0, 0, 0, 2523, 2521, 1, 0, 0, 0, 2523, 2524, 1, 0, 0, 0, 2524, 2527, 1, 0, 0, 0, 2525, 2523, 1, 0, 0, 0, 2526, 2513, 1, 0, 0, 0, 2526, 2515, 1, 0, 0, 0, 2527, 173, 1, 0, 0, 0, 2528, 2529, 3, 176, 88, 0, 2529, 2531, 5, 155, 0, 0, 2530, 2532, 5, 158, 0, 0, 2531, 2530, 1, 0, 0, 0, 2531, 2532, 1, 0, 0, 0, 2532, 2533, 1, 0, 0, 0, 2533, 2535, 3, 196, 98, 0, 2534, 2536, 3, 178, 89, 0, 2535, 2534, 1, 0, 0, 0, 2535, 2536, 1, 0, 0, 0, 2536, 2546, 1, 0, 0, 0, 2537, 2538, 5, 194, 0, 0, 2538, 2539, 3, 176, 88, 0, 2539, 2541, 5, 155, 0, 0, 2540, 2542, 5, 158, 0, 0, 2541, 2540, 1, 0, 0, 0, 2541, 2542, 1, 0, 0, 0, 2542, 2543, 1, 0, 0, 0, 2543, 2544, 3, 196, 98, 0, 2544, 2546, 1, 0, 0, 0, 2545, 2528, 1, 0, 0, 0, 2545, 2537, 1, 0, 0, 0, 2546, 175, 1, 0, 0, 0, 2547, 2549, 5, 144, 0, 0, 2548, 2547, 1, 0, 0, 0, 2548, 2549, 1, 0, 0, 0, 2549, 2564, 1, 0, 0, 0, 2550, 2564, 5, 60, 0, 0, 2551, 2553, 5, 161, 0, 0, 2552, 2554, 5, 211, 0, 0, 2553, 2552, 1, 0, 0, 0, 2553, 2554, 1, 0, 0, 0, 2554, 2564, 1, 0, 0, 0, 2555, 2557, 5, 161, 0, 0, 2556, 2555, 1, 0, 0, 0, 2556, 2557, 1, 0, 0, 0, 2557, 2558, 1, 0, 0, 0, 2558, 2564, 7, 32, 0, 0, 2559, 2561, 7, 33, 0, 0, 2560, 2562, 5, 211, 0, 0, 2561, 2560, 1, 0, 0, 0, 2561, 2562, 1, 0, 0, 0, 2562, 2564, 1, 0, 0, 0, 2563, 2548, 1, 0, 0, 0, 2563, 2550, 1, 0, 0, 0, 2563, 2551, 1, 0, 0, 0, 2563, 2556, 1, 0, 0, 0, 2563, 2559, 1, 0, 0, 0, 2564, 177, 1, 0, 0, 0, 2565, 2572, 5, 203, 0, 0, 2566, 2573, 3, 262, 131, 0, 2567, 2570, 3, 84, 42, 0, 2568, 2569, 5, 352, 0, 0, 2569, 2571, 3, 84, 42, 0, 2570, 2568, 1, 0, 0, 0, 2570, 2571, 1, 0, 0, 0, 2571, 2573, 1, 0, 0, 0, 2572, 2566, 1, 0, 0, 0, 2572, 2567, 1, 0, 0, 0, 2573, 2577, 1, 0, 0, 0, 2574, 2575, 5, 332, 0, 0, 2575, 2577, 3, 184, 92, 0, 2576, 2565, 1, 0, 0, 0, 2576, 2574, 1, 0, 0, 0, 2577, 179, 1, 0, 0, 0, 2578, 2579, 5, 295, 0, 0, 2579, 2581, 5, 2, 0, 0, 2580, 2582, 3, 182, 91, 0, 2581, 2580, 1, 0, 0, 0, 2581, 2582, 1, 0, 0, 0, 2582, 2583, 1, 0, 0, 0, 2583, 2588, 5, 3, 0, 0, 2584, 2585, 5, 243, 0, 0, 2585, 2586, 5, 2, 0, 0, 2586, 2587, 5, 382, 0, 0, 2587, 2589, 5, 3, 0, 0, 2588, 2584, 1, 0, 0, 0, 2588, 2589, 1, 0, 0, 0, 2589, 181, 1, 0, 0, 0, 2590, 2592, 5, 362, 0, 0, 2591, 2590, 1, 0, 0, 0, 2591, 2592, 1, 0, 0, 0, 2592, 2593, 1, 0, 0, 0, 2593, 2594, 7, 34, 0, 0, 2594, 2615, 5, 222, 0, 0, 2595, 2596, 3, 254, 127, 0, 2596, 2597, 5, 258, 0, 0, 2597, 2615, 1, 0, 0, 0, 2598, 2599, 5, 29, 0, 0, 2599, 2600, 5, 382, 0, 0, 2600, 2601, 5, 210, 0, 0, 2601, 2602, 5, 201, 0, 0, 2602, 2611, 5, 382, 0, 0, 2603, 2609, 5, 203, 0, 0, 2604, 2610, 3, 354, 177, 0, 2605, 2606, 3, 348, 174, 0, 2606, 2607, 5, 2, 0, 0, 2607, 2608, 5, 3, 0, 0, 2608, 2610, 1, 0, 0, 0, 2609, 2604, 1, 0, 0, 0, 2609, 2605, 1, 0, 0, 0, 2610, 2612, 1, 0, 0, 0, 2611, 2603, 1, 0, 0, 0, 2611, 2612, 1, 0, 0, 0, 2612, 2615, 1, 0, 0, 0, 2613, 2615, 3, 254, 127, 0, 2614, 2591, 1, 0, 0, 0, 2614, 2595, 1, 0, 0, 0, 2614, 2598, 1, 0, 0, 0, 2614, 2613, 1, 0, 0, 0, 2615, 183, 1, 0, 0, 0, 2616, 2617, 5, 2, 0, 0, 2617, 2618, 3, 186, 93, 0, 2618, 2619, 5, 3, 0, 0, 2619, 185, 1, 0, 0, 0, 2620, 2625, 3, 350, 175, 0, 2621, 2622, 5, 4, 0, 0, 2622, 2624, 3, 350, 175, 0, 2623, 2621, 1, 0, 0, 0, 2624, 2627, 1, 0, 0, 0, 2625, 2623, 1, 0, 0, 0, 2625, 2626, 1, 0, 0, 0, 2626, 187, 1, 0, 0, 0, 2627, 2625, 1, 0, 0, 0, 2628, 2629, 5, 2, 0, 0, 2629, 2634, 3, 190, 95, 0, 2630, 2631, 5, 4, 0, 0, 2631, 2633, 3, 190, 95, 0, 2632, 2630, 1, 0, 0, 0, 2633, 2636, 1, 0, 0, 0, 2634, 2632, 1, 0, 0, 0, 2634, 2635, 1, 0, 0, 0, 2635, 2637, 1, 0, 0, 0, 2636, 2634, 1, 0, 0, 0, 2637, 2638, 5, 3, 0, 0, 2638, 189, 1, 0, 0, 0, 2639, 2641, 3, 350, 175, 0, 2640, 2642, 7, 25, 0, 0, 2641, 2640, 1, 0, 0, 0, 2641, 2642, 1, 0, 0, 0, 2642, 191, 1, 0, 0, 0, 2643, 2644, 5, 2, 0, 0, 2644, 2649, 3, 194, 97, 0, 2645, 2646, 5, 4, 0, 0, 2646, 2648, 3, 194, 97, 0, 2647, 2645, 1, 0, 0, 0, 2648, 2651, 1, 0, 0, 0, 2649, 2647, 1, 0, 0, 0, 2649, 2650, 1, 0, 0, 0, 2650, 2652, 1, 0, 0, 0, 2651, 2649, 1, 0, 0, 0, 2652, 2653, 5, 3, 0, 0, 2653, 193, 1, 0, 0, 0, 2654, 2657, 3, 88, 44, 0, 2655, 2656, 5, 51, 0, 0, 2656, 2658, 3, 364, 182, 0, 2657, 2655, 1, 0, 0, 0, 2657, 2658, 1, 0, 0, 0, 2658, 195, 1, 0, 0, 0, 2659, 2663, 3, 72, 36, 0, 2660, 2663, 3, 76, 38, 0, 2661, 2663, 3, 90, 45, 0, 2662, 2659, 1, 0, 0, 0, 2662, 2660, 1, 0, 0, 0, 2662, 2661, 1, 0, 0, 0, 2663, 2665, 1, 0, 0, 0, 2664, 2666, 3, 138, 69, 0, 2665, 2664, 1, 0, 0, 0, 2665, 2666, 1, 0, 0, 0, 2666, 2668, 1, 0, 0, 0, 2667, 2669, 3, 180, 90, 0, 2668, 2667, 1, 0, 0, 0, 2668, 2669, 1, 0, 0, 0, 2669, 2670, 1, 0, 0, 0, 2670, 2671, 3, 216, 108, 0, 2671, 2691, 1, 0, 0, 0, 2672, 2674, 3, 198, 99, 0, 2673, 2675, 3, 180, 90, 0, 2674, 2673, 1, 0, 0, 0, 2674, 2675, 1, 0, 0, 0, 2675, 2676, 1, 0, 0, 0, 2676, 2677, 3, 216, 108, 0, 2677, 2691, 1, 0, 0, 0, 2678, 2679, 5, 2, 0, 0, 2679, 2680, 3, 172, 86, 0, 2680, 2682, 5, 3, 0, 0, 2681, 2683, 3, 180, 90, 0, 2682, 2681, 1, 0, 0, 0, 2682, 2683, 1, 0, 0, 0, 2683, 2684, 1, 0, 0, 0, 2684, 2685, 3, 216, 108, 0, 2685, 2691, 1, 0, 0, 0, 2686, 2687, 3, 200, 100, 0, 2687, 2688, 3, 216, 108, 0, 2688, 2691, 1, 0, 0, 0, 2689, 2691, 3, 212, 106, 0, 2690, 2662, 1, 0, 0, 0, 2690, 2672, 1, 0, 0, 0, 2690, 2678, 1, 0, 0, 0, 2690, 2686, 1, 0, 0, 0, 2690, 2689, 1, 0, 0, 0, 2691, 197, 1, 0, 0, 0, 2692, 2693, 5, 2, 0, 0, 2693, 2694, 3, 16, 8, 0, 2694, 2695, 5, 3, 0, 0, 2695, 199, 1, 0, 0, 0, 2696, 2697, 5, 333, 0, 0, 2697, 2702, 3, 254, 127, 0, 2698, 2699, 5, 4, 0, 0, 2699, 2701, 3, 254, 127, 0, 2700, 2698, 1, 0, 0, 0, 2701, 2704, 1, 0, 0, 0, 2702, 2700, 1, 0, 0, 0, 2702, 2703, 1, 0, 0, 0, 2703, 201, 1, 0, 0, 0, 2704, 2702, 1, 0, 0, 0, 2705, 2706, 5, 293, 0, 0, 2706, 2708, 3, 72, 36, 0, 2707, 2709, 3, 204, 102, 0, 2708, 2707, 1, 0, 0, 0, 2708, 2709, 1, 0, 0, 0, 2709, 2725, 1, 0, 0, 0, 2710, 2711, 5, 293, 0, 0, 2711, 2712, 5, 2, 0, 0, 2712, 2713, 3, 72, 36, 0, 2713, 2715, 5, 3, 0, 0, 2714, 2716, 3, 204, 102, 0, 2715, 2714, 1, 0, 0, 0, 2715, 2716, 1, 0, 0, 0, 2716, 2725, 1, 0, 0, 0, 2717, 2718, 5, 293, 0, 0, 2718, 2719, 5, 2, 0, 0, 2719, 2720, 3, 16, 8, 0, 2720, 2722, 5, 3, 0, 0, 2721, 2723, 3, 204, 102, 0, 2722, 2721, 1, 0, 0, 0, 2722, 2723, 1, 0, 0, 0, 2723, 2725, 1, 0, 0, 0, 2724, 2705, 1, 0, 0, 0, 2724, 2710, 1, 0, 0, 0, 2724, 2717, 1, 0, 0, 0, 2725, 203, 1, 0, 0, 0, 2726, 2727, 5, 346, 0, 0, 2727, 2728, 5, 274, 0, 0, 2728, 2746, 5, 217, 0, 0, 2729, 2730, 7, 35, 0, 0, 2730, 2743, 5, 31, 0, 0, 2731, 2732, 5, 2, 0, 0, 2732, 2737, 3, 254, 127, 0, 2733, 2734, 5, 4, 0, 0, 2734, 2736, 3, 254, 127, 0, 2735, 2733, 1, 0, 0, 0, 2736, 2739, 1, 0, 0, 0, 2737, 2735, 1, 0, 0, 0, 2737, 2738, 1, 0, 0, 0, 2738, 2740, 1, 0, 0, 0, 2739, 2737, 1, 0, 0, 0, 2740, 2741, 5, 3, 0, 0, 2741, 2744, 1, 0, 0, 0, 2742, 2744, 3, 254, 127, 0, 2743, 2731, 1, 0, 0, 0, 2743, 2742, 1, 0, 0, 0, 2744, 2746, 1, 0, 0, 0, 2745, 2726, 1, 0, 0, 0, 2745, 2729, 1, 0, 0, 0, 2746, 2756, 1, 0, 0, 0, 2747, 2748, 7, 36, 0, 0, 2748, 2754, 5, 31, 0, 0, 2749, 2750, 5, 2, 0, 0, 2750, 2751, 3, 96, 48, 0, 2751, 2752, 5, 3, 0, 0, 2752, 2755, 1, 0, 0, 0, 2753, 2755, 3, 104, 52, 0, 2754, 2749, 1, 0, 0, 0, 2754, 2753, 1, 0, 0, 0, 2755, 2757, 1, 0, 0, 0, 2756, 2747, 1, 0, 0, 0, 2756, 2757, 1, 0, 0, 0, 2757, 205, 1, 0, 0, 0, 2758, 2759, 3, 354, 177, 0, 2759, 2760, 5, 373, 0, 0, 2760, 2761, 3, 202, 101, 0, 2761, 207, 1, 0, 0, 0, 2762, 2765, 3, 202, 101, 0, 2763, 2765, 3, 206, 103, 0, 2764, 2762, 1, 0, 0, 0, 2764, 2763, 1, 0, 0, 0, 2765, 209, 1, 0, 0, 0, 2766, 2769, 3, 208, 104, 0, 2767, 2769, 3, 258, 129, 0, 2768, 2766, 1, 0, 0, 0, 2768, 2767, 1, 0, 0, 0, 2769, 211, 1, 0, 0, 0, 2770, 2771, 3, 214, 107, 0, 2771, 2772, 3, 216, 108, 0, 2772, 213, 1, 0, 0, 0, 2773, 2774, 3, 344, 172, 0, 2774, 2783, 5, 2, 0, 0, 2775, 2780, 3, 210, 105, 0, 2776, 2777, 5, 4, 0, 0, 2777, 2779, 3, 210, 105, 0, 2778, 2776, 1, 0, 0, 0, 2779, 2782, 1, 0, 0, 0, 2780, 2778, 1, 0, 0, 0, 2780, 2781, 1, 0, 0, 0, 2781, 2784, 1, 0, 0, 0, 2782, 2780, 1, 0, 0, 0, 2783, 2775, 1, 0, 0, 0, 2783, 2784, 1, 0, 0, 0, 2784, 2785, 1, 0, 0, 0, 2785, 2786, 5, 3, 0, 0, 2786, 215, 1, 0, 0, 0, 2787, 2789, 5, 20, 0, 0, 2788, 2787, 1, 0, 0, 0, 2788, 2789, 1, 0, 0, 0, 2789, 2790, 1, 0, 0, 0, 2790, 2792, 3, 356, 178, 0, 2791, 2793, 3, 184, 92, 0, 2792, 2791, 1, 0, 0, 0, 2792, 2793, 1, 0, 0, 0, 2793, 2795, 1, 0, 0, 0, 2794, 2788, 1, 0, 0, 0, 2794, 2795, 1, 0, 0, 0, 2795, 217, 1, 0, 0, 0, 2796, 2797, 5, 257, 0, 0, 2797, 2798, 5, 121, 0, 0, 2798, 2799, 5, 266, 0, 0, 2799, 2803, 3, 364, 182, 0, 2800, 2801, 5, 346, 0, 0, 2801, 2802, 5, 267, 0, 0, 2802, 2804, 3, 42, 21, 0, 2803, 2800, 1, 0, 0, 0, 2803, 2804, 1, 0, 0, 0, 2804, 2846, 1, 0, 0, 0, 2805, 2806, 5, 257, 0, 0, 2806, 2807, 5, 121, 0, 0, 2807, 2817, 5, 85, 0, 0, 2808, 2809, 5, 113, 0, 0, 2809, 2810, 5, 299, 0, 0, 2810, 2811, 5, 31, 0, 0, 2811, 2815, 3, 364, 182, 0, 2812, 2813, 5, 101, 0, 0, 2813, 2814, 5, 31, 0, 0, 2814, 2816, 3, 364, 182, 0, 2815, 2812, 1, 0, 0, 0, 2815, 2816, 1, 0, 0, 0, 2816, 2818, 1, 0, 0, 0, 2817, 2808, 1, 0, 0, 0, 2817, 2818, 1, 0, 0, 0, 2818, 2824, 1, 0, 0, 0, 2819, 2820, 5, 48, 0, 0, 2820, 2821, 5, 154, 0, 0, 2821, 2822, 5, 299, 0, 0, 2822, 2823, 5, 31, 0, 0, 2823, 2825, 3, 364, 182, 0, 2824, 2819, 1, 0, 0, 0, 2824, 2825, 1, 0, 0, 0, 2825, 2831, 1, 0, 0, 0, 2826, 2827, 5, 177, 0, 0, 2827, 2828, 5, 156, 0, 0, 2828, 2829, 5, 299, 0, 0, 2829, 2830, 5, 31, 0, 0, 2830, 2832, 3, 364, 182, 0, 2831, 2826, 1, 0, 0, 0, 2831, 2832, 1, 0, 0, 0, 2832, 2837, 1, 0, 0, 0, 2833, 2834, 5, 166, 0, 0, 2834, 2835, 5, 299, 0, 0, 2835, 2836, 5, 31, 0, 0, 2836, 2838, 3, 364, 182, 0, 2837, 2833, 1, 0, 0, 0, 2837, 2838, 1, 0, 0, 0, 2838, 2843, 1, 0, 0, 0, 2839, 2840, 5, 198, 0, 0, 2840, 2841, 5, 83, 0, 0, 2841, 2842, 5, 20, 0, 0, 2842, 2844, 3, 364, 182, 0, 2843, 2839, 1, 0, 0, 0, 2843, 2844, 1, 0, 0, 0, 2844, 2846, 1, 0, 0, 0, 2845, 2796, 1, 0, 0, 0, 2845, 2805, 1, 0, 0, 0, 2846, 219, 1, 0, 0, 0, 2847, 2852, 3, 222, 111, 0, 2848, 2849, 5, 4, 0, 0, 2849, 2851, 3, 222, 111, 0, 2850, 2848, 1, 0, 0, 0, 2851, 2854, 1, 0, 0, 0, 2852, 2850, 1, 0, 0, 0, 2852, 2853, 1, 0, 0, 0, 2853, 221, 1, 0, 0, 0, 2854, 2852, 1, 0, 0, 0, 2855, 2860, 3, 350, 175, 0, 2856, 2857, 5, 5, 0, 0, 2857, 2859, 3, 350, 175, 0, 2858, 2856, 1, 0, 0, 0, 2859, 2862, 1, 0, 0, 0, 2860, 2858, 1, 0, 0, 0, 2860, 2861, 1, 0, 0, 0, 2861, 223, 1, 0, 0, 0, 2862, 2860, 1, 0, 0, 0, 2863, 2870, 3, 222, 111, 0, 2864, 2865, 4, 112, 5, 0, 2865, 2866, 3, 222, 111, 0, 2866, 2867, 5, 5, 0, 0, 2867, 2868, 3, 78, 39, 0, 2868, 2870, 1, 0, 0, 0, 2869, 2863, 1, 0, 0, 0, 2869, 2864, 1, 0, 0, 0, 2870, 225, 1, 0, 0, 0, 2871, 2876, 3, 228, 114, 0, 2872, 2873, 5, 4, 0, 0, 2873, 2875, 3, 228, 114, 0, 2874, 2872, 1, 0, 0, 0, 2875, 2878, 1, 0, 0, 0, 2876, 2874, 1, 0, 0, 0, 2876, 2877, 1, 0, 0, 0, 2877, 227, 1, 0, 0, 0, 2878, 2876, 1, 0, 0, 0, 2879, 2882, 3, 222, 111, 0, 2880, 2881, 5, 207, 0, 0, 2881, 2883, 3, 42, 21, 0, 2882, 2880, 1, 0, 0, 0, 2882, 2883, 1, 0, 0, 0, 2883, 229, 1, 0, 0, 0, 2884, 2885, 3, 350, 175, 0, 2885, 2886, 5, 5, 0, 0, 2886, 2888, 1, 0, 0, 0, 2887, 2884, 1, 0, 0, 0, 2887, 2888, 1, 0, 0, 0, 2888, 2889, 1, 0, 0, 0, 2889, 2890, 3, 350, 175, 0, 2890, 231, 1, 0, 0, 0, 2891, 2892, 3, 350, 175, 0, 2892, 2893, 5, 5, 0, 0, 2893, 2895, 1, 0, 0, 0, 2894, 2891, 1, 0, 0, 0, 2894, 2895, 1, 0, 0, 0, 2895, 2896, 1, 0, 0, 0, 2896, 2897, 3, 350, 175, 0, 2897, 233, 1, 0, 0, 0, 2898, 2899, 3, 80, 40, 0, 2899, 235, 1, 0, 0, 0, 2900, 2901, 3, 254, 127, 0, 2901, 237, 1, 0, 0, 0, 2902, 2903, 3, 348, 174, 0, 2903, 2904, 5, 5, 0, 0, 2904, 2906, 1, 0, 0, 0, 2905, 2902, 1, 0, 0, 0, 2906, 2909, 1, 0, 0, 0, 2907, 2905, 1, 0, 0, 0, 2907, 2908, 1, 0, 0, 0, 2908, 2910, 1, 0, 0, 0, 2909, 2907, 1, 0, 0, 0, 2910, 2911, 5, 363, 0, 0, 2911, 239, 1, 0, 0, 0, 2912, 2916, 3, 238, 119, 0, 2913, 2916, 3, 234, 117, 0, 2914, 2916, 3, 236, 118, 0, 2915, 2912, 1, 0, 0, 0, 2915, 2913, 1, 0, 0, 0, 2915, 2914, 1, 0, 0, 0, 2916, 2924, 1, 0, 0, 0, 2917, 2919, 5, 20, 0, 0, 2918, 2917, 1, 0, 0, 0, 2918, 2919, 1, 0, 0, 0, 2919, 2922, 1, 0, 0, 0, 2920, 2923, 3, 350, 175, 0, 2921, 2923, 3, 184, 92, 0, 2922, 2920, 1, 0, 0, 0, 2922, 2921, 1, 0, 0, 0, 2923, 2925, 1, 0, 0, 0, 2924, 2918, 1, 0, 0, 0, 2924, 2925, 1, 0, 0, 0, 2925, 2929, 1, 0, 0, 0, 2926, 2927, 4, 120, 6, 0, 2927, 2929, 3, 78, 39, 0, 2928, 2915, 1, 0, 0, 0, 2928, 2926, 1, 0, 0, 0, 2929, 241, 1, 0, 0, 0, 2930, 2935, 3, 240, 120, 0, 2931, 2932, 5, 4, 0, 0, 2932, 2934, 3, 240, 120, 0, 2933, 2931, 1, 0, 0, 0, 2934, 2937, 1, 0, 0, 0, 2935, 2933, 1, 0, 0, 0, 2935, 2936, 1, 0, 0, 0, 2936, 243, 1, 0, 0, 0, 2937, 2935, 1, 0, 0, 0, 2938, 2939, 3, 242, 121, 0, 2939, 245, 1, 0, 0, 0, 2940, 2941, 5, 2, 0, 0, 2941, 2946, 3, 248, 124, 0, 2942, 2943, 5, 4, 0, 0, 2943, 2945, 3, 248, 124, 0, 2944, 2942, 1, 0, 0, 0, 2945, 2948, 1, 0, 0, 0, 2946, 2944, 1, 0, 0, 0, 2946, 2947, 1, 0, 0, 0, 2947, 2949, 1, 0, 0, 0, 2948, 2946, 1, 0, 0, 0, 2949, 2950, 5, 3, 0, 0, 2950, 247, 1, 0, 0, 0, 2951, 2954, 3, 250, 125, 0, 2952, 2954, 3, 320, 160, 0, 2953, 2951, 1, 0, 0, 0, 2953, 2952, 1, 0, 0, 0, 2954, 249, 1, 0, 0, 0, 2955, 2969, 3, 348, 174, 0, 2956, 2957, 3, 354, 177, 0, 2957, 2958, 5, 2, 0, 0, 2958, 2963, 3, 252, 126, 0, 2959, 2960, 5, 4, 0, 0, 2960, 2962, 3, 252, 126, 0, 2961, 2959, 1, 0, 0, 0, 2962, 2965, 1, 0, 0, 0, 2963, 2961, 1, 0, 0, 0, 2963, 2964, 1, 0, 0, 0, 2964, 2966, 1, 0, 0, 0, 2965, 2963, 1, 0, 0, 0, 2966, 2967, 5, 3, 0, 0, 2967, 2969, 1, 0, 0, 0, 2968, 2955, 1, 0, 0, 0, 2968, 2956, 1, 0, 0, 0, 2969, 251, 1, 0, 0, 0, 2970, 2973, 3, 348, 174, 0, 2971, 2973, 3, 274, 137, 0, 2972, 2970, 1, 0, 0, 0, 2972, 2971, 1, 0, 0, 0, 2973, 253, 1, 0, 0, 0, 2974, 2975, 3, 262, 131, 0, 2975, 255, 1, 0, 0, 0, 2976, 2977, 3, 354, 177, 0, 2977, 2978, 5, 373, 0, 0, 2978, 2979, 3, 254, 127, 0, 2979, 257, 1, 0, 0, 0, 2980, 2983, 3, 254, 127, 0, 2981, 2983, 3, 256, 128, 0, 2982, 2980, 1, 0, 0, 0, 2982, 2981, 1, 0, 0, 0, 2983, 259, 1, 0, 0, 0, 2984, 2989, 3, 254, 127, 0, 2985, 2986, 5, 4, 0, 0, 2986, 2988, 3, 254, 127, 0, 2987, 2985, 1, 0, 0, 0, 2988, 2991, 1, 0, 0, 0, 2989, 2987, 1, 0, 0, 0, 2989, 2990, 1, 0, 0, 0, 2990, 261, 1, 0, 0, 0, 2991, 2989, 1, 0, 0, 0, 2992, 2993, 6, 131, -1, 0, 2993, 2994, 7, 37, 0, 0, 2994, 3005, 3, 262, 131, 5, 2995, 2996, 5, 105, 0, 0, 2996, 2997, 5, 2, 0, 0, 2997, 2998, 3, 16, 8, 0, 2998, 2999, 5, 3, 0, 0, 2999, 3005, 1, 0, 0, 0, 3000, 3002, 3, 266, 133, 0, 3001, 3003, 3, 264, 132, 0, 3002, 3001, 1, 0, 0, 0, 3002, 3003, 1, 0, 0, 0, 3003, 3005, 1, 0, 0, 0, 3004, 2992, 1, 0, 0, 0, 3004, 2995, 1, 0, 0, 0, 3004, 3000, 1, 0, 0, 0, 3005, 3014, 1, 0, 0, 0, 3006, 3007, 10, 2, 0, 0, 3007, 3008, 5, 14, 0, 0, 3008, 3013, 3, 262, 131, 3, 3009, 3010, 10, 1, 0, 0, 3010, 3011, 5, 208, 0, 0, 3011, 3013, 3, 262, 131, 2, 3012, 3006, 1, 0, 0, 0, 3012, 3009, 1, 0, 0, 0, 3013, 3016, 1, 0, 0, 0, 3014, 3012, 1, 0, 0, 0, 3014, 3015, 1, 0, 0, 0, 3015, 263, 1, 0, 0, 0, 3016, 3014, 1, 0, 0, 0, 3017, 3019, 5, 197, 0, 0, 3018, 3017, 1, 0, 0, 0, 3018, 3019, 1, 0, 0, 0, 3019, 3020, 1, 0, 0, 0, 3020, 3021, 5, 24, 0, 0, 3021, 3022, 3, 266, 133, 0, 3022, 3023, 5, 14, 0, 0, 3023, 3024, 3, 266, 133, 0, 3024, 3100, 1, 0, 0, 0, 3025, 3027, 5, 197, 0, 0, 3026, 3025, 1, 0, 0, 0, 3026, 3027, 1, 0, 0, 0, 3027, 3028, 1, 0, 0, 0, 3028, 3029, 5, 140, 0, 0, 3029, 3030, 5, 2, 0, 0, 3030, 3035, 3, 254, 127, 0, 3031, 3032, 5, 4, 0, 0, 3032, 3034, 3, 254, 127, 0, 3033, 3031, 1, 0, 0, 0, 3034, 3037, 1, 0, 0, 0, 3035, 3033, 1, 0, 0, 0, 3035, 3036, 1, 0, 0, 0, 3036, 3038, 1, 0, 0, 0, 3037, 3035, 1, 0, 0, 0, 3038, 3039, 5, 3, 0, 0, 3039, 3100, 1, 0, 0, 0, 3040, 3042, 5, 197, 0, 0, 3041, 3040, 1, 0, 0, 0, 3041, 3042, 1, 0, 0, 0, 3042, 3043, 1, 0, 0, 0, 3043, 3044, 5, 140, 0, 0, 3044, 3045, 5, 2, 0, 0, 3045, 3046, 3, 16, 8, 0, 3046, 3047, 5, 3, 0, 0, 3047, 3100, 1, 0, 0, 0, 3048, 3050, 5, 197, 0, 0, 3049, 3048, 1, 0, 0, 0, 3049, 3050, 1, 0, 0, 0, 3050, 3051, 1, 0, 0, 0, 3051, 3052, 7, 38, 0, 0, 3052, 3100, 3, 266, 133, 0, 3053, 3055, 5, 197, 0, 0, 3054, 3053, 1, 0, 0, 0, 3054, 3055, 1, 0, 0, 0, 3055, 3056, 1, 0, 0, 0, 3056, 3057, 7, 39, 0, 0, 3057, 3071, 7, 40, 0, 0, 3058, 3059, 5, 2, 0, 0, 3059, 3072, 5, 3, 0, 0, 3060, 3061, 5, 2, 0, 0, 3061, 3066, 3, 254, 127, 0, 3062, 3063, 5, 4, 0, 0, 3063, 3065, 3, 254, 127, 0, 3064, 3062, 1, 0, 0, 0, 3065, 3068, 1, 0, 0, 0, 3066, 3064, 1, 0, 0, 0, 3066, 3067, 1, 0, 0, 0, 3067, 3069, 1, 0, 0, 0, 3068, 3066, 1, 0, 0, 0, 3069, 3070, 5, 3, 0, 0, 3070, 3072, 1, 0, 0, 0, 3071, 3058, 1, 0, 0, 0, 3071, 3060, 1, 0, 0, 0, 3072, 3100, 1, 0, 0, 0, 3073, 3075, 5, 197, 0, 0, 3074, 3073, 1, 0, 0, 0, 3074, 3075, 1, 0, 0, 0, 3075, 3076, 1, 0, 0, 0, 3076, 3077, 7, 39, 0, 0, 3077, 3080, 3, 266, 133, 0, 3078, 3079, 5, 100, 0, 0, 3079, 3081, 3, 364, 182, 0, 3080, 3078, 1, 0, 0, 0, 3080, 3081, 1, 0, 0, 0, 3081, 3100, 1, 0, 0, 0, 3082, 3084, 5, 153, 0, 0, 3083, 3085, 5, 197, 0, 0, 3084, 3083, 1, 0, 0, 0, 3084, 3085, 1, 0, 0, 0, 3085, 3086, 1, 0, 0, 0, 3086, 3100, 5, 198, 0, 0, 3087, 3089, 5, 153, 0, 0, 3088, 3090, 5, 197, 0, 0, 3089, 3088, 1, 0, 0, 0, 3089, 3090, 1, 0, 0, 0, 3090, 3091, 1, 0, 0, 0, 3091, 3100, 7, 41, 0, 0, 3092, 3094, 5, 153, 0, 0, 3093, 3095, 5, 197, 0, 0, 3094, 3093, 1, 0, 0, 0, 3094, 3095, 1, 0, 0, 0, 3095, 3096, 1, 0, 0, 0, 3096, 3097, 5, 92, 0, 0, 3097, 3098, 5, 123, 0, 0, 3098, 3100, 3, 266, 133, 0, 3099, 3018, 1, 0, 0, 0, 3099, 3026, 1, 0, 0, 0, 3099, 3041, 1, 0, 0, 0, 3099, 3049, 1, 0, 0, 0, 3099, 3054, 1, 0, 0, 0, 3099, 3074, 1, 0, 0, 0, 3099, 3082, 1, 0, 0, 0, 3099, 3087, 1, 0, 0, 0, 3099, 3092, 1, 0, 0, 0, 3100, 265, 1, 0, 0, 0, 3101, 3102, 6, 133, -1, 0, 3102, 3106, 3, 270, 135, 0, 3103, 3104, 7, 42, 0, 0, 3104, 3106, 3, 266, 133, 7, 3105, 3101, 1, 0, 0, 0, 3105, 3103, 1, 0, 0, 0, 3106, 3128, 1, 0, 0, 0, 3107, 3108, 10, 6, 0, 0, 3108, 3109, 7, 43, 0, 0, 3109, 3127, 3, 266, 133, 7, 3110, 3111, 10, 5, 0, 0, 3111, 3112, 7, 44, 0, 0, 3112, 3127, 3, 266, 133, 6, 3113, 3114, 10, 4, 0, 0, 3114, 3115, 5, 367, 0, 0, 3115, 3127, 3, 266, 133, 5, 3116, 3117, 10, 3, 0, 0, 3117, 3118, 5, 370, 0, 0, 3118, 3127, 3, 266, 133, 4, 3119, 3120, 10, 2, 0, 0, 3120, 3121, 5, 368, 0, 0, 3121, 3127, 3, 266, 133, 3, 3122, 3123, 10, 1, 0, 0, 3123, 3124, 3, 276, 138, 0, 3124, 3125, 3, 266, 133, 2, 3125, 3127, 1, 0, 0, 0, 3126, 3107, 1, 0, 0, 0, 3126, 3110, 1, 0, 0, 0, 3126, 3113, 1, 0, 0, 0, 3126, 3116, 1, 0, 0, 0, 3126, 3119, 1, 0, 0, 0, 3126, 3122, 1, 0, 0, 0, 3127, 3130, 1, 0, 0, 0, 3128, 3126, 1, 0, 0, 0, 3128, 3129, 1, 0, 0, 0, 3129, 267, 1, 0, 0, 0, 3130, 3128, 1, 0, 0, 0, 3131, 3132, 7, 45, 0, 0, 3132, 269, 1, 0, 0, 0, 3133, 3134, 6, 135, -1, 0, 3134, 3383, 7, 46, 0, 0, 3135, 3136, 7, 47, 0, 0, 3136, 3139, 5, 2, 0, 0, 3137, 3140, 3, 268, 134, 0, 3138, 3140, 3, 364, 182, 0, 3139, 3137, 1, 0, 0, 0, 3139, 3138, 1, 0, 0, 0, 3140, 3141, 1, 0, 0, 0, 3141, 3142, 5, 4, 0, 0, 3142, 3143, 3, 266, 133, 0, 3143, 3144, 5, 4, 0, 0, 3144, 3145, 3, 266, 133, 0, 3145, 3146, 5, 3, 0, 0, 3146, 3383, 1, 0, 0, 0, 3147, 3148, 7, 48, 0, 0, 3148, 3151, 5, 2, 0, 0, 3149, 3152, 3, 268, 134, 0, 3150, 3152, 3, 364, 182, 0, 3151, 3149, 1, 0, 0, 0, 3151, 3150, 1, 0, 0, 0, 3152, 3153, 1, 0, 0, 0, 3153, 3154, 5, 4, 0, 0, 3154, 3155, 3, 266, 133, 0, 3155, 3156, 5, 4, 0, 0, 3156, 3157, 3, 266, 133, 0, 3157, 3158, 5, 3, 0, 0, 3158, 3383, 1, 0, 0, 0, 3159, 3161, 5, 35, 0, 0, 3160, 3162, 3, 330, 165, 0, 3161, 3160, 1, 0, 0, 0, 3162, 3163, 1, 0, 0, 0, 3163, 3161, 1, 0, 0, 0, 3163, 3164, 1, 0, 0, 0, 3164, 3167, 1, 0, 0, 0, 3165, 3166, 5, 97, 0, 0, 3166, 3168, 3, 254, 127, 0, 3167, 3165, 1, 0, 0, 0, 3167, 3168, 1, 0, 0, 0, 3168, 3169, 1, 0, 0, 0, 3169, 3170, 5, 99, 0, 0, 3170, 3383, 1, 0, 0, 0, 3171, 3172, 5, 35, 0, 0, 3172, 3174, 3, 254, 127, 0, 3173, 3175, 3, 330, 165, 0, 3174, 3173, 1, 0, 0, 0, 3175, 3176, 1, 0, 0, 0, 3176, 3174, 1, 0, 0, 0, 3176, 3177, 1, 0, 0, 0, 3177, 3180, 1, 0, 0, 0, 3178, 3179, 5, 97, 0, 0, 3179, 3181, 3, 254, 127, 0, 3180, 3178, 1, 0, 0, 0, 3180, 3181, 1, 0, 0, 0, 3181, 3182, 1, 0, 0, 0, 3182, 3183, 5, 99, 0, 0, 3183, 3383, 1, 0, 0, 0, 3184, 3185, 7, 49, 0, 0, 3185, 3186, 5, 2, 0, 0, 3186, 3187, 3, 254, 127, 0, 3187, 3188, 5, 20, 0, 0, 3188, 3189, 3, 304, 152, 0, 3189, 3190, 5, 3, 0, 0, 3190, 3383, 1, 0, 0, 0, 3191, 3192, 5, 286, 0, 0, 3192, 3201, 5, 2, 0, 0, 3193, 3198, 3, 240, 120, 0, 3194, 3195, 5, 4, 0, 0, 3195, 3197, 3, 240, 120, 0, 3196, 3194, 1, 0, 0, 0, 3197, 3200, 1, 0, 0, 0, 3198, 3196, 1, 0, 0, 0, 3198, 3199, 1, 0, 0, 0, 3199, 3202, 1, 0, 0, 0, 3200, 3198, 1, 0, 0, 0, 3201, 3193, 1, 0, 0, 0, 3201, 3202, 1, 0, 0, 0, 3202, 3203, 1, 0, 0, 0, 3203, 3383, 5, 3, 0, 0, 3204, 3205, 5, 116, 0, 0, 3205, 3206, 5, 2, 0, 0, 3206, 3209, 3, 254, 127, 0, 3207, 3208, 5, 138, 0, 0, 3208, 3210, 5, 199, 0, 0, 3209, 3207, 1, 0, 0, 0, 3209, 3210, 1, 0, 0, 0, 3210, 3211, 1, 0, 0, 0, 3211, 3212, 5, 3, 0, 0, 3212, 3383, 1, 0, 0, 0, 3213, 3214, 5, 17, 0, 0, 3214, 3215, 5, 2, 0, 0, 3215, 3218, 3, 254, 127, 0, 3216, 3217, 5, 138, 0, 0, 3217, 3219, 5, 199, 0, 0, 3218, 3216, 1, 0, 0, 0, 3218, 3219, 1, 0, 0, 0, 3219, 3220, 1, 0, 0, 0, 3220, 3221, 5, 3, 0, 0, 3221, 3383, 1, 0, 0, 0, 3222, 3223, 5, 157, 0, 0, 3223, 3224, 5, 2, 0, 0, 3224, 3227, 3, 254, 127, 0, 3225, 3226, 5, 138, 0, 0, 3226, 3228, 5, 199, 0, 0, 3227, 3225, 1, 0, 0, 0, 3227, 3228, 1, 0, 0, 0, 3228, 3229, 1, 0, 0, 0, 3229, 3230, 5, 3, 0, 0, 3230, 3383, 1, 0, 0, 0, 3231, 3232, 5, 225, 0, 0, 3232, 3233, 5, 2, 0, 0, 3233, 3234, 3, 266, 133, 0, 3234, 3235, 5, 140, 0, 0, 3235, 3236, 3, 266, 133, 0, 3236, 3237, 5, 3, 0, 0, 3237, 3383, 1, 0, 0, 0, 3238, 3383, 3, 274, 137, 0, 3239, 3383, 5, 363, 0, 0, 3240, 3241, 3, 348, 174, 0, 3241, 3242, 5, 5, 0, 0, 3242, 3243, 5, 363, 0, 0, 3243, 3383, 1, 0, 0, 0, 3244, 3245, 5, 2, 0, 0, 3245, 3248, 3, 240, 120, 0, 3246, 3247, 5, 4, 0, 0, 3247, 3249, 3, 240, 120, 0, 3248, 3246, 1, 0, 0, 0, 3249, 3250, 1, 0, 0, 0, 3250, 3248, 1, 0, 0, 0, 3250, 3251, 1, 0, 0, 0, 3251, 3252, 1, 0, 0, 0, 3252, 3253, 5, 3, 0, 0, 3253, 3383, 1, 0, 0, 0, 3254, 3255, 5, 2, 0, 0, 3255, 3256, 3, 16, 8, 0, 3256, 3257, 5, 3, 0, 0, 3257, 3383, 1, 0, 0, 0, 3258, 3259, 5, 136, 0, 0, 3259, 3260, 5, 2, 0, 0, 3260, 3261, 3, 254, 127, 0, 3261, 3262, 5, 3, 0, 0, 3262, 3383, 1, 0, 0, 0, 3263, 3264, 3, 344, 172, 0, 3264, 3276, 5, 2, 0, 0, 3265, 3267, 3, 170, 85, 0, 3266, 3265, 1, 0, 0, 0, 3266, 3267, 1, 0, 0, 0, 3267, 3268, 1, 0, 0, 0, 3268, 3273, 3, 258, 129, 0, 3269, 3270, 5, 4, 0, 0, 3270, 3272, 3, 258, 129, 0, 3271, 3269, 1, 0, 0, 0, 3272, 3275, 1, 0, 0, 0, 3273, 3271, 1, 0, 0, 0, 3273, 3274, 1, 0, 0, 0, 3274, 3277, 1, 0, 0, 0, 3275, 3273, 1, 0, 0, 0, 3276, 3266, 1, 0, 0, 0, 3276, 3277, 1, 0, 0, 0, 3277, 3278, 1, 0, 0, 0, 3278, 3285, 5, 3, 0, 0, 3279, 3280, 5, 114, 0, 0, 3280, 3281, 5, 2, 0, 0, 3281, 3282, 5, 344, 0, 0, 3282, 3283, 3, 262, 131, 0, 3283, 3284, 5, 3, 0, 0, 3284, 3286, 1, 0, 0, 0, 3285, 3279, 1, 0, 0, 0, 3285, 3286, 1, 0, 0, 0, 3286, 3289, 1, 0, 0, 0, 3287, 3288, 7, 50, 0, 0, 3288, 3290, 5, 199, 0, 0, 3289, 3287, 1, 0, 0, 0, 3289, 3290, 1, 0, 0, 0, 3290, 3293, 1, 0, 0, 0, 3291, 3292, 5, 213, 0, 0, 3292, 3294, 3, 336, 168, 0, 3293, 3291, 1, 0, 0, 0, 3293, 3294, 1, 0, 0, 0, 3294, 3383, 1, 0, 0, 0, 3295, 3296, 3, 354, 177, 0, 3296, 3297, 5, 372, 0, 0, 3297, 3298, 3, 254, 127, 0, 3298, 3383, 1, 0, 0, 0, 3299, 3300, 5, 2, 0, 0, 3300, 3303, 3, 354, 177, 0, 3301, 3302, 5, 4, 0, 0, 3302, 3304, 3, 354, 177, 0, 3303, 3301, 1, 0, 0, 0, 3304, 3305, 1, 0, 0, 0, 3305, 3303, 1, 0, 0, 0, 3305, 3306, 1, 0, 0, 0, 3306, 3307, 1, 0, 0, 0, 3307, 3308, 5, 3, 0, 0, 3308, 3309, 5, 372, 0, 0, 3309, 3310, 3, 254, 127, 0, 3310, 3383, 1, 0, 0, 0, 3311, 3383, 3, 82, 41, 0, 3312, 3313, 5, 2, 0, 0, 3313, 3314, 3, 254, 127, 0, 3314, 3315, 5, 3, 0, 0, 3315, 3383, 1, 0, 0, 0, 3316, 3317, 5, 110, 0, 0, 3317, 3318, 5, 2, 0, 0, 3318, 3319, 3, 354, 177, 0, 3319, 3320, 5, 123, 0, 0, 3320, 3321, 3, 266, 133, 0, 3321, 3322, 5, 3, 0, 0, 3322, 3383, 1, 0, 0, 0, 3323, 3324, 7, 51, 0, 0, 3324, 3325, 5, 2, 0, 0, 3325, 3326, 3, 266, 133, 0, 3326, 3327, 7, 52, 0, 0, 3327, 3330, 3, 266, 133, 0, 3328, 3329, 7, 53, 0, 0, 3329, 3331, 3, 266, 133, 0, 3330, 3328, 1, 0, 0, 0, 3330, 3331, 1, 0, 0, 0, 3331, 3332, 1, 0, 0, 0, 3332, 3333, 5, 3, 0, 0, 3333, 3383, 1, 0, 0, 0, 3334, 3335, 5, 315, 0, 0, 3335, 3337, 5, 2, 0, 0, 3336, 3338, 7, 54, 0, 0, 3337, 3336, 1, 0, 0, 0, 3337, 3338, 1, 0, 0, 0, 3338, 3340, 1, 0, 0, 0, 3339, 3341, 3, 266, 133, 0, 3340, 3339, 1, 0, 0, 0, 3340, 3341, 1, 0, 0, 0, 3341, 3342, 1, 0, 0, 0, 3342, 3343, 5, 123, 0, 0, 3343, 3344, 3, 266, 133, 0, 3344, 3345, 5, 3, 0, 0, 3345, 3383, 1, 0, 0, 0, 3346, 3347, 5, 215, 0, 0, 3347, 3348, 5, 2, 0, 0, 3348, 3349, 3, 266, 133, 0, 3349, 3350, 5, 224, 0, 0, 3350, 3351, 3, 266, 133, 0, 3351, 3352, 5, 123, 0, 0, 3352, 3355, 3, 266, 133, 0, 3353, 3354, 5, 119, 0, 0, 3354, 3356, 3, 266, 133, 0, 3355, 3353, 1, 0, 0, 0, 3355, 3356, 1, 0, 0, 0, 3356, 3357, 1, 0, 0, 0, 3357, 3358, 5, 3, 0, 0, 3358, 3383, 1, 0, 0, 0, 3359, 3360, 7, 55, 0, 0, 3360, 3361, 5, 2, 0, 0, 3361, 3362, 3, 266, 133, 0, 3362, 3363, 5, 3, 0, 0, 3363, 3364, 5, 347, 0, 0, 3364, 3365, 5, 130, 0, 0, 3365, 3366, 5, 2, 0, 0, 3366, 3367, 5, 209, 0, 0, 3367, 3368, 5, 31, 0, 0, 3368, 3369, 3, 104, 52, 0, 3369, 3376, 5, 3, 0, 0, 3370, 3371, 5, 114, 0, 0, 3371, 3372, 5, 2, 0, 0, 3372, 3373, 5, 344, 0, 0, 3373, 3374, 3, 262, 131, 0, 3374, 3375, 5, 3, 0, 0, 3375, 3377, 1, 0, 0, 0, 3376, 3370, 1, 0, 0, 0, 3376, 3377, 1, 0, 0, 0, 3377, 3380, 1, 0, 0, 0, 3378, 3379, 5, 213, 0, 0, 3379, 3381, 3, 336, 168, 0, 3380, 3378, 1, 0, 0, 0, 3380, 3381, 1, 0, 0, 0, 3381, 3383, 1, 0, 0, 0, 3382, 3133, 1, 0, 0, 0, 3382, 3135, 1, 0, 0, 0, 3382, 3147, 1, 0, 0, 0, 3382, 3159, 1, 0, 0, 0, 3382, 3171, 1, 0, 0, 0, 3382, 3184, 1, 0, 0, 0, 3382, 3191, 1, 0, 0, 0, 3382, 3204, 1, 0, 0, 0, 3382, 3213, 1, 0, 0, 0, 3382, 3222, 1, 0, 0, 0, 3382, 3231, 1, 0, 0, 0, 3382, 3238, 1, 0, 0, 0, 3382, 3239, 1, 0, 0, 0, 3382, 3240, 1, 0, 0, 0, 3382, 3244, 1, 0, 0, 0, 3382, 3254, 1, 0, 0, 0, 3382, 3258, 1, 0, 0, 0, 3382, 3263, 1, 0, 0, 0, 3382, 3295, 1, 0, 0, 0, 3382, 3299, 1, 0, 0, 0, 3382, 3311, 1, 0, 0, 0, 3382, 3312, 1, 0, 0, 0, 3382, 3316, 1, 0, 0, 0, 3382, 3323, 1, 0, 0, 0, 3382, 3334, 1, 0, 0, 0, 3382, 3346, 1, 0, 0, 0, 3382, 3359, 1, 0, 0, 0, 3383, 3394, 1, 0, 0, 0, 3384, 3385, 10, 9, 0, 0, 3385, 3386, 5, 6, 0, 0, 3386, 3387, 3, 266, 133, 0, 3387, 3388, 5, 7, 0, 0, 3388, 3393, 1, 0, 0, 0, 3389, 3390, 10, 7, 0, 0, 3390, 3391, 5, 5, 0, 0, 3391, 3393, 3, 354, 177, 0, 3392, 3384, 1, 0, 0, 0, 3392, 3389, 1, 0, 0, 0, 3393, 3396, 1, 0, 0, 0, 3394, 3392, 1, 0, 0, 0, 3394, 3395, 1, 0, 0, 0, 3395, 271, 1, 0, 0, 0, 3396, 3394, 1, 0, 0, 0, 3397, 3405, 5, 71, 0, 0, 3398, 3405, 5, 303, 0, 0, 3399, 3405, 5, 304, 0, 0, 3400, 3405, 5, 305, 0, 0, 3401, 3405, 5, 149, 0, 0, 3402, 3405, 5, 133, 0, 0, 3403, 3405, 3, 354, 177, 0, 3404, 3397, 1, 0, 0, 0, 3404, 3398, 1, 0, 0, 0, 3404, 3399, 1, 0, 0, 0, 3404, 3400, 1, 0, 0, 0, 3404, 3401, 1, 0, 0, 0, 3404, 3402, 1, 0, 0, 0, 3404, 3403, 1, 0, 0, 0, 3405, 273, 1, 0, 0, 0, 3406, 3422, 5, 198, 0, 0, 3407, 3422, 5, 376, 0, 0, 3408, 3409, 5, 371, 0, 0, 3409, 3422, 3, 354, 177, 0, 3410, 3422, 3, 284, 142, 0, 3411, 3412, 3, 272, 136, 0, 3412, 3413, 3, 364, 182, 0, 3413, 3422, 1, 0, 0, 0, 3414, 3422, 3, 360, 180, 0, 3415, 3422, 3, 282, 141, 0, 3416, 3418, 3, 364, 182, 0, 3417, 3416, 1, 0, 0, 0, 3418, 3419, 1, 0, 0, 0, 3419, 3417, 1, 0, 0, 0, 3419, 3420, 1, 0, 0, 0, 3420, 3422, 1, 0, 0, 0, 3421, 3406, 1, 0, 0, 0, 3421, 3407, 1, 0, 0, 0, 3421, 3408, 1, 0, 0, 0, 3421, 3410, 1, 0, 0, 0, 3421, 3411, 1, 0, 0, 0, 3421, 3414, 1, 0, 0, 0, 3421, 3415, 1, 0, 0, 0, 3421, 3417, 1, 0, 0, 0, 3422, 275, 1, 0, 0, 0, 3423, 3424, 7, 56, 0, 0, 3424, 277, 1, 0, 0, 0, 3425, 3426, 7, 57, 0, 0, 3426, 279, 1, 0, 0, 0, 3427, 3428, 7, 58, 0, 0, 3428, 281, 1, 0, 0, 0, 3429, 3430, 7, 59, 0, 0, 3430, 283, 1, 0, 0, 0, 3431, 3434, 5, 149, 0, 0, 3432, 3435, 3, 286, 143, 0, 3433, 3435, 3, 290, 145, 0, 3434, 3432, 1, 0, 0, 0, 3434, 3433, 1, 0, 0, 0, 3435, 285, 1, 0, 0, 0, 3436, 3438, 3, 288, 144, 0, 3437, 3439, 3, 292, 146, 0, 3438, 3437, 1, 0, 0, 0, 3438, 3439, 1, 0, 0, 0, 3439, 287, 1, 0, 0, 0, 3440, 3441, 3, 294, 147, 0, 3441, 3442, 3, 296, 148, 0, 3442, 3444, 1, 0, 0, 0, 3443, 3440, 1, 0, 0, 0, 3444, 3445, 1, 0, 0, 0, 3445, 3443, 1, 0, 0, 0, 3445, 3446, 1, 0, 0, 0, 3446, 289, 1, 0, 0, 0, 3447, 3450, 3, 292, 146, 0, 3448, 3451, 3, 288, 144, 0, 3449, 3451, 3, 292, 146, 0, 3450, 3448, 1, 0, 0, 0, 3450, 3449, 1, 0, 0, 0, 3450, 3451, 1, 0, 0, 0, 3451, 291, 1, 0, 0, 0, 3452, 3453, 3, 294, 147, 0, 3453, 3454, 3, 298, 149, 0, 3454, 3455, 5, 309, 0, 0, 3455, 3456, 3, 298, 149, 0, 3456, 293, 1, 0, 0, 0, 3457, 3459, 7, 60, 0, 0, 3458, 3457, 1, 0, 0, 0, 3458, 3459, 1, 0, 0, 0, 3459, 3463, 1, 0, 0, 0, 3460, 3464, 5, 382, 0, 0, 3461, 3464, 5, 384, 0, 0, 3462, 3464, 3, 364, 182, 0, 3463, 3460, 1, 0, 0, 0, 3463, 3461, 1, 0, 0, 0, 3463, 3462, 1, 0, 0, 0, 3464, 295, 1, 0, 0, 0, 3465, 3466, 7, 61, 0, 0, 3466, 297, 1, 0, 0, 0, 3467, 3468, 7, 62, 0, 0, 3468, 299, 1, 0, 0, 0, 3469, 3473, 5, 116, 0, 0, 3470, 3471, 5, 9, 0, 0, 3471, 3473, 3, 350, 175, 0, 3472, 3469, 1, 0, 0, 0, 3472, 3470, 1, 0, 0, 0, 3473, 301, 1, 0, 0, 0, 3474, 3505, 5, 27, 0, 0, 3475, 3505, 5, 308, 0, 0, 3476, 3505, 5, 32, 0, 0, 3477, 3505, 5, 276, 0, 0, 3478, 3505, 5, 272, 0, 0, 3479, 3505, 5, 150, 0, 0, 3480, 3505, 5, 151, 0, 0, 3481, 3505, 5, 25, 0, 0, 3482, 3505, 5, 174, 0, 0, 3483, 3505, 5, 117, 0, 0, 3484, 3505, 5, 234, 0, 0, 3485, 3505, 5, 95, 0, 0, 3486, 3505, 5, 71, 0, 0, 3487, 3505, 5, 303, 0, 0, 3488, 3505, 5, 305, 0, 0, 3489, 3505, 5, 304, 0, 0, 3490, 3505, 5, 285, 0, 0, 3491, 3505, 5, 41, 0, 0, 3492, 3505, 5, 40, 0, 0, 3493, 3505, 5, 334, 0, 0, 3494, 3505, 5, 26, 0, 0, 3495, 3505, 5, 80, 0, 0, 3496, 3505, 5, 79, 0, 0, 3497, 3505, 5, 200, 0, 0, 3498, 3505, 5, 340, 0, 0, 3499, 3505, 5, 149, 0, 0, 3500, 3505, 5, 19, 0, 0, 3501, 3505, 5, 286, 0, 0, 3502, 3505, 5, 177, 0, 0, 3503, 3505, 3, 354, 177, 0, 3504, 3474, 1, 0, 0, 0, 3504, 3475, 1, 0, 0, 0, 3504, 3476, 1, 0, 0, 0, 3504, 3477, 1, 0, 0, 0, 3504, 3478, 1, 0, 0, 0, 3504, 3479, 1, 0, 0, 0, 3504, 3480, 1, 0, 0, 0, 3504, 3481, 1, 0, 0, 0, 3504, 3482, 1, 0, 0, 0, 3504, 3483, 1, 0, 0, 0, 3504, 3484, 1, 0, 0, 0, 3504, 3485, 1, 0, 0, 0, 3504, 3486, 1, 0, 0, 0, 3504, 3487, 1, 0, 0, 0, 3504, 3488, 1, 0, 0, 0, 3504, 3489, 1, 0, 0, 0, 3504, 3490, 1, 0, 0, 0, 3504, 3491, 1, 0, 0, 0, 3504, 3492, 1, 0, 0, 0, 3504, 3493, 1, 0, 0, 0, 3504, 3494, 1, 0, 0, 0, 3504, 3495, 1, 0, 0, 0, 3504, 3496, 1, 0, 0, 0, 3504, 3497, 1, 0, 0, 0, 3504, 3498, 1, 0, 0, 0, 3504, 3499, 1, 0, 0, 0, 3504, 3500, 1, 0, 0, 0, 3504, 3501, 1, 0, 0, 0, 3504, 3502, 1, 0, 0, 0, 3504, 3503, 1, 0, 0, 0, 3505, 303, 1, 0, 0, 0, 3506, 3507, 5, 19, 0, 0, 3507, 3508, 5, 356, 0, 0, 3508, 3509, 3, 304, 152, 0, 3509, 3510, 5, 358, 0, 0, 3510, 3560, 1, 0, 0, 0, 3511, 3512, 5, 177, 0, 0, 3512, 3513, 5, 356, 0, 0, 3513, 3514, 3, 304, 152, 0, 3514, 3515, 5, 4, 0, 0, 3515, 3516, 3, 304, 152, 0, 3516, 3517, 5, 358, 0, 0, 3517, 3560, 1, 0, 0, 0, 3518, 3532, 5, 286, 0, 0, 3519, 3528, 5, 356, 0, 0, 3520, 3525, 3, 328, 164, 0, 3521, 3522, 5, 4, 0, 0, 3522, 3524, 3, 328, 164, 0, 3523, 3521, 1, 0, 0, 0, 3524, 3527, 1, 0, 0, 0, 3525, 3523, 1, 0, 0, 0, 3525, 3526, 1, 0, 0, 0, 3526, 3529, 1, 0, 0, 0, 3527, 3525, 1, 0, 0, 0, 3528, 3520, 1, 0, 0, 0, 3528, 3529, 1, 0, 0, 0, 3529, 3530, 1, 0, 0, 0, 3530, 3533, 5, 358, 0, 0, 3531, 3533, 5, 354, 0, 0, 3532, 3519, 1, 0, 0, 0, 3532, 3531, 1, 0, 0, 0, 3533, 3560, 1, 0, 0, 0, 3534, 3535, 5, 149, 0, 0, 3535, 3538, 7, 63, 0, 0, 3536, 3537, 5, 309, 0, 0, 3537, 3539, 5, 186, 0, 0, 3538, 3536, 1, 0, 0, 0, 3538, 3539, 1, 0, 0, 0, 3539, 3560, 1, 0, 0, 0, 3540, 3541, 5, 149, 0, 0, 3541, 3544, 7, 64, 0, 0, 3542, 3543, 5, 309, 0, 0, 3543, 3545, 7, 65, 0, 0, 3544, 3542, 1, 0, 0, 0, 3544, 3545, 1, 0, 0, 0, 3545, 3560, 1, 0, 0, 0, 3546, 3557, 3, 302, 151, 0, 3547, 3548, 5, 2, 0, 0, 3548, 3553, 5, 382, 0, 0, 3549, 3550, 5, 4, 0, 0, 3550, 3552, 5, 382, 0, 0, 3551, 3549, 1, 0, 0, 0, 3552, 3555, 1, 0, 0, 0, 3553, 3551, 1, 0, 0, 0, 3553, 3554, 1, 0, 0, 0, 3554, 3556, 1, 0, 0, 0, 3555, 3553, 1, 0, 0, 0, 3556, 3558, 5, 3, 0, 0, 3557, 3547, 1, 0, 0, 0, 3557, 3558, 1, 0, 0, 0, 3558, 3560, 1, 0, 0, 0, 3559, 3506, 1, 0, 0, 0, 3559, 3511, 1, 0, 0, 0, 3559, 3518, 1, 0, 0, 0, 3559, 3534, 1, 0, 0, 0, 3559, 3540, 1, 0, 0, 0, 3559, 3546, 1, 0, 0, 0, 3560, 305, 1, 0, 0, 0, 3561, 3566, 3, 308, 154, 0, 3562, 3563, 5, 4, 0, 0, 3563, 3565, 3, 308, 154, 0, 3564, 3562, 1, 0, 0, 0, 3565, 3568, 1, 0, 0, 0, 3566, 3564, 1, 0, 0, 0, 3566, 3567, 1, 0, 0, 0, 3567, 307, 1, 0, 0, 0, 3568, 3566, 1, 0, 0, 0, 3569, 3570, 3, 88, 44, 0, 3570, 3574, 3, 304, 152, 0, 3571, 3573, 3, 314, 157, 0, 3572, 3571, 1, 0, 0, 0, 3573, 3576, 1, 0, 0, 0, 3574, 3572, 1, 0, 0, 0, 3574, 3575, 1, 0, 0, 0, 3575, 309, 1, 0, 0, 0, 3576, 3574, 1, 0, 0, 0, 3577, 3582, 3, 312, 156, 0, 3578, 3579, 5, 4, 0, 0, 3579, 3581, 3, 312, 156, 0, 3580, 3578, 1, 0, 0, 0, 3581, 3584, 1, 0, 0, 0, 3582, 3580, 1, 0, 0, 0, 3582, 3583, 1, 0, 0, 0, 3583, 311, 1, 0, 0, 0, 3584, 3582, 1, 0, 0, 0, 3585, 3586, 3, 80, 40, 0, 3586, 3590, 3, 304, 152, 0, 3587, 3589, 3, 314, 157, 0, 3588, 3587, 1, 0, 0, 0, 3589, 3592, 1, 0, 0, 0, 3590, 3588, 1, 0, 0, 0, 3590, 3591, 1, 0, 0, 0, 3591, 313, 1, 0, 0, 0, 3592, 3590, 1, 0, 0, 0, 3593, 3594, 5, 197, 0, 0, 3594, 3601, 5, 198, 0, 0, 3595, 3596, 5, 82, 0, 0, 3596, 3601, 3, 254, 127, 0, 3597, 3598, 5, 51, 0, 0, 3598, 3601, 3, 364, 182, 0, 3599, 3601, 3, 300, 150, 0, 3600, 3593, 1, 0, 0, 0, 3600, 3595, 1, 0, 0, 0, 3600, 3597, 1, 0, 0, 0, 3600, 3599, 1, 0, 0, 0, 3601, 315, 1, 0, 0, 0, 3602, 3603, 7, 66, 0, 0, 3603, 3604, 3, 254, 127, 0, 3604, 317, 1, 0, 0, 0, 3605, 3610, 3, 320, 160, 0, 3606, 3607, 5, 4, 0, 0, 3607, 3609, 3, 320, 160, 0, 3608, 3606, 1, 0, 0, 0, 3609, 3612, 1, 0, 0, 0, 3610, 3608, 1, 0, 0, 0, 3610, 3611, 1, 0, 0, 0, 3611, 319, 1, 0, 0, 0, 3612, 3610, 1, 0, 0, 0, 3613, 3614, 3, 350, 175, 0, 3614, 3617, 3, 304, 152, 0, 3615, 3616, 5, 197, 0, 0, 3616, 3618, 5, 198, 0, 0, 3617, 3615, 1, 0, 0, 0, 3617, 3618, 1, 0, 0, 0, 3618, 3621, 1, 0, 0, 0, 3619, 3620, 5, 51, 0, 0, 3620, 3622, 3, 364, 182, 0, 3621, 3619, 1, 0, 0, 0, 3621, 3622, 1, 0, 0, 0, 3622, 321, 1, 0, 0, 0, 3623, 3628, 3, 324, 162, 0, 3624, 3625, 5, 4, 0, 0, 3625, 3627, 3, 324, 162, 0, 3626, 3624, 1, 0, 0, 0, 3627, 3630, 1, 0, 0, 0, 3628, 3626, 1, 0, 0, 0, 3628, 3629, 1, 0, 0, 0, 3629, 323, 1, 0, 0, 0, 3630, 3628, 1, 0, 0, 0, 3631, 3632, 3, 88, 44, 0, 3632, 3636, 3, 304, 152, 0, 3633, 3635, 3, 326, 163, 0, 3634, 3633, 1, 0, 0, 0, 3635, 3638, 1, 0, 0, 0, 3636, 3634, 1, 0, 0, 0, 3636, 3637, 1, 0, 0, 0, 3637, 325, 1, 0, 0, 0, 3638, 3636, 1, 0, 0, 0, 3639, 3640, 5, 197, 0, 0, 3640, 3653, 5, 198, 0, 0, 3641, 3642, 5, 82, 0, 0, 3642, 3653, 3, 254, 127, 0, 3643, 3644, 5, 127, 0, 0, 3644, 3645, 5, 12, 0, 0, 3645, 3646, 5, 20, 0, 0, 3646, 3647, 5, 2, 0, 0, 3647, 3648, 3, 254, 127, 0, 3648, 3649, 5, 3, 0, 0, 3649, 3653, 1, 0, 0, 0, 3650, 3651, 5, 51, 0, 0, 3651, 3653, 3, 364, 182, 0, 3652, 3639, 1, 0, 0, 0, 3652, 3641, 1, 0, 0, 0, 3652, 3643, 1, 0, 0, 0, 3652, 3650, 1, 0, 0, 0, 3653, 327, 1, 0, 0, 0, 3654, 3656, 3, 354, 177, 0, 3655, 3657, 5, 371, 0, 0, 3656, 3655, 1, 0, 0, 0, 3656, 3657, 1, 0, 0, 0, 3657, 3658, 1, 0, 0, 0, 3658, 3661, 3, 304, 152, 0, 3659, 3660, 5, 197, 0, 0, 3660, 3662, 5, 198, 0, 0, 3661, 3659, 1, 0, 0, 0, 3661, 3662, 1, 0, 0, 0, 3662, 3665, 1, 0, 0, 0, 3663, 3664, 5, 51, 0, 0, 3664, 3666, 3, 364, 182, 0, 3665, 3663, 1, 0, 0, 0, 3665, 3666, 1, 0, 0, 0, 3666, 329, 1, 0, 0, 0, 3667, 3668, 5, 343, 0, 0, 3668, 3669, 3, 254, 127, 0, 3669, 3670, 5, 300, 0, 0, 3670, 3671, 3, 254, 127, 0, 3671, 331, 1, 0, 0, 0, 3672, 3673, 5, 345, 0, 0, 3673, 3674, 3, 350, 175, 0, 3674, 3675, 5, 20, 0, 0, 3675, 3683, 3, 336, 168, 0, 3676, 3677, 5, 4, 0, 0, 3677, 3678, 3, 350, 175, 0, 3678, 3679, 5, 20, 0, 0, 3679, 3680, 3, 336, 168, 0, 3680, 3682, 1, 0, 0, 0, 3681, 3676, 1, 0, 0, 0, 3682, 3685, 1, 0, 0, 0, 3683, 3681, 1, 0, 0, 0, 3683, 3684, 1, 0, 0, 0, 3684, 333, 1, 0, 0, 0, 3685, 3683, 1, 0, 0, 0, 3686, 3687, 5, 351, 0, 0, 3687, 3688, 5, 31, 0, 0, 3688, 3689, 3, 86, 43, 0, 3689, 335, 1, 0, 0, 0, 3690, 3730, 3, 350, 175, 0, 3691, 3692, 5, 2, 0, 0, 3692, 3693, 3, 350, 175, 0, 3693, 3694, 5, 3, 0, 0, 3694, 3730, 1, 0, 0, 0, 3695, 3723, 5, 2, 0, 0, 3696, 3697, 5, 44, 0, 0, 3697, 3698, 5, 31, 0, 0, 3698, 3703, 3, 254, 127, 0, 3699, 3700, 5, 4, 0, 0, 3700, 3702, 3, 254, 127, 0, 3701, 3699, 1, 0, 0, 0, 3702, 3705, 1, 0, 0, 0, 3703, 3701, 1, 0, 0, 0, 3703, 3704, 1, 0, 0, 0, 3704, 3724, 1, 0, 0, 0, 3705, 3703, 1, 0, 0, 0, 3706, 3707, 7, 35, 0, 0, 3707, 3708, 5, 31, 0, 0, 3708, 3713, 3, 254, 127, 0, 3709, 3710, 5, 4, 0, 0, 3710, 3712, 3, 254, 127, 0, 3711, 3709, 1, 0, 0, 0, 3712, 3715, 1, 0, 0, 0, 3713, 3711, 1, 0, 0, 0, 3713, 3714, 1, 0, 0, 0, 3714, 3717, 1, 0, 0, 0, 3715, 3713, 1, 0, 0, 0, 3716, 3706, 1, 0, 0, 0, 3716, 3717, 1, 0, 0, 0, 3717, 3721, 1, 0, 0, 0, 3718, 3719, 7, 36, 0, 0, 3719, 3720, 5, 31, 0, 0, 3720, 3722, 3, 96, 48, 0, 3721, 3718, 1, 0, 0, 0, 3721, 3722, 1, 0, 0, 0, 3722, 3724, 1, 0, 0, 0, 3723, 3696, 1, 0, 0, 0, 3723, 3716, 1, 0, 0, 0, 3724, 3726, 1, 0, 0, 0, 3725, 3727, 3, 338, 169, 0, 3726, 3725, 1, 0, 0, 0, 3726, 3727, 1, 0, 0, 0, 3727, 3728, 1, 0, 0, 0, 3728, 3730, 5, 3, 0, 0, 3729, 3690, 1, 0, 0, 0, 3729, 3691, 1, 0, 0, 0, 3729, 3695, 1, 0, 0, 0, 3730, 337, 1, 0, 0, 0, 3731, 3732, 7, 67, 0, 0, 3732, 3740, 3, 340, 170, 0, 3733, 3734, 7, 67, 0, 0, 3734, 3735, 5, 24, 0, 0, 3735, 3736, 3, 340, 170, 0, 3736, 3737, 5, 14, 0, 0, 3737, 3738, 3, 340, 170, 0, 3738, 3740, 1, 0, 0, 0, 3739, 3731, 1, 0, 0, 0, 3739, 3733, 1, 0, 0, 0, 3740, 339, 1, 0, 0, 0, 3741, 3742, 5, 321, 0, 0, 3742, 3749, 7, 68, 0, 0, 3743, 3744, 5, 62, 0, 0, 3744, 3749, 5, 257, 0, 0, 3745, 3746, 3, 254, 127, 0, 3746, 3747, 7, 68, 0, 0, 3747, 3749, 1, 0, 0, 0, 3748, 3741, 1, 0, 0, 0, 3748, 3743, 1, 0, 0, 0, 3748, 3745, 1, 0, 0, 0, 3749, 341, 1, 0, 0, 0, 3750, 3755, 3, 348, 174, 0, 3751, 3752, 5, 4, 0, 0, 3752, 3754, 3, 348, 174, 0, 3753, 3751, 1, 0, 0, 0, 3754, 3757, 1, 0, 0, 0, 3755, 3753, 1, 0, 0, 0, 3755, 3756, 1, 0, 0, 0, 3756, 343, 1, 0, 0, 0, 3757, 3755, 1, 0, 0, 0, 3758, 3759, 5, 136, 0, 0, 3759, 3760, 5, 2, 0, 0, 3760, 3761, 3, 254, 127, 0, 3761, 3762, 5, 3, 0, 0, 3762, 3768, 1, 0, 0, 0, 3763, 3768, 3, 348, 174, 0, 3764, 3768, 5, 114, 0, 0, 3765, 3768, 5, 161, 0, 0, 3766, 3768, 5, 250, 0, 0, 3767, 3758, 1, 0, 0, 0, 3767, 3763, 1, 0, 0, 0, 3767, 3764, 1, 0, 0, 0, 3767, 3765, 1, 0, 0, 0, 3767, 3766, 1, 0, 0, 0, 3768, 345, 1, 0, 0, 0, 3769, 3770, 3, 348, 174, 0, 3770, 347, 1, 0, 0, 0, 3771, 3776, 3, 354, 177, 0, 3772, 3773, 5, 5, 0, 0, 3773, 3775, 3, 354, 177, 0, 3774, 3772, 1, 0, 0, 0, 3775, 3778, 1, 0, 0, 0, 3776, 3774, 1, 0, 0, 0, 3776, 3777, 1, 0, 0, 0, 3777, 349, 1, 0, 0, 0, 3778, 3776, 1, 0, 0, 0, 3779, 3780, 3, 354, 177, 0, 3780, 3781, 3, 352, 176, 0, 3781, 351, 1, 0, 0, 0, 3782, 3783, 5, 362, 0, 0, 3783, 3785, 3, 354, 177, 0, 3784, 3782, 1, 0, 0, 0, 3785, 3786, 1, 0, 0, 0, 3786, 3784, 1, 0, 0, 0, 3786, 3787, 1, 0, 0, 0, 3787, 3790, 1, 0, 0, 0, 3788, 3790, 1, 0, 0, 0, 3789, 3784, 1, 0, 0, 0, 3789, 3788, 1, 0, 0, 0, 3790, 353, 1, 0, 0, 0, 3791, 3794, 3, 356, 178, 0, 3792, 3794, 3, 368, 184, 0, 3793, 3791, 1, 0, 0, 0, 3793, 3792, 1, 0, 0, 0, 3794, 355, 1, 0, 0, 0, 3795, 3800, 5, 388, 0, 0, 3796, 3800, 3, 358, 179, 0, 3797, 3800, 3, 366, 183, 0, 3798, 3800, 3, 370, 185, 0, 3799, 3795, 1, 0, 0, 0, 3799, 3796, 1, 0, 0, 0, 3799, 3797, 1, 0, 0, 0, 3799, 3798, 1, 0, 0, 0, 3800, 357, 1, 0, 0, 0, 3801, 3802, 7, 69, 0, 0, 3802, 359, 1, 0, 0, 0, 3803, 3805, 5, 362, 0, 0, 3804, 3803, 1, 0, 0, 0, 3804, 3805, 1, 0, 0, 0, 3805, 3806, 1, 0, 0, 0, 3806, 3807, 7, 70, 0, 0, 3807, 361, 1, 0, 0, 0, 3808, 3809, 5, 319, 0, 0, 3809, 3822, 3, 304, 152, 0, 3810, 3811, 5, 51, 0, 0, 3811, 3822, 3, 364, 182, 0, 3812, 3822, 3, 300, 150, 0, 3813, 3814, 7, 71, 0, 0, 3814, 3815, 5, 197, 0, 0, 3815, 3822, 5, 198, 0, 0, 3816, 3817, 5, 269, 0, 0, 3817, 3818, 5, 82, 0, 0, 3818, 3822, 3, 254, 127, 0, 3819, 3820, 5, 96, 0, 0, 3820, 3822, 5, 82, 0, 0, 3821, 3808, 1, 0, 0, 0, 3821, 3810, 1, 0, 0, 0, 3821, 3812, 1, 0, 0, 0, 3821, 3813, 1, 0, 0, 0, 3821, 3816, 1, 0, 0, 0, 3821, 3819, 1, 0, 0, 0, 3822, 363, 1, 0, 0, 0, 3823, 3824, 7, 72, 0, 0, 3824, 365, 1, 0, 0, 0, 3825, 3826, 7, 73, 0, 0, 3826, 367, 1, 0, 0, 0, 3827, 3828, 7, 74, 0, 0, 3828, 369, 1, 0, 0, 0, 3829, 3830, 7, 75, 0, 0, 3830, 371, 1, 0, 0, 0, 510, 375, 382, 386, 391, 398, 403, 413, 415, 435, 439, 445, 448, 451, 455, 458, 462, 469, 472, 476, 479, 484, 497, 499, 504, 513, 516, 520, 523, 529, 540, 546, 551, 584, 594, 605, 616, 627, 632, 641, 645, 651, 655, 660, 666, 678, 686, 692, 703, 707, 712, 727, 731, 738, 742, 748, 778, 782, 787, 794, 800, 803, 806, 810, 814, 823, 825, 834, 837, 846, 851, 857, 864, 867, 871, 886, 889, 895, 899, 916, 918, 926, 930, 936, 939, 943, 946, 952, 957, 961, 968, 971, 974, 981, 986, 995, 1003, 1009, 1012, 1015, 1021, 1025, 1030, 1033, 1037, 1039, 1047, 1055, 1058, 1065, 1068, 1071, 1080, 1085, 1091, 1096, 1099, 1103, 1106, 1110, 1120, 1125, 1138, 1141, 1149, 1155, 1158, 1161, 1166, 1174, 1179, 1185, 1191, 1194, 1201, 1208, 1216, 1228, 1236, 1263, 1266, 1272, 1281, 1290, 1296, 1301, 1306, 1313, 1318, 1323, 1330, 1338, 1341, 1347, 1354, 1358, 1421, 1429, 1436, 1444, 1456, 1461, 1470, 1478, 1483, 1485, 1493, 1498, 1502, 1505, 1513, 1518, 1527, 1532, 1535, 1540, 1544, 1549, 1551, 1556, 1565, 1573, 1579, 1588, 1595, 1604, 1609, 1612, 1637, 1639, 1651, 1658, 1661, 1668, 1672, 1678, 1686, 1693, 1696, 1704, 1715, 1726, 1734, 1740, 1751, 1758, 1765, 1777, 1785, 1791, 1797, 1800, 1819, 1826, 1833, 1844, 1849, 1854, 1859, 1864, 1867, 1870, 1874, 1879, 1886, 1894, 1903, 1909, 1915, 1918, 1920, 1928, 1938, 1947, 1951, 1954, 1958, 1962, 1970, 1974, 1977, 1980, 1983, 1987, 1991, 1996, 2000, 2003, 2006, 2009, 2013, 2018, 2022, 2025, 2028, 2031, 2033, 2039, 2046, 2051, 2054, 2057, 2061, 2071, 2075, 2077, 2080, 2084, 2090, 2094, 2105, 2113, 2115, 2122, 2126, 2138, 2145, 2160, 2165, 2172, 2188, 2193, 2206, 2211, 2219, 2225, 2229, 2232, 2235, 2242, 2245, 2251, 2260, 2270, 2285, 2290, 2292, 2297, 2306, 2316, 2321, 2325, 2330, 2337, 2342, 2346, 2349, 2352, 2366, 2379, 2384, 2388, 2391, 2396, 2401, 2405, 2408, 2420, 2431, 2444, 2455, 2460, 2463, 2467, 2470, 2482, 2491, 2494, 2499, 2506, 2509, 2515, 2521, 2523, 2526, 2531, 2535, 2541, 2545, 2548, 2553, 2556, 2561, 2563, 2570, 2572, 2576, 2581, 2588, 2591, 2609, 2611, 2614, 2625, 2634, 2641, 2649, 2657, 2662, 2665, 2668, 2674, 2682, 2690, 2702, 2708, 2715, 2722, 2724, 2737, 2743, 2745, 2754, 2756, 2764, 2768, 2780, 2783, 2788, 2792, 2794, 2803, 2815, 2817, 2824, 2831, 2837, 2843, 2845, 2852, 2860, 2869, 2876, 2882, 2887, 2894, 2907, 2915, 2918, 2922, 2924, 2928, 2935, 2946, 2953, 2963, 2968, 2972, 2982, 2989, 3002, 3004, 3012, 3014, 3018, 3026, 3035, 3041, 3049, 3054, 3066, 3071, 3074, 3080, 3084, 3089, 3094, 3099, 3105, 3126, 3128, 3139, 3151, 3163, 3167, 3176, 3180, 3198, 3201, 3209, 3218, 3227, 3250, 3266, 3273, 3276, 3285, 3289, 3293, 3305, 3330, 3337, 3340, 3355, 3376, 3380, 3382, 3392, 3394, 3404, 3419, 3421, 3434, 3438, 3445, 3450, 3458, 3463, 3472, 3504, 3525, 3528, 3532, 3538, 3544, 3553, 3557, 3559, 3566, 3574, 3582, 3590, 3600, 3610, 3617, 3621, 3628, 3636, 3652, 3656, 3661, 3665, 3683, 3703, 3713, 3716, 3721, 3723, 3726, 3729, 3739, 3748, 3755, 3767, 3776, 3786, 3789, 3793, 3799, 3804, 3821] \ No newline at end of file diff --git a/src/lib/spark/SparkSqlParser.ts b/src/lib/spark/SparkSqlParser.ts index 1e8fba532..997f14fea 100644 --- a/src/lib/spark/SparkSqlParser.ts +++ b/src/lib/spark/SparkSqlParser.ts @@ -13402,408 +13402,425 @@ export class SparkSqlParser extends SQLParserBase { let localContext = new NamedExpressionContext(this.context, this.state); this.enterRule(localContext, 240, SparkSqlParser.RULE_namedExpression); try { - this.enterOuterAlt(localContext, 1); - { - this.state = 2915; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 396, this.context) ) { - case 1: - { - this.state = 2912; - this.tableAllColumns(); - } - break; - case 2: - { - this.state = 2913; - this.selectLiteralColumnName(); - } - break; - case 3: - { - this.state = 2914; - this.selectExpressionColumnName(); - } - break; - } - this.state = 2924; + this.state = 2928; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 399, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 400, this.context) ) { case 1: + this.enterOuterAlt(localContext, 1); { - this.state = 2918; + this.state = 2915; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 397, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 396, this.context) ) { case 1: { - this.state = 2917; - this.match(SparkSqlParser.KW_AS); + this.state = 2912; + this.tableAllColumns(); } break; - } - this.state = 2922; - this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case SparkSqlParser.KW_ADD: - case SparkSqlParser.KW_AFTER: - case SparkSqlParser.KW_ALL: - case SparkSqlParser.KW_ALTER: - case SparkSqlParser.KW_ALWAYS: - case SparkSqlParser.KW_ANALYZE: - case SparkSqlParser.KW_AND: - case SparkSqlParser.KW_ANTI: - case SparkSqlParser.KW_ANY: - case SparkSqlParser.KW_ANY_VALUE: - case SparkSqlParser.KW_ARCHIVE: - case SparkSqlParser.KW_ARRAY: - case SparkSqlParser.KW_AS: - case SparkSqlParser.KW_ASC: - case SparkSqlParser.KW_AT: - case SparkSqlParser.KW_AUTHORIZATION: - case SparkSqlParser.KW_BETWEEN: - case SparkSqlParser.KW_BIGINT: - case SparkSqlParser.KW_BINARY: - case SparkSqlParser.KW_BOOLEAN: - case SparkSqlParser.KW_BOTH: - case SparkSqlParser.KW_BUCKET: - case SparkSqlParser.KW_BUCKETS: - case SparkSqlParser.KW_BY: - case SparkSqlParser.KW_BYTE: - case SparkSqlParser.KW_CACHE: - case SparkSqlParser.KW_CASCADE: - case SparkSqlParser.KW_CASE: - case SparkSqlParser.KW_CAST: - case SparkSqlParser.KW_CATALOG: - case SparkSqlParser.KW_CATALOGS: - case SparkSqlParser.KW_CHANGE: - case SparkSqlParser.KW_CHAR: - case SparkSqlParser.KW_CHARACTER: - case SparkSqlParser.KW_CHECK: - case SparkSqlParser.KW_CLEAR: - case SparkSqlParser.KW_CLUSTER: - case SparkSqlParser.KW_CLUSTERED: - case SparkSqlParser.KW_CODEGEN: - case SparkSqlParser.KW_COLLATE: - case SparkSqlParser.KW_COLLECTION: - case SparkSqlParser.KW_COLUMN: - case SparkSqlParser.KW_COLUMNS: - case SparkSqlParser.KW_COMMENT: - case SparkSqlParser.KW_COMMIT: - case SparkSqlParser.KW_COMPACT: - case SparkSqlParser.KW_COMPACTIONS: - case SparkSqlParser.KW_COMPUTE: - case SparkSqlParser.KW_CONCATENATE: - case SparkSqlParser.KW_CONSTRAINT: - case SparkSqlParser.KW_COST: - case SparkSqlParser.KW_CREATE: - case SparkSqlParser.KW_CROSS: - case SparkSqlParser.KW_CUBE: - case SparkSqlParser.KW_CURRENT: - case SparkSqlParser.KW_CURRENT_DATE: - case SparkSqlParser.KW_CURRENT_TIME: - case SparkSqlParser.KW_CURRENT_TIMESTAMP: - case SparkSqlParser.KW_CURRENT_USER: - case SparkSqlParser.KW_DAY: - case SparkSqlParser.KW_DAYS: - case SparkSqlParser.KW_DAYOFYEAR: - case SparkSqlParser.KW_DATA: - case SparkSqlParser.KW_DATE: - case SparkSqlParser.KW_DATABASE: - case SparkSqlParser.KW_DATABASES: - case SparkSqlParser.KW_DATEADD: - case SparkSqlParser.KW_DATE_ADD: - case SparkSqlParser.KW_DATEDIFF: - case SparkSqlParser.KW_DATE_DIFF: - case SparkSqlParser.KW_DBPROPERTIES: - case SparkSqlParser.KW_DEC: - case SparkSqlParser.KW_DECIMAL: - case SparkSqlParser.KW_DECLARE: - case SparkSqlParser.KW_DEFAULT: - case SparkSqlParser.KW_DEFINED: - case SparkSqlParser.KW_DELETE: - case SparkSqlParser.KW_DELIMITED: - case SparkSqlParser.KW_DESC: - case SparkSqlParser.KW_DESCRIBE: - case SparkSqlParser.KW_DFS: - case SparkSqlParser.KW_DIRECTORIES: - case SparkSqlParser.KW_DIRECTORY: - case SparkSqlParser.KW_DISABLE: - case SparkSqlParser.KW_DISTINCT: - case SparkSqlParser.KW_DISTRIBUTE: - case SparkSqlParser.KW_DIV: - case SparkSqlParser.KW_DOUBLE: - case SparkSqlParser.KW_DROP: - case SparkSqlParser.KW_ELSE: - case SparkSqlParser.KW_ENABLE: - case SparkSqlParser.KW_END: - case SparkSqlParser.KW_ESCAPE: - case SparkSqlParser.KW_ESCAPED: - case SparkSqlParser.KW_EXCEPT: - case SparkSqlParser.KW_EXCHANGE: - case SparkSqlParser.KW_EXCLUDE: - case SparkSqlParser.KW_EXISTS: - case SparkSqlParser.KW_EXPLAIN: - case SparkSqlParser.KW_EXPORT: - case SparkSqlParser.KW_EXTENDED: - case SparkSqlParser.KW_EXTERNAL: - case SparkSqlParser.KW_EXTRACT: - case SparkSqlParser.KW_FALSE: - case SparkSqlParser.KW_FETCH: - case SparkSqlParser.KW_FIELDS: - case SparkSqlParser.KW_FILTER: - case SparkSqlParser.KW_FILEFORMAT: - case SparkSqlParser.KW_FIRST: - case SparkSqlParser.KW_FLOAT: - case SparkSqlParser.KW_FOLLOWING: - case SparkSqlParser.KW_FOR: - case SparkSqlParser.KW_FOREIGN: - case SparkSqlParser.KW_FORMAT: - case SparkSqlParser.KW_FORMATTED: - case SparkSqlParser.KW_FULL: - case SparkSqlParser.KW_FUNCTION: - case SparkSqlParser.KW_FUNCTIONS: - case SparkSqlParser.KW_GENERATED: - case SparkSqlParser.KW_GLOBAL: - case SparkSqlParser.KW_GRANT: - case SparkSqlParser.KW_GROUP: - case SparkSqlParser.KW_GROUPING: - case SparkSqlParser.KW_HAVING: - case SparkSqlParser.KW_BINARY_HEX: - case SparkSqlParser.KW_HOUR: - case SparkSqlParser.KW_HOURS: - case SparkSqlParser.KW_IDENTIFIER: - case SparkSqlParser.KW_IF: - case SparkSqlParser.KW_IGNORE: - case SparkSqlParser.KW_IMPORT: - case SparkSqlParser.KW_IN: - case SparkSqlParser.KW_INCLUDE: - case SparkSqlParser.KW_INDEX: - case SparkSqlParser.KW_INDEXES: - case SparkSqlParser.KW_INNER: - case SparkSqlParser.KW_INPATH: - case SparkSqlParser.KW_INPUTFORMAT: - case SparkSqlParser.KW_INSERT: - case SparkSqlParser.KW_INTERSECT: - case SparkSqlParser.KW_INTERVAL: - case SparkSqlParser.KW_INT: - case SparkSqlParser.KW_INTEGER: - case SparkSqlParser.KW_INTO: - case SparkSqlParser.KW_IS: - case SparkSqlParser.KW_ITEMS: - case SparkSqlParser.KW_JOIN: - case SparkSqlParser.KW_KEYS: - case SparkSqlParser.KW_LAST: - case SparkSqlParser.KW_LATERAL: - case SparkSqlParser.KW_LAZY: - case SparkSqlParser.KW_LEADING: - case SparkSqlParser.KW_LEFT: - case SparkSqlParser.KW_LIFECYCLE: - case SparkSqlParser.KW_LIKE: - case SparkSqlParser.KW_ILIKE: - case SparkSqlParser.KW_LIMIT: - case SparkSqlParser.KW_LINES: - case SparkSqlParser.KW_LIST: - case SparkSqlParser.KW_LOAD: - case SparkSqlParser.KW_LOCAL: - case SparkSqlParser.KW_LOCATION: - case SparkSqlParser.KW_LOCK: - case SparkSqlParser.KW_LOCKS: - case SparkSqlParser.KW_LOGICAL: - case SparkSqlParser.KW_LONG: - case SparkSqlParser.KW_MACRO: - case SparkSqlParser.KW_MATERIALIZED: - case SparkSqlParser.KW_MAP: - case SparkSqlParser.KW_MATCHED: - case SparkSqlParser.KW_MERGE: - case SparkSqlParser.KW_MICROSECOND: - case SparkSqlParser.KW_MICROSECONDS: - case SparkSqlParser.KW_MILLISECOND: - case SparkSqlParser.KW_MILLISECONDS: - case SparkSqlParser.KW_MINUTE: - case SparkSqlParser.KW_MINUTES: - case SparkSqlParser.KW_MONTH: - case SparkSqlParser.KW_MONTHS: - case SparkSqlParser.KW_MSCK: - case SparkSqlParser.KW_NAME: - case SparkSqlParser.KW_NAMESPACE: - case SparkSqlParser.KW_NAMESPACES: - case SparkSqlParser.KW_NANOSECOND: - case SparkSqlParser.KW_NANOSECONDS: - case SparkSqlParser.KW_NATURAL: - case SparkSqlParser.KW_NO: - case SparkSqlParser.KW_NOT: - case SparkSqlParser.KW_NULL: - case SparkSqlParser.KW_NULLS: - case SparkSqlParser.KW_NUMERIC: - case SparkSqlParser.KW_OF: - case SparkSqlParser.KW_OFFSET: - case SparkSqlParser.KW_ON: - case SparkSqlParser.KW_ONLY: - case SparkSqlParser.KW_OPTIMIZE: - case SparkSqlParser.KW_OPTION: - case SparkSqlParser.KW_OPTIONS: - case SparkSqlParser.KW_OR: - case SparkSqlParser.KW_ORDER: - case SparkSqlParser.KW_OUT: - case SparkSqlParser.KW_OUTER: - case SparkSqlParser.KW_OUTPUTFORMAT: - case SparkSqlParser.KW_OVER: - case SparkSqlParser.KW_OVERLAPS: - case SparkSqlParser.KW_OVERLAY: - case SparkSqlParser.KW_OVERWRITE: - case SparkSqlParser.KW_PARTITION: - case SparkSqlParser.KW_PARTITIONED: - case SparkSqlParser.KW_PARTITIONS: - case SparkSqlParser.KW_PERCENTILE_CONT: - case SparkSqlParser.KW_PERCENTILE_DISC: - case SparkSqlParser.KW_PERCENTLIT: - case SparkSqlParser.KW_PIVOT: - case SparkSqlParser.KW_PLACING: - case SparkSqlParser.KW_POSITION: - case SparkSqlParser.KW_PRECEDING: - case SparkSqlParser.KW_PRIMARY: - case SparkSqlParser.KW_PRINCIPALS: - case SparkSqlParser.KW_PROPERTIES: - case SparkSqlParser.KW_PURGE: - case SparkSqlParser.KW_QUARTER: - case SparkSqlParser.KW_QUERY: - case SparkSqlParser.KW_RANGE: - case SparkSqlParser.KW_REAL: - case SparkSqlParser.KW_RECORDREADER: - case SparkSqlParser.KW_RECORDWRITER: - case SparkSqlParser.KW_RECOVER: - case SparkSqlParser.KW_REDUCE: - case SparkSqlParser.KW_REFERENCES: - case SparkSqlParser.KW_REFRESH: - case SparkSqlParser.KW_RENAME: - case SparkSqlParser.KW_REPAIR: - case SparkSqlParser.KW_REPEATABLE: - case SparkSqlParser.KW_REPLACE: - case SparkSqlParser.KW_RESET: - case SparkSqlParser.KW_RESPECT: - case SparkSqlParser.KW_RESTRICT: - case SparkSqlParser.KW_REWRITE: - case SparkSqlParser.KW_REVOKE: - case SparkSqlParser.KW_RIGHT: - case SparkSqlParser.KW_RLIKE: - case SparkSqlParser.KW_REGEXP: - case SparkSqlParser.KW_ROLE: - case SparkSqlParser.KW_ROLES: - case SparkSqlParser.KW_ROLLBACK: - case SparkSqlParser.KW_ROLLUP: - case SparkSqlParser.KW_ROW: - case SparkSqlParser.KW_ROWS: - case SparkSqlParser.KW_SECOND: - case SparkSqlParser.KW_SECONDS: - case SparkSqlParser.KW_SCHEMA: - case SparkSqlParser.KW_SCHEMAS: - case SparkSqlParser.KW_SEMI: - case SparkSqlParser.KW_SEPARATED: - case SparkSqlParser.KW_SERDE: - case SparkSqlParser.KW_SERDEPROPERTIES: - case SparkSqlParser.KW_SESSION_USER: - case SparkSqlParser.KW_SET: - case SparkSqlParser.KW_MINUS: - case SparkSqlParser.KW_SETS: - case SparkSqlParser.KW_SHORT: - case SparkSqlParser.KW_SHOW: - case SparkSqlParser.KW_SINGLE: - case SparkSqlParser.KW_SKEWED: - case SparkSqlParser.KW_SMALLINT: - case SparkSqlParser.KW_SOME: - case SparkSqlParser.KW_SORT: - case SparkSqlParser.KW_SORTED: - case SparkSqlParser.KW_SOURCE: - case SparkSqlParser.KW_START: - case SparkSqlParser.KW_STATISTICS: - case SparkSqlParser.KW_STORED: - case SparkSqlParser.KW_STRATIFY: - case SparkSqlParser.KW_STRING: - case SparkSqlParser.KW_STRUCT: - case SparkSqlParser.KW_SUBSTR: - case SparkSqlParser.KW_SUBSTRING: - case SparkSqlParser.KW_SYNC: - case SparkSqlParser.KW_SYSTEM: - case SparkSqlParser.KW_SYSTEM_TIME: - case SparkSqlParser.KW_SYSTEM_VERSION: - case SparkSqlParser.KW_TABLES: - case SparkSqlParser.KW_TABLESAMPLE: - case SparkSqlParser.KW_TARGET: - case SparkSqlParser.KW_TBLPROPERTIES: - case SparkSqlParser.KW_TEMPORARY: - case SparkSqlParser.KW_TERMINATED: - case SparkSqlParser.KW_THEN: - case SparkSqlParser.KW_TIME: - case SparkSqlParser.KW_TIMEDIFF: - case SparkSqlParser.KW_TIMESTAMP: - case SparkSqlParser.KW_TIMESTAMP_LTZ: - case SparkSqlParser.KW_TIMESTAMP_NTZ: - case SparkSqlParser.KW_TIMESTAMPADD: - case SparkSqlParser.KW_TIMESTAMPDIFF: - case SparkSqlParser.KW_TINYINT: - case SparkSqlParser.KW_TO: - case SparkSqlParser.KW_TOUCH: - case SparkSqlParser.KW_TRAILING: - case SparkSqlParser.KW_TRANSACTION: - case SparkSqlParser.KW_TRANSACTIONS: - case SparkSqlParser.KW_TRANSFORM: - case SparkSqlParser.KW_TRIM: - case SparkSqlParser.KW_TRUE: - case SparkSqlParser.KW_TRUNCATE: - case SparkSqlParser.KW_TRY_CAST: - case SparkSqlParser.KW_TYPE: - case SparkSqlParser.KW_UNARCHIVE: - case SparkSqlParser.KW_UNBOUNDED: - case SparkSqlParser.KW_UNCACHE: - case SparkSqlParser.KW_UNION: - case SparkSqlParser.KW_UNIQUE: - case SparkSqlParser.KW_UNKNOWN: - case SparkSqlParser.KW_UNLOCK: - case SparkSqlParser.KW_UNPIVOT: - case SparkSqlParser.KW_UNSET: - case SparkSqlParser.KW_UPDATE: - case SparkSqlParser.KW_USE: - case SparkSqlParser.KW_USER: - case SparkSqlParser.KW_USING: - case SparkSqlParser.KW_VALUES: - case SparkSqlParser.KW_VARCHAR: - case SparkSqlParser.KW_VAR: - case SparkSqlParser.KW_VARIABLE: - case SparkSqlParser.KW_VERSION: - case SparkSqlParser.KW_VIEW: - case SparkSqlParser.KW_VIEWS: - case SparkSqlParser.KW_VOID: - case SparkSqlParser.KW_WEEK: - case SparkSqlParser.KW_WEEKS: - case SparkSqlParser.KW_WHEN: - case SparkSqlParser.KW_WHERE: - case SparkSqlParser.KW_WINDOW: - case SparkSqlParser.KW_WITH: - case SparkSqlParser.KW_WITHIN: - case SparkSqlParser.KW_YEAR: - case SparkSqlParser.KW_YEARS: - case SparkSqlParser.KW_ZONE: - case SparkSqlParser.KW_ZORDER: - case SparkSqlParser.DOUBLEQUOTED_STRING: - case SparkSqlParser.IDENTIFIER: - case SparkSqlParser.BACKQUOTED_IDENTIFIER: + case 2: { - this.state = 2920; - localContext._alias = this.errorCapturingIdentifier(); + this.state = 2913; + this.selectLiteralColumnName(); } break; - case SparkSqlParser.LEFT_PAREN: + case 3: { - this.state = 2921; - this.identifierList(); + this.state = 2914; + this.selectExpressionColumnName(); + } + break; + } + this.state = 2924; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 399, this.context) ) { + case 1: + { + this.state = 2918; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 397, this.context) ) { + case 1: + { + this.state = 2917; + this.match(SparkSqlParser.KW_AS); + } + break; + } + this.state = 2922; + this.errorHandler.sync(this); + switch (this.tokenStream.LA(1)) { + case SparkSqlParser.KW_ADD: + case SparkSqlParser.KW_AFTER: + case SparkSqlParser.KW_ALL: + case SparkSqlParser.KW_ALTER: + case SparkSqlParser.KW_ALWAYS: + case SparkSqlParser.KW_ANALYZE: + case SparkSqlParser.KW_AND: + case SparkSqlParser.KW_ANTI: + case SparkSqlParser.KW_ANY: + case SparkSqlParser.KW_ANY_VALUE: + case SparkSqlParser.KW_ARCHIVE: + case SparkSqlParser.KW_ARRAY: + case SparkSqlParser.KW_AS: + case SparkSqlParser.KW_ASC: + case SparkSqlParser.KW_AT: + case SparkSqlParser.KW_AUTHORIZATION: + case SparkSqlParser.KW_BETWEEN: + case SparkSqlParser.KW_BIGINT: + case SparkSqlParser.KW_BINARY: + case SparkSqlParser.KW_BOOLEAN: + case SparkSqlParser.KW_BOTH: + case SparkSqlParser.KW_BUCKET: + case SparkSqlParser.KW_BUCKETS: + case SparkSqlParser.KW_BY: + case SparkSqlParser.KW_BYTE: + case SparkSqlParser.KW_CACHE: + case SparkSqlParser.KW_CASCADE: + case SparkSqlParser.KW_CASE: + case SparkSqlParser.KW_CAST: + case SparkSqlParser.KW_CATALOG: + case SparkSqlParser.KW_CATALOGS: + case SparkSqlParser.KW_CHANGE: + case SparkSqlParser.KW_CHAR: + case SparkSqlParser.KW_CHARACTER: + case SparkSqlParser.KW_CHECK: + case SparkSqlParser.KW_CLEAR: + case SparkSqlParser.KW_CLUSTER: + case SparkSqlParser.KW_CLUSTERED: + case SparkSqlParser.KW_CODEGEN: + case SparkSqlParser.KW_COLLATE: + case SparkSqlParser.KW_COLLECTION: + case SparkSqlParser.KW_COLUMN: + case SparkSqlParser.KW_COLUMNS: + case SparkSqlParser.KW_COMMENT: + case SparkSqlParser.KW_COMMIT: + case SparkSqlParser.KW_COMPACT: + case SparkSqlParser.KW_COMPACTIONS: + case SparkSqlParser.KW_COMPUTE: + case SparkSqlParser.KW_CONCATENATE: + case SparkSqlParser.KW_CONSTRAINT: + case SparkSqlParser.KW_COST: + case SparkSqlParser.KW_CREATE: + case SparkSqlParser.KW_CROSS: + case SparkSqlParser.KW_CUBE: + case SparkSqlParser.KW_CURRENT: + case SparkSqlParser.KW_CURRENT_DATE: + case SparkSqlParser.KW_CURRENT_TIME: + case SparkSqlParser.KW_CURRENT_TIMESTAMP: + case SparkSqlParser.KW_CURRENT_USER: + case SparkSqlParser.KW_DAY: + case SparkSqlParser.KW_DAYS: + case SparkSqlParser.KW_DAYOFYEAR: + case SparkSqlParser.KW_DATA: + case SparkSqlParser.KW_DATE: + case SparkSqlParser.KW_DATABASE: + case SparkSqlParser.KW_DATABASES: + case SparkSqlParser.KW_DATEADD: + case SparkSqlParser.KW_DATE_ADD: + case SparkSqlParser.KW_DATEDIFF: + case SparkSqlParser.KW_DATE_DIFF: + case SparkSqlParser.KW_DBPROPERTIES: + case SparkSqlParser.KW_DEC: + case SparkSqlParser.KW_DECIMAL: + case SparkSqlParser.KW_DECLARE: + case SparkSqlParser.KW_DEFAULT: + case SparkSqlParser.KW_DEFINED: + case SparkSqlParser.KW_DELETE: + case SparkSqlParser.KW_DELIMITED: + case SparkSqlParser.KW_DESC: + case SparkSqlParser.KW_DESCRIBE: + case SparkSqlParser.KW_DFS: + case SparkSqlParser.KW_DIRECTORIES: + case SparkSqlParser.KW_DIRECTORY: + case SparkSqlParser.KW_DISABLE: + case SparkSqlParser.KW_DISTINCT: + case SparkSqlParser.KW_DISTRIBUTE: + case SparkSqlParser.KW_DIV: + case SparkSqlParser.KW_DOUBLE: + case SparkSqlParser.KW_DROP: + case SparkSqlParser.KW_ELSE: + case SparkSqlParser.KW_ENABLE: + case SparkSqlParser.KW_END: + case SparkSqlParser.KW_ESCAPE: + case SparkSqlParser.KW_ESCAPED: + case SparkSqlParser.KW_EXCEPT: + case SparkSqlParser.KW_EXCHANGE: + case SparkSqlParser.KW_EXCLUDE: + case SparkSqlParser.KW_EXISTS: + case SparkSqlParser.KW_EXPLAIN: + case SparkSqlParser.KW_EXPORT: + case SparkSqlParser.KW_EXTENDED: + case SparkSqlParser.KW_EXTERNAL: + case SparkSqlParser.KW_EXTRACT: + case SparkSqlParser.KW_FALSE: + case SparkSqlParser.KW_FETCH: + case SparkSqlParser.KW_FIELDS: + case SparkSqlParser.KW_FILTER: + case SparkSqlParser.KW_FILEFORMAT: + case SparkSqlParser.KW_FIRST: + case SparkSqlParser.KW_FLOAT: + case SparkSqlParser.KW_FOLLOWING: + case SparkSqlParser.KW_FOR: + case SparkSqlParser.KW_FOREIGN: + case SparkSqlParser.KW_FORMAT: + case SparkSqlParser.KW_FORMATTED: + case SparkSqlParser.KW_FULL: + case SparkSqlParser.KW_FUNCTION: + case SparkSqlParser.KW_FUNCTIONS: + case SparkSqlParser.KW_GENERATED: + case SparkSqlParser.KW_GLOBAL: + case SparkSqlParser.KW_GRANT: + case SparkSqlParser.KW_GROUP: + case SparkSqlParser.KW_GROUPING: + case SparkSqlParser.KW_HAVING: + case SparkSqlParser.KW_BINARY_HEX: + case SparkSqlParser.KW_HOUR: + case SparkSqlParser.KW_HOURS: + case SparkSqlParser.KW_IDENTIFIER: + case SparkSqlParser.KW_IF: + case SparkSqlParser.KW_IGNORE: + case SparkSqlParser.KW_IMPORT: + case SparkSqlParser.KW_IN: + case SparkSqlParser.KW_INCLUDE: + case SparkSqlParser.KW_INDEX: + case SparkSqlParser.KW_INDEXES: + case SparkSqlParser.KW_INNER: + case SparkSqlParser.KW_INPATH: + case SparkSqlParser.KW_INPUTFORMAT: + case SparkSqlParser.KW_INSERT: + case SparkSqlParser.KW_INTERSECT: + case SparkSqlParser.KW_INTERVAL: + case SparkSqlParser.KW_INT: + case SparkSqlParser.KW_INTEGER: + case SparkSqlParser.KW_INTO: + case SparkSqlParser.KW_IS: + case SparkSqlParser.KW_ITEMS: + case SparkSqlParser.KW_JOIN: + case SparkSqlParser.KW_KEYS: + case SparkSqlParser.KW_LAST: + case SparkSqlParser.KW_LATERAL: + case SparkSqlParser.KW_LAZY: + case SparkSqlParser.KW_LEADING: + case SparkSqlParser.KW_LEFT: + case SparkSqlParser.KW_LIFECYCLE: + case SparkSqlParser.KW_LIKE: + case SparkSqlParser.KW_ILIKE: + case SparkSqlParser.KW_LIMIT: + case SparkSqlParser.KW_LINES: + case SparkSqlParser.KW_LIST: + case SparkSqlParser.KW_LOAD: + case SparkSqlParser.KW_LOCAL: + case SparkSqlParser.KW_LOCATION: + case SparkSqlParser.KW_LOCK: + case SparkSqlParser.KW_LOCKS: + case SparkSqlParser.KW_LOGICAL: + case SparkSqlParser.KW_LONG: + case SparkSqlParser.KW_MACRO: + case SparkSqlParser.KW_MATERIALIZED: + case SparkSqlParser.KW_MAP: + case SparkSqlParser.KW_MATCHED: + case SparkSqlParser.KW_MERGE: + case SparkSqlParser.KW_MICROSECOND: + case SparkSqlParser.KW_MICROSECONDS: + case SparkSqlParser.KW_MILLISECOND: + case SparkSqlParser.KW_MILLISECONDS: + case SparkSqlParser.KW_MINUTE: + case SparkSqlParser.KW_MINUTES: + case SparkSqlParser.KW_MONTH: + case SparkSqlParser.KW_MONTHS: + case SparkSqlParser.KW_MSCK: + case SparkSqlParser.KW_NAME: + case SparkSqlParser.KW_NAMESPACE: + case SparkSqlParser.KW_NAMESPACES: + case SparkSqlParser.KW_NANOSECOND: + case SparkSqlParser.KW_NANOSECONDS: + case SparkSqlParser.KW_NATURAL: + case SparkSqlParser.KW_NO: + case SparkSqlParser.KW_NOT: + case SparkSqlParser.KW_NULL: + case SparkSqlParser.KW_NULLS: + case SparkSqlParser.KW_NUMERIC: + case SparkSqlParser.KW_OF: + case SparkSqlParser.KW_OFFSET: + case SparkSqlParser.KW_ON: + case SparkSqlParser.KW_ONLY: + case SparkSqlParser.KW_OPTIMIZE: + case SparkSqlParser.KW_OPTION: + case SparkSqlParser.KW_OPTIONS: + case SparkSqlParser.KW_OR: + case SparkSqlParser.KW_ORDER: + case SparkSqlParser.KW_OUT: + case SparkSqlParser.KW_OUTER: + case SparkSqlParser.KW_OUTPUTFORMAT: + case SparkSqlParser.KW_OVER: + case SparkSqlParser.KW_OVERLAPS: + case SparkSqlParser.KW_OVERLAY: + case SparkSqlParser.KW_OVERWRITE: + case SparkSqlParser.KW_PARTITION: + case SparkSqlParser.KW_PARTITIONED: + case SparkSqlParser.KW_PARTITIONS: + case SparkSqlParser.KW_PERCENTILE_CONT: + case SparkSqlParser.KW_PERCENTILE_DISC: + case SparkSqlParser.KW_PERCENTLIT: + case SparkSqlParser.KW_PIVOT: + case SparkSqlParser.KW_PLACING: + case SparkSqlParser.KW_POSITION: + case SparkSqlParser.KW_PRECEDING: + case SparkSqlParser.KW_PRIMARY: + case SparkSqlParser.KW_PRINCIPALS: + case SparkSqlParser.KW_PROPERTIES: + case SparkSqlParser.KW_PURGE: + case SparkSqlParser.KW_QUARTER: + case SparkSqlParser.KW_QUERY: + case SparkSqlParser.KW_RANGE: + case SparkSqlParser.KW_REAL: + case SparkSqlParser.KW_RECORDREADER: + case SparkSqlParser.KW_RECORDWRITER: + case SparkSqlParser.KW_RECOVER: + case SparkSqlParser.KW_REDUCE: + case SparkSqlParser.KW_REFERENCES: + case SparkSqlParser.KW_REFRESH: + case SparkSqlParser.KW_RENAME: + case SparkSqlParser.KW_REPAIR: + case SparkSqlParser.KW_REPEATABLE: + case SparkSqlParser.KW_REPLACE: + case SparkSqlParser.KW_RESET: + case SparkSqlParser.KW_RESPECT: + case SparkSqlParser.KW_RESTRICT: + case SparkSqlParser.KW_REWRITE: + case SparkSqlParser.KW_REVOKE: + case SparkSqlParser.KW_RIGHT: + case SparkSqlParser.KW_RLIKE: + case SparkSqlParser.KW_REGEXP: + case SparkSqlParser.KW_ROLE: + case SparkSqlParser.KW_ROLES: + case SparkSqlParser.KW_ROLLBACK: + case SparkSqlParser.KW_ROLLUP: + case SparkSqlParser.KW_ROW: + case SparkSqlParser.KW_ROWS: + case SparkSqlParser.KW_SECOND: + case SparkSqlParser.KW_SECONDS: + case SparkSqlParser.KW_SCHEMA: + case SparkSqlParser.KW_SCHEMAS: + case SparkSqlParser.KW_SEMI: + case SparkSqlParser.KW_SEPARATED: + case SparkSqlParser.KW_SERDE: + case SparkSqlParser.KW_SERDEPROPERTIES: + case SparkSqlParser.KW_SESSION_USER: + case SparkSqlParser.KW_SET: + case SparkSqlParser.KW_MINUS: + case SparkSqlParser.KW_SETS: + case SparkSqlParser.KW_SHORT: + case SparkSqlParser.KW_SHOW: + case SparkSqlParser.KW_SINGLE: + case SparkSqlParser.KW_SKEWED: + case SparkSqlParser.KW_SMALLINT: + case SparkSqlParser.KW_SOME: + case SparkSqlParser.KW_SORT: + case SparkSqlParser.KW_SORTED: + case SparkSqlParser.KW_SOURCE: + case SparkSqlParser.KW_START: + case SparkSqlParser.KW_STATISTICS: + case SparkSqlParser.KW_STORED: + case SparkSqlParser.KW_STRATIFY: + case SparkSqlParser.KW_STRING: + case SparkSqlParser.KW_STRUCT: + case SparkSqlParser.KW_SUBSTR: + case SparkSqlParser.KW_SUBSTRING: + case SparkSqlParser.KW_SYNC: + case SparkSqlParser.KW_SYSTEM: + case SparkSqlParser.KW_SYSTEM_TIME: + case SparkSqlParser.KW_SYSTEM_VERSION: + case SparkSqlParser.KW_TABLES: + case SparkSqlParser.KW_TABLESAMPLE: + case SparkSqlParser.KW_TARGET: + case SparkSqlParser.KW_TBLPROPERTIES: + case SparkSqlParser.KW_TEMPORARY: + case SparkSqlParser.KW_TERMINATED: + case SparkSqlParser.KW_THEN: + case SparkSqlParser.KW_TIME: + case SparkSqlParser.KW_TIMEDIFF: + case SparkSqlParser.KW_TIMESTAMP: + case SparkSqlParser.KW_TIMESTAMP_LTZ: + case SparkSqlParser.KW_TIMESTAMP_NTZ: + case SparkSqlParser.KW_TIMESTAMPADD: + case SparkSqlParser.KW_TIMESTAMPDIFF: + case SparkSqlParser.KW_TINYINT: + case SparkSqlParser.KW_TO: + case SparkSqlParser.KW_TOUCH: + case SparkSqlParser.KW_TRAILING: + case SparkSqlParser.KW_TRANSACTION: + case SparkSqlParser.KW_TRANSACTIONS: + case SparkSqlParser.KW_TRANSFORM: + case SparkSqlParser.KW_TRIM: + case SparkSqlParser.KW_TRUE: + case SparkSqlParser.KW_TRUNCATE: + case SparkSqlParser.KW_TRY_CAST: + case SparkSqlParser.KW_TYPE: + case SparkSqlParser.KW_UNARCHIVE: + case SparkSqlParser.KW_UNBOUNDED: + case SparkSqlParser.KW_UNCACHE: + case SparkSqlParser.KW_UNION: + case SparkSqlParser.KW_UNIQUE: + case SparkSqlParser.KW_UNKNOWN: + case SparkSqlParser.KW_UNLOCK: + case SparkSqlParser.KW_UNPIVOT: + case SparkSqlParser.KW_UNSET: + case SparkSqlParser.KW_UPDATE: + case SparkSqlParser.KW_USE: + case SparkSqlParser.KW_USER: + case SparkSqlParser.KW_USING: + case SparkSqlParser.KW_VALUES: + case SparkSqlParser.KW_VARCHAR: + case SparkSqlParser.KW_VAR: + case SparkSqlParser.KW_VARIABLE: + case SparkSqlParser.KW_VERSION: + case SparkSqlParser.KW_VIEW: + case SparkSqlParser.KW_VIEWS: + case SparkSqlParser.KW_VOID: + case SparkSqlParser.KW_WEEK: + case SparkSqlParser.KW_WEEKS: + case SparkSqlParser.KW_WHEN: + case SparkSqlParser.KW_WHERE: + case SparkSqlParser.KW_WINDOW: + case SparkSqlParser.KW_WITH: + case SparkSqlParser.KW_WITHIN: + case SparkSqlParser.KW_YEAR: + case SparkSqlParser.KW_YEARS: + case SparkSqlParser.KW_ZONE: + case SparkSqlParser.KW_ZORDER: + case SparkSqlParser.DOUBLEQUOTED_STRING: + case SparkSqlParser.IDENTIFIER: + case SparkSqlParser.BACKQUOTED_IDENTIFIER: + { + this.state = 2920; + localContext._alias = this.errorCapturingIdentifier(); + } + break; + case SparkSqlParser.LEFT_PAREN: + { + this.state = 2921; + this.identifierList(); + } + break; + default: + throw new antlr.NoViableAltException(this); + } } break; - default: - throw new antlr.NoViableAltException(this); } } break; - } + case 2: + this.enterOuterAlt(localContext, 2); + { + this.state = 2926; + if (!(this.shouldMatchEmpty())) { + throw this.createFailedPredicateException("this.shouldMatchEmpty()"); + } + this.state = 2927; + this.emptyColumn(); + } + break; } } catch (re) { @@ -13827,25 +13844,25 @@ export class SparkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2926; + this.state = 2930; this.namedExpression(); - this.state = 2931; + this.state = 2935; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 400, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 401, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2927; + this.state = 2931; this.match(SparkSqlParser.COMMA); - this.state = 2928; + this.state = 2932; this.namedExpression(); } } } - this.state = 2933; + this.state = 2937; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 400, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 401, this.context); } } } @@ -13869,7 +13886,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2934; + this.state = 2938; this.namedExpressionSeq(); } } @@ -13894,29 +13911,29 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2936; + this.state = 2940; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2937; + this.state = 2941; localContext._partitionField = this.partitionField(); localContext._fields.push(localContext._partitionField); - this.state = 2942; + this.state = 2946; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2938; + this.state = 2942; this.match(SparkSqlParser.COMMA); - this.state = 2939; + this.state = 2943; localContext._partitionField = this.partitionField(); localContext._fields.push(localContext._partitionField); } } - this.state = 2944; + this.state = 2948; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2945; + this.state = 2949; this.match(SparkSqlParser.RIGHT_PAREN); } } @@ -13938,20 +13955,20 @@ export class SparkSqlParser extends SQLParserBase { let localContext = new PartitionFieldContext(this.context, this.state); this.enterRule(localContext, 248, SparkSqlParser.RULE_partitionField); try { - this.state = 2949; + this.state = 2953; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 402, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 403, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2947; + this.state = 2951; this.transform(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2948; + this.state = 2952; this.columnType(); } break; @@ -13976,42 +13993,42 @@ export class SparkSqlParser extends SQLParserBase { this.enterRule(localContext, 250, SparkSqlParser.RULE_transform); let _la: number; try { - this.state = 2964; + this.state = 2968; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 404, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 405, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2951; + this.state = 2955; this.qualifiedName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2952; + this.state = 2956; localContext._transformName = this.identifier(); - this.state = 2953; + this.state = 2957; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2954; + this.state = 2958; this.transformArgument(); - this.state = 2959; + this.state = 2963; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2955; + this.state = 2959; this.match(SparkSqlParser.COMMA); - this.state = 2956; + this.state = 2960; this.transformArgument(); } } - this.state = 2961; + this.state = 2965; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2962; + this.state = 2966; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -14035,20 +14052,20 @@ export class SparkSqlParser extends SQLParserBase { let localContext = new TransformArgumentContext(this.context, this.state); this.enterRule(localContext, 252, SparkSqlParser.RULE_transformArgument); try { - this.state = 2968; + this.state = 2972; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 405, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 406, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2966; + this.state = 2970; this.qualifiedName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2967; + this.state = 2971; this.constant(); } break; @@ -14074,7 +14091,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2970; + this.state = 2974; this.booleanExpression(0); } } @@ -14098,11 +14115,11 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2972; + this.state = 2976; localContext._key = this.identifier(); - this.state = 2973; + this.state = 2977; this.match(SparkSqlParser.FAT_ARROW); - this.state = 2974; + this.state = 2978; localContext._value = this.expression(); } } @@ -14124,20 +14141,20 @@ export class SparkSqlParser extends SQLParserBase { let localContext = new FunctionArgumentContext(this.context, this.state); this.enterRule(localContext, 258, SparkSqlParser.RULE_functionArgument); try { - this.state = 2978; + this.state = 2982; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 406, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 407, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2976; + this.state = 2980; this.expression(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2977; + this.state = 2981; this.namedArgumentExpression(); } break; @@ -14164,21 +14181,21 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2980; + this.state = 2984; this.expression(); - this.state = 2985; + this.state = 2989; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 2981; + this.state = 2985; this.match(SparkSqlParser.COMMA); - this.state = 2982; + this.state = 2986; this.expression(); } } - this.state = 2987; + this.state = 2991; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -14217,12 +14234,12 @@ export class SparkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3000; + this.state = 3004; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 409, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 410, this.context) ) { case 1: { - this.state = 2989; + this.state = 2993; _la = this.tokenStream.LA(1); if(!(_la === 197 || _la === 360)) { this.errorHandler.recoverInline(this); @@ -14231,32 +14248,32 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2990; + this.state = 2994; this.booleanExpression(5); } break; case 2: { - this.state = 2991; + this.state = 2995; this.match(SparkSqlParser.KW_EXISTS); - this.state = 2992; + this.state = 2996; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 2993; + this.state = 2997; this.query(); - this.state = 2994; + this.state = 2998; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 3: { - this.state = 2996; + this.state = 3000; this.valueExpression(0); - this.state = 2998; + this.state = 3002; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 408, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 409, this.context) ) { case 1: { - this.state = 2997; + this.state = 3001; this.predicate(); } break; @@ -14265,9 +14282,9 @@ export class SparkSqlParser extends SQLParserBase { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 3010; + this.state = 3014; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 411, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 412, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -14275,21 +14292,21 @@ export class SparkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 3008; + this.state = 3012; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 410, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 411, this.context) ) { case 1: { localContext = new BooleanExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_booleanExpression); - this.state = 3002; + this.state = 3006; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 3003; + this.state = 3007; localContext._operator = this.match(SparkSqlParser.KW_AND); - this.state = 3004; + this.state = 3008; localContext._right = this.booleanExpression(3); } break; @@ -14298,22 +14315,22 @@ export class SparkSqlParser extends SQLParserBase { localContext = new BooleanExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_booleanExpression); - this.state = 3005; + this.state = 3009; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 3006; + this.state = 3010; localContext._operator = this.match(SparkSqlParser.KW_OR); - this.state = 3007; + this.state = 3011; localContext._right = this.booleanExpression(2); } break; } } } - this.state = 3012; + this.state = 3016; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 411, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 412, this.context); } } } @@ -14336,108 +14353,108 @@ export class SparkSqlParser extends SQLParserBase { this.enterRule(localContext, 264, SparkSqlParser.RULE_predicate); let _la: number; try { - this.state = 3095; + this.state = 3099; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 425, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 426, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3014; + this.state = 3018; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3013; + this.state = 3017; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3016; + this.state = 3020; localContext._kind = this.match(SparkSqlParser.KW_BETWEEN); - this.state = 3017; + this.state = 3021; localContext._lower = this.valueExpression(0); - this.state = 3018; + this.state = 3022; this.match(SparkSqlParser.KW_AND); - this.state = 3019; + this.state = 3023; localContext._upper = this.valueExpression(0); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3022; + this.state = 3026; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3021; + this.state = 3025; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3024; + this.state = 3028; localContext._kind = this.match(SparkSqlParser.KW_IN); - this.state = 3025; + this.state = 3029; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3026; + this.state = 3030; this.expression(); - this.state = 3031; + this.state = 3035; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3027; + this.state = 3031; this.match(SparkSqlParser.COMMA); - this.state = 3028; + this.state = 3032; this.expression(); } } - this.state = 3033; + this.state = 3037; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3034; + this.state = 3038; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3037; + this.state = 3041; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3036; + this.state = 3040; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3039; + this.state = 3043; localContext._kind = this.match(SparkSqlParser.KW_IN); - this.state = 3040; + this.state = 3044; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3041; + this.state = 3045; this.query(); - this.state = 3042; + this.state = 3046; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3045; + this.state = 3049; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3044; + this.state = 3048; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3047; + this.state = 3051; localContext._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 251 || _la === 252)) { @@ -14447,24 +14464,24 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3048; + this.state = 3052; localContext._pattern = this.valueExpression(0); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3050; + this.state = 3054; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3049; + this.state = 3053; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3052; + this.state = 3056; localContext._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 163 || _la === 164)) { @@ -14474,7 +14491,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3053; + this.state = 3057; localContext._quantifier = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 16 || _la === 277)) { @@ -14484,40 +14501,40 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3067; + this.state = 3071; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 419, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 420, this.context) ) { case 1: { - this.state = 3054; + this.state = 3058; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3055; + this.state = 3059; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 2: { - this.state = 3056; + this.state = 3060; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3057; + this.state = 3061; this.expression(); - this.state = 3062; + this.state = 3066; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3058; + this.state = 3062; this.match(SparkSqlParser.COMMA); - this.state = 3059; + this.state = 3063; this.expression(); } } - this.state = 3064; + this.state = 3068; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3065; + this.state = 3069; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -14527,17 +14544,17 @@ export class SparkSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3070; + this.state = 3074; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3069; + this.state = 3073; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3072; + this.state = 3076; localContext._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 163 || _la === 164)) { @@ -14547,16 +14564,16 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3073; + this.state = 3077; localContext._pattern = this.valueExpression(0); - this.state = 3076; + this.state = 3080; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 421, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 422, this.context) ) { case 1: { - this.state = 3074; + this.state = 3078; this.match(SparkSqlParser.KW_ESCAPE); - this.state = 3075; + this.state = 3079; localContext._escapeChar = this.stringLit(); } break; @@ -14566,38 +14583,38 @@ export class SparkSqlParser extends SQLParserBase { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3078; + this.state = 3082; this.match(SparkSqlParser.KW_IS); - this.state = 3080; + this.state = 3084; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3079; + this.state = 3083; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3082; + this.state = 3086; localContext._kind = this.match(SparkSqlParser.KW_NULL); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 3083; + this.state = 3087; this.match(SparkSqlParser.KW_IS); - this.state = 3085; + this.state = 3089; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3084; + this.state = 3088; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3087; + this.state = 3091; localContext._kind = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 111 || _la === 316 || _la === 325)) { @@ -14612,23 +14629,23 @@ export class SparkSqlParser extends SQLParserBase { case 9: this.enterOuterAlt(localContext, 9); { - this.state = 3088; + this.state = 3092; this.match(SparkSqlParser.KW_IS); - this.state = 3090; + this.state = 3094; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3089; + this.state = 3093; this.match(SparkSqlParser.KW_NOT); } } - this.state = 3092; + this.state = 3096; localContext._kind = this.match(SparkSqlParser.KW_DISTINCT); - this.state = 3093; + this.state = 3097; this.match(SparkSqlParser.KW_FROM); - this.state = 3094; + this.state = 3098; localContext._right = this.valueExpression(0); } break; @@ -14667,18 +14684,18 @@ export class SparkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3101; + this.state = 3105; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 426, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 427, this.context) ) { case 1: { - this.state = 3098; + this.state = 3102; this.primaryExpression(0); } break; case 2: { - this.state = 3099; + this.state = 3103; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 361)) & ~0x1F) === 0 && ((1 << (_la - 361)) & 35) !== 0))) { @@ -14688,15 +14705,15 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3100; + this.state = 3104; this.valueExpression(7); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 3124; + this.state = 3128; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 428, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 429, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -14704,19 +14721,19 @@ export class SparkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 3122; + this.state = 3126; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 427, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 428, this.context) ) { case 1: { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3103; + this.state = 3107; if (!(this.precpred(this.context, 6))) { throw this.createFailedPredicateException("this.precpred(this.context, 6)"); } - this.state = 3104; + this.state = 3108; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 94 || ((((_la - 363)) & ~0x1F) === 0 && ((1 << (_la - 363)) & 7) !== 0))) { @@ -14726,7 +14743,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3105; + this.state = 3109; localContext._right = this.valueExpression(7); } break; @@ -14735,11 +14752,11 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3106; + this.state = 3110; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 3107; + this.state = 3111; localContext._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 361)) & ~0x1F) === 0 && ((1 << (_la - 361)) & 259) !== 0))) { @@ -14749,7 +14766,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3108; + this.state = 3112; localContext._right = this.valueExpression(6); } break; @@ -14758,13 +14775,13 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3109; + this.state = 3113; if (!(this.precpred(this.context, 4))) { throw this.createFailedPredicateException("this.precpred(this.context, 4)"); } - this.state = 3110; + this.state = 3114; localContext._operator = this.match(SparkSqlParser.AMPERSAND); - this.state = 3111; + this.state = 3115; localContext._right = this.valueExpression(5); } break; @@ -14773,13 +14790,13 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3112; + this.state = 3116; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 3113; + this.state = 3117; localContext._operator = this.match(SparkSqlParser.HAT); - this.state = 3114; + this.state = 3118; localContext._right = this.valueExpression(4); } break; @@ -14788,13 +14805,13 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3115; + this.state = 3119; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 3116; + this.state = 3120; localContext._operator = this.match(SparkSqlParser.PIPE); - this.state = 3117; + this.state = 3121; localContext._right = this.valueExpression(3); } break; @@ -14803,22 +14820,22 @@ export class SparkSqlParser extends SQLParserBase { localContext = new ValueExpressionContext(parentContext, parentState); localContext._left = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_valueExpression); - this.state = 3118; + this.state = 3122; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 3119; + this.state = 3123; this.comparisonOperator(); - this.state = 3120; + this.state = 3124; localContext._right = this.valueExpression(2); } break; } } } - this.state = 3126; + this.state = 3130; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 428, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 429, this.context); } } } @@ -14843,7 +14860,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3127; + this.state = 3131; _la = this.tokenStream.LA(1); if(!(_la === 67 || _la === 69 || _la === 134 || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 85) !== 0) || _la === 231 || _la === 259 || _la === 341 || _la === 348)) { this.errorHandler.recoverInline(this); @@ -14887,12 +14904,12 @@ export class SparkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3378; + this.state = 3382; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 454, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 455, this.context) ) { case 1: { - this.state = 3130; + this.state = 3134; localContext._name = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(((((_la - 63)) & ~0x1F) === 0 && ((1 << (_la - 63)) & 13) !== 0) || _la === 268 || _la === 331)) { @@ -14906,7 +14923,7 @@ export class SparkSqlParser extends SQLParserBase { break; case 2: { - this.state = 3131; + this.state = 3135; localContext._name = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 74 || _la === 75 || _la === 306)) { @@ -14916,9 +14933,9 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3132; + this.state = 3136; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3135; + this.state = 3139; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_DAY: @@ -14933,35 +14950,35 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_WEEK: case SparkSqlParser.KW_YEAR: { - this.state = 3133; + this.state = 3137; localContext._unit = this.datetimeUnit(); } break; case SparkSqlParser.STRING_LITERAL: case SparkSqlParser.DOUBLEQUOTED_STRING: { - this.state = 3134; + this.state = 3138; localContext._invalidUnit = this.stringLit(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3137; + this.state = 3141; this.match(SparkSqlParser.COMMA); - this.state = 3138; + this.state = 3142; localContext._unitsAmount = this.valueExpression(0); - this.state = 3139; + this.state = 3143; this.match(SparkSqlParser.COMMA); - this.state = 3140; + this.state = 3144; localContext._timestamp = this.valueExpression(0); - this.state = 3141; + this.state = 3145; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 3: { - this.state = 3143; + this.state = 3147; localContext._name = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 76 || _la === 77 || _la === 302 || _la === 307)) { @@ -14971,9 +14988,9 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3144; + this.state = 3148; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3147; + this.state = 3151; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_DAY: @@ -14988,105 +15005,105 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_WEEK: case SparkSqlParser.KW_YEAR: { - this.state = 3145; + this.state = 3149; localContext._unit = this.datetimeUnit(); } break; case SparkSqlParser.STRING_LITERAL: case SparkSqlParser.DOUBLEQUOTED_STRING: { - this.state = 3146; + this.state = 3150; localContext._invalidUnit = this.stringLit(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 3149; + this.state = 3153; this.match(SparkSqlParser.COMMA); - this.state = 3150; + this.state = 3154; localContext._startTimestamp = this.valueExpression(0); - this.state = 3151; + this.state = 3155; this.match(SparkSqlParser.COMMA); - this.state = 3152; + this.state = 3156; localContext._endTimestamp = this.valueExpression(0); - this.state = 3153; + this.state = 3157; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 4: { - this.state = 3155; + this.state = 3159; this.match(SparkSqlParser.KW_CASE); - this.state = 3157; + this.state = 3161; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3156; + this.state = 3160; this.whenClause(); } } - this.state = 3159; + this.state = 3163; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 343); - this.state = 3163; + this.state = 3167; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 3161; + this.state = 3165; this.match(SparkSqlParser.KW_ELSE); - this.state = 3162; + this.state = 3166; localContext._elseExpression = this.expression(); } } - this.state = 3165; + this.state = 3169; this.match(SparkSqlParser.KW_END); } break; case 5: { - this.state = 3167; + this.state = 3171; this.match(SparkSqlParser.KW_CASE); - this.state = 3168; + this.state = 3172; this.expression(); - this.state = 3170; + this.state = 3174; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3169; + this.state = 3173; this.whenClause(); } } - this.state = 3172; + this.state = 3176; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 343); - this.state = 3176; + this.state = 3180; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 3174; + this.state = 3178; this.match(SparkSqlParser.KW_ELSE); - this.state = 3175; + this.state = 3179; localContext._elseExpression = this.expression(); } } - this.state = 3178; + this.state = 3182; this.match(SparkSqlParser.KW_END); } break; case 6: { - this.state = 3180; + this.state = 3184; localContext._name = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 36 || _la === 318)) { @@ -15096,280 +15113,280 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3181; + this.state = 3185; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3182; + this.state = 3186; this.expression(); - this.state = 3183; + this.state = 3187; this.match(SparkSqlParser.KW_AS); - this.state = 3184; + this.state = 3188; this.dataType(); - this.state = 3185; + this.state = 3189; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 7: { - this.state = 3187; + this.state = 3191; this.match(SparkSqlParser.KW_STRUCT); - this.state = 3188; + this.state = 3192; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3197; + this.state = 3201; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 436, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 437, this.context) ) { case 1: { - this.state = 3189; + this.state = 3193; this.namedExpression(); - this.state = 3194; + this.state = 3198; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3190; + this.state = 3194; this.match(SparkSqlParser.COMMA); - this.state = 3191; + this.state = 3195; this.namedExpression(); } } - this.state = 3196; + this.state = 3200; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 3199; + this.state = 3203; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 8: { - this.state = 3200; + this.state = 3204; this.match(SparkSqlParser.KW_FIRST); - this.state = 3201; + this.state = 3205; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3202; + this.state = 3206; this.expression(); - this.state = 3205; + this.state = 3209; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 138) { { - this.state = 3203; + this.state = 3207; this.match(SparkSqlParser.KW_IGNORE); - this.state = 3204; + this.state = 3208; this.match(SparkSqlParser.KW_NULLS); } } - this.state = 3207; + this.state = 3211; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 9: { - this.state = 3209; + this.state = 3213; this.match(SparkSqlParser.KW_ANY_VALUE); - this.state = 3210; + this.state = 3214; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3211; + this.state = 3215; this.expression(); - this.state = 3214; + this.state = 3218; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 138) { { - this.state = 3212; + this.state = 3216; this.match(SparkSqlParser.KW_IGNORE); - this.state = 3213; + this.state = 3217; this.match(SparkSqlParser.KW_NULLS); } } - this.state = 3216; + this.state = 3220; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 10: { - this.state = 3218; + this.state = 3222; this.match(SparkSqlParser.KW_LAST); - this.state = 3219; + this.state = 3223; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3220; + this.state = 3224; this.expression(); - this.state = 3223; + this.state = 3227; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 138) { { - this.state = 3221; + this.state = 3225; this.match(SparkSqlParser.KW_IGNORE); - this.state = 3222; + this.state = 3226; this.match(SparkSqlParser.KW_NULLS); } } - this.state = 3225; + this.state = 3229; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 11: { - this.state = 3227; + this.state = 3231; this.match(SparkSqlParser.KW_POSITION); - this.state = 3228; + this.state = 3232; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3229; + this.state = 3233; localContext._substr = this.valueExpression(0); - this.state = 3230; + this.state = 3234; this.match(SparkSqlParser.KW_IN); - this.state = 3231; + this.state = 3235; localContext._str = this.valueExpression(0); - this.state = 3232; + this.state = 3236; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 12: { - this.state = 3234; + this.state = 3238; this.constant(); } break; case 13: { - this.state = 3235; + this.state = 3239; this.match(SparkSqlParser.ASTERISK); } break; case 14: { - this.state = 3236; + this.state = 3240; this.qualifiedName(); - this.state = 3237; + this.state = 3241; this.match(SparkSqlParser.DOT); - this.state = 3238; + this.state = 3242; this.match(SparkSqlParser.ASTERISK); } break; case 15: { - this.state = 3240; + this.state = 3244; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3241; + this.state = 3245; this.namedExpression(); - this.state = 3244; + this.state = 3248; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3242; + this.state = 3246; this.match(SparkSqlParser.COMMA); - this.state = 3243; + this.state = 3247; this.namedExpression(); } } - this.state = 3246; + this.state = 3250; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 4); - this.state = 3248; + this.state = 3252; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 16: { - this.state = 3250; + this.state = 3254; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3251; + this.state = 3255; this.query(); - this.state = 3252; + this.state = 3256; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 17: { - this.state = 3254; + this.state = 3258; this.match(SparkSqlParser.KW_IDENTIFIER); - this.state = 3255; + this.state = 3259; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3256; + this.state = 3260; this.expression(); - this.state = 3257; + this.state = 3261; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 18: { - this.state = 3259; + this.state = 3263; this.functionName(); - this.state = 3260; + this.state = 3264; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3272; + this.state = 3276; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 360)) & ~0x1F) === 0 && ((1 << (_la - 360)) & 1073678415) !== 0)) { { - this.state = 3262; + this.state = 3266; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 441, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 442, this.context) ) { case 1: { - this.state = 3261; + this.state = 3265; this.setQuantifier(); } break; } - this.state = 3264; + this.state = 3268; this.functionArgument(); - this.state = 3269; + this.state = 3273; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3265; + this.state = 3269; this.match(SparkSqlParser.COMMA); - this.state = 3266; + this.state = 3270; this.functionArgument(); } } - this.state = 3271; + this.state = 3275; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3274; + this.state = 3278; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 3281; + this.state = 3285; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 444, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 445, this.context) ) { case 1: { - this.state = 3275; + this.state = 3279; this.match(SparkSqlParser.KW_FILTER); - this.state = 3276; + this.state = 3280; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3277; + this.state = 3281; this.match(SparkSqlParser.KW_WHERE); - this.state = 3278; + this.state = 3282; localContext._where = this.booleanExpression(0); - this.state = 3279; + this.state = 3283; this.match(SparkSqlParser.RIGHT_PAREN); } break; } - this.state = 3285; + this.state = 3289; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 445, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 446, this.context) ) { case 1: { - this.state = 3283; + this.state = 3287; localContext._nullsOption = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 138 || _la === 246)) { @@ -15379,19 +15396,19 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3284; + this.state = 3288; this.match(SparkSqlParser.KW_NULLS); } break; } - this.state = 3289; + this.state = 3293; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 446, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 447, this.context) ) { case 1: { - this.state = 3287; + this.state = 3291; this.match(SparkSqlParser.KW_OVER); - this.state = 3288; + this.state = 3292; this.windowSpec(); } break; @@ -15400,79 +15417,79 @@ export class SparkSqlParser extends SQLParserBase { break; case 19: { - this.state = 3291; + this.state = 3295; this.identifier(); - this.state = 3292; + this.state = 3296; this.match(SparkSqlParser.ARROW); - this.state = 3293; + this.state = 3297; this.expression(); } break; case 20: { - this.state = 3295; + this.state = 3299; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3296; + this.state = 3300; this.identifier(); - this.state = 3299; + this.state = 3303; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 3297; + this.state = 3301; this.match(SparkSqlParser.COMMA); - this.state = 3298; + this.state = 3302; this.identifier(); } } - this.state = 3301; + this.state = 3305; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } while (_la === 4); - this.state = 3303; + this.state = 3307; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 3304; + this.state = 3308; this.match(SparkSqlParser.ARROW); - this.state = 3305; + this.state = 3309; this.expression(); } break; case 21: { - this.state = 3307; + this.state = 3311; this.columnNamePath(); } break; case 22: { - this.state = 3308; + this.state = 3312; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3309; + this.state = 3313; this.expression(); - this.state = 3310; + this.state = 3314; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 23: { - this.state = 3312; + this.state = 3316; this.match(SparkSqlParser.KW_EXTRACT); - this.state = 3313; + this.state = 3317; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3314; + this.state = 3318; localContext._field = this.identifier(); - this.state = 3315; + this.state = 3319; this.match(SparkSqlParser.KW_FROM); - this.state = 3316; + this.state = 3320; localContext._source = this.valueExpression(0); - this.state = 3317; + this.state = 3321; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 24: { - this.state = 3319; + this.state = 3323; _la = this.tokenStream.LA(1); if(!(_la === 287 || _la === 288)) { this.errorHandler.recoverInline(this); @@ -15481,11 +15498,11 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3320; + this.state = 3324; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3321; + this.state = 3325; localContext._str = this.valueExpression(0); - this.state = 3322; + this.state = 3326; _la = this.tokenStream.LA(1); if(!(_la === 4 || _la === 123)) { this.errorHandler.recoverInline(this); @@ -15494,14 +15511,14 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3323; + this.state = 3327; localContext._pos = this.valueExpression(0); - this.state = 3326; + this.state = 3330; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 4 || _la === 119) { { - this.state = 3324; + this.state = 3328; _la = this.tokenStream.LA(1); if(!(_la === 4 || _la === 119)) { this.errorHandler.recoverInline(this); @@ -15510,27 +15527,27 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3325; + this.state = 3329; localContext._len = this.valueExpression(0); } } - this.state = 3328; + this.state = 3332; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 25: { - this.state = 3330; + this.state = 3334; this.match(SparkSqlParser.KW_TRIM); - this.state = 3331; + this.state = 3335; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3333; + this.state = 3337; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 449, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 450, this.context) ) { case 1: { - this.state = 3332; + this.state = 3336; localContext._trimOption = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 28 || _la === 160 || _la === 311)) { @@ -15543,59 +15560,59 @@ export class SparkSqlParser extends SQLParserBase { } break; } - this.state = 3336; + this.state = 3340; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967044) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 361)) & ~0x1F) === 0 && ((1 << (_la - 361)) & 536839207) !== 0)) { { - this.state = 3335; + this.state = 3339; localContext._trimStr = this.valueExpression(0); } } - this.state = 3338; + this.state = 3342; this.match(SparkSqlParser.KW_FROM); - this.state = 3339; + this.state = 3343; localContext._srcStr = this.valueExpression(0); - this.state = 3340; + this.state = 3344; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 26: { - this.state = 3342; + this.state = 3346; this.match(SparkSqlParser.KW_OVERLAY); - this.state = 3343; + this.state = 3347; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3344; + this.state = 3348; localContext._input = this.valueExpression(0); - this.state = 3345; + this.state = 3349; this.match(SparkSqlParser.KW_PLACING); - this.state = 3346; + this.state = 3350; localContext._replace = this.valueExpression(0); - this.state = 3347; + this.state = 3351; this.match(SparkSqlParser.KW_FROM); - this.state = 3348; + this.state = 3352; localContext._position = this.valueExpression(0); - this.state = 3351; + this.state = 3355; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 119) { { - this.state = 3349; + this.state = 3353; this.match(SparkSqlParser.KW_FOR); - this.state = 3350; + this.state = 3354; localContext._length = this.valueExpression(0); } } - this.state = 3353; + this.state = 3357; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 27: { - this.state = 3355; + this.state = 3359; localContext._name = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 220 || _la === 221)) { @@ -15605,52 +15622,52 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3356; + this.state = 3360; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3357; + this.state = 3361; localContext._percentage = this.valueExpression(0); - this.state = 3358; + this.state = 3362; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 3359; + this.state = 3363; this.match(SparkSqlParser.KW_WITHIN); - this.state = 3360; + this.state = 3364; this.match(SparkSqlParser.KW_GROUP); - this.state = 3361; + this.state = 3365; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3362; + this.state = 3366; this.match(SparkSqlParser.KW_ORDER); - this.state = 3363; + this.state = 3367; this.match(SparkSqlParser.KW_BY); - this.state = 3364; + this.state = 3368; this.sortItem(); - this.state = 3365; + this.state = 3369; this.match(SparkSqlParser.RIGHT_PAREN); - this.state = 3372; + this.state = 3376; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 452, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 453, this.context) ) { case 1: { - this.state = 3366; + this.state = 3370; this.match(SparkSqlParser.KW_FILTER); - this.state = 3367; + this.state = 3371; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3368; + this.state = 3372; this.match(SparkSqlParser.KW_WHERE); - this.state = 3369; + this.state = 3373; localContext._where = this.booleanExpression(0); - this.state = 3370; + this.state = 3374; this.match(SparkSqlParser.RIGHT_PAREN); } break; } - this.state = 3376; + this.state = 3380; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 453, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 454, this.context) ) { case 1: { - this.state = 3374; + this.state = 3378; this.match(SparkSqlParser.KW_OVER); - this.state = 3375; + this.state = 3379; this.windowSpec(); } break; @@ -15659,9 +15676,9 @@ export class SparkSqlParser extends SQLParserBase { break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 3390; + this.state = 3394; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 456, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 457, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -15669,23 +15686,23 @@ export class SparkSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 3388; + this.state = 3392; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 455, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 456, this.context) ) { case 1: { localContext = new PrimaryExpressionContext(parentContext, parentState); localContext._value = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_primaryExpression); - this.state = 3380; + this.state = 3384; if (!(this.precpred(this.context, 9))) { throw this.createFailedPredicateException("this.precpred(this.context, 9)"); } - this.state = 3381; + this.state = 3385; this.match(SparkSqlParser.LEFT_BRACKET); - this.state = 3382; + this.state = 3386; localContext._index = this.valueExpression(0); - this.state = 3383; + this.state = 3387; this.match(SparkSqlParser.RIGHT_BRACKET); } break; @@ -15694,22 +15711,22 @@ export class SparkSqlParser extends SQLParserBase { localContext = new PrimaryExpressionContext(parentContext, parentState); localContext._base = previousContext; this.pushNewRecursionContext(localContext, _startState, SparkSqlParser.RULE_primaryExpression); - this.state = 3385; + this.state = 3389; if (!(this.precpred(this.context, 7))) { throw this.createFailedPredicateException("this.precpred(this.context, 7)"); } - this.state = 3386; + this.state = 3390; this.match(SparkSqlParser.DOT); - this.state = 3387; + this.state = 3391; localContext._fieldName = this.identifier(); } break; } } } - this.state = 3392; + this.state = 3396; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 456, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 457, this.context); } } } @@ -15731,55 +15748,55 @@ export class SparkSqlParser extends SQLParserBase { let localContext = new LiteralTypeContext(this.context, this.state); this.enterRule(localContext, 272, SparkSqlParser.RULE_literalType); try { - this.state = 3400; + this.state = 3404; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 457, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 458, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3393; + this.state = 3397; this.match(SparkSqlParser.KW_DATE); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3394; + this.state = 3398; this.match(SparkSqlParser.KW_TIMESTAMP); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3395; + this.state = 3399; this.match(SparkSqlParser.KW_TIMESTAMP_LTZ); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3396; + this.state = 3400; this.match(SparkSqlParser.KW_TIMESTAMP_NTZ); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3397; + this.state = 3401; this.match(SparkSqlParser.KW_INTERVAL); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3398; + this.state = 3402; this.match(SparkSqlParser.KW_BINARY_HEX); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3399; + this.state = 3403; localContext._unsupportedType = this.identifier(); } break; @@ -15804,66 +15821,66 @@ export class SparkSqlParser extends SQLParserBase { this.enterRule(localContext, 274, SparkSqlParser.RULE_constant); try { let alternative: number; - this.state = 3417; + this.state = 3421; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 459, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 460, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3402; + this.state = 3406; this.match(SparkSqlParser.KW_NULL); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3403; + this.state = 3407; this.match(SparkSqlParser.QUESTION); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3404; + this.state = 3408; this.match(SparkSqlParser.COLON); - this.state = 3405; + this.state = 3409; this.identifier(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3406; + this.state = 3410; this.interval(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3407; + this.state = 3411; this.literalType(); - this.state = 3408; + this.state = 3412; this.stringLit(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3410; + this.state = 3414; this.number_(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3411; + this.state = 3415; this.booleanValue(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 3413; + this.state = 3417; this.errorHandler.sync(this); alternative = 1; do { @@ -15871,7 +15888,7 @@ export class SparkSqlParser extends SQLParserBase { case 1: { { - this.state = 3412; + this.state = 3416; this.stringLit(); } } @@ -15879,9 +15896,9 @@ export class SparkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3415; + this.state = 3419; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 458, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 459, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; @@ -15908,7 +15925,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3419; + this.state = 3423; _la = this.tokenStream.LA(1); if(!(((((_la - 352)) & ~0x1F) === 0 && ((1 << (_la - 352)) & 255) !== 0))) { this.errorHandler.recoverInline(this); @@ -15940,7 +15957,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3421; + this.state = 3425; _la = this.tokenStream.LA(1); if(!(_la === 94 || ((((_la - 361)) & ~0x1F) === 0 && ((1 << (_la - 361)) & 1023) !== 0))) { this.errorHandler.recoverInline(this); @@ -15972,7 +15989,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3423; + this.state = 3427; _la = this.tokenStream.LA(1); if(!(_la === 14 || _la === 140 || _la === 197 || _la === 208)) { this.errorHandler.recoverInline(this); @@ -16004,7 +16021,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3425; + this.state = 3429; _la = this.tokenStream.LA(1); if(!(_la === 111 || _la === 316)) { this.errorHandler.recoverInline(this); @@ -16035,20 +16052,20 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3427; + this.state = 3431; this.match(SparkSqlParser.KW_INTERVAL); - this.state = 3430; + this.state = 3434; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 460, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 461, this.context) ) { case 1: { - this.state = 3428; + this.state = 3432; this.errorCapturingMultiUnitsInterval(); } break; case 2: { - this.state = 3429; + this.state = 3433; this.errorCapturingUnitToUnitInterval(); } break; @@ -16075,14 +16092,14 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3432; + this.state = 3436; localContext._body = this.multiUnitsInterval(); - this.state = 3434; + this.state = 3438; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 461, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 462, this.context) ) { case 1: { - this.state = 3433; + this.state = 3437; this.unitToUnitInterval(); } break; @@ -16110,7 +16127,7 @@ export class SparkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3439; + this.state = 3443; this.errorHandler.sync(this); alternative = 1; do { @@ -16118,9 +16135,9 @@ export class SparkSqlParser extends SQLParserBase { case 1: { { - this.state = 3436; + this.state = 3440; this.intervalValue(); - this.state = 3437; + this.state = 3441; localContext._unitInMultiUnits = this.unitInMultiUnits(); localContext._unit.push(localContext._unitInMultiUnits); } @@ -16129,9 +16146,9 @@ export class SparkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3441; + this.state = 3445; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 462, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 463, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } } @@ -16155,20 +16172,20 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3443; + this.state = 3447; localContext._body = this.unitToUnitInterval(); - this.state = 3446; + this.state = 3450; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 463, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 464, this.context) ) { case 1: { - this.state = 3444; + this.state = 3448; localContext._error1 = this.multiUnitsInterval(); } break; case 2: { - this.state = 3445; + this.state = 3449; localContext._error2 = this.unitToUnitInterval(); } break; @@ -16195,13 +16212,13 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3448; + this.state = 3452; localContext._value = this.intervalValue(); - this.state = 3449; + this.state = 3453; this.unitInUnitToUnit(); - this.state = 3450; + this.state = 3454; this.match(SparkSqlParser.KW_TO); - this.state = 3451; + this.state = 3455; this.unitInUnitToUnit(); } } @@ -16226,12 +16243,12 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3454; + this.state = 3458; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 361 || _la === 362) { { - this.state = 3453; + this.state = 3457; _la = this.tokenStream.LA(1); if(!(_la === 361 || _la === 362)) { this.errorHandler.recoverInline(this); @@ -16243,25 +16260,25 @@ export class SparkSqlParser extends SQLParserBase { } } - this.state = 3459; + this.state = 3463; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.INTEGER_VALUE: { - this.state = 3456; + this.state = 3460; this.match(SparkSqlParser.INTEGER_VALUE); } break; case SparkSqlParser.DECIMAL_VALUE: { - this.state = 3457; + this.state = 3461; this.match(SparkSqlParser.DECIMAL_VALUE); } break; case SparkSqlParser.STRING_LITERAL: case SparkSqlParser.DOUBLEQUOTED_STRING: { - this.state = 3458; + this.state = 3462; this.stringLit(); } break; @@ -16291,7 +16308,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3461; + this.state = 3465; _la = this.tokenStream.LA(1); if(!(_la === 67 || _la === 68 || _la === 134 || _la === 135 || ((((_la - 180)) & ~0x1F) === 0 && ((1 << (_la - 180)) & 12543) !== 0) || _la === 259 || _la === 260 || ((((_la - 341)) & ~0x1F) === 0 && ((1 << (_la - 341)) & 387) !== 0))) { this.errorHandler.recoverInline(this); @@ -16323,7 +16340,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3463; + this.state = 3467; _la = this.tokenStream.LA(1); if(!(_la === 67 || _la === 134 || _la === 184 || _la === 186 || _la === 259 || _la === 348)) { this.errorHandler.recoverInline(this); @@ -16352,22 +16369,22 @@ export class SparkSqlParser extends SQLParserBase { let localContext = new ColPositionContext(this.context, this.state); this.enterRule(localContext, 300, SparkSqlParser.RULE_colPosition); try { - this.state = 3468; + this.state = 3472; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_FIRST: this.enterOuterAlt(localContext, 1); { - this.state = 3465; + this.state = 3469; localContext._position = this.match(SparkSqlParser.KW_FIRST); } break; case SparkSqlParser.KW_AFTER: this.enterOuterAlt(localContext, 2); { - this.state = 3466; + this.state = 3470; localContext._position = this.match(SparkSqlParser.KW_AFTER); - this.state = 3467; + this.state = 3471; localContext._afterCol = this.errorCapturingIdentifier(); } break; @@ -16393,216 +16410,216 @@ export class SparkSqlParser extends SQLParserBase { let localContext = new TypeContext(this.context, this.state); this.enterRule(localContext, 302, SparkSqlParser.RULE_type); try { - this.state = 3500; + this.state = 3504; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 467, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 468, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3470; + this.state = 3474; this.match(SparkSqlParser.KW_BOOLEAN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3471; + this.state = 3475; this.match(SparkSqlParser.KW_TINYINT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3472; + this.state = 3476; this.match(SparkSqlParser.KW_BYTE); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3473; + this.state = 3477; this.match(SparkSqlParser.KW_SMALLINT); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3474; + this.state = 3478; this.match(SparkSqlParser.KW_SHORT); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3475; + this.state = 3479; this.match(SparkSqlParser.KW_INT); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 3476; + this.state = 3480; this.match(SparkSqlParser.KW_INTEGER); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 3477; + this.state = 3481; this.match(SparkSqlParser.KW_BIGINT); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 3478; + this.state = 3482; this.match(SparkSqlParser.KW_LONG); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 3479; + this.state = 3483; this.match(SparkSqlParser.KW_FLOAT); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 3480; + this.state = 3484; this.match(SparkSqlParser.KW_REAL); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 3481; + this.state = 3485; this.match(SparkSqlParser.KW_DOUBLE); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 3482; + this.state = 3486; this.match(SparkSqlParser.KW_DATE); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 3483; + this.state = 3487; this.match(SparkSqlParser.KW_TIMESTAMP); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 3484; + this.state = 3488; this.match(SparkSqlParser.KW_TIMESTAMP_NTZ); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 3485; + this.state = 3489; this.match(SparkSqlParser.KW_TIMESTAMP_LTZ); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 3486; + this.state = 3490; this.match(SparkSqlParser.KW_STRING); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 3487; + this.state = 3491; this.match(SparkSqlParser.KW_CHARACTER); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 3488; + this.state = 3492; this.match(SparkSqlParser.KW_CHAR); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 3489; + this.state = 3493; this.match(SparkSqlParser.KW_VARCHAR); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 3490; + this.state = 3494; this.match(SparkSqlParser.KW_BINARY); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 3491; + this.state = 3495; this.match(SparkSqlParser.KW_DECIMAL); } break; case 23: this.enterOuterAlt(localContext, 23); { - this.state = 3492; + this.state = 3496; this.match(SparkSqlParser.KW_DEC); } break; case 24: this.enterOuterAlt(localContext, 24); { - this.state = 3493; + this.state = 3497; this.match(SparkSqlParser.KW_NUMERIC); } break; case 25: this.enterOuterAlt(localContext, 25); { - this.state = 3494; + this.state = 3498; this.match(SparkSqlParser.KW_VOID); } break; case 26: this.enterOuterAlt(localContext, 26); { - this.state = 3495; + this.state = 3499; this.match(SparkSqlParser.KW_INTERVAL); } break; case 27: this.enterOuterAlt(localContext, 27); { - this.state = 3496; + this.state = 3500; this.match(SparkSqlParser.KW_ARRAY); } break; case 28: this.enterOuterAlt(localContext, 28); { - this.state = 3497; + this.state = 3501; this.match(SparkSqlParser.KW_STRUCT); } break; case 29: this.enterOuterAlt(localContext, 29); { - this.state = 3498; + this.state = 3502; this.match(SparkSqlParser.KW_MAP); } break; case 30: this.enterOuterAlt(localContext, 30); { - this.state = 3499; + this.state = 3503; localContext._unsupportedType = this.identifier(); } break; @@ -16627,84 +16644,84 @@ export class SparkSqlParser extends SQLParserBase { this.enterRule(localContext, 304, SparkSqlParser.RULE_dataType); let _la: number; try { - this.state = 3555; + this.state = 3559; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 475, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 476, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3502; + this.state = 3506; localContext._complex = this.match(SparkSqlParser.KW_ARRAY); - this.state = 3503; + this.state = 3507; this.match(SparkSqlParser.LT); - this.state = 3504; + this.state = 3508; this.dataType(); - this.state = 3505; + this.state = 3509; this.match(SparkSqlParser.GT); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3507; + this.state = 3511; localContext._complex = this.match(SparkSqlParser.KW_MAP); - this.state = 3508; + this.state = 3512; this.match(SparkSqlParser.LT); - this.state = 3509; + this.state = 3513; this.dataType(); - this.state = 3510; + this.state = 3514; this.match(SparkSqlParser.COMMA); - this.state = 3511; + this.state = 3515; this.dataType(); - this.state = 3512; + this.state = 3516; this.match(SparkSqlParser.GT); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3514; + this.state = 3518; localContext._complex = this.match(SparkSqlParser.KW_STRUCT); - this.state = 3528; + this.state = 3532; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.LT: { - this.state = 3515; + this.state = 3519; this.match(SparkSqlParser.LT); - this.state = 3524; + this.state = 3528; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294967040) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4294967295) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 4160749567) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 4294967295) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967295) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294967279) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4294967295) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294967167) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294967295) !== 0) || ((((_la - 378)) & ~0x1F) === 0 && ((1 << (_la - 378)) & 3073) !== 0)) { { - this.state = 3516; + this.state = 3520; this.complexColType(); - this.state = 3521; + this.state = 3525; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3517; + this.state = 3521; this.match(SparkSqlParser.COMMA); - this.state = 3518; + this.state = 3522; this.complexColType(); } } - this.state = 3523; + this.state = 3527; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3526; + this.state = 3530; this.match(SparkSqlParser.GT); } break; case SparkSqlParser.NEQ: { - this.state = 3527; + this.state = 3531; this.match(SparkSqlParser.NEQ); } break; @@ -16716,9 +16733,9 @@ export class SparkSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3530; + this.state = 3534; this.match(SparkSqlParser.KW_INTERVAL); - this.state = 3531; + this.state = 3535; _la = this.tokenStream.LA(1); if(!(_la === 186 || _la === 348)) { this.errorHandler.recoverInline(this); @@ -16727,14 +16744,14 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3534; + this.state = 3538; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 471, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 472, this.context) ) { case 1: { - this.state = 3532; + this.state = 3536; this.match(SparkSqlParser.KW_TO); - this.state = 3533; + this.state = 3537; this.match(SparkSqlParser.KW_MONTH); } break; @@ -16744,9 +16761,9 @@ export class SparkSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3536; + this.state = 3540; this.match(SparkSqlParser.KW_INTERVAL); - this.state = 3537; + this.state = 3541; _la = this.tokenStream.LA(1); if(!(_la === 67 || _la === 134 || _la === 184 || _la === 259)) { this.errorHandler.recoverInline(this); @@ -16755,14 +16772,14 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3540; + this.state = 3544; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 472, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 473, this.context) ) { case 1: { - this.state = 3538; + this.state = 3542; this.match(SparkSqlParser.KW_TO); - this.state = 3539; + this.state = 3543; _la = this.tokenStream.LA(1); if(!(_la === 134 || _la === 184 || _la === 259)) { this.errorHandler.recoverInline(this); @@ -16779,34 +16796,34 @@ export class SparkSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3542; + this.state = 3546; this.type_(); - this.state = 3553; + this.state = 3557; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 474, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 475, this.context) ) { case 1: { - this.state = 3543; + this.state = 3547; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3544; + this.state = 3548; this.match(SparkSqlParser.INTEGER_VALUE); - this.state = 3549; + this.state = 3553; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3545; + this.state = 3549; this.match(SparkSqlParser.COMMA); - this.state = 3546; + this.state = 3550; this.match(SparkSqlParser.INTEGER_VALUE); } } - this.state = 3551; + this.state = 3555; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 3552; + this.state = 3556; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -16836,21 +16853,21 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3557; + this.state = 3561; this.qualifiedColTypeWithPositionForAdd(); - this.state = 3562; + this.state = 3566; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3558; + this.state = 3562; this.match(SparkSqlParser.COMMA); - this.state = 3559; + this.state = 3563; this.qualifiedColTypeWithPositionForAdd(); } } - this.state = 3564; + this.state = 3568; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16877,25 +16894,25 @@ export class SparkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3565; + this.state = 3569; localContext._name = this.columnNameCreate(); - this.state = 3566; - this.dataType(); this.state = 3570; + this.dataType(); + this.state = 3574; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 477, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 478, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3567; + this.state = 3571; this.colDefinitionDescriptorWithPosition(); } } } - this.state = 3572; + this.state = 3576; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 477, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 478, this.context); } } } @@ -16920,21 +16937,21 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3573; + this.state = 3577; this.qualifiedColTypeWithPositionForReplace(); - this.state = 3578; + this.state = 3582; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3574; + this.state = 3578; this.match(SparkSqlParser.COMMA); - this.state = 3575; + this.state = 3579; this.qualifiedColTypeWithPositionForReplace(); } } - this.state = 3580; + this.state = 3584; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16961,21 +16978,21 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3581; + this.state = 3585; localContext._name = this.columnName(); - this.state = 3582; - this.dataType(); this.state = 3586; + this.dataType(); + this.state = 3590; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 9 || _la === 51 || _la === 82 || _la === 116 || _la === 197) { { { - this.state = 3583; + this.state = 3587; this.colDefinitionDescriptorWithPosition(); } } - this.state = 3588; + this.state = 3592; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -16999,33 +17016,33 @@ export class SparkSqlParser extends SQLParserBase { let localContext = new ColDefinitionDescriptorWithPositionContext(this.context, this.state); this.enterRule(localContext, 314, SparkSqlParser.RULE_colDefinitionDescriptorWithPosition); try { - this.state = 3596; + this.state = 3600; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_NOT: this.enterOuterAlt(localContext, 1); { - this.state = 3589; + this.state = 3593; this.match(SparkSqlParser.KW_NOT); - this.state = 3590; + this.state = 3594; this.match(SparkSqlParser.KW_NULL); } break; case SparkSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 3591; + this.state = 3595; this.match(SparkSqlParser.KW_DEFAULT); - this.state = 3592; + this.state = 3596; this.expression(); } break; case SparkSqlParser.KW_COMMENT: this.enterOuterAlt(localContext, 3); { - this.state = 3593; + this.state = 3597; this.match(SparkSqlParser.KW_COMMENT); - this.state = 3594; + this.state = 3598; localContext._comment = this.stringLit(); } break; @@ -17033,7 +17050,7 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_FIRST: this.enterOuterAlt(localContext, 4); { - this.state = 3595; + this.state = 3599; this.colPosition(); } break; @@ -17062,7 +17079,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3598; + this.state = 3602; _la = this.tokenStream.LA(1); if(!(_la === 82 || _la === 352)) { this.errorHandler.recoverInline(this); @@ -17071,7 +17088,7 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3599; + this.state = 3603; this.expression(); } } @@ -17096,25 +17113,25 @@ export class SparkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3601; + this.state = 3605; this.columnType(); - this.state = 3606; + this.state = 3610; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 481, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 482, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3602; + this.state = 3606; this.match(SparkSqlParser.COMMA); - this.state = 3603; + this.state = 3607; this.columnType(); } } } - this.state = 3608; + this.state = 3612; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 481, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 482, this.context); } } } @@ -17138,30 +17155,30 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3609; + this.state = 3613; localContext._colName = this.errorCapturingIdentifier(); - this.state = 3610; + this.state = 3614; this.dataType(); - this.state = 3613; + this.state = 3617; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 482, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 483, this.context) ) { case 1: { - this.state = 3611; + this.state = 3615; this.match(SparkSqlParser.KW_NOT); - this.state = 3612; + this.state = 3616; this.match(SparkSqlParser.KW_NULL); } break; } - this.state = 3617; + this.state = 3621; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 483, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 484, this.context) ) { case 1: { - this.state = 3615; + this.state = 3619; this.match(SparkSqlParser.KW_COMMENT); - this.state = 3616; + this.state = 3620; localContext._comment = this.stringLit(); } break; @@ -17189,21 +17206,21 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3619; + this.state = 3623; this.createOrReplaceTableColType(); - this.state = 3624; + this.state = 3628; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3620; + this.state = 3624; this.match(SparkSqlParser.COMMA); - this.state = 3621; + this.state = 3625; this.createOrReplaceTableColType(); } } - this.state = 3626; + this.state = 3630; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17230,21 +17247,21 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3627; + this.state = 3631; localContext._colName = this.columnNameCreate(); - this.state = 3628; - localContext._colType = this.dataType(); this.state = 3632; + localContext._colType = this.dataType(); + this.state = 3636; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 51 || _la === 82 || _la === 127 || _la === 197) { { { - this.state = 3629; + this.state = 3633; this.colDefinitionOption(); } } - this.state = 3634; + this.state = 3638; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17268,50 +17285,50 @@ export class SparkSqlParser extends SQLParserBase { let localContext = new ColDefinitionOptionContext(this.context, this.state); this.enterRule(localContext, 326, SparkSqlParser.RULE_colDefinitionOption); try { - this.state = 3648; + this.state = 3652; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_NOT: this.enterOuterAlt(localContext, 1); { - this.state = 3635; + this.state = 3639; this.match(SparkSqlParser.KW_NOT); - this.state = 3636; + this.state = 3640; this.match(SparkSqlParser.KW_NULL); } break; case SparkSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 2); { - this.state = 3637; + this.state = 3641; this.match(SparkSqlParser.KW_DEFAULT); - this.state = 3638; + this.state = 3642; this.expression(); } break; case SparkSqlParser.KW_GENERATED: this.enterOuterAlt(localContext, 3); { - this.state = 3639; + this.state = 3643; this.match(SparkSqlParser.KW_GENERATED); - this.state = 3640; + this.state = 3644; this.match(SparkSqlParser.KW_ALWAYS); - this.state = 3641; + this.state = 3645; this.match(SparkSqlParser.KW_AS); - this.state = 3642; + this.state = 3646; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3643; + this.state = 3647; this.expression(); - this.state = 3644; + this.state = 3648; this.match(SparkSqlParser.RIGHT_PAREN); } break; case SparkSqlParser.KW_COMMENT: this.enterOuterAlt(localContext, 4); { - this.state = 3646; + this.state = 3650; this.match(SparkSqlParser.KW_COMMENT); - this.state = 3647; + this.state = 3651; localContext._comment = this.stringLit(); } break; @@ -17340,40 +17357,40 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3650; + this.state = 3654; this.identifier(); - this.state = 3652; + this.state = 3656; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 371) { { - this.state = 3651; + this.state = 3655; this.match(SparkSqlParser.COLON); } } - this.state = 3654; + this.state = 3658; this.dataType(); - this.state = 3657; + this.state = 3661; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 197) { { - this.state = 3655; + this.state = 3659; this.match(SparkSqlParser.KW_NOT); - this.state = 3656; + this.state = 3660; this.match(SparkSqlParser.KW_NULL); } } - this.state = 3661; + this.state = 3665; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 51) { { - this.state = 3659; + this.state = 3663; this.match(SparkSqlParser.KW_COMMENT); - this.state = 3660; + this.state = 3664; localContext._comment = this.stringLit(); } } @@ -17400,13 +17417,13 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3663; + this.state = 3667; this.match(SparkSqlParser.KW_WHEN); - this.state = 3664; + this.state = 3668; localContext._condition = this.expression(); - this.state = 3665; + this.state = 3669; this.match(SparkSqlParser.KW_THEN); - this.state = 3666; + this.state = 3670; localContext._result = this.expression(); } } @@ -17431,35 +17448,35 @@ export class SparkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3668; + this.state = 3672; this.match(SparkSqlParser.KW_WINDOW); - this.state = 3669; + this.state = 3673; localContext._name = this.errorCapturingIdentifier(); - this.state = 3670; + this.state = 3674; this.match(SparkSqlParser.KW_AS); - this.state = 3671; + this.state = 3675; this.windowSpec(); - this.state = 3679; + this.state = 3683; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 490, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 491, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3672; + this.state = 3676; this.match(SparkSqlParser.COMMA); - this.state = 3673; + this.state = 3677; localContext._name = this.errorCapturingIdentifier(); - this.state = 3674; + this.state = 3678; this.match(SparkSqlParser.KW_AS); - this.state = 3675; + this.state = 3679; this.windowSpec(); } } } - this.state = 3681; + this.state = 3685; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 490, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 491, this.context); } } } @@ -17483,11 +17500,11 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3682; + this.state = 3686; this.match(SparkSqlParser.KW_ZORDER); - this.state = 3683; + this.state = 3687; this.match(SparkSqlParser.KW_BY); - this.state = 3684; + this.state = 3688; this.columnNameSeq(); } } @@ -17510,58 +17527,58 @@ export class SparkSqlParser extends SQLParserBase { this.enterRule(localContext, 336, SparkSqlParser.RULE_windowSpec); let _la: number; try { - this.state = 3725; + this.state = 3729; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 497, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 498, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3686; + this.state = 3690; localContext._name = this.errorCapturingIdentifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3687; + this.state = 3691; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3688; + this.state = 3692; localContext._name = this.errorCapturingIdentifier(); - this.state = 3689; + this.state = 3693; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3691; + this.state = 3695; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3719; + this.state = 3723; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case SparkSqlParser.KW_CLUSTER: { - this.state = 3692; + this.state = 3696; this.match(SparkSqlParser.KW_CLUSTER); - this.state = 3693; + this.state = 3697; this.match(SparkSqlParser.KW_BY); - this.state = 3694; + this.state = 3698; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); - this.state = 3699; + this.state = 3703; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3695; + this.state = 3699; this.match(SparkSqlParser.COMMA); - this.state = 3696; + this.state = 3700; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); } } - this.state = 3701; + this.state = 3705; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17575,12 +17592,12 @@ export class SparkSqlParser extends SQLParserBase { case SparkSqlParser.KW_ROWS: case SparkSqlParser.KW_SORT: { - this.state = 3712; + this.state = 3716; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93 || _la === 217) { { - this.state = 3702; + this.state = 3706; _la = this.tokenStream.LA(1); if(!(_la === 93 || _la === 217)) { this.errorHandler.recoverInline(this); @@ -17589,37 +17606,37 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3703; + this.state = 3707; this.match(SparkSqlParser.KW_BY); - this.state = 3704; + this.state = 3708; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); - this.state = 3709; + this.state = 3713; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3705; + this.state = 3709; this.match(SparkSqlParser.COMMA); - this.state = 3706; + this.state = 3710; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); } } - this.state = 3711; + this.state = 3715; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 3717; + this.state = 3721; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 209 || _la === 278) { { - this.state = 3714; + this.state = 3718; _la = this.tokenStream.LA(1); if(!(_la === 209 || _la === 278)) { this.errorHandler.recoverInline(this); @@ -17628,9 +17645,9 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3715; + this.state = 3719; this.match(SparkSqlParser.KW_BY); - this.state = 3716; + this.state = 3720; this.orderOrSortByClause(); } } @@ -17640,17 +17657,17 @@ export class SparkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3722; + this.state = 3726; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 233 || _la === 258) { { - this.state = 3721; + this.state = 3725; this.windowFrame(); } } - this.state = 3724; + this.state = 3728; this.match(SparkSqlParser.RIGHT_PAREN); } break; @@ -17675,13 +17692,13 @@ export class SparkSqlParser extends SQLParserBase { this.enterRule(localContext, 338, SparkSqlParser.RULE_windowFrame); let _la: number; try { - this.state = 3735; + this.state = 3739; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 498, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 499, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3727; + this.state = 3731; localContext._frameType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 233 || _la === 258)) { @@ -17691,14 +17708,14 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3728; + this.state = 3732; localContext._start_ = this.frameBound(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3729; + this.state = 3733; localContext._frameType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 233 || _la === 258)) { @@ -17708,13 +17725,13 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3730; + this.state = 3734; this.match(SparkSqlParser.KW_BETWEEN); - this.state = 3731; + this.state = 3735; localContext._start_ = this.frameBound(); - this.state = 3732; + this.state = 3736; this.match(SparkSqlParser.KW_AND); - this.state = 3733; + this.state = 3737; localContext._end = this.frameBound(); } break; @@ -17739,15 +17756,15 @@ export class SparkSqlParser extends SQLParserBase { this.enterRule(localContext, 340, SparkSqlParser.RULE_frameBound); let _la: number; try { - this.state = 3744; + this.state = 3748; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 499, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 500, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3737; + this.state = 3741; this.match(SparkSqlParser.KW_UNBOUNDED); - this.state = 3738; + this.state = 3742; localContext._boundType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 118 || _la === 226)) { @@ -17762,18 +17779,18 @@ export class SparkSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3739; + this.state = 3743; localContext._boundType = this.match(SparkSqlParser.KW_CURRENT); - this.state = 3740; + this.state = 3744; this.match(SparkSqlParser.KW_ROW); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3741; + this.state = 3745; this.expression(); - this.state = 3742; + this.state = 3746; localContext._boundType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 118 || _la === 226)) { @@ -17808,21 +17825,21 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3746; + this.state = 3750; this.qualifiedName(); - this.state = 3751; + this.state = 3755; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); while (_la === 4) { { { - this.state = 3747; + this.state = 3751; this.match(SparkSqlParser.COMMA); - this.state = 3748; + this.state = 3752; this.qualifiedName(); } } - this.state = 3753; + this.state = 3757; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -17846,47 +17863,47 @@ export class SparkSqlParser extends SQLParserBase { let localContext = new FunctionNameContext(this.context, this.state); this.enterRule(localContext, 344, SparkSqlParser.RULE_functionName); try { - this.state = 3763; + this.state = 3767; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 501, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 502, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3754; + this.state = 3758; this.match(SparkSqlParser.KW_IDENTIFIER); - this.state = 3755; + this.state = 3759; this.match(SparkSqlParser.LEFT_PAREN); - this.state = 3756; + this.state = 3760; this.expression(); - this.state = 3757; + this.state = 3761; this.match(SparkSqlParser.RIGHT_PAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3759; + this.state = 3763; this.qualifiedName(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3760; + this.state = 3764; this.match(SparkSqlParser.KW_FILTER); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3761; + this.state = 3765; this.match(SparkSqlParser.KW_LEFT); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3762; + this.state = 3766; this.match(SparkSqlParser.KW_RIGHT); } break; @@ -17912,7 +17929,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3765; + this.state = 3769; this.qualifiedName(); } } @@ -17937,25 +17954,25 @@ export class SparkSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 3767; + this.state = 3771; this.identifier(); - this.state = 3772; + this.state = 3776; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 502, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 503, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 3768; + this.state = 3772; this.match(SparkSqlParser.DOT); - this.state = 3769; + this.state = 3773; this.identifier(); } } } - this.state = 3774; + this.state = 3778; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 502, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 503, this.context); } } } @@ -17979,9 +17996,9 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3775; + this.state = 3779; this.identifier(); - this.state = 3776; + this.state = 3780; this.errorCapturingIdentifierExtra(); } } @@ -18004,13 +18021,13 @@ export class SparkSqlParser extends SQLParserBase { this.enterRule(localContext, 352, SparkSqlParser.RULE_errorCapturingIdentifierExtra); try { let alternative: number; - this.state = 3785; + this.state = 3789; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 504, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 505, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3780; + this.state = 3784; this.errorHandler.sync(this); alternative = 1; do { @@ -18018,9 +18035,9 @@ export class SparkSqlParser extends SQLParserBase { case 1: { { - this.state = 3778; + this.state = 3782; this.match(SparkSqlParser.MINUS); - this.state = 3779; + this.state = 3783; this.identifier(); } } @@ -18028,9 +18045,9 @@ export class SparkSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 3782; + this.state = 3786; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 503, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 504, this.context); } while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER); } break; @@ -18060,20 +18077,20 @@ export class SparkSqlParser extends SQLParserBase { let localContext = new IdentifierContext(this.context, this.state); this.enterRule(localContext, 354, SparkSqlParser.RULE_identifier); try { - this.state = 3789; + this.state = 3793; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 505, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 506, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3787; + this.state = 3791; this.strictIdentifier(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3788; + this.state = 3792; this.strictNonReserved(); } break; @@ -18097,34 +18114,34 @@ export class SparkSqlParser extends SQLParserBase { let localContext = new StrictIdentifierContext(this.context, this.state); this.enterRule(localContext, 356, SparkSqlParser.RULE_strictIdentifier); try { - this.state = 3795; + this.state = 3799; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 506, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 507, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3791; + this.state = 3795; this.match(SparkSqlParser.IDENTIFIER); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3792; + this.state = 3796; this.quotedIdentifier(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3793; + this.state = 3797; this.ansiNonReserved(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3794; + this.state = 3798; this.nonReserved(); } break; @@ -18151,7 +18168,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3797; + this.state = 3801; _la = this.tokenStream.LA(1); if(!(_la === 378 || _la === 389)) { this.errorHandler.recoverInline(this); @@ -18183,17 +18200,17 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3800; + this.state = 3804; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 362) { { - this.state = 3799; + this.state = 3803; this.match(SparkSqlParser.MINUS); } } - this.state = 3802; + this.state = 3806; _la = this.tokenStream.LA(1); if(!(((((_la - 379)) & ~0x1F) === 0 && ((1 << (_la - 379)) & 511) !== 0))) { this.errorHandler.recoverInline(this); @@ -18223,38 +18240,38 @@ export class SparkSqlParser extends SQLParserBase { this.enterRule(localContext, 362, SparkSqlParser.RULE_alterColumnAction); let _la: number; try { - this.state = 3817; + this.state = 3821; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 508, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 509, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 3804; + this.state = 3808; this.match(SparkSqlParser.KW_TYPE); - this.state = 3805; + this.state = 3809; this.dataType(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 3806; + this.state = 3810; this.match(SparkSqlParser.KW_COMMENT); - this.state = 3807; + this.state = 3811; localContext._comment = this.stringLit(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 3808; + this.state = 3812; this.colPosition(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 3809; + this.state = 3813; localContext._setOrDrop = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 96 || _la === 269)) { @@ -18264,29 +18281,29 @@ export class SparkSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 3810; + this.state = 3814; this.match(SparkSqlParser.KW_NOT); - this.state = 3811; + this.state = 3815; this.match(SparkSqlParser.KW_NULL); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 3812; + this.state = 3816; this.match(SparkSqlParser.KW_SET); - this.state = 3813; + this.state = 3817; this.match(SparkSqlParser.KW_DEFAULT); - this.state = 3814; + this.state = 3818; this.expression(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 3815; + this.state = 3819; localContext._dropDefault = this.match(SparkSqlParser.KW_DROP); - this.state = 3816; + this.state = 3820; this.match(SparkSqlParser.KW_DEFAULT); } break; @@ -18313,7 +18330,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3819; + this.state = 3823; _la = this.tokenStream.LA(1); if(!(_la === 377 || _la === 378)) { this.errorHandler.recoverInline(this); @@ -18345,7 +18362,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3821; + this.state = 3825; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 4017011456) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 1711111143) !== 0) || ((((_la - 67)) & ~0x1F) === 0 && ((1 << (_la - 67)) & 3187671039) !== 0) || ((((_la - 101)) & ~0x1F) === 0 && ((1 << (_la - 101)) & 1328796669) !== 0) || ((((_la - 133)) & ~0x1F) === 0 && ((1 << (_la - 133)) & 3316086655) !== 0) || ((((_la - 165)) & ~0x1F) === 0 && ((1 << (_la - 165)) & 1610612735) !== 0) || ((((_la - 199)) & ~0x1F) === 0 && ((1 << (_la - 199)) & 4020201927) !== 0) || ((((_la - 231)) & ~0x1F) === 0 && ((1 << (_la - 231)) & 4294442751) !== 0) || ((((_la - 264)) & ~0x1F) === 0 && ((1 << (_la - 264)) & 3758088175) !== 0) || ((((_la - 296)) & ~0x1F) === 0 && ((1 << (_la - 296)) & 3355402191) !== 0) || ((((_la - 328)) & ~0x1F) === 0 && ((1 << (_la - 328)) & 15892455) !== 0))) { this.errorHandler.recoverInline(this); @@ -18377,7 +18394,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3823; + this.state = 3827; _la = this.tokenStream.LA(1); if(!(_la === 15 || _la === 60 || _la === 102 || _la === 124 || ((((_la - 144)) & ~0x1F) === 0 && ((1 << (_la - 144)) & 149521) !== 0) || _la === 194 || _la === 203 || ((((_la - 250)) & ~0x1F) === 0 && ((1 << (_la - 250)) & 1064961) !== 0) || _la === 323 || _la === 332)) { this.errorHandler.recoverInline(this); @@ -18409,7 +18426,7 @@ export class SparkSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 3825; + this.state = 3829; _la = this.tokenStream.LA(1); if(!((((_la) & ~0x1F) === 0 && ((1 << _la) & 4294934272) !== 0) || ((((_la - 32)) & ~0x1F) === 0 && ((1 << (_la - 32)) & 4026531839) !== 0) || ((((_la - 64)) & ~0x1F) === 0 && ((1 << (_la - 64)) & 4294967295) !== 0) || ((((_la - 96)) & ~0x1F) === 0 && ((1 << (_la - 96)) & 3892314047) !== 0) || ((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 3085893631) !== 0) || ((((_la - 160)) & ~0x1F) === 0 && ((1 << (_la - 160)) & 4294967293) !== 0) || ((((_la - 192)) & ~0x1F) === 0 && ((1 << (_la - 192)) & 4294965227) !== 0) || ((((_la - 224)) & ~0x1F) === 0 && ((1 << (_la - 224)) & 4227858431) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 4294950527) !== 0) || ((((_la - 288)) & ~0x1F) === 0 && ((1 << (_la - 288)) & 4294967263) !== 0) || ((((_la - 320)) & ~0x1F) === 0 && ((1 << (_la - 320)) & 4294963191) !== 0))) { this.errorHandler.recoverInline(this); @@ -18445,6 +18462,8 @@ export class SparkSqlParser extends SQLParserBase { return this.queryTerm_sempred(localContext as QueryTermContext, predIndex); case 112: return this.multipartIdentifierAllowEmpty_sempred(localContext as MultipartIdentifierAllowEmptyContext, predIndex); + case 120: + return this.namedExpression_sempred(localContext as NamedExpressionContext, predIndex); case 131: return this.booleanExpression_sempred(localContext as BooleanExpressionContext, predIndex); case 133: @@ -18486,44 +18505,51 @@ export class SparkSqlParser extends SQLParserBase { } return true; } - private booleanExpression_sempred(localContext: BooleanExpressionContext | null, predIndex: number): boolean { + private namedExpression_sempred(localContext: NamedExpressionContext | null, predIndex: number): boolean { switch (predIndex) { case 6: - return this.precpred(this.context, 2); + return this.shouldMatchEmpty(); + } + return true; + } + private booleanExpression_sempred(localContext: BooleanExpressionContext | null, predIndex: number): boolean { + switch (predIndex) { case 7: + return this.precpred(this.context, 2); + case 8: return this.precpred(this.context, 1); } return true; } private valueExpression_sempred(localContext: ValueExpressionContext | null, predIndex: number): boolean { switch (predIndex) { - case 8: - return this.precpred(this.context, 6); case 9: - return this.precpred(this.context, 5); + return this.precpred(this.context, 6); case 10: - return this.precpred(this.context, 4); + return this.precpred(this.context, 5); case 11: - return this.precpred(this.context, 3); + return this.precpred(this.context, 4); case 12: - return this.precpred(this.context, 2); + return this.precpred(this.context, 3); case 13: + return this.precpred(this.context, 2); + case 14: return this.precpred(this.context, 1); } return true; } private primaryExpression_sempred(localContext: PrimaryExpressionContext | null, predIndex: number): boolean { switch (predIndex) { - case 14: - return this.precpred(this.context, 9); case 15: + return this.precpred(this.context, 9); + case 16: return this.precpred(this.context, 7); } return true; } public static readonly _serializedATN: number[] = [ - 4,1,393,3828,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,393,3832,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, @@ -18772,424 +18798,425 @@ export class SparkSqlParser extends SQLParserBase { 1,116,1,116,1,116,3,116,2895,8,116,1,116,1,116,1,117,1,117,1,118, 1,118,1,119,1,119,1,119,5,119,2906,8,119,10,119,12,119,2909,9,119, 1,119,1,119,1,120,1,120,1,120,3,120,2916,8,120,1,120,3,120,2919, - 8,120,1,120,1,120,3,120,2923,8,120,3,120,2925,8,120,1,121,1,121, - 1,121,5,121,2930,8,121,10,121,12,121,2933,9,121,1,122,1,122,1,123, - 1,123,1,123,1,123,5,123,2941,8,123,10,123,12,123,2944,9,123,1,123, - 1,123,1,124,1,124,3,124,2950,8,124,1,125,1,125,1,125,1,125,1,125, - 1,125,5,125,2958,8,125,10,125,12,125,2961,9,125,1,125,1,125,3,125, - 2965,8,125,1,126,1,126,3,126,2969,8,126,1,127,1,127,1,128,1,128, - 1,128,1,128,1,129,1,129,3,129,2979,8,129,1,130,1,130,1,130,5,130, - 2984,8,130,10,130,12,130,2987,9,130,1,131,1,131,1,131,1,131,1,131, - 1,131,1,131,1,131,1,131,1,131,3,131,2999,8,131,3,131,3001,8,131, - 1,131,1,131,1,131,1,131,1,131,1,131,5,131,3009,8,131,10,131,12,131, - 3012,9,131,1,132,3,132,3015,8,132,1,132,1,132,1,132,1,132,1,132, - 1,132,3,132,3023,8,132,1,132,1,132,1,132,1,132,1,132,5,132,3030, - 8,132,10,132,12,132,3033,9,132,1,132,1,132,1,132,3,132,3038,8,132, - 1,132,1,132,1,132,1,132,1,132,1,132,3,132,3046,8,132,1,132,1,132, - 1,132,3,132,3051,8,132,1,132,1,132,1,132,1,132,1,132,1,132,1,132, - 1,132,5,132,3061,8,132,10,132,12,132,3064,9,132,1,132,1,132,3,132, - 3068,8,132,1,132,3,132,3071,8,132,1,132,1,132,1,132,1,132,3,132, - 3077,8,132,1,132,1,132,3,132,3081,8,132,1,132,1,132,1,132,3,132, - 3086,8,132,1,132,1,132,1,132,3,132,3091,8,132,1,132,1,132,1,132, - 3,132,3096,8,132,1,133,1,133,1,133,1,133,3,133,3102,8,133,1,133, + 8,120,1,120,1,120,3,120,2923,8,120,3,120,2925,8,120,1,120,1,120, + 3,120,2929,8,120,1,121,1,121,1,121,5,121,2934,8,121,10,121,12,121, + 2937,9,121,1,122,1,122,1,123,1,123,1,123,1,123,5,123,2945,8,123, + 10,123,12,123,2948,9,123,1,123,1,123,1,124,1,124,3,124,2954,8,124, + 1,125,1,125,1,125,1,125,1,125,1,125,5,125,2962,8,125,10,125,12,125, + 2965,9,125,1,125,1,125,3,125,2969,8,125,1,126,1,126,3,126,2973,8, + 126,1,127,1,127,1,128,1,128,1,128,1,128,1,129,1,129,3,129,2983,8, + 129,1,130,1,130,1,130,5,130,2988,8,130,10,130,12,130,2991,9,130, + 1,131,1,131,1,131,1,131,1,131,1,131,1,131,1,131,1,131,1,131,3,131, + 3003,8,131,3,131,3005,8,131,1,131,1,131,1,131,1,131,1,131,1,131, + 5,131,3013,8,131,10,131,12,131,3016,9,131,1,132,3,132,3019,8,132, + 1,132,1,132,1,132,1,132,1,132,1,132,3,132,3027,8,132,1,132,1,132, + 1,132,1,132,1,132,5,132,3034,8,132,10,132,12,132,3037,9,132,1,132, + 1,132,1,132,3,132,3042,8,132,1,132,1,132,1,132,1,132,1,132,1,132, + 3,132,3050,8,132,1,132,1,132,1,132,3,132,3055,8,132,1,132,1,132, + 1,132,1,132,1,132,1,132,1,132,1,132,5,132,3065,8,132,10,132,12,132, + 3068,9,132,1,132,1,132,3,132,3072,8,132,1,132,3,132,3075,8,132,1, + 132,1,132,1,132,1,132,3,132,3081,8,132,1,132,1,132,3,132,3085,8, + 132,1,132,1,132,1,132,3,132,3090,8,132,1,132,1,132,1,132,3,132,3095, + 8,132,1,132,1,132,1,132,3,132,3100,8,132,1,133,1,133,1,133,1,133, + 3,133,3106,8,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133, 1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,133, - 1,133,1,133,1,133,1,133,1,133,1,133,1,133,5,133,3123,8,133,10,133, - 12,133,3126,9,133,1,134,1,134,1,135,1,135,1,135,1,135,1,135,1,135, - 3,135,3136,8,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135, - 1,135,1,135,3,135,3148,8,135,1,135,1,135,1,135,1,135,1,135,1,135, - 1,135,1,135,4,135,3158,8,135,11,135,12,135,3159,1,135,1,135,3,135, - 3164,8,135,1,135,1,135,1,135,1,135,1,135,4,135,3171,8,135,11,135, - 12,135,3172,1,135,1,135,3,135,3177,8,135,1,135,1,135,1,135,1,135, - 1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,5,135, - 3193,8,135,10,135,12,135,3196,9,135,3,135,3198,8,135,1,135,1,135, - 1,135,1,135,1,135,1,135,3,135,3206,8,135,1,135,1,135,1,135,1,135, - 1,135,1,135,1,135,3,135,3215,8,135,1,135,1,135,1,135,1,135,1,135, - 1,135,1,135,3,135,3224,8,135,1,135,1,135,1,135,1,135,1,135,1,135, + 5,133,3127,8,133,10,133,12,133,3130,9,133,1,134,1,134,1,135,1,135, + 1,135,1,135,1,135,1,135,3,135,3140,8,135,1,135,1,135,1,135,1,135, + 1,135,1,135,1,135,1,135,1,135,1,135,3,135,3152,8,135,1,135,1,135, + 1,135,1,135,1,135,1,135,1,135,1,135,4,135,3162,8,135,11,135,12,135, + 3163,1,135,1,135,3,135,3168,8,135,1,135,1,135,1,135,1,135,1,135, + 4,135,3175,8,135,11,135,12,135,3176,1,135,1,135,3,135,3181,8,135, 1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135, - 1,135,1,135,4,135,3245,8,135,11,135,12,135,3246,1,135,1,135,1,135, + 1,135,1,135,1,135,5,135,3197,8,135,10,135,12,135,3200,9,135,3,135, + 3202,8,135,1,135,1,135,1,135,1,135,1,135,1,135,3,135,3210,8,135, + 1,135,1,135,1,135,1,135,1,135,1,135,1,135,3,135,3219,8,135,1,135, + 1,135,1,135,1,135,1,135,1,135,1,135,3,135,3228,8,135,1,135,1,135, 1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135, - 3,135,3263,8,135,1,135,1,135,1,135,5,135,3268,8,135,10,135,12,135, - 3271,9,135,3,135,3273,8,135,1,135,1,135,1,135,1,135,1,135,1,135, - 1,135,3,135,3282,8,135,1,135,1,135,3,135,3286,8,135,1,135,1,135, - 3,135,3290,8,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135, - 4,135,3300,8,135,11,135,12,135,3301,1,135,1,135,1,135,1,135,1,135, + 1,135,1,135,1,135,1,135,1,135,1,135,4,135,3249,8,135,11,135,12,135, + 3250,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135, + 1,135,1,135,1,135,1,135,3,135,3267,8,135,1,135,1,135,1,135,5,135, + 3272,8,135,10,135,12,135,3275,9,135,3,135,3277,8,135,1,135,1,135, + 1,135,1,135,1,135,1,135,1,135,3,135,3286,8,135,1,135,1,135,3,135, + 3290,8,135,1,135,1,135,3,135,3294,8,135,1,135,1,135,1,135,1,135, + 1,135,1,135,1,135,1,135,4,135,3304,8,135,11,135,12,135,3305,1,135, 1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135, - 1,135,1,135,1,135,1,135,1,135,1,135,1,135,3,135,3327,8,135,1,135, - 1,135,1,135,1,135,1,135,3,135,3334,8,135,1,135,3,135,3337,8,135, 1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135, - 1,135,1,135,3,135,3352,8,135,1,135,1,135,1,135,1,135,1,135,1,135, + 3,135,3331,8,135,1,135,1,135,1,135,1,135,1,135,3,135,3338,8,135, + 1,135,3,135,3341,8,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135, + 1,135,1,135,1,135,1,135,1,135,1,135,3,135,3356,8,135,1,135,1,135, 1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135, - 1,135,1,135,3,135,3373,8,135,1,135,1,135,3,135,3377,8,135,3,135, - 3379,8,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,1,135,5,135, - 3389,8,135,10,135,12,135,3392,9,135,1,136,1,136,1,136,1,136,1,136, - 1,136,1,136,3,136,3401,8,136,1,137,1,137,1,137,1,137,1,137,1,137, - 1,137,1,137,1,137,1,137,1,137,4,137,3414,8,137,11,137,12,137,3415, - 3,137,3418,8,137,1,138,1,138,1,139,1,139,1,140,1,140,1,141,1,141, - 1,142,1,142,1,142,3,142,3431,8,142,1,143,1,143,3,143,3435,8,143, - 1,144,1,144,1,144,4,144,3440,8,144,11,144,12,144,3441,1,145,1,145, - 1,145,3,145,3447,8,145,1,146,1,146,1,146,1,146,1,146,1,147,3,147, - 3455,8,147,1,147,1,147,1,147,3,147,3460,8,147,1,148,1,148,1,149, - 1,149,1,150,1,150,1,150,3,150,3469,8,150,1,151,1,151,1,151,1,151, + 1,135,1,135,1,135,1,135,1,135,1,135,3,135,3377,8,135,1,135,1,135, + 3,135,3381,8,135,3,135,3383,8,135,1,135,1,135,1,135,1,135,1,135, + 1,135,1,135,1,135,5,135,3393,8,135,10,135,12,135,3396,9,135,1,136, + 1,136,1,136,1,136,1,136,1,136,1,136,3,136,3405,8,136,1,137,1,137, + 1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,4,137,3418, + 8,137,11,137,12,137,3419,3,137,3422,8,137,1,138,1,138,1,139,1,139, + 1,140,1,140,1,141,1,141,1,142,1,142,1,142,3,142,3435,8,142,1,143, + 1,143,3,143,3439,8,143,1,144,1,144,1,144,4,144,3444,8,144,11,144, + 12,144,3445,1,145,1,145,1,145,3,145,3451,8,145,1,146,1,146,1,146, + 1,146,1,146,1,147,3,147,3459,8,147,1,147,1,147,1,147,3,147,3464, + 8,147,1,148,1,148,1,149,1,149,1,150,1,150,1,150,3,150,3473,8,150, 1,151,1,151,1,151,1,151,1,151,1,151,1,151,1,151,1,151,1,151,1,151, 1,151,1,151,1,151,1,151,1,151,1,151,1,151,1,151,1,151,1,151,1,151, - 1,151,1,151,1,151,1,151,3,151,3501,8,151,1,152,1,152,1,152,1,152, + 1,151,1,151,1,151,1,151,1,151,1,151,1,151,1,151,3,151,3505,8,151, 1,152,1,152,1,152,1,152,1,152,1,152,1,152,1,152,1,152,1,152,1,152, - 1,152,1,152,5,152,3520,8,152,10,152,12,152,3523,9,152,3,152,3525, - 8,152,1,152,1,152,3,152,3529,8,152,1,152,1,152,1,152,1,152,3,152, - 3535,8,152,1,152,1,152,1,152,1,152,3,152,3541,8,152,1,152,1,152, - 1,152,1,152,1,152,5,152,3548,8,152,10,152,12,152,3551,9,152,1,152, - 3,152,3554,8,152,3,152,3556,8,152,1,153,1,153,1,153,5,153,3561,8, - 153,10,153,12,153,3564,9,153,1,154,1,154,1,154,5,154,3569,8,154, - 10,154,12,154,3572,9,154,1,155,1,155,1,155,5,155,3577,8,155,10,155, - 12,155,3580,9,155,1,156,1,156,1,156,5,156,3585,8,156,10,156,12,156, - 3588,9,156,1,157,1,157,1,157,1,157,1,157,1,157,1,157,3,157,3597, - 8,157,1,158,1,158,1,158,1,159,1,159,1,159,5,159,3605,8,159,10,159, - 12,159,3608,9,159,1,160,1,160,1,160,1,160,3,160,3614,8,160,1,160, - 1,160,3,160,3618,8,160,1,161,1,161,1,161,5,161,3623,8,161,10,161, - 12,161,3626,9,161,1,162,1,162,1,162,5,162,3631,8,162,10,162,12,162, - 3634,9,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,3,163,3649,8,163,1,164,1,164,3,164,3653, - 8,164,1,164,1,164,1,164,3,164,3658,8,164,1,164,1,164,3,164,3662, - 8,164,1,165,1,165,1,165,1,165,1,165,1,166,1,166,1,166,1,166,1,166, - 1,166,1,166,1,166,1,166,5,166,3678,8,166,10,166,12,166,3681,9,166, - 1,167,1,167,1,167,1,167,1,168,1,168,1,168,1,168,1,168,1,168,1,168, - 1,168,1,168,1,168,1,168,5,168,3698,8,168,10,168,12,168,3701,9,168, - 1,168,1,168,1,168,1,168,1,168,5,168,3708,8,168,10,168,12,168,3711, - 9,168,3,168,3713,8,168,1,168,1,168,1,168,3,168,3718,8,168,3,168, - 3720,8,168,1,168,3,168,3723,8,168,1,168,3,168,3726,8,168,1,169,1, - 169,1,169,1,169,1,169,1,169,1,169,1,169,3,169,3736,8,169,1,170,1, - 170,1,170,1,170,1,170,1,170,1,170,3,170,3745,8,170,1,171,1,171,1, - 171,5,171,3750,8,171,10,171,12,171,3753,9,171,1,172,1,172,1,172, - 1,172,1,172,1,172,1,172,1,172,1,172,3,172,3764,8,172,1,173,1,173, - 1,174,1,174,1,174,5,174,3771,8,174,10,174,12,174,3774,9,174,1,175, - 1,175,1,175,1,176,1,176,4,176,3781,8,176,11,176,12,176,3782,1,176, - 3,176,3786,8,176,1,177,1,177,3,177,3790,8,177,1,178,1,178,1,178, - 1,178,3,178,3796,8,178,1,179,1,179,1,180,3,180,3801,8,180,1,180, - 1,180,1,181,1,181,1,181,1,181,1,181,1,181,1,181,1,181,1,181,1,181, - 1,181,1,181,1,181,3,181,3818,8,181,1,182,1,182,1,183,1,183,1,184, - 1,184,1,185,1,185,1,185,9,1138,1208,1216,1236,1263,1272,1281,1290, - 1338,4,100,262,266,270,186,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,0,76,2,0,78,78,229,229,2,0,34,34,247,247,3,0,73,73,191,191, - 262,262,2,0,123,123,140,140,2,0,11,11,39,39,2,0,91,91,98,98,5,0, - 46,46,58,58,108,108,122,122,173,173,3,0,10,10,290,290,331,331,1, - 0,86,87,2,0,108,108,122,122,3,0,8,8,96,96,289,289,2,0,8,8,167,167, - 1,0,335,336,2,0,59,59,96,96,2,0,129,129,249,249,6,0,54,54,129,129, - 143,143,172,172,228,228,313,313,3,0,11,11,59,59,96,96,4,0,107,107, - 139,139,171,171,326,326,2,0,171,171,326,326,3,0,45,45,275,275,279, - 279,2,0,45,45,275,275,3,0,18,18,103,103,320,320,3,0,72,72,190,190, - 261,261,4,0,102,102,148,148,270,270,323,323,3,0,102,102,270,270, - 323,323,2,0,21,21,86,86,2,0,116,116,157,157,2,0,292,292,337,337, - 2,0,291,291,303,303,2,0,61,61,256,256,2,0,104,104,141,141,2,0,10, - 10,92,92,2,0,15,15,264,264,2,0,124,124,250,250,2,0,382,382,384,384, - 2,0,93,93,217,217,2,0,209,209,278,278,2,0,197,197,360,360,1,0,251, - 252,1,0,163,164,3,0,10,10,16,16,277,277,3,0,111,111,316,316,325, - 325,2,0,361,362,366,366,2,0,94,94,363,365,2,0,361,362,369,369,11, - 0,67,67,69,69,134,134,180,180,182,182,184,184,186,186,231,231,259, - 259,341,341,348,348,4,0,63,63,65,66,268,268,331,331,2,0,74,75,306, - 306,3,0,76,77,302,302,307,307,2,0,36,36,318,318,2,0,138,138,246, - 246,1,0,287,288,2,0,4,4,123,123,2,0,4,4,119,119,3,0,28,28,160,160, - 311,311,1,0,220,221,1,0,352,359,2,0,94,94,361,370,4,0,14,14,140, - 140,197,197,208,208,2,0,111,111,316,316,1,0,361,362,7,0,67,68,134, - 135,180,187,192,193,259,260,341,342,348,349,6,0,67,67,134,134,184, - 184,186,186,259,259,348,348,2,0,186,186,348,348,4,0,67,67,134,134, - 184,184,259,259,3,0,134,134,184,184,259,259,2,0,82,82,352,352,2, - 0,233,233,258,258,2,0,118,118,226,226,2,0,378,378,389,389,1,0,379, - 387,2,0,96,96,269,269,1,0,377,378,52,0,8,9,11,13,15,15,17,19,21, - 22,24,27,29,34,37,41,43,46,48,48,50,56,58,58,61,62,67,91,93,96,98, - 98,101,101,103,110,113,113,115,118,121,122,125,128,131,131,133,139, - 141,143,145,147,149,151,154,154,156,157,159,159,163,193,195,195, - 199,201,205,207,210,210,212,213,215,219,222,226,228,238,240,249, - 251,262,264,267,269,276,278,292,294,299,302,308,310,310,312,322, - 326,330,333,342,345,345,348,351,16,0,15,15,60,60,102,102,124,124, - 144,144,148,148,155,155,158,158,161,161,194,194,203,203,250,250, - 264,264,270,270,323,323,332,332,19,0,8,14,16,59,61,101,103,122,125, - 143,145,147,149,154,156,157,159,160,162,193,195,195,197,202,204, - 249,251,262,265,269,271,292,294,322,324,331,333,351,4416,0,375,1, - 0,0,0,2,380,1,0,0,0,4,1341,1,0,0,0,6,1436,1,0,0,0,8,1438,1,0,0,0, - 10,1450,1,0,0,0,12,1463,1,0,0,0,14,1466,1,0,0,0,16,1470,1,0,0,0, - 18,1551,1,0,0,0,20,1553,1,0,0,0,22,1558,1,0,0,0,24,1579,1,0,0,0, - 26,1581,1,0,0,0,28,1588,1,0,0,0,30,1590,1,0,0,0,32,1598,1,0,0,0, - 34,1607,1,0,0,0,36,1618,1,0,0,0,38,1639,1,0,0,0,40,1642,1,0,0,0, - 42,1645,1,0,0,0,44,1656,1,0,0,0,46,1672,1,0,0,0,48,1678,1,0,0,0, - 50,1680,1,0,0,0,52,1691,1,0,0,0,54,1698,1,0,0,0,56,1709,1,0,0,0, - 58,1726,1,0,0,0,60,1734,1,0,0,0,62,1736,1,0,0,0,64,1800,1,0,0,0, - 66,1802,1,0,0,0,68,1804,1,0,0,0,70,1806,1,0,0,0,72,1808,1,0,0,0, - 74,1810,1,0,0,0,76,1812,1,0,0,0,78,1814,1,0,0,0,80,1819,1,0,0,0, - 82,1821,1,0,0,0,84,1826,1,0,0,0,86,1828,1,0,0,0,88,1836,1,0,0,0, - 90,1844,1,0,0,0,92,1849,1,0,0,0,94,1876,1,0,0,0,96,1881,1,0,0,0, - 98,1889,1,0,0,0,100,1897,1,0,0,0,102,1947,1,0,0,0,104,1951,1,0,0, - 0,106,1987,1,0,0,0,108,2033,1,0,0,0,110,2054,1,0,0,0,112,2086,1, - 0,0,0,114,2098,1,0,0,0,116,2101,1,0,0,0,118,2117,1,0,0,0,120,2131, - 1,0,0,0,122,2165,1,0,0,0,124,2167,1,0,0,0,126,2175,1,0,0,0,128,2179, - 1,0,0,0,130,2182,1,0,0,0,132,2185,1,0,0,0,134,2211,1,0,0,0,136,2213, - 1,0,0,0,138,2251,1,0,0,0,140,2292,1,0,0,0,142,2297,1,0,0,0,144,2330, - 1,0,0,0,146,2352,1,0,0,0,148,2354,1,0,0,0,150,2384,1,0,0,0,152,2386, - 1,0,0,0,154,2393,1,0,0,0,156,2410,1,0,0,0,158,2425,1,0,0,0,160,2449, - 1,0,0,0,162,2465,1,0,0,0,164,2472,1,0,0,0,166,2476,1,0,0,0,168,2479, - 1,0,0,0,170,2511,1,0,0,0,172,2526,1,0,0,0,174,2545,1,0,0,0,176,2563, - 1,0,0,0,178,2576,1,0,0,0,180,2578,1,0,0,0,182,2614,1,0,0,0,184,2616, - 1,0,0,0,186,2620,1,0,0,0,188,2628,1,0,0,0,190,2639,1,0,0,0,192,2643, - 1,0,0,0,194,2654,1,0,0,0,196,2690,1,0,0,0,198,2692,1,0,0,0,200,2696, - 1,0,0,0,202,2724,1,0,0,0,204,2745,1,0,0,0,206,2758,1,0,0,0,208,2764, - 1,0,0,0,210,2768,1,0,0,0,212,2770,1,0,0,0,214,2773,1,0,0,0,216,2794, - 1,0,0,0,218,2845,1,0,0,0,220,2847,1,0,0,0,222,2855,1,0,0,0,224,2869, - 1,0,0,0,226,2871,1,0,0,0,228,2879,1,0,0,0,230,2887,1,0,0,0,232,2894, - 1,0,0,0,234,2898,1,0,0,0,236,2900,1,0,0,0,238,2907,1,0,0,0,240,2915, - 1,0,0,0,242,2926,1,0,0,0,244,2934,1,0,0,0,246,2936,1,0,0,0,248,2949, - 1,0,0,0,250,2964,1,0,0,0,252,2968,1,0,0,0,254,2970,1,0,0,0,256,2972, - 1,0,0,0,258,2978,1,0,0,0,260,2980,1,0,0,0,262,3000,1,0,0,0,264,3095, - 1,0,0,0,266,3101,1,0,0,0,268,3127,1,0,0,0,270,3378,1,0,0,0,272,3400, - 1,0,0,0,274,3417,1,0,0,0,276,3419,1,0,0,0,278,3421,1,0,0,0,280,3423, - 1,0,0,0,282,3425,1,0,0,0,284,3427,1,0,0,0,286,3432,1,0,0,0,288,3439, - 1,0,0,0,290,3443,1,0,0,0,292,3448,1,0,0,0,294,3454,1,0,0,0,296,3461, - 1,0,0,0,298,3463,1,0,0,0,300,3468,1,0,0,0,302,3500,1,0,0,0,304,3555, - 1,0,0,0,306,3557,1,0,0,0,308,3565,1,0,0,0,310,3573,1,0,0,0,312,3581, - 1,0,0,0,314,3596,1,0,0,0,316,3598,1,0,0,0,318,3601,1,0,0,0,320,3609, - 1,0,0,0,322,3619,1,0,0,0,324,3627,1,0,0,0,326,3648,1,0,0,0,328,3650, - 1,0,0,0,330,3663,1,0,0,0,332,3668,1,0,0,0,334,3682,1,0,0,0,336,3725, - 1,0,0,0,338,3735,1,0,0,0,340,3744,1,0,0,0,342,3746,1,0,0,0,344,3763, - 1,0,0,0,346,3765,1,0,0,0,348,3767,1,0,0,0,350,3775,1,0,0,0,352,3785, - 1,0,0,0,354,3789,1,0,0,0,356,3795,1,0,0,0,358,3797,1,0,0,0,360,3800, - 1,0,0,0,362,3817,1,0,0,0,364,3819,1,0,0,0,366,3821,1,0,0,0,368,3823, - 1,0,0,0,370,3825,1,0,0,0,372,374,3,2,1,0,373,372,1,0,0,0,374,377, - 1,0,0,0,375,373,1,0,0,0,375,376,1,0,0,0,376,378,1,0,0,0,377,375, - 1,0,0,0,378,379,5,0,0,1,379,1,1,0,0,0,380,382,3,4,2,0,381,383,5, - 1,0,0,382,381,1,0,0,0,382,383,1,0,0,0,383,3,1,0,0,0,384,1342,3,16, - 8,0,385,387,3,32,16,0,386,385,1,0,0,0,386,387,1,0,0,0,387,388,1, - 0,0,0,388,1342,3,64,32,0,389,391,5,330,0,0,390,392,3,26,13,0,391, - 390,1,0,0,0,391,392,1,0,0,0,392,393,1,0,0,0,393,1342,3,66,33,0,394, - 395,5,269,0,0,395,398,5,37,0,0,396,399,3,354,177,0,397,399,3,364, - 182,0,398,396,1,0,0,0,398,397,1,0,0,0,399,1342,1,0,0,0,400,401,5, - 59,0,0,401,403,3,26,13,0,402,404,3,164,82,0,403,402,1,0,0,0,403, - 404,1,0,0,0,404,405,1,0,0,0,405,415,3,68,34,0,406,407,5,51,0,0,407, - 414,3,364,182,0,408,409,5,170,0,0,409,414,3,364,182,0,410,411,5, - 346,0,0,411,412,7,0,0,0,412,414,3,42,21,0,413,406,1,0,0,0,413,408, - 1,0,0,0,413,410,1,0,0,0,414,417,1,0,0,0,415,413,1,0,0,0,415,416, - 1,0,0,0,416,1342,1,0,0,0,417,415,1,0,0,0,418,419,5,11,0,0,419,420, - 3,26,13,0,420,421,3,66,33,0,421,422,5,269,0,0,422,423,7,0,0,0,423, - 424,3,42,21,0,424,1342,1,0,0,0,425,426,5,11,0,0,426,427,3,26,13, - 0,427,428,3,66,33,0,428,429,5,269,0,0,429,430,5,170,0,0,430,431, - 3,364,182,0,431,1342,1,0,0,0,432,433,5,96,0,0,433,435,3,26,13,0, - 434,436,3,166,83,0,435,434,1,0,0,0,435,436,1,0,0,0,436,437,1,0,0, - 0,437,439,3,66,33,0,438,440,7,1,0,0,439,438,1,0,0,0,439,440,1,0, - 0,0,440,1342,1,0,0,0,441,442,5,273,0,0,442,445,7,2,0,0,443,444,7, - 3,0,0,444,446,3,222,111,0,445,443,1,0,0,0,445,446,1,0,0,0,446,451, - 1,0,0,0,447,449,5,163,0,0,448,447,1,0,0,0,448,449,1,0,0,0,449,450, - 1,0,0,0,450,452,3,364,182,0,451,448,1,0,0,0,451,452,1,0,0,0,452, - 1342,1,0,0,0,453,455,5,59,0,0,454,456,5,298,0,0,455,454,1,0,0,0, - 455,456,1,0,0,0,456,458,1,0,0,0,457,459,5,109,0,0,458,457,1,0,0, - 0,458,459,1,0,0,0,459,460,1,0,0,0,460,462,5,293,0,0,461,463,3,164, - 82,0,462,461,1,0,0,0,462,463,1,0,0,0,463,464,1,0,0,0,464,469,3,70, - 35,0,465,466,5,2,0,0,466,467,3,322,161,0,467,468,5,3,0,0,468,470, - 1,0,0,0,469,465,1,0,0,0,469,470,1,0,0,0,470,472,1,0,0,0,471,473, - 3,36,18,0,472,471,1,0,0,0,472,473,1,0,0,0,473,474,1,0,0,0,474,479, - 3,38,19,0,475,477,5,20,0,0,476,475,1,0,0,0,476,477,1,0,0,0,477,478, - 1,0,0,0,478,480,3,16,8,0,479,476,1,0,0,0,479,480,1,0,0,0,480,1342, - 1,0,0,0,481,482,5,59,0,0,482,484,5,293,0,0,483,485,3,164,82,0,484, - 483,1,0,0,0,484,485,1,0,0,0,485,486,1,0,0,0,486,487,3,70,35,0,487, - 488,5,163,0,0,488,499,3,72,36,0,489,498,3,36,18,0,490,498,3,218, - 109,0,491,498,3,58,29,0,492,493,5,170,0,0,493,498,3,364,182,0,494, - 495,5,297,0,0,495,498,3,42,21,0,496,498,3,40,20,0,497,489,1,0,0, - 0,497,490,1,0,0,0,497,491,1,0,0,0,497,492,1,0,0,0,497,494,1,0,0, - 0,497,496,1,0,0,0,498,501,1,0,0,0,499,497,1,0,0,0,499,500,1,0,0, - 0,500,1342,1,0,0,0,501,499,1,0,0,0,502,503,5,59,0,0,503,505,5,208, - 0,0,504,502,1,0,0,0,504,505,1,0,0,0,505,506,1,0,0,0,506,507,5,244, - 0,0,507,508,5,293,0,0,508,513,3,70,35,0,509,510,5,2,0,0,510,511, - 3,322,161,0,511,512,5,3,0,0,512,514,1,0,0,0,513,509,1,0,0,0,513, - 514,1,0,0,0,514,516,1,0,0,0,515,517,3,36,18,0,516,515,1,0,0,0,516, - 517,1,0,0,0,517,518,1,0,0,0,518,523,3,38,19,0,519,521,5,20,0,0,520, - 519,1,0,0,0,520,521,1,0,0,0,521,522,1,0,0,0,522,524,3,16,8,0,523, - 520,1,0,0,0,523,524,1,0,0,0,524,1342,1,0,0,0,525,526,5,13,0,0,526, - 527,5,293,0,0,527,529,3,72,36,0,528,530,3,22,11,0,529,528,1,0,0, - 0,529,530,1,0,0,0,530,531,1,0,0,0,531,532,5,55,0,0,532,540,5,282, - 0,0,533,541,5,196,0,0,534,535,5,119,0,0,535,536,5,50,0,0,536,541, - 3,86,43,0,537,538,5,119,0,0,538,539,5,10,0,0,539,541,5,50,0,0,540, - 533,1,0,0,0,540,534,1,0,0,0,540,537,1,0,0,0,540,541,1,0,0,0,541, - 1342,1,0,0,0,542,543,5,13,0,0,543,546,5,294,0,0,544,545,7,3,0,0, - 545,547,3,66,33,0,546,544,1,0,0,0,546,547,1,0,0,0,547,548,1,0,0, - 0,548,549,5,55,0,0,549,551,5,282,0,0,550,552,5,196,0,0,551,550,1, - 0,0,0,551,552,1,0,0,0,552,1342,1,0,0,0,553,554,5,11,0,0,554,555, - 5,293,0,0,555,556,3,72,36,0,556,557,5,8,0,0,557,558,5,49,0,0,558, - 559,3,308,154,0,559,1342,1,0,0,0,560,561,5,11,0,0,561,562,5,293, - 0,0,562,563,3,72,36,0,563,564,5,8,0,0,564,565,5,50,0,0,565,566,5, - 2,0,0,566,567,3,306,153,0,567,568,5,3,0,0,568,1342,1,0,0,0,569,570, - 5,11,0,0,570,571,5,293,0,0,571,572,3,72,36,0,572,573,5,241,0,0,573, - 574,5,49,0,0,574,575,3,80,40,0,575,576,5,309,0,0,576,577,3,88,44, - 0,577,1342,1,0,0,0,578,579,5,11,0,0,579,580,5,293,0,0,580,581,3, - 72,36,0,581,582,5,96,0,0,582,584,5,49,0,0,583,585,3,166,83,0,584, - 583,1,0,0,0,584,585,1,0,0,0,585,586,1,0,0,0,586,587,3,80,40,0,587, - 1342,1,0,0,0,588,589,5,11,0,0,589,590,5,293,0,0,590,591,3,72,36, - 0,591,592,5,96,0,0,592,594,5,50,0,0,593,595,3,166,83,0,594,593,1, - 0,0,0,594,595,1,0,0,0,595,596,1,0,0,0,596,597,5,2,0,0,597,598,3, - 86,43,0,598,599,5,3,0,0,599,1342,1,0,0,0,600,605,5,11,0,0,601,602, - 5,293,0,0,602,606,3,72,36,0,603,604,5,338,0,0,604,606,3,76,38,0, - 605,601,1,0,0,0,605,603,1,0,0,0,606,607,1,0,0,0,607,608,5,241,0, - 0,608,609,5,309,0,0,609,610,3,222,111,0,610,1342,1,0,0,0,611,616, - 5,11,0,0,612,613,5,293,0,0,613,617,3,72,36,0,614,615,5,338,0,0,615, - 617,3,76,38,0,616,612,1,0,0,0,616,614,1,0,0,0,617,618,1,0,0,0,618, - 619,5,269,0,0,619,620,5,297,0,0,620,621,3,42,21,0,621,1342,1,0,0, - 0,622,627,5,11,0,0,623,624,5,293,0,0,624,628,3,72,36,0,625,626,5, - 338,0,0,626,628,3,76,38,0,627,623,1,0,0,0,627,625,1,0,0,0,628,629, - 1,0,0,0,629,630,5,328,0,0,630,632,5,297,0,0,631,633,3,166,83,0,632, - 631,1,0,0,0,632,633,1,0,0,0,633,634,1,0,0,0,634,635,3,42,21,0,635, - 1342,1,0,0,0,636,637,5,11,0,0,637,638,5,293,0,0,638,639,3,72,36, - 0,639,641,7,4,0,0,640,642,5,49,0,0,641,640,1,0,0,0,641,642,1,0,0, - 0,642,643,1,0,0,0,643,645,3,80,40,0,644,646,3,362,181,0,645,644, - 1,0,0,0,645,646,1,0,0,0,646,1342,1,0,0,0,647,648,5,11,0,0,648,649, - 5,293,0,0,649,651,3,72,36,0,650,652,3,22,11,0,651,650,1,0,0,0,651, - 652,1,0,0,0,652,653,1,0,0,0,653,655,5,39,0,0,654,656,5,49,0,0,655, - 654,1,0,0,0,655,656,1,0,0,0,656,657,1,0,0,0,657,658,3,80,40,0,658, - 660,3,320,160,0,659,661,3,300,150,0,660,659,1,0,0,0,660,661,1,0, - 0,0,661,1342,1,0,0,0,662,663,5,11,0,0,663,664,5,293,0,0,664,666, - 3,72,36,0,665,667,3,22,11,0,666,665,1,0,0,0,666,667,1,0,0,0,667, - 668,1,0,0,0,668,669,5,244,0,0,669,670,5,50,0,0,670,671,5,2,0,0,671, - 672,3,310,155,0,672,673,5,3,0,0,673,1342,1,0,0,0,674,675,5,11,0, - 0,675,676,5,293,0,0,676,678,3,72,36,0,677,679,3,22,11,0,678,677, - 1,0,0,0,678,679,1,0,0,0,679,680,1,0,0,0,680,681,5,269,0,0,681,682, - 5,266,0,0,682,686,3,364,182,0,683,684,5,346,0,0,684,685,5,267,0, - 0,685,687,3,42,21,0,686,683,1,0,0,0,686,687,1,0,0,0,687,1342,1,0, - 0,0,688,689,5,11,0,0,689,690,5,293,0,0,690,692,3,72,36,0,691,693, - 3,22,11,0,692,691,1,0,0,0,692,693,1,0,0,0,693,694,1,0,0,0,694,695, - 5,269,0,0,695,696,5,267,0,0,696,697,3,42,21,0,697,1342,1,0,0,0,698, - 703,5,11,0,0,699,700,5,293,0,0,700,704,3,72,36,0,701,702,5,338,0, - 0,702,704,3,76,38,0,703,699,1,0,0,0,703,701,1,0,0,0,704,705,1,0, - 0,0,705,707,5,8,0,0,706,708,3,164,82,0,707,706,1,0,0,0,707,708,1, - 0,0,0,708,710,1,0,0,0,709,711,3,20,10,0,710,709,1,0,0,0,711,712, - 1,0,0,0,712,710,1,0,0,0,712,713,1,0,0,0,713,1342,1,0,0,0,714,715, - 5,11,0,0,715,716,5,293,0,0,716,717,3,72,36,0,717,718,3,22,11,0,718, - 719,5,241,0,0,719,720,5,309,0,0,720,721,3,22,11,0,721,1342,1,0,0, - 0,722,727,5,11,0,0,723,724,5,293,0,0,724,728,3,72,36,0,725,726,5, - 338,0,0,726,728,3,76,38,0,727,723,1,0,0,0,727,725,1,0,0,0,728,729, - 1,0,0,0,729,731,5,96,0,0,730,732,3,166,83,0,731,730,1,0,0,0,731, - 732,1,0,0,0,732,733,1,0,0,0,733,738,3,22,11,0,734,735,5,4,0,0,735, - 737,3,22,11,0,736,734,1,0,0,0,737,740,1,0,0,0,738,736,1,0,0,0,738, - 739,1,0,0,0,739,742,1,0,0,0,740,738,1,0,0,0,741,743,5,230,0,0,742, - 741,1,0,0,0,742,743,1,0,0,0,743,1342,1,0,0,0,744,745,5,11,0,0,745, - 746,5,293,0,0,746,748,3,72,36,0,747,749,3,22,11,0,748,747,1,0,0, - 0,748,749,1,0,0,0,749,750,1,0,0,0,750,751,5,269,0,0,751,752,5,170, - 0,0,752,753,3,364,182,0,753,1342,1,0,0,0,754,755,5,11,0,0,755,756, - 5,293,0,0,756,757,3,72,36,0,757,758,5,237,0,0,758,759,5,219,0,0, - 759,1342,1,0,0,0,760,761,5,11,0,0,761,762,5,176,0,0,762,763,5,338, - 0,0,763,764,3,76,38,0,764,765,7,5,0,0,765,766,5,248,0,0,766,1342, - 1,0,0,0,767,768,5,11,0,0,768,769,5,176,0,0,769,770,5,338,0,0,770, - 771,3,76,38,0,771,772,5,269,0,0,772,773,5,297,0,0,773,774,3,42,21, - 0,774,1342,1,0,0,0,775,776,5,96,0,0,776,778,5,293,0,0,777,779,3, - 166,83,0,778,777,1,0,0,0,778,779,1,0,0,0,779,780,1,0,0,0,780,782, - 3,72,36,0,781,783,5,230,0,0,782,781,1,0,0,0,782,783,1,0,0,0,783, - 1342,1,0,0,0,784,785,5,96,0,0,785,787,5,338,0,0,786,788,3,166,83, - 0,787,786,1,0,0,0,787,788,1,0,0,0,788,789,1,0,0,0,789,1342,3,76, - 38,0,790,791,5,96,0,0,791,792,5,176,0,0,792,794,5,338,0,0,793,795, - 3,166,83,0,794,793,1,0,0,0,794,795,1,0,0,0,795,796,1,0,0,0,796,1342, - 3,76,38,0,797,800,5,59,0,0,798,799,5,208,0,0,799,801,5,244,0,0,800, - 798,1,0,0,0,800,801,1,0,0,0,801,806,1,0,0,0,802,804,5,128,0,0,803, - 802,1,0,0,0,803,804,1,0,0,0,804,805,1,0,0,0,805,807,5,298,0,0,806, - 803,1,0,0,0,806,807,1,0,0,0,807,808,1,0,0,0,808,810,5,338,0,0,809, - 811,3,164,82,0,810,809,1,0,0,0,810,811,1,0,0,0,811,812,1,0,0,0,812, - 814,3,74,37,0,813,815,3,192,96,0,814,813,1,0,0,0,814,815,1,0,0,0, - 815,825,1,0,0,0,816,817,5,51,0,0,817,824,3,364,182,0,818,819,5,218, - 0,0,819,820,5,203,0,0,820,824,3,184,92,0,821,822,5,297,0,0,822,824, - 3,42,21,0,823,816,1,0,0,0,823,818,1,0,0,0,823,821,1,0,0,0,824,827, - 1,0,0,0,825,823,1,0,0,0,825,826,1,0,0,0,826,828,1,0,0,0,827,825, - 1,0,0,0,828,829,5,20,0,0,829,830,3,16,8,0,830,1342,1,0,0,0,831,834, - 5,59,0,0,832,833,5,208,0,0,833,835,5,244,0,0,834,832,1,0,0,0,834, - 835,1,0,0,0,835,837,1,0,0,0,836,838,5,128,0,0,837,836,1,0,0,0,837, - 838,1,0,0,0,838,839,1,0,0,0,839,840,5,298,0,0,840,841,5,338,0,0, - 841,846,3,74,37,0,842,843,5,2,0,0,843,844,3,318,159,0,844,845,5, - 3,0,0,845,847,1,0,0,0,846,842,1,0,0,0,846,847,1,0,0,0,847,848,1, - 0,0,0,848,851,3,36,18,0,849,850,5,207,0,0,850,852,3,42,21,0,851, - 849,1,0,0,0,851,852,1,0,0,0,852,1342,1,0,0,0,853,854,5,11,0,0,854, - 855,5,338,0,0,855,857,3,76,38,0,856,858,5,20,0,0,857,856,1,0,0,0, - 857,858,1,0,0,0,858,859,1,0,0,0,859,860,3,16,8,0,860,1342,1,0,0, - 0,861,864,5,59,0,0,862,863,5,208,0,0,863,865,5,244,0,0,864,862,1, - 0,0,0,864,865,1,0,0,0,865,867,1,0,0,0,866,868,5,298,0,0,867,866, - 1,0,0,0,867,868,1,0,0,0,868,869,1,0,0,0,869,871,5,125,0,0,870,872, - 3,164,82,0,871,870,1,0,0,0,871,872,1,0,0,0,872,873,1,0,0,0,873,874, - 3,346,173,0,874,875,5,20,0,0,875,889,3,364,182,0,876,877,5,332,0, - 0,877,878,3,354,177,0,878,879,3,364,182,0,879,886,1,0,0,0,880,881, - 5,4,0,0,881,882,3,354,177,0,882,883,3,364,182,0,883,885,1,0,0,0, - 884,880,1,0,0,0,885,888,1,0,0,0,886,884,1,0,0,0,886,887,1,0,0,0, - 887,890,1,0,0,0,888,886,1,0,0,0,889,876,1,0,0,0,889,890,1,0,0,0, - 890,1342,1,0,0,0,891,892,5,59,0,0,892,893,5,176,0,0,893,895,5,338, - 0,0,894,896,3,164,82,0,895,894,1,0,0,0,895,896,1,0,0,0,896,897,1, - 0,0,0,897,899,3,74,37,0,898,900,3,36,18,0,899,898,1,0,0,0,899,900, - 1,0,0,0,900,918,1,0,0,0,901,902,5,207,0,0,902,917,3,42,21,0,903, - 904,5,218,0,0,904,905,5,31,0,0,905,917,3,246,123,0,906,917,3,10, - 5,0,907,917,3,8,4,0,908,917,3,218,109,0,909,917,3,58,29,0,910,911, - 5,170,0,0,911,917,3,364,182,0,912,913,5,51,0,0,913,917,3,364,182, - 0,914,915,5,297,0,0,915,917,3,42,21,0,916,901,1,0,0,0,916,903,1, - 0,0,0,916,906,1,0,0,0,916,907,1,0,0,0,916,908,1,0,0,0,916,909,1, - 0,0,0,916,910,1,0,0,0,916,912,1,0,0,0,916,914,1,0,0,0,917,920,1, - 0,0,0,918,916,1,0,0,0,918,919,1,0,0,0,919,921,1,0,0,0,920,918,1, - 0,0,0,921,922,5,20,0,0,922,923,3,16,8,0,923,1342,1,0,0,0,924,926, - 5,96,0,0,925,927,5,298,0,0,926,925,1,0,0,0,926,927,1,0,0,0,927,928, - 1,0,0,0,928,930,5,125,0,0,929,931,3,166,83,0,930,929,1,0,0,0,930, - 931,1,0,0,0,931,932,1,0,0,0,932,1342,3,344,172,0,933,936,5,81,0, - 0,934,935,5,208,0,0,935,937,5,244,0,0,936,934,1,0,0,0,936,937,1, - 0,0,0,937,939,1,0,0,0,938,940,5,336,0,0,939,938,1,0,0,0,939,940, - 1,0,0,0,940,941,1,0,0,0,941,943,3,344,172,0,942,944,3,304,152,0, - 943,942,1,0,0,0,943,944,1,0,0,0,944,946,1,0,0,0,945,947,3,316,158, - 0,946,945,1,0,0,0,946,947,1,0,0,0,947,1342,1,0,0,0,948,949,5,96, - 0,0,949,950,5,298,0,0,950,952,5,336,0,0,951,953,3,166,83,0,952,951, - 1,0,0,0,952,953,1,0,0,0,953,957,1,0,0,0,954,958,3,72,36,0,955,958, - 3,76,38,0,956,958,3,344,172,0,957,954,1,0,0,0,957,955,1,0,0,0,957, - 956,1,0,0,0,958,1342,1,0,0,0,959,961,5,106,0,0,960,962,7,6,0,0,961, - 960,1,0,0,0,961,962,1,0,0,0,962,963,1,0,0,0,963,1342,3,4,2,0,964, - 965,5,273,0,0,965,968,5,294,0,0,966,967,7,3,0,0,967,969,3,66,33, - 0,968,966,1,0,0,0,968,969,1,0,0,0,969,974,1,0,0,0,970,972,5,163, - 0,0,971,970,1,0,0,0,971,972,1,0,0,0,972,973,1,0,0,0,973,975,3,364, - 182,0,974,971,1,0,0,0,974,975,1,0,0,0,975,1342,1,0,0,0,976,977,5, - 273,0,0,977,978,5,293,0,0,978,981,5,108,0,0,979,980,7,3,0,0,980, - 982,3,66,33,0,981,979,1,0,0,0,981,982,1,0,0,0,982,983,1,0,0,0,983, - 984,5,163,0,0,984,986,3,364,182,0,985,987,3,22,11,0,986,985,1,0, - 0,0,986,987,1,0,0,0,987,1342,1,0,0,0,988,989,5,273,0,0,989,990,5, - 297,0,0,990,995,3,72,36,0,991,992,5,2,0,0,992,993,3,46,23,0,993, - 994,5,3,0,0,994,996,1,0,0,0,995,991,1,0,0,0,995,996,1,0,0,0,996, - 1342,1,0,0,0,997,998,5,273,0,0,998,999,5,50,0,0,999,1000,7,3,0,0, - 1000,1003,3,72,36,0,1001,1002,7,3,0,0,1002,1004,3,66,33,0,1003,1001, - 1,0,0,0,1003,1004,1,0,0,0,1004,1342,1,0,0,0,1005,1006,5,273,0,0, - 1006,1009,5,339,0,0,1007,1008,7,3,0,0,1008,1010,3,66,33,0,1009,1007, - 1,0,0,0,1009,1010,1,0,0,0,1010,1015,1,0,0,0,1011,1013,5,163,0,0, - 1012,1011,1,0,0,0,1012,1013,1,0,0,0,1013,1014,1,0,0,0,1014,1016, - 3,364,182,0,1015,1012,1,0,0,0,1015,1016,1,0,0,0,1016,1342,1,0,0, - 0,1017,1018,5,273,0,0,1018,1019,5,219,0,0,1019,1021,3,72,36,0,1020, - 1022,3,22,11,0,1021,1020,1,0,0,0,1021,1022,1,0,0,0,1022,1342,1,0, - 0,0,1023,1025,5,273,0,0,1024,1026,7,7,0,0,1025,1024,1,0,0,0,1025, - 1026,1,0,0,0,1026,1027,1,0,0,0,1027,1030,5,126,0,0,1028,1029,7,3, - 0,0,1029,1031,3,66,33,0,1030,1028,1,0,0,0,1030,1031,1,0,0,0,1031, - 1039,1,0,0,0,1032,1034,5,163,0,0,1033,1032,1,0,0,0,1033,1034,1,0, - 0,0,1034,1037,1,0,0,0,1035,1038,3,222,111,0,1036,1038,3,364,182, - 0,1037,1035,1,0,0,0,1037,1036,1,0,0,0,1038,1040,1,0,0,0,1039,1033, - 1,0,0,0,1039,1040,1,0,0,0,1040,1342,1,0,0,0,1041,1042,5,273,0,0, - 1042,1043,5,59,0,0,1043,1044,5,293,0,0,1044,1047,3,72,36,0,1045, - 1046,5,20,0,0,1046,1048,5,266,0,0,1047,1045,1,0,0,0,1047,1048,1, - 0,0,0,1048,1342,1,0,0,0,1049,1050,5,273,0,0,1050,1051,5,62,0,0,1051, - 1342,3,26,13,0,1052,1053,5,273,0,0,1053,1058,5,38,0,0,1054,1056, - 5,163,0,0,1055,1054,1,0,0,0,1055,1056,1,0,0,0,1056,1057,1,0,0,0, - 1057,1059,3,364,182,0,1058,1055,1,0,0,0,1058,1059,1,0,0,0,1059,1342, - 1,0,0,0,1060,1061,5,273,0,0,1061,1062,5,176,0,0,1062,1065,5,339, - 0,0,1063,1064,7,3,0,0,1064,1066,3,66,33,0,1065,1063,1,0,0,0,1065, - 1066,1,0,0,0,1066,1071,1,0,0,0,1067,1069,5,163,0,0,1068,1067,1,0, - 0,0,1068,1069,1,0,0,0,1069,1070,1,0,0,0,1070,1072,3,364,182,0,1071, - 1068,1,0,0,0,1071,1072,1,0,0,0,1072,1342,1,0,0,0,1073,1074,5,273, - 0,0,1074,1075,5,59,0,0,1075,1076,5,176,0,0,1076,1077,5,338,0,0,1077, - 1080,3,76,38,0,1078,1079,5,20,0,0,1079,1081,5,266,0,0,1080,1078, - 1,0,0,0,1080,1081,1,0,0,0,1081,1342,1,0,0,0,1082,1083,7,8,0,0,1083, - 1085,5,125,0,0,1084,1086,5,108,0,0,1085,1084,1,0,0,0,1085,1086,1, - 0,0,0,1086,1087,1,0,0,0,1087,1342,3,28,14,0,1088,1089,7,8,0,0,1089, - 1091,5,72,0,0,1090,1092,5,108,0,0,1091,1090,1,0,0,0,1091,1092,1, - 0,0,0,1092,1093,1,0,0,0,1093,1342,3,66,33,0,1094,1096,7,8,0,0,1095, - 1097,5,293,0,0,1096,1095,1,0,0,0,1096,1097,1,0,0,0,1097,1099,1,0, - 0,0,1098,1100,7,9,0,0,1099,1098,1,0,0,0,1099,1100,1,0,0,0,1100,1101, + 1,152,1,152,1,152,1,152,1,152,1,152,5,152,3524,8,152,10,152,12,152, + 3527,9,152,3,152,3529,8,152,1,152,1,152,3,152,3533,8,152,1,152,1, + 152,1,152,1,152,3,152,3539,8,152,1,152,1,152,1,152,1,152,3,152,3545, + 8,152,1,152,1,152,1,152,1,152,1,152,5,152,3552,8,152,10,152,12,152, + 3555,9,152,1,152,3,152,3558,8,152,3,152,3560,8,152,1,153,1,153,1, + 153,5,153,3565,8,153,10,153,12,153,3568,9,153,1,154,1,154,1,154, + 5,154,3573,8,154,10,154,12,154,3576,9,154,1,155,1,155,1,155,5,155, + 3581,8,155,10,155,12,155,3584,9,155,1,156,1,156,1,156,5,156,3589, + 8,156,10,156,12,156,3592,9,156,1,157,1,157,1,157,1,157,1,157,1,157, + 1,157,3,157,3601,8,157,1,158,1,158,1,158,1,159,1,159,1,159,5,159, + 3609,8,159,10,159,12,159,3612,9,159,1,160,1,160,1,160,1,160,3,160, + 3618,8,160,1,160,1,160,3,160,3622,8,160,1,161,1,161,1,161,5,161, + 3627,8,161,10,161,12,161,3630,9,161,1,162,1,162,1,162,5,162,3635, + 8,162,10,162,12,162,3638,9,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,3,163,3653,8,163,1,164, + 1,164,3,164,3657,8,164,1,164,1,164,1,164,3,164,3662,8,164,1,164, + 1,164,3,164,3666,8,164,1,165,1,165,1,165,1,165,1,165,1,166,1,166, + 1,166,1,166,1,166,1,166,1,166,1,166,1,166,5,166,3682,8,166,10,166, + 12,166,3685,9,166,1,167,1,167,1,167,1,167,1,168,1,168,1,168,1,168, + 1,168,1,168,1,168,1,168,1,168,1,168,1,168,5,168,3702,8,168,10,168, + 12,168,3705,9,168,1,168,1,168,1,168,1,168,1,168,5,168,3712,8,168, + 10,168,12,168,3715,9,168,3,168,3717,8,168,1,168,1,168,1,168,3,168, + 3722,8,168,3,168,3724,8,168,1,168,3,168,3727,8,168,1,168,3,168,3730, + 8,168,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,3,169,3740, + 8,169,1,170,1,170,1,170,1,170,1,170,1,170,1,170,3,170,3749,8,170, + 1,171,1,171,1,171,5,171,3754,8,171,10,171,12,171,3757,9,171,1,172, + 1,172,1,172,1,172,1,172,1,172,1,172,1,172,1,172,3,172,3768,8,172, + 1,173,1,173,1,174,1,174,1,174,5,174,3775,8,174,10,174,12,174,3778, + 9,174,1,175,1,175,1,175,1,176,1,176,4,176,3785,8,176,11,176,12,176, + 3786,1,176,3,176,3790,8,176,1,177,1,177,3,177,3794,8,177,1,178,1, + 178,1,178,1,178,3,178,3800,8,178,1,179,1,179,1,180,3,180,3805,8, + 180,1,180,1,180,1,181,1,181,1,181,1,181,1,181,1,181,1,181,1,181, + 1,181,1,181,1,181,1,181,1,181,3,181,3822,8,181,1,182,1,182,1,183, + 1,183,1,184,1,184,1,185,1,185,1,185,9,1138,1208,1216,1236,1263,1272, + 1281,1290,1338,4,100,262,266,270,186,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,0,76,2,0,78,78,229,229,2,0,34,34,247,247,3,0,73, + 73,191,191,262,262,2,0,123,123,140,140,2,0,11,11,39,39,2,0,91,91, + 98,98,5,0,46,46,58,58,108,108,122,122,173,173,3,0,10,10,290,290, + 331,331,1,0,86,87,2,0,108,108,122,122,3,0,8,8,96,96,289,289,2,0, + 8,8,167,167,1,0,335,336,2,0,59,59,96,96,2,0,129,129,249,249,6,0, + 54,54,129,129,143,143,172,172,228,228,313,313,3,0,11,11,59,59,96, + 96,4,0,107,107,139,139,171,171,326,326,2,0,171,171,326,326,3,0,45, + 45,275,275,279,279,2,0,45,45,275,275,3,0,18,18,103,103,320,320,3, + 0,72,72,190,190,261,261,4,0,102,102,148,148,270,270,323,323,3,0, + 102,102,270,270,323,323,2,0,21,21,86,86,2,0,116,116,157,157,2,0, + 292,292,337,337,2,0,291,291,303,303,2,0,61,61,256,256,2,0,104,104, + 141,141,2,0,10,10,92,92,2,0,15,15,264,264,2,0,124,124,250,250,2, + 0,382,382,384,384,2,0,93,93,217,217,2,0,209,209,278,278,2,0,197, + 197,360,360,1,0,251,252,1,0,163,164,3,0,10,10,16,16,277,277,3,0, + 111,111,316,316,325,325,2,0,361,362,366,366,2,0,94,94,363,365,2, + 0,361,362,369,369,11,0,67,67,69,69,134,134,180,180,182,182,184,184, + 186,186,231,231,259,259,341,341,348,348,4,0,63,63,65,66,268,268, + 331,331,2,0,74,75,306,306,3,0,76,77,302,302,307,307,2,0,36,36,318, + 318,2,0,138,138,246,246,1,0,287,288,2,0,4,4,123,123,2,0,4,4,119, + 119,3,0,28,28,160,160,311,311,1,0,220,221,1,0,352,359,2,0,94,94, + 361,370,4,0,14,14,140,140,197,197,208,208,2,0,111,111,316,316,1, + 0,361,362,7,0,67,68,134,135,180,187,192,193,259,260,341,342,348, + 349,6,0,67,67,134,134,184,184,186,186,259,259,348,348,2,0,186,186, + 348,348,4,0,67,67,134,134,184,184,259,259,3,0,134,134,184,184,259, + 259,2,0,82,82,352,352,2,0,233,233,258,258,2,0,118,118,226,226,2, + 0,378,378,389,389,1,0,379,387,2,0,96,96,269,269,1,0,377,378,52,0, + 8,9,11,13,15,15,17,19,21,22,24,27,29,34,37,41,43,46,48,48,50,56, + 58,58,61,62,67,91,93,96,98,98,101,101,103,110,113,113,115,118,121, + 122,125,128,131,131,133,139,141,143,145,147,149,151,154,154,156, + 157,159,159,163,193,195,195,199,201,205,207,210,210,212,213,215, + 219,222,226,228,238,240,249,251,262,264,267,269,276,278,292,294, + 299,302,308,310,310,312,322,326,330,333,342,345,345,348,351,16,0, + 15,15,60,60,102,102,124,124,144,144,148,148,155,155,158,158,161, + 161,194,194,203,203,250,250,264,264,270,270,323,323,332,332,19,0, + 8,14,16,59,61,101,103,122,125,143,145,147,149,154,156,157,159,160, + 162,193,195,195,197,202,204,249,251,262,265,269,271,292,294,322, + 324,331,333,351,4421,0,375,1,0,0,0,2,380,1,0,0,0,4,1341,1,0,0,0, + 6,1436,1,0,0,0,8,1438,1,0,0,0,10,1450,1,0,0,0,12,1463,1,0,0,0,14, + 1466,1,0,0,0,16,1470,1,0,0,0,18,1551,1,0,0,0,20,1553,1,0,0,0,22, + 1558,1,0,0,0,24,1579,1,0,0,0,26,1581,1,0,0,0,28,1588,1,0,0,0,30, + 1590,1,0,0,0,32,1598,1,0,0,0,34,1607,1,0,0,0,36,1618,1,0,0,0,38, + 1639,1,0,0,0,40,1642,1,0,0,0,42,1645,1,0,0,0,44,1656,1,0,0,0,46, + 1672,1,0,0,0,48,1678,1,0,0,0,50,1680,1,0,0,0,52,1691,1,0,0,0,54, + 1698,1,0,0,0,56,1709,1,0,0,0,58,1726,1,0,0,0,60,1734,1,0,0,0,62, + 1736,1,0,0,0,64,1800,1,0,0,0,66,1802,1,0,0,0,68,1804,1,0,0,0,70, + 1806,1,0,0,0,72,1808,1,0,0,0,74,1810,1,0,0,0,76,1812,1,0,0,0,78, + 1814,1,0,0,0,80,1819,1,0,0,0,82,1821,1,0,0,0,84,1826,1,0,0,0,86, + 1828,1,0,0,0,88,1836,1,0,0,0,90,1844,1,0,0,0,92,1849,1,0,0,0,94, + 1876,1,0,0,0,96,1881,1,0,0,0,98,1889,1,0,0,0,100,1897,1,0,0,0,102, + 1947,1,0,0,0,104,1951,1,0,0,0,106,1987,1,0,0,0,108,2033,1,0,0,0, + 110,2054,1,0,0,0,112,2086,1,0,0,0,114,2098,1,0,0,0,116,2101,1,0, + 0,0,118,2117,1,0,0,0,120,2131,1,0,0,0,122,2165,1,0,0,0,124,2167, + 1,0,0,0,126,2175,1,0,0,0,128,2179,1,0,0,0,130,2182,1,0,0,0,132,2185, + 1,0,0,0,134,2211,1,0,0,0,136,2213,1,0,0,0,138,2251,1,0,0,0,140,2292, + 1,0,0,0,142,2297,1,0,0,0,144,2330,1,0,0,0,146,2352,1,0,0,0,148,2354, + 1,0,0,0,150,2384,1,0,0,0,152,2386,1,0,0,0,154,2393,1,0,0,0,156,2410, + 1,0,0,0,158,2425,1,0,0,0,160,2449,1,0,0,0,162,2465,1,0,0,0,164,2472, + 1,0,0,0,166,2476,1,0,0,0,168,2479,1,0,0,0,170,2511,1,0,0,0,172,2526, + 1,0,0,0,174,2545,1,0,0,0,176,2563,1,0,0,0,178,2576,1,0,0,0,180,2578, + 1,0,0,0,182,2614,1,0,0,0,184,2616,1,0,0,0,186,2620,1,0,0,0,188,2628, + 1,0,0,0,190,2639,1,0,0,0,192,2643,1,0,0,0,194,2654,1,0,0,0,196,2690, + 1,0,0,0,198,2692,1,0,0,0,200,2696,1,0,0,0,202,2724,1,0,0,0,204,2745, + 1,0,0,0,206,2758,1,0,0,0,208,2764,1,0,0,0,210,2768,1,0,0,0,212,2770, + 1,0,0,0,214,2773,1,0,0,0,216,2794,1,0,0,0,218,2845,1,0,0,0,220,2847, + 1,0,0,0,222,2855,1,0,0,0,224,2869,1,0,0,0,226,2871,1,0,0,0,228,2879, + 1,0,0,0,230,2887,1,0,0,0,232,2894,1,0,0,0,234,2898,1,0,0,0,236,2900, + 1,0,0,0,238,2907,1,0,0,0,240,2928,1,0,0,0,242,2930,1,0,0,0,244,2938, + 1,0,0,0,246,2940,1,0,0,0,248,2953,1,0,0,0,250,2968,1,0,0,0,252,2972, + 1,0,0,0,254,2974,1,0,0,0,256,2976,1,0,0,0,258,2982,1,0,0,0,260,2984, + 1,0,0,0,262,3004,1,0,0,0,264,3099,1,0,0,0,266,3105,1,0,0,0,268,3131, + 1,0,0,0,270,3382,1,0,0,0,272,3404,1,0,0,0,274,3421,1,0,0,0,276,3423, + 1,0,0,0,278,3425,1,0,0,0,280,3427,1,0,0,0,282,3429,1,0,0,0,284,3431, + 1,0,0,0,286,3436,1,0,0,0,288,3443,1,0,0,0,290,3447,1,0,0,0,292,3452, + 1,0,0,0,294,3458,1,0,0,0,296,3465,1,0,0,0,298,3467,1,0,0,0,300,3472, + 1,0,0,0,302,3504,1,0,0,0,304,3559,1,0,0,0,306,3561,1,0,0,0,308,3569, + 1,0,0,0,310,3577,1,0,0,0,312,3585,1,0,0,0,314,3600,1,0,0,0,316,3602, + 1,0,0,0,318,3605,1,0,0,0,320,3613,1,0,0,0,322,3623,1,0,0,0,324,3631, + 1,0,0,0,326,3652,1,0,0,0,328,3654,1,0,0,0,330,3667,1,0,0,0,332,3672, + 1,0,0,0,334,3686,1,0,0,0,336,3729,1,0,0,0,338,3739,1,0,0,0,340,3748, + 1,0,0,0,342,3750,1,0,0,0,344,3767,1,0,0,0,346,3769,1,0,0,0,348,3771, + 1,0,0,0,350,3779,1,0,0,0,352,3789,1,0,0,0,354,3793,1,0,0,0,356,3799, + 1,0,0,0,358,3801,1,0,0,0,360,3804,1,0,0,0,362,3821,1,0,0,0,364,3823, + 1,0,0,0,366,3825,1,0,0,0,368,3827,1,0,0,0,370,3829,1,0,0,0,372,374, + 3,2,1,0,373,372,1,0,0,0,374,377,1,0,0,0,375,373,1,0,0,0,375,376, + 1,0,0,0,376,378,1,0,0,0,377,375,1,0,0,0,378,379,5,0,0,1,379,1,1, + 0,0,0,380,382,3,4,2,0,381,383,5,1,0,0,382,381,1,0,0,0,382,383,1, + 0,0,0,383,3,1,0,0,0,384,1342,3,16,8,0,385,387,3,32,16,0,386,385, + 1,0,0,0,386,387,1,0,0,0,387,388,1,0,0,0,388,1342,3,64,32,0,389,391, + 5,330,0,0,390,392,3,26,13,0,391,390,1,0,0,0,391,392,1,0,0,0,392, + 393,1,0,0,0,393,1342,3,66,33,0,394,395,5,269,0,0,395,398,5,37,0, + 0,396,399,3,354,177,0,397,399,3,364,182,0,398,396,1,0,0,0,398,397, + 1,0,0,0,399,1342,1,0,0,0,400,401,5,59,0,0,401,403,3,26,13,0,402, + 404,3,164,82,0,403,402,1,0,0,0,403,404,1,0,0,0,404,405,1,0,0,0,405, + 415,3,68,34,0,406,407,5,51,0,0,407,414,3,364,182,0,408,409,5,170, + 0,0,409,414,3,364,182,0,410,411,5,346,0,0,411,412,7,0,0,0,412,414, + 3,42,21,0,413,406,1,0,0,0,413,408,1,0,0,0,413,410,1,0,0,0,414,417, + 1,0,0,0,415,413,1,0,0,0,415,416,1,0,0,0,416,1342,1,0,0,0,417,415, + 1,0,0,0,418,419,5,11,0,0,419,420,3,26,13,0,420,421,3,66,33,0,421, + 422,5,269,0,0,422,423,7,0,0,0,423,424,3,42,21,0,424,1342,1,0,0,0, + 425,426,5,11,0,0,426,427,3,26,13,0,427,428,3,66,33,0,428,429,5,269, + 0,0,429,430,5,170,0,0,430,431,3,364,182,0,431,1342,1,0,0,0,432,433, + 5,96,0,0,433,435,3,26,13,0,434,436,3,166,83,0,435,434,1,0,0,0,435, + 436,1,0,0,0,436,437,1,0,0,0,437,439,3,66,33,0,438,440,7,1,0,0,439, + 438,1,0,0,0,439,440,1,0,0,0,440,1342,1,0,0,0,441,442,5,273,0,0,442, + 445,7,2,0,0,443,444,7,3,0,0,444,446,3,222,111,0,445,443,1,0,0,0, + 445,446,1,0,0,0,446,451,1,0,0,0,447,449,5,163,0,0,448,447,1,0,0, + 0,448,449,1,0,0,0,449,450,1,0,0,0,450,452,3,364,182,0,451,448,1, + 0,0,0,451,452,1,0,0,0,452,1342,1,0,0,0,453,455,5,59,0,0,454,456, + 5,298,0,0,455,454,1,0,0,0,455,456,1,0,0,0,456,458,1,0,0,0,457,459, + 5,109,0,0,458,457,1,0,0,0,458,459,1,0,0,0,459,460,1,0,0,0,460,462, + 5,293,0,0,461,463,3,164,82,0,462,461,1,0,0,0,462,463,1,0,0,0,463, + 464,1,0,0,0,464,469,3,70,35,0,465,466,5,2,0,0,466,467,3,322,161, + 0,467,468,5,3,0,0,468,470,1,0,0,0,469,465,1,0,0,0,469,470,1,0,0, + 0,470,472,1,0,0,0,471,473,3,36,18,0,472,471,1,0,0,0,472,473,1,0, + 0,0,473,474,1,0,0,0,474,479,3,38,19,0,475,477,5,20,0,0,476,475,1, + 0,0,0,476,477,1,0,0,0,477,478,1,0,0,0,478,480,3,16,8,0,479,476,1, + 0,0,0,479,480,1,0,0,0,480,1342,1,0,0,0,481,482,5,59,0,0,482,484, + 5,293,0,0,483,485,3,164,82,0,484,483,1,0,0,0,484,485,1,0,0,0,485, + 486,1,0,0,0,486,487,3,70,35,0,487,488,5,163,0,0,488,499,3,72,36, + 0,489,498,3,36,18,0,490,498,3,218,109,0,491,498,3,58,29,0,492,493, + 5,170,0,0,493,498,3,364,182,0,494,495,5,297,0,0,495,498,3,42,21, + 0,496,498,3,40,20,0,497,489,1,0,0,0,497,490,1,0,0,0,497,491,1,0, + 0,0,497,492,1,0,0,0,497,494,1,0,0,0,497,496,1,0,0,0,498,501,1,0, + 0,0,499,497,1,0,0,0,499,500,1,0,0,0,500,1342,1,0,0,0,501,499,1,0, + 0,0,502,503,5,59,0,0,503,505,5,208,0,0,504,502,1,0,0,0,504,505,1, + 0,0,0,505,506,1,0,0,0,506,507,5,244,0,0,507,508,5,293,0,0,508,513, + 3,70,35,0,509,510,5,2,0,0,510,511,3,322,161,0,511,512,5,3,0,0,512, + 514,1,0,0,0,513,509,1,0,0,0,513,514,1,0,0,0,514,516,1,0,0,0,515, + 517,3,36,18,0,516,515,1,0,0,0,516,517,1,0,0,0,517,518,1,0,0,0,518, + 523,3,38,19,0,519,521,5,20,0,0,520,519,1,0,0,0,520,521,1,0,0,0,521, + 522,1,0,0,0,522,524,3,16,8,0,523,520,1,0,0,0,523,524,1,0,0,0,524, + 1342,1,0,0,0,525,526,5,13,0,0,526,527,5,293,0,0,527,529,3,72,36, + 0,528,530,3,22,11,0,529,528,1,0,0,0,529,530,1,0,0,0,530,531,1,0, + 0,0,531,532,5,55,0,0,532,540,5,282,0,0,533,541,5,196,0,0,534,535, + 5,119,0,0,535,536,5,50,0,0,536,541,3,86,43,0,537,538,5,119,0,0,538, + 539,5,10,0,0,539,541,5,50,0,0,540,533,1,0,0,0,540,534,1,0,0,0,540, + 537,1,0,0,0,540,541,1,0,0,0,541,1342,1,0,0,0,542,543,5,13,0,0,543, + 546,5,294,0,0,544,545,7,3,0,0,545,547,3,66,33,0,546,544,1,0,0,0, + 546,547,1,0,0,0,547,548,1,0,0,0,548,549,5,55,0,0,549,551,5,282,0, + 0,550,552,5,196,0,0,551,550,1,0,0,0,551,552,1,0,0,0,552,1342,1,0, + 0,0,553,554,5,11,0,0,554,555,5,293,0,0,555,556,3,72,36,0,556,557, + 5,8,0,0,557,558,5,49,0,0,558,559,3,308,154,0,559,1342,1,0,0,0,560, + 561,5,11,0,0,561,562,5,293,0,0,562,563,3,72,36,0,563,564,5,8,0,0, + 564,565,5,50,0,0,565,566,5,2,0,0,566,567,3,306,153,0,567,568,5,3, + 0,0,568,1342,1,0,0,0,569,570,5,11,0,0,570,571,5,293,0,0,571,572, + 3,72,36,0,572,573,5,241,0,0,573,574,5,49,0,0,574,575,3,80,40,0,575, + 576,5,309,0,0,576,577,3,88,44,0,577,1342,1,0,0,0,578,579,5,11,0, + 0,579,580,5,293,0,0,580,581,3,72,36,0,581,582,5,96,0,0,582,584,5, + 49,0,0,583,585,3,166,83,0,584,583,1,0,0,0,584,585,1,0,0,0,585,586, + 1,0,0,0,586,587,3,80,40,0,587,1342,1,0,0,0,588,589,5,11,0,0,589, + 590,5,293,0,0,590,591,3,72,36,0,591,592,5,96,0,0,592,594,5,50,0, + 0,593,595,3,166,83,0,594,593,1,0,0,0,594,595,1,0,0,0,595,596,1,0, + 0,0,596,597,5,2,0,0,597,598,3,86,43,0,598,599,5,3,0,0,599,1342,1, + 0,0,0,600,605,5,11,0,0,601,602,5,293,0,0,602,606,3,72,36,0,603,604, + 5,338,0,0,604,606,3,76,38,0,605,601,1,0,0,0,605,603,1,0,0,0,606, + 607,1,0,0,0,607,608,5,241,0,0,608,609,5,309,0,0,609,610,3,222,111, + 0,610,1342,1,0,0,0,611,616,5,11,0,0,612,613,5,293,0,0,613,617,3, + 72,36,0,614,615,5,338,0,0,615,617,3,76,38,0,616,612,1,0,0,0,616, + 614,1,0,0,0,617,618,1,0,0,0,618,619,5,269,0,0,619,620,5,297,0,0, + 620,621,3,42,21,0,621,1342,1,0,0,0,622,627,5,11,0,0,623,624,5,293, + 0,0,624,628,3,72,36,0,625,626,5,338,0,0,626,628,3,76,38,0,627,623, + 1,0,0,0,627,625,1,0,0,0,628,629,1,0,0,0,629,630,5,328,0,0,630,632, + 5,297,0,0,631,633,3,166,83,0,632,631,1,0,0,0,632,633,1,0,0,0,633, + 634,1,0,0,0,634,635,3,42,21,0,635,1342,1,0,0,0,636,637,5,11,0,0, + 637,638,5,293,0,0,638,639,3,72,36,0,639,641,7,4,0,0,640,642,5,49, + 0,0,641,640,1,0,0,0,641,642,1,0,0,0,642,643,1,0,0,0,643,645,3,80, + 40,0,644,646,3,362,181,0,645,644,1,0,0,0,645,646,1,0,0,0,646,1342, + 1,0,0,0,647,648,5,11,0,0,648,649,5,293,0,0,649,651,3,72,36,0,650, + 652,3,22,11,0,651,650,1,0,0,0,651,652,1,0,0,0,652,653,1,0,0,0,653, + 655,5,39,0,0,654,656,5,49,0,0,655,654,1,0,0,0,655,656,1,0,0,0,656, + 657,1,0,0,0,657,658,3,80,40,0,658,660,3,320,160,0,659,661,3,300, + 150,0,660,659,1,0,0,0,660,661,1,0,0,0,661,1342,1,0,0,0,662,663,5, + 11,0,0,663,664,5,293,0,0,664,666,3,72,36,0,665,667,3,22,11,0,666, + 665,1,0,0,0,666,667,1,0,0,0,667,668,1,0,0,0,668,669,5,244,0,0,669, + 670,5,50,0,0,670,671,5,2,0,0,671,672,3,310,155,0,672,673,5,3,0,0, + 673,1342,1,0,0,0,674,675,5,11,0,0,675,676,5,293,0,0,676,678,3,72, + 36,0,677,679,3,22,11,0,678,677,1,0,0,0,678,679,1,0,0,0,679,680,1, + 0,0,0,680,681,5,269,0,0,681,682,5,266,0,0,682,686,3,364,182,0,683, + 684,5,346,0,0,684,685,5,267,0,0,685,687,3,42,21,0,686,683,1,0,0, + 0,686,687,1,0,0,0,687,1342,1,0,0,0,688,689,5,11,0,0,689,690,5,293, + 0,0,690,692,3,72,36,0,691,693,3,22,11,0,692,691,1,0,0,0,692,693, + 1,0,0,0,693,694,1,0,0,0,694,695,5,269,0,0,695,696,5,267,0,0,696, + 697,3,42,21,0,697,1342,1,0,0,0,698,703,5,11,0,0,699,700,5,293,0, + 0,700,704,3,72,36,0,701,702,5,338,0,0,702,704,3,76,38,0,703,699, + 1,0,0,0,703,701,1,0,0,0,704,705,1,0,0,0,705,707,5,8,0,0,706,708, + 3,164,82,0,707,706,1,0,0,0,707,708,1,0,0,0,708,710,1,0,0,0,709,711, + 3,20,10,0,710,709,1,0,0,0,711,712,1,0,0,0,712,710,1,0,0,0,712,713, + 1,0,0,0,713,1342,1,0,0,0,714,715,5,11,0,0,715,716,5,293,0,0,716, + 717,3,72,36,0,717,718,3,22,11,0,718,719,5,241,0,0,719,720,5,309, + 0,0,720,721,3,22,11,0,721,1342,1,0,0,0,722,727,5,11,0,0,723,724, + 5,293,0,0,724,728,3,72,36,0,725,726,5,338,0,0,726,728,3,76,38,0, + 727,723,1,0,0,0,727,725,1,0,0,0,728,729,1,0,0,0,729,731,5,96,0,0, + 730,732,3,166,83,0,731,730,1,0,0,0,731,732,1,0,0,0,732,733,1,0,0, + 0,733,738,3,22,11,0,734,735,5,4,0,0,735,737,3,22,11,0,736,734,1, + 0,0,0,737,740,1,0,0,0,738,736,1,0,0,0,738,739,1,0,0,0,739,742,1, + 0,0,0,740,738,1,0,0,0,741,743,5,230,0,0,742,741,1,0,0,0,742,743, + 1,0,0,0,743,1342,1,0,0,0,744,745,5,11,0,0,745,746,5,293,0,0,746, + 748,3,72,36,0,747,749,3,22,11,0,748,747,1,0,0,0,748,749,1,0,0,0, + 749,750,1,0,0,0,750,751,5,269,0,0,751,752,5,170,0,0,752,753,3,364, + 182,0,753,1342,1,0,0,0,754,755,5,11,0,0,755,756,5,293,0,0,756,757, + 3,72,36,0,757,758,5,237,0,0,758,759,5,219,0,0,759,1342,1,0,0,0,760, + 761,5,11,0,0,761,762,5,176,0,0,762,763,5,338,0,0,763,764,3,76,38, + 0,764,765,7,5,0,0,765,766,5,248,0,0,766,1342,1,0,0,0,767,768,5,11, + 0,0,768,769,5,176,0,0,769,770,5,338,0,0,770,771,3,76,38,0,771,772, + 5,269,0,0,772,773,5,297,0,0,773,774,3,42,21,0,774,1342,1,0,0,0,775, + 776,5,96,0,0,776,778,5,293,0,0,777,779,3,166,83,0,778,777,1,0,0, + 0,778,779,1,0,0,0,779,780,1,0,0,0,780,782,3,72,36,0,781,783,5,230, + 0,0,782,781,1,0,0,0,782,783,1,0,0,0,783,1342,1,0,0,0,784,785,5,96, + 0,0,785,787,5,338,0,0,786,788,3,166,83,0,787,786,1,0,0,0,787,788, + 1,0,0,0,788,789,1,0,0,0,789,1342,3,76,38,0,790,791,5,96,0,0,791, + 792,5,176,0,0,792,794,5,338,0,0,793,795,3,166,83,0,794,793,1,0,0, + 0,794,795,1,0,0,0,795,796,1,0,0,0,796,1342,3,76,38,0,797,800,5,59, + 0,0,798,799,5,208,0,0,799,801,5,244,0,0,800,798,1,0,0,0,800,801, + 1,0,0,0,801,806,1,0,0,0,802,804,5,128,0,0,803,802,1,0,0,0,803,804, + 1,0,0,0,804,805,1,0,0,0,805,807,5,298,0,0,806,803,1,0,0,0,806,807, + 1,0,0,0,807,808,1,0,0,0,808,810,5,338,0,0,809,811,3,164,82,0,810, + 809,1,0,0,0,810,811,1,0,0,0,811,812,1,0,0,0,812,814,3,74,37,0,813, + 815,3,192,96,0,814,813,1,0,0,0,814,815,1,0,0,0,815,825,1,0,0,0,816, + 817,5,51,0,0,817,824,3,364,182,0,818,819,5,218,0,0,819,820,5,203, + 0,0,820,824,3,184,92,0,821,822,5,297,0,0,822,824,3,42,21,0,823,816, + 1,0,0,0,823,818,1,0,0,0,823,821,1,0,0,0,824,827,1,0,0,0,825,823, + 1,0,0,0,825,826,1,0,0,0,826,828,1,0,0,0,827,825,1,0,0,0,828,829, + 5,20,0,0,829,830,3,16,8,0,830,1342,1,0,0,0,831,834,5,59,0,0,832, + 833,5,208,0,0,833,835,5,244,0,0,834,832,1,0,0,0,834,835,1,0,0,0, + 835,837,1,0,0,0,836,838,5,128,0,0,837,836,1,0,0,0,837,838,1,0,0, + 0,838,839,1,0,0,0,839,840,5,298,0,0,840,841,5,338,0,0,841,846,3, + 74,37,0,842,843,5,2,0,0,843,844,3,318,159,0,844,845,5,3,0,0,845, + 847,1,0,0,0,846,842,1,0,0,0,846,847,1,0,0,0,847,848,1,0,0,0,848, + 851,3,36,18,0,849,850,5,207,0,0,850,852,3,42,21,0,851,849,1,0,0, + 0,851,852,1,0,0,0,852,1342,1,0,0,0,853,854,5,11,0,0,854,855,5,338, + 0,0,855,857,3,76,38,0,856,858,5,20,0,0,857,856,1,0,0,0,857,858,1, + 0,0,0,858,859,1,0,0,0,859,860,3,16,8,0,860,1342,1,0,0,0,861,864, + 5,59,0,0,862,863,5,208,0,0,863,865,5,244,0,0,864,862,1,0,0,0,864, + 865,1,0,0,0,865,867,1,0,0,0,866,868,5,298,0,0,867,866,1,0,0,0,867, + 868,1,0,0,0,868,869,1,0,0,0,869,871,5,125,0,0,870,872,3,164,82,0, + 871,870,1,0,0,0,871,872,1,0,0,0,872,873,1,0,0,0,873,874,3,346,173, + 0,874,875,5,20,0,0,875,889,3,364,182,0,876,877,5,332,0,0,877,878, + 3,354,177,0,878,879,3,364,182,0,879,886,1,0,0,0,880,881,5,4,0,0, + 881,882,3,354,177,0,882,883,3,364,182,0,883,885,1,0,0,0,884,880, + 1,0,0,0,885,888,1,0,0,0,886,884,1,0,0,0,886,887,1,0,0,0,887,890, + 1,0,0,0,888,886,1,0,0,0,889,876,1,0,0,0,889,890,1,0,0,0,890,1342, + 1,0,0,0,891,892,5,59,0,0,892,893,5,176,0,0,893,895,5,338,0,0,894, + 896,3,164,82,0,895,894,1,0,0,0,895,896,1,0,0,0,896,897,1,0,0,0,897, + 899,3,74,37,0,898,900,3,36,18,0,899,898,1,0,0,0,899,900,1,0,0,0, + 900,918,1,0,0,0,901,902,5,207,0,0,902,917,3,42,21,0,903,904,5,218, + 0,0,904,905,5,31,0,0,905,917,3,246,123,0,906,917,3,10,5,0,907,917, + 3,8,4,0,908,917,3,218,109,0,909,917,3,58,29,0,910,911,5,170,0,0, + 911,917,3,364,182,0,912,913,5,51,0,0,913,917,3,364,182,0,914,915, + 5,297,0,0,915,917,3,42,21,0,916,901,1,0,0,0,916,903,1,0,0,0,916, + 906,1,0,0,0,916,907,1,0,0,0,916,908,1,0,0,0,916,909,1,0,0,0,916, + 910,1,0,0,0,916,912,1,0,0,0,916,914,1,0,0,0,917,920,1,0,0,0,918, + 916,1,0,0,0,918,919,1,0,0,0,919,921,1,0,0,0,920,918,1,0,0,0,921, + 922,5,20,0,0,922,923,3,16,8,0,923,1342,1,0,0,0,924,926,5,96,0,0, + 925,927,5,298,0,0,926,925,1,0,0,0,926,927,1,0,0,0,927,928,1,0,0, + 0,928,930,5,125,0,0,929,931,3,166,83,0,930,929,1,0,0,0,930,931,1, + 0,0,0,931,932,1,0,0,0,932,1342,3,344,172,0,933,936,5,81,0,0,934, + 935,5,208,0,0,935,937,5,244,0,0,936,934,1,0,0,0,936,937,1,0,0,0, + 937,939,1,0,0,0,938,940,5,336,0,0,939,938,1,0,0,0,939,940,1,0,0, + 0,940,941,1,0,0,0,941,943,3,344,172,0,942,944,3,304,152,0,943,942, + 1,0,0,0,943,944,1,0,0,0,944,946,1,0,0,0,945,947,3,316,158,0,946, + 945,1,0,0,0,946,947,1,0,0,0,947,1342,1,0,0,0,948,949,5,96,0,0,949, + 950,5,298,0,0,950,952,5,336,0,0,951,953,3,166,83,0,952,951,1,0,0, + 0,952,953,1,0,0,0,953,957,1,0,0,0,954,958,3,72,36,0,955,958,3,76, + 38,0,956,958,3,344,172,0,957,954,1,0,0,0,957,955,1,0,0,0,957,956, + 1,0,0,0,958,1342,1,0,0,0,959,961,5,106,0,0,960,962,7,6,0,0,961,960, + 1,0,0,0,961,962,1,0,0,0,962,963,1,0,0,0,963,1342,3,4,2,0,964,965, + 5,273,0,0,965,968,5,294,0,0,966,967,7,3,0,0,967,969,3,66,33,0,968, + 966,1,0,0,0,968,969,1,0,0,0,969,974,1,0,0,0,970,972,5,163,0,0,971, + 970,1,0,0,0,971,972,1,0,0,0,972,973,1,0,0,0,973,975,3,364,182,0, + 974,971,1,0,0,0,974,975,1,0,0,0,975,1342,1,0,0,0,976,977,5,273,0, + 0,977,978,5,293,0,0,978,981,5,108,0,0,979,980,7,3,0,0,980,982,3, + 66,33,0,981,979,1,0,0,0,981,982,1,0,0,0,982,983,1,0,0,0,983,984, + 5,163,0,0,984,986,3,364,182,0,985,987,3,22,11,0,986,985,1,0,0,0, + 986,987,1,0,0,0,987,1342,1,0,0,0,988,989,5,273,0,0,989,990,5,297, + 0,0,990,995,3,72,36,0,991,992,5,2,0,0,992,993,3,46,23,0,993,994, + 5,3,0,0,994,996,1,0,0,0,995,991,1,0,0,0,995,996,1,0,0,0,996,1342, + 1,0,0,0,997,998,5,273,0,0,998,999,5,50,0,0,999,1000,7,3,0,0,1000, + 1003,3,72,36,0,1001,1002,7,3,0,0,1002,1004,3,66,33,0,1003,1001,1, + 0,0,0,1003,1004,1,0,0,0,1004,1342,1,0,0,0,1005,1006,5,273,0,0,1006, + 1009,5,339,0,0,1007,1008,7,3,0,0,1008,1010,3,66,33,0,1009,1007,1, + 0,0,0,1009,1010,1,0,0,0,1010,1015,1,0,0,0,1011,1013,5,163,0,0,1012, + 1011,1,0,0,0,1012,1013,1,0,0,0,1013,1014,1,0,0,0,1014,1016,3,364, + 182,0,1015,1012,1,0,0,0,1015,1016,1,0,0,0,1016,1342,1,0,0,0,1017, + 1018,5,273,0,0,1018,1019,5,219,0,0,1019,1021,3,72,36,0,1020,1022, + 3,22,11,0,1021,1020,1,0,0,0,1021,1022,1,0,0,0,1022,1342,1,0,0,0, + 1023,1025,5,273,0,0,1024,1026,7,7,0,0,1025,1024,1,0,0,0,1025,1026, + 1,0,0,0,1026,1027,1,0,0,0,1027,1030,5,126,0,0,1028,1029,7,3,0,0, + 1029,1031,3,66,33,0,1030,1028,1,0,0,0,1030,1031,1,0,0,0,1031,1039, + 1,0,0,0,1032,1034,5,163,0,0,1033,1032,1,0,0,0,1033,1034,1,0,0,0, + 1034,1037,1,0,0,0,1035,1038,3,222,111,0,1036,1038,3,364,182,0,1037, + 1035,1,0,0,0,1037,1036,1,0,0,0,1038,1040,1,0,0,0,1039,1033,1,0,0, + 0,1039,1040,1,0,0,0,1040,1342,1,0,0,0,1041,1042,5,273,0,0,1042,1043, + 5,59,0,0,1043,1044,5,293,0,0,1044,1047,3,72,36,0,1045,1046,5,20, + 0,0,1046,1048,5,266,0,0,1047,1045,1,0,0,0,1047,1048,1,0,0,0,1048, + 1342,1,0,0,0,1049,1050,5,273,0,0,1050,1051,5,62,0,0,1051,1342,3, + 26,13,0,1052,1053,5,273,0,0,1053,1058,5,38,0,0,1054,1056,5,163,0, + 0,1055,1054,1,0,0,0,1055,1056,1,0,0,0,1056,1057,1,0,0,0,1057,1059, + 3,364,182,0,1058,1055,1,0,0,0,1058,1059,1,0,0,0,1059,1342,1,0,0, + 0,1060,1061,5,273,0,0,1061,1062,5,176,0,0,1062,1065,5,339,0,0,1063, + 1064,7,3,0,0,1064,1066,3,66,33,0,1065,1063,1,0,0,0,1065,1066,1,0, + 0,0,1066,1071,1,0,0,0,1067,1069,5,163,0,0,1068,1067,1,0,0,0,1068, + 1069,1,0,0,0,1069,1070,1,0,0,0,1070,1072,3,364,182,0,1071,1068,1, + 0,0,0,1071,1072,1,0,0,0,1072,1342,1,0,0,0,1073,1074,5,273,0,0,1074, + 1075,5,59,0,0,1075,1076,5,176,0,0,1076,1077,5,338,0,0,1077,1080, + 3,76,38,0,1078,1079,5,20,0,0,1079,1081,5,266,0,0,1080,1078,1,0,0, + 0,1080,1081,1,0,0,0,1081,1342,1,0,0,0,1082,1083,7,8,0,0,1083,1085, + 5,125,0,0,1084,1086,5,108,0,0,1085,1084,1,0,0,0,1085,1086,1,0,0, + 0,1086,1087,1,0,0,0,1087,1342,3,28,14,0,1088,1089,7,8,0,0,1089,1091, + 5,72,0,0,1090,1092,5,108,0,0,1091,1090,1,0,0,0,1091,1092,1,0,0,0, + 1092,1093,1,0,0,0,1093,1342,3,66,33,0,1094,1096,7,8,0,0,1095,1097, + 5,293,0,0,1096,1095,1,0,0,0,1096,1097,1,0,0,0,1097,1099,1,0,0,0, + 1098,1100,7,9,0,0,1099,1098,1,0,0,0,1099,1100,1,0,0,0,1100,1101, 1,0,0,0,1101,1103,3,72,36,0,1102,1104,3,22,11,0,1103,1102,1,0,0, 0,1103,1104,1,0,0,0,1104,1106,1,0,0,0,1105,1107,3,30,15,0,1106,1105, 1,0,0,0,1106,1107,1,0,0,0,1107,1342,1,0,0,0,1108,1110,7,8,0,0,1109, @@ -19840,367 +19867,368 @@ export class SparkSqlParser extends SQLParserBase { 2915,2914,1,0,0,0,2916,2924,1,0,0,0,2917,2919,5,20,0,0,2918,2917, 1,0,0,0,2918,2919,1,0,0,0,2919,2922,1,0,0,0,2920,2923,3,350,175, 0,2921,2923,3,184,92,0,2922,2920,1,0,0,0,2922,2921,1,0,0,0,2923, - 2925,1,0,0,0,2924,2918,1,0,0,0,2924,2925,1,0,0,0,2925,241,1,0,0, - 0,2926,2931,3,240,120,0,2927,2928,5,4,0,0,2928,2930,3,240,120,0, - 2929,2927,1,0,0,0,2930,2933,1,0,0,0,2931,2929,1,0,0,0,2931,2932, - 1,0,0,0,2932,243,1,0,0,0,2933,2931,1,0,0,0,2934,2935,3,242,121,0, - 2935,245,1,0,0,0,2936,2937,5,2,0,0,2937,2942,3,248,124,0,2938,2939, - 5,4,0,0,2939,2941,3,248,124,0,2940,2938,1,0,0,0,2941,2944,1,0,0, - 0,2942,2940,1,0,0,0,2942,2943,1,0,0,0,2943,2945,1,0,0,0,2944,2942, - 1,0,0,0,2945,2946,5,3,0,0,2946,247,1,0,0,0,2947,2950,3,250,125,0, - 2948,2950,3,320,160,0,2949,2947,1,0,0,0,2949,2948,1,0,0,0,2950,249, - 1,0,0,0,2951,2965,3,348,174,0,2952,2953,3,354,177,0,2953,2954,5, - 2,0,0,2954,2959,3,252,126,0,2955,2956,5,4,0,0,2956,2958,3,252,126, - 0,2957,2955,1,0,0,0,2958,2961,1,0,0,0,2959,2957,1,0,0,0,2959,2960, - 1,0,0,0,2960,2962,1,0,0,0,2961,2959,1,0,0,0,2962,2963,5,3,0,0,2963, - 2965,1,0,0,0,2964,2951,1,0,0,0,2964,2952,1,0,0,0,2965,251,1,0,0, - 0,2966,2969,3,348,174,0,2967,2969,3,274,137,0,2968,2966,1,0,0,0, - 2968,2967,1,0,0,0,2969,253,1,0,0,0,2970,2971,3,262,131,0,2971,255, - 1,0,0,0,2972,2973,3,354,177,0,2973,2974,5,373,0,0,2974,2975,3,254, - 127,0,2975,257,1,0,0,0,2976,2979,3,254,127,0,2977,2979,3,256,128, - 0,2978,2976,1,0,0,0,2978,2977,1,0,0,0,2979,259,1,0,0,0,2980,2985, - 3,254,127,0,2981,2982,5,4,0,0,2982,2984,3,254,127,0,2983,2981,1, - 0,0,0,2984,2987,1,0,0,0,2985,2983,1,0,0,0,2985,2986,1,0,0,0,2986, - 261,1,0,0,0,2987,2985,1,0,0,0,2988,2989,6,131,-1,0,2989,2990,7,37, - 0,0,2990,3001,3,262,131,5,2991,2992,5,105,0,0,2992,2993,5,2,0,0, - 2993,2994,3,16,8,0,2994,2995,5,3,0,0,2995,3001,1,0,0,0,2996,2998, - 3,266,133,0,2997,2999,3,264,132,0,2998,2997,1,0,0,0,2998,2999,1, - 0,0,0,2999,3001,1,0,0,0,3000,2988,1,0,0,0,3000,2991,1,0,0,0,3000, - 2996,1,0,0,0,3001,3010,1,0,0,0,3002,3003,10,2,0,0,3003,3004,5,14, - 0,0,3004,3009,3,262,131,3,3005,3006,10,1,0,0,3006,3007,5,208,0,0, - 3007,3009,3,262,131,2,3008,3002,1,0,0,0,3008,3005,1,0,0,0,3009,3012, - 1,0,0,0,3010,3008,1,0,0,0,3010,3011,1,0,0,0,3011,263,1,0,0,0,3012, - 3010,1,0,0,0,3013,3015,5,197,0,0,3014,3013,1,0,0,0,3014,3015,1,0, - 0,0,3015,3016,1,0,0,0,3016,3017,5,24,0,0,3017,3018,3,266,133,0,3018, - 3019,5,14,0,0,3019,3020,3,266,133,0,3020,3096,1,0,0,0,3021,3023, - 5,197,0,0,3022,3021,1,0,0,0,3022,3023,1,0,0,0,3023,3024,1,0,0,0, - 3024,3025,5,140,0,0,3025,3026,5,2,0,0,3026,3031,3,254,127,0,3027, - 3028,5,4,0,0,3028,3030,3,254,127,0,3029,3027,1,0,0,0,3030,3033,1, - 0,0,0,3031,3029,1,0,0,0,3031,3032,1,0,0,0,3032,3034,1,0,0,0,3033, - 3031,1,0,0,0,3034,3035,5,3,0,0,3035,3096,1,0,0,0,3036,3038,5,197, - 0,0,3037,3036,1,0,0,0,3037,3038,1,0,0,0,3038,3039,1,0,0,0,3039,3040, - 5,140,0,0,3040,3041,5,2,0,0,3041,3042,3,16,8,0,3042,3043,5,3,0,0, - 3043,3096,1,0,0,0,3044,3046,5,197,0,0,3045,3044,1,0,0,0,3045,3046, - 1,0,0,0,3046,3047,1,0,0,0,3047,3048,7,38,0,0,3048,3096,3,266,133, - 0,3049,3051,5,197,0,0,3050,3049,1,0,0,0,3050,3051,1,0,0,0,3051,3052, - 1,0,0,0,3052,3053,7,39,0,0,3053,3067,7,40,0,0,3054,3055,5,2,0,0, - 3055,3068,5,3,0,0,3056,3057,5,2,0,0,3057,3062,3,254,127,0,3058,3059, - 5,4,0,0,3059,3061,3,254,127,0,3060,3058,1,0,0,0,3061,3064,1,0,0, - 0,3062,3060,1,0,0,0,3062,3063,1,0,0,0,3063,3065,1,0,0,0,3064,3062, - 1,0,0,0,3065,3066,5,3,0,0,3066,3068,1,0,0,0,3067,3054,1,0,0,0,3067, - 3056,1,0,0,0,3068,3096,1,0,0,0,3069,3071,5,197,0,0,3070,3069,1,0, - 0,0,3070,3071,1,0,0,0,3071,3072,1,0,0,0,3072,3073,7,39,0,0,3073, - 3076,3,266,133,0,3074,3075,5,100,0,0,3075,3077,3,364,182,0,3076, - 3074,1,0,0,0,3076,3077,1,0,0,0,3077,3096,1,0,0,0,3078,3080,5,153, - 0,0,3079,3081,5,197,0,0,3080,3079,1,0,0,0,3080,3081,1,0,0,0,3081, - 3082,1,0,0,0,3082,3096,5,198,0,0,3083,3085,5,153,0,0,3084,3086,5, - 197,0,0,3085,3084,1,0,0,0,3085,3086,1,0,0,0,3086,3087,1,0,0,0,3087, - 3096,7,41,0,0,3088,3090,5,153,0,0,3089,3091,5,197,0,0,3090,3089, - 1,0,0,0,3090,3091,1,0,0,0,3091,3092,1,0,0,0,3092,3093,5,92,0,0,3093, - 3094,5,123,0,0,3094,3096,3,266,133,0,3095,3014,1,0,0,0,3095,3022, - 1,0,0,0,3095,3037,1,0,0,0,3095,3045,1,0,0,0,3095,3050,1,0,0,0,3095, - 3070,1,0,0,0,3095,3078,1,0,0,0,3095,3083,1,0,0,0,3095,3088,1,0,0, - 0,3096,265,1,0,0,0,3097,3098,6,133,-1,0,3098,3102,3,270,135,0,3099, - 3100,7,42,0,0,3100,3102,3,266,133,7,3101,3097,1,0,0,0,3101,3099, - 1,0,0,0,3102,3124,1,0,0,0,3103,3104,10,6,0,0,3104,3105,7,43,0,0, - 3105,3123,3,266,133,7,3106,3107,10,5,0,0,3107,3108,7,44,0,0,3108, - 3123,3,266,133,6,3109,3110,10,4,0,0,3110,3111,5,367,0,0,3111,3123, - 3,266,133,5,3112,3113,10,3,0,0,3113,3114,5,370,0,0,3114,3123,3,266, - 133,4,3115,3116,10,2,0,0,3116,3117,5,368,0,0,3117,3123,3,266,133, - 3,3118,3119,10,1,0,0,3119,3120,3,276,138,0,3120,3121,3,266,133,2, - 3121,3123,1,0,0,0,3122,3103,1,0,0,0,3122,3106,1,0,0,0,3122,3109, - 1,0,0,0,3122,3112,1,0,0,0,3122,3115,1,0,0,0,3122,3118,1,0,0,0,3123, - 3126,1,0,0,0,3124,3122,1,0,0,0,3124,3125,1,0,0,0,3125,267,1,0,0, - 0,3126,3124,1,0,0,0,3127,3128,7,45,0,0,3128,269,1,0,0,0,3129,3130, - 6,135,-1,0,3130,3379,7,46,0,0,3131,3132,7,47,0,0,3132,3135,5,2,0, - 0,3133,3136,3,268,134,0,3134,3136,3,364,182,0,3135,3133,1,0,0,0, - 3135,3134,1,0,0,0,3136,3137,1,0,0,0,3137,3138,5,4,0,0,3138,3139, - 3,266,133,0,3139,3140,5,4,0,0,3140,3141,3,266,133,0,3141,3142,5, - 3,0,0,3142,3379,1,0,0,0,3143,3144,7,48,0,0,3144,3147,5,2,0,0,3145, - 3148,3,268,134,0,3146,3148,3,364,182,0,3147,3145,1,0,0,0,3147,3146, - 1,0,0,0,3148,3149,1,0,0,0,3149,3150,5,4,0,0,3150,3151,3,266,133, - 0,3151,3152,5,4,0,0,3152,3153,3,266,133,0,3153,3154,5,3,0,0,3154, - 3379,1,0,0,0,3155,3157,5,35,0,0,3156,3158,3,330,165,0,3157,3156, - 1,0,0,0,3158,3159,1,0,0,0,3159,3157,1,0,0,0,3159,3160,1,0,0,0,3160, - 3163,1,0,0,0,3161,3162,5,97,0,0,3162,3164,3,254,127,0,3163,3161, - 1,0,0,0,3163,3164,1,0,0,0,3164,3165,1,0,0,0,3165,3166,5,99,0,0,3166, - 3379,1,0,0,0,3167,3168,5,35,0,0,3168,3170,3,254,127,0,3169,3171, - 3,330,165,0,3170,3169,1,0,0,0,3171,3172,1,0,0,0,3172,3170,1,0,0, - 0,3172,3173,1,0,0,0,3173,3176,1,0,0,0,3174,3175,5,97,0,0,3175,3177, - 3,254,127,0,3176,3174,1,0,0,0,3176,3177,1,0,0,0,3177,3178,1,0,0, - 0,3178,3179,5,99,0,0,3179,3379,1,0,0,0,3180,3181,7,49,0,0,3181,3182, - 5,2,0,0,3182,3183,3,254,127,0,3183,3184,5,20,0,0,3184,3185,3,304, - 152,0,3185,3186,5,3,0,0,3186,3379,1,0,0,0,3187,3188,5,286,0,0,3188, - 3197,5,2,0,0,3189,3194,3,240,120,0,3190,3191,5,4,0,0,3191,3193,3, - 240,120,0,3192,3190,1,0,0,0,3193,3196,1,0,0,0,3194,3192,1,0,0,0, - 3194,3195,1,0,0,0,3195,3198,1,0,0,0,3196,3194,1,0,0,0,3197,3189, - 1,0,0,0,3197,3198,1,0,0,0,3198,3199,1,0,0,0,3199,3379,5,3,0,0,3200, - 3201,5,116,0,0,3201,3202,5,2,0,0,3202,3205,3,254,127,0,3203,3204, - 5,138,0,0,3204,3206,5,199,0,0,3205,3203,1,0,0,0,3205,3206,1,0,0, - 0,3206,3207,1,0,0,0,3207,3208,5,3,0,0,3208,3379,1,0,0,0,3209,3210, - 5,17,0,0,3210,3211,5,2,0,0,3211,3214,3,254,127,0,3212,3213,5,138, - 0,0,3213,3215,5,199,0,0,3214,3212,1,0,0,0,3214,3215,1,0,0,0,3215, - 3216,1,0,0,0,3216,3217,5,3,0,0,3217,3379,1,0,0,0,3218,3219,5,157, - 0,0,3219,3220,5,2,0,0,3220,3223,3,254,127,0,3221,3222,5,138,0,0, - 3222,3224,5,199,0,0,3223,3221,1,0,0,0,3223,3224,1,0,0,0,3224,3225, - 1,0,0,0,3225,3226,5,3,0,0,3226,3379,1,0,0,0,3227,3228,5,225,0,0, - 3228,3229,5,2,0,0,3229,3230,3,266,133,0,3230,3231,5,140,0,0,3231, - 3232,3,266,133,0,3232,3233,5,3,0,0,3233,3379,1,0,0,0,3234,3379,3, - 274,137,0,3235,3379,5,363,0,0,3236,3237,3,348,174,0,3237,3238,5, - 5,0,0,3238,3239,5,363,0,0,3239,3379,1,0,0,0,3240,3241,5,2,0,0,3241, - 3244,3,240,120,0,3242,3243,5,4,0,0,3243,3245,3,240,120,0,3244,3242, - 1,0,0,0,3245,3246,1,0,0,0,3246,3244,1,0,0,0,3246,3247,1,0,0,0,3247, - 3248,1,0,0,0,3248,3249,5,3,0,0,3249,3379,1,0,0,0,3250,3251,5,2,0, - 0,3251,3252,3,16,8,0,3252,3253,5,3,0,0,3253,3379,1,0,0,0,3254,3255, - 5,136,0,0,3255,3256,5,2,0,0,3256,3257,3,254,127,0,3257,3258,5,3, - 0,0,3258,3379,1,0,0,0,3259,3260,3,344,172,0,3260,3272,5,2,0,0,3261, - 3263,3,170,85,0,3262,3261,1,0,0,0,3262,3263,1,0,0,0,3263,3264,1, - 0,0,0,3264,3269,3,258,129,0,3265,3266,5,4,0,0,3266,3268,3,258,129, - 0,3267,3265,1,0,0,0,3268,3271,1,0,0,0,3269,3267,1,0,0,0,3269,3270, - 1,0,0,0,3270,3273,1,0,0,0,3271,3269,1,0,0,0,3272,3262,1,0,0,0,3272, - 3273,1,0,0,0,3273,3274,1,0,0,0,3274,3281,5,3,0,0,3275,3276,5,114, - 0,0,3276,3277,5,2,0,0,3277,3278,5,344,0,0,3278,3279,3,262,131,0, - 3279,3280,5,3,0,0,3280,3282,1,0,0,0,3281,3275,1,0,0,0,3281,3282, - 1,0,0,0,3282,3285,1,0,0,0,3283,3284,7,50,0,0,3284,3286,5,199,0,0, - 3285,3283,1,0,0,0,3285,3286,1,0,0,0,3286,3289,1,0,0,0,3287,3288, - 5,213,0,0,3288,3290,3,336,168,0,3289,3287,1,0,0,0,3289,3290,1,0, - 0,0,3290,3379,1,0,0,0,3291,3292,3,354,177,0,3292,3293,5,372,0,0, - 3293,3294,3,254,127,0,3294,3379,1,0,0,0,3295,3296,5,2,0,0,3296,3299, - 3,354,177,0,3297,3298,5,4,0,0,3298,3300,3,354,177,0,3299,3297,1, - 0,0,0,3300,3301,1,0,0,0,3301,3299,1,0,0,0,3301,3302,1,0,0,0,3302, - 3303,1,0,0,0,3303,3304,5,3,0,0,3304,3305,5,372,0,0,3305,3306,3,254, - 127,0,3306,3379,1,0,0,0,3307,3379,3,82,41,0,3308,3309,5,2,0,0,3309, - 3310,3,254,127,0,3310,3311,5,3,0,0,3311,3379,1,0,0,0,3312,3313,5, - 110,0,0,3313,3314,5,2,0,0,3314,3315,3,354,177,0,3315,3316,5,123, - 0,0,3316,3317,3,266,133,0,3317,3318,5,3,0,0,3318,3379,1,0,0,0,3319, - 3320,7,51,0,0,3320,3321,5,2,0,0,3321,3322,3,266,133,0,3322,3323, - 7,52,0,0,3323,3326,3,266,133,0,3324,3325,7,53,0,0,3325,3327,3,266, - 133,0,3326,3324,1,0,0,0,3326,3327,1,0,0,0,3327,3328,1,0,0,0,3328, - 3329,5,3,0,0,3329,3379,1,0,0,0,3330,3331,5,315,0,0,3331,3333,5,2, - 0,0,3332,3334,7,54,0,0,3333,3332,1,0,0,0,3333,3334,1,0,0,0,3334, - 3336,1,0,0,0,3335,3337,3,266,133,0,3336,3335,1,0,0,0,3336,3337,1, - 0,0,0,3337,3338,1,0,0,0,3338,3339,5,123,0,0,3339,3340,3,266,133, - 0,3340,3341,5,3,0,0,3341,3379,1,0,0,0,3342,3343,5,215,0,0,3343,3344, - 5,2,0,0,3344,3345,3,266,133,0,3345,3346,5,224,0,0,3346,3347,3,266, - 133,0,3347,3348,5,123,0,0,3348,3351,3,266,133,0,3349,3350,5,119, - 0,0,3350,3352,3,266,133,0,3351,3349,1,0,0,0,3351,3352,1,0,0,0,3352, - 3353,1,0,0,0,3353,3354,5,3,0,0,3354,3379,1,0,0,0,3355,3356,7,55, - 0,0,3356,3357,5,2,0,0,3357,3358,3,266,133,0,3358,3359,5,3,0,0,3359, - 3360,5,347,0,0,3360,3361,5,130,0,0,3361,3362,5,2,0,0,3362,3363,5, - 209,0,0,3363,3364,5,31,0,0,3364,3365,3,104,52,0,3365,3372,5,3,0, - 0,3366,3367,5,114,0,0,3367,3368,5,2,0,0,3368,3369,5,344,0,0,3369, - 3370,3,262,131,0,3370,3371,5,3,0,0,3371,3373,1,0,0,0,3372,3366,1, - 0,0,0,3372,3373,1,0,0,0,3373,3376,1,0,0,0,3374,3375,5,213,0,0,3375, - 3377,3,336,168,0,3376,3374,1,0,0,0,3376,3377,1,0,0,0,3377,3379,1, - 0,0,0,3378,3129,1,0,0,0,3378,3131,1,0,0,0,3378,3143,1,0,0,0,3378, - 3155,1,0,0,0,3378,3167,1,0,0,0,3378,3180,1,0,0,0,3378,3187,1,0,0, - 0,3378,3200,1,0,0,0,3378,3209,1,0,0,0,3378,3218,1,0,0,0,3378,3227, - 1,0,0,0,3378,3234,1,0,0,0,3378,3235,1,0,0,0,3378,3236,1,0,0,0,3378, - 3240,1,0,0,0,3378,3250,1,0,0,0,3378,3254,1,0,0,0,3378,3259,1,0,0, - 0,3378,3291,1,0,0,0,3378,3295,1,0,0,0,3378,3307,1,0,0,0,3378,3308, - 1,0,0,0,3378,3312,1,0,0,0,3378,3319,1,0,0,0,3378,3330,1,0,0,0,3378, - 3342,1,0,0,0,3378,3355,1,0,0,0,3379,3390,1,0,0,0,3380,3381,10,9, - 0,0,3381,3382,5,6,0,0,3382,3383,3,266,133,0,3383,3384,5,7,0,0,3384, - 3389,1,0,0,0,3385,3386,10,7,0,0,3386,3387,5,5,0,0,3387,3389,3,354, - 177,0,3388,3380,1,0,0,0,3388,3385,1,0,0,0,3389,3392,1,0,0,0,3390, - 3388,1,0,0,0,3390,3391,1,0,0,0,3391,271,1,0,0,0,3392,3390,1,0,0, - 0,3393,3401,5,71,0,0,3394,3401,5,303,0,0,3395,3401,5,304,0,0,3396, - 3401,5,305,0,0,3397,3401,5,149,0,0,3398,3401,5,133,0,0,3399,3401, - 3,354,177,0,3400,3393,1,0,0,0,3400,3394,1,0,0,0,3400,3395,1,0,0, - 0,3400,3396,1,0,0,0,3400,3397,1,0,0,0,3400,3398,1,0,0,0,3400,3399, - 1,0,0,0,3401,273,1,0,0,0,3402,3418,5,198,0,0,3403,3418,5,376,0,0, - 3404,3405,5,371,0,0,3405,3418,3,354,177,0,3406,3418,3,284,142,0, - 3407,3408,3,272,136,0,3408,3409,3,364,182,0,3409,3418,1,0,0,0,3410, - 3418,3,360,180,0,3411,3418,3,282,141,0,3412,3414,3,364,182,0,3413, - 3412,1,0,0,0,3414,3415,1,0,0,0,3415,3413,1,0,0,0,3415,3416,1,0,0, - 0,3416,3418,1,0,0,0,3417,3402,1,0,0,0,3417,3403,1,0,0,0,3417,3404, - 1,0,0,0,3417,3406,1,0,0,0,3417,3407,1,0,0,0,3417,3410,1,0,0,0,3417, - 3411,1,0,0,0,3417,3413,1,0,0,0,3418,275,1,0,0,0,3419,3420,7,56,0, - 0,3420,277,1,0,0,0,3421,3422,7,57,0,0,3422,279,1,0,0,0,3423,3424, - 7,58,0,0,3424,281,1,0,0,0,3425,3426,7,59,0,0,3426,283,1,0,0,0,3427, - 3430,5,149,0,0,3428,3431,3,286,143,0,3429,3431,3,290,145,0,3430, - 3428,1,0,0,0,3430,3429,1,0,0,0,3431,285,1,0,0,0,3432,3434,3,288, - 144,0,3433,3435,3,292,146,0,3434,3433,1,0,0,0,3434,3435,1,0,0,0, - 3435,287,1,0,0,0,3436,3437,3,294,147,0,3437,3438,3,296,148,0,3438, - 3440,1,0,0,0,3439,3436,1,0,0,0,3440,3441,1,0,0,0,3441,3439,1,0,0, - 0,3441,3442,1,0,0,0,3442,289,1,0,0,0,3443,3446,3,292,146,0,3444, - 3447,3,288,144,0,3445,3447,3,292,146,0,3446,3444,1,0,0,0,3446,3445, - 1,0,0,0,3446,3447,1,0,0,0,3447,291,1,0,0,0,3448,3449,3,294,147,0, - 3449,3450,3,298,149,0,3450,3451,5,309,0,0,3451,3452,3,298,149,0, - 3452,293,1,0,0,0,3453,3455,7,60,0,0,3454,3453,1,0,0,0,3454,3455, - 1,0,0,0,3455,3459,1,0,0,0,3456,3460,5,382,0,0,3457,3460,5,384,0, - 0,3458,3460,3,364,182,0,3459,3456,1,0,0,0,3459,3457,1,0,0,0,3459, - 3458,1,0,0,0,3460,295,1,0,0,0,3461,3462,7,61,0,0,3462,297,1,0,0, - 0,3463,3464,7,62,0,0,3464,299,1,0,0,0,3465,3469,5,116,0,0,3466,3467, - 5,9,0,0,3467,3469,3,350,175,0,3468,3465,1,0,0,0,3468,3466,1,0,0, - 0,3469,301,1,0,0,0,3470,3501,5,27,0,0,3471,3501,5,308,0,0,3472,3501, - 5,32,0,0,3473,3501,5,276,0,0,3474,3501,5,272,0,0,3475,3501,5,150, - 0,0,3476,3501,5,151,0,0,3477,3501,5,25,0,0,3478,3501,5,174,0,0,3479, - 3501,5,117,0,0,3480,3501,5,234,0,0,3481,3501,5,95,0,0,3482,3501, - 5,71,0,0,3483,3501,5,303,0,0,3484,3501,5,305,0,0,3485,3501,5,304, - 0,0,3486,3501,5,285,0,0,3487,3501,5,41,0,0,3488,3501,5,40,0,0,3489, - 3501,5,334,0,0,3490,3501,5,26,0,0,3491,3501,5,80,0,0,3492,3501,5, - 79,0,0,3493,3501,5,200,0,0,3494,3501,5,340,0,0,3495,3501,5,149,0, - 0,3496,3501,5,19,0,0,3497,3501,5,286,0,0,3498,3501,5,177,0,0,3499, - 3501,3,354,177,0,3500,3470,1,0,0,0,3500,3471,1,0,0,0,3500,3472,1, - 0,0,0,3500,3473,1,0,0,0,3500,3474,1,0,0,0,3500,3475,1,0,0,0,3500, - 3476,1,0,0,0,3500,3477,1,0,0,0,3500,3478,1,0,0,0,3500,3479,1,0,0, - 0,3500,3480,1,0,0,0,3500,3481,1,0,0,0,3500,3482,1,0,0,0,3500,3483, - 1,0,0,0,3500,3484,1,0,0,0,3500,3485,1,0,0,0,3500,3486,1,0,0,0,3500, - 3487,1,0,0,0,3500,3488,1,0,0,0,3500,3489,1,0,0,0,3500,3490,1,0,0, - 0,3500,3491,1,0,0,0,3500,3492,1,0,0,0,3500,3493,1,0,0,0,3500,3494, - 1,0,0,0,3500,3495,1,0,0,0,3500,3496,1,0,0,0,3500,3497,1,0,0,0,3500, - 3498,1,0,0,0,3500,3499,1,0,0,0,3501,303,1,0,0,0,3502,3503,5,19,0, - 0,3503,3504,5,356,0,0,3504,3505,3,304,152,0,3505,3506,5,358,0,0, - 3506,3556,1,0,0,0,3507,3508,5,177,0,0,3508,3509,5,356,0,0,3509,3510, - 3,304,152,0,3510,3511,5,4,0,0,3511,3512,3,304,152,0,3512,3513,5, - 358,0,0,3513,3556,1,0,0,0,3514,3528,5,286,0,0,3515,3524,5,356,0, - 0,3516,3521,3,328,164,0,3517,3518,5,4,0,0,3518,3520,3,328,164,0, - 3519,3517,1,0,0,0,3520,3523,1,0,0,0,3521,3519,1,0,0,0,3521,3522, - 1,0,0,0,3522,3525,1,0,0,0,3523,3521,1,0,0,0,3524,3516,1,0,0,0,3524, - 3525,1,0,0,0,3525,3526,1,0,0,0,3526,3529,5,358,0,0,3527,3529,5,354, - 0,0,3528,3515,1,0,0,0,3528,3527,1,0,0,0,3529,3556,1,0,0,0,3530,3531, - 5,149,0,0,3531,3534,7,63,0,0,3532,3533,5,309,0,0,3533,3535,5,186, - 0,0,3534,3532,1,0,0,0,3534,3535,1,0,0,0,3535,3556,1,0,0,0,3536,3537, - 5,149,0,0,3537,3540,7,64,0,0,3538,3539,5,309,0,0,3539,3541,7,65, - 0,0,3540,3538,1,0,0,0,3540,3541,1,0,0,0,3541,3556,1,0,0,0,3542,3553, - 3,302,151,0,3543,3544,5,2,0,0,3544,3549,5,382,0,0,3545,3546,5,4, - 0,0,3546,3548,5,382,0,0,3547,3545,1,0,0,0,3548,3551,1,0,0,0,3549, - 3547,1,0,0,0,3549,3550,1,0,0,0,3550,3552,1,0,0,0,3551,3549,1,0,0, - 0,3552,3554,5,3,0,0,3553,3543,1,0,0,0,3553,3554,1,0,0,0,3554,3556, - 1,0,0,0,3555,3502,1,0,0,0,3555,3507,1,0,0,0,3555,3514,1,0,0,0,3555, - 3530,1,0,0,0,3555,3536,1,0,0,0,3555,3542,1,0,0,0,3556,305,1,0,0, - 0,3557,3562,3,308,154,0,3558,3559,5,4,0,0,3559,3561,3,308,154,0, - 3560,3558,1,0,0,0,3561,3564,1,0,0,0,3562,3560,1,0,0,0,3562,3563, - 1,0,0,0,3563,307,1,0,0,0,3564,3562,1,0,0,0,3565,3566,3,88,44,0,3566, - 3570,3,304,152,0,3567,3569,3,314,157,0,3568,3567,1,0,0,0,3569,3572, - 1,0,0,0,3570,3568,1,0,0,0,3570,3571,1,0,0,0,3571,309,1,0,0,0,3572, - 3570,1,0,0,0,3573,3578,3,312,156,0,3574,3575,5,4,0,0,3575,3577,3, - 312,156,0,3576,3574,1,0,0,0,3577,3580,1,0,0,0,3578,3576,1,0,0,0, - 3578,3579,1,0,0,0,3579,311,1,0,0,0,3580,3578,1,0,0,0,3581,3582,3, - 80,40,0,3582,3586,3,304,152,0,3583,3585,3,314,157,0,3584,3583,1, - 0,0,0,3585,3588,1,0,0,0,3586,3584,1,0,0,0,3586,3587,1,0,0,0,3587, - 313,1,0,0,0,3588,3586,1,0,0,0,3589,3590,5,197,0,0,3590,3597,5,198, - 0,0,3591,3592,5,82,0,0,3592,3597,3,254,127,0,3593,3594,5,51,0,0, - 3594,3597,3,364,182,0,3595,3597,3,300,150,0,3596,3589,1,0,0,0,3596, - 3591,1,0,0,0,3596,3593,1,0,0,0,3596,3595,1,0,0,0,3597,315,1,0,0, - 0,3598,3599,7,66,0,0,3599,3600,3,254,127,0,3600,317,1,0,0,0,3601, - 3606,3,320,160,0,3602,3603,5,4,0,0,3603,3605,3,320,160,0,3604,3602, - 1,0,0,0,3605,3608,1,0,0,0,3606,3604,1,0,0,0,3606,3607,1,0,0,0,3607, - 319,1,0,0,0,3608,3606,1,0,0,0,3609,3610,3,350,175,0,3610,3613,3, - 304,152,0,3611,3612,5,197,0,0,3612,3614,5,198,0,0,3613,3611,1,0, - 0,0,3613,3614,1,0,0,0,3614,3617,1,0,0,0,3615,3616,5,51,0,0,3616, - 3618,3,364,182,0,3617,3615,1,0,0,0,3617,3618,1,0,0,0,3618,321,1, - 0,0,0,3619,3624,3,324,162,0,3620,3621,5,4,0,0,3621,3623,3,324,162, - 0,3622,3620,1,0,0,0,3623,3626,1,0,0,0,3624,3622,1,0,0,0,3624,3625, - 1,0,0,0,3625,323,1,0,0,0,3626,3624,1,0,0,0,3627,3628,3,88,44,0,3628, - 3632,3,304,152,0,3629,3631,3,326,163,0,3630,3629,1,0,0,0,3631,3634, - 1,0,0,0,3632,3630,1,0,0,0,3632,3633,1,0,0,0,3633,325,1,0,0,0,3634, - 3632,1,0,0,0,3635,3636,5,197,0,0,3636,3649,5,198,0,0,3637,3638,5, - 82,0,0,3638,3649,3,254,127,0,3639,3640,5,127,0,0,3640,3641,5,12, - 0,0,3641,3642,5,20,0,0,3642,3643,5,2,0,0,3643,3644,3,254,127,0,3644, - 3645,5,3,0,0,3645,3649,1,0,0,0,3646,3647,5,51,0,0,3647,3649,3,364, - 182,0,3648,3635,1,0,0,0,3648,3637,1,0,0,0,3648,3639,1,0,0,0,3648, - 3646,1,0,0,0,3649,327,1,0,0,0,3650,3652,3,354,177,0,3651,3653,5, - 371,0,0,3652,3651,1,0,0,0,3652,3653,1,0,0,0,3653,3654,1,0,0,0,3654, - 3657,3,304,152,0,3655,3656,5,197,0,0,3656,3658,5,198,0,0,3657,3655, - 1,0,0,0,3657,3658,1,0,0,0,3658,3661,1,0,0,0,3659,3660,5,51,0,0,3660, - 3662,3,364,182,0,3661,3659,1,0,0,0,3661,3662,1,0,0,0,3662,329,1, - 0,0,0,3663,3664,5,343,0,0,3664,3665,3,254,127,0,3665,3666,5,300, - 0,0,3666,3667,3,254,127,0,3667,331,1,0,0,0,3668,3669,5,345,0,0,3669, - 3670,3,350,175,0,3670,3671,5,20,0,0,3671,3679,3,336,168,0,3672,3673, - 5,4,0,0,3673,3674,3,350,175,0,3674,3675,5,20,0,0,3675,3676,3,336, - 168,0,3676,3678,1,0,0,0,3677,3672,1,0,0,0,3678,3681,1,0,0,0,3679, - 3677,1,0,0,0,3679,3680,1,0,0,0,3680,333,1,0,0,0,3681,3679,1,0,0, - 0,3682,3683,5,351,0,0,3683,3684,5,31,0,0,3684,3685,3,86,43,0,3685, - 335,1,0,0,0,3686,3726,3,350,175,0,3687,3688,5,2,0,0,3688,3689,3, - 350,175,0,3689,3690,5,3,0,0,3690,3726,1,0,0,0,3691,3719,5,2,0,0, - 3692,3693,5,44,0,0,3693,3694,5,31,0,0,3694,3699,3,254,127,0,3695, - 3696,5,4,0,0,3696,3698,3,254,127,0,3697,3695,1,0,0,0,3698,3701,1, - 0,0,0,3699,3697,1,0,0,0,3699,3700,1,0,0,0,3700,3720,1,0,0,0,3701, - 3699,1,0,0,0,3702,3703,7,35,0,0,3703,3704,5,31,0,0,3704,3709,3,254, - 127,0,3705,3706,5,4,0,0,3706,3708,3,254,127,0,3707,3705,1,0,0,0, - 3708,3711,1,0,0,0,3709,3707,1,0,0,0,3709,3710,1,0,0,0,3710,3713, - 1,0,0,0,3711,3709,1,0,0,0,3712,3702,1,0,0,0,3712,3713,1,0,0,0,3713, - 3717,1,0,0,0,3714,3715,7,36,0,0,3715,3716,5,31,0,0,3716,3718,3,96, - 48,0,3717,3714,1,0,0,0,3717,3718,1,0,0,0,3718,3720,1,0,0,0,3719, - 3692,1,0,0,0,3719,3712,1,0,0,0,3720,3722,1,0,0,0,3721,3723,3,338, - 169,0,3722,3721,1,0,0,0,3722,3723,1,0,0,0,3723,3724,1,0,0,0,3724, - 3726,5,3,0,0,3725,3686,1,0,0,0,3725,3687,1,0,0,0,3725,3691,1,0,0, - 0,3726,337,1,0,0,0,3727,3728,7,67,0,0,3728,3736,3,340,170,0,3729, - 3730,7,67,0,0,3730,3731,5,24,0,0,3731,3732,3,340,170,0,3732,3733, - 5,14,0,0,3733,3734,3,340,170,0,3734,3736,1,0,0,0,3735,3727,1,0,0, - 0,3735,3729,1,0,0,0,3736,339,1,0,0,0,3737,3738,5,321,0,0,3738,3745, - 7,68,0,0,3739,3740,5,62,0,0,3740,3745,5,257,0,0,3741,3742,3,254, - 127,0,3742,3743,7,68,0,0,3743,3745,1,0,0,0,3744,3737,1,0,0,0,3744, - 3739,1,0,0,0,3744,3741,1,0,0,0,3745,341,1,0,0,0,3746,3751,3,348, - 174,0,3747,3748,5,4,0,0,3748,3750,3,348,174,0,3749,3747,1,0,0,0, - 3750,3753,1,0,0,0,3751,3749,1,0,0,0,3751,3752,1,0,0,0,3752,343,1, - 0,0,0,3753,3751,1,0,0,0,3754,3755,5,136,0,0,3755,3756,5,2,0,0,3756, - 3757,3,254,127,0,3757,3758,5,3,0,0,3758,3764,1,0,0,0,3759,3764,3, - 348,174,0,3760,3764,5,114,0,0,3761,3764,5,161,0,0,3762,3764,5,250, - 0,0,3763,3754,1,0,0,0,3763,3759,1,0,0,0,3763,3760,1,0,0,0,3763,3761, - 1,0,0,0,3763,3762,1,0,0,0,3764,345,1,0,0,0,3765,3766,3,348,174,0, - 3766,347,1,0,0,0,3767,3772,3,354,177,0,3768,3769,5,5,0,0,3769,3771, - 3,354,177,0,3770,3768,1,0,0,0,3771,3774,1,0,0,0,3772,3770,1,0,0, - 0,3772,3773,1,0,0,0,3773,349,1,0,0,0,3774,3772,1,0,0,0,3775,3776, - 3,354,177,0,3776,3777,3,352,176,0,3777,351,1,0,0,0,3778,3779,5,362, - 0,0,3779,3781,3,354,177,0,3780,3778,1,0,0,0,3781,3782,1,0,0,0,3782, - 3780,1,0,0,0,3782,3783,1,0,0,0,3783,3786,1,0,0,0,3784,3786,1,0,0, - 0,3785,3780,1,0,0,0,3785,3784,1,0,0,0,3786,353,1,0,0,0,3787,3790, - 3,356,178,0,3788,3790,3,368,184,0,3789,3787,1,0,0,0,3789,3788,1, - 0,0,0,3790,355,1,0,0,0,3791,3796,5,388,0,0,3792,3796,3,358,179,0, - 3793,3796,3,366,183,0,3794,3796,3,370,185,0,3795,3791,1,0,0,0,3795, - 3792,1,0,0,0,3795,3793,1,0,0,0,3795,3794,1,0,0,0,3796,357,1,0,0, - 0,3797,3798,7,69,0,0,3798,359,1,0,0,0,3799,3801,5,362,0,0,3800,3799, - 1,0,0,0,3800,3801,1,0,0,0,3801,3802,1,0,0,0,3802,3803,7,70,0,0,3803, - 361,1,0,0,0,3804,3805,5,319,0,0,3805,3818,3,304,152,0,3806,3807, - 5,51,0,0,3807,3818,3,364,182,0,3808,3818,3,300,150,0,3809,3810,7, - 71,0,0,3810,3811,5,197,0,0,3811,3818,5,198,0,0,3812,3813,5,269,0, - 0,3813,3814,5,82,0,0,3814,3818,3,254,127,0,3815,3816,5,96,0,0,3816, - 3818,5,82,0,0,3817,3804,1,0,0,0,3817,3806,1,0,0,0,3817,3808,1,0, - 0,0,3817,3809,1,0,0,0,3817,3812,1,0,0,0,3817,3815,1,0,0,0,3818,363, - 1,0,0,0,3819,3820,7,72,0,0,3820,365,1,0,0,0,3821,3822,7,73,0,0,3822, - 367,1,0,0,0,3823,3824,7,74,0,0,3824,369,1,0,0,0,3825,3826,7,75,0, - 0,3826,371,1,0,0,0,509,375,382,386,391,398,403,413,415,435,439,445, - 448,451,455,458,462,469,472,476,479,484,497,499,504,513,516,520, - 523,529,540,546,551,584,594,605,616,627,632,641,645,651,655,660, - 666,678,686,692,703,707,712,727,731,738,742,748,778,782,787,794, - 800,803,806,810,814,823,825,834,837,846,851,857,864,867,871,886, - 889,895,899,916,918,926,930,936,939,943,946,952,957,961,968,971, - 974,981,986,995,1003,1009,1012,1015,1021,1025,1030,1033,1037,1039, - 1047,1055,1058,1065,1068,1071,1080,1085,1091,1096,1099,1103,1106, - 1110,1120,1125,1138,1141,1149,1155,1158,1161,1166,1174,1179,1185, - 1191,1194,1201,1208,1216,1228,1236,1263,1266,1272,1281,1290,1296, - 1301,1306,1313,1318,1323,1330,1338,1341,1347,1354,1358,1421,1429, - 1436,1444,1456,1461,1470,1478,1483,1485,1493,1498,1502,1505,1513, - 1518,1527,1532,1535,1540,1544,1549,1551,1556,1565,1573,1579,1588, - 1595,1604,1609,1612,1637,1639,1651,1658,1661,1668,1672,1678,1686, - 1693,1696,1704,1715,1726,1734,1740,1751,1758,1765,1777,1785,1791, - 1797,1800,1819,1826,1833,1844,1849,1854,1859,1864,1867,1870,1874, - 1879,1886,1894,1903,1909,1915,1918,1920,1928,1938,1947,1951,1954, - 1958,1962,1970,1974,1977,1980,1983,1987,1991,1996,2000,2003,2006, - 2009,2013,2018,2022,2025,2028,2031,2033,2039,2046,2051,2054,2057, - 2061,2071,2075,2077,2080,2084,2090,2094,2105,2113,2115,2122,2126, - 2138,2145,2160,2165,2172,2188,2193,2206,2211,2219,2225,2229,2232, - 2235,2242,2245,2251,2260,2270,2285,2290,2292,2297,2306,2316,2321, - 2325,2330,2337,2342,2346,2349,2352,2366,2379,2384,2388,2391,2396, - 2401,2405,2408,2420,2431,2444,2455,2460,2463,2467,2470,2482,2491, - 2494,2499,2506,2509,2515,2521,2523,2526,2531,2535,2541,2545,2548, - 2553,2556,2561,2563,2570,2572,2576,2581,2588,2591,2609,2611,2614, - 2625,2634,2641,2649,2657,2662,2665,2668,2674,2682,2690,2702,2708, - 2715,2722,2724,2737,2743,2745,2754,2756,2764,2768,2780,2783,2788, - 2792,2794,2803,2815,2817,2824,2831,2837,2843,2845,2852,2860,2869, - 2876,2882,2887,2894,2907,2915,2918,2922,2924,2931,2942,2949,2959, - 2964,2968,2978,2985,2998,3000,3008,3010,3014,3022,3031,3037,3045, - 3050,3062,3067,3070,3076,3080,3085,3090,3095,3101,3122,3124,3135, - 3147,3159,3163,3172,3176,3194,3197,3205,3214,3223,3246,3262,3269, - 3272,3281,3285,3289,3301,3326,3333,3336,3351,3372,3376,3378,3388, - 3390,3400,3415,3417,3430,3434,3441,3446,3454,3459,3468,3500,3521, - 3524,3528,3534,3540,3549,3553,3555,3562,3570,3578,3586,3596,3606, - 3613,3617,3624,3632,3648,3652,3657,3661,3679,3699,3709,3712,3717, - 3719,3722,3725,3735,3744,3751,3763,3772,3782,3785,3789,3795,3800, - 3817 + 2925,1,0,0,0,2924,2918,1,0,0,0,2924,2925,1,0,0,0,2925,2929,1,0,0, + 0,2926,2927,4,120,6,0,2927,2929,3,78,39,0,2928,2915,1,0,0,0,2928, + 2926,1,0,0,0,2929,241,1,0,0,0,2930,2935,3,240,120,0,2931,2932,5, + 4,0,0,2932,2934,3,240,120,0,2933,2931,1,0,0,0,2934,2937,1,0,0,0, + 2935,2933,1,0,0,0,2935,2936,1,0,0,0,2936,243,1,0,0,0,2937,2935,1, + 0,0,0,2938,2939,3,242,121,0,2939,245,1,0,0,0,2940,2941,5,2,0,0,2941, + 2946,3,248,124,0,2942,2943,5,4,0,0,2943,2945,3,248,124,0,2944,2942, + 1,0,0,0,2945,2948,1,0,0,0,2946,2944,1,0,0,0,2946,2947,1,0,0,0,2947, + 2949,1,0,0,0,2948,2946,1,0,0,0,2949,2950,5,3,0,0,2950,247,1,0,0, + 0,2951,2954,3,250,125,0,2952,2954,3,320,160,0,2953,2951,1,0,0,0, + 2953,2952,1,0,0,0,2954,249,1,0,0,0,2955,2969,3,348,174,0,2956,2957, + 3,354,177,0,2957,2958,5,2,0,0,2958,2963,3,252,126,0,2959,2960,5, + 4,0,0,2960,2962,3,252,126,0,2961,2959,1,0,0,0,2962,2965,1,0,0,0, + 2963,2961,1,0,0,0,2963,2964,1,0,0,0,2964,2966,1,0,0,0,2965,2963, + 1,0,0,0,2966,2967,5,3,0,0,2967,2969,1,0,0,0,2968,2955,1,0,0,0,2968, + 2956,1,0,0,0,2969,251,1,0,0,0,2970,2973,3,348,174,0,2971,2973,3, + 274,137,0,2972,2970,1,0,0,0,2972,2971,1,0,0,0,2973,253,1,0,0,0,2974, + 2975,3,262,131,0,2975,255,1,0,0,0,2976,2977,3,354,177,0,2977,2978, + 5,373,0,0,2978,2979,3,254,127,0,2979,257,1,0,0,0,2980,2983,3,254, + 127,0,2981,2983,3,256,128,0,2982,2980,1,0,0,0,2982,2981,1,0,0,0, + 2983,259,1,0,0,0,2984,2989,3,254,127,0,2985,2986,5,4,0,0,2986,2988, + 3,254,127,0,2987,2985,1,0,0,0,2988,2991,1,0,0,0,2989,2987,1,0,0, + 0,2989,2990,1,0,0,0,2990,261,1,0,0,0,2991,2989,1,0,0,0,2992,2993, + 6,131,-1,0,2993,2994,7,37,0,0,2994,3005,3,262,131,5,2995,2996,5, + 105,0,0,2996,2997,5,2,0,0,2997,2998,3,16,8,0,2998,2999,5,3,0,0,2999, + 3005,1,0,0,0,3000,3002,3,266,133,0,3001,3003,3,264,132,0,3002,3001, + 1,0,0,0,3002,3003,1,0,0,0,3003,3005,1,0,0,0,3004,2992,1,0,0,0,3004, + 2995,1,0,0,0,3004,3000,1,0,0,0,3005,3014,1,0,0,0,3006,3007,10,2, + 0,0,3007,3008,5,14,0,0,3008,3013,3,262,131,3,3009,3010,10,1,0,0, + 3010,3011,5,208,0,0,3011,3013,3,262,131,2,3012,3006,1,0,0,0,3012, + 3009,1,0,0,0,3013,3016,1,0,0,0,3014,3012,1,0,0,0,3014,3015,1,0,0, + 0,3015,263,1,0,0,0,3016,3014,1,0,0,0,3017,3019,5,197,0,0,3018,3017, + 1,0,0,0,3018,3019,1,0,0,0,3019,3020,1,0,0,0,3020,3021,5,24,0,0,3021, + 3022,3,266,133,0,3022,3023,5,14,0,0,3023,3024,3,266,133,0,3024,3100, + 1,0,0,0,3025,3027,5,197,0,0,3026,3025,1,0,0,0,3026,3027,1,0,0,0, + 3027,3028,1,0,0,0,3028,3029,5,140,0,0,3029,3030,5,2,0,0,3030,3035, + 3,254,127,0,3031,3032,5,4,0,0,3032,3034,3,254,127,0,3033,3031,1, + 0,0,0,3034,3037,1,0,0,0,3035,3033,1,0,0,0,3035,3036,1,0,0,0,3036, + 3038,1,0,0,0,3037,3035,1,0,0,0,3038,3039,5,3,0,0,3039,3100,1,0,0, + 0,3040,3042,5,197,0,0,3041,3040,1,0,0,0,3041,3042,1,0,0,0,3042,3043, + 1,0,0,0,3043,3044,5,140,0,0,3044,3045,5,2,0,0,3045,3046,3,16,8,0, + 3046,3047,5,3,0,0,3047,3100,1,0,0,0,3048,3050,5,197,0,0,3049,3048, + 1,0,0,0,3049,3050,1,0,0,0,3050,3051,1,0,0,0,3051,3052,7,38,0,0,3052, + 3100,3,266,133,0,3053,3055,5,197,0,0,3054,3053,1,0,0,0,3054,3055, + 1,0,0,0,3055,3056,1,0,0,0,3056,3057,7,39,0,0,3057,3071,7,40,0,0, + 3058,3059,5,2,0,0,3059,3072,5,3,0,0,3060,3061,5,2,0,0,3061,3066, + 3,254,127,0,3062,3063,5,4,0,0,3063,3065,3,254,127,0,3064,3062,1, + 0,0,0,3065,3068,1,0,0,0,3066,3064,1,0,0,0,3066,3067,1,0,0,0,3067, + 3069,1,0,0,0,3068,3066,1,0,0,0,3069,3070,5,3,0,0,3070,3072,1,0,0, + 0,3071,3058,1,0,0,0,3071,3060,1,0,0,0,3072,3100,1,0,0,0,3073,3075, + 5,197,0,0,3074,3073,1,0,0,0,3074,3075,1,0,0,0,3075,3076,1,0,0,0, + 3076,3077,7,39,0,0,3077,3080,3,266,133,0,3078,3079,5,100,0,0,3079, + 3081,3,364,182,0,3080,3078,1,0,0,0,3080,3081,1,0,0,0,3081,3100,1, + 0,0,0,3082,3084,5,153,0,0,3083,3085,5,197,0,0,3084,3083,1,0,0,0, + 3084,3085,1,0,0,0,3085,3086,1,0,0,0,3086,3100,5,198,0,0,3087,3089, + 5,153,0,0,3088,3090,5,197,0,0,3089,3088,1,0,0,0,3089,3090,1,0,0, + 0,3090,3091,1,0,0,0,3091,3100,7,41,0,0,3092,3094,5,153,0,0,3093, + 3095,5,197,0,0,3094,3093,1,0,0,0,3094,3095,1,0,0,0,3095,3096,1,0, + 0,0,3096,3097,5,92,0,0,3097,3098,5,123,0,0,3098,3100,3,266,133,0, + 3099,3018,1,0,0,0,3099,3026,1,0,0,0,3099,3041,1,0,0,0,3099,3049, + 1,0,0,0,3099,3054,1,0,0,0,3099,3074,1,0,0,0,3099,3082,1,0,0,0,3099, + 3087,1,0,0,0,3099,3092,1,0,0,0,3100,265,1,0,0,0,3101,3102,6,133, + -1,0,3102,3106,3,270,135,0,3103,3104,7,42,0,0,3104,3106,3,266,133, + 7,3105,3101,1,0,0,0,3105,3103,1,0,0,0,3106,3128,1,0,0,0,3107,3108, + 10,6,0,0,3108,3109,7,43,0,0,3109,3127,3,266,133,7,3110,3111,10,5, + 0,0,3111,3112,7,44,0,0,3112,3127,3,266,133,6,3113,3114,10,4,0,0, + 3114,3115,5,367,0,0,3115,3127,3,266,133,5,3116,3117,10,3,0,0,3117, + 3118,5,370,0,0,3118,3127,3,266,133,4,3119,3120,10,2,0,0,3120,3121, + 5,368,0,0,3121,3127,3,266,133,3,3122,3123,10,1,0,0,3123,3124,3,276, + 138,0,3124,3125,3,266,133,2,3125,3127,1,0,0,0,3126,3107,1,0,0,0, + 3126,3110,1,0,0,0,3126,3113,1,0,0,0,3126,3116,1,0,0,0,3126,3119, + 1,0,0,0,3126,3122,1,0,0,0,3127,3130,1,0,0,0,3128,3126,1,0,0,0,3128, + 3129,1,0,0,0,3129,267,1,0,0,0,3130,3128,1,0,0,0,3131,3132,7,45,0, + 0,3132,269,1,0,0,0,3133,3134,6,135,-1,0,3134,3383,7,46,0,0,3135, + 3136,7,47,0,0,3136,3139,5,2,0,0,3137,3140,3,268,134,0,3138,3140, + 3,364,182,0,3139,3137,1,0,0,0,3139,3138,1,0,0,0,3140,3141,1,0,0, + 0,3141,3142,5,4,0,0,3142,3143,3,266,133,0,3143,3144,5,4,0,0,3144, + 3145,3,266,133,0,3145,3146,5,3,0,0,3146,3383,1,0,0,0,3147,3148,7, + 48,0,0,3148,3151,5,2,0,0,3149,3152,3,268,134,0,3150,3152,3,364,182, + 0,3151,3149,1,0,0,0,3151,3150,1,0,0,0,3152,3153,1,0,0,0,3153,3154, + 5,4,0,0,3154,3155,3,266,133,0,3155,3156,5,4,0,0,3156,3157,3,266, + 133,0,3157,3158,5,3,0,0,3158,3383,1,0,0,0,3159,3161,5,35,0,0,3160, + 3162,3,330,165,0,3161,3160,1,0,0,0,3162,3163,1,0,0,0,3163,3161,1, + 0,0,0,3163,3164,1,0,0,0,3164,3167,1,0,0,0,3165,3166,5,97,0,0,3166, + 3168,3,254,127,0,3167,3165,1,0,0,0,3167,3168,1,0,0,0,3168,3169,1, + 0,0,0,3169,3170,5,99,0,0,3170,3383,1,0,0,0,3171,3172,5,35,0,0,3172, + 3174,3,254,127,0,3173,3175,3,330,165,0,3174,3173,1,0,0,0,3175,3176, + 1,0,0,0,3176,3174,1,0,0,0,3176,3177,1,0,0,0,3177,3180,1,0,0,0,3178, + 3179,5,97,0,0,3179,3181,3,254,127,0,3180,3178,1,0,0,0,3180,3181, + 1,0,0,0,3181,3182,1,0,0,0,3182,3183,5,99,0,0,3183,3383,1,0,0,0,3184, + 3185,7,49,0,0,3185,3186,5,2,0,0,3186,3187,3,254,127,0,3187,3188, + 5,20,0,0,3188,3189,3,304,152,0,3189,3190,5,3,0,0,3190,3383,1,0,0, + 0,3191,3192,5,286,0,0,3192,3201,5,2,0,0,3193,3198,3,240,120,0,3194, + 3195,5,4,0,0,3195,3197,3,240,120,0,3196,3194,1,0,0,0,3197,3200,1, + 0,0,0,3198,3196,1,0,0,0,3198,3199,1,0,0,0,3199,3202,1,0,0,0,3200, + 3198,1,0,0,0,3201,3193,1,0,0,0,3201,3202,1,0,0,0,3202,3203,1,0,0, + 0,3203,3383,5,3,0,0,3204,3205,5,116,0,0,3205,3206,5,2,0,0,3206,3209, + 3,254,127,0,3207,3208,5,138,0,0,3208,3210,5,199,0,0,3209,3207,1, + 0,0,0,3209,3210,1,0,0,0,3210,3211,1,0,0,0,3211,3212,5,3,0,0,3212, + 3383,1,0,0,0,3213,3214,5,17,0,0,3214,3215,5,2,0,0,3215,3218,3,254, + 127,0,3216,3217,5,138,0,0,3217,3219,5,199,0,0,3218,3216,1,0,0,0, + 3218,3219,1,0,0,0,3219,3220,1,0,0,0,3220,3221,5,3,0,0,3221,3383, + 1,0,0,0,3222,3223,5,157,0,0,3223,3224,5,2,0,0,3224,3227,3,254,127, + 0,3225,3226,5,138,0,0,3226,3228,5,199,0,0,3227,3225,1,0,0,0,3227, + 3228,1,0,0,0,3228,3229,1,0,0,0,3229,3230,5,3,0,0,3230,3383,1,0,0, + 0,3231,3232,5,225,0,0,3232,3233,5,2,0,0,3233,3234,3,266,133,0,3234, + 3235,5,140,0,0,3235,3236,3,266,133,0,3236,3237,5,3,0,0,3237,3383, + 1,0,0,0,3238,3383,3,274,137,0,3239,3383,5,363,0,0,3240,3241,3,348, + 174,0,3241,3242,5,5,0,0,3242,3243,5,363,0,0,3243,3383,1,0,0,0,3244, + 3245,5,2,0,0,3245,3248,3,240,120,0,3246,3247,5,4,0,0,3247,3249,3, + 240,120,0,3248,3246,1,0,0,0,3249,3250,1,0,0,0,3250,3248,1,0,0,0, + 3250,3251,1,0,0,0,3251,3252,1,0,0,0,3252,3253,5,3,0,0,3253,3383, + 1,0,0,0,3254,3255,5,2,0,0,3255,3256,3,16,8,0,3256,3257,5,3,0,0,3257, + 3383,1,0,0,0,3258,3259,5,136,0,0,3259,3260,5,2,0,0,3260,3261,3,254, + 127,0,3261,3262,5,3,0,0,3262,3383,1,0,0,0,3263,3264,3,344,172,0, + 3264,3276,5,2,0,0,3265,3267,3,170,85,0,3266,3265,1,0,0,0,3266,3267, + 1,0,0,0,3267,3268,1,0,0,0,3268,3273,3,258,129,0,3269,3270,5,4,0, + 0,3270,3272,3,258,129,0,3271,3269,1,0,0,0,3272,3275,1,0,0,0,3273, + 3271,1,0,0,0,3273,3274,1,0,0,0,3274,3277,1,0,0,0,3275,3273,1,0,0, + 0,3276,3266,1,0,0,0,3276,3277,1,0,0,0,3277,3278,1,0,0,0,3278,3285, + 5,3,0,0,3279,3280,5,114,0,0,3280,3281,5,2,0,0,3281,3282,5,344,0, + 0,3282,3283,3,262,131,0,3283,3284,5,3,0,0,3284,3286,1,0,0,0,3285, + 3279,1,0,0,0,3285,3286,1,0,0,0,3286,3289,1,0,0,0,3287,3288,7,50, + 0,0,3288,3290,5,199,0,0,3289,3287,1,0,0,0,3289,3290,1,0,0,0,3290, + 3293,1,0,0,0,3291,3292,5,213,0,0,3292,3294,3,336,168,0,3293,3291, + 1,0,0,0,3293,3294,1,0,0,0,3294,3383,1,0,0,0,3295,3296,3,354,177, + 0,3296,3297,5,372,0,0,3297,3298,3,254,127,0,3298,3383,1,0,0,0,3299, + 3300,5,2,0,0,3300,3303,3,354,177,0,3301,3302,5,4,0,0,3302,3304,3, + 354,177,0,3303,3301,1,0,0,0,3304,3305,1,0,0,0,3305,3303,1,0,0,0, + 3305,3306,1,0,0,0,3306,3307,1,0,0,0,3307,3308,5,3,0,0,3308,3309, + 5,372,0,0,3309,3310,3,254,127,0,3310,3383,1,0,0,0,3311,3383,3,82, + 41,0,3312,3313,5,2,0,0,3313,3314,3,254,127,0,3314,3315,5,3,0,0,3315, + 3383,1,0,0,0,3316,3317,5,110,0,0,3317,3318,5,2,0,0,3318,3319,3,354, + 177,0,3319,3320,5,123,0,0,3320,3321,3,266,133,0,3321,3322,5,3,0, + 0,3322,3383,1,0,0,0,3323,3324,7,51,0,0,3324,3325,5,2,0,0,3325,3326, + 3,266,133,0,3326,3327,7,52,0,0,3327,3330,3,266,133,0,3328,3329,7, + 53,0,0,3329,3331,3,266,133,0,3330,3328,1,0,0,0,3330,3331,1,0,0,0, + 3331,3332,1,0,0,0,3332,3333,5,3,0,0,3333,3383,1,0,0,0,3334,3335, + 5,315,0,0,3335,3337,5,2,0,0,3336,3338,7,54,0,0,3337,3336,1,0,0,0, + 3337,3338,1,0,0,0,3338,3340,1,0,0,0,3339,3341,3,266,133,0,3340,3339, + 1,0,0,0,3340,3341,1,0,0,0,3341,3342,1,0,0,0,3342,3343,5,123,0,0, + 3343,3344,3,266,133,0,3344,3345,5,3,0,0,3345,3383,1,0,0,0,3346,3347, + 5,215,0,0,3347,3348,5,2,0,0,3348,3349,3,266,133,0,3349,3350,5,224, + 0,0,3350,3351,3,266,133,0,3351,3352,5,123,0,0,3352,3355,3,266,133, + 0,3353,3354,5,119,0,0,3354,3356,3,266,133,0,3355,3353,1,0,0,0,3355, + 3356,1,0,0,0,3356,3357,1,0,0,0,3357,3358,5,3,0,0,3358,3383,1,0,0, + 0,3359,3360,7,55,0,0,3360,3361,5,2,0,0,3361,3362,3,266,133,0,3362, + 3363,5,3,0,0,3363,3364,5,347,0,0,3364,3365,5,130,0,0,3365,3366,5, + 2,0,0,3366,3367,5,209,0,0,3367,3368,5,31,0,0,3368,3369,3,104,52, + 0,3369,3376,5,3,0,0,3370,3371,5,114,0,0,3371,3372,5,2,0,0,3372,3373, + 5,344,0,0,3373,3374,3,262,131,0,3374,3375,5,3,0,0,3375,3377,1,0, + 0,0,3376,3370,1,0,0,0,3376,3377,1,0,0,0,3377,3380,1,0,0,0,3378,3379, + 5,213,0,0,3379,3381,3,336,168,0,3380,3378,1,0,0,0,3380,3381,1,0, + 0,0,3381,3383,1,0,0,0,3382,3133,1,0,0,0,3382,3135,1,0,0,0,3382,3147, + 1,0,0,0,3382,3159,1,0,0,0,3382,3171,1,0,0,0,3382,3184,1,0,0,0,3382, + 3191,1,0,0,0,3382,3204,1,0,0,0,3382,3213,1,0,0,0,3382,3222,1,0,0, + 0,3382,3231,1,0,0,0,3382,3238,1,0,0,0,3382,3239,1,0,0,0,3382,3240, + 1,0,0,0,3382,3244,1,0,0,0,3382,3254,1,0,0,0,3382,3258,1,0,0,0,3382, + 3263,1,0,0,0,3382,3295,1,0,0,0,3382,3299,1,0,0,0,3382,3311,1,0,0, + 0,3382,3312,1,0,0,0,3382,3316,1,0,0,0,3382,3323,1,0,0,0,3382,3334, + 1,0,0,0,3382,3346,1,0,0,0,3382,3359,1,0,0,0,3383,3394,1,0,0,0,3384, + 3385,10,9,0,0,3385,3386,5,6,0,0,3386,3387,3,266,133,0,3387,3388, + 5,7,0,0,3388,3393,1,0,0,0,3389,3390,10,7,0,0,3390,3391,5,5,0,0,3391, + 3393,3,354,177,0,3392,3384,1,0,0,0,3392,3389,1,0,0,0,3393,3396,1, + 0,0,0,3394,3392,1,0,0,0,3394,3395,1,0,0,0,3395,271,1,0,0,0,3396, + 3394,1,0,0,0,3397,3405,5,71,0,0,3398,3405,5,303,0,0,3399,3405,5, + 304,0,0,3400,3405,5,305,0,0,3401,3405,5,149,0,0,3402,3405,5,133, + 0,0,3403,3405,3,354,177,0,3404,3397,1,0,0,0,3404,3398,1,0,0,0,3404, + 3399,1,0,0,0,3404,3400,1,0,0,0,3404,3401,1,0,0,0,3404,3402,1,0,0, + 0,3404,3403,1,0,0,0,3405,273,1,0,0,0,3406,3422,5,198,0,0,3407,3422, + 5,376,0,0,3408,3409,5,371,0,0,3409,3422,3,354,177,0,3410,3422,3, + 284,142,0,3411,3412,3,272,136,0,3412,3413,3,364,182,0,3413,3422, + 1,0,0,0,3414,3422,3,360,180,0,3415,3422,3,282,141,0,3416,3418,3, + 364,182,0,3417,3416,1,0,0,0,3418,3419,1,0,0,0,3419,3417,1,0,0,0, + 3419,3420,1,0,0,0,3420,3422,1,0,0,0,3421,3406,1,0,0,0,3421,3407, + 1,0,0,0,3421,3408,1,0,0,0,3421,3410,1,0,0,0,3421,3411,1,0,0,0,3421, + 3414,1,0,0,0,3421,3415,1,0,0,0,3421,3417,1,0,0,0,3422,275,1,0,0, + 0,3423,3424,7,56,0,0,3424,277,1,0,0,0,3425,3426,7,57,0,0,3426,279, + 1,0,0,0,3427,3428,7,58,0,0,3428,281,1,0,0,0,3429,3430,7,59,0,0,3430, + 283,1,0,0,0,3431,3434,5,149,0,0,3432,3435,3,286,143,0,3433,3435, + 3,290,145,0,3434,3432,1,0,0,0,3434,3433,1,0,0,0,3435,285,1,0,0,0, + 3436,3438,3,288,144,0,3437,3439,3,292,146,0,3438,3437,1,0,0,0,3438, + 3439,1,0,0,0,3439,287,1,0,0,0,3440,3441,3,294,147,0,3441,3442,3, + 296,148,0,3442,3444,1,0,0,0,3443,3440,1,0,0,0,3444,3445,1,0,0,0, + 3445,3443,1,0,0,0,3445,3446,1,0,0,0,3446,289,1,0,0,0,3447,3450,3, + 292,146,0,3448,3451,3,288,144,0,3449,3451,3,292,146,0,3450,3448, + 1,0,0,0,3450,3449,1,0,0,0,3450,3451,1,0,0,0,3451,291,1,0,0,0,3452, + 3453,3,294,147,0,3453,3454,3,298,149,0,3454,3455,5,309,0,0,3455, + 3456,3,298,149,0,3456,293,1,0,0,0,3457,3459,7,60,0,0,3458,3457,1, + 0,0,0,3458,3459,1,0,0,0,3459,3463,1,0,0,0,3460,3464,5,382,0,0,3461, + 3464,5,384,0,0,3462,3464,3,364,182,0,3463,3460,1,0,0,0,3463,3461, + 1,0,0,0,3463,3462,1,0,0,0,3464,295,1,0,0,0,3465,3466,7,61,0,0,3466, + 297,1,0,0,0,3467,3468,7,62,0,0,3468,299,1,0,0,0,3469,3473,5,116, + 0,0,3470,3471,5,9,0,0,3471,3473,3,350,175,0,3472,3469,1,0,0,0,3472, + 3470,1,0,0,0,3473,301,1,0,0,0,3474,3505,5,27,0,0,3475,3505,5,308, + 0,0,3476,3505,5,32,0,0,3477,3505,5,276,0,0,3478,3505,5,272,0,0,3479, + 3505,5,150,0,0,3480,3505,5,151,0,0,3481,3505,5,25,0,0,3482,3505, + 5,174,0,0,3483,3505,5,117,0,0,3484,3505,5,234,0,0,3485,3505,5,95, + 0,0,3486,3505,5,71,0,0,3487,3505,5,303,0,0,3488,3505,5,305,0,0,3489, + 3505,5,304,0,0,3490,3505,5,285,0,0,3491,3505,5,41,0,0,3492,3505, + 5,40,0,0,3493,3505,5,334,0,0,3494,3505,5,26,0,0,3495,3505,5,80,0, + 0,3496,3505,5,79,0,0,3497,3505,5,200,0,0,3498,3505,5,340,0,0,3499, + 3505,5,149,0,0,3500,3505,5,19,0,0,3501,3505,5,286,0,0,3502,3505, + 5,177,0,0,3503,3505,3,354,177,0,3504,3474,1,0,0,0,3504,3475,1,0, + 0,0,3504,3476,1,0,0,0,3504,3477,1,0,0,0,3504,3478,1,0,0,0,3504,3479, + 1,0,0,0,3504,3480,1,0,0,0,3504,3481,1,0,0,0,3504,3482,1,0,0,0,3504, + 3483,1,0,0,0,3504,3484,1,0,0,0,3504,3485,1,0,0,0,3504,3486,1,0,0, + 0,3504,3487,1,0,0,0,3504,3488,1,0,0,0,3504,3489,1,0,0,0,3504,3490, + 1,0,0,0,3504,3491,1,0,0,0,3504,3492,1,0,0,0,3504,3493,1,0,0,0,3504, + 3494,1,0,0,0,3504,3495,1,0,0,0,3504,3496,1,0,0,0,3504,3497,1,0,0, + 0,3504,3498,1,0,0,0,3504,3499,1,0,0,0,3504,3500,1,0,0,0,3504,3501, + 1,0,0,0,3504,3502,1,0,0,0,3504,3503,1,0,0,0,3505,303,1,0,0,0,3506, + 3507,5,19,0,0,3507,3508,5,356,0,0,3508,3509,3,304,152,0,3509,3510, + 5,358,0,0,3510,3560,1,0,0,0,3511,3512,5,177,0,0,3512,3513,5,356, + 0,0,3513,3514,3,304,152,0,3514,3515,5,4,0,0,3515,3516,3,304,152, + 0,3516,3517,5,358,0,0,3517,3560,1,0,0,0,3518,3532,5,286,0,0,3519, + 3528,5,356,0,0,3520,3525,3,328,164,0,3521,3522,5,4,0,0,3522,3524, + 3,328,164,0,3523,3521,1,0,0,0,3524,3527,1,0,0,0,3525,3523,1,0,0, + 0,3525,3526,1,0,0,0,3526,3529,1,0,0,0,3527,3525,1,0,0,0,3528,3520, + 1,0,0,0,3528,3529,1,0,0,0,3529,3530,1,0,0,0,3530,3533,5,358,0,0, + 3531,3533,5,354,0,0,3532,3519,1,0,0,0,3532,3531,1,0,0,0,3533,3560, + 1,0,0,0,3534,3535,5,149,0,0,3535,3538,7,63,0,0,3536,3537,5,309,0, + 0,3537,3539,5,186,0,0,3538,3536,1,0,0,0,3538,3539,1,0,0,0,3539,3560, + 1,0,0,0,3540,3541,5,149,0,0,3541,3544,7,64,0,0,3542,3543,5,309,0, + 0,3543,3545,7,65,0,0,3544,3542,1,0,0,0,3544,3545,1,0,0,0,3545,3560, + 1,0,0,0,3546,3557,3,302,151,0,3547,3548,5,2,0,0,3548,3553,5,382, + 0,0,3549,3550,5,4,0,0,3550,3552,5,382,0,0,3551,3549,1,0,0,0,3552, + 3555,1,0,0,0,3553,3551,1,0,0,0,3553,3554,1,0,0,0,3554,3556,1,0,0, + 0,3555,3553,1,0,0,0,3556,3558,5,3,0,0,3557,3547,1,0,0,0,3557,3558, + 1,0,0,0,3558,3560,1,0,0,0,3559,3506,1,0,0,0,3559,3511,1,0,0,0,3559, + 3518,1,0,0,0,3559,3534,1,0,0,0,3559,3540,1,0,0,0,3559,3546,1,0,0, + 0,3560,305,1,0,0,0,3561,3566,3,308,154,0,3562,3563,5,4,0,0,3563, + 3565,3,308,154,0,3564,3562,1,0,0,0,3565,3568,1,0,0,0,3566,3564,1, + 0,0,0,3566,3567,1,0,0,0,3567,307,1,0,0,0,3568,3566,1,0,0,0,3569, + 3570,3,88,44,0,3570,3574,3,304,152,0,3571,3573,3,314,157,0,3572, + 3571,1,0,0,0,3573,3576,1,0,0,0,3574,3572,1,0,0,0,3574,3575,1,0,0, + 0,3575,309,1,0,0,0,3576,3574,1,0,0,0,3577,3582,3,312,156,0,3578, + 3579,5,4,0,0,3579,3581,3,312,156,0,3580,3578,1,0,0,0,3581,3584,1, + 0,0,0,3582,3580,1,0,0,0,3582,3583,1,0,0,0,3583,311,1,0,0,0,3584, + 3582,1,0,0,0,3585,3586,3,80,40,0,3586,3590,3,304,152,0,3587,3589, + 3,314,157,0,3588,3587,1,0,0,0,3589,3592,1,0,0,0,3590,3588,1,0,0, + 0,3590,3591,1,0,0,0,3591,313,1,0,0,0,3592,3590,1,0,0,0,3593,3594, + 5,197,0,0,3594,3601,5,198,0,0,3595,3596,5,82,0,0,3596,3601,3,254, + 127,0,3597,3598,5,51,0,0,3598,3601,3,364,182,0,3599,3601,3,300,150, + 0,3600,3593,1,0,0,0,3600,3595,1,0,0,0,3600,3597,1,0,0,0,3600,3599, + 1,0,0,0,3601,315,1,0,0,0,3602,3603,7,66,0,0,3603,3604,3,254,127, + 0,3604,317,1,0,0,0,3605,3610,3,320,160,0,3606,3607,5,4,0,0,3607, + 3609,3,320,160,0,3608,3606,1,0,0,0,3609,3612,1,0,0,0,3610,3608,1, + 0,0,0,3610,3611,1,0,0,0,3611,319,1,0,0,0,3612,3610,1,0,0,0,3613, + 3614,3,350,175,0,3614,3617,3,304,152,0,3615,3616,5,197,0,0,3616, + 3618,5,198,0,0,3617,3615,1,0,0,0,3617,3618,1,0,0,0,3618,3621,1,0, + 0,0,3619,3620,5,51,0,0,3620,3622,3,364,182,0,3621,3619,1,0,0,0,3621, + 3622,1,0,0,0,3622,321,1,0,0,0,3623,3628,3,324,162,0,3624,3625,5, + 4,0,0,3625,3627,3,324,162,0,3626,3624,1,0,0,0,3627,3630,1,0,0,0, + 3628,3626,1,0,0,0,3628,3629,1,0,0,0,3629,323,1,0,0,0,3630,3628,1, + 0,0,0,3631,3632,3,88,44,0,3632,3636,3,304,152,0,3633,3635,3,326, + 163,0,3634,3633,1,0,0,0,3635,3638,1,0,0,0,3636,3634,1,0,0,0,3636, + 3637,1,0,0,0,3637,325,1,0,0,0,3638,3636,1,0,0,0,3639,3640,5,197, + 0,0,3640,3653,5,198,0,0,3641,3642,5,82,0,0,3642,3653,3,254,127,0, + 3643,3644,5,127,0,0,3644,3645,5,12,0,0,3645,3646,5,20,0,0,3646,3647, + 5,2,0,0,3647,3648,3,254,127,0,3648,3649,5,3,0,0,3649,3653,1,0,0, + 0,3650,3651,5,51,0,0,3651,3653,3,364,182,0,3652,3639,1,0,0,0,3652, + 3641,1,0,0,0,3652,3643,1,0,0,0,3652,3650,1,0,0,0,3653,327,1,0,0, + 0,3654,3656,3,354,177,0,3655,3657,5,371,0,0,3656,3655,1,0,0,0,3656, + 3657,1,0,0,0,3657,3658,1,0,0,0,3658,3661,3,304,152,0,3659,3660,5, + 197,0,0,3660,3662,5,198,0,0,3661,3659,1,0,0,0,3661,3662,1,0,0,0, + 3662,3665,1,0,0,0,3663,3664,5,51,0,0,3664,3666,3,364,182,0,3665, + 3663,1,0,0,0,3665,3666,1,0,0,0,3666,329,1,0,0,0,3667,3668,5,343, + 0,0,3668,3669,3,254,127,0,3669,3670,5,300,0,0,3670,3671,3,254,127, + 0,3671,331,1,0,0,0,3672,3673,5,345,0,0,3673,3674,3,350,175,0,3674, + 3675,5,20,0,0,3675,3683,3,336,168,0,3676,3677,5,4,0,0,3677,3678, + 3,350,175,0,3678,3679,5,20,0,0,3679,3680,3,336,168,0,3680,3682,1, + 0,0,0,3681,3676,1,0,0,0,3682,3685,1,0,0,0,3683,3681,1,0,0,0,3683, + 3684,1,0,0,0,3684,333,1,0,0,0,3685,3683,1,0,0,0,3686,3687,5,351, + 0,0,3687,3688,5,31,0,0,3688,3689,3,86,43,0,3689,335,1,0,0,0,3690, + 3730,3,350,175,0,3691,3692,5,2,0,0,3692,3693,3,350,175,0,3693,3694, + 5,3,0,0,3694,3730,1,0,0,0,3695,3723,5,2,0,0,3696,3697,5,44,0,0,3697, + 3698,5,31,0,0,3698,3703,3,254,127,0,3699,3700,5,4,0,0,3700,3702, + 3,254,127,0,3701,3699,1,0,0,0,3702,3705,1,0,0,0,3703,3701,1,0,0, + 0,3703,3704,1,0,0,0,3704,3724,1,0,0,0,3705,3703,1,0,0,0,3706,3707, + 7,35,0,0,3707,3708,5,31,0,0,3708,3713,3,254,127,0,3709,3710,5,4, + 0,0,3710,3712,3,254,127,0,3711,3709,1,0,0,0,3712,3715,1,0,0,0,3713, + 3711,1,0,0,0,3713,3714,1,0,0,0,3714,3717,1,0,0,0,3715,3713,1,0,0, + 0,3716,3706,1,0,0,0,3716,3717,1,0,0,0,3717,3721,1,0,0,0,3718,3719, + 7,36,0,0,3719,3720,5,31,0,0,3720,3722,3,96,48,0,3721,3718,1,0,0, + 0,3721,3722,1,0,0,0,3722,3724,1,0,0,0,3723,3696,1,0,0,0,3723,3716, + 1,0,0,0,3724,3726,1,0,0,0,3725,3727,3,338,169,0,3726,3725,1,0,0, + 0,3726,3727,1,0,0,0,3727,3728,1,0,0,0,3728,3730,5,3,0,0,3729,3690, + 1,0,0,0,3729,3691,1,0,0,0,3729,3695,1,0,0,0,3730,337,1,0,0,0,3731, + 3732,7,67,0,0,3732,3740,3,340,170,0,3733,3734,7,67,0,0,3734,3735, + 5,24,0,0,3735,3736,3,340,170,0,3736,3737,5,14,0,0,3737,3738,3,340, + 170,0,3738,3740,1,0,0,0,3739,3731,1,0,0,0,3739,3733,1,0,0,0,3740, + 339,1,0,0,0,3741,3742,5,321,0,0,3742,3749,7,68,0,0,3743,3744,5,62, + 0,0,3744,3749,5,257,0,0,3745,3746,3,254,127,0,3746,3747,7,68,0,0, + 3747,3749,1,0,0,0,3748,3741,1,0,0,0,3748,3743,1,0,0,0,3748,3745, + 1,0,0,0,3749,341,1,0,0,0,3750,3755,3,348,174,0,3751,3752,5,4,0,0, + 3752,3754,3,348,174,0,3753,3751,1,0,0,0,3754,3757,1,0,0,0,3755,3753, + 1,0,0,0,3755,3756,1,0,0,0,3756,343,1,0,0,0,3757,3755,1,0,0,0,3758, + 3759,5,136,0,0,3759,3760,5,2,0,0,3760,3761,3,254,127,0,3761,3762, + 5,3,0,0,3762,3768,1,0,0,0,3763,3768,3,348,174,0,3764,3768,5,114, + 0,0,3765,3768,5,161,0,0,3766,3768,5,250,0,0,3767,3758,1,0,0,0,3767, + 3763,1,0,0,0,3767,3764,1,0,0,0,3767,3765,1,0,0,0,3767,3766,1,0,0, + 0,3768,345,1,0,0,0,3769,3770,3,348,174,0,3770,347,1,0,0,0,3771,3776, + 3,354,177,0,3772,3773,5,5,0,0,3773,3775,3,354,177,0,3774,3772,1, + 0,0,0,3775,3778,1,0,0,0,3776,3774,1,0,0,0,3776,3777,1,0,0,0,3777, + 349,1,0,0,0,3778,3776,1,0,0,0,3779,3780,3,354,177,0,3780,3781,3, + 352,176,0,3781,351,1,0,0,0,3782,3783,5,362,0,0,3783,3785,3,354,177, + 0,3784,3782,1,0,0,0,3785,3786,1,0,0,0,3786,3784,1,0,0,0,3786,3787, + 1,0,0,0,3787,3790,1,0,0,0,3788,3790,1,0,0,0,3789,3784,1,0,0,0,3789, + 3788,1,0,0,0,3790,353,1,0,0,0,3791,3794,3,356,178,0,3792,3794,3, + 368,184,0,3793,3791,1,0,0,0,3793,3792,1,0,0,0,3794,355,1,0,0,0,3795, + 3800,5,388,0,0,3796,3800,3,358,179,0,3797,3800,3,366,183,0,3798, + 3800,3,370,185,0,3799,3795,1,0,0,0,3799,3796,1,0,0,0,3799,3797,1, + 0,0,0,3799,3798,1,0,0,0,3800,357,1,0,0,0,3801,3802,7,69,0,0,3802, + 359,1,0,0,0,3803,3805,5,362,0,0,3804,3803,1,0,0,0,3804,3805,1,0, + 0,0,3805,3806,1,0,0,0,3806,3807,7,70,0,0,3807,361,1,0,0,0,3808,3809, + 5,319,0,0,3809,3822,3,304,152,0,3810,3811,5,51,0,0,3811,3822,3,364, + 182,0,3812,3822,3,300,150,0,3813,3814,7,71,0,0,3814,3815,5,197,0, + 0,3815,3822,5,198,0,0,3816,3817,5,269,0,0,3817,3818,5,82,0,0,3818, + 3822,3,254,127,0,3819,3820,5,96,0,0,3820,3822,5,82,0,0,3821,3808, + 1,0,0,0,3821,3810,1,0,0,0,3821,3812,1,0,0,0,3821,3813,1,0,0,0,3821, + 3816,1,0,0,0,3821,3819,1,0,0,0,3822,363,1,0,0,0,3823,3824,7,72,0, + 0,3824,365,1,0,0,0,3825,3826,7,73,0,0,3826,367,1,0,0,0,3827,3828, + 7,74,0,0,3828,369,1,0,0,0,3829,3830,7,75,0,0,3830,371,1,0,0,0,510, + 375,382,386,391,398,403,413,415,435,439,445,448,451,455,458,462, + 469,472,476,479,484,497,499,504,513,516,520,523,529,540,546,551, + 584,594,605,616,627,632,641,645,651,655,660,666,678,686,692,703, + 707,712,727,731,738,742,748,778,782,787,794,800,803,806,810,814, + 823,825,834,837,846,851,857,864,867,871,886,889,895,899,916,918, + 926,930,936,939,943,946,952,957,961,968,971,974,981,986,995,1003, + 1009,1012,1015,1021,1025,1030,1033,1037,1039,1047,1055,1058,1065, + 1068,1071,1080,1085,1091,1096,1099,1103,1106,1110,1120,1125,1138, + 1141,1149,1155,1158,1161,1166,1174,1179,1185,1191,1194,1201,1208, + 1216,1228,1236,1263,1266,1272,1281,1290,1296,1301,1306,1313,1318, + 1323,1330,1338,1341,1347,1354,1358,1421,1429,1436,1444,1456,1461, + 1470,1478,1483,1485,1493,1498,1502,1505,1513,1518,1527,1532,1535, + 1540,1544,1549,1551,1556,1565,1573,1579,1588,1595,1604,1609,1612, + 1637,1639,1651,1658,1661,1668,1672,1678,1686,1693,1696,1704,1715, + 1726,1734,1740,1751,1758,1765,1777,1785,1791,1797,1800,1819,1826, + 1833,1844,1849,1854,1859,1864,1867,1870,1874,1879,1886,1894,1903, + 1909,1915,1918,1920,1928,1938,1947,1951,1954,1958,1962,1970,1974, + 1977,1980,1983,1987,1991,1996,2000,2003,2006,2009,2013,2018,2022, + 2025,2028,2031,2033,2039,2046,2051,2054,2057,2061,2071,2075,2077, + 2080,2084,2090,2094,2105,2113,2115,2122,2126,2138,2145,2160,2165, + 2172,2188,2193,2206,2211,2219,2225,2229,2232,2235,2242,2245,2251, + 2260,2270,2285,2290,2292,2297,2306,2316,2321,2325,2330,2337,2342, + 2346,2349,2352,2366,2379,2384,2388,2391,2396,2401,2405,2408,2420, + 2431,2444,2455,2460,2463,2467,2470,2482,2491,2494,2499,2506,2509, + 2515,2521,2523,2526,2531,2535,2541,2545,2548,2553,2556,2561,2563, + 2570,2572,2576,2581,2588,2591,2609,2611,2614,2625,2634,2641,2649, + 2657,2662,2665,2668,2674,2682,2690,2702,2708,2715,2722,2724,2737, + 2743,2745,2754,2756,2764,2768,2780,2783,2788,2792,2794,2803,2815, + 2817,2824,2831,2837,2843,2845,2852,2860,2869,2876,2882,2887,2894, + 2907,2915,2918,2922,2924,2928,2935,2946,2953,2963,2968,2972,2982, + 2989,3002,3004,3012,3014,3018,3026,3035,3041,3049,3054,3066,3071, + 3074,3080,3084,3089,3094,3099,3105,3126,3128,3139,3151,3163,3167, + 3176,3180,3198,3201,3209,3218,3227,3250,3266,3273,3276,3285,3289, + 3293,3305,3330,3337,3340,3355,3376,3380,3382,3392,3394,3404,3419, + 3421,3434,3438,3445,3450,3458,3463,3472,3504,3525,3528,3532,3538, + 3544,3553,3557,3559,3566,3574,3582,3590,3600,3610,3617,3621,3628, + 3636,3652,3656,3661,3665,3683,3703,3713,3716,3721,3723,3726,3729, + 3739,3748,3755,3767,3776,3786,3789,3793,3799,3804,3821 ]; private static __ATN: antlr.ATN; @@ -30766,6 +30794,9 @@ export class NamedExpressionContext extends antlr.ParserRuleContext { public errorCapturingIdentifier(): ErrorCapturingIdentifierContext | null { return this.getRuleContext(0, ErrorCapturingIdentifierContext); } + public emptyColumn(): EmptyColumnContext | null { + return this.getRuleContext(0, EmptyColumnContext); + } public override get ruleIndex(): number { return SparkSqlParser.RULE_namedExpression; } diff --git a/src/parser/common/entityCollector.ts b/src/parser/common/entityCollector.ts index efc634728..54c9198ca 100644 --- a/src/parser/common/entityCollector.ts +++ b/src/parser/common/entityCollector.ts @@ -662,11 +662,24 @@ export abstract class EntityCollector { ); } else { // Do not collect column and queryResult entities if they are not inside a select statement - return entitiesInsideStmt.filter( - (entity) => + // Exception: empty column entities (text === '') should be kept + return entitiesInsideStmt.filter((entity) => { + // Keep non-COLUMN and non-QUERY_RESULT entities + if ( entity.entityContextType !== EntityContextType.COLUMN && entity.entityContextType !== EntityContextType.QUERY_RESULT - ); + ) { + return true; + } + // Also keep empty QUERY_RESULT entities (text === '') + if ( + entity.entityContextType === EntityContextType.QUERY_RESULT && + entity.text === '' + ) { + return true; + } + return false; + }); } } diff --git a/src/parser/mysql/mysqlEntityCollector.ts b/src/parser/mysql/mysqlEntityCollector.ts index a3f46892b..3e6dfcc5f 100644 --- a/src/parser/mysql/mysqlEntityCollector.ts +++ b/src/parser/mysql/mysqlEntityCollector.ts @@ -12,8 +12,9 @@ import { FunctionNameCreateContext, InsertStatementContext, QueryCreateTableContext, - SelectElementContext, + SelectElementsContext, SelectExpressionElementContext, + SelectLiteralColumnNameContext, SelectStatementContext, SingleStatementContext, TableNameContext, @@ -22,12 +23,13 @@ import { ViewNameContext, ViewNameCreateContext, TableAllColumnsContext, - SelectLiteralColumnNameContext, AtomSubQueryTableSourceContext, - SelectElementsContext, AtomTableItemContext, SubqueryTableItemContext, PureAllColumnsContext, + SelectElement_labelContext, + SelectElement_exprContext, + SelectElement_dot_emptyContext, } from '../../lib/mysql/MySqlParser'; import type { MySqlParserListener } from '../../lib/mysql/MySqlParserListener'; import { @@ -139,13 +141,19 @@ export class MySqlEntityCollector extends EntityCollector implements MySqlParser } exitSelectLiteralColumnName(ctx: SelectLiteralColumnNameContext) { + // Handle empty column case (e.g., "select from") + // When emptyColumn matches, the context has no actual tokens + if (!ctx.start || !ctx.stop || ctx.start.start > ctx.stop.stop) { + return; + } + this.pushEntity( ctx, EntityContextType.COLUMN, [ { attrName: AttrName.alias, - endContextList: [SelectElementContext.name], + endContextList: [SelectElement_labelContext.name], }, ], { @@ -154,6 +162,12 @@ export class MySqlEntityCollector extends EntityCollector implements MySqlParser ); } + exitSelectElement_dot_empty(ctx: SelectElement_dot_emptyContext) { + this.pushEntity(ctx, EntityContextType.COLUMN, [], { + declareType: ColumnDeclareType.LITERAL, + }); + } + exitSelectExpressionElement(ctx: SelectExpressionElementContext) { this.pushEntity( ctx, @@ -161,7 +175,7 @@ export class MySqlEntityCollector extends EntityCollector implements MySqlParser [ { attrName: AttrName.alias, - endContextList: [SelectElementContext.name], + endContextList: [SelectElement_exprContext.name], }, ], { diff --git a/src/parser/postgresql/postgreEntityCollector.ts b/src/parser/postgresql/postgreEntityCollector.ts index d6bf22093..8dc6bea6d 100644 --- a/src/parser/postgresql/postgreEntityCollector.ts +++ b/src/parser/postgresql/postgreEntityCollector.ts @@ -12,6 +12,7 @@ import { type DatabaseNameContext, type DatabaseNameCreateContext, ExpressionTableContext, + FuncTableContext, type FunctionNameCreateContext, type InsertStatementContext, PostgreSqlParser, @@ -20,20 +21,21 @@ import { type QueryCreateTableContext, SelectExpressionColumnNameContext, SelectLiteralColumnNameContext, + SelectNoParensContext, type SelectStatementContext, + SelectWithParensContext, type SingleStmtContext, TableAllColumnsContext, - TableRefContext, type TableNameContext, type TableNameCreateContext, + TableRefContext, + Target_dot_emptyContext, + Target_emptyContext, Target_labelContext, + TargetListContext, type ViewNameContext, type ViewNameCreateContext, - TargetListContext, - SelectNoParensContext, XmlTableContext, - FuncTableContext, - SelectWithParensContext, } from '../../lib/postgresql/PostgreSqlParser'; import type { PostgreSqlParserListener } from '../../lib/postgresql/PostgreSqlParserListener'; import { @@ -156,7 +158,9 @@ export class PostgreSqlEntityCollector extends EntityCollector implements Postgr } exitTargetList(ctx: TargetListContext) { + // Only create QUERY_RESULT for targetList that is direct child of simpleSelect if (!isChildContextOf(ctx, PostgreSqlParser.RULE_simpleSelect)) return; + this.pushEntity(ctx, EntityContextType.QUERY_RESULT); } @@ -167,6 +171,20 @@ export class PostgreSqlEntityCollector extends EntityCollector implements Postgr }); } + exitTarget_empty(ctx: Target_emptyContext) { + // Don't create entity for empty column here + // The targetList will create QUERY_RESULT entity + // Empty targetEl means the QUERY_RESULT has no columns + } + + exitTarget_dot_empty(ctx: Target_dot_emptyContext) { + // Create COLUMN entity for incomplete column reference (e.g., "tb.|") + // This allows completion to suggest columns from table "tb" + this.pushEntity(ctx, EntityContextType.COLUMN, [], { + declareType: ColumnDeclareType.LITERAL, + }); + } + exitSelectExpressionColumnName(ctx: SelectExpressionColumnNameContext) { this.pushEntity( ctx, diff --git a/test/parser/hive/suggestion/suggestionWithEntity.test.ts b/test/parser/hive/suggestion/suggestionWithEntity.test.ts index 436889764..1375b7a73 100644 --- a/test/parser/hive/suggestion/suggestionWithEntity.test.ts +++ b/test/parser/hive/suggestion/suggestionWithEntity.test.ts @@ -182,16 +182,19 @@ describe('Hive SQL Syntax Suggestion with collect entity', () => { expect(suggestion?.wordRanges.map((token) => token.text)).toEqual([]); const entities = hive.getAllEntities(sql, pos); - expect(entities.length).toBe(2); - expect(entities[0].text).toBe('page_view_stg'); - expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); - expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); - expect(entities[0].belongStmt.rootStmt.isContainCaret).toBeTruthy(); + expect(entities.length).toBe(3); - expect(entities[1].text).toBe('page_view'); - expect(entities[1].entityContextType).toBe(EntityContextType.TABLE); - expect(entities[1].belongStmt.isContainCaret).toBeTruthy(); - expect(entities[1].belongStmt.rootStmt.isContainCaret).toBeTruthy(); + // Check entities by content, not by order + const tableEntities = entities.filter( + (e) => e.entityContextType === EntityContextType.TABLE + ); + const emptyEntity = entities.find( + (e) => e.text === '' && e.entityContextType === EntityContextType.QUERY_RESULT + ); + + expect(tableEntities.length).toBe(2); + expect(emptyEntity).toBeDefined(); + expect(emptyEntity.belongStmt.isContainCaret).toBeTruthy(); }); test('from table insert into table select with column and trailing comma', () => { diff --git a/test/parser/mysql/suggestion/fixtures/suggestionWithEntity.sql b/test/parser/mysql/suggestion/fixtures/suggestionWithEntity.sql index 654730a87..f20b48c8e 100644 --- a/test/parser/mysql/suggestion/fixtures/suggestionWithEntity.sql +++ b/test/parser/mysql/suggestion/fixtures/suggestionWithEntity.sql @@ -12,4 +12,8 @@ CREATE TABLE sorted_census_data AS SELECT id, age, FROM unsorted_census_data; SELECT id FROM tb WHERE -SELECT id FROM tb GROUP BY ; \ No newline at end of file +SELECT id FROM tb GROUP BY ; + +SELECT tb. FROM tb; + +select t1. from sorted_census_data as t1; \ No newline at end of file diff --git a/test/parser/mysql/suggestion/suggestionWithEntity.test.ts b/test/parser/mysql/suggestion/suggestionWithEntity.test.ts index ef98fa926..88341829c 100644 --- a/test/parser/mysql/suggestion/suggestionWithEntity.test.ts +++ b/test/parser/mysql/suggestion/suggestionWithEntity.test.ts @@ -1,7 +1,7 @@ import fs from 'fs'; import path from 'path'; -import { MySQL } from 'src/parser/mysql'; import { CaretPosition, EntityContextType } from 'src/parser/common/types'; +import { MySQL } from 'src/parser/mysql'; import { commentOtherLine } from 'test/helper'; const syntaxSql = fs.readFileSync( @@ -185,6 +185,58 @@ describe('MySQL Syntax Suggestion with collect entity', () => { }; const sql = commentOtherLine(syntaxSql, pos.lineNumber); const entities = mysql.getAllEntities(sql, pos); - expect(entities[0].belongStmt.isContainCaret).toBeFalsy(); + + // When caret is after semicolon, entities should not contain caret + if (entities && entities.length > 0) { + entities.forEach((entity) => { + expect(entity.belongStmt.isContainCaret).toBeFalsy(); + }); + } + }); + + test('suggestion with table alias and dot', () => { + const pos: CaretPosition = { + lineNumber: 17, + column: 11, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = mysql.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['tb', '.']); + + const entities = mysql.getAllEntities(sql, pos); + expect(entities.length).toBe(2); + expect(entities[0].text).toBe('tb'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + expect(entities[1].text).toBe('tb.'); + expect(entities[1].entityContextType).toBe(EntityContextType.QUERY_RESULT); + }); + + test('suggestion with table alias and dot (with alias from clause)', () => { + const pos: CaretPosition = { + lineNumber: 19, + column: 11, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = mysql.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['t1', '.']); + + const entities = mysql.getAllEntities(sql, pos); + expect(entities.length).toBe(2); + expect(entities[0].text).toBe('sorted_census_data'); + expect(entities[0].entityContextType).toBe(EntityContextType.TABLE); + expect(entities[0].belongStmt.isContainCaret).toBeTruthy(); + expect(entities[1].text).toBe('t1.'); + expect(entities[1].entityContextType).toBe(EntityContextType.QUERY_RESULT); }); }); diff --git a/test/parser/mysql/suggestion/syntaxSuggestion.test.ts b/test/parser/mysql/suggestion/syntaxSuggestion.test.ts index a76f06954..ec968d75e 100644 --- a/test/parser/mysql/suggestion/syntaxSuggestion.test.ts +++ b/test/parser/mysql/suggestion/syntaxSuggestion.test.ts @@ -653,7 +653,9 @@ describe('MySQL Syntax Suggestion', () => { const syntaxContextTypes = syntaxes?.map((syn) => syn.syntaxContextType); expect(syntaxContextTypes).not.toBeUndefined(); - expect(syntaxContextTypes).toEqual([EntityContextType.COLUMN, EntityContextType.FUNCTION]); + expect(syntaxContextTypes).toHaveLength(2); + expect(syntaxContextTypes).toContain(EntityContextType.COLUMN); + expect(syntaxContextTypes).toContain(EntityContextType.FUNCTION); }); test('Select function or column', () => { diff --git a/test/parser/postgresql/suggestion/fixtures/suggestionWithEntity.sql b/test/parser/postgresql/suggestion/fixtures/suggestionWithEntity.sql index 2dbb223d7..76b346abc 100644 --- a/test/parser/postgresql/suggestion/fixtures/suggestionWithEntity.sql +++ b/test/parser/postgresql/suggestion/fixtures/suggestionWithEntity.sql @@ -14,4 +14,6 @@ ALTER TABLE my_table DROP a_column; SELECT id FROM tb WHERE -SELECT id FROM tb GROUP BY ; \ No newline at end of file +SELECT id FROM tb GROUP BY ; + +SELECT tb. FROM tb; \ No newline at end of file diff --git a/test/parser/postgresql/suggestion/suggestionWithEntity.test.ts b/test/parser/postgresql/suggestion/suggestionWithEntity.test.ts index aabff9655..f0a2be881 100644 --- a/test/parser/postgresql/suggestion/suggestionWithEntity.test.ts +++ b/test/parser/postgresql/suggestion/suggestionWithEntity.test.ts @@ -214,6 +214,36 @@ describe('PostgreSql Syntax Suggestion with collect entity', () => { expect(entities[0].belongStmt?.isContainCaret).toBeTruthy(); }); + test('select with empty column after dot (tb.)', () => { + const pos: CaretPosition = { + lineNumber: 19, + column: 11, + }; + const sql = commentOtherLine(syntaxSql, pos.lineNumber); + + const syntaxes = postgre.getSuggestionAtCaretPosition(sql, pos)?.syntax; + const suggestion = syntaxes?.find( + (syn) => syn.syntaxContextType === EntityContextType.COLUMN + ); + expect(suggestion).not.toBeUndefined(); + expect(suggestion?.wordRanges.map((token) => token.text)).toEqual(['tb', '.']); + + const entities = postgre.getAllEntities(sql, pos); + expect(entities.length).toBe(2); + + const tableEntity = entities.find((e) => e.entityContextType === EntityContextType.TABLE); + expect(tableEntity).not.toBeUndefined(); + expect(tableEntity?.text).toBe('tb'); + expect(tableEntity?.belongStmt.isContainCaret).toBeTruthy(); + + const queryResultEntity = entities.find( + (e) => e.entityContextType === EntityContextType.QUERY_RESULT + ); + expect(queryResultEntity).not.toBeUndefined(); + expect(queryResultEntity?.text).toBe('tb.'); + expect(queryResultEntity?.belongStmt.isContainCaret).toBeTruthy(); + }); + test('isContainCaret should be truthy if caret position is whitespace at the end of statement', () => { const pos: CaretPosition = { lineNumber: 15,